@loopstack/loopstack-studio 0.20.2 → 0.21.0-rc.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (991) hide show
  1. package/dist/_virtual/rolldown_runtime.js +20 -0
  2. package/dist/components/data-table/ConfirmDialog.js +30 -0
  3. package/dist/components/data-table/DataList.js +216 -0
  4. package/dist/components/data-table/DataTable.js +264 -0
  5. package/dist/components/data-table/DataTableBatchAction.js +32 -0
  6. package/dist/components/data-table/DataTableFilters.js +83 -0
  7. package/dist/components/data-table/DataTablePagination.js +108 -0
  8. package/dist/components/data-table/DataTableToolbar.js +70 -0
  9. package/dist/components/dynamic-form/ArrayController.js +100 -0
  10. package/dist/components/dynamic-form/CodeContent.js +174 -0
  11. package/dist/components/dynamic-form/Form.js +35 -0
  12. package/dist/components/dynamic-form/FormBody.js +26 -0
  13. package/dist/components/dynamic-form/FormElement.js +42 -0
  14. package/dist/components/dynamic-form/FormElementHeader.js +20 -0
  15. package/dist/components/dynamic-form/InputController.js +38 -0
  16. package/dist/components/dynamic-form/MarkdownContent.js +76 -0
  17. package/dist/components/dynamic-form/MermaidDiagram.js +41 -0
  18. package/dist/components/dynamic-form/ObjectController.js +32 -0
  19. package/dist/components/dynamic-form/fields/BaseFieldWrapper.js +47 -0
  20. package/dist/components/dynamic-form/fields/CheckboxField.js +53 -0
  21. package/dist/components/dynamic-form/fields/CodeViewField.js +63 -0
  22. package/dist/components/dynamic-form/fields/InputField.js +105 -0
  23. package/dist/components/dynamic-form/fields/RadioField.js +67 -0
  24. package/dist/components/dynamic-form/fields/SelectField.js +60 -0
  25. package/dist/components/dynamic-form/fields/SliderField.js +112 -0
  26. package/dist/components/dynamic-form/fields/SwitchField.js +66 -0
  27. package/dist/components/dynamic-form/fields/TextareaField.js +77 -0
  28. package/dist/components/dynamic-form/fields/utils/text-validation-utils.js +33 -0
  29. package/dist/components/dynamic-form/hooks/useArrayDefaultValue.js +42 -0
  30. package/dist/components/dynamic-form/hooks/useFieldConfig.js +21 -0
  31. package/dist/components/dynamic-form/hooks/useMergeParentKey.js +5 -0
  32. package/dist/components/dynamic-form/hooks/useSortPropertyNames.js +5 -0
  33. package/dist/components/layout/MainLayout.js +24 -0
  34. package/dist/components/lists/CustomListView.js +87 -0
  35. package/dist/components/lists/ListView.js +118 -0
  36. package/dist/components/page/PageBreadcrumbs.js +41 -0
  37. package/dist/components/snackbars/ErrorSnackbar.js +30 -0
  38. package/dist/components/snackbars/Snackbar.js +44 -0
  39. package/dist/components/ui/alert-dialog.js +121 -0
  40. package/dist/components/ui/badge.js +28 -0
  41. package/dist/components/ui/breadcrumb.js +85 -0
  42. package/dist/components/ui/button.js +47 -0
  43. package/dist/components/ui/card.js +29 -0
  44. package/dist/components/ui/checkbox.js +26 -0
  45. package/dist/components/ui/collapsible.js +32 -0
  46. package/dist/components/ui/dialog.js +88 -0
  47. package/dist/components/ui/input.js +18 -0
  48. package/dist/components/ui/label.js +19 -0
  49. package/dist/components/ui/radio-group.js +38 -0
  50. package/dist/components/ui/select.js +125 -0
  51. package/dist/components/ui/sheet.js +97 -0
  52. package/dist/components/ui/slider.js +35 -0
  53. package/dist/components/ui/switch.js +24 -0
  54. package/dist/components/ui/table.js +81 -0
  55. package/dist/components/ui/textarea.js +17 -0
  56. package/dist/components/ui/tooltip.js +50 -0
  57. package/dist/features/health/LocalHealthCheck.js +95 -0
  58. package/dist/features/workspaces/Workspaces.js +162 -0
  59. package/dist/features/workspaces/components/CreateWorkspace.js +128 -0
  60. package/dist/features/workspaces/components/ExecutionTimeline.js +204 -0
  61. package/dist/features/workspaces/components/NewPipelineRunDialog.js +31 -0
  62. package/dist/features/workspaces/components/PipelineForm.js +152 -0
  63. package/dist/features/workspaces/components/pipeline-form/ArgumentsView.js +75 -0
  64. package/dist/features/workspaces/components/pipeline-form/HeaderSection.js +43 -0
  65. package/dist/features/workspaces/components/pipeline-form/SelectionView.js +105 -0
  66. package/dist/hooks/use-mobile.js +3 -3
  67. package/dist/hooks/useAuth.js +56 -0
  68. package/dist/hooks/useConfig.js +46 -0
  69. package/dist/hooks/useDebounce.js +27 -0
  70. package/dist/hooks/usePipelines.js +117 -0
  71. package/dist/hooks/useProcessor.js +24 -0
  72. package/dist/hooks/useWorkspaces.js +142 -0
  73. package/dist/index.d.ts +7 -0
  74. package/dist/index.js +4 -1
  75. package/dist/lib/utils.js +6 -0
  76. package/dist/loopstack-studio.css +2 -0
  77. package/dist/node_modules/@braintree/sanitize-url/dist/constants.js +6 -0
  78. package/dist/node_modules/@braintree/sanitize-url/dist/index.js +48 -0
  79. package/dist/node_modules/@chevrotain/gast/lib/src/helpers.js +26 -0
  80. package/dist/node_modules/@chevrotain/gast/lib/src/model.js +154 -0
  81. package/dist/node_modules/@chevrotain/gast/lib/src/visitor.js +40 -0
  82. package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/api.js +2 -0
  83. package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/base-regexp-visitor.js +85 -0
  84. package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/character-classes.js +35 -0
  85. package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/regexp-parser.js +570 -0
  86. package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/utils.js +25 -0
  87. package/dist/node_modules/@chevrotain/utils/lib/src/print.js +9 -0
  88. package/dist/node_modules/@chevrotain/utils/lib/src/timer.js +8 -0
  89. package/dist/node_modules/@chevrotain/utils/lib/src/to-fast-properties.js +10 -0
  90. package/dist/node_modules/@iconify/utils/lib/customisations/defaults.js +9 -0
  91. package/dist/node_modules/@iconify/utils/lib/icon/defaults.js +18 -0
  92. package/dist/node_modules/@iconify/utils/lib/icon/merge.js +8 -0
  93. package/dist/node_modules/@iconify/utils/lib/icon/name.js +35 -0
  94. package/dist/node_modules/@iconify/utils/lib/icon/transformations.js +7 -0
  95. package/dist/node_modules/@iconify/utils/lib/icon-set/get-icon.js +15 -0
  96. package/dist/node_modules/@iconify/utils/lib/icon-set/tree.js +14 -0
  97. package/dist/node_modules/@iconify/utils/lib/svg/build.js +54 -0
  98. package/dist/node_modules/@iconify/utils/lib/svg/defs.js +22 -0
  99. package/dist/node_modules/@iconify/utils/lib/svg/html.js +6 -0
  100. package/dist/node_modules/@iconify/utils/lib/svg/id.js +17 -0
  101. package/dist/node_modules/@iconify/utils/lib/svg/size.js +18 -0
  102. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/architecture-7HQA4BMR.js +3 -0
  103. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-4F5CHEZ2.js +23 -0
  104. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-B2363JML.js +60 -0
  105. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-FRFDVMJY.js +23 -0
  106. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-PL6DKKU2.js +28 -0
  107. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-SJTYNZTY.js +23 -0
  108. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-TCCFYFTB.js +787 -0
  109. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-TQ3KTPDO.js +23 -0
  110. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-UMXZTB3W.js +30 -0
  111. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/gitGraph-G5XIXVHT.js +3 -0
  112. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/info-VBDWY6EO.js +3 -0
  113. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/packet-DYOGHKS2.js +3 -0
  114. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/pie-VRWISCQL.js +3 -0
  115. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/radar-ZZBFDIW7.js +3 -0
  116. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/treemap-GDKQZRPO.js +3 -0
  117. package/dist/node_modules/@mermaid-js/parser/dist/mermaid-parser.core.js +55 -0
  118. package/dist/node_modules/ccount/index.js +8 -0
  119. package/dist/node_modules/chevrotain/lib/src/api.js +10 -0
  120. package/dist/node_modules/chevrotain/lib/src/lang/lang_extensions.js +10 -0
  121. package/dist/node_modules/chevrotain/lib/src/parse/constants.js +2 -0
  122. package/dist/node_modules/chevrotain/lib/src/parse/cst/cst.js +13 -0
  123. package/dist/node_modules/chevrotain/lib/src/parse/cst/cst_visitor.js +58 -0
  124. package/dist/node_modules/chevrotain/lib/src/parse/errors_public.js +75 -0
  125. package/dist/node_modules/chevrotain/lib/src/parse/exceptions_public.js +34 -0
  126. package/dist/node_modules/chevrotain/lib/src/parse/grammar/checks.js +299 -0
  127. package/dist/node_modules/chevrotain/lib/src/parse/grammar/first.js +25 -0
  128. package/dist/node_modules/chevrotain/lib/src/parse/grammar/follow.js +29 -0
  129. package/dist/node_modules/chevrotain/lib/src/parse/grammar/gast/gast_resolver_public.js +15 -0
  130. package/dist/node_modules/chevrotain/lib/src/parse/grammar/interpreter.js +269 -0
  131. package/dist/node_modules/chevrotain/lib/src/parse/grammar/keys.js +5 -0
  132. package/dist/node_modules/chevrotain/lib/src/parse/grammar/llk_lookahead.js +43 -0
  133. package/dist/node_modules/chevrotain/lib/src/parse/grammar/lookahead.js +248 -0
  134. package/dist/node_modules/chevrotain/lib/src/parse/grammar/resolver.js +32 -0
  135. package/dist/node_modules/chevrotain/lib/src/parse/grammar/rest.js +58 -0
  136. package/dist/node_modules/chevrotain/lib/src/parse/parser/parser.js +122 -0
  137. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/context_assist.js +16 -0
  138. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/error_handler.js +48 -0
  139. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/gast_recorder.js +172 -0
  140. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/lexer_adapter.js +39 -0
  141. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/looksahead.js +109 -0
  142. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/perf_tracer.js +22 -0
  143. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/recognizer_api.js +313 -0
  144. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/recognizer_engine.js +275 -0
  145. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/recoverable.js +144 -0
  146. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/tree_builder.js +102 -0
  147. package/dist/node_modules/chevrotain/lib/src/parse/parser/utils/apply_mixins.js +11 -0
  148. package/dist/node_modules/chevrotain/lib/src/scan/lexer.js +465 -0
  149. package/dist/node_modules/chevrotain/lib/src/scan/lexer_errors_public.js +9 -0
  150. package/dist/node_modules/chevrotain/lib/src/scan/lexer_public.js +275 -0
  151. package/dist/node_modules/chevrotain/lib/src/scan/reg_exp.js +152 -0
  152. package/dist/node_modules/chevrotain/lib/src/scan/reg_exp_parser.js +15 -0
  153. package/dist/node_modules/chevrotain/lib/src/scan/tokens.js +75 -0
  154. package/dist/node_modules/chevrotain/lib/src/scan/tokens_public.js +42 -0
  155. package/dist/node_modules/chevrotain-allstar/lib/all-star-lookahead.js +346 -0
  156. package/dist/node_modules/chevrotain-allstar/lib/atn.js +194 -0
  157. package/dist/node_modules/chevrotain-allstar/lib/dfa.js +32 -0
  158. package/dist/node_modules/chevrotain-allstar/lib/index.js +1 -0
  159. package/dist/node_modules/comma-separated-tokens/index.js +10 -0
  160. package/dist/node_modules/cose-base/cose-base.js +469 -0
  161. package/dist/node_modules/cytoscape/dist/cytoscape.esm.js +18100 -0
  162. package/dist/node_modules/cytoscape-cose-bilkent/cytoscape-cose-bilkent.js +172 -0
  163. package/dist/node_modules/cytoscape-fcose/cytoscape-fcose.js +604 -0
  164. package/dist/node_modules/cytoscape-fcose/node_modules/cose-base/cose-base.js +1142 -0
  165. package/dist/node_modules/cytoscape-fcose/node_modules/layout-base/layout-base.js +1635 -0
  166. package/dist/node_modules/d3/src/index.js +93 -0
  167. package/dist/node_modules/d3-array/src/ascending.js +4 -0
  168. package/dist/node_modules/d3-array/src/bisect.js +8 -0
  169. package/dist/node_modules/d3-array/src/bisector.js +39 -0
  170. package/dist/node_modules/d3-array/src/descending.js +4 -0
  171. package/dist/node_modules/d3-array/src/max.js +10 -0
  172. package/dist/node_modules/d3-array/src/min.js +10 -0
  173. package/dist/node_modules/d3-array/src/number.js +4 -0
  174. package/dist/node_modules/d3-array/src/range.js +6 -0
  175. package/dist/node_modules/d3-array/src/ticks.js +30 -0
  176. package/dist/node_modules/d3-axis/src/axis.js +61 -0
  177. package/dist/node_modules/d3-axis/src/identity.js +4 -0
  178. package/dist/node_modules/d3-brush/src/brush.js +15 -0
  179. package/dist/node_modules/d3-brush/src/index.js +1 -0
  180. package/dist/node_modules/d3-color/src/color.js +287 -0
  181. package/dist/node_modules/d3-color/src/define.js +9 -0
  182. package/dist/node_modules/d3-color/src/lab.js +70 -0
  183. package/dist/node_modules/d3-color/src/math.js +2 -0
  184. package/dist/node_modules/d3-dispatch/src/dispatch.js +64 -0
  185. package/dist/node_modules/d3-ease/src/cubic.js +4 -0
  186. package/dist/node_modules/d3-format/src/defaultLocale.js +11 -0
  187. package/dist/node_modules/d3-format/src/exponent.js +5 -0
  188. package/dist/node_modules/d3-format/src/formatDecimal.js +9 -0
  189. package/dist/node_modules/d3-format/src/formatGroup.js +7 -0
  190. package/dist/node_modules/d3-format/src/formatNumerals.js +8 -0
  191. package/dist/node_modules/d3-format/src/formatPrefixAuto.js +9 -0
  192. package/dist/node_modules/d3-format/src/formatRounded.js +8 -0
  193. package/dist/node_modules/d3-format/src/formatSpecifier.js +25 -0
  194. package/dist/node_modules/d3-format/src/formatTrim.js +16 -0
  195. package/dist/node_modules/d3-format/src/formatTypes.js +19 -0
  196. package/dist/node_modules/d3-format/src/identity.js +4 -0
  197. package/dist/node_modules/d3-format/src/locale.js +82 -0
  198. package/dist/node_modules/d3-format/src/precisionFixed.js +5 -0
  199. package/dist/node_modules/d3-format/src/precisionPrefix.js +5 -0
  200. package/dist/node_modules/d3-format/src/precisionRound.js +5 -0
  201. package/dist/node_modules/d3-hierarchy/src/accessors.js +5 -0
  202. package/dist/node_modules/d3-hierarchy/src/constant.js +9 -0
  203. package/dist/node_modules/d3-hierarchy/src/hierarchy/ancestors.js +5 -0
  204. package/dist/node_modules/d3-hierarchy/src/hierarchy/count.js +10 -0
  205. package/dist/node_modules/d3-hierarchy/src/hierarchy/descendants.js +4 -0
  206. package/dist/node_modules/d3-hierarchy/src/hierarchy/each.js +6 -0
  207. package/dist/node_modules/d3-hierarchy/src/hierarchy/eachAfter.js +6 -0
  208. package/dist/node_modules/d3-hierarchy/src/hierarchy/eachBefore.js +5 -0
  209. package/dist/node_modules/d3-hierarchy/src/hierarchy/find.js +5 -0
  210. package/dist/node_modules/d3-hierarchy/src/hierarchy/index.js +57 -0
  211. package/dist/node_modules/d3-hierarchy/src/hierarchy/iterator.js +7 -0
  212. package/dist/node_modules/d3-hierarchy/src/hierarchy/leaves.js +7 -0
  213. package/dist/node_modules/d3-hierarchy/src/hierarchy/links.js +10 -0
  214. package/dist/node_modules/d3-hierarchy/src/hierarchy/path.js +12 -0
  215. package/dist/node_modules/d3-hierarchy/src/hierarchy/sort.js +6 -0
  216. package/dist/node_modules/d3-hierarchy/src/hierarchy/sum.js +7 -0
  217. package/dist/node_modules/d3-hierarchy/src/treemap/dice.js +4 -0
  218. package/dist/node_modules/d3-hierarchy/src/treemap/index.js +36 -0
  219. package/dist/node_modules/d3-hierarchy/src/treemap/round.js +4 -0
  220. package/dist/node_modules/d3-hierarchy/src/treemap/slice.js +4 -0
  221. package/dist/node_modules/d3-hierarchy/src/treemap/squarify.js +33 -0
  222. package/dist/node_modules/d3-interpolate/src/array.js +11 -0
  223. package/dist/node_modules/d3-interpolate/src/basis.js +12 -0
  224. package/dist/node_modules/d3-interpolate/src/basisClosed.js +9 -0
  225. package/dist/node_modules/d3-interpolate/src/color.js +25 -0
  226. package/dist/node_modules/d3-interpolate/src/constant.js +2 -0
  227. package/dist/node_modules/d3-interpolate/src/date.js +7 -0
  228. package/dist/node_modules/d3-interpolate/src/hcl.js +12 -0
  229. package/dist/node_modules/d3-interpolate/src/number.js +6 -0
  230. package/dist/node_modules/d3-interpolate/src/numberArray.js +12 -0
  231. package/dist/node_modules/d3-interpolate/src/object.js +10 -0
  232. package/dist/node_modules/d3-interpolate/src/rgb.js +15 -0
  233. package/dist/node_modules/d3-interpolate/src/round.js +6 -0
  234. package/dist/node_modules/d3-interpolate/src/string.js +24 -0
  235. package/dist/node_modules/d3-interpolate/src/transform/decompose.js +20 -0
  236. package/dist/node_modules/d3-interpolate/src/transform/index.js +52 -0
  237. package/dist/node_modules/d3-interpolate/src/transform/parse.js +10 -0
  238. package/dist/node_modules/d3-interpolate/src/value.js +14 -0
  239. package/dist/node_modules/d3-path/src/path.js +61 -0
  240. package/dist/node_modules/d3-sankey/node_modules/d3-array/src/max.js +10 -0
  241. package/dist/node_modules/d3-sankey/node_modules/d3-array/src/min.js +10 -0
  242. package/dist/node_modules/d3-sankey/node_modules/d3-array/src/sum.js +10 -0
  243. package/dist/node_modules/d3-sankey/node_modules/d3-path/src/path.js +50 -0
  244. package/dist/node_modules/d3-sankey/node_modules/d3-shape/src/array.js +2 -0
  245. package/dist/node_modules/d3-sankey/node_modules/d3-shape/src/constant.js +6 -0
  246. package/dist/node_modules/d3-sankey/node_modules/d3-shape/src/link/index.js +35 -0
  247. package/dist/node_modules/d3-sankey/node_modules/d3-shape/src/point.js +7 -0
  248. package/dist/node_modules/d3-sankey/src/align.js +17 -0
  249. package/dist/node_modules/d3-sankey/src/constant.js +6 -0
  250. package/dist/node_modules/d3-sankey/src/sankey.js +224 -0
  251. package/dist/node_modules/d3-sankey/src/sankeyLinkHorizontal.js +11 -0
  252. package/dist/node_modules/d3-scale/src/band.js +39 -0
  253. package/dist/node_modules/d3-scale/src/constant.js +6 -0
  254. package/dist/node_modules/d3-scale/src/continuous.js +69 -0
  255. package/dist/node_modules/d3-scale/src/init.js +13 -0
  256. package/dist/node_modules/d3-scale/src/linear.js +32 -0
  257. package/dist/node_modules/d3-scale/src/nice.js +6 -0
  258. package/dist/node_modules/d3-scale/src/number.js +4 -0
  259. package/dist/node_modules/d3-scale/src/ordinal.js +27 -0
  260. package/dist/node_modules/d3-scale/src/tickFormat.js +27 -0
  261. package/dist/node_modules/d3-scale/src/time.js +43 -0
  262. package/dist/node_modules/d3-scale-chromatic/src/categorical/Tableau10.js +3 -0
  263. package/dist/node_modules/d3-scale-chromatic/src/colors.js +5 -0
  264. package/dist/node_modules/d3-selection/src/array.js +4 -0
  265. package/dist/node_modules/d3-selection/src/constant.js +6 -0
  266. package/dist/node_modules/d3-selection/src/creator.js +18 -0
  267. package/dist/node_modules/d3-selection/src/matcher.js +11 -0
  268. package/dist/node_modules/d3-selection/src/namespace.js +9 -0
  269. package/dist/node_modules/d3-selection/src/namespaces.js +8 -0
  270. package/dist/node_modules/d3-selection/src/select.js +5 -0
  271. package/dist/node_modules/d3-selection/src/selection/append.js +8 -0
  272. package/dist/node_modules/d3-selection/src/selection/attr.js +42 -0
  273. package/dist/node_modules/d3-selection/src/selection/call.js +5 -0
  274. package/dist/node_modules/d3-selection/src/selection/classed.js +51 -0
  275. package/dist/node_modules/d3-selection/src/selection/clone.js +12 -0
  276. package/dist/node_modules/d3-selection/src/selection/data.js +34 -0
  277. package/dist/node_modules/d3-selection/src/selection/datum.js +4 -0
  278. package/dist/node_modules/d3-selection/src/selection/dispatch.js +19 -0
  279. package/dist/node_modules/d3-selection/src/selection/each.js +5 -0
  280. package/dist/node_modules/d3-selection/src/selection/empty.js +4 -0
  281. package/dist/node_modules/d3-selection/src/selection/enter.js +24 -0
  282. package/dist/node_modules/d3-selection/src/selection/exit.js +6 -0
  283. package/dist/node_modules/d3-selection/src/selection/filter.js +8 -0
  284. package/dist/node_modules/d3-selection/src/selection/html.js +17 -0
  285. package/dist/node_modules/d3-selection/src/selection/index.js +84 -0
  286. package/dist/node_modules/d3-selection/src/selection/insert.js +12 -0
  287. package/dist/node_modules/d3-selection/src/selection/iterator.js +4 -0
  288. package/dist/node_modules/d3-selection/src/selection/join.js +5 -0
  289. package/dist/node_modules/d3-selection/src/selection/lower.js +7 -0
  290. package/dist/node_modules/d3-selection/src/selection/merge.js +7 -0
  291. package/dist/node_modules/d3-selection/src/selection/node.js +8 -0
  292. package/dist/node_modules/d3-selection/src/selection/nodes.js +4 -0
  293. package/dist/node_modules/d3-selection/src/selection/on.js +54 -0
  294. package/dist/node_modules/d3-selection/src/selection/order.js +5 -0
  295. package/dist/node_modules/d3-selection/src/selection/property.js +20 -0
  296. package/dist/node_modules/d3-selection/src/selection/raise.js +7 -0
  297. package/dist/node_modules/d3-selection/src/selection/remove.js +8 -0
  298. package/dist/node_modules/d3-selection/src/selection/select.js +8 -0
  299. package/dist/node_modules/d3-selection/src/selection/selectAll.js +14 -0
  300. package/dist/node_modules/d3-selection/src/selection/selectChild.js +14 -0
  301. package/dist/node_modules/d3-selection/src/selection/selectChildren.js +14 -0
  302. package/dist/node_modules/d3-selection/src/selection/size.js +6 -0
  303. package/dist/node_modules/d3-selection/src/selection/sort.js +16 -0
  304. package/dist/node_modules/d3-selection/src/selection/sparse.js +4 -0
  305. package/dist/node_modules/d3-selection/src/selection/style.js +24 -0
  306. package/dist/node_modules/d3-selection/src/selection/text.js +17 -0
  307. package/dist/node_modules/d3-selection/src/selector.js +7 -0
  308. package/dist/node_modules/d3-selection/src/selectorAll.js +9 -0
  309. package/dist/node_modules/d3-selection/src/window.js +4 -0
  310. package/dist/node_modules/d3-shape/src/arc.js +79 -0
  311. package/dist/node_modules/d3-shape/src/array.js +5 -0
  312. package/dist/node_modules/d3-shape/src/constant.js +6 -0
  313. package/dist/node_modules/d3-shape/src/curve/basis.js +45 -0
  314. package/dist/node_modules/d3-shape/src/curve/basisClosed.js +46 -0
  315. package/dist/node_modules/d3-shape/src/curve/basisOpen.js +42 -0
  316. package/dist/node_modules/d3-shape/src/curve/bump.js +36 -0
  317. package/dist/node_modules/d3-shape/src/curve/bundle.js +26 -0
  318. package/dist/node_modules/d3-shape/src/curve/cardinal.js +52 -0
  319. package/dist/node_modules/d3-shape/src/curve/cardinalClosed.js +51 -0
  320. package/dist/node_modules/d3-shape/src/curve/cardinalOpen.js +45 -0
  321. package/dist/node_modules/d3-shape/src/curve/catmullRom.js +67 -0
  322. package/dist/node_modules/d3-shape/src/curve/catmullRomClosed.js +56 -0
  323. package/dist/node_modules/d3-shape/src/curve/catmullRomOpen.js +50 -0
  324. package/dist/node_modules/d3-shape/src/curve/linear.js +32 -0
  325. package/dist/node_modules/d3-shape/src/curve/linearClosed.js +21 -0
  326. package/dist/node_modules/d3-shape/src/curve/monotone.js +90 -0
  327. package/dist/node_modules/d3-shape/src/curve/natural.js +35 -0
  328. package/dist/node_modules/d3-shape/src/curve/step.js +43 -0
  329. package/dist/node_modules/d3-shape/src/descending.js +4 -0
  330. package/dist/node_modules/d3-shape/src/identity.js +4 -0
  331. package/dist/node_modules/d3-shape/src/line.js +26 -0
  332. package/dist/node_modules/d3-shape/src/math.js +8 -0
  333. package/dist/node_modules/d3-shape/src/noop.js +2 -0
  334. package/dist/node_modules/d3-shape/src/path.js +15 -0
  335. package/dist/node_modules/d3-shape/src/pie.js +39 -0
  336. package/dist/node_modules/d3-shape/src/point.js +7 -0
  337. package/dist/node_modules/d3-time/src/day.js +17 -0
  338. package/dist/node_modules/d3-time/src/duration.js +2 -0
  339. package/dist/node_modules/d3-time/src/hour.js +15 -0
  340. package/dist/node_modules/d3-time/src/interval.js +24 -0
  341. package/dist/node_modules/d3-time/src/millisecond.js +10 -0
  342. package/dist/node_modules/d3-time/src/minute.js +15 -0
  343. package/dist/node_modules/d3-time/src/month.js +14 -0
  344. package/dist/node_modules/d3-time/src/second.js +9 -0
  345. package/dist/node_modules/d3-time/src/ticks.js +121 -0
  346. package/dist/node_modules/d3-time/src/week.js +21 -0
  347. package/dist/node_modules/d3-time/src/year.js +22 -0
  348. package/dist/node_modules/d3-time-format/src/defaultLocale.js +58 -0
  349. package/dist/node_modules/d3-time-format/src/locale.js +486 -0
  350. package/dist/node_modules/d3-timer/src/timeout.js +8 -0
  351. package/dist/node_modules/d3-timer/src/timer.js +51 -0
  352. package/dist/node_modules/d3-transition/src/index.js +3 -0
  353. package/dist/node_modules/d3-transition/src/interrupt.js +15 -0
  354. package/dist/node_modules/d3-transition/src/selection/index.js +4 -0
  355. package/dist/node_modules/d3-transition/src/selection/interrupt.js +7 -0
  356. package/dist/node_modules/d3-transition/src/selection/transition.js +21 -0
  357. package/dist/node_modules/d3-transition/src/transition/attr.js +47 -0
  358. package/dist/node_modules/d3-transition/src/transition/attrTween.js +36 -0
  359. package/dist/node_modules/d3-transition/src/transition/delay.js +16 -0
  360. package/dist/node_modules/d3-transition/src/transition/duration.js +16 -0
  361. package/dist/node_modules/d3-transition/src/transition/ease.js +12 -0
  362. package/dist/node_modules/d3-transition/src/transition/easeVarying.js +13 -0
  363. package/dist/node_modules/d3-transition/src/transition/end.js +14 -0
  364. package/dist/node_modules/d3-transition/src/transition/filter.js +8 -0
  365. package/dist/node_modules/d3-transition/src/transition/index.js +65 -0
  366. package/dist/node_modules/d3-transition/src/transition/interpolate.js +9 -0
  367. package/dist/node_modules/d3-transition/src/transition/merge.js +8 -0
  368. package/dist/node_modules/d3-transition/src/transition/on.js +19 -0
  369. package/dist/node_modules/d3-transition/src/transition/remove.js +11 -0
  370. package/dist/node_modules/d3-transition/src/transition/schedule.js +67 -0
  371. package/dist/node_modules/d3-transition/src/transition/select.js +10 -0
  372. package/dist/node_modules/d3-transition/src/transition/selectAll.js +13 -0
  373. package/dist/node_modules/d3-transition/src/transition/selection.js +6 -0
  374. package/dist/node_modules/d3-transition/src/transition/style.js +43 -0
  375. package/dist/node_modules/d3-transition/src/transition/styleTween.js +21 -0
  376. package/dist/node_modules/d3-transition/src/transition/text.js +15 -0
  377. package/dist/node_modules/d3-transition/src/transition/textTween.js +21 -0
  378. package/dist/node_modules/d3-transition/src/transition/transition.js +15 -0
  379. package/dist/node_modules/d3-transition/src/transition/tween.js +52 -0
  380. package/dist/node_modules/d3-zoom/src/index.js +2 -0
  381. package/dist/node_modules/d3-zoom/src/transform.js +46 -0
  382. package/dist/node_modules/d3-zoom/src/zoom.js +2 -0
  383. package/dist/node_modules/dagre-d3-es/src/dagre/acyclic.js +34 -0
  384. package/dist/node_modules/dagre-d3-es/src/dagre/add-border-segments.js +22 -0
  385. package/dist/node_modules/dagre-d3-es/src/dagre/coordinate-system.js +44 -0
  386. package/dist/node_modules/dagre-d3-es/src/dagre/data/list.js +25 -0
  387. package/dist/node_modules/dagre-d3-es/src/dagre/greedy-fas.js +69 -0
  388. package/dist/node_modules/dagre-d3-es/src/dagre/index.js +4 -0
  389. package/dist/node_modules/dagre-d3-es/src/dagre/layout.js +241 -0
  390. package/dist/node_modules/dagre-d3-es/src/dagre/nesting-graph.js +66 -0
  391. package/dist/node_modules/dagre-d3-es/src/dagre/normalize.js +32 -0
  392. package/dist/node_modules/dagre-d3-es/src/dagre/order/add-subgraph-constraints.js +14 -0
  393. package/dist/node_modules/dagre-d3-es/src/dagre/order/barycenter.js +25 -0
  394. package/dist/node_modules/dagre-d3-es/src/dagre/order/build-layer-graph.js +25 -0
  395. package/dist/node_modules/dagre-d3-es/src/dagre/order/cross-count.js +33 -0
  396. package/dist/node_modules/dagre-d3-es/src/dagre/order/index.js +44 -0
  397. package/dist/node_modules/dagre-d3-es/src/dagre/order/init-order.js +23 -0
  398. package/dist/node_modules/dagre-d3-es/src/dagre/order/resolve-conflicts.js +55 -0
  399. package/dist/node_modules/dagre-d3-es/src/dagre/order/sort-subgraph.js +43 -0
  400. package/dist/node_modules/dagre-d3-es/src/dagre/order/sort.js +27 -0
  401. package/dist/node_modules/dagre-d3-es/src/dagre/parent-dummy-chains.js +40 -0
  402. package/dist/node_modules/dagre-d3-es/src/dagre/position/bk.js +216 -0
  403. package/dist/node_modules/dagre-d3-es/src/dagre/position/index.js +23 -0
  404. package/dist/node_modules/dagre-d3-es/src/dagre/rank/feasible-tree.js +31 -0
  405. package/dist/node_modules/dagre-d3-es/src/dagre/rank/index.js +25 -0
  406. package/dist/node_modules/dagre-d3-es/src/dagre/rank/network-simplex.js +84 -0
  407. package/dist/node_modules/dagre-d3-es/src/dagre/rank/util.js +20 -0
  408. package/dist/node_modules/dagre-d3-es/src/dagre/util.js +117 -0
  409. package/dist/node_modules/dagre-d3-es/src/graphlib/alg/dfs.js +16 -0
  410. package/dist/node_modules/dagre-d3-es/src/graphlib/alg/dijkstra-all.js +1 -0
  411. package/dist/node_modules/dagre-d3-es/src/graphlib/alg/dijkstra.js +2 -0
  412. package/dist/node_modules/dagre-d3-es/src/graphlib/alg/floyd-warshall.js +2 -0
  413. package/dist/node_modules/dagre-d3-es/src/graphlib/alg/index.js +8 -0
  414. package/dist/node_modules/dagre-d3-es/src/graphlib/alg/is-acyclic.js +1 -0
  415. package/dist/node_modules/dagre-d3-es/src/graphlib/alg/postorder.js +5 -0
  416. package/dist/node_modules/dagre-d3-es/src/graphlib/alg/preorder.js +5 -0
  417. package/dist/node_modules/dagre-d3-es/src/graphlib/alg/prim.js +1 -0
  418. package/dist/node_modules/dagre-d3-es/src/graphlib/alg/topsort.js +15 -0
  419. package/dist/node_modules/dagre-d3-es/src/graphlib/graph.js +228 -0
  420. package/dist/node_modules/dagre-d3-es/src/graphlib/index.js +1 -0
  421. package/dist/node_modules/dagre-d3-es/src/graphlib/json.js +32 -0
  422. package/dist/node_modules/dayjs/dayjs.min.js +298 -0
  423. package/dist/node_modules/dayjs/plugin/advancedFormat.js +37 -0
  424. package/dist/node_modules/dayjs/plugin/customParseFormat.js +160 -0
  425. package/dist/node_modules/dayjs/plugin/duration.js +164 -0
  426. package/dist/node_modules/dayjs/plugin/isoWeek.js +29 -0
  427. package/dist/node_modules/devlop/lib/default.js +2 -0
  428. package/dist/node_modules/dompurify/dist/purify.es.js +547 -0
  429. package/dist/node_modules/hast-util-from-dom/lib/index.js +58 -0
  430. package/dist/node_modules/hast-util-from-html-isomorphic/lib/browser.js +10 -0
  431. package/dist/node_modules/hast-util-is-element/lib/index.js +36 -0
  432. package/dist/node_modules/hast-util-parse-selector/lib/index.js +16 -0
  433. package/dist/node_modules/hast-util-to-text/lib/index.js +104 -0
  434. package/dist/node_modules/hastscript/lib/create-h.js +86 -0
  435. package/dist/node_modules/hastscript/lib/index.js +5 -0
  436. package/dist/node_modules/hastscript/lib/svg-case-sensitive-tag-names.js +2 -0
  437. package/dist/node_modules/internmap/src/index.js +36 -0
  438. package/dist/node_modules/katex/dist/katex.js +22103 -0
  439. package/dist/node_modules/khroma/dist/channels/index.js +68 -0
  440. package/dist/node_modules/khroma/dist/channels/reusable.js +8 -0
  441. package/dist/node_modules/khroma/dist/channels/type.js +20 -0
  442. package/dist/node_modules/khroma/dist/color/hex.js +22 -0
  443. package/dist/node_modules/khroma/dist/color/hsl.js +36 -0
  444. package/dist/node_modules/khroma/dist/color/index.js +23 -0
  445. package/dist/node_modules/khroma/dist/color/keyword.js +162 -0
  446. package/dist/node_modules/khroma/dist/color/rgb.js +23 -0
  447. package/dist/node_modules/khroma/dist/constants.js +9 -0
  448. package/dist/node_modules/khroma/dist/methods/adjust.js +8 -0
  449. package/dist/node_modules/khroma/dist/methods/adjust_channel.js +7 -0
  450. package/dist/node_modules/khroma/dist/methods/change.js +8 -0
  451. package/dist/node_modules/khroma/dist/methods/channel.js +4 -0
  452. package/dist/node_modules/khroma/dist/methods/darken.js +3 -0
  453. package/dist/node_modules/khroma/dist/methods/invert.js +7 -0
  454. package/dist/node_modules/khroma/dist/methods/is_dark.js +3 -0
  455. package/dist/node_modules/khroma/dist/methods/is_light.js +3 -0
  456. package/dist/node_modules/khroma/dist/methods/lighten.js +3 -0
  457. package/dist/node_modules/khroma/dist/methods/luminance.js +7 -0
  458. package/dist/node_modules/khroma/dist/methods/mix.js +7 -0
  459. package/dist/node_modules/khroma/dist/methods/rgba.js +15 -0
  460. package/dist/node_modules/khroma/dist/utils/channel.js +58 -0
  461. package/dist/node_modules/khroma/dist/utils/index.js +9 -0
  462. package/dist/node_modules/khroma/dist/utils/lang.js +5 -0
  463. package/dist/node_modules/khroma/dist/utils/unit.js +5 -0
  464. package/dist/node_modules/langium/lib/default-module.js +85 -0
  465. package/dist/node_modules/langium/lib/dependency-injection.js +62 -0
  466. package/dist/node_modules/langium/lib/documentation/comment-provider.js +11 -0
  467. package/dist/node_modules/langium/lib/documentation/documentation-provider.js +36 -0
  468. package/dist/node_modules/langium/lib/documentation/jsdoc.js +303 -0
  469. package/dist/node_modules/langium/lib/index.js +182 -0
  470. package/dist/node_modules/langium/lib/languages/generated/ast.js +1089 -0
  471. package/dist/node_modules/langium/lib/languages/grammar-config.js +13 -0
  472. package/dist/node_modules/langium/lib/parser/async-parser.js +83 -0
  473. package/dist/node_modules/langium/lib/parser/completion-parser-builder.js +7 -0
  474. package/dist/node_modules/langium/lib/parser/cst-node-builder.js +160 -0
  475. package/dist/node_modules/langium/lib/parser/indentation-aware.js +141 -0
  476. package/dist/node_modules/langium/lib/parser/langium-parser-builder.js +11 -0
  477. package/dist/node_modules/langium/lib/parser/langium-parser.js +388 -0
  478. package/dist/node_modules/langium/lib/parser/lexer.js +50 -0
  479. package/dist/node_modules/langium/lib/parser/parser-builder-base.js +275 -0
  480. package/dist/node_modules/langium/lib/parser/token-builder.js +61 -0
  481. package/dist/node_modules/langium/lib/parser/value-converter.js +78 -0
  482. package/dist/node_modules/langium/lib/references/linker.js +190 -0
  483. package/dist/node_modules/langium/lib/references/name-provider.js +13 -0
  484. package/dist/node_modules/langium/lib/references/references.js +76 -0
  485. package/dist/node_modules/langium/lib/references/scope-computation.js +35 -0
  486. package/dist/node_modules/langium/lib/references/scope-provider.js +34 -0
  487. package/dist/node_modules/langium/lib/references/scope.js +73 -0
  488. package/dist/node_modules/langium/lib/serializer/hydrator.js +125 -0
  489. package/dist/node_modules/langium/lib/serializer/json-serializer.js +145 -0
  490. package/dist/node_modules/langium/lib/service-registry.js +37 -0
  491. package/dist/node_modules/langium/lib/syntax-tree.js +70 -0
  492. package/dist/node_modules/langium/lib/utils/ast-utils.js +157 -0
  493. package/dist/node_modules/langium/lib/utils/caching.js +91 -0
  494. package/dist/node_modules/langium/lib/utils/cancellation.js +5 -0
  495. package/dist/node_modules/langium/lib/utils/collections.js +85 -0
  496. package/dist/node_modules/langium/lib/utils/cst-utils.js +190 -0
  497. package/dist/node_modules/langium/lib/utils/disposable.js +8 -0
  498. package/dist/node_modules/langium/lib/utils/errors.js +12 -0
  499. package/dist/node_modules/langium/lib/utils/event.js +5 -0
  500. package/dist/node_modules/langium/lib/utils/grammar-loader.js +22 -0
  501. package/dist/node_modules/langium/lib/utils/grammar-utils.js +296 -0
  502. package/dist/node_modules/langium/lib/utils/index.js +53 -0
  503. package/dist/node_modules/langium/lib/utils/promise-utils.js +30 -0
  504. package/dist/node_modules/langium/lib/utils/regexp-utils.js +167 -0
  505. package/dist/node_modules/langium/lib/utils/stream.js +327 -0
  506. package/dist/node_modules/langium/lib/utils/uri-utils.js +107 -0
  507. package/dist/node_modules/langium/lib/validation/document-validator.js +210 -0
  508. package/dist/node_modules/langium/lib/validation/validation-registry.js +87 -0
  509. package/dist/node_modules/langium/lib/workspace/ast-descriptions.js +57 -0
  510. package/dist/node_modules/langium/lib/workspace/ast-node-locator.js +28 -0
  511. package/dist/node_modules/langium/lib/workspace/configuration.js +51 -0
  512. package/dist/node_modules/langium/lib/workspace/document-builder.js +201 -0
  513. package/dist/node_modules/langium/lib/workspace/documents.js +142 -0
  514. package/dist/node_modules/langium/lib/workspace/file-system-provider.js +34 -0
  515. package/dist/node_modules/langium/lib/workspace/index-manager.js +49 -0
  516. package/dist/node_modules/langium/lib/workspace/profiler.js +89 -0
  517. package/dist/node_modules/langium/lib/workspace/workspace-lock.js +42 -0
  518. package/dist/node_modules/langium/lib/workspace/workspace-manager.js +66 -0
  519. package/dist/node_modules/layout-base/layout-base.js +1407 -0
  520. package/dist/node_modules/lodash-es/_DataView.js +4 -0
  521. package/dist/node_modules/lodash-es/_Hash.js +15 -0
  522. package/dist/node_modules/lodash-es/_ListCache.js +15 -0
  523. package/dist/node_modules/lodash-es/_Map.js +4 -0
  524. package/dist/node_modules/lodash-es/_MapCache.js +15 -0
  525. package/dist/node_modules/lodash-es/_Promise.js +4 -0
  526. package/dist/node_modules/lodash-es/_Set.js +4 -0
  527. package/dist/node_modules/lodash-es/_SetCache.js +10 -0
  528. package/dist/node_modules/lodash-es/_Stack.js +12 -0
  529. package/dist/node_modules/lodash-es/_Symbol.js +3 -0
  530. package/dist/node_modules/lodash-es/_Uint8Array.js +3 -0
  531. package/dist/node_modules/lodash-es/_WeakMap.js +4 -0
  532. package/dist/node_modules/lodash-es/_apply.js +11 -0
  533. package/dist/node_modules/lodash-es/_arrayAggregator.js +9 -0
  534. package/dist/node_modules/lodash-es/_arrayEach.js +6 -0
  535. package/dist/node_modules/lodash-es/_arrayEvery.js +6 -0
  536. package/dist/node_modules/lodash-es/_arrayFilter.js +9 -0
  537. package/dist/node_modules/lodash-es/_arrayIncludes.js +6 -0
  538. package/dist/node_modules/lodash-es/_arrayIncludesWith.js +6 -0
  539. package/dist/node_modules/lodash-es/_arrayLikeKeys.js +14 -0
  540. package/dist/node_modules/lodash-es/_arrayMap.js +6 -0
  541. package/dist/node_modules/lodash-es/_arrayPush.js +6 -0
  542. package/dist/node_modules/lodash-es/_arrayReduce.js +7 -0
  543. package/dist/node_modules/lodash-es/_arraySome.js +6 -0
  544. package/dist/node_modules/lodash-es/_asciiSize.js +3 -0
  545. package/dist/node_modules/lodash-es/_assignMergeValue.js +7 -0
  546. package/dist/node_modules/lodash-es/_assignValue.js +9 -0
  547. package/dist/node_modules/lodash-es/_assocIndexOf.js +7 -0
  548. package/dist/node_modules/lodash-es/_baseAggregator.js +8 -0
  549. package/dist/node_modules/lodash-es/_baseAssign.js +7 -0
  550. package/dist/node_modules/lodash-es/_baseAssignIn.js +7 -0
  551. package/dist/node_modules/lodash-es/_baseAssignValue.js +11 -0
  552. package/dist/node_modules/lodash-es/_baseClone.js +56 -0
  553. package/dist/node_modules/lodash-es/_baseCreate.js +12 -0
  554. package/dist/node_modules/lodash-es/_baseDifference.js +22 -0
  555. package/dist/node_modules/lodash-es/_baseEach.js +4 -0
  556. package/dist/node_modules/lodash-es/_baseEvery.js +9 -0
  557. package/dist/node_modules/lodash-es/_baseExtremum.js +10 -0
  558. package/dist/node_modules/lodash-es/_baseFilter.js +9 -0
  559. package/dist/node_modules/lodash-es/_baseFindIndex.js +6 -0
  560. package/dist/node_modules/lodash-es/_baseFlatten.js +12 -0
  561. package/dist/node_modules/lodash-es/_baseFor.js +3 -0
  562. package/dist/node_modules/lodash-es/_baseForOwn.js +7 -0
  563. package/dist/node_modules/lodash-es/_baseGet.js +9 -0
  564. package/dist/node_modules/lodash-es/_baseGetAllKeys.js +8 -0
  565. package/dist/node_modules/lodash-es/_baseGetTag.js +9 -0
  566. package/dist/node_modules/lodash-es/_baseGt.js +5 -0
  567. package/dist/node_modules/lodash-es/_baseHas.js +6 -0
  568. package/dist/node_modules/lodash-es/_baseHasIn.js +5 -0
  569. package/dist/node_modules/lodash-es/_baseIndexOf.js +8 -0
  570. package/dist/node_modules/lodash-es/_baseIsArguments.js +8 -0
  571. package/dist/node_modules/lodash-es/_baseIsEqual.js +7 -0
  572. package/dist/node_modules/lodash-es/_baseIsEqualDeep.js +29 -0
  573. package/dist/node_modules/lodash-es/_baseIsMap.js +8 -0
  574. package/dist/node_modules/lodash-es/_baseIsMatch.js +25 -0
  575. package/dist/node_modules/lodash-es/_baseIsNaN.js +5 -0
  576. package/dist/node_modules/lodash-es/_baseIsNative.js +10 -0
  577. package/dist/node_modules/lodash-es/_baseIsRegExp.js +8 -0
  578. package/dist/node_modules/lodash-es/_baseIsSet.js +8 -0
  579. package/dist/node_modules/lodash-es/_baseIsTypedArray.js +10 -0
  580. package/dist/node_modules/lodash-es/_baseIteratee.js +10 -0
  581. package/dist/node_modules/lodash-es/_baseKeys.js +11 -0
  582. package/dist/node_modules/lodash-es/_baseKeysIn.js +12 -0
  583. package/dist/node_modules/lodash-es/_baseLt.js +5 -0
  584. package/dist/node_modules/lodash-es/_baseMap.js +10 -0
  585. package/dist/node_modules/lodash-es/_baseMatches.js +11 -0
  586. package/dist/node_modules/lodash-es/_baseMatchesProperty.js +16 -0
  587. package/dist/node_modules/lodash-es/_baseMerge.js +18 -0
  588. package/dist/node_modules/lodash-es/_baseMergeDeep.js +30 -0
  589. package/dist/node_modules/lodash-es/_baseOrderBy.js +30 -0
  590. package/dist/node_modules/lodash-es/_basePick.js +9 -0
  591. package/dist/node_modules/lodash-es/_basePickBy.js +12 -0
  592. package/dist/node_modules/lodash-es/_baseProperty.js +7 -0
  593. package/dist/node_modules/lodash-es/_basePropertyDeep.js +8 -0
  594. package/dist/node_modules/lodash-es/_baseRange.js +7 -0
  595. package/dist/node_modules/lodash-es/_baseReduce.js +7 -0
  596. package/dist/node_modules/lodash-es/_baseRest.js +8 -0
  597. package/dist/node_modules/lodash-es/_baseSet.js +21 -0
  598. package/dist/node_modules/lodash-es/_baseSetToString.js +12 -0
  599. package/dist/node_modules/lodash-es/_baseSlice.js +8 -0
  600. package/dist/node_modules/lodash-es/_baseSome.js +9 -0
  601. package/dist/node_modules/lodash-es/_baseSortBy.js +7 -0
  602. package/dist/node_modules/lodash-es/_baseTimes.js +6 -0
  603. package/dist/node_modules/lodash-es/_baseToString.js +14 -0
  604. package/dist/node_modules/lodash-es/_baseTrim.js +7 -0
  605. package/dist/node_modules/lodash-es/_baseUnary.js +7 -0
  606. package/dist/node_modules/lodash-es/_baseUniq.js +26 -0
  607. package/dist/node_modules/lodash-es/_baseValues.js +8 -0
  608. package/dist/node_modules/lodash-es/_baseZipObject.js +9 -0
  609. package/dist/node_modules/lodash-es/_cacheHas.js +5 -0
  610. package/dist/node_modules/lodash-es/_castFunction.js +6 -0
  611. package/dist/node_modules/lodash-es/_castPath.js +9 -0
  612. package/dist/node_modules/lodash-es/_cloneArrayBuffer.js +7 -0
  613. package/dist/node_modules/lodash-es/_cloneBuffer.js +9 -0
  614. package/dist/node_modules/lodash-es/_cloneDataView.js +7 -0
  615. package/dist/node_modules/lodash-es/_cloneRegExp.js +7 -0
  616. package/dist/node_modules/lodash-es/_cloneSymbol.js +7 -0
  617. package/dist/node_modules/lodash-es/_cloneTypedArray.js +7 -0
  618. package/dist/node_modules/lodash-es/_compareAscending.js +11 -0
  619. package/dist/node_modules/lodash-es/_compareMultiple.js +10 -0
  620. package/dist/node_modules/lodash-es/_copyArray.js +7 -0
  621. package/dist/node_modules/lodash-es/_copyObject.js +13 -0
  622. package/dist/node_modules/lodash-es/_copySymbols.js +7 -0
  623. package/dist/node_modules/lodash-es/_copySymbolsIn.js +7 -0
  624. package/dist/node_modules/lodash-es/_coreJsData.js +3 -0
  625. package/dist/node_modules/lodash-es/_createAggregator.js +12 -0
  626. package/dist/node_modules/lodash-es/_createAssigner.js +14 -0
  627. package/dist/node_modules/lodash-es/_createBaseEach.js +11 -0
  628. package/dist/node_modules/lodash-es/_createBaseFor.js +11 -0
  629. package/dist/node_modules/lodash-es/_createFind.js +18 -0
  630. package/dist/node_modules/lodash-es/_createRange.js +10 -0
  631. package/dist/node_modules/lodash-es/_createSet.js +7 -0
  632. package/dist/node_modules/lodash-es/_defineProperty.js +8 -0
  633. package/dist/node_modules/lodash-es/_equalArrays.js +34 -0
  634. package/dist/node_modules/lodash-es/_equalByTag.js +34 -0
  635. package/dist/node_modules/lodash-es/_equalObjects.js +31 -0
  636. package/dist/node_modules/lodash-es/_flatRest.js +8 -0
  637. package/dist/node_modules/lodash-es/_freeGlobal.js +2 -0
  638. package/dist/node_modules/lodash-es/_getAllKeys.js +8 -0
  639. package/dist/node_modules/lodash-es/_getAllKeysIn.js +8 -0
  640. package/dist/node_modules/lodash-es/_getMapData.js +7 -0
  641. package/dist/node_modules/lodash-es/_getMatchData.js +15 -0
  642. package/dist/node_modules/lodash-es/_getNative.js +8 -0
  643. package/dist/node_modules/lodash-es/_getPrototype.js +3 -0
  644. package/dist/node_modules/lodash-es/_getRawTag.js +13 -0
  645. package/dist/node_modules/lodash-es/_getSymbols.js +8 -0
  646. package/dist/node_modules/lodash-es/_getSymbolsIn.js +9 -0
  647. package/dist/node_modules/lodash-es/_getTag.js +21 -0
  648. package/dist/node_modules/lodash-es/_getValue.js +5 -0
  649. package/dist/node_modules/lodash-es/_hasPath.js +17 -0
  650. package/dist/node_modules/lodash-es/_hasUnicode.js +6 -0
  651. package/dist/node_modules/lodash-es/_hashClear.js +6 -0
  652. package/dist/node_modules/lodash-es/_hashDelete.js +6 -0
  653. package/dist/node_modules/lodash-es/_hashGet.js +12 -0
  654. package/dist/node_modules/lodash-es/_hashHas.js +8 -0
  655. package/dist/node_modules/lodash-es/_hashSet.js +8 -0
  656. package/dist/node_modules/lodash-es/_initCloneArray.js +7 -0
  657. package/dist/node_modules/lodash-es/_initCloneByTag.js +32 -0
  658. package/dist/node_modules/lodash-es/_initCloneObject.js +8 -0
  659. package/dist/node_modules/lodash-es/_isFlattenable.js +9 -0
  660. package/dist/node_modules/lodash-es/_isIndex.js +7 -0
  661. package/dist/node_modules/lodash-es/_isIterateeCall.js +11 -0
  662. package/dist/node_modules/lodash-es/_isKey.js +10 -0
  663. package/dist/node_modules/lodash-es/_isKeyable.js +6 -0
  664. package/dist/node_modules/lodash-es/_isMasked.js +10 -0
  665. package/dist/node_modules/lodash-es/_isPrototype.js +7 -0
  666. package/dist/node_modules/lodash-es/_isStrictComparable.js +6 -0
  667. package/dist/node_modules/lodash-es/_listCacheClear.js +5 -0
  668. package/dist/node_modules/lodash-es/_listCacheDelete.js +8 -0
  669. package/dist/node_modules/lodash-es/_listCacheGet.js +7 -0
  670. package/dist/node_modules/lodash-es/_listCacheHas.js +6 -0
  671. package/dist/node_modules/lodash-es/_listCacheSet.js +7 -0
  672. package/dist/node_modules/lodash-es/_mapCacheClear.js +12 -0
  673. package/dist/node_modules/lodash-es/_mapCacheDelete.js +7 -0
  674. package/dist/node_modules/lodash-es/_mapCacheGet.js +6 -0
  675. package/dist/node_modules/lodash-es/_mapCacheHas.js +6 -0
  676. package/dist/node_modules/lodash-es/_mapCacheSet.js +7 -0
  677. package/dist/node_modules/lodash-es/_mapToArray.js +8 -0
  678. package/dist/node_modules/lodash-es/_matchesStrictComparable.js +7 -0
  679. package/dist/node_modules/lodash-es/_memoizeCapped.js +10 -0
  680. package/dist/node_modules/lodash-es/_nativeCreate.js +3 -0
  681. package/dist/node_modules/lodash-es/_nativeKeys.js +3 -0
  682. package/dist/node_modules/lodash-es/_nativeKeysIn.js +7 -0
  683. package/dist/node_modules/lodash-es/_nodeUtil.js +7 -0
  684. package/dist/node_modules/lodash-es/_objectToString.js +6 -0
  685. package/dist/node_modules/lodash-es/_overArg.js +7 -0
  686. package/dist/node_modules/lodash-es/_overRest.js +12 -0
  687. package/dist/node_modules/lodash-es/_root.js +3 -0
  688. package/dist/node_modules/lodash-es/_safeGet.js +5 -0
  689. package/dist/node_modules/lodash-es/_setCacheAdd.js +6 -0
  690. package/dist/node_modules/lodash-es/_setCacheHas.js +5 -0
  691. package/dist/node_modules/lodash-es/_setToArray.js +8 -0
  692. package/dist/node_modules/lodash-es/_setToString.js +4 -0
  693. package/dist/node_modules/lodash-es/_shortOut.js +13 -0
  694. package/dist/node_modules/lodash-es/_stackClear.js +6 -0
  695. package/dist/node_modules/lodash-es/_stackDelete.js +6 -0
  696. package/dist/node_modules/lodash-es/_stackGet.js +5 -0
  697. package/dist/node_modules/lodash-es/_stackHas.js +5 -0
  698. package/dist/node_modules/lodash-es/_stackSet.js +15 -0
  699. package/dist/node_modules/lodash-es/_strictIndexOf.js +6 -0
  700. package/dist/node_modules/lodash-es/_stringSize.js +8 -0
  701. package/dist/node_modules/lodash-es/_stringToPath.js +8 -0
  702. package/dist/node_modules/lodash-es/_toKey.js +9 -0
  703. package/dist/node_modules/lodash-es/_toSource.js +14 -0
  704. package/dist/node_modules/lodash-es/_trimmedEndIndex.js +7 -0
  705. package/dist/node_modules/lodash-es/_unicodeSize.js +17 -0
  706. package/dist/node_modules/lodash-es/assign.js +14 -0
  707. package/dist/node_modules/lodash-es/clone.js +7 -0
  708. package/dist/node_modules/lodash-es/cloneDeep.js +7 -0
  709. package/dist/node_modules/lodash-es/compact.js +9 -0
  710. package/dist/node_modules/lodash-es/constant.js +7 -0
  711. package/dist/node_modules/lodash-es/defaults.js +14 -0
  712. package/dist/node_modules/lodash-es/difference.js +8 -0
  713. package/dist/node_modules/lodash-es/drop.js +8 -0
  714. package/dist/node_modules/lodash-es/dropRight.js +8 -0
  715. package/dist/node_modules/lodash-es/eq.js +5 -0
  716. package/dist/node_modules/lodash-es/every.js +11 -0
  717. package/dist/node_modules/lodash-es/filter.js +9 -0
  718. package/dist/node_modules/lodash-es/find.js +4 -0
  719. package/dist/node_modules/lodash-es/findIndex.js +12 -0
  720. package/dist/node_modules/lodash-es/flatMap.js +7 -0
  721. package/dist/node_modules/lodash-es/flatten.js +6 -0
  722. package/dist/node_modules/lodash-es/forEach.js +9 -0
  723. package/dist/node_modules/lodash-es/forIn.js +8 -0
  724. package/dist/node_modules/lodash-es/forOwn.js +7 -0
  725. package/dist/node_modules/lodash-es/get.js +7 -0
  726. package/dist/node_modules/lodash-es/groupBy.js +6 -0
  727. package/dist/node_modules/lodash-es/has.js +7 -0
  728. package/dist/node_modules/lodash-es/hasIn.js +7 -0
  729. package/dist/node_modules/lodash-es/head.js +5 -0
  730. package/dist/node_modules/lodash-es/identity.js +5 -0
  731. package/dist/node_modules/lodash-es/includes.js +13 -0
  732. package/dist/node_modules/lodash-es/indexOf.js +11 -0
  733. package/dist/node_modules/lodash-es/isArguments.js +8 -0
  734. package/dist/node_modules/lodash-es/isArray.js +2 -0
  735. package/dist/node_modules/lodash-es/isArrayLike.js +7 -0
  736. package/dist/node_modules/lodash-es/isArrayLikeObject.js +7 -0
  737. package/dist/node_modules/lodash-es/isBuffer.js +4 -0
  738. package/dist/node_modules/lodash-es/isEmpty.js +20 -0
  739. package/dist/node_modules/lodash-es/isFunction.js +10 -0
  740. package/dist/node_modules/lodash-es/isLength.js +6 -0
  741. package/dist/node_modules/lodash-es/isMap.js +5 -0
  742. package/dist/node_modules/lodash-es/isObject.js +6 -0
  743. package/dist/node_modules/lodash-es/isObjectLike.js +5 -0
  744. package/dist/node_modules/lodash-es/isPlainObject.js +13 -0
  745. package/dist/node_modules/lodash-es/isRegExp.js +5 -0
  746. package/dist/node_modules/lodash-es/isSet.js +5 -0
  747. package/dist/node_modules/lodash-es/isString.js +9 -0
  748. package/dist/node_modules/lodash-es/isSymbol.js +8 -0
  749. package/dist/node_modules/lodash-es/isTypedArray.js +5 -0
  750. package/dist/node_modules/lodash-es/isUndefined.js +5 -0
  751. package/dist/node_modules/lodash-es/keys.js +8 -0
  752. package/dist/node_modules/lodash-es/keysIn.js +8 -0
  753. package/dist/node_modules/lodash-es/last.js +6 -0
  754. package/dist/node_modules/lodash-es/map.js +9 -0
  755. package/dist/node_modules/lodash-es/mapValues.js +11 -0
  756. package/dist/node_modules/lodash-es/max.js +8 -0
  757. package/dist/node_modules/lodash-es/memoize.js +15 -0
  758. package/dist/node_modules/lodash-es/merge.js +6 -0
  759. package/dist/node_modules/lodash-es/min.js +8 -0
  760. package/dist/node_modules/lodash-es/minBy.js +8 -0
  761. package/dist/node_modules/lodash-es/negate.js +16 -0
  762. package/dist/node_modules/lodash-es/noop.js +3 -0
  763. package/dist/node_modules/lodash-es/now.js +5 -0
  764. package/dist/node_modules/lodash-es/pick.js +6 -0
  765. package/dist/node_modules/lodash-es/pickBy.js +15 -0
  766. package/dist/node_modules/lodash-es/property.js +9 -0
  767. package/dist/node_modules/lodash-es/range.js +3 -0
  768. package/dist/node_modules/lodash-es/reduce.js +11 -0
  769. package/dist/node_modules/lodash-es/reject.js +10 -0
  770. package/dist/node_modules/lodash-es/size.js +14 -0
  771. package/dist/node_modules/lodash-es/some.js +11 -0
  772. package/dist/node_modules/lodash-es/sortBy.js +10 -0
  773. package/dist/node_modules/lodash-es/stubArray.js +5 -0
  774. package/dist/node_modules/lodash-es/stubFalse.js +5 -0
  775. package/dist/node_modules/lodash-es/toFinite.js +7 -0
  776. package/dist/node_modules/lodash-es/toInteger.js +7 -0
  777. package/dist/node_modules/lodash-es/toNumber.js +18 -0
  778. package/dist/node_modules/lodash-es/toPlainObject.js +7 -0
  779. package/dist/node_modules/lodash-es/toString.js +6 -0
  780. package/dist/node_modules/lodash-es/union.js +8 -0
  781. package/dist/node_modules/lodash-es/uniq.js +6 -0
  782. package/dist/node_modules/lodash-es/uniqBy.js +7 -0
  783. package/dist/node_modules/lodash-es/uniqueId.js +8 -0
  784. package/dist/node_modules/lodash-es/values.js +7 -0
  785. package/dist/node_modules/lodash-es/zipObject.js +7 -0
  786. package/dist/node_modules/longest-streak/index.js +7 -0
  787. package/dist/node_modules/markdown-table/index.js +57 -0
  788. package/dist/node_modules/marked/lib/marked.esm.js +1384 -0
  789. package/dist/node_modules/mdast-util-find-and-replace/lib/index.js +59 -0
  790. package/dist/node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp/index.js +5 -0
  791. package/dist/node_modules/mdast-util-gfm/lib/index.js +24 -0
  792. package/dist/node_modules/mdast-util-gfm-autolink-literal/lib/index.js +127 -0
  793. package/dist/node_modules/mdast-util-gfm-footnote/lib/index.js +95 -0
  794. package/dist/node_modules/mdast-util-gfm-strikethrough/lib/index.js +47 -0
  795. package/dist/node_modules/mdast-util-gfm-table/lib/index.js +135 -0
  796. package/dist/node_modules/mdast-util-gfm-task-list-item/lib/index.js +56 -0
  797. package/dist/node_modules/mdast-util-math/lib/index.js +142 -0
  798. package/dist/node_modules/mdast-util-phrasing/lib/index.js +20 -0
  799. package/dist/node_modules/mdast-util-to-markdown/lib/handle/blockquote.js +10 -0
  800. package/dist/node_modules/mdast-util-to-markdown/lib/handle/break.js +7 -0
  801. package/dist/node_modules/mdast-util-to-markdown/lib/handle/code.js +34 -0
  802. package/dist/node_modules/mdast-util-to-markdown/lib/handle/definition.js +22 -0
  803. package/dist/node_modules/mdast-util-to-markdown/lib/handle/emphasis.js +23 -0
  804. package/dist/node_modules/mdast-util-to-markdown/lib/handle/heading.js +22 -0
  805. package/dist/node_modules/mdast-util-to-markdown/lib/handle/html.js +8 -0
  806. package/dist/node_modules/mdast-util-to-markdown/lib/handle/image-reference.js +21 -0
  807. package/dist/node_modules/mdast-util-to-markdown/lib/handle/image.js +26 -0
  808. package/dist/node_modules/mdast-util-to-markdown/lib/handle/index.js +42 -0
  809. package/dist/node_modules/mdast-util-to-markdown/lib/handle/inline-code.js +17 -0
  810. package/dist/node_modules/mdast-util-to-markdown/lib/handle/link-reference.js +21 -0
  811. package/dist/node_modules/mdast-util-to-markdown/lib/handle/link.js +39 -0
  812. package/dist/node_modules/mdast-util-to-markdown/lib/handle/list-item.js +16 -0
  813. package/dist/node_modules/mdast-util-to-markdown/lib/handle/list.js +24 -0
  814. package/dist/node_modules/mdast-util-to-markdown/lib/handle/paragraph.js +5 -0
  815. package/dist/node_modules/mdast-util-to-markdown/lib/handle/root.js +7 -0
  816. package/dist/node_modules/mdast-util-to-markdown/lib/handle/strong.js +23 -0
  817. package/dist/node_modules/mdast-util-to-markdown/lib/handle/text.js +4 -0
  818. package/dist/node_modules/mdast-util-to-markdown/lib/handle/thematic-break.js +7 -0
  819. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-bullet-ordered.js +6 -0
  820. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-bullet-other.js +9 -0
  821. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-bullet.js +6 -0
  822. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-emphasis.js +6 -0
  823. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-fence.js +6 -0
  824. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-list-item-indent.js +6 -0
  825. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-quote.js +6 -0
  826. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-rule-repetition.js +6 -0
  827. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-rule.js +6 -0
  828. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-strong.js +6 -0
  829. package/dist/node_modules/mdast-util-to-markdown/lib/util/encode-character-reference.js +4 -0
  830. package/dist/node_modules/mdast-util-to-markdown/lib/util/encode-info.js +36 -0
  831. package/dist/node_modules/mdast-util-to-markdown/lib/util/format-code-as-indented.js +4 -0
  832. package/dist/node_modules/mdast-util-to-markdown/lib/util/format-heading-as-setext.js +10 -0
  833. package/dist/node_modules/mdast-util-to-markdown/lib/util/format-link-as-autolink.js +6 -0
  834. package/dist/node_modules/mdast-util-to-markdown/lib/util/pattern-in-scope.js +10 -0
  835. package/dist/node_modules/mdast-util-to-string/lib/index.js +22 -0
  836. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/architectureDiagram-VXUJARFQ.js +673 -0
  837. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/blockDiagram-VD42YOAC.js +3010 -0
  838. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/c4Diagram-YG6GDRKO.js +2955 -0
  839. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-4BX2VUAB.js +6 -0
  840. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-55IACEB6.js +8 -0
  841. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-ABZYJK2D.js +1547 -0
  842. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-AGHRB4JF.js +29 -0
  843. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-ATLVNIR6.js +65 -0
  844. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-B4BG7PRW.js +3110 -0
  845. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-CVBHYZKI.js +10 -0
  846. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-DI55MBZ5.js +1994 -0
  847. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-DR5Q36YT.js +135 -0
  848. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-EXTU4WIE.js +9 -0
  849. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-FMBD7UC4.js +3 -0
  850. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-HN2XXSSU.js +74 -0
  851. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-JA3XYJ7Z.js +247 -0
  852. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-JZLCHNYA.js +3516 -0
  853. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-MI3HLSF2.js +1140 -0
  854. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-N4CR4FBY.js +39 -0
  855. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-QN33PNHL.js +23 -0
  856. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-QXUST7PY.js +497 -0
  857. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-QZHKN3VN.js +11 -0
  858. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-S3R3BYOJ.js +338 -0
  859. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-TZMSLE5B.js +55 -0
  860. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-2ON5EDUG.js +26 -0
  861. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-v2-WZHVMYZB.js +26 -0
  862. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/cose-bilkent-S5V4N54A.js +219 -0
  863. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/dagre-6UL2VRFP.js +263 -0
  864. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-PSM6KHXK.js +283 -0
  865. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-QEK2KX5R.js +211 -0
  866. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-S2PKOQOG.js +129 -0
  867. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/erDiagram-Q2GNP2WA.js +1599 -0
  868. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/flowDiagram-NV44I4VS.js +4128 -0
  869. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/ganttDiagram-JELNMOA3.js +1688 -0
  870. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/gitGraphDiagram-V2S2FVAM.js +621 -0
  871. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/infoDiagram-HS3SLOUP.js +18 -0
  872. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/journeyDiagram-XKPGCS4Q.js +883 -0
  873. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/kanban-definition-3W4ZIXB7.js +970 -0
  874. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/mindmap-definition-VGOIOE7T.js +931 -0
  875. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/pieDiagram-ADFJNKIX.js +117 -0
  876. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/quadrantDiagram-AYHSOK5B.js +1970 -0
  877. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/requirementDiagram-UZGBJVZJ.js +2187 -0
  878. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/sankeyDiagram-TZEHDZUN.js +519 -0
  879. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/sequenceDiagram-WL72ISMW.js +3560 -0
  880. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-FKZM4ZOC.js +220 -0
  881. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-v2-4FDKWEC3.js +25 -0
  882. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/timeline-definition-IT6M3QCI.js +833 -0
  883. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/xychartDiagram-PRI3JC2R.js +1975 -0
  884. package/dist/node_modules/mermaid/dist/mermaid.core.js +662 -0
  885. package/dist/node_modules/micromark-core-commonmark/lib/blank-line.js +16 -0
  886. package/dist/node_modules/micromark-extension-gfm/index.js +16 -0
  887. package/dist/node_modules/micromark-extension-gfm-autolink-literal/lib/syntax.js +172 -0
  888. package/dist/node_modules/micromark-extension-gfm-footnote/lib/syntax.js +191 -0
  889. package/dist/node_modules/micromark-extension-gfm-strikethrough/lib/syntax.js +94 -0
  890. package/dist/node_modules/micromark-extension-gfm-table/lib/edit-map.js +41 -0
  891. package/dist/node_modules/micromark-extension-gfm-table/lib/infer.js +18 -0
  892. package/dist/node_modules/micromark-extension-gfm-table/lib/syntax.js +199 -0
  893. package/dist/node_modules/micromark-extension-gfm-task-list-item/lib/syntax.js +32 -0
  894. package/dist/node_modules/micromark-extension-math/lib/math-flow.js +72 -0
  895. package/dist/node_modules/micromark-extension-math/lib/math-text.js +44 -0
  896. package/dist/node_modules/micromark-extension-math/lib/syntax.js +9 -0
  897. package/dist/node_modules/micromark-factory-space/index.js +12 -0
  898. package/dist/node_modules/micromark-util-character/index.js +21 -0
  899. package/dist/node_modules/micromark-util-chunked/index.js +6 -0
  900. package/dist/node_modules/micromark-util-classify-character/index.js +6 -0
  901. package/dist/node_modules/micromark-util-combine-extensions/index.js +24 -0
  902. package/dist/node_modules/micromark-util-normalize-identifier/index.js +4 -0
  903. package/dist/node_modules/micromark-util-resolve-all/index.js +9 -0
  904. package/dist/node_modules/property-information/index.js +23 -0
  905. package/dist/node_modules/property-information/lib/aria.js +59 -0
  906. package/dist/node_modules/property-information/lib/find.js +29 -0
  907. package/dist/node_modules/property-information/lib/html.js +314 -0
  908. package/dist/node_modules/property-information/lib/normalize.js +4 -0
  909. package/dist/node_modules/property-information/lib/svg.js +560 -0
  910. package/dist/node_modules/property-information/lib/util/case-insensitive-transform.js +5 -0
  911. package/dist/node_modules/property-information/lib/util/case-sensitive-transform.js +4 -0
  912. package/dist/node_modules/property-information/lib/util/create.js +12 -0
  913. package/dist/node_modules/property-information/lib/util/defined-info.js +16 -0
  914. package/dist/node_modules/property-information/lib/util/info.js +7 -0
  915. package/dist/node_modules/property-information/lib/util/merge.js +7 -0
  916. package/dist/node_modules/property-information/lib/util/schema.js +7 -0
  917. package/dist/node_modules/property-information/lib/util/types.js +15 -0
  918. package/dist/node_modules/property-information/lib/xlink.js +17 -0
  919. package/dist/node_modules/property-information/lib/xml.js +13 -0
  920. package/dist/node_modules/property-information/lib/xmlns.js +12 -0
  921. package/dist/node_modules/rehype-katex/lib/index.js +60 -0
  922. package/dist/node_modules/remark-gfm/lib/index.js +8 -0
  923. package/dist/node_modules/remark-math/lib/index.js +8 -0
  924. package/dist/node_modules/roughjs/bundled/rough.esm.js +1350 -0
  925. package/dist/node_modules/space-separated-tokens/index.js +5 -0
  926. package/dist/node_modules/stylis/src/Enum.js +2 -0
  927. package/dist/node_modules/stylis/src/Parser.js +93 -0
  928. package/dist/node_modules/stylis/src/Serializer.js +19 -0
  929. package/dist/node_modules/stylis/src/Tokenizer.js +104 -0
  930. package/dist/node_modules/stylis/src/Utility.js +26 -0
  931. package/dist/node_modules/ts-dedent/esm/index.js +25 -0
  932. package/dist/node_modules/unist-util-find-after/lib/index.js +10 -0
  933. package/dist/node_modules/unist-util-is/lib/index.js +45 -0
  934. package/dist/node_modules/unist-util-visit/lib/index.js +10 -0
  935. package/dist/node_modules/unist-util-visit-parents/lib/color.js +4 -0
  936. package/dist/node_modules/unist-util-visit-parents/lib/index.js +35 -0
  937. package/dist/node_modules/uuid/dist/esm-browser/native.js +2 -0
  938. package/dist/node_modules/uuid/dist/esm-browser/rng.js +9 -0
  939. package/dist/node_modules/uuid/dist/esm-browser/stringify.js +6 -0
  940. package/dist/node_modules/uuid/dist/esm-browser/v4.js +17 -0
  941. package/dist/node_modules/vscode-jsonrpc/browser.js +7 -0
  942. package/dist/node_modules/vscode-jsonrpc/lib/browser/main.js +52 -0
  943. package/dist/node_modules/vscode-jsonrpc/lib/browser/ril.js +120 -0
  944. package/dist/node_modules/vscode-jsonrpc/lib/common/api.js +337 -0
  945. package/dist/node_modules/vscode-jsonrpc/lib/common/cancellation.js +57 -0
  946. package/dist/node_modules/vscode-jsonrpc/lib/common/connection.js +647 -0
  947. package/dist/node_modules/vscode-jsonrpc/lib/common/disposable.js +13 -0
  948. package/dist/node_modules/vscode-jsonrpc/lib/common/events.js +64 -0
  949. package/dist/node_modules/vscode-jsonrpc/lib/common/is.js +34 -0
  950. package/dist/node_modules/vscode-jsonrpc/lib/common/linkedMap.js +235 -0
  951. package/dist/node_modules/vscode-jsonrpc/lib/common/messageBuffer.js +93 -0
  952. package/dist/node_modules/vscode-jsonrpc/lib/common/messageReader.js +129 -0
  953. package/dist/node_modules/vscode-jsonrpc/lib/common/messageWriter.js +85 -0
  954. package/dist/node_modules/vscode-jsonrpc/lib/common/messages.js +161 -0
  955. package/dist/node_modules/vscode-jsonrpc/lib/common/ral.js +18 -0
  956. package/dist/node_modules/vscode-jsonrpc/lib/common/semaphore.js +44 -0
  957. package/dist/node_modules/vscode-jsonrpc/lib/common/sharedArrayCancellation.js +58 -0
  958. package/dist/node_modules/vscode-languageserver-protocol/lib/browser/main.js +28 -0
  959. package/dist/node_modules/vscode-languageserver-protocol/lib/common/api.js +36 -0
  960. package/dist/node_modules/vscode-languageserver-protocol/lib/common/connection.js +12 -0
  961. package/dist/node_modules/vscode-languageserver-protocol/lib/common/messages.js +31 -0
  962. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.callHierarchy.js +19 -0
  963. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.colorProvider.js +15 -0
  964. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.configuration.js +11 -0
  965. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.declaration.js +11 -0
  966. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.diagnostic.js +33 -0
  967. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.fileOperations.js +35 -0
  968. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.foldingRange.js +15 -0
  969. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.implementation.js +11 -0
  970. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.inlayHint.js +19 -0
  971. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.inlineCompletion.js +11 -0
  972. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.inlineValue.js +15 -0
  973. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.js +674 -0
  974. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.linkedEditingRange.js +11 -0
  975. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.moniker.js +19 -0
  976. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.notebook.js +126 -0
  977. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.progress.js +24 -0
  978. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.selectionRange.js +11 -0
  979. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.semanticTokens.js +31 -0
  980. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.showDocument.js +11 -0
  981. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.typeDefinition.js +11 -0
  982. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.typeHierarchy.js +19 -0
  983. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.workspaceFolder.js +15 -0
  984. package/dist/node_modules/vscode-languageserver-protocol/lib/common/utils/is.js +42 -0
  985. package/dist/node_modules/vscode-languageserver-textdocument/lib/esm/main.js +138 -0
  986. package/dist/node_modules/vscode-languageserver-types/lib/esm/main.js +1084 -0
  987. package/dist/node_modules/vscode-uri/lib/esm/index.js +373 -0
  988. package/dist/node_modules/web-namespaces/index.js +9 -0
  989. package/dist/pages/WorkspacePage.js +63 -0
  990. package/dist/pages/WorkspacesPage.js +36 -0
  991. package/package.json +32 -32
@@ -0,0 +1,4128 @@
1
+ import { __name, log } from "./chunk-AGHRB4JF.js";
2
+ import rgba_default from "../../../../khroma/dist/methods/rgba.js";
3
+ import channel_default from "../../../../khroma/dist/methods/channel.js";
4
+ import { clear, common_default, defaultConfig2, getAccDescription, getAccTitle, getConfig2, getDiagramTitle, setAccDescription, setAccTitle, setConfig2, setDiagramTitle } from "./chunk-ABZYJK2D.js";
5
+ import select_default from "../../../../d3-selection/src/select.js";
6
+ import "../../../../d3/src/index.js";
7
+ import { JSON_SCHEMA, load } from "./chunk-MI3HLSF2.js";
8
+ import "./chunk-HN2XXSSU.js";
9
+ import "./chunk-CVBHYZKI.js";
10
+ import "./chunk-ATLVNIR6.js";
11
+ import { getEdgeId, utils_default } from "./chunk-S3R3BYOJ.js";
12
+ import "./chunk-JA3XYJ7Z.js";
13
+ import { isValidShape } from "./chunk-JZLCHNYA.js";
14
+ import "./chunk-QXUST7PY.js";
15
+ import { getRegisteredLayoutAlgorithm, render } from "./chunk-N4CR4FBY.js";
16
+ import { getIconStyles } from "./chunk-FMBD7UC4.js";
17
+ import { getDiagramElement } from "./chunk-55IACEB6.js";
18
+ import { setupViewPortForSVG } from "./chunk-QN33PNHL.js";
19
+ var MERMAID_DOM_ID_PREFIX = "flowchart-", FlowDB = class {
20
+ constructor() {
21
+ this.vertexCounter = 0, this.config = getConfig2(), this.vertices = /* @__PURE__ */ new Map(), this.edges = [], this.classes = /* @__PURE__ */ new Map(), this.subGraphs = [], this.subGraphLookup = /* @__PURE__ */ new Map(), this.tooltips = /* @__PURE__ */ new Map(), this.subCount = 0, this.firstGraphFlag = !0, this.secCount = -1, this.posCrossRef = [], this.funs = [], this.setAccTitle = setAccTitle, this.setAccDescription = setAccDescription, this.setDiagramTitle = setDiagramTitle, this.getAccTitle = getAccTitle, this.getAccDescription = getAccDescription, this.getDiagramTitle = getDiagramTitle, 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");
22
+ }
23
+ static #e = __name(this, "FlowDB");
24
+ sanitizeText(e) {
25
+ return common_default.sanitizeText(e, this.config);
26
+ }
27
+ lookUpDomId(e) {
28
+ for (let t of this.vertices.values()) if (t.id === e) return t.domId;
29
+ return e;
30
+ }
31
+ addVertex(e, t, n, r, i, a, o = {}, s) {
32
+ if (!e || e.trim().length === 0) return;
33
+ let c;
34
+ if (s !== void 0) {
35
+ let e;
36
+ e = s.includes("\n") ? s + "\n" : "{\n" + s + "\n}", c = load(e, { schema: JSON_SCHEMA });
37
+ }
38
+ let u = this.edges.find((t) => t.id === e);
39
+ if (u) {
40
+ let e = c;
41
+ e?.animate !== void 0 && (u.animate = e.animate), e?.animation !== void 0 && (u.animation = e.animation), e?.curve !== void 0 && (u.interpolate = e.curve);
42
+ return;
43
+ }
44
+ let d, f = this.vertices.get(e);
45
+ if (f === void 0 && (f = {
46
+ id: e,
47
+ labelType: "text",
48
+ domId: MERMAID_DOM_ID_PREFIX + e + "-" + this.vertexCounter,
49
+ styles: [],
50
+ classes: []
51
+ }, this.vertices.set(e, f)), this.vertexCounter++, t === void 0 ? f.text === void 0 && (f.text = e) : (this.config = getConfig2(), d = this.sanitizeText(t.text.trim()), f.labelType = t.type, d.startsWith("\"") && d.endsWith("\"") && (d = d.substring(1, d.length - 1)), f.text = d), n !== void 0 && (f.type = n), r?.forEach((e) => {
52
+ f.styles.push(e);
53
+ }), i?.forEach((e) => {
54
+ f.classes.push(e);
55
+ }), a !== void 0 && (f.dir = a), f.props === void 0 ? f.props = o : o !== void 0 && Object.assign(f.props, o), c !== void 0) {
56
+ if (c.shape) {
57
+ if (c.shape !== c.shape.toLowerCase() || c.shape.includes("_")) throw Error(`No such shape: ${c.shape}. Shape names should be lowercase.`);
58
+ if (!isValidShape(c.shape)) throw Error(`No such shape: ${c.shape}.`);
59
+ f.type = c?.shape;
60
+ }
61
+ c?.label && (f.text = c?.label), c?.icon && (f.icon = c?.icon, !c.label?.trim() && f.text === e && (f.text = "")), c?.form && (f.form = c?.form), c?.pos && (f.pos = c?.pos), c?.img && (f.img = c?.img, !c.label?.trim() && f.text === e && (f.text = "")), c?.constraint && (f.constraint = c.constraint), c.w && (f.assetWidth = Number(c.w)), c.h && (f.assetHeight = Number(c.h));
62
+ }
63
+ }
64
+ addSingleLink(e, n, r, i) {
65
+ let a = {
66
+ start: e,
67
+ end: n,
68
+ type: void 0,
69
+ text: "",
70
+ labelType: "text",
71
+ classes: [],
72
+ isUserDefinedId: !1,
73
+ interpolate: this.edges.defaultInterpolate
74
+ };
75
+ log.info("abc78 Got edge...", a);
76
+ let o = r.text;
77
+ if (o !== void 0 && (a.text = this.sanitizeText(o.text.trim()), a.text.startsWith("\"") && a.text.endsWith("\"") && (a.text = a.text.substring(1, a.text.length - 1)), a.labelType = o.type), r !== void 0 && (a.type = r.type, a.stroke = r.stroke, a.length = r.length > 10 ? 10 : r.length), i && !this.edges.some((e) => e.id === i)) a.id = i, a.isUserDefinedId = !0;
78
+ else {
79
+ let e = this.edges.filter((e) => e.start === a.start && e.end === a.end);
80
+ e.length === 0 ? a.id = getEdgeId(a.start, a.end, {
81
+ counter: 0,
82
+ prefix: "L"
83
+ }) : a.id = getEdgeId(a.start, a.end, {
84
+ counter: e.length + 1,
85
+ prefix: "L"
86
+ });
87
+ }
88
+ if (this.edges.length < (this.config.maxEdges ?? 500)) log.info("Pushing edge..."), this.edges.push(a);
89
+ else throw Error(`Edge limit exceeded. ${this.edges.length} edges found, but the limit is ${this.config.maxEdges}.
90
+
91
+ Initialize mermaid with maxEdges set to a higher number to allow more edges.
92
+ You cannot set this config via configuration inside the diagram as it is a secure config.
93
+ You have to call mermaid.initialize.`);
94
+ }
95
+ isLinkData(e) {
96
+ return typeof e == "object" && !!e && "id" in e && typeof e.id == "string";
97
+ }
98
+ addLink(e, n, r) {
99
+ let i = this.isLinkData(r) ? r.id.replace("@", "") : void 0;
100
+ log.info("addLink", e, n, i);
101
+ for (let t of e) for (let a of n) {
102
+ let o = t === e[e.length - 1], s = a === n[0];
103
+ o && s ? this.addSingleLink(t, a, r, i) : this.addSingleLink(t, a, r, void 0);
104
+ }
105
+ }
106
+ updateLinkInterpolate(e, t) {
107
+ e.forEach((e) => {
108
+ e === "default" ? this.edges.defaultInterpolate = t : this.edges[e].interpolate = t;
109
+ });
110
+ }
111
+ updateLink(e, t) {
112
+ e.forEach((e) => {
113
+ if (typeof e == "number" && e >= this.edges.length) throw Error(`The index ${e} 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.)`);
114
+ e === "default" ? this.edges.defaultStyle = t : (this.edges[e].style = t, (this.edges[e]?.style?.length ?? 0) > 0 && !this.edges[e]?.style?.some((e) => e?.startsWith("fill")) && this.edges[e]?.style?.push("fill:none"));
115
+ });
116
+ }
117
+ addClass(e, t) {
118
+ let n = t.join().replace(/\\,/g, "§§§").replace(/,/g, ";").replace(/§§§/g, ",").split(";");
119
+ e.split(",").forEach((e) => {
120
+ let t = this.classes.get(e);
121
+ t === void 0 && (t = {
122
+ id: e,
123
+ styles: [],
124
+ textStyles: []
125
+ }, this.classes.set(e, t)), n?.forEach((e) => {
126
+ if (/color/.exec(e)) {
127
+ let n = e.replace("fill", "bgFill");
128
+ t.textStyles.push(n);
129
+ }
130
+ t.styles.push(e);
131
+ });
132
+ });
133
+ }
134
+ setDirection(e) {
135
+ this.direction = e.trim(), /.*</.exec(this.direction) && (this.direction = "RL"), /.*\^/.exec(this.direction) && (this.direction = "BT"), /.*>/.exec(this.direction) && (this.direction = "LR"), /.*v/.exec(this.direction) && (this.direction = "TB"), this.direction === "TD" && (this.direction = "TB");
136
+ }
137
+ setClass(e, t) {
138
+ for (let n of e.split(",")) {
139
+ let e = this.vertices.get(n);
140
+ e && e.classes.push(t);
141
+ let r = this.edges.find((e) => e.id === n);
142
+ r && r.classes.push(t);
143
+ let i = this.subGraphLookup.get(n);
144
+ i && i.classes.push(t);
145
+ }
146
+ }
147
+ setTooltip(e, t) {
148
+ if (t !== void 0) {
149
+ t = this.sanitizeText(t);
150
+ for (let n of e.split(",")) this.tooltips.set(this.version === "gen-1" ? this.lookUpDomId(n) : n, t);
151
+ }
152
+ }
153
+ setClickFun(e, t, n) {
154
+ let r = this.lookUpDomId(e);
155
+ if (getConfig2().securityLevel !== "loose" || t === void 0) return;
156
+ let i = [];
157
+ if (typeof n == "string") {
158
+ i = n.split(/,(?=(?:(?:[^"]*"){2})*[^"]*$)/);
159
+ for (let e = 0; e < i.length; e++) {
160
+ let t = i[e].trim();
161
+ t.startsWith("\"") && t.endsWith("\"") && (t = t.substr(1, t.length - 2)), i[e] = t;
162
+ }
163
+ }
164
+ i.length === 0 && i.push(e);
165
+ let a = this.vertices.get(e);
166
+ a && (a.haveCallback = !0, this.funs.push(() => {
167
+ let e = document.querySelector(`[id="${r}"]`);
168
+ e !== null && e.addEventListener("click", () => {
169
+ utils_default.runFunc(t, ...i);
170
+ }, !1);
171
+ }));
172
+ }
173
+ setLink(e, t, n) {
174
+ e.split(",").forEach((e) => {
175
+ let r = this.vertices.get(e);
176
+ r !== void 0 && (r.link = utils_default.formatUrl(t, this.config), r.linkTarget = n);
177
+ }), this.setClass(e, "clickable");
178
+ }
179
+ getTooltip(e) {
180
+ return this.tooltips.get(e);
181
+ }
182
+ setClickEvent(e, t, n) {
183
+ e.split(",").forEach((e) => {
184
+ this.setClickFun(e, t, n);
185
+ }), this.setClass(e, "clickable");
186
+ }
187
+ bindFunctions(e) {
188
+ this.funs.forEach((t) => {
189
+ t(e);
190
+ });
191
+ }
192
+ getDirection() {
193
+ return this.direction?.trim();
194
+ }
195
+ getVertices() {
196
+ return this.vertices;
197
+ }
198
+ getEdges() {
199
+ return this.edges;
200
+ }
201
+ getClasses() {
202
+ return this.classes;
203
+ }
204
+ setupToolTips(e) {
205
+ let t = select_default(".mermaidTooltip");
206
+ (t._groups || t)[0][0] === null && (t = select_default("body").append("div").attr("class", "mermaidTooltip").style("opacity", 0)), select_default(e).select("svg").selectAll("g.node").on("mouseover", (e) => {
207
+ let n = select_default(e.currentTarget);
208
+ if (n.attr("title") === null) return;
209
+ let r = e.currentTarget?.getBoundingClientRect();
210
+ t.transition().duration(200).style("opacity", ".9"), t.text(n.attr("title")).style("left", window.scrollX + r.left + (r.right - r.left) / 2 + "px").style("top", window.scrollY + r.bottom + "px"), t.html(t.html().replace(/&lt;br\/&gt;/g, "<br/>")), n.classed("hover", !0);
211
+ }).on("mouseout", (e) => {
212
+ t.transition().duration(500).style("opacity", 0), select_default(e.currentTarget).classed("hover", !1);
213
+ });
214
+ }
215
+ clear(e = "gen-2") {
216
+ this.vertices = /* @__PURE__ */ new Map(), this.classes = /* @__PURE__ */ new Map(), this.edges = [], this.funs = [this.setupToolTips.bind(this)], this.subGraphs = [], this.subGraphLookup = /* @__PURE__ */ new Map(), this.subCount = 0, this.tooltips = /* @__PURE__ */ new Map(), this.firstGraphFlag = !0, this.version = e, this.config = getConfig2(), clear();
217
+ }
218
+ setGen(e) {
219
+ this.version = e || "gen-2";
220
+ }
221
+ defaultStyle() {
222
+ return "fill:#ffa;stroke: #f66; stroke-width: 3px; stroke-dasharray: 5, 5;fill:#ffa;stroke: #666;";
223
+ }
224
+ addSubGraph(n, r, i) {
225
+ let a = n.text.trim(), o = i.text;
226
+ n === i && /\s/.exec(i.text) && (a = void 0);
227
+ let s = (/* @__PURE__ */ __name((e) => {
228
+ let t = {
229
+ boolean: {},
230
+ number: {},
231
+ string: {}
232
+ }, n = [], r;
233
+ return {
234
+ nodeList: e.filter(function(e) {
235
+ let i = typeof e;
236
+ return e.stmt && e.stmt === "dir" ? (r = e.value, !1) : e.trim() === "" ? !1 : i in t ? t[i].hasOwnProperty(e) ? !1 : t[i][e] = !0 : n.includes(e) ? !1 : n.push(e);
237
+ }),
238
+ dir: r
239
+ };
240
+ }, "uniq"))(r.flat()), c = s.nodeList, u = s.dir, d = getConfig2().flowchart ?? {};
241
+ if (u ??= d.inheritDir ? this.getDirection() ?? getConfig2().direction ?? void 0 : void 0, this.version === "gen-1") for (let e = 0; e < c.length; e++) c[e] = this.lookUpDomId(c[e]);
242
+ a ??= "subGraph" + this.subCount, o ||= "", o = this.sanitizeText(o), this.subCount += 1;
243
+ let f = {
244
+ id: a,
245
+ nodes: c,
246
+ title: o.trim(),
247
+ classes: [],
248
+ dir: u,
249
+ labelType: i.type
250
+ };
251
+ return log.info("Adding", f.id, f.nodes, f.dir), f.nodes = this.makeUniq(f, this.subGraphs).nodes, this.subGraphs.push(f), this.subGraphLookup.set(a, f), a;
252
+ }
253
+ getPosForId(e) {
254
+ for (let [t, n] of this.subGraphs.entries()) if (n.id === e) return t;
255
+ return -1;
256
+ }
257
+ indexNodes2(e, t) {
258
+ let n = this.subGraphs[t].nodes;
259
+ if (this.secCount += 1, this.secCount > 2e3) return {
260
+ result: !1,
261
+ count: 0
262
+ };
263
+ if (this.posCrossRef[this.secCount] = t, this.subGraphs[t].id === e) return {
264
+ result: !0,
265
+ count: 0
266
+ };
267
+ let r = 0, i = 1;
268
+ for (; r < n.length;) {
269
+ let t = this.getPosForId(n[r]);
270
+ if (t >= 0) {
271
+ let n = this.indexNodes2(e, t);
272
+ if (n.result) return {
273
+ result: !0,
274
+ count: i + n.count
275
+ };
276
+ i += n.count;
277
+ }
278
+ r += 1;
279
+ }
280
+ return {
281
+ result: !1,
282
+ count: i
283
+ };
284
+ }
285
+ getDepthFirstPos(e) {
286
+ return this.posCrossRef[e];
287
+ }
288
+ indexNodes() {
289
+ this.secCount = -1, this.subGraphs.length > 0 && this.indexNodes2("none", this.subGraphs.length - 1);
290
+ }
291
+ getSubGraphs() {
292
+ return this.subGraphs;
293
+ }
294
+ firstGraph() {
295
+ return this.firstGraphFlag ? (this.firstGraphFlag = !1, !0) : !1;
296
+ }
297
+ destructStartLink(e) {
298
+ let t = e.trim(), n = "arrow_open";
299
+ switch (t[0]) {
300
+ case "<":
301
+ n = "arrow_point", t = t.slice(1);
302
+ break;
303
+ case "x":
304
+ n = "arrow_cross", t = t.slice(1);
305
+ break;
306
+ case "o":
307
+ n = "arrow_circle", t = t.slice(1);
308
+ break;
309
+ }
310
+ let r = "normal";
311
+ return t.includes("=") && (r = "thick"), t.includes(".") && (r = "dotted"), {
312
+ type: n,
313
+ stroke: r
314
+ };
315
+ }
316
+ countChar(e, t) {
317
+ let n = t.length, r = 0;
318
+ for (let i = 0; i < n; ++i) t[i] === e && ++r;
319
+ return r;
320
+ }
321
+ destructEndLink(e) {
322
+ let t = e.trim(), n = t.slice(0, -1), r = "arrow_open";
323
+ switch (t.slice(-1)) {
324
+ case "x":
325
+ r = "arrow_cross", t.startsWith("x") && (r = "double_" + r, n = n.slice(1));
326
+ break;
327
+ case ">":
328
+ r = "arrow_point", t.startsWith("<") && (r = "double_" + r, n = n.slice(1));
329
+ break;
330
+ case "o":
331
+ r = "arrow_circle", t.startsWith("o") && (r = "double_" + r, n = n.slice(1));
332
+ break;
333
+ }
334
+ let i = "normal", a = n.length - 1;
335
+ n.startsWith("=") && (i = "thick"), n.startsWith("~") && (i = "invisible");
336
+ let o = this.countChar(".", n);
337
+ return o && (i = "dotted", a = o), {
338
+ type: r,
339
+ stroke: i,
340
+ length: a
341
+ };
342
+ }
343
+ destructLink(e, t) {
344
+ let n = this.destructEndLink(e), r;
345
+ if (t) {
346
+ if (r = this.destructStartLink(t), r.stroke !== n.stroke) return {
347
+ type: "INVALID",
348
+ stroke: "INVALID"
349
+ };
350
+ if (r.type === "arrow_open") r.type = n.type;
351
+ else {
352
+ if (r.type !== n.type) return {
353
+ type: "INVALID",
354
+ stroke: "INVALID"
355
+ };
356
+ r.type = "double_" + r.type;
357
+ }
358
+ return r.type === "double_arrow" && (r.type = "double_arrow_point"), r.length = n.length, r;
359
+ }
360
+ return n;
361
+ }
362
+ exists(e, t) {
363
+ for (let n of e) if (n.nodes.includes(t)) return !0;
364
+ return !1;
365
+ }
366
+ makeUniq(e, t) {
367
+ let n = [];
368
+ return e.nodes.forEach((r, i) => {
369
+ this.exists(t, r) || n.push(e.nodes[i]);
370
+ }), { nodes: n };
371
+ }
372
+ getTypeFromVertex(e) {
373
+ if (e.img) return "imageSquare";
374
+ if (e.icon) return e.form === "circle" ? "iconCircle" : e.form === "square" ? "iconSquare" : e.form === "rounded" ? "iconRounded" : "icon";
375
+ switch (e.type) {
376
+ case "square":
377
+ case void 0: return "squareRect";
378
+ case "round": return "roundedRect";
379
+ case "ellipse": return "ellipse";
380
+ default: return e.type;
381
+ }
382
+ }
383
+ findNode(e, t) {
384
+ return e.find((e) => e.id === t);
385
+ }
386
+ destructEdgeType(e) {
387
+ let t = "none", n = "arrow_point";
388
+ switch (e) {
389
+ case "arrow_point":
390
+ case "arrow_circle":
391
+ case "arrow_cross":
392
+ n = e;
393
+ break;
394
+ case "double_arrow_point":
395
+ case "double_arrow_circle":
396
+ case "double_arrow_cross":
397
+ t = e.replace("double_", ""), n = t;
398
+ break;
399
+ }
400
+ return {
401
+ arrowTypeStart: t,
402
+ arrowTypeEnd: n
403
+ };
404
+ }
405
+ addNodeFromVertex(e, t, n, r, i, a) {
406
+ let o = n.get(e.id), s = r.get(e.id) ?? !1, c = this.findNode(t, e.id);
407
+ if (c) c.cssStyles = e.styles, c.cssCompiledStyles = this.getCompiledStyles(e.classes), c.cssClasses = e.classes.join(" ");
408
+ else {
409
+ let n = {
410
+ id: e.id,
411
+ label: e.text,
412
+ labelStyle: "",
413
+ parentId: o,
414
+ padding: i.flowchart?.padding || 8,
415
+ cssStyles: e.styles,
416
+ cssCompiledStyles: this.getCompiledStyles([
417
+ "default",
418
+ "node",
419
+ ...e.classes
420
+ ]),
421
+ cssClasses: "default " + e.classes.join(" "),
422
+ dir: e.dir,
423
+ domId: e.domId,
424
+ look: a,
425
+ link: e.link,
426
+ linkTarget: e.linkTarget,
427
+ tooltip: this.getTooltip(e.id),
428
+ icon: e.icon,
429
+ pos: e.pos,
430
+ img: e.img,
431
+ assetWidth: e.assetWidth,
432
+ assetHeight: e.assetHeight,
433
+ constraint: e.constraint
434
+ };
435
+ s ? t.push({
436
+ ...n,
437
+ isGroup: !0,
438
+ shape: "rect"
439
+ }) : t.push({
440
+ ...n,
441
+ isGroup: !1,
442
+ shape: this.getTypeFromVertex(e)
443
+ });
444
+ }
445
+ }
446
+ getCompiledStyles(e) {
447
+ let t = [];
448
+ for (let n of e) {
449
+ let e = this.classes.get(n);
450
+ e?.styles && (t = [...t, ...e.styles ?? []].map((e) => e.trim())), e?.textStyles && (t = [...t, ...e.textStyles ?? []].map((e) => e.trim()));
451
+ }
452
+ return t;
453
+ }
454
+ getData() {
455
+ let e = getConfig2(), t = [], n = [], r = this.getSubGraphs(), i = /* @__PURE__ */ new Map(), a = /* @__PURE__ */ new Map();
456
+ for (let e = r.length - 1; e >= 0; e--) {
457
+ let t = r[e];
458
+ t.nodes.length > 0 && a.set(t.id, !0);
459
+ for (let e of t.nodes) i.set(e, t.id);
460
+ }
461
+ for (let n = r.length - 1; n >= 0; n--) {
462
+ let a = r[n];
463
+ t.push({
464
+ id: a.id,
465
+ label: a.title,
466
+ labelStyle: "",
467
+ parentId: i.get(a.id),
468
+ padding: 8,
469
+ cssCompiledStyles: this.getCompiledStyles(a.classes),
470
+ cssClasses: a.classes.join(" "),
471
+ shape: "rect",
472
+ dir: a.dir,
473
+ isGroup: !0,
474
+ look: e.look
475
+ });
476
+ }
477
+ this.getVertices().forEach((n) => {
478
+ this.addNodeFromVertex(n, t, i, a, e, e.look || "classic");
479
+ });
480
+ let o = this.getEdges();
481
+ return o.forEach((t, r) => {
482
+ let { arrowTypeStart: i, arrowTypeEnd: a } = this.destructEdgeType(t.type), s = [...o.defaultStyle ?? []];
483
+ t.style && s.push(...t.style);
484
+ let c = {
485
+ id: getEdgeId(t.start, t.end, {
486
+ counter: r,
487
+ prefix: "L"
488
+ }, t.id),
489
+ isUserDefinedId: t.isUserDefinedId,
490
+ start: t.start,
491
+ end: t.end,
492
+ type: t.type ?? "normal",
493
+ label: t.text,
494
+ labelpos: "c",
495
+ thickness: t.stroke,
496
+ minlen: t.length,
497
+ classes: t?.stroke === "invisible" ? "" : "edge-thickness-normal edge-pattern-solid flowchart-link",
498
+ arrowTypeStart: t?.stroke === "invisible" || t?.type === "arrow_open" ? "none" : i,
499
+ arrowTypeEnd: t?.stroke === "invisible" || t?.type === "arrow_open" ? "none" : a,
500
+ arrowheadStyle: "fill: #333",
501
+ cssCompiledStyles: this.getCompiledStyles(t.classes),
502
+ labelStyle: s,
503
+ style: s,
504
+ pattern: t.stroke,
505
+ look: e.look,
506
+ animate: t.animate,
507
+ animation: t.animation,
508
+ curve: t.interpolate || this.edges.defaultInterpolate || e.flowchart?.curve
509
+ };
510
+ n.push(c);
511
+ }), {
512
+ nodes: t,
513
+ edges: n,
514
+ other: {},
515
+ config: e
516
+ };
517
+ }
518
+ defaultConfig() {
519
+ return defaultConfig2.flowchart;
520
+ }
521
+ }, flowRenderer_v3_unified_default = {
522
+ getClasses: /* @__PURE__ */ __name(function(e, t) {
523
+ return t.db.getClasses();
524
+ }, "getClasses"),
525
+ draw: /* @__PURE__ */ __name(async function(e, n, r, i) {
526
+ log.info("REF0:"), log.info("Drawing state diagram (v2)", n);
527
+ let { securityLevel: a, flowchart: o, layout: s } = getConfig2(), c;
528
+ a === "sandbox" && (c = select_default("#i" + n));
529
+ let u = a === "sandbox" ? c.nodes()[0].contentDocument : document;
530
+ log.debug("Before getData: ");
531
+ let d = i.db.getData();
532
+ log.debug("Data: ", d);
533
+ let f = getDiagramElement(n, a), p = i.db.getDirection();
534
+ d.type = i.type, d.layoutAlgorithm = getRegisteredLayoutAlgorithm(s), d.layoutAlgorithm === "dagre" && s === "elk" && log.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."), d.direction = p, d.nodeSpacing = o?.nodeSpacing || 50, d.rankSpacing = o?.rankSpacing || 50, d.markers = [
535
+ "point",
536
+ "circle",
537
+ "cross"
538
+ ], d.diagramId = n, log.debug("REF1:", d), await render(d, f);
539
+ let ee = d.config.flowchart?.diagramPadding ?? 8;
540
+ utils_default.insertTitle(f, "flowchartTitleText", o?.titleTopMargin || 0, i.db.getDiagramTitle()), setupViewPortForSVG(f, ee, "flowchart", o?.useMaxWidth || !1);
541
+ for (let e of d.nodes) {
542
+ let t = select_default(`#${n} [id="${e.id}"]`);
543
+ if (!t || !e.link) continue;
544
+ let r = u.createElementNS("http://www.w3.org/2000/svg", "a");
545
+ r.setAttributeNS("http://www.w3.org/2000/svg", "class", e.cssClasses), r.setAttributeNS("http://www.w3.org/2000/svg", "rel", "noopener"), a === "sandbox" ? r.setAttributeNS("http://www.w3.org/2000/svg", "target", "_top") : e.linkTarget && r.setAttributeNS("http://www.w3.org/2000/svg", "target", e.linkTarget);
546
+ let i = t.insert(function() {
547
+ return r;
548
+ }, ":first-child"), o = t.select(".label-container");
549
+ o && i.append(function() {
550
+ return o.node();
551
+ });
552
+ let s = t.select(".label");
553
+ s && i.append(function() {
554
+ return s.node();
555
+ });
556
+ }
557
+ }, "draw")
558
+ }, parser = (function() {
559
+ var t = /* @__PURE__ */ __name(function(e, t, n, r) {
560
+ for (n ||= {}, r = e.length; r--; n[e[r]] = t);
561
+ return n;
562
+ }, "o"), n = [1, 4], r = [1, 3], i = [1, 5], a = [
563
+ 1,
564
+ 8,
565
+ 9,
566
+ 10,
567
+ 11,
568
+ 27,
569
+ 34,
570
+ 36,
571
+ 38,
572
+ 44,
573
+ 60,
574
+ 84,
575
+ 85,
576
+ 86,
577
+ 87,
578
+ 88,
579
+ 89,
580
+ 102,
581
+ 105,
582
+ 106,
583
+ 109,
584
+ 111,
585
+ 114,
586
+ 115,
587
+ 116,
588
+ 121,
589
+ 122,
590
+ 123,
591
+ 124
592
+ ], o = [2, 2], s = [1, 13], c = [1, 14], l = [1, 15], u = [1, 16], d = [1, 23], f = [1, 25], p = [1, 26], ee = [1, 27], m = [1, 49], h = [1, 48], g = [1, 29], te = [1, 30], ne = [1, 31], re = [1, 32], ie = [1, 33], _ = [1, 44], v = [1, 46], y = [1, 42], b = [1, 47], x = [1, 43], S = [1, 50], C = [1, 45], w = [1, 51], T = [1, 52], E = [1, 34], ae = [1, 35], oe = [1, 36], se = [1, 37], D = [1, 57], O = [
593
+ 1,
594
+ 8,
595
+ 9,
596
+ 10,
597
+ 11,
598
+ 27,
599
+ 32,
600
+ 34,
601
+ 36,
602
+ 38,
603
+ 44,
604
+ 60,
605
+ 84,
606
+ 85,
607
+ 86,
608
+ 87,
609
+ 88,
610
+ 89,
611
+ 102,
612
+ 105,
613
+ 106,
614
+ 109,
615
+ 111,
616
+ 114,
617
+ 115,
618
+ 116,
619
+ 121,
620
+ 122,
621
+ 123,
622
+ 124
623
+ ], k = [1, 61], A = [1, 60], j = [1, 62], ce = [
624
+ 8,
625
+ 9,
626
+ 11,
627
+ 75,
628
+ 77,
629
+ 78
630
+ ], le = [1, 78], ue = [1, 91], de = [1, 96], fe = [1, 95], pe = [1, 92], me = [1, 88], he = [1, 94], ge = [1, 90], _e = [1, 97], ve = [1, 93], ye = [1, 98], be = [1, 89], M = [
631
+ 8,
632
+ 9,
633
+ 10,
634
+ 11,
635
+ 40,
636
+ 75,
637
+ 77,
638
+ 78
639
+ ], N = [
640
+ 8,
641
+ 9,
642
+ 10,
643
+ 11,
644
+ 40,
645
+ 46,
646
+ 75,
647
+ 77,
648
+ 78
649
+ ], P = [
650
+ 8,
651
+ 9,
652
+ 10,
653
+ 11,
654
+ 29,
655
+ 40,
656
+ 44,
657
+ 46,
658
+ 48,
659
+ 50,
660
+ 52,
661
+ 54,
662
+ 56,
663
+ 58,
664
+ 60,
665
+ 63,
666
+ 65,
667
+ 67,
668
+ 68,
669
+ 70,
670
+ 75,
671
+ 77,
672
+ 78,
673
+ 89,
674
+ 102,
675
+ 105,
676
+ 106,
677
+ 109,
678
+ 111,
679
+ 114,
680
+ 115,
681
+ 116
682
+ ], xe = [
683
+ 8,
684
+ 9,
685
+ 11,
686
+ 44,
687
+ 60,
688
+ 75,
689
+ 77,
690
+ 78,
691
+ 89,
692
+ 102,
693
+ 105,
694
+ 106,
695
+ 109,
696
+ 111,
697
+ 114,
698
+ 115,
699
+ 116
700
+ ], Se = [
701
+ 44,
702
+ 60,
703
+ 89,
704
+ 102,
705
+ 105,
706
+ 106,
707
+ 109,
708
+ 111,
709
+ 114,
710
+ 115,
711
+ 116
712
+ ], Ce = [1, 121], we = [1, 122], Te = [1, 124], Ee = [1, 123], De = [
713
+ 44,
714
+ 60,
715
+ 62,
716
+ 74,
717
+ 89,
718
+ 102,
719
+ 105,
720
+ 106,
721
+ 109,
722
+ 111,
723
+ 114,
724
+ 115,
725
+ 116
726
+ ], Oe = [1, 133], ke = [1, 147], Ae = [1, 148], je = [1, 149], Me = [1, 150], Ne = [1, 135], Pe = [1, 137], Fe = [1, 141], Ie = [1, 142], Le = [1, 143], Re = [1, 144], ze = [1, 145], Be = [1, 146], Ve = [1, 151], He = [1, 152], Ue = [1, 131], We = [1, 132], Ge = [1, 139], Ke = [1, 134], qe = [1, 138], Je = [1, 136], Ye = [
727
+ 8,
728
+ 9,
729
+ 10,
730
+ 11,
731
+ 27,
732
+ 32,
733
+ 34,
734
+ 36,
735
+ 38,
736
+ 44,
737
+ 60,
738
+ 84,
739
+ 85,
740
+ 86,
741
+ 87,
742
+ 88,
743
+ 89,
744
+ 102,
745
+ 105,
746
+ 106,
747
+ 109,
748
+ 111,
749
+ 114,
750
+ 115,
751
+ 116,
752
+ 121,
753
+ 122,
754
+ 123,
755
+ 124
756
+ ], Xe = [1, 154], Ze = [1, 156], F = [
757
+ 8,
758
+ 9,
759
+ 11
760
+ ], I = [
761
+ 8,
762
+ 9,
763
+ 10,
764
+ 11,
765
+ 14,
766
+ 44,
767
+ 60,
768
+ 89,
769
+ 105,
770
+ 106,
771
+ 109,
772
+ 111,
773
+ 114,
774
+ 115,
775
+ 116
776
+ ], L = [1, 176], R = [1, 172], z = [1, 173], B = [1, 177], V = [1, 174], H = [1, 175], Qe = [
777
+ 77,
778
+ 116,
779
+ 119
780
+ ], U = [
781
+ 8,
782
+ 9,
783
+ 10,
784
+ 11,
785
+ 12,
786
+ 14,
787
+ 27,
788
+ 29,
789
+ 32,
790
+ 44,
791
+ 60,
792
+ 75,
793
+ 84,
794
+ 85,
795
+ 86,
796
+ 87,
797
+ 88,
798
+ 89,
799
+ 90,
800
+ 105,
801
+ 109,
802
+ 111,
803
+ 114,
804
+ 115,
805
+ 116
806
+ ], $e = [10, 106], W = [
807
+ 31,
808
+ 49,
809
+ 51,
810
+ 53,
811
+ 55,
812
+ 57,
813
+ 62,
814
+ 64,
815
+ 66,
816
+ 67,
817
+ 69,
818
+ 71,
819
+ 116,
820
+ 117,
821
+ 118
822
+ ], G = [1, 247], K = [1, 245], q = [1, 249], J = [1, 243], Y = [1, 244], X = [1, 246], Z = [1, 248], Q = [1, 250], et = [1, 268], tt = [
823
+ 8,
824
+ 9,
825
+ 11,
826
+ 106
827
+ ], $ = [
828
+ 8,
829
+ 9,
830
+ 10,
831
+ 11,
832
+ 60,
833
+ 84,
834
+ 105,
835
+ 106,
836
+ 109,
837
+ 110,
838
+ 111,
839
+ 112
840
+ ], nt = {
841
+ trace: /* @__PURE__ */ __name(function() {}, "trace"),
842
+ yy: {},
843
+ symbols_: {
844
+ error: 2,
845
+ start: 3,
846
+ graphConfig: 4,
847
+ document: 5,
848
+ line: 6,
849
+ statement: 7,
850
+ SEMI: 8,
851
+ NEWLINE: 9,
852
+ SPACE: 10,
853
+ EOF: 11,
854
+ GRAPH: 12,
855
+ NODIR: 13,
856
+ DIR: 14,
857
+ FirstStmtSeparator: 15,
858
+ ending: 16,
859
+ endToken: 17,
860
+ spaceList: 18,
861
+ spaceListNewline: 19,
862
+ vertexStatement: 20,
863
+ separator: 21,
864
+ styleStatement: 22,
865
+ linkStyleStatement: 23,
866
+ classDefStatement: 24,
867
+ classStatement: 25,
868
+ clickStatement: 26,
869
+ subgraph: 27,
870
+ textNoTags: 28,
871
+ SQS: 29,
872
+ text: 30,
873
+ SQE: 31,
874
+ end: 32,
875
+ direction: 33,
876
+ acc_title: 34,
877
+ acc_title_value: 35,
878
+ acc_descr: 36,
879
+ acc_descr_value: 37,
880
+ acc_descr_multiline_value: 38,
881
+ shapeData: 39,
882
+ SHAPE_DATA: 40,
883
+ link: 41,
884
+ node: 42,
885
+ styledVertex: 43,
886
+ AMP: 44,
887
+ vertex: 45,
888
+ STYLE_SEPARATOR: 46,
889
+ idString: 47,
890
+ DOUBLECIRCLESTART: 48,
891
+ DOUBLECIRCLEEND: 49,
892
+ PS: 50,
893
+ PE: 51,
894
+ "(-": 52,
895
+ "-)": 53,
896
+ STADIUMSTART: 54,
897
+ STADIUMEND: 55,
898
+ SUBROUTINESTART: 56,
899
+ SUBROUTINEEND: 57,
900
+ VERTEX_WITH_PROPS_START: 58,
901
+ "NODE_STRING[field]": 59,
902
+ COLON: 60,
903
+ "NODE_STRING[value]": 61,
904
+ PIPE: 62,
905
+ CYLINDERSTART: 63,
906
+ CYLINDEREND: 64,
907
+ DIAMOND_START: 65,
908
+ DIAMOND_STOP: 66,
909
+ TAGEND: 67,
910
+ TRAPSTART: 68,
911
+ TRAPEND: 69,
912
+ INVTRAPSTART: 70,
913
+ INVTRAPEND: 71,
914
+ linkStatement: 72,
915
+ arrowText: 73,
916
+ TESTSTR: 74,
917
+ START_LINK: 75,
918
+ edgeText: 76,
919
+ LINK: 77,
920
+ LINK_ID: 78,
921
+ edgeTextToken: 79,
922
+ STR: 80,
923
+ MD_STR: 81,
924
+ textToken: 82,
925
+ keywords: 83,
926
+ STYLE: 84,
927
+ LINKSTYLE: 85,
928
+ CLASSDEF: 86,
929
+ CLASS: 87,
930
+ CLICK: 88,
931
+ DOWN: 89,
932
+ UP: 90,
933
+ textNoTagsToken: 91,
934
+ stylesOpt: 92,
935
+ "idString[vertex]": 93,
936
+ "idString[class]": 94,
937
+ CALLBACKNAME: 95,
938
+ CALLBACKARGS: 96,
939
+ HREF: 97,
940
+ LINK_TARGET: 98,
941
+ "STR[link]": 99,
942
+ "STR[tooltip]": 100,
943
+ alphaNum: 101,
944
+ DEFAULT: 102,
945
+ numList: 103,
946
+ INTERPOLATE: 104,
947
+ NUM: 105,
948
+ COMMA: 106,
949
+ style: 107,
950
+ styleComponent: 108,
951
+ NODE_STRING: 109,
952
+ UNIT: 110,
953
+ BRKT: 111,
954
+ PCT: 112,
955
+ idStringToken: 113,
956
+ MINUS: 114,
957
+ MULT: 115,
958
+ UNICODE_TEXT: 116,
959
+ TEXT: 117,
960
+ TAGSTART: 118,
961
+ EDGE_TEXT: 119,
962
+ alphaNumToken: 120,
963
+ direction_tb: 121,
964
+ direction_bt: 122,
965
+ direction_rl: 123,
966
+ direction_lr: 124,
967
+ $accept: 0,
968
+ $end: 1
969
+ },
970
+ terminals_: {
971
+ 2: "error",
972
+ 8: "SEMI",
973
+ 9: "NEWLINE",
974
+ 10: "SPACE",
975
+ 11: "EOF",
976
+ 12: "GRAPH",
977
+ 13: "NODIR",
978
+ 14: "DIR",
979
+ 27: "subgraph",
980
+ 29: "SQS",
981
+ 31: "SQE",
982
+ 32: "end",
983
+ 34: "acc_title",
984
+ 35: "acc_title_value",
985
+ 36: "acc_descr",
986
+ 37: "acc_descr_value",
987
+ 38: "acc_descr_multiline_value",
988
+ 40: "SHAPE_DATA",
989
+ 44: "AMP",
990
+ 46: "STYLE_SEPARATOR",
991
+ 48: "DOUBLECIRCLESTART",
992
+ 49: "DOUBLECIRCLEEND",
993
+ 50: "PS",
994
+ 51: "PE",
995
+ 52: "(-",
996
+ 53: "-)",
997
+ 54: "STADIUMSTART",
998
+ 55: "STADIUMEND",
999
+ 56: "SUBROUTINESTART",
1000
+ 57: "SUBROUTINEEND",
1001
+ 58: "VERTEX_WITH_PROPS_START",
1002
+ 59: "NODE_STRING[field]",
1003
+ 60: "COLON",
1004
+ 61: "NODE_STRING[value]",
1005
+ 62: "PIPE",
1006
+ 63: "CYLINDERSTART",
1007
+ 64: "CYLINDEREND",
1008
+ 65: "DIAMOND_START",
1009
+ 66: "DIAMOND_STOP",
1010
+ 67: "TAGEND",
1011
+ 68: "TRAPSTART",
1012
+ 69: "TRAPEND",
1013
+ 70: "INVTRAPSTART",
1014
+ 71: "INVTRAPEND",
1015
+ 74: "TESTSTR",
1016
+ 75: "START_LINK",
1017
+ 77: "LINK",
1018
+ 78: "LINK_ID",
1019
+ 80: "STR",
1020
+ 81: "MD_STR",
1021
+ 84: "STYLE",
1022
+ 85: "LINKSTYLE",
1023
+ 86: "CLASSDEF",
1024
+ 87: "CLASS",
1025
+ 88: "CLICK",
1026
+ 89: "DOWN",
1027
+ 90: "UP",
1028
+ 93: "idString[vertex]",
1029
+ 94: "idString[class]",
1030
+ 95: "CALLBACKNAME",
1031
+ 96: "CALLBACKARGS",
1032
+ 97: "HREF",
1033
+ 98: "LINK_TARGET",
1034
+ 99: "STR[link]",
1035
+ 100: "STR[tooltip]",
1036
+ 102: "DEFAULT",
1037
+ 104: "INTERPOLATE",
1038
+ 105: "NUM",
1039
+ 106: "COMMA",
1040
+ 109: "NODE_STRING",
1041
+ 110: "UNIT",
1042
+ 111: "BRKT",
1043
+ 112: "PCT",
1044
+ 114: "MINUS",
1045
+ 115: "MULT",
1046
+ 116: "UNICODE_TEXT",
1047
+ 117: "TEXT",
1048
+ 118: "TAGSTART",
1049
+ 119: "EDGE_TEXT",
1050
+ 121: "direction_tb",
1051
+ 122: "direction_bt",
1052
+ 123: "direction_rl",
1053
+ 124: "direction_lr"
1054
+ },
1055
+ productions_: [
1056
+ 0,
1057
+ [3, 2],
1058
+ [5, 0],
1059
+ [5, 2],
1060
+ [6, 1],
1061
+ [6, 1],
1062
+ [6, 1],
1063
+ [6, 1],
1064
+ [6, 1],
1065
+ [4, 2],
1066
+ [4, 2],
1067
+ [4, 2],
1068
+ [4, 3],
1069
+ [16, 2],
1070
+ [16, 1],
1071
+ [17, 1],
1072
+ [17, 1],
1073
+ [17, 1],
1074
+ [15, 1],
1075
+ [15, 1],
1076
+ [15, 2],
1077
+ [19, 2],
1078
+ [19, 2],
1079
+ [19, 1],
1080
+ [19, 1],
1081
+ [18, 2],
1082
+ [18, 1],
1083
+ [7, 2],
1084
+ [7, 2],
1085
+ [7, 2],
1086
+ [7, 2],
1087
+ [7, 2],
1088
+ [7, 2],
1089
+ [7, 9],
1090
+ [7, 6],
1091
+ [7, 4],
1092
+ [7, 1],
1093
+ [7, 2],
1094
+ [7, 2],
1095
+ [7, 1],
1096
+ [21, 1],
1097
+ [21, 1],
1098
+ [21, 1],
1099
+ [39, 2],
1100
+ [39, 1],
1101
+ [20, 4],
1102
+ [20, 3],
1103
+ [20, 4],
1104
+ [20, 2],
1105
+ [20, 2],
1106
+ [20, 1],
1107
+ [42, 1],
1108
+ [42, 6],
1109
+ [42, 5],
1110
+ [43, 1],
1111
+ [43, 3],
1112
+ [45, 4],
1113
+ [45, 4],
1114
+ [45, 6],
1115
+ [45, 4],
1116
+ [45, 4],
1117
+ [45, 4],
1118
+ [45, 8],
1119
+ [45, 4],
1120
+ [45, 4],
1121
+ [45, 4],
1122
+ [45, 6],
1123
+ [45, 4],
1124
+ [45, 4],
1125
+ [45, 4],
1126
+ [45, 4],
1127
+ [45, 4],
1128
+ [45, 1],
1129
+ [41, 2],
1130
+ [41, 3],
1131
+ [41, 3],
1132
+ [41, 1],
1133
+ [41, 3],
1134
+ [41, 4],
1135
+ [76, 1],
1136
+ [76, 2],
1137
+ [76, 1],
1138
+ [76, 1],
1139
+ [72, 1],
1140
+ [72, 2],
1141
+ [73, 3],
1142
+ [30, 1],
1143
+ [30, 2],
1144
+ [30, 1],
1145
+ [30, 1],
1146
+ [83, 1],
1147
+ [83, 1],
1148
+ [83, 1],
1149
+ [83, 1],
1150
+ [83, 1],
1151
+ [83, 1],
1152
+ [83, 1],
1153
+ [83, 1],
1154
+ [83, 1],
1155
+ [83, 1],
1156
+ [83, 1],
1157
+ [28, 1],
1158
+ [28, 2],
1159
+ [28, 1],
1160
+ [28, 1],
1161
+ [24, 5],
1162
+ [25, 5],
1163
+ [26, 2],
1164
+ [26, 4],
1165
+ [26, 3],
1166
+ [26, 5],
1167
+ [26, 3],
1168
+ [26, 5],
1169
+ [26, 5],
1170
+ [26, 7],
1171
+ [26, 2],
1172
+ [26, 4],
1173
+ [26, 2],
1174
+ [26, 4],
1175
+ [26, 4],
1176
+ [26, 6],
1177
+ [22, 5],
1178
+ [23, 5],
1179
+ [23, 5],
1180
+ [23, 9],
1181
+ [23, 9],
1182
+ [23, 7],
1183
+ [23, 7],
1184
+ [103, 1],
1185
+ [103, 3],
1186
+ [92, 1],
1187
+ [92, 3],
1188
+ [107, 1],
1189
+ [107, 2],
1190
+ [108, 1],
1191
+ [108, 1],
1192
+ [108, 1],
1193
+ [108, 1],
1194
+ [108, 1],
1195
+ [108, 1],
1196
+ [108, 1],
1197
+ [108, 1],
1198
+ [113, 1],
1199
+ [113, 1],
1200
+ [113, 1],
1201
+ [113, 1],
1202
+ [113, 1],
1203
+ [113, 1],
1204
+ [113, 1],
1205
+ [113, 1],
1206
+ [113, 1],
1207
+ [113, 1],
1208
+ [113, 1],
1209
+ [82, 1],
1210
+ [82, 1],
1211
+ [82, 1],
1212
+ [82, 1],
1213
+ [91, 1],
1214
+ [91, 1],
1215
+ [91, 1],
1216
+ [91, 1],
1217
+ [91, 1],
1218
+ [91, 1],
1219
+ [91, 1],
1220
+ [91, 1],
1221
+ [91, 1],
1222
+ [91, 1],
1223
+ [91, 1],
1224
+ [79, 1],
1225
+ [79, 1],
1226
+ [120, 1],
1227
+ [120, 1],
1228
+ [120, 1],
1229
+ [120, 1],
1230
+ [120, 1],
1231
+ [120, 1],
1232
+ [120, 1],
1233
+ [120, 1],
1234
+ [120, 1],
1235
+ [120, 1],
1236
+ [120, 1],
1237
+ [47, 1],
1238
+ [47, 2],
1239
+ [101, 1],
1240
+ [101, 2],
1241
+ [33, 1],
1242
+ [33, 1],
1243
+ [33, 1],
1244
+ [33, 1]
1245
+ ],
1246
+ performAction: /* @__PURE__ */ __name(function(e, t, n, r, i, a, o) {
1247
+ var s = a.length - 1;
1248
+ switch (i) {
1249
+ case 2:
1250
+ this.$ = [];
1251
+ break;
1252
+ case 3:
1253
+ (!Array.isArray(a[s]) || a[s].length > 0) && a[s - 1].push(a[s]), this.$ = a[s - 1];
1254
+ break;
1255
+ case 4:
1256
+ case 183:
1257
+ this.$ = a[s];
1258
+ break;
1259
+ case 11:
1260
+ r.setDirection("TB"), this.$ = "TB";
1261
+ break;
1262
+ case 12:
1263
+ r.setDirection(a[s - 1]), this.$ = a[s - 1];
1264
+ break;
1265
+ case 27:
1266
+ this.$ = a[s - 1].nodes;
1267
+ break;
1268
+ case 28:
1269
+ case 29:
1270
+ case 30:
1271
+ case 31:
1272
+ case 32:
1273
+ this.$ = [];
1274
+ break;
1275
+ case 33:
1276
+ this.$ = r.addSubGraph(a[s - 6], a[s - 1], a[s - 4]);
1277
+ break;
1278
+ case 34:
1279
+ this.$ = r.addSubGraph(a[s - 3], a[s - 1], a[s - 3]);
1280
+ break;
1281
+ case 35:
1282
+ this.$ = r.addSubGraph(void 0, a[s - 1], void 0);
1283
+ break;
1284
+ case 37:
1285
+ this.$ = a[s].trim(), r.setAccTitle(this.$);
1286
+ break;
1287
+ case 38:
1288
+ case 39:
1289
+ this.$ = a[s].trim(), r.setAccDescription(this.$);
1290
+ break;
1291
+ case 43:
1292
+ this.$ = a[s - 1] + a[s];
1293
+ break;
1294
+ case 44:
1295
+ this.$ = a[s];
1296
+ break;
1297
+ case 45:
1298
+ r.addVertex(a[s - 1][a[s - 1].length - 1], void 0, void 0, void 0, void 0, void 0, void 0, a[s]), r.addLink(a[s - 3].stmt, a[s - 1], a[s - 2]), this.$ = {
1299
+ stmt: a[s - 1],
1300
+ nodes: a[s - 1].concat(a[s - 3].nodes)
1301
+ };
1302
+ break;
1303
+ case 46:
1304
+ r.addLink(a[s - 2].stmt, a[s], a[s - 1]), this.$ = {
1305
+ stmt: a[s],
1306
+ nodes: a[s].concat(a[s - 2].nodes)
1307
+ };
1308
+ break;
1309
+ case 47:
1310
+ r.addLink(a[s - 3].stmt, a[s - 1], a[s - 2]), this.$ = {
1311
+ stmt: a[s - 1],
1312
+ nodes: a[s - 1].concat(a[s - 3].nodes)
1313
+ };
1314
+ break;
1315
+ case 48:
1316
+ this.$ = {
1317
+ stmt: a[s - 1],
1318
+ nodes: a[s - 1]
1319
+ };
1320
+ break;
1321
+ case 49:
1322
+ r.addVertex(a[s - 1][a[s - 1].length - 1], void 0, void 0, void 0, void 0, void 0, void 0, a[s]), this.$ = {
1323
+ stmt: a[s - 1],
1324
+ nodes: a[s - 1],
1325
+ shapeData: a[s]
1326
+ };
1327
+ break;
1328
+ case 50:
1329
+ this.$ = {
1330
+ stmt: a[s],
1331
+ nodes: a[s]
1332
+ };
1333
+ break;
1334
+ case 51:
1335
+ this.$ = [a[s]];
1336
+ break;
1337
+ case 52:
1338
+ r.addVertex(a[s - 5][a[s - 5].length - 1], void 0, void 0, void 0, void 0, void 0, void 0, a[s - 4]), this.$ = a[s - 5].concat(a[s]);
1339
+ break;
1340
+ case 53:
1341
+ this.$ = a[s - 4].concat(a[s]);
1342
+ break;
1343
+ case 54:
1344
+ this.$ = a[s];
1345
+ break;
1346
+ case 55:
1347
+ this.$ = a[s - 2], r.setClass(a[s - 2], a[s]);
1348
+ break;
1349
+ case 56:
1350
+ this.$ = a[s - 3], r.addVertex(a[s - 3], a[s - 1], "square");
1351
+ break;
1352
+ case 57:
1353
+ this.$ = a[s - 3], r.addVertex(a[s - 3], a[s - 1], "doublecircle");
1354
+ break;
1355
+ case 58:
1356
+ this.$ = a[s - 5], r.addVertex(a[s - 5], a[s - 2], "circle");
1357
+ break;
1358
+ case 59:
1359
+ this.$ = a[s - 3], r.addVertex(a[s - 3], a[s - 1], "ellipse");
1360
+ break;
1361
+ case 60:
1362
+ this.$ = a[s - 3], r.addVertex(a[s - 3], a[s - 1], "stadium");
1363
+ break;
1364
+ case 61:
1365
+ this.$ = a[s - 3], r.addVertex(a[s - 3], a[s - 1], "subroutine");
1366
+ break;
1367
+ case 62:
1368
+ this.$ = a[s - 7], r.addVertex(a[s - 7], a[s - 1], "rect", void 0, void 0, void 0, Object.fromEntries([[a[s - 5], a[s - 3]]]));
1369
+ break;
1370
+ case 63:
1371
+ this.$ = a[s - 3], r.addVertex(a[s - 3], a[s - 1], "cylinder");
1372
+ break;
1373
+ case 64:
1374
+ this.$ = a[s - 3], r.addVertex(a[s - 3], a[s - 1], "round");
1375
+ break;
1376
+ case 65:
1377
+ this.$ = a[s - 3], r.addVertex(a[s - 3], a[s - 1], "diamond");
1378
+ break;
1379
+ case 66:
1380
+ this.$ = a[s - 5], r.addVertex(a[s - 5], a[s - 2], "hexagon");
1381
+ break;
1382
+ case 67:
1383
+ this.$ = a[s - 3], r.addVertex(a[s - 3], a[s - 1], "odd");
1384
+ break;
1385
+ case 68:
1386
+ this.$ = a[s - 3], r.addVertex(a[s - 3], a[s - 1], "trapezoid");
1387
+ break;
1388
+ case 69:
1389
+ this.$ = a[s - 3], r.addVertex(a[s - 3], a[s - 1], "inv_trapezoid");
1390
+ break;
1391
+ case 70:
1392
+ this.$ = a[s - 3], r.addVertex(a[s - 3], a[s - 1], "lean_right");
1393
+ break;
1394
+ case 71:
1395
+ this.$ = a[s - 3], r.addVertex(a[s - 3], a[s - 1], "lean_left");
1396
+ break;
1397
+ case 72:
1398
+ this.$ = a[s], r.addVertex(a[s]);
1399
+ break;
1400
+ case 73:
1401
+ a[s - 1].text = a[s], this.$ = a[s - 1];
1402
+ break;
1403
+ case 74:
1404
+ case 75:
1405
+ a[s - 2].text = a[s - 1], this.$ = a[s - 2];
1406
+ break;
1407
+ case 76:
1408
+ this.$ = a[s];
1409
+ break;
1410
+ case 77:
1411
+ var c = r.destructLink(a[s], a[s - 2]);
1412
+ this.$ = {
1413
+ type: c.type,
1414
+ stroke: c.stroke,
1415
+ length: c.length,
1416
+ text: a[s - 1]
1417
+ };
1418
+ break;
1419
+ case 78:
1420
+ var c = r.destructLink(a[s], a[s - 2]);
1421
+ this.$ = {
1422
+ type: c.type,
1423
+ stroke: c.stroke,
1424
+ length: c.length,
1425
+ text: a[s - 1],
1426
+ id: a[s - 3]
1427
+ };
1428
+ break;
1429
+ case 79:
1430
+ this.$ = {
1431
+ text: a[s],
1432
+ type: "text"
1433
+ };
1434
+ break;
1435
+ case 80:
1436
+ this.$ = {
1437
+ text: a[s - 1].text + "" + a[s],
1438
+ type: a[s - 1].type
1439
+ };
1440
+ break;
1441
+ case 81:
1442
+ this.$ = {
1443
+ text: a[s],
1444
+ type: "string"
1445
+ };
1446
+ break;
1447
+ case 82:
1448
+ this.$ = {
1449
+ text: a[s],
1450
+ type: "markdown"
1451
+ };
1452
+ break;
1453
+ case 83:
1454
+ var c = r.destructLink(a[s]);
1455
+ this.$ = {
1456
+ type: c.type,
1457
+ stroke: c.stroke,
1458
+ length: c.length
1459
+ };
1460
+ break;
1461
+ case 84:
1462
+ var c = r.destructLink(a[s]);
1463
+ this.$ = {
1464
+ type: c.type,
1465
+ stroke: c.stroke,
1466
+ length: c.length,
1467
+ id: a[s - 1]
1468
+ };
1469
+ break;
1470
+ case 85:
1471
+ this.$ = a[s - 1];
1472
+ break;
1473
+ case 86:
1474
+ this.$ = {
1475
+ text: a[s],
1476
+ type: "text"
1477
+ };
1478
+ break;
1479
+ case 87:
1480
+ this.$ = {
1481
+ text: a[s - 1].text + "" + a[s],
1482
+ type: a[s - 1].type
1483
+ };
1484
+ break;
1485
+ case 88:
1486
+ this.$ = {
1487
+ text: a[s],
1488
+ type: "string"
1489
+ };
1490
+ break;
1491
+ case 89:
1492
+ case 104:
1493
+ this.$ = {
1494
+ text: a[s],
1495
+ type: "markdown"
1496
+ };
1497
+ break;
1498
+ case 101:
1499
+ this.$ = {
1500
+ text: a[s],
1501
+ type: "text"
1502
+ };
1503
+ break;
1504
+ case 102:
1505
+ this.$ = {
1506
+ text: a[s - 1].text + "" + a[s],
1507
+ type: a[s - 1].type
1508
+ };
1509
+ break;
1510
+ case 103:
1511
+ this.$ = {
1512
+ text: a[s],
1513
+ type: "text"
1514
+ };
1515
+ break;
1516
+ case 105:
1517
+ this.$ = a[s - 4], r.addClass(a[s - 2], a[s]);
1518
+ break;
1519
+ case 106:
1520
+ this.$ = a[s - 4], r.setClass(a[s - 2], a[s]);
1521
+ break;
1522
+ case 107:
1523
+ case 115:
1524
+ this.$ = a[s - 1], r.setClickEvent(a[s - 1], a[s]);
1525
+ break;
1526
+ case 108:
1527
+ case 116:
1528
+ this.$ = a[s - 3], r.setClickEvent(a[s - 3], a[s - 2]), r.setTooltip(a[s - 3], a[s]);
1529
+ break;
1530
+ case 109:
1531
+ this.$ = a[s - 2], r.setClickEvent(a[s - 2], a[s - 1], a[s]);
1532
+ break;
1533
+ case 110:
1534
+ this.$ = a[s - 4], r.setClickEvent(a[s - 4], a[s - 3], a[s - 2]), r.setTooltip(a[s - 4], a[s]);
1535
+ break;
1536
+ case 111:
1537
+ this.$ = a[s - 2], r.setLink(a[s - 2], a[s]);
1538
+ break;
1539
+ case 112:
1540
+ this.$ = a[s - 4], r.setLink(a[s - 4], a[s - 2]), r.setTooltip(a[s - 4], a[s]);
1541
+ break;
1542
+ case 113:
1543
+ this.$ = a[s - 4], r.setLink(a[s - 4], a[s - 2], a[s]);
1544
+ break;
1545
+ case 114:
1546
+ this.$ = a[s - 6], r.setLink(a[s - 6], a[s - 4], a[s]), r.setTooltip(a[s - 6], a[s - 2]);
1547
+ break;
1548
+ case 117:
1549
+ this.$ = a[s - 1], r.setLink(a[s - 1], a[s]);
1550
+ break;
1551
+ case 118:
1552
+ this.$ = a[s - 3], r.setLink(a[s - 3], a[s - 2]), r.setTooltip(a[s - 3], a[s]);
1553
+ break;
1554
+ case 119:
1555
+ this.$ = a[s - 3], r.setLink(a[s - 3], a[s - 2], a[s]);
1556
+ break;
1557
+ case 120:
1558
+ this.$ = a[s - 5], r.setLink(a[s - 5], a[s - 4], a[s]), r.setTooltip(a[s - 5], a[s - 2]);
1559
+ break;
1560
+ case 121:
1561
+ this.$ = a[s - 4], r.addVertex(a[s - 2], void 0, void 0, a[s]);
1562
+ break;
1563
+ case 122:
1564
+ this.$ = a[s - 4], r.updateLink([a[s - 2]], a[s]);
1565
+ break;
1566
+ case 123:
1567
+ this.$ = a[s - 4], r.updateLink(a[s - 2], a[s]);
1568
+ break;
1569
+ case 124:
1570
+ this.$ = a[s - 8], r.updateLinkInterpolate([a[s - 6]], a[s - 2]), r.updateLink([a[s - 6]], a[s]);
1571
+ break;
1572
+ case 125:
1573
+ this.$ = a[s - 8], r.updateLinkInterpolate(a[s - 6], a[s - 2]), r.updateLink(a[s - 6], a[s]);
1574
+ break;
1575
+ case 126:
1576
+ this.$ = a[s - 6], r.updateLinkInterpolate([a[s - 4]], a[s]);
1577
+ break;
1578
+ case 127:
1579
+ this.$ = a[s - 6], r.updateLinkInterpolate(a[s - 4], a[s]);
1580
+ break;
1581
+ case 128:
1582
+ case 130:
1583
+ this.$ = [a[s]];
1584
+ break;
1585
+ case 129:
1586
+ case 131:
1587
+ a[s - 2].push(a[s]), this.$ = a[s - 2];
1588
+ break;
1589
+ case 133:
1590
+ this.$ = a[s - 1] + a[s];
1591
+ break;
1592
+ case 181:
1593
+ this.$ = a[s];
1594
+ break;
1595
+ case 182:
1596
+ this.$ = a[s - 1] + "" + a[s];
1597
+ break;
1598
+ case 184:
1599
+ this.$ = a[s - 1] + "" + a[s];
1600
+ break;
1601
+ case 185:
1602
+ this.$ = {
1603
+ stmt: "dir",
1604
+ value: "TB"
1605
+ };
1606
+ break;
1607
+ case 186:
1608
+ this.$ = {
1609
+ stmt: "dir",
1610
+ value: "BT"
1611
+ };
1612
+ break;
1613
+ case 187:
1614
+ this.$ = {
1615
+ stmt: "dir",
1616
+ value: "RL"
1617
+ };
1618
+ break;
1619
+ case 188:
1620
+ this.$ = {
1621
+ stmt: "dir",
1622
+ value: "LR"
1623
+ };
1624
+ break;
1625
+ }
1626
+ }, "anonymous"),
1627
+ table: [
1628
+ {
1629
+ 3: 1,
1630
+ 4: 2,
1631
+ 9: n,
1632
+ 10: r,
1633
+ 12: i
1634
+ },
1635
+ { 1: [3] },
1636
+ t(a, o, { 5: 6 }),
1637
+ {
1638
+ 4: 7,
1639
+ 9: n,
1640
+ 10: r,
1641
+ 12: i
1642
+ },
1643
+ {
1644
+ 4: 8,
1645
+ 9: n,
1646
+ 10: r,
1647
+ 12: i
1648
+ },
1649
+ {
1650
+ 13: [1, 9],
1651
+ 14: [1, 10]
1652
+ },
1653
+ {
1654
+ 1: [2, 1],
1655
+ 6: 11,
1656
+ 7: 12,
1657
+ 8: s,
1658
+ 9: c,
1659
+ 10: l,
1660
+ 11: u,
1661
+ 20: 17,
1662
+ 22: 18,
1663
+ 23: 19,
1664
+ 24: 20,
1665
+ 25: 21,
1666
+ 26: 22,
1667
+ 27: d,
1668
+ 33: 24,
1669
+ 34: f,
1670
+ 36: p,
1671
+ 38: ee,
1672
+ 42: 28,
1673
+ 43: 38,
1674
+ 44: m,
1675
+ 45: 39,
1676
+ 47: 40,
1677
+ 60: h,
1678
+ 84: g,
1679
+ 85: te,
1680
+ 86: ne,
1681
+ 87: re,
1682
+ 88: ie,
1683
+ 89: _,
1684
+ 102: v,
1685
+ 105: y,
1686
+ 106: b,
1687
+ 109: x,
1688
+ 111: S,
1689
+ 113: 41,
1690
+ 114: C,
1691
+ 115: w,
1692
+ 116: T,
1693
+ 121: E,
1694
+ 122: ae,
1695
+ 123: oe,
1696
+ 124: se
1697
+ },
1698
+ t(a, [2, 9]),
1699
+ t(a, [2, 10]),
1700
+ t(a, [2, 11]),
1701
+ {
1702
+ 8: [1, 54],
1703
+ 9: [1, 55],
1704
+ 10: D,
1705
+ 15: 53,
1706
+ 18: 56
1707
+ },
1708
+ t(O, [2, 3]),
1709
+ t(O, [2, 4]),
1710
+ t(O, [2, 5]),
1711
+ t(O, [2, 6]),
1712
+ t(O, [2, 7]),
1713
+ t(O, [2, 8]),
1714
+ {
1715
+ 8: k,
1716
+ 9: A,
1717
+ 11: j,
1718
+ 21: 58,
1719
+ 41: 59,
1720
+ 72: 63,
1721
+ 75: [1, 64],
1722
+ 77: [1, 66],
1723
+ 78: [1, 65]
1724
+ },
1725
+ {
1726
+ 8: k,
1727
+ 9: A,
1728
+ 11: j,
1729
+ 21: 67
1730
+ },
1731
+ {
1732
+ 8: k,
1733
+ 9: A,
1734
+ 11: j,
1735
+ 21: 68
1736
+ },
1737
+ {
1738
+ 8: k,
1739
+ 9: A,
1740
+ 11: j,
1741
+ 21: 69
1742
+ },
1743
+ {
1744
+ 8: k,
1745
+ 9: A,
1746
+ 11: j,
1747
+ 21: 70
1748
+ },
1749
+ {
1750
+ 8: k,
1751
+ 9: A,
1752
+ 11: j,
1753
+ 21: 71
1754
+ },
1755
+ {
1756
+ 8: k,
1757
+ 9: A,
1758
+ 10: [1, 72],
1759
+ 11: j,
1760
+ 21: 73
1761
+ },
1762
+ t(O, [2, 36]),
1763
+ { 35: [1, 74] },
1764
+ { 37: [1, 75] },
1765
+ t(O, [2, 39]),
1766
+ t(ce, [2, 50], {
1767
+ 18: 76,
1768
+ 39: 77,
1769
+ 10: D,
1770
+ 40: le
1771
+ }),
1772
+ { 10: [1, 79] },
1773
+ { 10: [1, 80] },
1774
+ { 10: [1, 81] },
1775
+ { 10: [1, 82] },
1776
+ {
1777
+ 14: ue,
1778
+ 44: de,
1779
+ 60: fe,
1780
+ 80: [1, 86],
1781
+ 89: pe,
1782
+ 95: [1, 83],
1783
+ 97: [1, 84],
1784
+ 101: 85,
1785
+ 105: me,
1786
+ 106: he,
1787
+ 109: ge,
1788
+ 111: _e,
1789
+ 114: ve,
1790
+ 115: ye,
1791
+ 116: be,
1792
+ 120: 87
1793
+ },
1794
+ t(O, [2, 185]),
1795
+ t(O, [2, 186]),
1796
+ t(O, [2, 187]),
1797
+ t(O, [2, 188]),
1798
+ t(M, [2, 51]),
1799
+ t(M, [2, 54], { 46: [1, 99] }),
1800
+ t(N, [2, 72], {
1801
+ 113: 112,
1802
+ 29: [1, 100],
1803
+ 44: m,
1804
+ 48: [1, 101],
1805
+ 50: [1, 102],
1806
+ 52: [1, 103],
1807
+ 54: [1, 104],
1808
+ 56: [1, 105],
1809
+ 58: [1, 106],
1810
+ 60: h,
1811
+ 63: [1, 107],
1812
+ 65: [1, 108],
1813
+ 67: [1, 109],
1814
+ 68: [1, 110],
1815
+ 70: [1, 111],
1816
+ 89: _,
1817
+ 102: v,
1818
+ 105: y,
1819
+ 106: b,
1820
+ 109: x,
1821
+ 111: S,
1822
+ 114: C,
1823
+ 115: w,
1824
+ 116: T
1825
+ }),
1826
+ t(P, [2, 181]),
1827
+ t(P, [2, 142]),
1828
+ t(P, [2, 143]),
1829
+ t(P, [2, 144]),
1830
+ t(P, [2, 145]),
1831
+ t(P, [2, 146]),
1832
+ t(P, [2, 147]),
1833
+ t(P, [2, 148]),
1834
+ t(P, [2, 149]),
1835
+ t(P, [2, 150]),
1836
+ t(P, [2, 151]),
1837
+ t(P, [2, 152]),
1838
+ t(a, [2, 12]),
1839
+ t(a, [2, 18]),
1840
+ t(a, [2, 19]),
1841
+ { 9: [1, 113] },
1842
+ t(xe, [2, 26], {
1843
+ 18: 114,
1844
+ 10: D
1845
+ }),
1846
+ t(O, [2, 27]),
1847
+ {
1848
+ 42: 115,
1849
+ 43: 38,
1850
+ 44: m,
1851
+ 45: 39,
1852
+ 47: 40,
1853
+ 60: h,
1854
+ 89: _,
1855
+ 102: v,
1856
+ 105: y,
1857
+ 106: b,
1858
+ 109: x,
1859
+ 111: S,
1860
+ 113: 41,
1861
+ 114: C,
1862
+ 115: w,
1863
+ 116: T
1864
+ },
1865
+ t(O, [2, 40]),
1866
+ t(O, [2, 41]),
1867
+ t(O, [2, 42]),
1868
+ t(Se, [2, 76], {
1869
+ 73: 116,
1870
+ 62: [1, 118],
1871
+ 74: [1, 117]
1872
+ }),
1873
+ {
1874
+ 76: 119,
1875
+ 79: 120,
1876
+ 80: Ce,
1877
+ 81: we,
1878
+ 116: Te,
1879
+ 119: Ee
1880
+ },
1881
+ {
1882
+ 75: [1, 125],
1883
+ 77: [1, 126]
1884
+ },
1885
+ t(De, [2, 83]),
1886
+ t(O, [2, 28]),
1887
+ t(O, [2, 29]),
1888
+ t(O, [2, 30]),
1889
+ t(O, [2, 31]),
1890
+ t(O, [2, 32]),
1891
+ {
1892
+ 10: Oe,
1893
+ 12: ke,
1894
+ 14: Ae,
1895
+ 27: je,
1896
+ 28: 127,
1897
+ 32: Me,
1898
+ 44: Ne,
1899
+ 60: Pe,
1900
+ 75: Fe,
1901
+ 80: [1, 129],
1902
+ 81: [1, 130],
1903
+ 83: 140,
1904
+ 84: Ie,
1905
+ 85: Le,
1906
+ 86: Re,
1907
+ 87: ze,
1908
+ 88: Be,
1909
+ 89: Ve,
1910
+ 90: He,
1911
+ 91: 128,
1912
+ 105: Ue,
1913
+ 109: We,
1914
+ 111: Ge,
1915
+ 114: Ke,
1916
+ 115: qe,
1917
+ 116: Je
1918
+ },
1919
+ t(Ye, o, { 5: 153 }),
1920
+ t(O, [2, 37]),
1921
+ t(O, [2, 38]),
1922
+ t(ce, [2, 48], { 44: Xe }),
1923
+ t(ce, [2, 49], {
1924
+ 18: 155,
1925
+ 10: D,
1926
+ 40: Ze
1927
+ }),
1928
+ t(M, [2, 44]),
1929
+ {
1930
+ 44: m,
1931
+ 47: 157,
1932
+ 60: h,
1933
+ 89: _,
1934
+ 102: v,
1935
+ 105: y,
1936
+ 106: b,
1937
+ 109: x,
1938
+ 111: S,
1939
+ 113: 41,
1940
+ 114: C,
1941
+ 115: w,
1942
+ 116: T
1943
+ },
1944
+ {
1945
+ 102: [1, 158],
1946
+ 103: 159,
1947
+ 105: [1, 160]
1948
+ },
1949
+ {
1950
+ 44: m,
1951
+ 47: 161,
1952
+ 60: h,
1953
+ 89: _,
1954
+ 102: v,
1955
+ 105: y,
1956
+ 106: b,
1957
+ 109: x,
1958
+ 111: S,
1959
+ 113: 41,
1960
+ 114: C,
1961
+ 115: w,
1962
+ 116: T
1963
+ },
1964
+ {
1965
+ 44: m,
1966
+ 47: 162,
1967
+ 60: h,
1968
+ 89: _,
1969
+ 102: v,
1970
+ 105: y,
1971
+ 106: b,
1972
+ 109: x,
1973
+ 111: S,
1974
+ 113: 41,
1975
+ 114: C,
1976
+ 115: w,
1977
+ 116: T
1978
+ },
1979
+ t(F, [2, 107], {
1980
+ 10: [1, 163],
1981
+ 96: [1, 164]
1982
+ }),
1983
+ { 80: [1, 165] },
1984
+ t(F, [2, 115], {
1985
+ 120: 167,
1986
+ 10: [1, 166],
1987
+ 14: ue,
1988
+ 44: de,
1989
+ 60: fe,
1990
+ 89: pe,
1991
+ 105: me,
1992
+ 106: he,
1993
+ 109: ge,
1994
+ 111: _e,
1995
+ 114: ve,
1996
+ 115: ye,
1997
+ 116: be
1998
+ }),
1999
+ t(F, [2, 117], { 10: [1, 168] }),
2000
+ t(I, [2, 183]),
2001
+ t(I, [2, 170]),
2002
+ t(I, [2, 171]),
2003
+ t(I, [2, 172]),
2004
+ t(I, [2, 173]),
2005
+ t(I, [2, 174]),
2006
+ t(I, [2, 175]),
2007
+ t(I, [2, 176]),
2008
+ t(I, [2, 177]),
2009
+ t(I, [2, 178]),
2010
+ t(I, [2, 179]),
2011
+ t(I, [2, 180]),
2012
+ {
2013
+ 44: m,
2014
+ 47: 169,
2015
+ 60: h,
2016
+ 89: _,
2017
+ 102: v,
2018
+ 105: y,
2019
+ 106: b,
2020
+ 109: x,
2021
+ 111: S,
2022
+ 113: 41,
2023
+ 114: C,
2024
+ 115: w,
2025
+ 116: T
2026
+ },
2027
+ {
2028
+ 30: 170,
2029
+ 67: L,
2030
+ 80: R,
2031
+ 81: z,
2032
+ 82: 171,
2033
+ 116: B,
2034
+ 117: V,
2035
+ 118: H
2036
+ },
2037
+ {
2038
+ 30: 178,
2039
+ 67: L,
2040
+ 80: R,
2041
+ 81: z,
2042
+ 82: 171,
2043
+ 116: B,
2044
+ 117: V,
2045
+ 118: H
2046
+ },
2047
+ {
2048
+ 30: 180,
2049
+ 50: [1, 179],
2050
+ 67: L,
2051
+ 80: R,
2052
+ 81: z,
2053
+ 82: 171,
2054
+ 116: B,
2055
+ 117: V,
2056
+ 118: H
2057
+ },
2058
+ {
2059
+ 30: 181,
2060
+ 67: L,
2061
+ 80: R,
2062
+ 81: z,
2063
+ 82: 171,
2064
+ 116: B,
2065
+ 117: V,
2066
+ 118: H
2067
+ },
2068
+ {
2069
+ 30: 182,
2070
+ 67: L,
2071
+ 80: R,
2072
+ 81: z,
2073
+ 82: 171,
2074
+ 116: B,
2075
+ 117: V,
2076
+ 118: H
2077
+ },
2078
+ {
2079
+ 30: 183,
2080
+ 67: L,
2081
+ 80: R,
2082
+ 81: z,
2083
+ 82: 171,
2084
+ 116: B,
2085
+ 117: V,
2086
+ 118: H
2087
+ },
2088
+ { 109: [1, 184] },
2089
+ {
2090
+ 30: 185,
2091
+ 67: L,
2092
+ 80: R,
2093
+ 81: z,
2094
+ 82: 171,
2095
+ 116: B,
2096
+ 117: V,
2097
+ 118: H
2098
+ },
2099
+ {
2100
+ 30: 186,
2101
+ 65: [1, 187],
2102
+ 67: L,
2103
+ 80: R,
2104
+ 81: z,
2105
+ 82: 171,
2106
+ 116: B,
2107
+ 117: V,
2108
+ 118: H
2109
+ },
2110
+ {
2111
+ 30: 188,
2112
+ 67: L,
2113
+ 80: R,
2114
+ 81: z,
2115
+ 82: 171,
2116
+ 116: B,
2117
+ 117: V,
2118
+ 118: H
2119
+ },
2120
+ {
2121
+ 30: 189,
2122
+ 67: L,
2123
+ 80: R,
2124
+ 81: z,
2125
+ 82: 171,
2126
+ 116: B,
2127
+ 117: V,
2128
+ 118: H
2129
+ },
2130
+ {
2131
+ 30: 190,
2132
+ 67: L,
2133
+ 80: R,
2134
+ 81: z,
2135
+ 82: 171,
2136
+ 116: B,
2137
+ 117: V,
2138
+ 118: H
2139
+ },
2140
+ t(P, [2, 182]),
2141
+ t(a, [2, 20]),
2142
+ t(xe, [2, 25]),
2143
+ t(ce, [2, 46], {
2144
+ 39: 191,
2145
+ 18: 192,
2146
+ 10: D,
2147
+ 40: le
2148
+ }),
2149
+ t(Se, [2, 73], { 10: [1, 193] }),
2150
+ { 10: [1, 194] },
2151
+ {
2152
+ 30: 195,
2153
+ 67: L,
2154
+ 80: R,
2155
+ 81: z,
2156
+ 82: 171,
2157
+ 116: B,
2158
+ 117: V,
2159
+ 118: H
2160
+ },
2161
+ {
2162
+ 77: [1, 196],
2163
+ 79: 197,
2164
+ 116: Te,
2165
+ 119: Ee
2166
+ },
2167
+ t(Qe, [2, 79]),
2168
+ t(Qe, [2, 81]),
2169
+ t(Qe, [2, 82]),
2170
+ t(Qe, [2, 168]),
2171
+ t(Qe, [2, 169]),
2172
+ {
2173
+ 76: 198,
2174
+ 79: 120,
2175
+ 80: Ce,
2176
+ 81: we,
2177
+ 116: Te,
2178
+ 119: Ee
2179
+ },
2180
+ t(De, [2, 84]),
2181
+ {
2182
+ 8: k,
2183
+ 9: A,
2184
+ 10: Oe,
2185
+ 11: j,
2186
+ 12: ke,
2187
+ 14: Ae,
2188
+ 21: 200,
2189
+ 27: je,
2190
+ 29: [1, 199],
2191
+ 32: Me,
2192
+ 44: Ne,
2193
+ 60: Pe,
2194
+ 75: Fe,
2195
+ 83: 140,
2196
+ 84: Ie,
2197
+ 85: Le,
2198
+ 86: Re,
2199
+ 87: ze,
2200
+ 88: Be,
2201
+ 89: Ve,
2202
+ 90: He,
2203
+ 91: 201,
2204
+ 105: Ue,
2205
+ 109: We,
2206
+ 111: Ge,
2207
+ 114: Ke,
2208
+ 115: qe,
2209
+ 116: Je
2210
+ },
2211
+ t(U, [2, 101]),
2212
+ t(U, [2, 103]),
2213
+ t(U, [2, 104]),
2214
+ t(U, [2, 157]),
2215
+ t(U, [2, 158]),
2216
+ t(U, [2, 159]),
2217
+ t(U, [2, 160]),
2218
+ t(U, [2, 161]),
2219
+ t(U, [2, 162]),
2220
+ t(U, [2, 163]),
2221
+ t(U, [2, 164]),
2222
+ t(U, [2, 165]),
2223
+ t(U, [2, 166]),
2224
+ t(U, [2, 167]),
2225
+ t(U, [2, 90]),
2226
+ t(U, [2, 91]),
2227
+ t(U, [2, 92]),
2228
+ t(U, [2, 93]),
2229
+ t(U, [2, 94]),
2230
+ t(U, [2, 95]),
2231
+ t(U, [2, 96]),
2232
+ t(U, [2, 97]),
2233
+ t(U, [2, 98]),
2234
+ t(U, [2, 99]),
2235
+ t(U, [2, 100]),
2236
+ {
2237
+ 6: 11,
2238
+ 7: 12,
2239
+ 8: s,
2240
+ 9: c,
2241
+ 10: l,
2242
+ 11: u,
2243
+ 20: 17,
2244
+ 22: 18,
2245
+ 23: 19,
2246
+ 24: 20,
2247
+ 25: 21,
2248
+ 26: 22,
2249
+ 27: d,
2250
+ 32: [1, 202],
2251
+ 33: 24,
2252
+ 34: f,
2253
+ 36: p,
2254
+ 38: ee,
2255
+ 42: 28,
2256
+ 43: 38,
2257
+ 44: m,
2258
+ 45: 39,
2259
+ 47: 40,
2260
+ 60: h,
2261
+ 84: g,
2262
+ 85: te,
2263
+ 86: ne,
2264
+ 87: re,
2265
+ 88: ie,
2266
+ 89: _,
2267
+ 102: v,
2268
+ 105: y,
2269
+ 106: b,
2270
+ 109: x,
2271
+ 111: S,
2272
+ 113: 41,
2273
+ 114: C,
2274
+ 115: w,
2275
+ 116: T,
2276
+ 121: E,
2277
+ 122: ae,
2278
+ 123: oe,
2279
+ 124: se
2280
+ },
2281
+ {
2282
+ 10: D,
2283
+ 18: 203
2284
+ },
2285
+ { 44: [1, 204] },
2286
+ t(M, [2, 43]),
2287
+ {
2288
+ 10: [1, 205],
2289
+ 44: m,
2290
+ 60: h,
2291
+ 89: _,
2292
+ 102: v,
2293
+ 105: y,
2294
+ 106: b,
2295
+ 109: x,
2296
+ 111: S,
2297
+ 113: 112,
2298
+ 114: C,
2299
+ 115: w,
2300
+ 116: T
2301
+ },
2302
+ { 10: [1, 206] },
2303
+ {
2304
+ 10: [1, 207],
2305
+ 106: [1, 208]
2306
+ },
2307
+ t($e, [2, 128]),
2308
+ {
2309
+ 10: [1, 209],
2310
+ 44: m,
2311
+ 60: h,
2312
+ 89: _,
2313
+ 102: v,
2314
+ 105: y,
2315
+ 106: b,
2316
+ 109: x,
2317
+ 111: S,
2318
+ 113: 112,
2319
+ 114: C,
2320
+ 115: w,
2321
+ 116: T
2322
+ },
2323
+ {
2324
+ 10: [1, 210],
2325
+ 44: m,
2326
+ 60: h,
2327
+ 89: _,
2328
+ 102: v,
2329
+ 105: y,
2330
+ 106: b,
2331
+ 109: x,
2332
+ 111: S,
2333
+ 113: 112,
2334
+ 114: C,
2335
+ 115: w,
2336
+ 116: T
2337
+ },
2338
+ { 80: [1, 211] },
2339
+ t(F, [2, 109], { 10: [1, 212] }),
2340
+ t(F, [2, 111], { 10: [1, 213] }),
2341
+ { 80: [1, 214] },
2342
+ t(I, [2, 184]),
2343
+ {
2344
+ 80: [1, 215],
2345
+ 98: [1, 216]
2346
+ },
2347
+ t(M, [2, 55], {
2348
+ 113: 112,
2349
+ 44: m,
2350
+ 60: h,
2351
+ 89: _,
2352
+ 102: v,
2353
+ 105: y,
2354
+ 106: b,
2355
+ 109: x,
2356
+ 111: S,
2357
+ 114: C,
2358
+ 115: w,
2359
+ 116: T
2360
+ }),
2361
+ {
2362
+ 31: [1, 217],
2363
+ 67: L,
2364
+ 82: 218,
2365
+ 116: B,
2366
+ 117: V,
2367
+ 118: H
2368
+ },
2369
+ t(W, [2, 86]),
2370
+ t(W, [2, 88]),
2371
+ t(W, [2, 89]),
2372
+ t(W, [2, 153]),
2373
+ t(W, [2, 154]),
2374
+ t(W, [2, 155]),
2375
+ t(W, [2, 156]),
2376
+ {
2377
+ 49: [1, 219],
2378
+ 67: L,
2379
+ 82: 218,
2380
+ 116: B,
2381
+ 117: V,
2382
+ 118: H
2383
+ },
2384
+ {
2385
+ 30: 220,
2386
+ 67: L,
2387
+ 80: R,
2388
+ 81: z,
2389
+ 82: 171,
2390
+ 116: B,
2391
+ 117: V,
2392
+ 118: H
2393
+ },
2394
+ {
2395
+ 51: [1, 221],
2396
+ 67: L,
2397
+ 82: 218,
2398
+ 116: B,
2399
+ 117: V,
2400
+ 118: H
2401
+ },
2402
+ {
2403
+ 53: [1, 222],
2404
+ 67: L,
2405
+ 82: 218,
2406
+ 116: B,
2407
+ 117: V,
2408
+ 118: H
2409
+ },
2410
+ {
2411
+ 55: [1, 223],
2412
+ 67: L,
2413
+ 82: 218,
2414
+ 116: B,
2415
+ 117: V,
2416
+ 118: H
2417
+ },
2418
+ {
2419
+ 57: [1, 224],
2420
+ 67: L,
2421
+ 82: 218,
2422
+ 116: B,
2423
+ 117: V,
2424
+ 118: H
2425
+ },
2426
+ { 60: [1, 225] },
2427
+ {
2428
+ 64: [1, 226],
2429
+ 67: L,
2430
+ 82: 218,
2431
+ 116: B,
2432
+ 117: V,
2433
+ 118: H
2434
+ },
2435
+ {
2436
+ 66: [1, 227],
2437
+ 67: L,
2438
+ 82: 218,
2439
+ 116: B,
2440
+ 117: V,
2441
+ 118: H
2442
+ },
2443
+ {
2444
+ 30: 228,
2445
+ 67: L,
2446
+ 80: R,
2447
+ 81: z,
2448
+ 82: 171,
2449
+ 116: B,
2450
+ 117: V,
2451
+ 118: H
2452
+ },
2453
+ {
2454
+ 31: [1, 229],
2455
+ 67: L,
2456
+ 82: 218,
2457
+ 116: B,
2458
+ 117: V,
2459
+ 118: H
2460
+ },
2461
+ {
2462
+ 67: L,
2463
+ 69: [1, 230],
2464
+ 71: [1, 231],
2465
+ 82: 218,
2466
+ 116: B,
2467
+ 117: V,
2468
+ 118: H
2469
+ },
2470
+ {
2471
+ 67: L,
2472
+ 69: [1, 233],
2473
+ 71: [1, 232],
2474
+ 82: 218,
2475
+ 116: B,
2476
+ 117: V,
2477
+ 118: H
2478
+ },
2479
+ t(ce, [2, 45], {
2480
+ 18: 155,
2481
+ 10: D,
2482
+ 40: Ze
2483
+ }),
2484
+ t(ce, [2, 47], { 44: Xe }),
2485
+ t(Se, [2, 75]),
2486
+ t(Se, [2, 74]),
2487
+ {
2488
+ 62: [1, 234],
2489
+ 67: L,
2490
+ 82: 218,
2491
+ 116: B,
2492
+ 117: V,
2493
+ 118: H
2494
+ },
2495
+ t(Se, [2, 77]),
2496
+ t(Qe, [2, 80]),
2497
+ {
2498
+ 77: [1, 235],
2499
+ 79: 197,
2500
+ 116: Te,
2501
+ 119: Ee
2502
+ },
2503
+ {
2504
+ 30: 236,
2505
+ 67: L,
2506
+ 80: R,
2507
+ 81: z,
2508
+ 82: 171,
2509
+ 116: B,
2510
+ 117: V,
2511
+ 118: H
2512
+ },
2513
+ t(Ye, o, { 5: 237 }),
2514
+ t(U, [2, 102]),
2515
+ t(O, [2, 35]),
2516
+ {
2517
+ 43: 238,
2518
+ 44: m,
2519
+ 45: 39,
2520
+ 47: 40,
2521
+ 60: h,
2522
+ 89: _,
2523
+ 102: v,
2524
+ 105: y,
2525
+ 106: b,
2526
+ 109: x,
2527
+ 111: S,
2528
+ 113: 41,
2529
+ 114: C,
2530
+ 115: w,
2531
+ 116: T
2532
+ },
2533
+ {
2534
+ 10: D,
2535
+ 18: 239
2536
+ },
2537
+ {
2538
+ 10: G,
2539
+ 60: K,
2540
+ 84: q,
2541
+ 92: 240,
2542
+ 105: J,
2543
+ 107: 241,
2544
+ 108: 242,
2545
+ 109: Y,
2546
+ 110: X,
2547
+ 111: Z,
2548
+ 112: Q
2549
+ },
2550
+ {
2551
+ 10: G,
2552
+ 60: K,
2553
+ 84: q,
2554
+ 92: 251,
2555
+ 104: [1, 252],
2556
+ 105: J,
2557
+ 107: 241,
2558
+ 108: 242,
2559
+ 109: Y,
2560
+ 110: X,
2561
+ 111: Z,
2562
+ 112: Q
2563
+ },
2564
+ {
2565
+ 10: G,
2566
+ 60: K,
2567
+ 84: q,
2568
+ 92: 253,
2569
+ 104: [1, 254],
2570
+ 105: J,
2571
+ 107: 241,
2572
+ 108: 242,
2573
+ 109: Y,
2574
+ 110: X,
2575
+ 111: Z,
2576
+ 112: Q
2577
+ },
2578
+ { 105: [1, 255] },
2579
+ {
2580
+ 10: G,
2581
+ 60: K,
2582
+ 84: q,
2583
+ 92: 256,
2584
+ 105: J,
2585
+ 107: 241,
2586
+ 108: 242,
2587
+ 109: Y,
2588
+ 110: X,
2589
+ 111: Z,
2590
+ 112: Q
2591
+ },
2592
+ {
2593
+ 44: m,
2594
+ 47: 257,
2595
+ 60: h,
2596
+ 89: _,
2597
+ 102: v,
2598
+ 105: y,
2599
+ 106: b,
2600
+ 109: x,
2601
+ 111: S,
2602
+ 113: 41,
2603
+ 114: C,
2604
+ 115: w,
2605
+ 116: T
2606
+ },
2607
+ t(F, [2, 108]),
2608
+ { 80: [1, 258] },
2609
+ {
2610
+ 80: [1, 259],
2611
+ 98: [1, 260]
2612
+ },
2613
+ t(F, [2, 116]),
2614
+ t(F, [2, 118], { 10: [1, 261] }),
2615
+ t(F, [2, 119]),
2616
+ t(N, [2, 56]),
2617
+ t(W, [2, 87]),
2618
+ t(N, [2, 57]),
2619
+ {
2620
+ 51: [1, 262],
2621
+ 67: L,
2622
+ 82: 218,
2623
+ 116: B,
2624
+ 117: V,
2625
+ 118: H
2626
+ },
2627
+ t(N, [2, 64]),
2628
+ t(N, [2, 59]),
2629
+ t(N, [2, 60]),
2630
+ t(N, [2, 61]),
2631
+ { 109: [1, 263] },
2632
+ t(N, [2, 63]),
2633
+ t(N, [2, 65]),
2634
+ {
2635
+ 66: [1, 264],
2636
+ 67: L,
2637
+ 82: 218,
2638
+ 116: B,
2639
+ 117: V,
2640
+ 118: H
2641
+ },
2642
+ t(N, [2, 67]),
2643
+ t(N, [2, 68]),
2644
+ t(N, [2, 70]),
2645
+ t(N, [2, 69]),
2646
+ t(N, [2, 71]),
2647
+ t([
2648
+ 10,
2649
+ 44,
2650
+ 60,
2651
+ 89,
2652
+ 102,
2653
+ 105,
2654
+ 106,
2655
+ 109,
2656
+ 111,
2657
+ 114,
2658
+ 115,
2659
+ 116
2660
+ ], [2, 85]),
2661
+ t(Se, [2, 78]),
2662
+ {
2663
+ 31: [1, 265],
2664
+ 67: L,
2665
+ 82: 218,
2666
+ 116: B,
2667
+ 117: V,
2668
+ 118: H
2669
+ },
2670
+ {
2671
+ 6: 11,
2672
+ 7: 12,
2673
+ 8: s,
2674
+ 9: c,
2675
+ 10: l,
2676
+ 11: u,
2677
+ 20: 17,
2678
+ 22: 18,
2679
+ 23: 19,
2680
+ 24: 20,
2681
+ 25: 21,
2682
+ 26: 22,
2683
+ 27: d,
2684
+ 32: [1, 266],
2685
+ 33: 24,
2686
+ 34: f,
2687
+ 36: p,
2688
+ 38: ee,
2689
+ 42: 28,
2690
+ 43: 38,
2691
+ 44: m,
2692
+ 45: 39,
2693
+ 47: 40,
2694
+ 60: h,
2695
+ 84: g,
2696
+ 85: te,
2697
+ 86: ne,
2698
+ 87: re,
2699
+ 88: ie,
2700
+ 89: _,
2701
+ 102: v,
2702
+ 105: y,
2703
+ 106: b,
2704
+ 109: x,
2705
+ 111: S,
2706
+ 113: 41,
2707
+ 114: C,
2708
+ 115: w,
2709
+ 116: T,
2710
+ 121: E,
2711
+ 122: ae,
2712
+ 123: oe,
2713
+ 124: se
2714
+ },
2715
+ t(M, [2, 53]),
2716
+ {
2717
+ 43: 267,
2718
+ 44: m,
2719
+ 45: 39,
2720
+ 47: 40,
2721
+ 60: h,
2722
+ 89: _,
2723
+ 102: v,
2724
+ 105: y,
2725
+ 106: b,
2726
+ 109: x,
2727
+ 111: S,
2728
+ 113: 41,
2729
+ 114: C,
2730
+ 115: w,
2731
+ 116: T
2732
+ },
2733
+ t(F, [2, 121], { 106: et }),
2734
+ t(tt, [2, 130], {
2735
+ 108: 269,
2736
+ 10: G,
2737
+ 60: K,
2738
+ 84: q,
2739
+ 105: J,
2740
+ 109: Y,
2741
+ 110: X,
2742
+ 111: Z,
2743
+ 112: Q
2744
+ }),
2745
+ t($, [2, 132]),
2746
+ t($, [2, 134]),
2747
+ t($, [2, 135]),
2748
+ t($, [2, 136]),
2749
+ t($, [2, 137]),
2750
+ t($, [2, 138]),
2751
+ t($, [2, 139]),
2752
+ t($, [2, 140]),
2753
+ t($, [2, 141]),
2754
+ t(F, [2, 122], { 106: et }),
2755
+ { 10: [1, 270] },
2756
+ t(F, [2, 123], { 106: et }),
2757
+ { 10: [1, 271] },
2758
+ t($e, [2, 129]),
2759
+ t(F, [2, 105], { 106: et }),
2760
+ t(F, [2, 106], {
2761
+ 113: 112,
2762
+ 44: m,
2763
+ 60: h,
2764
+ 89: _,
2765
+ 102: v,
2766
+ 105: y,
2767
+ 106: b,
2768
+ 109: x,
2769
+ 111: S,
2770
+ 114: C,
2771
+ 115: w,
2772
+ 116: T
2773
+ }),
2774
+ t(F, [2, 110]),
2775
+ t(F, [2, 112], { 10: [1, 272] }),
2776
+ t(F, [2, 113]),
2777
+ { 98: [1, 273] },
2778
+ { 51: [1, 274] },
2779
+ { 62: [1, 275] },
2780
+ { 66: [1, 276] },
2781
+ {
2782
+ 8: k,
2783
+ 9: A,
2784
+ 11: j,
2785
+ 21: 277
2786
+ },
2787
+ t(O, [2, 34]),
2788
+ t(M, [2, 52]),
2789
+ {
2790
+ 10: G,
2791
+ 60: K,
2792
+ 84: q,
2793
+ 105: J,
2794
+ 107: 278,
2795
+ 108: 242,
2796
+ 109: Y,
2797
+ 110: X,
2798
+ 111: Z,
2799
+ 112: Q
2800
+ },
2801
+ t($, [2, 133]),
2802
+ {
2803
+ 14: ue,
2804
+ 44: de,
2805
+ 60: fe,
2806
+ 89: pe,
2807
+ 101: 279,
2808
+ 105: me,
2809
+ 106: he,
2810
+ 109: ge,
2811
+ 111: _e,
2812
+ 114: ve,
2813
+ 115: ye,
2814
+ 116: be,
2815
+ 120: 87
2816
+ },
2817
+ {
2818
+ 14: ue,
2819
+ 44: de,
2820
+ 60: fe,
2821
+ 89: pe,
2822
+ 101: 280,
2823
+ 105: me,
2824
+ 106: he,
2825
+ 109: ge,
2826
+ 111: _e,
2827
+ 114: ve,
2828
+ 115: ye,
2829
+ 116: be,
2830
+ 120: 87
2831
+ },
2832
+ { 98: [1, 281] },
2833
+ t(F, [2, 120]),
2834
+ t(N, [2, 58]),
2835
+ {
2836
+ 30: 282,
2837
+ 67: L,
2838
+ 80: R,
2839
+ 81: z,
2840
+ 82: 171,
2841
+ 116: B,
2842
+ 117: V,
2843
+ 118: H
2844
+ },
2845
+ t(N, [2, 66]),
2846
+ t(Ye, o, { 5: 283 }),
2847
+ t(tt, [2, 131], {
2848
+ 108: 269,
2849
+ 10: G,
2850
+ 60: K,
2851
+ 84: q,
2852
+ 105: J,
2853
+ 109: Y,
2854
+ 110: X,
2855
+ 111: Z,
2856
+ 112: Q
2857
+ }),
2858
+ t(F, [2, 126], {
2859
+ 120: 167,
2860
+ 10: [1, 284],
2861
+ 14: ue,
2862
+ 44: de,
2863
+ 60: fe,
2864
+ 89: pe,
2865
+ 105: me,
2866
+ 106: he,
2867
+ 109: ge,
2868
+ 111: _e,
2869
+ 114: ve,
2870
+ 115: ye,
2871
+ 116: be
2872
+ }),
2873
+ t(F, [2, 127], {
2874
+ 120: 167,
2875
+ 10: [1, 285],
2876
+ 14: ue,
2877
+ 44: de,
2878
+ 60: fe,
2879
+ 89: pe,
2880
+ 105: me,
2881
+ 106: he,
2882
+ 109: ge,
2883
+ 111: _e,
2884
+ 114: ve,
2885
+ 115: ye,
2886
+ 116: be
2887
+ }),
2888
+ t(F, [2, 114]),
2889
+ {
2890
+ 31: [1, 286],
2891
+ 67: L,
2892
+ 82: 218,
2893
+ 116: B,
2894
+ 117: V,
2895
+ 118: H
2896
+ },
2897
+ {
2898
+ 6: 11,
2899
+ 7: 12,
2900
+ 8: s,
2901
+ 9: c,
2902
+ 10: l,
2903
+ 11: u,
2904
+ 20: 17,
2905
+ 22: 18,
2906
+ 23: 19,
2907
+ 24: 20,
2908
+ 25: 21,
2909
+ 26: 22,
2910
+ 27: d,
2911
+ 32: [1, 287],
2912
+ 33: 24,
2913
+ 34: f,
2914
+ 36: p,
2915
+ 38: ee,
2916
+ 42: 28,
2917
+ 43: 38,
2918
+ 44: m,
2919
+ 45: 39,
2920
+ 47: 40,
2921
+ 60: h,
2922
+ 84: g,
2923
+ 85: te,
2924
+ 86: ne,
2925
+ 87: re,
2926
+ 88: ie,
2927
+ 89: _,
2928
+ 102: v,
2929
+ 105: y,
2930
+ 106: b,
2931
+ 109: x,
2932
+ 111: S,
2933
+ 113: 41,
2934
+ 114: C,
2935
+ 115: w,
2936
+ 116: T,
2937
+ 121: E,
2938
+ 122: ae,
2939
+ 123: oe,
2940
+ 124: se
2941
+ },
2942
+ {
2943
+ 10: G,
2944
+ 60: K,
2945
+ 84: q,
2946
+ 92: 288,
2947
+ 105: J,
2948
+ 107: 241,
2949
+ 108: 242,
2950
+ 109: Y,
2951
+ 110: X,
2952
+ 111: Z,
2953
+ 112: Q
2954
+ },
2955
+ {
2956
+ 10: G,
2957
+ 60: K,
2958
+ 84: q,
2959
+ 92: 289,
2960
+ 105: J,
2961
+ 107: 241,
2962
+ 108: 242,
2963
+ 109: Y,
2964
+ 110: X,
2965
+ 111: Z,
2966
+ 112: Q
2967
+ },
2968
+ t(N, [2, 62]),
2969
+ t(O, [2, 33]),
2970
+ t(F, [2, 124], { 106: et }),
2971
+ t(F, [2, 125], { 106: et })
2972
+ ],
2973
+ defaultActions: {},
2974
+ parseError: /* @__PURE__ */ __name(function(e, t) {
2975
+ if (t.recoverable) this.trace(e);
2976
+ else {
2977
+ var n = Error(e);
2978
+ throw n.hash = t, n;
2979
+ }
2980
+ }, "parseError"),
2981
+ parse: /* @__PURE__ */ __name(function(t) {
2982
+ var n = this, r = [0], i = [], a = [null], o = [], s = this.table, c = "", l = 0, u = 0, d = 0, f = 2, p = 1, ee = o.slice.call(arguments, 1), m = Object.create(this.lexer), h = { yy: {} };
2983
+ for (var g in this.yy) Object.prototype.hasOwnProperty.call(this.yy, g) && (h.yy[g] = this.yy[g]);
2984
+ m.setInput(t, h.yy), h.yy.lexer = m, h.yy.parser = this, m.yylloc === void 0 && (m.yylloc = {});
2985
+ var te = m.yylloc;
2986
+ o.push(te);
2987
+ var ne = m.options && m.options.ranges;
2988
+ typeof h.yy.parseError == "function" ? this.parseError = h.yy.parseError : this.parseError = Object.getPrototypeOf(this).parseError;
2989
+ function re(e) {
2990
+ r.length -= 2 * e, a.length -= e, o.length -= e;
2991
+ }
2992
+ __name(re, "popStack");
2993
+ function ie() {
2994
+ var e = i.pop() || m.lex() || p;
2995
+ return typeof e != "number" && (e instanceof Array && (i = e, e = i.pop()), e = n.symbols_[e] || e), e;
2996
+ }
2997
+ __name(ie, "lex");
2998
+ for (var _, v, y, b, x, S = {}, C, w, T, E;;) {
2999
+ if (y = r[r.length - 1], this.defaultActions[y] ? b = this.defaultActions[y] : (_ ??= ie(), b = s[y] && s[y][_]), b === void 0 || !b.length || !b[0]) {
3000
+ var ae = "";
3001
+ for (C in E = [], s[y]) this.terminals_[C] && C > f && E.push("'" + this.terminals_[C] + "'");
3002
+ ae = m.showPosition ? "Parse error on line " + (l + 1) + ":\n" + m.showPosition() + "\nExpecting " + E.join(", ") + ", got '" + (this.terminals_[_] || _) + "'" : "Parse error on line " + (l + 1) + ": Unexpected " + (_ == p ? "end of input" : "'" + (this.terminals_[_] || _) + "'"), this.parseError(ae, {
3003
+ text: m.match,
3004
+ token: this.terminals_[_] || _,
3005
+ line: m.yylineno,
3006
+ loc: te,
3007
+ expected: E
3008
+ });
3009
+ }
3010
+ if (b[0] instanceof Array && b.length > 1) throw Error("Parse Error: multiple actions possible at state: " + y + ", token: " + _);
3011
+ switch (b[0]) {
3012
+ case 1:
3013
+ r.push(_), a.push(m.yytext), o.push(m.yylloc), r.push(b[1]), _ = null, v ? (_ = v, v = null) : (u = m.yyleng, c = m.yytext, l = m.yylineno, te = m.yylloc, d > 0 && d--);
3014
+ break;
3015
+ case 2:
3016
+ if (w = this.productions_[b[1]][1], S.$ = a[a.length - w], S._$ = {
3017
+ first_line: o[o.length - (w || 1)].first_line,
3018
+ last_line: o[o.length - 1].last_line,
3019
+ first_column: o[o.length - (w || 1)].first_column,
3020
+ last_column: o[o.length - 1].last_column
3021
+ }, ne && (S._$.range = [o[o.length - (w || 1)].range[0], o[o.length - 1].range[1]]), x = this.performAction.apply(S, [
3022
+ c,
3023
+ u,
3024
+ l,
3025
+ h.yy,
3026
+ b[1],
3027
+ a,
3028
+ o
3029
+ ].concat(ee)), x !== void 0) return x;
3030
+ w && (r = r.slice(0, -1 * w * 2), a = a.slice(0, -1 * w), o = o.slice(0, -1 * w)), r.push(this.productions_[b[1]][0]), a.push(S.$), o.push(S._$), T = s[r[r.length - 2]][r[r.length - 1]], r.push(T);
3031
+ break;
3032
+ case 3: return !0;
3033
+ }
3034
+ }
3035
+ return !0;
3036
+ }, "parse")
3037
+ };
3038
+ nt.lexer = /* @__PURE__ */ (function() {
3039
+ return {
3040
+ EOF: 1,
3041
+ parseError: /* @__PURE__ */ __name(function(e, t) {
3042
+ if (this.yy.parser) this.yy.parser.parseError(e, t);
3043
+ else throw Error(e);
3044
+ }, "parseError"),
3045
+ setInput: /* @__PURE__ */ __name(function(e, t) {
3046
+ return this.yy = t || this.yy || {}, this._input = e, this._more = this._backtrack = this.done = !1, this.yylineno = this.yyleng = 0, this.yytext = this.matched = this.match = "", this.conditionStack = ["INITIAL"], this.yylloc = {
3047
+ first_line: 1,
3048
+ first_column: 0,
3049
+ last_line: 1,
3050
+ last_column: 0
3051
+ }, this.options.ranges && (this.yylloc.range = [0, 0]), this.offset = 0, this;
3052
+ }, "setInput"),
3053
+ input: /* @__PURE__ */ __name(function() {
3054
+ var e = this._input[0];
3055
+ return this.yytext += e, this.yyleng++, this.offset++, this.match += e, this.matched += e, e.match(/(?:\r\n?|\n).*/g) ? (this.yylineno++, this.yylloc.last_line++) : this.yylloc.last_column++, this.options.ranges && this.yylloc.range[1]++, this._input = this._input.slice(1), e;
3056
+ }, "input"),
3057
+ unput: /* @__PURE__ */ __name(function(e) {
3058
+ var t = e.length, n = e.split(/(?:\r\n?|\n)/g);
3059
+ this._input = e + this._input, this.yytext = this.yytext.substr(0, this.yytext.length - t), this.offset -= t;
3060
+ var r = this.match.split(/(?:\r\n?|\n)/g);
3061
+ this.match = this.match.substr(0, this.match.length - 1), this.matched = this.matched.substr(0, this.matched.length - 1), n.length - 1 && (this.yylineno -= n.length - 1);
3062
+ var i = this.yylloc.range;
3063
+ return this.yylloc = {
3064
+ first_line: this.yylloc.first_line,
3065
+ last_line: this.yylineno + 1,
3066
+ first_column: this.yylloc.first_column,
3067
+ last_column: n ? (n.length === r.length ? this.yylloc.first_column : 0) + r[r.length - n.length].length - n[0].length : this.yylloc.first_column - t
3068
+ }, this.options.ranges && (this.yylloc.range = [i[0], i[0] + this.yyleng - t]), this.yyleng = this.yytext.length, this;
3069
+ }, "unput"),
3070
+ more: /* @__PURE__ */ __name(function() {
3071
+ return this._more = !0, this;
3072
+ }, "more"),
3073
+ reject: /* @__PURE__ */ __name(function() {
3074
+ if (this.options.backtrack_lexer) this._backtrack = !0;
3075
+ 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).\n" + this.showPosition(), {
3076
+ text: "",
3077
+ token: null,
3078
+ line: this.yylineno
3079
+ });
3080
+ return this;
3081
+ }, "reject"),
3082
+ less: /* @__PURE__ */ __name(function(e) {
3083
+ this.unput(this.match.slice(e));
3084
+ }, "less"),
3085
+ pastInput: /* @__PURE__ */ __name(function() {
3086
+ var e = this.matched.substr(0, this.matched.length - this.match.length);
3087
+ return (e.length > 20 ? "..." : "") + e.substr(-20).replace(/\n/g, "");
3088
+ }, "pastInput"),
3089
+ upcomingInput: /* @__PURE__ */ __name(function() {
3090
+ var e = this.match;
3091
+ return e.length < 20 && (e += this._input.substr(0, 20 - e.length)), (e.substr(0, 20) + (e.length > 20 ? "..." : "")).replace(/\n/g, "");
3092
+ }, "upcomingInput"),
3093
+ showPosition: /* @__PURE__ */ __name(function() {
3094
+ var e = this.pastInput(), t = Array(e.length + 1).join("-");
3095
+ return e + this.upcomingInput() + "\n" + t + "^";
3096
+ }, "showPosition"),
3097
+ test_match: /* @__PURE__ */ __name(function(e, t) {
3098
+ var n, r, i;
3099
+ if (this.options.backtrack_lexer && (i = {
3100
+ yylineno: this.yylineno,
3101
+ yylloc: {
3102
+ first_line: this.yylloc.first_line,
3103
+ last_line: this.last_line,
3104
+ first_column: this.yylloc.first_column,
3105
+ last_column: this.yylloc.last_column
3106
+ },
3107
+ yytext: this.yytext,
3108
+ match: this.match,
3109
+ matches: this.matches,
3110
+ matched: this.matched,
3111
+ yyleng: this.yyleng,
3112
+ offset: this.offset,
3113
+ _more: this._more,
3114
+ _input: this._input,
3115
+ yy: this.yy,
3116
+ conditionStack: this.conditionStack.slice(0),
3117
+ done: this.done
3118
+ }, this.options.ranges && (i.yylloc.range = this.yylloc.range.slice(0))), r = e[0].match(/(?:\r\n?|\n).*/g), r && (this.yylineno += r.length), this.yylloc = {
3119
+ first_line: this.yylloc.last_line,
3120
+ last_line: this.yylineno + 1,
3121
+ first_column: this.yylloc.last_column,
3122
+ last_column: r ? r[r.length - 1].length - r[r.length - 1].match(/\r?\n?/)[0].length : this.yylloc.last_column + e[0].length
3123
+ }, this.yytext += e[0], this.match += e[0], this.matches = e, 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(e[0].length), this.matched += e[0], n = this.performAction.call(this, this.yy, this, t, this.conditionStack[this.conditionStack.length - 1]), this.done && this._input && (this.done = !1), n) return n;
3124
+ if (this._backtrack) {
3125
+ for (var a in i) this[a] = i[a];
3126
+ return !1;
3127
+ }
3128
+ return !1;
3129
+ }, "test_match"),
3130
+ next: /* @__PURE__ */ __name(function() {
3131
+ if (this.done) return this.EOF;
3132
+ this._input || (this.done = !0);
3133
+ var e, t, n, r;
3134
+ this._more || (this.yytext = "", this.match = "");
3135
+ for (var i = this._currentRules(), a = 0; a < i.length; a++) if (n = this._input.match(this.rules[i[a]]), n && (!t || n[0].length > t[0].length)) {
3136
+ if (t = n, r = a, this.options.backtrack_lexer) {
3137
+ if (e = this.test_match(n, i[a]), e !== !1) return e;
3138
+ if (this._backtrack) {
3139
+ t = !1;
3140
+ continue;
3141
+ } else return !1;
3142
+ } else if (!this.options.flex) break;
3143
+ }
3144
+ return t ? (e = this.test_match(t, i[r]), e === !1 ? !1 : e) : this._input === "" ? this.EOF : this.parseError("Lexical error on line " + (this.yylineno + 1) + ". Unrecognized text.\n" + this.showPosition(), {
3145
+ text: "",
3146
+ token: null,
3147
+ line: this.yylineno
3148
+ });
3149
+ }, "next"),
3150
+ lex: /* @__PURE__ */ __name(function() {
3151
+ return this.next() || this.lex();
3152
+ }, "lex"),
3153
+ begin: /* @__PURE__ */ __name(function(e) {
3154
+ this.conditionStack.push(e);
3155
+ }, "begin"),
3156
+ popState: /* @__PURE__ */ __name(function() {
3157
+ return this.conditionStack.length - 1 > 0 ? this.conditionStack.pop() : this.conditionStack[0];
3158
+ }, "popState"),
3159
+ _currentRules: /* @__PURE__ */ __name(function() {
3160
+ return this.conditionStack.length && this.conditionStack[this.conditionStack.length - 1] ? this.conditions[this.conditionStack[this.conditionStack.length - 1]].rules : this.conditions.INITIAL.rules;
3161
+ }, "_currentRules"),
3162
+ topState: /* @__PURE__ */ __name(function(e) {
3163
+ return e = this.conditionStack.length - 1 - Math.abs(e || 0), e >= 0 ? this.conditionStack[e] : "INITIAL";
3164
+ }, "topState"),
3165
+ pushState: /* @__PURE__ */ __name(function(e) {
3166
+ this.begin(e);
3167
+ }, "pushState"),
3168
+ stateStackSize: /* @__PURE__ */ __name(function() {
3169
+ return this.conditionStack.length;
3170
+ }, "stateStackSize"),
3171
+ options: {},
3172
+ performAction: /* @__PURE__ */ __name(function(e, t, n, r) {
3173
+ switch (n) {
3174
+ case 0: return this.begin("acc_title"), 34;
3175
+ case 1: return this.popState(), "acc_title_value";
3176
+ case 2: return this.begin("acc_descr"), 36;
3177
+ case 3: return this.popState(), "acc_descr_value";
3178
+ case 4:
3179
+ this.begin("acc_descr_multiline");
3180
+ break;
3181
+ case 5:
3182
+ this.popState();
3183
+ break;
3184
+ case 6: return "acc_descr_multiline_value";
3185
+ case 7: return this.pushState("shapeData"), t.yytext = "", 40;
3186
+ case 8: return this.pushState("shapeDataStr"), 40;
3187
+ case 9: return this.popState(), 40;
3188
+ case 10: return t.yytext = t.yytext.replace(/\n\s*/g, "<br/>"), 40;
3189
+ case 11: return 40;
3190
+ case 12:
3191
+ this.popState();
3192
+ break;
3193
+ case 13:
3194
+ this.begin("callbackname");
3195
+ break;
3196
+ case 14:
3197
+ this.popState();
3198
+ break;
3199
+ case 15:
3200
+ this.popState(), this.begin("callbackargs");
3201
+ break;
3202
+ case 16: return 95;
3203
+ case 17:
3204
+ this.popState();
3205
+ break;
3206
+ case 18: return 96;
3207
+ case 19: return "MD_STR";
3208
+ case 20:
3209
+ this.popState();
3210
+ break;
3211
+ case 21:
3212
+ this.begin("md_string");
3213
+ break;
3214
+ case 22: return "STR";
3215
+ case 23:
3216
+ this.popState();
3217
+ break;
3218
+ case 24:
3219
+ this.pushState("string");
3220
+ break;
3221
+ case 25: return 84;
3222
+ case 26: return 102;
3223
+ case 27: return 85;
3224
+ case 28: return 104;
3225
+ case 29: return 86;
3226
+ case 30: return 87;
3227
+ case 31: return 97;
3228
+ case 32:
3229
+ this.begin("click");
3230
+ break;
3231
+ case 33:
3232
+ this.popState();
3233
+ break;
3234
+ case 34: return 88;
3235
+ case 35: return e.lex.firstGraph() && this.begin("dir"), 12;
3236
+ case 36: return e.lex.firstGraph() && this.begin("dir"), 12;
3237
+ case 37: return e.lex.firstGraph() && this.begin("dir"), 12;
3238
+ case 38: return 27;
3239
+ case 39: return 32;
3240
+ case 40: return 98;
3241
+ case 41: return 98;
3242
+ case 42: return 98;
3243
+ case 43: return 98;
3244
+ case 44: return this.popState(), 13;
3245
+ case 45: return this.popState(), 14;
3246
+ case 46: return this.popState(), 14;
3247
+ case 47: return this.popState(), 14;
3248
+ case 48: return this.popState(), 14;
3249
+ case 49: return this.popState(), 14;
3250
+ case 50: return this.popState(), 14;
3251
+ case 51: return this.popState(), 14;
3252
+ case 52: return this.popState(), 14;
3253
+ case 53: return this.popState(), 14;
3254
+ case 54: return this.popState(), 14;
3255
+ case 55: return 121;
3256
+ case 56: return 122;
3257
+ case 57: return 123;
3258
+ case 58: return 124;
3259
+ case 59: return 78;
3260
+ case 60: return 105;
3261
+ case 61: return 111;
3262
+ case 62: return 46;
3263
+ case 63: return 60;
3264
+ case 64: return 44;
3265
+ case 65: return 8;
3266
+ case 66: return 106;
3267
+ case 67: return 115;
3268
+ case 68: return this.popState(), 77;
3269
+ case 69: return this.pushState("edgeText"), 75;
3270
+ case 70: return 119;
3271
+ case 71: return this.popState(), 77;
3272
+ case 72: return this.pushState("thickEdgeText"), 75;
3273
+ case 73: return 119;
3274
+ case 74: return this.popState(), 77;
3275
+ case 75: return this.pushState("dottedEdgeText"), 75;
3276
+ case 76: return 119;
3277
+ case 77: return 77;
3278
+ case 78: return this.popState(), 53;
3279
+ case 79: return "TEXT";
3280
+ case 80: return this.pushState("ellipseText"), 52;
3281
+ case 81: return this.popState(), 55;
3282
+ case 82: return this.pushState("text"), 54;
3283
+ case 83: return this.popState(), 57;
3284
+ case 84: return this.pushState("text"), 56;
3285
+ case 85: return 58;
3286
+ case 86: return this.pushState("text"), 67;
3287
+ case 87: return this.popState(), 64;
3288
+ case 88: return this.pushState("text"), 63;
3289
+ case 89: return this.popState(), 49;
3290
+ case 90: return this.pushState("text"), 48;
3291
+ case 91: return this.popState(), 69;
3292
+ case 92: return this.popState(), 71;
3293
+ case 93: return 117;
3294
+ case 94: return this.pushState("trapText"), 68;
3295
+ case 95: return this.pushState("trapText"), 70;
3296
+ case 96: return 118;
3297
+ case 97: return 67;
3298
+ case 98: return 90;
3299
+ case 99: return "SEP";
3300
+ case 100: return 89;
3301
+ case 101: return 115;
3302
+ case 102: return 111;
3303
+ case 103: return 44;
3304
+ case 104: return 109;
3305
+ case 105: return 114;
3306
+ case 106: return 116;
3307
+ case 107: return this.popState(), 62;
3308
+ case 108: return this.pushState("text"), 62;
3309
+ case 109: return this.popState(), 51;
3310
+ case 110: return this.pushState("text"), 50;
3311
+ case 111: return this.popState(), 31;
3312
+ case 112: return this.pushState("text"), 29;
3313
+ case 113: return this.popState(), 66;
3314
+ case 114: return this.pushState("text"), 65;
3315
+ case 115: return "TEXT";
3316
+ case 116: return "QUOTE";
3317
+ case 117: return 9;
3318
+ case 118: return 10;
3319
+ case 119: return 11;
3320
+ }
3321
+ }, "anonymous"),
3322
+ rules: [
3323
+ /^(?:accTitle\s*:\s*)/,
3324
+ /^(?:(?!\n||)*[^\n]*)/,
3325
+ /^(?:accDescr\s*:\s*)/,
3326
+ /^(?:(?!\n||)*[^\n]*)/,
3327
+ /^(?:accDescr\s*\{\s*)/,
3328
+ /^(?:[\}])/,
3329
+ /^(?:[^\}]*)/,
3330
+ /^(?:@\{)/,
3331
+ /^(?:["])/,
3332
+ /^(?:["])/,
3333
+ /^(?:[^\"]+)/,
3334
+ /^(?:[^}^"]+)/,
3335
+ /^(?:\})/,
3336
+ /^(?:call[\s]+)/,
3337
+ /^(?:\([\s]*\))/,
3338
+ /^(?:\()/,
3339
+ /^(?:[^(]*)/,
3340
+ /^(?:\))/,
3341
+ /^(?:[^)]*)/,
3342
+ /^(?:[^`"]+)/,
3343
+ /^(?:[`]["])/,
3344
+ /^(?:["][`])/,
3345
+ /^(?:[^"]+)/,
3346
+ /^(?:["])/,
3347
+ /^(?:["])/,
3348
+ /^(?:style\b)/,
3349
+ /^(?:default\b)/,
3350
+ /^(?:linkStyle\b)/,
3351
+ /^(?:interpolate\b)/,
3352
+ /^(?:classDef\b)/,
3353
+ /^(?:class\b)/,
3354
+ /^(?:href[\s])/,
3355
+ /^(?:click[\s]+)/,
3356
+ /^(?:[\s\n])/,
3357
+ /^(?:[^\s\n]*)/,
3358
+ /^(?:flowchart-elk\b)/,
3359
+ /^(?:graph\b)/,
3360
+ /^(?:flowchart\b)/,
3361
+ /^(?:subgraph\b)/,
3362
+ /^(?:end\b\s*)/,
3363
+ /^(?:_self\b)/,
3364
+ /^(?:_blank\b)/,
3365
+ /^(?:_parent\b)/,
3366
+ /^(?:_top\b)/,
3367
+ /^(?:(\r?\n)*\s*\n)/,
3368
+ /^(?:\s*LR\b)/,
3369
+ /^(?:\s*RL\b)/,
3370
+ /^(?:\s*TB\b)/,
3371
+ /^(?:\s*BT\b)/,
3372
+ /^(?:\s*TD\b)/,
3373
+ /^(?:\s*BR\b)/,
3374
+ /^(?:\s*<)/,
3375
+ /^(?:\s*>)/,
3376
+ /^(?:\s*\^)/,
3377
+ /^(?:\s*v\b)/,
3378
+ /^(?:.*direction\s+TB[^\n]*)/,
3379
+ /^(?:.*direction\s+BT[^\n]*)/,
3380
+ /^(?:.*direction\s+RL[^\n]*)/,
3381
+ /^(?:.*direction\s+LR[^\n]*)/,
3382
+ /^(?:[^\s\"]+@(?=[^\{\"]))/,
3383
+ /^(?:[0-9]+)/,
3384
+ /^(?:#)/,
3385
+ /^(?::::)/,
3386
+ /^(?::)/,
3387
+ /^(?:&)/,
3388
+ /^(?:;)/,
3389
+ /^(?:,)/,
3390
+ /^(?:\*)/,
3391
+ /^(?:\s*[xo<]?--+[-xo>]\s*)/,
3392
+ /^(?:\s*[xo<]?--\s*)/,
3393
+ /^(?:[^-]|-(?!-)+)/,
3394
+ /^(?:\s*[xo<]?==+[=xo>]\s*)/,
3395
+ /^(?:\s*[xo<]?==\s*)/,
3396
+ /^(?:[^=]|=(?!))/,
3397
+ /^(?:\s*[xo<]?-?\.+-[xo>]?\s*)/,
3398
+ /^(?:\s*[xo<]?-\.\s*)/,
3399
+ /^(?:[^\.]|\.(?!))/,
3400
+ /^(?:\s*~~[\~]+\s*)/,
3401
+ /^(?:[-/\)][\)])/,
3402
+ /^(?:[^\(\)\[\]\{\}]|!\)+)/,
3403
+ /^(?:\(-)/,
3404
+ /^(?:\]\))/,
3405
+ /^(?:\(\[)/,
3406
+ /^(?:\]\])/,
3407
+ /^(?:\[\[)/,
3408
+ /^(?:\[\|)/,
3409
+ /^(?:>)/,
3410
+ /^(?:\)\])/,
3411
+ /^(?:\[\()/,
3412
+ /^(?:\)\)\))/,
3413
+ /^(?:\(\(\()/,
3414
+ /^(?:[\\(?=\])][\]])/,
3415
+ /^(?:\/(?=\])\])/,
3416
+ /^(?:\/(?!\])|\\(?!\])|[^\\\[\]\(\)\{\}\/]+)/,
3417
+ /^(?:\[\/)/,
3418
+ /^(?:\[\\)/,
3419
+ /^(?:<)/,
3420
+ /^(?:>)/,
3421
+ /^(?:\^)/,
3422
+ /^(?:\\\|)/,
3423
+ /^(?:v\b)/,
3424
+ /^(?:\*)/,
3425
+ /^(?:#)/,
3426
+ /^(?:&)/,
3427
+ /^(?:([A-Za-z0-9!"\#$%&'*+\.`?\\_\/]|-(?=[^\>\-\.])|(?!))+)/,
3428
+ /^(?:-)/,
3429
+ /^(?:[\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])/,
3430
+ /^(?:\|)/,
3431
+ /^(?:\|)/,
3432
+ /^(?:\))/,
3433
+ /^(?:\()/,
3434
+ /^(?:\])/,
3435
+ /^(?:\[)/,
3436
+ /^(?:(\}))/,
3437
+ /^(?:\{)/,
3438
+ /^(?:[^\[\]\(\)\{\}\|\"]+)/,
3439
+ /^(?:")/,
3440
+ /^(?:(\r?\n)+)/,
3441
+ /^(?:\s)/,
3442
+ /^(?:$)/
3443
+ ],
3444
+ conditions: {
3445
+ shapeDataEndBracket: {
3446
+ rules: [
3447
+ 21,
3448
+ 24,
3449
+ 77,
3450
+ 80,
3451
+ 82,
3452
+ 84,
3453
+ 88,
3454
+ 90,
3455
+ 94,
3456
+ 95,
3457
+ 108,
3458
+ 110,
3459
+ 112,
3460
+ 114
3461
+ ],
3462
+ inclusive: !1
3463
+ },
3464
+ shapeDataStr: {
3465
+ rules: [
3466
+ 9,
3467
+ 10,
3468
+ 21,
3469
+ 24,
3470
+ 77,
3471
+ 80,
3472
+ 82,
3473
+ 84,
3474
+ 88,
3475
+ 90,
3476
+ 94,
3477
+ 95,
3478
+ 108,
3479
+ 110,
3480
+ 112,
3481
+ 114
3482
+ ],
3483
+ inclusive: !1
3484
+ },
3485
+ shapeData: {
3486
+ rules: [
3487
+ 8,
3488
+ 11,
3489
+ 12,
3490
+ 21,
3491
+ 24,
3492
+ 77,
3493
+ 80,
3494
+ 82,
3495
+ 84,
3496
+ 88,
3497
+ 90,
3498
+ 94,
3499
+ 95,
3500
+ 108,
3501
+ 110,
3502
+ 112,
3503
+ 114
3504
+ ],
3505
+ inclusive: !1
3506
+ },
3507
+ callbackargs: {
3508
+ rules: [
3509
+ 17,
3510
+ 18,
3511
+ 21,
3512
+ 24,
3513
+ 77,
3514
+ 80,
3515
+ 82,
3516
+ 84,
3517
+ 88,
3518
+ 90,
3519
+ 94,
3520
+ 95,
3521
+ 108,
3522
+ 110,
3523
+ 112,
3524
+ 114
3525
+ ],
3526
+ inclusive: !1
3527
+ },
3528
+ callbackname: {
3529
+ rules: [
3530
+ 14,
3531
+ 15,
3532
+ 16,
3533
+ 21,
3534
+ 24,
3535
+ 77,
3536
+ 80,
3537
+ 82,
3538
+ 84,
3539
+ 88,
3540
+ 90,
3541
+ 94,
3542
+ 95,
3543
+ 108,
3544
+ 110,
3545
+ 112,
3546
+ 114
3547
+ ],
3548
+ inclusive: !1
3549
+ },
3550
+ href: {
3551
+ rules: [
3552
+ 21,
3553
+ 24,
3554
+ 77,
3555
+ 80,
3556
+ 82,
3557
+ 84,
3558
+ 88,
3559
+ 90,
3560
+ 94,
3561
+ 95,
3562
+ 108,
3563
+ 110,
3564
+ 112,
3565
+ 114
3566
+ ],
3567
+ inclusive: !1
3568
+ },
3569
+ click: {
3570
+ rules: [
3571
+ 21,
3572
+ 24,
3573
+ 33,
3574
+ 34,
3575
+ 77,
3576
+ 80,
3577
+ 82,
3578
+ 84,
3579
+ 88,
3580
+ 90,
3581
+ 94,
3582
+ 95,
3583
+ 108,
3584
+ 110,
3585
+ 112,
3586
+ 114
3587
+ ],
3588
+ inclusive: !1
3589
+ },
3590
+ dottedEdgeText: {
3591
+ rules: [
3592
+ 21,
3593
+ 24,
3594
+ 74,
3595
+ 76,
3596
+ 77,
3597
+ 80,
3598
+ 82,
3599
+ 84,
3600
+ 88,
3601
+ 90,
3602
+ 94,
3603
+ 95,
3604
+ 108,
3605
+ 110,
3606
+ 112,
3607
+ 114
3608
+ ],
3609
+ inclusive: !1
3610
+ },
3611
+ thickEdgeText: {
3612
+ rules: [
3613
+ 21,
3614
+ 24,
3615
+ 71,
3616
+ 73,
3617
+ 77,
3618
+ 80,
3619
+ 82,
3620
+ 84,
3621
+ 88,
3622
+ 90,
3623
+ 94,
3624
+ 95,
3625
+ 108,
3626
+ 110,
3627
+ 112,
3628
+ 114
3629
+ ],
3630
+ inclusive: !1
3631
+ },
3632
+ edgeText: {
3633
+ rules: [
3634
+ 21,
3635
+ 24,
3636
+ 68,
3637
+ 70,
3638
+ 77,
3639
+ 80,
3640
+ 82,
3641
+ 84,
3642
+ 88,
3643
+ 90,
3644
+ 94,
3645
+ 95,
3646
+ 108,
3647
+ 110,
3648
+ 112,
3649
+ 114
3650
+ ],
3651
+ inclusive: !1
3652
+ },
3653
+ trapText: {
3654
+ rules: [
3655
+ 21,
3656
+ 24,
3657
+ 77,
3658
+ 80,
3659
+ 82,
3660
+ 84,
3661
+ 88,
3662
+ 90,
3663
+ 91,
3664
+ 92,
3665
+ 93,
3666
+ 94,
3667
+ 95,
3668
+ 108,
3669
+ 110,
3670
+ 112,
3671
+ 114
3672
+ ],
3673
+ inclusive: !1
3674
+ },
3675
+ ellipseText: {
3676
+ rules: [
3677
+ 21,
3678
+ 24,
3679
+ 77,
3680
+ 78,
3681
+ 79,
3682
+ 80,
3683
+ 82,
3684
+ 84,
3685
+ 88,
3686
+ 90,
3687
+ 94,
3688
+ 95,
3689
+ 108,
3690
+ 110,
3691
+ 112,
3692
+ 114
3693
+ ],
3694
+ inclusive: !1
3695
+ },
3696
+ text: {
3697
+ rules: [
3698
+ 21,
3699
+ 24,
3700
+ 77,
3701
+ 80,
3702
+ 81,
3703
+ 82,
3704
+ 83,
3705
+ 84,
3706
+ 87,
3707
+ 88,
3708
+ 89,
3709
+ 90,
3710
+ 94,
3711
+ 95,
3712
+ 107,
3713
+ 108,
3714
+ 109,
3715
+ 110,
3716
+ 111,
3717
+ 112,
3718
+ 113,
3719
+ 114,
3720
+ 115
3721
+ ],
3722
+ inclusive: !1
3723
+ },
3724
+ vertex: {
3725
+ rules: [
3726
+ 21,
3727
+ 24,
3728
+ 77,
3729
+ 80,
3730
+ 82,
3731
+ 84,
3732
+ 88,
3733
+ 90,
3734
+ 94,
3735
+ 95,
3736
+ 108,
3737
+ 110,
3738
+ 112,
3739
+ 114
3740
+ ],
3741
+ inclusive: !1
3742
+ },
3743
+ dir: {
3744
+ rules: [
3745
+ 21,
3746
+ 24,
3747
+ 44,
3748
+ 45,
3749
+ 46,
3750
+ 47,
3751
+ 48,
3752
+ 49,
3753
+ 50,
3754
+ 51,
3755
+ 52,
3756
+ 53,
3757
+ 54,
3758
+ 77,
3759
+ 80,
3760
+ 82,
3761
+ 84,
3762
+ 88,
3763
+ 90,
3764
+ 94,
3765
+ 95,
3766
+ 108,
3767
+ 110,
3768
+ 112,
3769
+ 114
3770
+ ],
3771
+ inclusive: !1
3772
+ },
3773
+ acc_descr_multiline: {
3774
+ rules: [
3775
+ 5,
3776
+ 6,
3777
+ 21,
3778
+ 24,
3779
+ 77,
3780
+ 80,
3781
+ 82,
3782
+ 84,
3783
+ 88,
3784
+ 90,
3785
+ 94,
3786
+ 95,
3787
+ 108,
3788
+ 110,
3789
+ 112,
3790
+ 114
3791
+ ],
3792
+ inclusive: !1
3793
+ },
3794
+ acc_descr: {
3795
+ rules: [
3796
+ 3,
3797
+ 21,
3798
+ 24,
3799
+ 77,
3800
+ 80,
3801
+ 82,
3802
+ 84,
3803
+ 88,
3804
+ 90,
3805
+ 94,
3806
+ 95,
3807
+ 108,
3808
+ 110,
3809
+ 112,
3810
+ 114
3811
+ ],
3812
+ inclusive: !1
3813
+ },
3814
+ acc_title: {
3815
+ rules: [
3816
+ 1,
3817
+ 21,
3818
+ 24,
3819
+ 77,
3820
+ 80,
3821
+ 82,
3822
+ 84,
3823
+ 88,
3824
+ 90,
3825
+ 94,
3826
+ 95,
3827
+ 108,
3828
+ 110,
3829
+ 112,
3830
+ 114
3831
+ ],
3832
+ inclusive: !1
3833
+ },
3834
+ md_string: {
3835
+ rules: [
3836
+ 19,
3837
+ 20,
3838
+ 21,
3839
+ 24,
3840
+ 77,
3841
+ 80,
3842
+ 82,
3843
+ 84,
3844
+ 88,
3845
+ 90,
3846
+ 94,
3847
+ 95,
3848
+ 108,
3849
+ 110,
3850
+ 112,
3851
+ 114
3852
+ ],
3853
+ inclusive: !1
3854
+ },
3855
+ string: {
3856
+ rules: [
3857
+ 21,
3858
+ 22,
3859
+ 23,
3860
+ 24,
3861
+ 77,
3862
+ 80,
3863
+ 82,
3864
+ 84,
3865
+ 88,
3866
+ 90,
3867
+ 94,
3868
+ 95,
3869
+ 108,
3870
+ 110,
3871
+ 112,
3872
+ 114
3873
+ ],
3874
+ inclusive: !1
3875
+ },
3876
+ INITIAL: {
3877
+ rules: [
3878
+ 0,
3879
+ 2,
3880
+ 4,
3881
+ 7,
3882
+ 13,
3883
+ 21,
3884
+ 24,
3885
+ 25,
3886
+ 26,
3887
+ 27,
3888
+ 28,
3889
+ 29,
3890
+ 30,
3891
+ 31,
3892
+ 32,
3893
+ 35,
3894
+ 36,
3895
+ 37,
3896
+ 38,
3897
+ 39,
3898
+ 40,
3899
+ 41,
3900
+ 42,
3901
+ 43,
3902
+ 55,
3903
+ 56,
3904
+ 57,
3905
+ 58,
3906
+ 59,
3907
+ 60,
3908
+ 61,
3909
+ 62,
3910
+ 63,
3911
+ 64,
3912
+ 65,
3913
+ 66,
3914
+ 67,
3915
+ 68,
3916
+ 69,
3917
+ 71,
3918
+ 72,
3919
+ 74,
3920
+ 75,
3921
+ 77,
3922
+ 80,
3923
+ 82,
3924
+ 84,
3925
+ 85,
3926
+ 86,
3927
+ 88,
3928
+ 90,
3929
+ 94,
3930
+ 95,
3931
+ 96,
3932
+ 97,
3933
+ 98,
3934
+ 99,
3935
+ 100,
3936
+ 101,
3937
+ 102,
3938
+ 103,
3939
+ 104,
3940
+ 105,
3941
+ 106,
3942
+ 108,
3943
+ 110,
3944
+ 112,
3945
+ 114,
3946
+ 116,
3947
+ 117,
3948
+ 118,
3949
+ 119
3950
+ ],
3951
+ inclusive: !0
3952
+ }
3953
+ }
3954
+ };
3955
+ })();
3956
+ function rt() {
3957
+ this.yy = {};
3958
+ }
3959
+ return __name(rt, "Parser"), rt.prototype = nt, nt.Parser = rt, new rt();
3960
+ })();
3961
+ parser.parser = parser;
3962
+ var flow_default = parser, newParser = Object.assign({}, flow_default);
3963
+ newParser.parse = (e) => {
3964
+ let t = e.replace(/}\s*\n/g, "}\n");
3965
+ return flow_default.parse(t);
3966
+ };
3967
+ var flowParser_default = newParser, fade = /* @__PURE__ */ __name((e, t) => {
3968
+ let i = channel_default;
3969
+ return rgba_default(i(e, "r"), i(e, "g"), i(e, "b"), t);
3970
+ }, "fade"), diagram = {
3971
+ parser: flowParser_default,
3972
+ get db() {
3973
+ return new FlowDB();
3974
+ },
3975
+ renderer: flowRenderer_v3_unified_default,
3976
+ styles: /* @__PURE__ */ __name((e) => `.label {
3977
+ font-family: ${e.fontFamily};
3978
+ color: ${e.nodeTextColor || e.textColor};
3979
+ }
3980
+ .cluster-label text {
3981
+ fill: ${e.titleColor};
3982
+ }
3983
+ .cluster-label span {
3984
+ color: ${e.titleColor};
3985
+ }
3986
+ .cluster-label span p {
3987
+ background-color: transparent;
3988
+ }
3989
+
3990
+ .label text,span {
3991
+ fill: ${e.nodeTextColor || e.textColor};
3992
+ color: ${e.nodeTextColor || e.textColor};
3993
+ }
3994
+
3995
+ .node rect,
3996
+ .node circle,
3997
+ .node ellipse,
3998
+ .node polygon,
3999
+ .node path {
4000
+ fill: ${e.mainBkg};
4001
+ stroke: ${e.nodeBorder};
4002
+ stroke-width: 1px;
4003
+ }
4004
+ .rough-node .label text , .node .label text, .image-shape .label, .icon-shape .label {
4005
+ text-anchor: middle;
4006
+ }
4007
+ // .flowchart-label .text-outer-tspan {
4008
+ // text-anchor: middle;
4009
+ // }
4010
+ // .flowchart-label .text-inner-tspan {
4011
+ // text-anchor: start;
4012
+ // }
4013
+
4014
+ .node .katex path {
4015
+ fill: #000;
4016
+ stroke: #000;
4017
+ stroke-width: 1px;
4018
+ }
4019
+
4020
+ .rough-node .label,.node .label, .image-shape .label, .icon-shape .label {
4021
+ text-align: center;
4022
+ }
4023
+ .node.clickable {
4024
+ cursor: pointer;
4025
+ }
4026
+
4027
+
4028
+ .root .anchor path {
4029
+ fill: ${e.lineColor} !important;
4030
+ stroke-width: 0;
4031
+ stroke: ${e.lineColor};
4032
+ }
4033
+
4034
+ .arrowheadPath {
4035
+ fill: ${e.arrowheadColor};
4036
+ }
4037
+
4038
+ .edgePath .path {
4039
+ stroke: ${e.lineColor};
4040
+ stroke-width: 2.0px;
4041
+ }
4042
+
4043
+ .flowchart-link {
4044
+ stroke: ${e.lineColor};
4045
+ fill: none;
4046
+ }
4047
+
4048
+ .edgeLabel {
4049
+ background-color: ${e.edgeLabelBackground};
4050
+ p {
4051
+ background-color: ${e.edgeLabelBackground};
4052
+ }
4053
+ rect {
4054
+ opacity: 0.5;
4055
+ background-color: ${e.edgeLabelBackground};
4056
+ fill: ${e.edgeLabelBackground};
4057
+ }
4058
+ text-align: center;
4059
+ }
4060
+
4061
+ /* For html labels only */
4062
+ .labelBkg {
4063
+ background-color: ${fade(e.edgeLabelBackground, .5)};
4064
+ // background-color:
4065
+ }
4066
+
4067
+ .cluster rect {
4068
+ fill: ${e.clusterBkg};
4069
+ stroke: ${e.clusterBorder};
4070
+ stroke-width: 1px;
4071
+ }
4072
+
4073
+ .cluster text {
4074
+ fill: ${e.titleColor};
4075
+ }
4076
+
4077
+ .cluster span {
4078
+ color: ${e.titleColor};
4079
+ }
4080
+ /* .cluster div {
4081
+ color: ${e.titleColor};
4082
+ } */
4083
+
4084
+ div.mermaidTooltip {
4085
+ position: absolute;
4086
+ text-align: center;
4087
+ max-width: 200px;
4088
+ padding: 2px;
4089
+ font-family: ${e.fontFamily};
4090
+ font-size: 12px;
4091
+ background: ${e.tertiaryColor};
4092
+ border: 1px solid ${e.border2};
4093
+ border-radius: 2px;
4094
+ pointer-events: none;
4095
+ z-index: 100;
4096
+ }
4097
+
4098
+ .flowchartTitleText {
4099
+ text-anchor: middle;
4100
+ font-size: 18px;
4101
+ fill: ${e.textColor};
4102
+ }
4103
+
4104
+ rect.text {
4105
+ fill: none;
4106
+ stroke-width: 0;
4107
+ }
4108
+
4109
+ .icon-shape, .image-shape {
4110
+ background-color: ${e.edgeLabelBackground};
4111
+ p {
4112
+ background-color: ${e.edgeLabelBackground};
4113
+ padding: 2px;
4114
+ }
4115
+ rect {
4116
+ opacity: 0.5;
4117
+ background-color: ${e.edgeLabelBackground};
4118
+ fill: ${e.edgeLabelBackground};
4119
+ }
4120
+ text-align: center;
4121
+ }
4122
+ ${getIconStyles()}
4123
+ `, "getStyles"),
4124
+ init: /* @__PURE__ */ __name((e) => {
4125
+ e.flowchart ||= {}, e.layout && setConfig2({ layout: e.layout }), e.flowchart.arrowMarkerAbsolute = e.arrowMarkerAbsolute, setConfig2({ flowchart: { arrowMarkerAbsolute: e.arrowMarkerAbsolute } });
4126
+ }, "init")
4127
+ };
4128
+ export { diagram };