@cccsaurora/howler-ui 2.14.0-dev.259 → 2.14.0-dev.264

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 (1102) hide show
  1. package/api/action/execute.ts +19 -0
  2. package/api/action/index.ts +36 -0
  3. package/api/action/operations.ts +11 -0
  4. package/api/analytic/comments/index.ts +27 -0
  5. package/api/analytic/comments/react.ts +14 -0
  6. package/api/analytic/favourite.ts +14 -0
  7. package/api/analytic/index.ts +27 -0
  8. package/api/analytic/notebooks/index.ts +15 -0
  9. package/api/analytic/owner.ts +11 -0
  10. package/api/analytic/rules.ts +13 -0
  11. package/api/auth/apikey.ts +20 -0
  12. package/api/auth/index.ts +9 -0
  13. package/api/auth/login.ts +35 -0
  14. package/api/configs/index.ts +10 -0
  15. package/api/dossier/hit.ts +10 -0
  16. package/api/dossier/index.ts +26 -0
  17. package/api/help.ts +71 -0
  18. package/api/hit/assign.ts +11 -0
  19. package/api/hit/comments/index.ts +27 -0
  20. package/api/hit/comments/react.ts +15 -0
  21. package/api/hit/index.ts +56 -0
  22. package/api/hit/labels.ts +16 -0
  23. package/api/hit/overwrite.ts +11 -0
  24. package/api/hit/transition.ts +12 -0
  25. package/api/index.ts +301 -0
  26. package/api/notebook/environments.ts +14 -0
  27. package/api/notebook/index.ts +20 -0
  28. package/api/overview/index.ts +22 -0
  29. package/api/search/action.ts +12 -0
  30. package/api/search/analytic.ts +12 -0
  31. package/api/search/count/hit.ts +11 -0
  32. package/api/search/count/index.ts +18 -0
  33. package/api/search/dossier.ts +12 -0
  34. package/api/search/eql/hit.ts +12 -0
  35. package/api/search/facet/hit.ts +11 -0
  36. package/api/search/facet/index.ts +19 -0
  37. package/api/search/fields/hit.ts +12 -0
  38. package/api/search/fields/index.ts +29 -0
  39. package/api/search/fields/user.ts +14 -0
  40. package/api/search/grouped/hit.ts +15 -0
  41. package/api/search/grouped/index.ts +34 -0
  42. package/api/search/grouped/user.ts +30 -0
  43. package/api/search/histogram/hit.ts +11 -0
  44. package/api/search/histogram/index.ts +20 -0
  45. package/api/search/hit.ts +17 -0
  46. package/api/search/index.ts +63 -0
  47. package/api/search/overview.ts +12 -0
  48. package/api/search/sigma/hit.ts +12 -0
  49. package/api/search/template.ts +12 -0
  50. package/api/search/user.ts +21 -0
  51. package/api/search/view.ts +12 -0
  52. package/api/template/index.ts +22 -0
  53. package/api/user/avatar/index.ts +10 -0
  54. package/api/user/groups.ts +12 -0
  55. package/api/user/index.ts +20 -0
  56. package/api/user/whoami.ts +11 -0
  57. package/api/view/favourite.ts +14 -0
  58. package/api/view/index.ts +25 -0
  59. package/branding/AppBrand.tsx +161 -0
  60. package/commons/components/app/AppConfigs.ts +179 -0
  61. package/commons/components/app/AppConstants.ts +11 -0
  62. package/commons/components/app/AppContexts.ts +142 -0
  63. package/commons/components/app/AppDefaults.ts +52 -0
  64. package/commons/components/app/AppNotificationService.ts +7 -0
  65. package/commons/components/app/AppProvider.tsx +86 -0
  66. package/commons/components/app/AppSearchService.ts +33 -0
  67. package/commons/components/app/AppSkeleton.tsx +321 -0
  68. package/commons/components/app/AppUserService.ts +21 -0
  69. package/commons/components/app/hooks/index.ts +18 -0
  70. package/commons/components/app/hooks/useApp.tsx +6 -0
  71. package/commons/components/app/hooks/useAppBanner.tsx +7 -0
  72. package/commons/components/app/hooks/useAppBar.tsx +6 -0
  73. package/commons/components/app/hooks/useAppBarHeight.tsx +27 -0
  74. package/commons/components/app/hooks/useAppBarScrollTrigger.tsx +8 -0
  75. package/commons/components/app/hooks/useAppBreadcrumbs.tsx +6 -0
  76. package/commons/components/app/hooks/useAppConfigs.tsx +54 -0
  77. package/commons/components/app/hooks/useAppLanguage.tsx +29 -0
  78. package/commons/components/app/hooks/useAppLayout.tsx +6 -0
  79. package/commons/components/app/hooks/useAppLeftNav.tsx +6 -0
  80. package/commons/components/app/hooks/useAppLogo.tsx +9 -0
  81. package/commons/components/app/hooks/useAppNotification.tsx +6 -0
  82. package/commons/components/app/hooks/useAppQuickSearch.tsx +6 -0
  83. package/commons/components/app/hooks/useAppSearchService.tsx +7 -0
  84. package/commons/components/app/hooks/useAppSitemap.tsx +84 -0
  85. package/commons/components/app/hooks/useAppSwitcher.tsx +6 -0
  86. package/commons/components/app/hooks/useAppTheme.tsx +23 -0
  87. package/commons/components/app/hooks/useAppUser.tsx +7 -0
  88. package/commons/components/app/providers/AppBarProvider.tsx +48 -0
  89. package/commons/components/app/providers/AppBreadcrumbsProvider.tsx +53 -0
  90. package/commons/components/app/providers/AppLayoutProvider.tsx +114 -0
  91. package/commons/components/app/providers/AppLeftNavProvider.tsx +30 -0
  92. package/commons/components/app/providers/AppNotificationProvider.tsx +49 -0
  93. package/commons/components/app/providers/AppQuickSearchProvider.tsx +32 -0
  94. package/commons/components/app/providers/AppSearchServiceProvider.tsx +65 -0
  95. package/commons/components/app/providers/AppSnackbarProvider.tsx +16 -0
  96. package/commons/components/app/providers/AppSwitcherProvider.tsx +16 -0
  97. package/commons/components/app/providers/AppUserProvider.tsx +22 -0
  98. package/commons/components/breadcrumbs/BreadcrumbIcon.tsx +21 -0
  99. package/commons/components/breadcrumbs/BreadcrumbLastItem.tsx +40 -0
  100. package/commons/components/breadcrumbs/BreadcrumbLinkItem.tsx +43 -0
  101. package/commons/components/breadcrumbs/BreadcrumbList.tsx +87 -0
  102. package/commons/components/breadcrumbs/Breadcrumbs.tsx +40 -0
  103. package/commons/components/display/AppAvatar.tsx +34 -0
  104. package/commons/components/display/AppInfoPanel.tsx +30 -0
  105. package/commons/components/display/AppListEmpty.tsx +5 -0
  106. package/commons/components/display/AppToc.tsx +160 -0
  107. package/commons/components/display/hooks/useAppColor.tsx +21 -0
  108. package/commons/components/leftnav/LeftNavDrawer.tsx +172 -0
  109. package/commons/components/leftnav/LeftNavGroup.tsx +144 -0
  110. package/commons/components/leftnav/LeftNavItem.tsx +73 -0
  111. package/commons/components/notification/FeedModels.ts +163 -0
  112. package/commons/components/notification/Notification.tsx +152 -0
  113. package/commons/components/notification/elements/NotificationCloseButton.tsx +14 -0
  114. package/commons/components/notification/elements/NotificationContainer.tsx +87 -0
  115. package/commons/components/notification/elements/NotificationEndOfPage.tsx +48 -0
  116. package/commons/components/notification/elements/NotificationError.tsx +24 -0
  117. package/commons/components/notification/elements/NotificationHeader.tsx +41 -0
  118. package/commons/components/notification/elements/NotificationItems.tsx +47 -0
  119. package/commons/components/notification/elements/NotificationSkeleton.tsx +59 -0
  120. package/commons/components/notification/elements/NotificationTopNavButton.tsx +27 -0
  121. package/commons/components/notification/elements/item/NotificationItem.tsx +44 -0
  122. package/commons/components/notification/elements/item/NotificationItemAuthor.tsx +72 -0
  123. package/commons/components/notification/elements/item/NotificationItemContent.tsx +29 -0
  124. package/commons/components/notification/elements/item/NotificationItemDate.tsx +14 -0
  125. package/commons/components/notification/elements/item/NotificationItemImage.tsx +19 -0
  126. package/commons/components/notification/elements/item/NotificationItemTag.tsx +18 -0
  127. package/commons/components/notification/elements/item/NotificationItemTitle.tsx +38 -0
  128. package/commons/components/notification/index.tsx +2 -0
  129. package/commons/components/pages/PageCardCentered.tsx +32 -0
  130. package/commons/components/pages/PageCenter.tsx +46 -0
  131. package/commons/components/pages/PageContent.tsx +13 -0
  132. package/commons/components/pages/PageFullScreen.tsx +74 -0
  133. package/commons/components/pages/PageFullWidth.tsx +30 -0
  134. package/commons/components/pages/PageHeader.tsx +117 -0
  135. package/commons/components/pages/hooks/usePageProps.tsx +41 -0
  136. package/commons/components/search/AppSearch.tsx +256 -0
  137. package/commons/components/search/AppSearchInput.tsx +104 -0
  138. package/commons/components/search/AppSearchResult.tsx +66 -0
  139. package/commons/components/topnav/AppBar.tsx +137 -0
  140. package/commons/components/topnav/AppName.tsx +53 -0
  141. package/commons/components/topnav/AppSwitcher.tsx +116 -0
  142. package/commons/components/topnav/Notifications.tsx +16 -0
  143. package/commons/components/topnav/ThemeSelection.tsx +143 -0
  144. package/commons/components/topnav/ThemeSelectionIcon.tsx +39 -0
  145. package/commons/components/topnav/UserProfile.tsx +196 -0
  146. package/commons/components/utils/hooks/useClipboard.tsx +31 -0
  147. package/commons/components/utils/hooks/useEnv.tsx +13 -0
  148. package/commons/components/utils/hooks/useFullscreenStatus.tsx +47 -0
  149. package/commons/components/utils/hooks/useGravatar.tsx +13 -0
  150. package/commons/components/utils/hooks/useLocalStorage.ts +75 -0
  151. package/commons/components/utils/hooks/useLocalStorageItem.tsx +45 -0
  152. package/commons/components/utils/hooks/useThemeBuilder.tsx +55 -0
  153. package/commons/components/utils/keyboard.ts +61 -0
  154. package/components/app/App.tsx +434 -0
  155. package/components/app/AppContainer.tsx +19 -0
  156. package/components/app/drawers/ApiKeyDrawer.tsx +173 -0
  157. package/components/app/drawers/AppDrawerType.ts +7 -0
  158. package/components/app/drawers/AssignUserDrawer.tsx +126 -0
  159. package/components/app/drawers/ViewGroupsDrawer.tsx +24 -0
  160. package/components/app/hooks/useMatchers.test.ts +328 -0
  161. package/components/app/hooks/useMatchers.tsx +107 -0
  162. package/components/app/hooks/useTitle.tsx +77 -0
  163. package/components/app/providers/AnalyticProvider.tsx +87 -0
  164. package/components/app/providers/ApiConfigProvider.tsx +31 -0
  165. package/components/app/providers/AppDrawerProvider.tsx +54 -0
  166. package/components/app/providers/AvatarProvider.tsx +47 -0
  167. package/components/app/providers/CustomPluginProvider.tsx +19 -0
  168. package/components/app/providers/FavouritesProvider.tsx +157 -0
  169. package/components/app/providers/FieldProvider.tsx +34 -0
  170. package/components/app/providers/HitProvider.tsx +164 -0
  171. package/components/app/providers/HitSearchProvider.tsx +248 -0
  172. package/components/app/providers/LocalStorageProvider.tsx +67 -0
  173. package/components/app/providers/ModalProvider.tsx +57 -0
  174. package/components/app/providers/OverviewProvider.tsx +90 -0
  175. package/components/app/providers/ParameterProvider.tsx +270 -0
  176. package/components/app/providers/SocketProvider.tsx +329 -0
  177. package/components/app/providers/UserListProvider.tsx +56 -0
  178. package/components/app/providers/ViewProvider.test.tsx +244 -0
  179. package/components/app/providers/ViewProvider.tsx +207 -0
  180. package/components/elements/Comment.tsx +315 -0
  181. package/components/elements/EditRow.tsx +268 -0
  182. package/components/elements/PluginChip.tsx +32 -0
  183. package/components/elements/PluginTypography.tsx +31 -0
  184. package/components/elements/ThemedEditor.tsx +130 -0
  185. package/components/elements/UserList.tsx +79 -0
  186. package/components/elements/addons/buttons/CustomButton.tsx +93 -0
  187. package/components/elements/addons/buttons/CustomIconButton.tsx +122 -0
  188. package/components/elements/addons/buttons/index.ts +7 -0
  189. package/components/elements/addons/layout/FlexOne.tsx +6 -0
  190. package/components/elements/addons/layout/FlexPort.tsx +39 -0
  191. package/components/elements/addons/layout/FlexVertical.tsx +28 -0
  192. package/components/elements/addons/layout/vsbox/VSBox.tsx +52 -0
  193. package/components/elements/addons/layout/vsbox/VSBoxContent.tsx +13 -0
  194. package/components/elements/addons/layout/vsbox/VSBoxElement.tsx +60 -0
  195. package/components/elements/addons/layout/vsbox/VSBoxHeader.tsx +41 -0
  196. package/components/elements/addons/lists/TuiList.tsx +31 -0
  197. package/components/elements/addons/lists/TuiListBase.tsx +98 -0
  198. package/components/elements/addons/lists/TuiListElement.tsx +51 -0
  199. package/components/elements/addons/lists/TuiListMenu.tsx +61 -0
  200. package/components/elements/addons/lists/TuiListProvider.tsx +162 -0
  201. package/components/elements/addons/lists/hooks/useTuiListKeyboard.tsx +60 -0
  202. package/components/elements/addons/lists/index.tsx +25 -0
  203. package/components/elements/addons/lists/table/TuiTable.tsx +151 -0
  204. package/components/elements/addons/lists/table/TuiTableBody.tsx +77 -0
  205. package/components/elements/addons/lists/table/TuiTableHead.tsx +29 -0
  206. package/components/elements/addons/lists/table/TuiTableHeader.tsx +15 -0
  207. package/components/elements/addons/lists/table/TuiTableLayout.ts +53 -0
  208. package/components/elements/addons/lists/table/index.tsx +24 -0
  209. package/components/elements/addons/search/SearchPagination.tsx +26 -0
  210. package/components/elements/addons/search/SearchTotal.tsx +35 -0
  211. package/components/elements/addons/search/phrase/Phrase.tsx +175 -0
  212. package/components/elements/addons/search/phrase/PhraseConsumer.ts +35 -0
  213. package/components/elements/addons/search/phrase/PhraseLexer.ts +167 -0
  214. package/components/elements/addons/search/phrase/index.ts +86 -0
  215. package/components/elements/addons/search/phrase/word/WordLexer.ts +10 -0
  216. package/components/elements/addons/search/phrase/word/WordSuggester.ts +9 -0
  217. package/components/elements/addons/search/phrase/word/consumers/WhitespaceConsumer.ts +21 -0
  218. package/components/elements/addons/search/phrase/word/consumers/WordConsumer.ts +21 -0
  219. package/components/elements/display/ActionButton.tsx +40 -0
  220. package/components/elements/display/Classification.tsx +29 -0
  221. package/components/elements/display/DocumentationButton.tsx +46 -0
  222. package/components/elements/display/DynamicTabs.tsx +52 -0
  223. package/components/elements/display/HandlebarsMarkdown.tsx +105 -0
  224. package/components/elements/display/HowlerAvatar.tsx +66 -0
  225. package/components/elements/display/HowlerAvatarHeader.tsx +37 -0
  226. package/components/elements/display/HowlerCard.tsx +10 -0
  227. package/components/elements/display/Image.tsx +43 -0
  228. package/components/elements/display/ItemManager.tsx +146 -0
  229. package/components/elements/display/Markdown.tsx +200 -0
  230. package/components/elements/display/Modal.tsx +44 -0
  231. package/components/elements/display/Notebook.tsx +7 -0
  232. package/components/elements/display/QueryResultText.tsx +25 -0
  233. package/components/elements/display/TextDivider.tsx +48 -0
  234. package/components/elements/display/TypingIndicator.tsx +41 -0
  235. package/components/elements/display/UserPageWrapper.tsx +20 -0
  236. package/components/elements/display/features/DevelopmentBanner.tsx +24 -0
  237. package/components/elements/display/features/DevelopmentIcon.tsx +24 -0
  238. package/components/elements/display/handlebars/helpers.tsx +276 -0
  239. package/components/elements/display/icons/BundleButton.tsx +77 -0
  240. package/components/elements/display/icons/Iconified.tsx +16 -0
  241. package/components/elements/display/icons/SocketBadge.tsx +82 -0
  242. package/components/elements/display/icons/svg/howler-icon-darkmode.svg +1 -0
  243. package/components/elements/display/icons/svg/howler-icon-lightmode.svg +1 -0
  244. package/components/elements/display/icons/svg/howler-logo-full.svg +1 -0
  245. package/components/elements/display/icons/svg/howler-logo.svg +1 -0
  246. package/components/elements/display/json/JSONViewer.tsx +98 -0
  247. package/components/elements/display/markdownPlugins/tabs.ts +81 -0
  248. package/components/elements/display/modals/ConfirmDeleteModal.tsx +32 -0
  249. package/components/elements/display/modals/ConfirmNotebookModal.tsx +32 -0
  250. package/components/elements/display/modals/CreateActionModal.tsx +63 -0
  251. package/components/elements/display/modals/LoginErrorModal.tsx +31 -0
  252. package/components/elements/display/modals/RationaleModal.tsx +59 -0
  253. package/components/elements/hit/HitActions.tsx +298 -0
  254. package/components/elements/hit/HitBanner.tsx +367 -0
  255. package/components/elements/hit/HitBannerTooltip.tsx +41 -0
  256. package/components/elements/hit/HitCard.tsx +42 -0
  257. package/components/elements/hit/HitComments.tsx +372 -0
  258. package/components/elements/hit/HitDetails.tsx +324 -0
  259. package/components/elements/hit/HitLabels.tsx +265 -0
  260. package/components/elements/hit/HitLayout.ts +5 -0
  261. package/components/elements/hit/HitNotebooks.tsx +264 -0
  262. package/components/elements/hit/HitOutline.tsx +56 -0
  263. package/components/elements/hit/HitOverview.tsx +53 -0
  264. package/components/elements/hit/HitQuickSearch.tsx +111 -0
  265. package/components/elements/hit/HitRelated.tsx +18 -0
  266. package/components/elements/hit/HitShortcuts.ts +5 -0
  267. package/components/elements/hit/HitSummary.tsx +301 -0
  268. package/components/elements/hit/HitWorklog.tsx +201 -0
  269. package/components/elements/hit/actions/ButtonActions.tsx +269 -0
  270. package/components/elements/hit/actions/DropdownActions.tsx +157 -0
  271. package/components/elements/hit/actions/SharedComponents.tsx +40 -0
  272. package/components/elements/hit/aggregate/HitGraph.tsx +351 -0
  273. package/components/elements/hit/elements/Assigned.tsx +71 -0
  274. package/components/elements/hit/elements/EscalationChip.tsx +26 -0
  275. package/components/elements/hit/elements/HitTimestamp.tsx +81 -0
  276. package/components/elements/hit/outlines/DefaultOutline.tsx +107 -0
  277. package/components/elements/hit/outlines/al/AssemblyLineRules.tsx +130 -0
  278. package/components/elements/hit/related/PivotLink.tsx +67 -0
  279. package/components/elements/hit/related/RelatedIcon.tsx +51 -0
  280. package/components/elements/hit/related/RelatedLink.tsx +43 -0
  281. package/components/elements/view/ViewTitle.tsx +61 -0
  282. package/components/hooks/useHitActions.tsx +276 -0
  283. package/components/hooks/useHitSelection.tsx +102 -0
  284. package/components/hooks/useMyApi.tsx +64 -0
  285. package/components/hooks/useMyChart.tsx +164 -0
  286. package/components/hooks/useMyLocalStorage.ts +20 -0
  287. package/components/hooks/useMyPreferences.tsx +309 -0
  288. package/components/hooks/useMySearch.tsx +77 -0
  289. package/components/hooks/useMySitemap.tsx +248 -0
  290. package/components/hooks/useMySnackbar.tsx +67 -0
  291. package/components/hooks/useMyTheme.tsx +34 -0
  292. package/components/hooks/useMyUser.tsx +39 -0
  293. package/components/hooks/useMyUserFunctions.tsx +166 -0
  294. package/components/hooks/useMyUserList.tsx +15 -0
  295. package/components/hooks/useMyUtils.tsx +16 -0
  296. package/components/hooks/useScrollRestoration.tsx +37 -0
  297. package/components/logins/Login.tsx +62 -0
  298. package/components/logins/auth/OAuthLogin.tsx +49 -0
  299. package/components/logins/auth/UserPassLogin.tsx +57 -0
  300. package/components/logins/hooks/useLogin.tsx +101 -0
  301. package/components/routes/404.tsx +24 -0
  302. package/components/routes/ErrorBoundary.tsx +44 -0
  303. package/components/routes/ErrorOccured.tsx +28 -0
  304. package/components/routes/Logout.tsx +56 -0
  305. package/components/routes/action/edit/ActionEditor.tsx +358 -0
  306. package/components/routes/action/shared/ActionReportDisplay.tsx +84 -0
  307. package/components/routes/action/shared/OperationEntry.tsx +121 -0
  308. package/components/routes/action/shared/OperationStep.tsx +219 -0
  309. package/components/routes/action/useMyActionFunctions.tsx +225 -0
  310. package/components/routes/action/view/ActionDetails.tsx +205 -0
  311. package/components/routes/action/view/ActionSearch.tsx +249 -0
  312. package/components/routes/action/view/Integrations.tsx +49 -0
  313. package/components/routes/admin/users/UserEditor.tsx +55 -0
  314. package/components/routes/admin/users/UserSearch.tsx +228 -0
  315. package/components/routes/advanced/QueryBuilder.tsx +584 -0
  316. package/components/routes/advanced/QueryEditor.tsx +148 -0
  317. package/components/routes/advanced/RuleModal.tsx +217 -0
  318. package/components/routes/advanced/eqlCompletionProvider.ts +94 -0
  319. package/components/routes/advanced/eqlTokenProvider.ts +110 -0
  320. package/components/routes/advanced/historyCompletionProvider.ts +61 -0
  321. package/components/routes/advanced/luceneCompletionProvider.ts +111 -0
  322. package/components/routes/advanced/luceneTokenProvider.ts +131 -0
  323. package/components/routes/advanced/yamlCompletionProvider.ts +58 -0
  324. package/components/routes/analytics/AnalyticComments.tsx +218 -0
  325. package/components/routes/analytics/AnalyticDetails.tsx +343 -0
  326. package/components/routes/analytics/AnalyticHitComments.tsx +99 -0
  327. package/components/routes/analytics/AnalyticNotebooks.tsx +185 -0
  328. package/components/routes/analytics/AnalyticOverview.tsx +165 -0
  329. package/components/routes/analytics/AnalyticOverviews.tsx +75 -0
  330. package/components/routes/analytics/AnalyticSearch.tsx +301 -0
  331. package/components/routes/analytics/AnalyticTemplates.tsx +77 -0
  332. package/components/routes/analytics/RuleView.tsx +80 -0
  333. package/components/routes/analytics/TriageSettings.tsx +146 -0
  334. package/components/routes/analytics/widgets/Assessment.tsx +71 -0
  335. package/components/routes/analytics/widgets/Created.tsx +61 -0
  336. package/components/routes/analytics/widgets/Detection.tsx +11 -0
  337. package/components/routes/analytics/widgets/Escalation.tsx +65 -0
  338. package/components/routes/analytics/widgets/Stacked.tsx +109 -0
  339. package/components/routes/analytics/widgets/Status.tsx +21 -0
  340. package/components/routes/dossiers/DossierCard.tsx +48 -0
  341. package/components/routes/dossiers/DossierEditor.tsx +247 -0
  342. package/components/routes/dossiers/Dossiers.tsx +173 -0
  343. package/components/routes/dossiers/LeadEditor.tsx +122 -0
  344. package/components/routes/dossiers/LeadForm.tsx +106 -0
  345. package/components/routes/dossiers/PivotForm.tsx +311 -0
  346. package/components/routes/help/ActionDocumentation.tsx +77 -0
  347. package/components/routes/help/ActionIntroductionDocumentation.tsx +128 -0
  348. package/components/routes/help/ApiDocumentation.tsx +217 -0
  349. package/components/routes/help/AuthDocumentation.tsx +26 -0
  350. package/components/routes/help/BundleDocumentation.tsx +17 -0
  351. package/components/routes/help/ClientDocumentation.tsx +27 -0
  352. package/components/routes/help/Help.tsx +96 -0
  353. package/components/routes/help/HitBannerDocumentation.tsx +71 -0
  354. package/components/routes/help/HitDocumentation.tsx +77 -0
  355. package/components/routes/help/HitLabelsDocumentation.tsx +57 -0
  356. package/components/routes/help/HitLinksDocumentation.tsx +23 -0
  357. package/components/routes/help/HitSchemaDocumentation.tsx +253 -0
  358. package/components/routes/help/NotebookDocumentation.tsx +28 -0
  359. package/components/routes/help/OverviewDocumentation.tsx +21 -0
  360. package/components/routes/help/RetentionDocumentation.tsx +55 -0
  361. package/components/routes/help/SearchDocumentation.tsx +700 -0
  362. package/components/routes/help/TemplateDocumentation.tsx +73 -0
  363. package/components/routes/help/ViewDocumentation.tsx +32 -0
  364. package/components/routes/help/components/HelpTabs.tsx +47 -0
  365. package/components/routes/help/markdown/en/actionIntroduction.md +33 -0
  366. package/components/routes/help/markdown/en/authentication.md +261 -0
  367. package/components/routes/help/markdown/en/bundles.md +70 -0
  368. package/components/routes/help/markdown/en/client.md +213 -0
  369. package/components/routes/help/markdown/en/links.md +37 -0
  370. package/components/routes/help/markdown/en/notebook.md +157 -0
  371. package/components/routes/help/markdown/en/retention.md +15 -0
  372. package/components/routes/help/markdown/en/schema.md +20 -0
  373. package/components/routes/help/markdown/en/templates.md +23 -0
  374. package/components/routes/help/markdown/en/views.md +11 -0
  375. package/components/routes/help/markdown/fr/actionIntroduction.md +33 -0
  376. package/components/routes/help/markdown/fr/authentication.md +259 -0
  377. package/components/routes/help/markdown/fr/bundles.md +70 -0
  378. package/components/routes/help/markdown/fr/client.md +209 -0
  379. package/components/routes/help/markdown/fr/links.md +37 -0
  380. package/components/routes/help/markdown/fr/notebook.md +157 -0
  381. package/components/routes/help/markdown/fr/retention.md +15 -0
  382. package/components/routes/help/markdown/fr/schema.md +20 -0
  383. package/components/routes/help/markdown/fr/templates.md +23 -0
  384. package/components/routes/help/markdown/fr/views.md +11 -0
  385. package/components/routes/hits/search/BundleParentMenu.tsx +73 -0
  386. package/components/routes/hits/search/BundleScroller.tsx +8 -0
  387. package/components/routes/hits/search/CustomSort.tsx +94 -0
  388. package/components/routes/hits/search/HitBrowser.tsx +318 -0
  389. package/components/routes/hits/search/HitContextMenu.tsx +260 -0
  390. package/components/routes/hits/search/HitQuery.tsx +268 -0
  391. package/components/routes/hits/search/InformationPane.tsx +430 -0
  392. package/components/routes/hits/search/SearchPane.tsx +291 -0
  393. package/components/routes/hits/search/ViewLink.tsx +96 -0
  394. package/components/routes/hits/search/grid/AddColumnModal.tsx +98 -0
  395. package/components/routes/hits/search/grid/ColumnHeader.tsx +70 -0
  396. package/components/routes/hits/search/grid/EnhancedCell.tsx +50 -0
  397. package/components/routes/hits/search/grid/HitGrid.tsx +342 -0
  398. package/components/routes/hits/search/grid/HitRow.tsx +121 -0
  399. package/components/routes/hits/search/shared/CustomSpan.tsx +54 -0
  400. package/components/routes/hits/search/shared/HitFilter.tsx +110 -0
  401. package/components/routes/hits/search/shared/HitSort.tsx +111 -0
  402. package/components/routes/hits/search/shared/QuerySettings.tsx +40 -0
  403. package/components/routes/hits/search/shared/SearchSpan.tsx +68 -0
  404. package/components/routes/hits/view/HitViewer.tsx +372 -0
  405. package/components/routes/hits/view/LeadRenderer.tsx +42 -0
  406. package/components/routes/home/AddNewCard.tsx +295 -0
  407. package/components/routes/home/AnalyticCard.tsx +68 -0
  408. package/components/routes/home/EntryWrapper.tsx +54 -0
  409. package/components/routes/home/ViewCard.tsx +96 -0
  410. package/components/routes/home/index.tsx +278 -0
  411. package/components/routes/overviews/OverviewCard.tsx +51 -0
  412. package/components/routes/overviews/OverviewEditor.tsx +102 -0
  413. package/components/routes/overviews/OverviewViewer.tsx +387 -0
  414. package/components/routes/overviews/Overviews.tsx +179 -0
  415. package/components/routes/overviews/markdownExtendedTokenProvider.ts +296 -0
  416. package/components/routes/overviews/startingTemplate.ts +40 -0
  417. package/components/routes/overviews/template/en.md +167 -0
  418. package/components/routes/overviews/template/fr.md +167 -0
  419. package/components/routes/settings/AdminSection.tsx +18 -0
  420. package/components/routes/settings/LocalSection.tsx +168 -0
  421. package/components/routes/settings/ProfileSection.tsx +138 -0
  422. package/components/routes/settings/SecuritySection.tsx +95 -0
  423. package/components/routes/settings/Settings.tsx +51 -0
  424. package/components/routes/settings/SettingsSection.tsx +28 -0
  425. package/components/routes/templates/TemplateCard.tsx +38 -0
  426. package/components/routes/templates/TemplateDnD.tsx +51 -0
  427. package/components/routes/templates/TemplateEditor.tsx +121 -0
  428. package/components/routes/templates/TemplateViewer.tsx +285 -0
  429. package/components/routes/templates/Templates.tsx +187 -0
  430. package/components/routes/views/ViewComposer.tsx +317 -0
  431. package/components/routes/views/Views.tsx +379 -0
  432. package/globals.d.ts +1 -0
  433. package/i18n.ts +50 -0
  434. package/index.tsx +19 -0
  435. package/locales/en/help/main.json +13 -0
  436. package/locales/en/help/search.json +186 -0
  437. package/locales/en/translation.json +799 -0
  438. package/locales/fr/help/main.json +13 -0
  439. package/locales/fr/help/search.json +186 -0
  440. package/locales/fr/translation.json +797 -0
  441. package/models/ActionTypes.d.ts +50 -0
  442. package/models/WithMetadata.d.ts +12 -0
  443. package/models/entities/HowlerUser.d.ts +18 -0
  444. package/models/entities/generated/Account.d.ts +7 -0
  445. package/models/entities/generated/Action.d.ts +13 -0
  446. package/models/entities/generated/Agent.d.ts +9 -0
  447. package/models/entities/generated/Analytic.d.ts +21 -0
  448. package/models/entities/generated/Answer.d.ts +10 -0
  449. package/models/entities/generated/Antivirus.d.ts +9 -0
  450. package/models/entities/generated/ApiType.d.ts +238 -0
  451. package/models/entities/generated/Assemblyline.d.ts +22 -0
  452. package/models/entities/generated/Attachment.d.ts +8 -0
  453. package/models/entities/generated/Attribution.d.ts +9 -0
  454. package/models/entities/generated/AutonomousSystems.d.ts +7 -0
  455. package/models/entities/generated/Aws.d.ts +10 -0
  456. package/models/entities/generated/Azure.d.ts +10 -0
  457. package/models/entities/generated/Bcc.d.ts +6 -0
  458. package/models/entities/generated/Behaviour.d.ts +9 -0
  459. package/models/entities/generated/Body.d.ts +7 -0
  460. package/models/entities/generated/Cbs.d.ts +8 -0
  461. package/models/entities/generated/Cc.d.ts +6 -0
  462. package/models/entities/generated/Client.d.ts +7 -0
  463. package/models/entities/generated/Cloud.d.ts +20 -0
  464. package/models/entities/generated/CloudAccount.d.ts +7 -0
  465. package/models/entities/generated/CodeSignature.d.ts +14 -0
  466. package/models/entities/generated/Comment.d.ts +12 -0
  467. package/models/entities/generated/Container.d.ts +12 -0
  468. package/models/entities/generated/Created.d.ts +7 -0
  469. package/models/entities/generated/Dashboard.d.ts +8 -0
  470. package/models/entities/generated/Data.d.ts +8 -0
  471. package/models/entities/generated/Destination.d.ts +23 -0
  472. package/models/entities/generated/Device.d.ts +6 -0
  473. package/models/entities/generated/Dns.d.ts +16 -0
  474. package/models/entities/generated/Domain.d.ts +9 -0
  475. package/models/entities/generated/Dossier.d.ts +15 -0
  476. package/models/entities/generated/Ecs.d.ts +6 -0
  477. package/models/entities/generated/Egress.d.ts +6 -0
  478. package/models/entities/generated/Elf.d.ts +20 -0
  479. package/models/entities/generated/Email.d.ts +30 -0
  480. package/models/entities/generated/Enrichment.d.ts +10 -0
  481. package/models/entities/generated/EntryMeta.d.ts +6 -0
  482. package/models/entities/generated/Error.d.ts +7 -0
  483. package/models/entities/generated/Event.d.ts +31 -0
  484. package/models/entities/generated/Faas.d.ts +13 -0
  485. package/models/entities/generated/Feed.d.ts +9 -0
  486. package/models/entities/generated/File.d.ts +12 -0
  487. package/models/entities/generated/FileHash.d.ts +12 -0
  488. package/models/entities/generated/From.d.ts +6 -0
  489. package/models/entities/generated/Gcp.d.ts +10 -0
  490. package/models/entities/generated/Geo.d.ts +18 -0
  491. package/models/entities/generated/Group.d.ts +8 -0
  492. package/models/entities/generated/Hash.d.ts +6 -0
  493. package/models/entities/generated/Header.d.ts +13 -0
  494. package/models/entities/generated/Heuristic.d.ts +9 -0
  495. package/models/entities/generated/Hit.d.ts +102 -0
  496. package/models/entities/generated/HitFile.d.ts +36 -0
  497. package/models/entities/generated/HitOrganization.d.ts +7 -0
  498. package/models/entities/generated/Host.d.ts +11 -0
  499. package/models/entities/generated/Howler.d.ts +48 -0
  500. package/models/entities/generated/HowlerComment.d.ts +11 -0
  501. package/models/entities/generated/HowlerDossier.d.ts +12 -0
  502. package/models/entities/generated/Http.d.ts +11 -0
  503. package/models/entities/generated/Image.d.ts +10 -0
  504. package/models/entities/generated/Incident.d.ts +8 -0
  505. package/models/entities/generated/Indicator.d.ts +21 -0
  506. package/models/entities/generated/IndicatorEmail.d.ts +6 -0
  507. package/models/entities/generated/IndicatorFile.d.ts +36 -0
  508. package/models/entities/generated/Ingress.d.ts +9 -0
  509. package/models/entities/generated/Instance.d.ts +7 -0
  510. package/models/entities/generated/Interface.d.ts +7 -0
  511. package/models/entities/generated/Label.d.ts +7 -0
  512. package/models/entities/generated/Labels.d.ts +13 -0
  513. package/models/entities/generated/Lead.d.ts +12 -0
  514. package/models/entities/generated/Link.d.ts +8 -0
  515. package/models/entities/generated/Location.d.ts +7 -0
  516. package/models/entities/generated/Log.d.ts +13 -0
  517. package/models/entities/generated/Machine.d.ts +6 -0
  518. package/models/entities/generated/Mapping.d.ts +8 -0
  519. package/models/entities/generated/Matched.d.ts +6 -0
  520. package/models/entities/generated/Mitre.d.ts +10 -0
  521. package/models/entities/generated/Modified.d.ts +7 -0
  522. package/models/entities/generated/Nat.d.ts +7 -0
  523. package/models/entities/generated/Network.d.ts +8 -0
  524. package/models/entities/generated/Notebook.d.ts +10 -0
  525. package/models/entities/generated/Observer.d.ts +21 -0
  526. package/models/entities/generated/Operation.d.ts +7 -0
  527. package/models/entities/generated/Organization.d.ts +7 -0
  528. package/models/entities/generated/Original.d.ts +19 -0
  529. package/models/entities/generated/Os.d.ts +12 -0
  530. package/models/entities/generated/Outline.d.ts +9 -0
  531. package/models/entities/generated/Overview.d.ts +10 -0
  532. package/models/entities/generated/Parent.d.ts +19 -0
  533. package/models/entities/generated/ParentHash.d.ts +12 -0
  534. package/models/entities/generated/ParentParent.d.ts +32 -0
  535. package/models/entities/generated/ParentUser.d.ts +9 -0
  536. package/models/entities/generated/Pe.d.ts +13 -0
  537. package/models/entities/generated/Pivot.d.ts +13 -0
  538. package/models/entities/generated/Process.d.ts +34 -0
  539. package/models/entities/generated/ProcessHash.d.ts +12 -0
  540. package/models/entities/generated/ProcessParent.d.ts +34 -0
  541. package/models/entities/generated/ProcessUser.d.ts +9 -0
  542. package/models/entities/generated/Project.d.ts +7 -0
  543. package/models/entities/generated/Question.d.ts +11 -0
  544. package/models/entities/generated/Registry.d.ts +12 -0
  545. package/models/entities/generated/Related.d.ts +13 -0
  546. package/models/entities/generated/ReplyTo.d.ts +6 -0
  547. package/models/entities/generated/Request.d.ts +13 -0
  548. package/models/entities/generated/Response.d.ts +11 -0
  549. package/models/entities/generated/Rule.d.ts +15 -0
  550. package/models/entities/generated/Section.d.ts +14 -0
  551. package/models/entities/generated/Segment.d.ts +14 -0
  552. package/models/entities/generated/Sender.d.ts +6 -0
  553. package/models/entities/generated/Server.d.ts +8 -0
  554. package/models/entities/generated/Service.d.ts +6 -0
  555. package/models/entities/generated/Settings.d.ts +6 -0
  556. package/models/entities/generated/Sharepoint.d.ts +10 -0
  557. package/models/entities/generated/Software.d.ts +11 -0
  558. package/models/entities/generated/Source.d.ts +23 -0
  559. package/models/entities/generated/SourceOriginal.d.ts +19 -0
  560. package/models/entities/generated/Tactic.d.ts +9 -0
  561. package/models/entities/generated/Technique.d.ts +9 -0
  562. package/models/entities/generated/Template.d.ts +11 -0
  563. package/models/entities/generated/Threat.d.ts +21 -0
  564. package/models/entities/generated/ThreatGroup.d.ts +9 -0
  565. package/models/entities/generated/ThreatIndicator.d.ts +21 -0
  566. package/models/entities/generated/ThreatTactic.d.ts +8 -0
  567. package/models/entities/generated/ThreatTechnique.d.ts +8 -0
  568. package/models/entities/generated/Tls.d.ts +12 -0
  569. package/models/entities/generated/TlsServer.d.ts +6 -0
  570. package/models/entities/generated/To.d.ts +6 -0
  571. package/models/entities/generated/TriageSettings.d.ts +8 -0
  572. package/models/entities/generated/Trigger.d.ts +7 -0
  573. package/models/entities/generated/Uri.d.ts +9 -0
  574. package/models/entities/generated/Url.d.ts +19 -0
  575. package/models/entities/generated/User.d.ts +15 -0
  576. package/models/entities/generated/UserAgent.d.ts +13 -0
  577. package/models/entities/generated/UserUser.d.ts +19 -0
  578. package/models/entities/generated/View.d.ts +15 -0
  579. package/models/entities/generated/Votes.d.ts +8 -0
  580. package/models/entities/generated/Vulnerability.d.ts +12 -0
  581. package/models/entities/generated/Yara.d.ts +9 -0
  582. package/models/socket/HitUpdate.d.ts +14 -0
  583. package/package.json +604 -154
  584. package/plugins/HowlerPlugin.ts +375 -0
  585. package/plugins/store.ts +152 -0
  586. package/rest/AxiosClient.ts +81 -0
  587. package/rest/FetchClient.ts +27 -0
  588. package/rest/index.ts +12 -0
  589. package/setupTests.ts +17 -0
  590. package/tests/MockLocalStorage.ts +46 -0
  591. package/tests/server-handlers.ts +114 -0
  592. package/tests/server.ts +6 -0
  593. package/utils/Throttler.ts +43 -0
  594. package/utils/actionUtils.ts +112 -0
  595. package/utils/constants.tsx +131 -0
  596. package/utils/hit.json +30356 -0
  597. package/utils/hitFunctions.ts +10 -0
  598. package/utils/localStorage.ts +54 -0
  599. package/utils/menuUtils.ts +274 -0
  600. package/utils/sessionStorage.ts +59 -0
  601. package/utils/socketUtils.ts +11 -0
  602. package/utils/stringUtils.ts +57 -0
  603. package/utils/utils.ts +222 -0
  604. package/utils/xsrf.ts +17 -0
  605. package/vite-env.d.ts +1 -0
  606. package/assets/abap-DR3EPHcA.js +0 -6
  607. package/assets/abap-kqcCuNo3.js +0 -1
  608. package/assets/abnf-0i0y1qLw.js +0 -1
  609. package/assets/actionscript-CBg9ALMd.js +0 -1
  610. package/assets/ada-C0C0wsJY.js +0 -1
  611. package/assets/agda-CxRhcDuf.js +0 -1
  612. package/assets/al-Dlm67z74.js +0 -1
  613. package/assets/antlr4-BmA8T_Pf.js +0 -1
  614. package/assets/apacheconf-Cy80ybHj.js +0 -1
  615. package/assets/apex-CW6wsJgM.js +0 -6
  616. package/assets/apex-Sg90mm4u.js +0 -1
  617. package/assets/apl-EWXH65GD.js +0 -1
  618. package/assets/applescript-PjHK8QN3.js +0 -1
  619. package/assets/aql-B5IC4Rcf.js +0 -1
  620. package/assets/arc-BlYL6j5T.js +0 -1
  621. package/assets/architecture-O4VJ6CD3-jaQW6ijo.js +0 -1
  622. package/assets/architectureDiagram-KFL7JDKH-DJeBx9P6.js +0 -36
  623. package/assets/arduino-C51Narsi.js +0 -1
  624. package/assets/arff-8aJF8MCW.js +0 -1
  625. package/assets/asciidoc-YvasCiDo.js +0 -1
  626. package/assets/asm6502-DNM_ACU3.js +0 -1
  627. package/assets/asmatmel-B7SjKbvc.js +0 -1
  628. package/assets/aspnet-BDjjZcvg.js +0 -1
  629. package/assets/autohotkey-hUSymZ_m.js +0 -1
  630. package/assets/autoit-z_CsSJmr.js +0 -1
  631. package/assets/avisynth-lWBoLdVJ.js +0 -1
  632. package/assets/avro-idl-D8-0MeNx.js +0 -1
  633. package/assets/azcli-CIONJYq1.js +0 -6
  634. package/assets/bash-CefCgV5_.js +0 -1
  635. package/assets/bash-WWuseIss.js +0 -1
  636. package/assets/basic-5JZah1MP.js +0 -1
  637. package/assets/basic-DBS9NaGG.js +0 -1
  638. package/assets/bat-C9Lf3IiR.js +0 -6
  639. package/assets/batch-CNuZE34T.js +0 -1
  640. package/assets/bbcode-DUCaeSOc.js +0 -1
  641. package/assets/bicep-C9cUGcZW.js +0 -1
  642. package/assets/bicep-D-A_iHuq.js +0 -7
  643. package/assets/birb-BZmpNpMm.js +0 -1
  644. package/assets/bison-CywkiQg4.js +0 -1
  645. package/assets/blockDiagram-ZYB65J3Q-D0Ol2jlv.js +0 -122
  646. package/assets/bnf-DNey8JGD.js +0 -1
  647. package/assets/brainfuck-uwCSHc7F.js +0 -1
  648. package/assets/brightscript-DT7d5-qJ.js +0 -1
  649. package/assets/bro-CFVRfUbc.js +0 -1
  650. package/assets/bsl-9S4UgA2J.js +0 -1
  651. package/assets/c-BgfjASKF.js +0 -1
  652. package/assets/c-kgVuzdLE.js +0 -1
  653. package/assets/c4Diagram-AAMF2YG6-v1fpnkx2.js +0 -10
  654. package/assets/cameligo-v1zEsXLu.js +0 -6
  655. package/assets/cfscript-49U2aWCh.js +0 -1
  656. package/assets/chaiscript-4VtsYVpl.js +0 -1
  657. package/assets/channel-DabOFIhE.js +0 -1
  658. package/assets/chunk-ANTBXLJU-BBGjDBcL.js +0 -1
  659. package/assets/chunk-FHKO5MBM-CtXgGiWs.js +0 -1
  660. package/assets/chunk-GLLZNHP4-CjNMxI4x.js +0 -15
  661. package/assets/chunk-JBRWN2VN-BIsIHCzN.js +0 -165
  662. package/assets/chunk-LXBSTHXV-DIuZccqv.js +0 -220
  663. package/assets/chunk-NRVI72HA-aKshiznA.js +0 -1
  664. package/assets/chunk-OMD6QJNC-DD9Oy5sh.js +0 -1
  665. package/assets/chunk-WVR4S24B-B9zmB2Tt.js +0 -1
  666. package/assets/cil-CIk1nZUD.js +0 -1
  667. package/assets/classDiagram-3BZAVTQC-CqX7Tp25.js +0 -1
  668. package/assets/classDiagram-v2-QTMF73CY-CqX7Tp25.js +0 -1
  669. package/assets/clike-B5tY_8Hg.js +0 -1
  670. package/assets/clike-CxAeib4_.js +0 -1
  671. package/assets/clojure-Ck0RXpbo.js +0 -1
  672. package/assets/clojure-DgNu_ptH.js +0 -6
  673. package/assets/clone-BDNFedfK.js +0 -1
  674. package/assets/cmake-C-DeGqDW.js +0 -1
  675. package/assets/cobol-DB25XrSi.js +0 -1
  676. package/assets/codicon-B16ygVZF.ttf +0 -0
  677. package/assets/coffee-DNMvp8RP.js +0 -6
  678. package/assets/coffeescript-B4nqUg94.js +0 -1
  679. package/assets/concurnas-Dn9XkZGY.js +0 -1
  680. package/assets/coq-Cvr3Gn8T.js +0 -1
  681. package/assets/core-UDSDYEIa.js +0 -8
  682. package/assets/cpp-BdJVwJpi.js +0 -1
  683. package/assets/cpp-CKhD-3M2.js +0 -1
  684. package/assets/cpp-DEDKHd-B.js +0 -6
  685. package/assets/crystal-CjID7KIv.js +0 -1
  686. package/assets/csharp-2ALpLYur.js +0 -1
  687. package/assets/csharp-BoWmgZhk.js +0 -6
  688. package/assets/csharp-Cd5Udg29.js +0 -1
  689. package/assets/cshtml-BlacgVaO.js +0 -1
  690. package/assets/csp-BK5qlsQ9.js +0 -6
  691. package/assets/csp-HMwJhbi-.js +0 -1
  692. package/assets/css-B2tK9wdh.js +0 -1
  693. package/assets/css-CF9HHZb0.js +0 -1
  694. package/assets/css-D1nB4Vcj.js +0 -8
  695. package/assets/css-extras-DeVSfTP6.js +0 -1
  696. package/assets/cssMode-BtnBbnNh.js +0 -9
  697. package/assets/csv-BD6q7LX1.js +0 -1
  698. package/assets/cypher-BgMoLKlv.js +0 -1
  699. package/assets/cypher-Bl5_yQjz.js +0 -6
  700. package/assets/cytoscape.esm-BQaXIfA_.js +0 -331
  701. package/assets/d-DbEmK-0B.js +0 -1
  702. package/assets/dagre-2BBEFEWP-D2XFAJFU.js +0 -4
  703. package/assets/dart-BVA93hyX.js +0 -6
  704. package/assets/dart-DkfsI3yC.js +0 -1
  705. package/assets/dataweave-aZYF5PNL.js +0 -1
  706. package/assets/dax-V2ts0ypQ.js +0 -1
  707. package/assets/defaultLocale-C4B-KCzX.js +0 -1
  708. package/assets/dhall-D3SUU5AE.js +0 -1
  709. package/assets/diagram-4IRLE6MV-3Ii0VW6l.js +0 -24
  710. package/assets/diagram-GUPCWM2R-C_bP7Q1P.js +0 -24
  711. package/assets/diagram-RP2FKANI-BSi4bGof.js +0 -43
  712. package/assets/diff-CMSY-_TM.js +0 -3
  713. package/assets/django-DnIhfivE.js +0 -1
  714. package/assets/dns-zone-file-cve-GUtw.js +0 -1
  715. package/assets/docker-BNsgT4ys.js +0 -1
  716. package/assets/dockerfile-fYe1jRYc.js +0 -6
  717. package/assets/dot-YI_YYuHG.js +0 -1
  718. package/assets/ebnf-D_RcZu_y.js +0 -1
  719. package/assets/ecl-Bxo8QmCt.js +0 -6
  720. package/assets/editorconfig-DUfFHFN4.js +0 -1
  721. package/assets/eiffel-D62YrVdr.js +0 -1
  722. package/assets/ejs-B3E9714P.js +0 -1
  723. package/assets/elixir-BbUoe7nZ.js +0 -6
  724. package/assets/elixir-wU9BuARX.js +0 -1
  725. package/assets/elm-GdyPUCRk.js +0 -1
  726. package/assets/erDiagram-HZWUO2LU-DIXDxlDs.js +0 -60
  727. package/assets/erb-BLfRgaP8.js +0 -1
  728. package/assets/erlang-oEvb0Slh.js +0 -1
  729. package/assets/etlua-B52BFn4o.js +0 -1
  730. package/assets/excel-formula-DNqVjpMr.js +0 -1
  731. package/assets/factor-D1OvJ8Qo.js +0 -1
  732. package/assets/false-Z6QQv6ID.js +0 -1
  733. package/assets/firestore-security-rules-DTUdd8_9.js +0 -1
  734. package/assets/flow-1B4ewKvb.js +0 -1
  735. package/assets/flow9-BKFjllYO.js +0 -6
  736. package/assets/flowDiagram-THRYKUMA-D3gqWW_d.js +0 -162
  737. package/assets/fortran-DiWKkvzE.js +0 -1
  738. package/assets/freemarker2-CwD6ixn2.js +0 -8
  739. package/assets/fsharp-Dv3_RQKY.js +0 -1
  740. package/assets/fsharp-ETo-tsZt.js +0 -6
  741. package/assets/ftl-CaaEO_Z2.js +0 -1
  742. package/assets/ganttDiagram-WV7ZQ7D5-C-2v9gZQ.js +0 -267
  743. package/assets/gap-CTp3QxAZ.js +0 -1
  744. package/assets/gcode-CYwYWCAy.js +0 -1
  745. package/assets/gdscript-YqSYr01q.js +0 -1
  746. package/assets/gedcom-DTNpnfmu.js +0 -1
  747. package/assets/gherkin-RLKHjAi5.js +0 -1
  748. package/assets/git-0fy9QQAU.js +0 -1
  749. package/assets/gitGraph-ZV4HHKMB-CjT8UBWJ.js +0 -1
  750. package/assets/gitGraphDiagram-OJR772UL-DRxxeQJN.js +0 -65
  751. package/assets/glsl-Df0XRhtW.js +0 -1
  752. package/assets/gml-rYpCBP8S.js +0 -1
  753. package/assets/gn-jKfYA_GR.js +0 -1
  754. package/assets/go-B-SSxtH2.js +0 -1
  755. package/assets/go-DzbHtIm4.js +0 -6
  756. package/assets/go-module-DXvSTe3J.js +0 -1
  757. package/assets/graph-lkROJrYf.js +0 -1
  758. package/assets/graphql-Btz_aicw.js +0 -1
  759. package/assets/graphql-k0EsSqLB.js +0 -6
  760. package/assets/groovy-DTiJadjC.js +0 -1
  761. package/assets/haml-CcDSAGW3.js +0 -1
  762. package/assets/handlebars-B7UUNDAM.js +0 -6
  763. package/assets/handlebars-CTc1FoVV.js +0 -1
  764. package/assets/haskell-Ba7Fn64p.js +0 -1
  765. package/assets/haskell-Ds42Eazu.js +0 -1
  766. package/assets/haxe-BOP5EevR.js +0 -1
  767. package/assets/hcl-Cq9v6if3.js +0 -6
  768. package/assets/hcl-D1BwnWLD.js +0 -1
  769. package/assets/hlsl-CUum5slg.js +0 -1
  770. package/assets/hoon-QMQpvF33.js +0 -1
  771. package/assets/hpkp-D6eY57p3.js +0 -1
  772. package/assets/hsts-C1AgjS7S.js +0 -1
  773. package/assets/html-D5WIHiP4.js +0 -6
  774. package/assets/htmlMode-DEpdNVPw.js +0 -9
  775. package/assets/http-id2mbfvH.js +0 -1
  776. package/assets/ichigojam-DykLBLF7.js +0 -1
  777. package/assets/icon-5DLjeVkO.js +0 -1
  778. package/assets/icu-message-format-BLJSLf7X.js +0 -1
  779. package/assets/idris-D8W8F3Du.js +0 -1
  780. package/assets/iecst-DFLR7w9A.js +0 -1
  781. package/assets/ignore-DApMeS1M.js +0 -1
  782. package/assets/index-Brc7moWM.js +0 -3412
  783. package/assets/index-COcBHp7b.css +0 -1
  784. package/assets/info-63CPKGFF-CMaftaLX.js +0 -1
  785. package/assets/infoDiagram-6WOFNB3A-DVTxejFg.js +0 -2
  786. package/assets/inform7-BbmmPtTe.js +0 -1
  787. package/assets/ini-BscO_0vf.js +0 -6
  788. package/assets/ini-D-w_ESm3.js +0 -1
  789. package/assets/init-Gi6I4Gst.js +0 -1
  790. package/assets/io-CL7TQcwi.js +0 -1
  791. package/assets/j-uqAhSNfO.js +0 -1
  792. package/assets/java--eXhSgxg.js +0 -1
  793. package/assets/java-BxMbkJZ_.js +0 -1
  794. package/assets/java-CtY9ZHW8.js +0 -6
  795. package/assets/javadoc-DLDzhXUx.js +0 -1
  796. package/assets/javadoclike-CcxdcZFw.js +0 -1
  797. package/assets/javadoclike-myFApC35.js +0 -1
  798. package/assets/javascript-B2YTQvHv.js +0 -1
  799. package/assets/javascript-D8vYUPHd.js +0 -1
  800. package/assets/javascript-DHOrgKX5.js +0 -6
  801. package/assets/javastacktrace-C2aQ6cZI.js +0 -1
  802. package/assets/jexl-SUbBpRa5.js +0 -1
  803. package/assets/jolie-DTTRmX_c.js +0 -1
  804. package/assets/journeyDiagram-FFXJYRFH-D4P4oZdc.js +0 -139
  805. package/assets/jq-CNGqc8Wl.js +0 -1
  806. package/assets/js-extras-BomY8GiL.js +0 -1
  807. package/assets/js-templates-lvNz8Eo-.js +0 -1
  808. package/assets/jsdoc-CizF9nqb.js +0 -1
  809. package/assets/json-BESjz4hO.js +0 -1
  810. package/assets/json-vpv-MZJY.js +0 -1
  811. package/assets/json5-Bszym-iC.js +0 -1
  812. package/assets/jsonMode-BdHvYBEq.js +0 -11
  813. package/assets/jsonp-K9VXfRN3.js +0 -1
  814. package/assets/jsstacktrace-5a-l-0QO.js +0 -1
  815. package/assets/jsx-CWP8P1mH.js +0 -1
  816. package/assets/jsx-NzQF_8Jf.js +0 -1
  817. package/assets/julia-DOes61nN.js +0 -6
  818. package/assets/julia-KpvUUzJF.js +0 -1
  819. package/assets/kanban-definition-KOZQBZVT-D7tMBarf.js +0 -89
  820. package/assets/katex-ChWnQ-fc.js +0 -261
  821. package/assets/keepalived-CKdrdtrU.js +0 -1
  822. package/assets/keyman-CFPdCbAD.js +0 -1
  823. package/assets/kotlin-DTDxWyre.js +0 -6
  824. package/assets/kotlin-tQZl0Xk0.js +0 -1
  825. package/assets/kumir-DbBBFKAZ.js +0 -1
  826. package/assets/kusto-Bkg1G97b.js +0 -1
  827. package/assets/latex-BrfLAxV6.js +0 -1
  828. package/assets/latte-DsrdWVh6.js +0 -1
  829. package/assets/layout-C4SVJcQz.js +0 -1
  830. package/assets/less-CqJAWV1X.js +0 -7
  831. package/assets/less-Dq-Do1xB.js +0 -1
  832. package/assets/lexon-BXW1vGDt.js +0 -6
  833. package/assets/lilypond-BASpUvho.js +0 -1
  834. package/assets/linear-D84iuv7z.js +0 -1
  835. package/assets/liquid-Co1yhavg.js +0 -1
  836. package/assets/liquid-D4hD-XBz.js +0 -6
  837. package/assets/lisp-ybAJB-FH.js +0 -1
  838. package/assets/livescript-DLvgD8H_.js +0 -1
  839. package/assets/llvm-C0anU-7N.js +0 -1
  840. package/assets/log-D-8B5UAA.js +0 -1
  841. package/assets/lolcode-OUGz_qsa.js +0 -1
  842. package/assets/lua-Cc6kp-D4.js +0 -1
  843. package/assets/lua-DER4jxlW.js +0 -1
  844. package/assets/lua-DLZgaSX1.js +0 -6
  845. package/assets/m3-CLtYU2dl.js +0 -6
  846. package/assets/magma-IaFf4RIf.js +0 -1
  847. package/assets/makefile-ChKu1MJ1.js +0 -1
  848. package/assets/markdown-7fQo6M4U.js +0 -6
  849. package/assets/markdown-DiMlCk4R.js +0 -1
  850. package/assets/markup-BONeskWm.js +0 -1
  851. package/assets/markup-CEx1cEoC.js +0 -1
  852. package/assets/markup-templating-BPwIASy-.js +0 -1
  853. package/assets/markup-templating-BxAVv-bL.js +0 -1
  854. package/assets/matlab-C6qGYTR2.js +0 -1
  855. package/assets/maxscript-CAN0xBDN.js +0 -1
  856. package/assets/mdx-D6NVpinB.js +0 -6
  857. package/assets/mel-CRG0vaFw.js +0 -1
  858. package/assets/mermaid-DTCIS1Vc.js +0 -1
  859. package/assets/mermaid-parser.core-9OWX7w7H.js +0 -129
  860. package/assets/min-pXLq1urb.js +0 -1
  861. package/assets/mindmap-definition-LNHGMQRG-DpNkhLNM.js +0 -95
  862. package/assets/mips-DcG9r2vI.js +0 -6
  863. package/assets/mizar-CTjbYK1-.js +0 -1
  864. package/assets/mongodb-Dwy0e7tV.js +0 -1
  865. package/assets/monkey-5vs-VaHV.js +0 -1
  866. package/assets/moonscript-fT7DerrW.js +0 -1
  867. package/assets/msdax-DN__iVzl.js +0 -6
  868. package/assets/mysql-05d2lfAy.js +0 -6
  869. package/assets/n1ql-CyDT-nbG.js +0 -1
  870. package/assets/n4js-Dmgj3bgd.js +0 -1
  871. package/assets/nand2tetris-hdl-BPfjS0pS.js +0 -1
  872. package/assets/naniscript-AIaG6VzF.js +0 -1
  873. package/assets/nasm-CtaUAK1B.js +0 -1
  874. package/assets/neon-BGH8Px8Z.js +0 -1
  875. package/assets/nevod-DKwg2dRw.js +0 -1
  876. package/assets/nginx-CUZ2OZRs.js +0 -1
  877. package/assets/nim-DYHpidb8.js +0 -1
  878. package/assets/nix-DJt2Qxmn.js +0 -1
  879. package/assets/nsis-Bp97AH1A.js +0 -1
  880. package/assets/objective-c-B_h_kxCB.js +0 -6
  881. package/assets/objectivec-DXwXxEEr.js +0 -1
  882. package/assets/ocaml-alwbEKNU.js +0 -1
  883. package/assets/opencl-2tlv9GXY.js +0 -1
  884. package/assets/openqasm-DQQ8Eb1t.js +0 -1
  885. package/assets/ordinal-Cboi1Yqb.js +0 -1
  886. package/assets/oz-CmR9PjHE.js +0 -1
  887. package/assets/packet-HUATNLJX-Df0K9_iv.js +0 -1
  888. package/assets/parigp-n8ycxTI2.js +0 -1
  889. package/assets/parser-Bcvfazvc.js +0 -1
  890. package/assets/pascal-Bc-8SB3K.js +0 -6
  891. package/assets/pascal-CFHsej71.js +0 -1
  892. package/assets/pascaligo-C8kSNPDA.js +0 -1
  893. package/assets/pascaligo-Dcwo06z5.js +0 -6
  894. package/assets/pcaxis-L1qB_TA8.js +0 -1
  895. package/assets/peoplecode-B3ZIbHRe.js +0 -1
  896. package/assets/perl-B4wSx8tF.js +0 -1
  897. package/assets/perl-BnGpdHsN.js +0 -6
  898. package/assets/pgsql-DfVleuq_.js +0 -6
  899. package/assets/php-CH5O-_gG.js +0 -6
  900. package/assets/php-Cp0BohX-.js +0 -1
  901. package/assets/php-extras-D_l2V9st.js +0 -1
  902. package/assets/php-iTdQntIy.js +0 -1
  903. package/assets/phpdoc-CK9N3DqC.js +0 -1
  904. package/assets/pie-WTHONI2E-D2V4EPkW.js +0 -1
  905. package/assets/pieDiagram-DBDJKBY4-CtSiPn-U.js +0 -30
  906. package/assets/pla-BUVXxyGx.js +0 -6
  907. package/assets/plsql-C1Z_R7C0.js +0 -1
  908. package/assets/postiats-DSt55phJ.js +0 -6
  909. package/assets/powerquery-2KNS9mh4.js +0 -6
  910. package/assets/powerquery-Cj9zzkL_.js +0 -1
  911. package/assets/powershell-BMCDkE8B.js +0 -1
  912. package/assets/powershell-CCS0rx-A.js +0 -6
  913. package/assets/processing-DOu9EyQL.js +0 -1
  914. package/assets/prolog-BDx-mKYw.js +0 -1
  915. package/assets/promql-CyuJUGgC.js +0 -1
  916. package/assets/properties-Cz9SwuSc.js +0 -1
  917. package/assets/protobuf-5lyCd6Ku.js +0 -7
  918. package/assets/protobuf-BCLdPaZg.js +0 -1
  919. package/assets/psl-BVzbXOmp.js +0 -1
  920. package/assets/pug-Dg4O54Js.js +0 -6
  921. package/assets/pug-PBVvhxsU.js +0 -1
  922. package/assets/puppet-Bp5J_Xf6.js +0 -1
  923. package/assets/pure-BEODe8Ty.js +0 -1
  924. package/assets/purebasic-g8QwRKk9.js +0 -1
  925. package/assets/purescript-UFsBai8q.js +0 -1
  926. package/assets/python-BEpwHjuW.js +0 -6
  927. package/assets/python-cW1cr4Xe.js +0 -1
  928. package/assets/q-CuXsyoDM.js +0 -1
  929. package/assets/qml-NgPknFa-.js +0 -1
  930. package/assets/qore-C0g-7ava.js +0 -1
  931. package/assets/qsharp-BHSA_OC9.js +0 -6
  932. package/assets/qsharp-BrQJYopz.js +0 -1
  933. package/assets/quadrantDiagram-YPSRARAO-fpN7laT8.js +0 -7
  934. package/assets/r-DBvxNhD8.js +0 -6
  935. package/assets/r-ivB35FJi.js +0 -1
  936. package/assets/racket-D6952iA-.js +0 -1
  937. package/assets/radar-NJJJXTRR-Bh0TcAtk.js +0 -1
  938. package/assets/razor-COaKzAih.js +0 -6
  939. package/assets/reason-BxyJj1Wv.js +0 -1
  940. package/assets/redis-mBNZiS5I.js +0 -6
  941. package/assets/redshift-gtd9hS2x.js +0 -6
  942. package/assets/reduce-CEguFi6x.js +0 -1
  943. package/assets/regex-UCZUa98R.js +0 -1
  944. package/assets/rego-D5bYSBEk.js +0 -1
  945. package/assets/renpy-DTdz45My.js +0 -1
  946. package/assets/requirementDiagram-EGVEC5DT-C2aVrzw7.js +0 -64
  947. package/assets/rest-BxrDSOtP.js +0 -1
  948. package/assets/restructuredtext-45Xf76JB.js +0 -6
  949. package/assets/rip-CvJDF04l.js +0 -1
  950. package/assets/roboconf-DpPdQtT6.js +0 -1
  951. package/assets/robotframework-CvzHhnGx.js +0 -1
  952. package/assets/roboto-cyrillic-400-normal-C5q4FMUG.woff +0 -0
  953. package/assets/roboto-cyrillic-400-normal-DAIM1_dR.woff2 +0 -0
  954. package/assets/roboto-cyrillic-ext-400-normal-5IDvadIC.woff +0 -0
  955. package/assets/roboto-cyrillic-ext-400-normal-DzMWdK87.woff2 +0 -0
  956. package/assets/roboto-greek-400-normal-DwVopRQH.woff +0 -0
  957. package/assets/roboto-greek-400-normal-jFM2czAU.woff2 +0 -0
  958. package/assets/roboto-latin-400-normal-BX2H0A0_.woff +0 -0
  959. package/assets/roboto-latin-400-normal-CNwBRw8h.woff2 +0 -0
  960. package/assets/roboto-latin-ext-400-normal-BG57dRWO.woff +0 -0
  961. package/assets/roboto-latin-ext-400-normal-ZYmyxeOy.woff2 +0 -0
  962. package/assets/roboto-math-400-normal-B3wgz80t.woff2 +0 -0
  963. package/assets/roboto-math-400-normal-BRMeFL5Z.woff +0 -0
  964. package/assets/roboto-symbols-400-normal-B2LMqLB2.woff +0 -0
  965. package/assets/roboto-symbols-400-normal-fF1SLJBj.woff2 +0 -0
  966. package/assets/roboto-vietnamese-400-normal-BYP5tVVv.woff +0 -0
  967. package/assets/roboto-vietnamese-400-normal-CDDxGrUb.woff2 +0 -0
  968. package/assets/ruby-BYts9dao.js +0 -1
  969. package/assets/ruby-CEgcCkh9.js +0 -6
  970. package/assets/ruby-DYsn9XfW.js +0 -1
  971. package/assets/rust-BChN5uNh.js +0 -6
  972. package/assets/rust-DhU6TFsm.js +0 -1
  973. package/assets/sankeyDiagram-HRAUVNP4-4oZDeCaD.js +0 -10
  974. package/assets/sas-ChhKHWGM.js +0 -1
  975. package/assets/sass-C57bJt_A.js +0 -1
  976. package/assets/sb-5vPrUWN-.js +0 -6
  977. package/assets/scala-BQOorN7X.js +0 -6
  978. package/assets/scala-Cg28kNry.js +0 -1
  979. package/assets/scheme-Bpk-KLc_.js +0 -1
  980. package/assets/scheme-Cscf027c.js +0 -1
  981. package/assets/scheme-DkJ87xtR.js +0 -6
  982. package/assets/scss-BeU7qozo.js +0 -1
  983. package/assets/scss-CpPOP9XS.js +0 -8
  984. package/assets/sequenceDiagram-WFGC7UMF-BS5S-iIx.js +0 -122
  985. package/assets/shell-BHhUv290.js +0 -6
  986. package/assets/shell-session-N4BUyO5b.js +0 -1
  987. package/assets/smali-OZwkp_pU.js +0 -1
  988. package/assets/smalltalk-Bgd8uXdt.js +0 -1
  989. package/assets/smarty-BbqdJT5w.js +0 -1
  990. package/assets/sml-DbDOAWsQ.js +0 -1
  991. package/assets/solidity-BFcLIl1x.js +0 -6
  992. package/assets/solidity-DkQCaL_X.js +0 -1
  993. package/assets/solution-file-DFlRPhIk.js +0 -1
  994. package/assets/sophia-z0tjJxhY.js +0 -6
  995. package/assets/soy-CqM5aRME.js +0 -1
  996. package/assets/sparql-B1GALy7V.js +0 -1
  997. package/assets/sparql-BTJymgeb.js +0 -6
  998. package/assets/splunk-spl-DrNqni3-.js +0 -1
  999. package/assets/sqf-BeBvdmXG.js +0 -1
  1000. package/assets/sql-BFyYaP5s.js +0 -6
  1001. package/assets/sql-CJATM1Qp.js +0 -1
  1002. package/assets/sql-CtDLgxfq.js +0 -1
  1003. package/assets/squirrel-COkcd8Tr.js +0 -1
  1004. package/assets/st-DZS1F9ME.js +0 -6
  1005. package/assets/stan-C1_hogQu.js +0 -1
  1006. package/assets/stateDiagram-UUKSUZ4H-Cb3qH3Cy.js +0 -1
  1007. package/assets/stateDiagram-v2-EYPG3UTE-BzEwA6K7.js +0 -1
  1008. package/assets/stylus-Dw8891LS.js +0 -1
  1009. package/assets/swift-B97O9HHR.js +0 -1
  1010. package/assets/swift-BwlyOzQq.js +0 -8
  1011. package/assets/systemd-CUtXAwEb.js +0 -2
  1012. package/assets/systemverilog-DJsb8r0W.js +0 -6
  1013. package/assets/t4-cs-CyYMVAUn.js +0 -1
  1014. package/assets/t4-templating-B5EzSFYT.js +0 -1
  1015. package/assets/t4-templating-Du1KIrkv.js +0 -1
  1016. package/assets/t4-vb-Pwd8zhQY.js +0 -1
  1017. package/assets/tap-C5-eahra.js +0 -1
  1018. package/assets/tcl-CQrWCRuJ.js +0 -1
  1019. package/assets/tcl-CjHYkh5E.js +0 -6
  1020. package/assets/textile-CyJk6SWo.js +0 -1
  1021. package/assets/timeline-definition-3HZDQTIS-DaBjiVZ7.js +0 -61
  1022. package/assets/toml-Cact8Vna.js +0 -1
  1023. package/assets/treemap-75Q7IDZK-BZoUJEBa.js +0 -1
  1024. package/assets/tremor-BBmidx_C.js +0 -1
  1025. package/assets/tsMode-DjkyL1AP.js +0 -16
  1026. package/assets/tsx-BFgSfn5D.js +0 -1
  1027. package/assets/tt2-CG-UIBmK.js +0 -1
  1028. package/assets/turtle-DigfRE97.js +0 -1
  1029. package/assets/turtle-Ro1R6Je7.js +0 -1
  1030. package/assets/twig-CmYTg8Iu.js +0 -6
  1031. package/assets/twig-PmY_cDoq.js +0 -1
  1032. package/assets/typescript-CVO-8GEc.js +0 -1
  1033. package/assets/typescript-Da47IE7f.js +0 -1
  1034. package/assets/typescript-DgKm9t07.js +0 -6
  1035. package/assets/typespec-Dwv00aWl.js +0 -6
  1036. package/assets/typoscript-CgZr5jEZ.js +0 -1
  1037. package/assets/unrealscript-BI_pn0rK.js +0 -1
  1038. package/assets/uorazor-C7IhUkD6.js +0 -1
  1039. package/assets/uri-BP2d8Ze2.js +0 -1
  1040. package/assets/v-B9O-tbsS.js +0 -1
  1041. package/assets/vala-CS5ZRPeA.js +0 -1
  1042. package/assets/vb-BjPEumh4.js +0 -6
  1043. package/assets/vbnet-B0hx3qRp.js +0 -1
  1044. package/assets/vbnet-BhrUc4aD.js +0 -1
  1045. package/assets/velocity-QemisC16.js +0 -1
  1046. package/assets/verilog-jjjMAm_Y.js +0 -1
  1047. package/assets/vhdl-B9EszVuj.js +0 -1
  1048. package/assets/vim-CxDlf-dr.js +0 -1
  1049. package/assets/visual-basic-CfhBm1gF.js +0 -1
  1050. package/assets/warpscript-DL5ToBao.js +0 -1
  1051. package/assets/wasm-C5WawCVZ.js +0 -1
  1052. package/assets/web-idl-DWKDo7hm.js +0 -1
  1053. package/assets/wgsl-Bp8RP3jd.js +0 -303
  1054. package/assets/wiki-BHpSxg4K.js +0 -1
  1055. package/assets/wolfram-C_oBzCJW.js +0 -1
  1056. package/assets/wren-CA1nFGqi.js +0 -1
  1057. package/assets/xeora-BtUuVarv.js +0 -1
  1058. package/assets/xml-BBqGkZMk.js +0 -6
  1059. package/assets/xml-doc-DhUg29aH.js +0 -1
  1060. package/assets/xojo-BmgifBv1.js +0 -1
  1061. package/assets/xquery-7FfNXUZg.js +0 -1
  1062. package/assets/xychartDiagram-FDP5SA34-DlWJl-YC.js +0 -7
  1063. package/assets/yaml-BOp0Lh0S.js +0 -1
  1064. package/assets/yaml-C8j_iwGJ.js +0 -6
  1065. package/assets/yaml-pHjxJgpq.js +0 -1
  1066. package/assets/yang-CLUWUZcf.js +0 -1
  1067. package/assets/zig-DdXASuyK.js +0 -1
  1068. package/branding/howler/favicon.svg +0 -38
  1069. package/branding/howler/name-dark.svg +0 -21
  1070. package/branding/howler/name-light.svg +0 -21
  1071. package/branding/howler/noswoosh-dark.svg +0 -24
  1072. package/branding/howler/noswoosh-light.svg +0 -28
  1073. package/branding/howler/swoosh-dark.svg +0 -41
  1074. package/branding/howler/swoosh-light.svg +0 -45
  1075. package/components/routes/help/markdown/en/actionIntroduction.md.js +0 -1
  1076. package/components/routes/help/markdown/en/authentication.md.js +0 -1
  1077. package/components/routes/help/markdown/en/bundles.md.js +0 -1
  1078. package/components/routes/help/markdown/en/client.md.js +0 -1
  1079. package/components/routes/help/markdown/en/links.md.js +0 -1
  1080. package/components/routes/help/markdown/en/notebook.md.js +0 -1
  1081. package/components/routes/help/markdown/en/retention.md.js +0 -1
  1082. package/components/routes/help/markdown/en/schema.md.js +0 -1
  1083. package/components/routes/help/markdown/en/templates.md.js +0 -1
  1084. package/components/routes/help/markdown/en/views.md.js +0 -1
  1085. package/components/routes/help/markdown/fr/actionIntroduction.md.js +0 -1
  1086. package/components/routes/help/markdown/fr/authentication.md.js +0 -1
  1087. package/components/routes/help/markdown/fr/bundles.md.js +0 -1
  1088. package/components/routes/help/markdown/fr/client.md.js +0 -1
  1089. package/components/routes/help/markdown/fr/links.md.js +0 -1
  1090. package/components/routes/help/markdown/fr/notebook.md.js +0 -1
  1091. package/components/routes/help/markdown/fr/retention.md.js +0 -1
  1092. package/components/routes/help/markdown/fr/schema.md.js +0 -1
  1093. package/components/routes/help/markdown/fr/templates.md.js +0 -1
  1094. package/components/routes/help/markdown/fr/views.md.js +0 -1
  1095. package/components/routes/overviews/template/en.md.js +0 -1
  1096. package/components/routes/overviews/template/fr.md.js +0 -1
  1097. package/images/doggie.png +0 -0
  1098. package/index.html +0 -24
  1099. package/manifest.json +0 -16
  1100. package/robots.txt +0 -3
  1101. package/scripts/background.js +0 -14
  1102. package/serve.json +0 -14
@@ -1 +0,0 @@
1
- import{au as b}from"./index-Brc7moWM.js";function h(r,a){for(var n=0;n<a.length;n++){const t=a[n];if(typeof t!="string"&&!Array.isArray(t)){for(const e in t)if(e!=="default"&&!(e in r)){const s=Object.getOwnPropertyDescriptor(t,e);s&&Object.defineProperty(r,e,s.get?s:{enumerable:!0,get:()=>t[e]})}}}return Object.freeze(Object.defineProperty(r,Symbol.toStringTag,{value:"Module"}))}var o,p;function f(){if(p)return o;p=1,o=r,r.displayName="factor",r.aliases=[];function r(a){(function(n){var t={function:/\b(?:BUGS?|FIX(?:MES?)?|NOTES?|TODOS?|XX+|HACKS?|WARN(?:ING)?|\?{2,}|!{2,})\b/},e={number:/\\[^\s']|%\w/},s={comment:[{pattern:/(^|\s)(?:! .*|!$)/,lookbehind:!0,inside:t},{pattern:/(^|\s)\/\*\s[\s\S]*?\*\/(?=\s|$)/,lookbehind:!0,greedy:!0,inside:t},{pattern:/(^|\s)!\[(={0,6})\[\s[\s\S]*?\]\2\](?=\s|$)/,lookbehind:!0,greedy:!0,inside:t}],number:[{pattern:/(^|\s)[+-]?\d+(?=\s|$)/,lookbehind:!0},{pattern:/(^|\s)[+-]?0(?:b[01]+|o[0-7]+|d\d+|x[\dA-F]+)(?=\s|$)/i,lookbehind:!0},{pattern:/(^|\s)[+-]?\d+\/\d+\.?(?=\s|$)/,lookbehind:!0},{pattern:/(^|\s)\+?\d+\+\d+\/\d+(?=\s|$)/,lookbehind:!0},{pattern:/(^|\s)-\d+-\d+\/\d+(?=\s|$)/,lookbehind:!0},{pattern:/(^|\s)[+-]?(?:\d*\.\d+|\d+\.\d*|\d+)(?:e[+-]?\d+)?(?=\s|$)/i,lookbehind:!0},{pattern:/(^|\s)NAN:\s+[\da-fA-F]+(?=\s|$)/,lookbehind:!0},{pattern:/(^|\s)[+-]?0(?:b1\.[01]*|o1\.[0-7]*|d1\.\d*|x1\.[\dA-F]*)p\d+(?=\s|$)/i,lookbehind:!0}],regexp:{pattern:/(^|\s)R\/\s(?:\\\S|[^\\/])*\/(?:[idmsr]*|[idmsr]+-[idmsr]+)(?=\s|$)/,lookbehind:!0,alias:"number",inside:{variable:/\\\S/,keyword:/[+?*\[\]^$(){}.|]/,operator:{pattern:/(\/)[idmsr]+(?:-[idmsr]+)?/,lookbehind:!0}}},boolean:{pattern:/(^|\s)[tf](?=\s|$)/,lookbehind:!0},"custom-string":{pattern:/(^|\s)[A-Z0-9\-]+"\s(?:\\\S|[^"\\])*"/,lookbehind:!0,greedy:!0,alias:"string",inside:{number:/\\\S|%\w|\//}},"multiline-string":[{pattern:/(^|\s)STRING:\s+\S+(?:\n|\r\n).*(?:\n|\r\n)\s*;(?=\s|$)/,lookbehind:!0,greedy:!0,alias:"string",inside:{number:e.number,"semicolon-or-setlocal":{pattern:/([\r\n][ \t]*);(?=\s|$)/,lookbehind:!0,alias:"function"}}},{pattern:/(^|\s)HEREDOC:\s+\S+(?:\n|\r\n).*(?:\n|\r\n)\s*\S+(?=\s|$)/,lookbehind:!0,greedy:!0,alias:"string",inside:e},{pattern:/(^|\s)\[(={0,6})\[\s[\s\S]*?\]\2\](?=\s|$)/,lookbehind:!0,greedy:!0,alias:"string",inside:e}],"special-using":{pattern:/(^|\s)USING:(?:\s\S+)*(?=\s+;(?:\s|$))/,lookbehind:!0,alias:"function",inside:{string:{pattern:/(\s)[^:\s]+/,lookbehind:!0}}},"stack-effect-delimiter":[{pattern:/(^|\s)(?:call|eval|execute)?\((?=\s)/,lookbehind:!0,alias:"operator"},{pattern:/(\s)--(?=\s)/,lookbehind:!0,alias:"operator"},{pattern:/(\s)\)(?=\s|$)/,lookbehind:!0,alias:"operator"}],combinators:{pattern:null,lookbehind:!0,alias:"keyword"},"kernel-builtin":{pattern:null,lookbehind:!0,alias:"variable"},"sequences-builtin":{pattern:null,lookbehind:!0,alias:"variable"},"math-builtin":{pattern:null,lookbehind:!0,alias:"variable"},"constructor-word":{pattern:/(^|\s)<(?!=+>|-+>)\S+>(?=\s|$)/,lookbehind:!0,alias:"keyword"},"other-builtin-syntax":{pattern:null,lookbehind:!0,alias:"operator"},"conventionally-named-word":{pattern:/(^|\s)(?!")(?:(?:change|new|set|with)-\S+|\$\S+|>[^>\s]+|[^:>\s]+>|[^>\s]+>[^>\s]+|\+[^+\s]+\+|[^?\s]+\?|\?[^?\s]+|[^>\s]+>>|>>[^>\s]+|[^<\s]+<<|\([^()\s]+\)|[^!\s]+!|[^*\s]\S*\*|[^.\s]\S*\.)(?=\s|$)/,lookbehind:!0,alias:"keyword"},"colon-syntax":{pattern:/(^|\s)(?:[A-Z0-9\-]+#?)?:{1,2}\s+(?:;\S+|(?!;)\S+)(?=\s|$)/,lookbehind:!0,greedy:!0,alias:"function"},"semicolon-or-setlocal":{pattern:/(\s)(?:;|:>)(?=\s|$)/,lookbehind:!0,alias:"function"},"curly-brace-literal-delimiter":[{pattern:/(^|\s)[a-z]*\{(?=\s)/i,lookbehind:!0,alias:"operator"},{pattern:/(\s)\}(?=\s|$)/,lookbehind:!0,alias:"operator"}],"quotation-delimiter":[{pattern:/(^|\s)\[(?=\s)/,lookbehind:!0,alias:"operator"},{pattern:/(\s)\](?=\s|$)/,lookbehind:!0,alias:"operator"}],"normal-word":{pattern:/(^|\s)[^"\s]\S*(?=\s|$)/,lookbehind:!0},string:{pattern:/"(?:\\\S|[^"\\])*"/,greedy:!0,inside:e}},d=function(i){return(i+"").replace(/([.?*+\^$\[\]\\(){}|\-])/g,"\\$1")},l=function(i){return new RegExp("(^|\\s)(?:"+i.map(d).join("|")+")(?=\\s|$)")},u={"kernel-builtin":["or","2nipd","4drop","tuck","wrapper","nip","wrapper?","callstack>array","die","dupd","callstack","callstack?","3dup","hashcode","pick","4nip","build",">boolean","nipd","clone","5nip","eq?","?","=","swapd","2over","clear","2dup","get-retainstack","not","tuple?","dup","3nipd","call","-rotd","object","drop","assert=","assert?","-rot","execute","boa","get-callstack","curried?","3drop","pickd","overd","over","roll","3nip","swap","and","2nip","rotd","throw","(clone)","hashcode*","spin","reach","4dup","equal?","get-datastack","assert","2drop","<wrapper>","boolean?","identity-hashcode","identity-tuple?","null","composed?","new","5drop","rot","-roll","xor","identity-tuple","boolean"],"other-builtin-syntax":["=======","recursive","flushable",">>","<<<<<<","M\\","B","PRIVATE>","\\","======","final","inline","delimiter","deprecated","<PRIVATE",">>>>>>","<<<<<<<","parse-complex","malformed-complex","read-only",">>>>>>>","call-next-method","<<","foldable","$","$[","${"],"sequences-builtin":["member-eq?","mismatch","append","assert-sequence=","longer","repetition","clone-like","3sequence","assert-sequence?","last-index-from","reversed","index-from","cut*","pad-tail","join-as","remove-eq!","concat-as","but-last","snip","nths","nth","sequence","longest","slice?","<slice>","remove-nth","tail-slice","empty?","tail*","member?","virtual-sequence?","set-length","drop-prefix","iota","unclip","bounds-error?","unclip-last-slice","non-negative-integer-expected","non-negative-integer-expected?","midpoint@","longer?","?set-nth","?first","rest-slice","prepend-as","prepend","fourth","sift","subseq-start","new-sequence","?last","like","first4","1sequence","reverse","slice","virtual@","repetition?","set-last","index","4sequence","max-length","set-second","immutable-sequence","first2","first3","supremum","unclip-slice","suffix!","insert-nth","tail","3append","short","suffix","concat","flip","immutable?","reverse!","2sequence","sum","delete-all","indices","snip-slice","<iota>","check-slice","sequence?","head","append-as","halves","sequence=","collapse-slice","?second","slice-error?","product","bounds-check?","bounds-check","immutable","virtual-exemplar","harvest","remove","pad-head","last","set-fourth","cartesian-product","remove-eq","shorten","shorter","reversed?","shorter?","shortest","head-slice","pop*","tail-slice*","but-last-slice","iota?","append!","cut-slice","new-resizable","head-slice*","sequence-hashcode","pop","set-nth","?nth","second","join","immutable-sequence?","<reversed>","3append-as","virtual-sequence","subseq?","remove-nth!","length","last-index","lengthen","assert-sequence","copy","move","third","first","tail?","set-first","prefix","bounds-error","<repetition>","exchange","surround","cut","min-length","set-third","push-all","head?","subseq-start-from","delete-slice","rest","sum-lengths","head*","infimum","remove!","glue","slice-error","subseq","push","replace-slice","subseq-as","unclip-last"],"math-builtin":["number=","next-power-of-2","?1+","fp-special?","imaginary-part","float>bits","number?","fp-infinity?","bignum?","fp-snan?","denominator","gcd","*","+","fp-bitwise=","-","u>=","/",">=","bitand","power-of-2?","log2-expects-positive","neg?","<","log2",">","integer?","number","bits>double","2/","zero?","bits>float","float?","shift","ratio?","rect>","even?","ratio","fp-sign","bitnot",">fixnum","complex?","/i","integer>fixnum","/f","sgn",">bignum","next-float","u<","u>","mod","recip","rational",">float","2^","integer","fixnum?","neg","fixnum","sq","bignum",">rect","bit?","fp-qnan?","simple-gcd","complex","<fp-nan>","real",">fraction","double>bits","bitor","rem","fp-nan-payload","real-part","log2-expects-positive?","prev-float","align","unordered?","float","fp-nan?","abs","bitxor","integer>fixnum-strict","u<=","odd?","<=","/mod",">integer","real?","rational?","numerator"]};Object.keys(u).forEach(function(i){s[i].pattern=l(u[i])});var m=["2bi","while","2tri","bi*","4dip","both?","same?","tri@","curry","prepose","3bi","?if","tri*","2keep","3keep","curried","2keepd","when","2bi*","2tri*","4keep","bi@","keepdd","do","unless*","tri-curry","if*","loop","bi-curry*","when*","2bi@","2tri@","with","2with","either?","bi","until","3dip","3curry","tri-curry*","tri-curry@","bi-curry","keepd","compose","2dip","if","3tri","unless","tuple","keep","2curry","tri","most","while*","dip","composed","bi-curry@","find-last-from","trim-head-slice","map-as","each-from","none?","trim-tail","partition","if-empty","accumulate*","reject!","find-from","accumulate-as","collector-for-as","reject","map","map-sum","accumulate!","2each-from","follow","supremum-by","map!","unless-empty","collector","padding","reduce-index","replicate-as","infimum-by","trim-tail-slice","count","find-index","filter","accumulate*!","reject-as","map-integers","map-find","reduce","selector","interleave","2map","filter-as","binary-reduce","map-index-as","find","produce","filter!","replicate","cartesian-map","cartesian-each","find-index-from","map-find-last","3map-as","3map","find-last","selector-as","2map-as","2map-reduce","accumulate","each","each-index","accumulate*-as","when-empty","all?","collector-as","push-either","new-like","collector-for","2selector","push-if","2all?","map-reduce","3each","any?","trim-slice","2reduce","change-nth","produce-as","2each","trim","trim-head","cartesian-find","map-index","if-zero","each-integer","unless-zero","(find-integer)","when-zero","find-last-integer","(all-integers?)","times","(each-integer)","find-integer","all-integers?","unless-negative","if-positive","when-positive","when-negative","unless-positive","if-negative","case","2cleave","cond>quot","case>quot","3cleave","wrong-values","to-fixed-point","alist>quot","cond","cleave","call-effect","recursive-hashcode","spread","deep-spread>quot","2||","0||","n||","0&&","2&&","3||","1||","1&&","n&&","3&&","smart-unless*","keep-inputs","reduce-outputs","smart-when*","cleave>array","smart-with","smart-apply","smart-if","inputs/outputs","output>sequence-n","map-outputs","map-reduce-outputs","dropping","output>array","smart-map-reduce","smart-2map-reduce","output>array-n","nullary","input<sequence","append-outputs","drop-inputs","inputs","smart-2reduce","drop-outputs","smart-reduce","preserving","smart-when","outputs","append-outputs-as","smart-unless","smart-if*","sum-outputs","input<sequence-unsafe","output>sequence"];s.combinators.pattern=l(m),n.languages.factor=s})(a)}return o}var c=f();const g=b(c),v=h({__proto__:null,default:g},[c]);export{v as f};
@@ -1 +0,0 @@
1
- import{au as i}from"./index-Brc7moWM.js";function u(e,n){for(var r=0;r<n.length;r++){const t=n[r];if(typeof t!="string"&&!Array.isArray(t)){for(const a in t)if(a!=="default"&&!(a in e)){const o=Object.getOwnPropertyDescriptor(t,a);o&&Object.defineProperty(e,a,o.get?o:{enumerable:!0,get:()=>t[a]})}}}return Object.freeze(Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}))}var s,l;function c(){if(l)return s;l=1,s=e,e.displayName="$false",e.aliases=[];function e(n){(function(r){r.languages.false={comment:{pattern:/\{[^}]*\}/},string:{pattern:/"[^"]*"/,greedy:!0},"character-code":{pattern:/'(?:[^\r]|\r\n?)/,alias:"number"},"assembler-code":{pattern:/\d+`/,alias:"important"},number:/\d+/,operator:/[-!#$%&'*+,./:;=>?@\\^_`|~ßø]/,punctuation:/\[|\]/,variable:/[a-z]/,"non-standard":{pattern:/[()<BDO®]/,alias:"bold"}}})(n)}return s}var f=c();const p=i(f),g=u({__proto__:null,default:p},[f]);export{g as _};
@@ -1 +0,0 @@
1
- import{au as l}from"./index-Brc7moWM.js";function c(e,r){for(var i=0;i<r.length;i++){const t=r[i];if(typeof t!="string"&&!Array.isArray(t)){for(const u in t)if(u!=="default"&&!(u in e)){const s=Object.getOwnPropertyDescriptor(t,u);s&&Object.defineProperty(e,u,s.get?s:{enumerable:!0,get:()=>t[u]})}}}return Object.freeze(Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}))}var o,n;function f(){if(n)return o;n=1,o=e,e.displayName="firestoreSecurityRules",e.aliases=[];function e(r){r.languages["firestore-security-rules"]=r.languages.extend("clike",{comment:/\/\/.*/,keyword:/\b(?:allow|function|if|match|null|return|rules_version|service)\b/,operator:/&&|\|\||[<>!=]=?|[-+*/%]|\b(?:in|is)\b/}),delete r.languages["firestore-security-rules"]["class-name"],r.languages.insertBefore("firestore-security-rules","keyword",{path:{pattern:/(^|[\s(),])(?:\/(?:[\w\xA0-\uFFFF]+|\{[\w\xA0-\uFFFF]+(?:=\*\*)?\}|\$\([\w\xA0-\uFFFF.]+\)))+/,lookbehind:!0,greedy:!0,inside:{variable:{pattern:/\{[\w\xA0-\uFFFF]+(?:=\*\*)?\}|\$\([\w\xA0-\uFFFF.]+\)/,inside:{operator:/=/,keyword:/\*\*/,punctuation:/[.$(){}]/}},punctuation:/\//}},method:{pattern:/(\ballow\s+)[a-z]+(?:\s*,\s*[a-z]+)*(?=\s*[:;])/,lookbehind:!0,alias:"builtin",inside:{punctuation:/,/}}})}return o}var a=f();const y=l(a),p=c({__proto__:null,default:y},[a]);export{p as f};
@@ -1 +0,0 @@
1
- import{au as s}from"./index-Brc7moWM.js";function i(a,r){for(var e=0;e<r.length;e++){const t=r[e];if(typeof t!="string"&&!Array.isArray(t)){for(const o in t)if(o!=="default"&&!(o in a)){const n=Object.getOwnPropertyDescriptor(t,o);n&&Object.defineProperty(a,o,n.get?n:{enumerable:!0,get:()=>t[o]})}}}return Object.freeze(Object.defineProperty(a,Symbol.toStringTag,{value:"Module"}))}var l,u;function p(){if(u)return l;u=1,l=a,a.displayName="flow",a.aliases=[];function a(r){(function(e){e.languages.flow=e.languages.extend("javascript",{}),e.languages.insertBefore("flow","keyword",{type:[{pattern:/\b(?:[Bb]oolean|Function|[Nn]umber|[Ss]tring|any|mixed|null|void)\b/,alias:"tag"}]}),e.languages.flow["function-variable"].pattern=/(?!\s)[_$a-z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*=\s*(?:function\b|(?:\([^()]*\)(?:\s*:\s*\w+)?|(?!\s)[_$a-z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)\s*=>))/i,delete e.languages.flow.parameter,e.languages.insertBefore("flow","operator",{"flow-punctuation":{pattern:/\{\||\|\}/,alias:"punctuation"}}),Array.isArray(e.languages.flow.keyword)||(e.languages.flow.keyword=[e.languages.flow.keyword]),e.languages.flow.keyword.unshift({pattern:/(^|[^$]\b)(?:Class|declare|opaque|type)\b(?!\$)/,lookbehind:!0},{pattern:/(^|[^$]\B)\$(?:Diff|Enum|Exact|Keys|ObjMap|PropertyType|Record|Shape|Subtype|Supertype|await)\b(?!\$)/,lookbehind:!0})})(r)}return l}var f=p();const g=s(f),c=i({__proto__:null,default:g},[f]);export{c as f};
@@ -1,6 +0,0 @@
1
- /*!-----------------------------------------------------------------------------
2
- * Copyright (c) Microsoft Corporation. All rights reserved.
3
- * Version: 0.49.0(383fdf3fc0e1e1a024068b8d0fd4f3dcbae74d04)
4
- * Released under the MIT license
5
- * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
6
- *-----------------------------------------------------------------------------*/var e={comments:{blockComment:["/*","*/"],lineComment:"//"},brackets:[["{","}"],["[","]"],["(",")"]],autoClosingPairs:[{open:"{",close:"}",notIn:["string"]},{open:"[",close:"]",notIn:["string"]},{open:"(",close:")",notIn:["string"]},{open:'"',close:'"',notIn:["string"]},{open:"'",close:"'",notIn:["string"]}],surroundingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"'},{open:"'",close:"'"},{open:"<",close:">"}]},o={defaultToken:"",tokenPostfix:".flow",keywords:["import","require","export","forbid","native","if","else","cast","unsafe","switch","default"],types:["io","mutable","bool","int","double","string","flow","void","ref","true","false","with"],operators:["=",">","<","<=",">=","==","!","!=",":=","::=","&&","||","+","-","*","/","@","&","%",":","->","\\","$","??","^"],symbols:/[@$=><!~?:&|+\-*\\\/\^%]+/,escapes:/\\(?:[abfnrtv\\"']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,tokenizer:{root:[[/[a-zA-Z_]\w*/,{cases:{"@keywords":"keyword","@types":"type","@default":"identifier"}}],{include:"@whitespace"},[/[{}()\[\]]/,"delimiter"],[/[<>](?!@symbols)/,"delimiter"],[/@symbols/,{cases:{"@operators":"delimiter","@default":""}}],[/((0(x|X)[0-9a-fA-F]*)|(([0-9]+\.?[0-9]*)|(\.[0-9]+))((e|E)(\+|-)?[0-9]+)?)/,"number"],[/[;,.]/,"delimiter"],[/"([^"\\]|\\.)*$/,"string.invalid"],[/"/,"string","@string"]],whitespace:[[/[ \t\r\n]+/,""],[/\/\*/,"comment","@comment"],[/\/\/.*$/,"comment"]],comment:[[/[^\/*]+/,"comment"],[/\*\//,"comment","@pop"],[/[\/*]/,"comment"]],string:[[/[^\\"]+/,"string"],[/@escapes/,"string.escape"],[/\\./,"string.escape.invalid"],[/"/,"string","@pop"]]}};export{e as conf,o as language};
@@ -1,162 +0,0 @@
1
- import{g as q1}from"./chunk-GLLZNHP4-CjNMxI4x.js";import{_ as m,p as O1,l as tt,c as bt,d as St,q as H1,r as X1,u as i1,b as Q1,s as J1,v as Z1,a as $1,g as te,x as ee,k as se,y as ie,J as re,z as ae,A as s1,B as ne,C as ue,D as oe}from"./index-Brc7moWM.js";import{g as le}from"./chunk-WVR4S24B-B9zmB2Tt.js";import{s as ce}from"./chunk-NRVI72HA-aKshiznA.js";import{c as he}from"./channel-DabOFIhE.js";import"@mui/icons-material";import"@mui/material/colors";import"@mui/material";import"@mui/x-date-pickers";import"@mui/x-date-pickers/AdapterDayjs";import"@mui/material/Popper";import"@mui/material/Avatar";import"@mui/x-date-pickers/DateTimePicker";var de="flowchart-",Pt,pe=(Pt=class{constructor(){this.vertexCounter=0,this.config=bt(),this.vertices=new Map,this.edges=[],this.classes=new Map,this.subGraphs=[],this.subGraphLookup=new Map,this.tooltips=new Map,this.subCount=0,this.firstGraphFlag=!0,this.secCount=-1,this.posCrossRef=[],this.funs=[],this.setAccTitle=Q1,this.setAccDescription=J1,this.setDiagramTitle=Z1,this.getAccTitle=$1,this.getAccDescription=te,this.getDiagramTitle=ee,this.funs.push(this.setupToolTips.bind(this)),this.addVertex=this.addVertex.bind(this),this.firstGraph=this.firstGraph.bind(this),this.setDirection=this.setDirection.bind(this),this.addSubGraph=this.addSubGraph.bind(this),this.addLink=this.addLink.bind(this),this.setLink=this.setLink.bind(this),this.updateLink=this.updateLink.bind(this),this.addClass=this.addClass.bind(this),this.setClass=this.setClass.bind(this),this.destructLink=this.destructLink.bind(this),this.setClickEvent=this.setClickEvent.bind(this),this.setTooltip=this.setTooltip.bind(this),this.updateLinkInterpolate=this.updateLinkInterpolate.bind(this),this.setClickFun=this.setClickFun.bind(this),this.bindFunctions=this.bindFunctions.bind(this),this.lex={firstGraph:this.firstGraph.bind(this)},this.clear(),this.setGen("gen-2")}sanitizeText(i){return se.sanitizeText(i,this.config)}lookUpDomId(i){for(const a of this.vertices.values())if(a.id===i)return a.domId;return i}addVertex(i,a,n,u,o,f,c={},A){var L,C;if(!i||i.trim().length===0)return;let r;if(A!==void 0){let d;A.includes(`
2
- `)?d=A+`
3
- `:d=`{
4
- `+A+`
5
- }`,r=ie(d,{schema:re})}const k=this.edges.find(d=>d.id===i);if(k){const d=r;(d==null?void 0:d.animate)!==void 0&&(k.animate=d.animate),(d==null?void 0:d.animation)!==void 0&&(k.animation=d.animation),(d==null?void 0:d.curve)!==void 0&&(k.interpolate=d.curve);return}let E,b=this.vertices.get(i);if(b===void 0&&(b={id:i,labelType:"text",domId:de+i+"-"+this.vertexCounter,styles:[],classes:[]},this.vertices.set(i,b)),this.vertexCounter++,a!==void 0?(this.config=bt(),E=this.sanitizeText(a.text.trim()),b.labelType=a.type,E.startsWith('"')&&E.endsWith('"')&&(E=E.substring(1,E.length-1)),b.text=E):b.text===void 0&&(b.text=i),n!==void 0&&(b.type=n),u!=null&&u.forEach(d=>{b.styles.push(d)}),o!=null&&o.forEach(d=>{b.classes.push(d)}),f!==void 0&&(b.dir=f),b.props===void 0?b.props=c:c!==void 0&&Object.assign(b.props,c),r!==void 0){if(r.shape){if(r.shape!==r.shape.toLowerCase()||r.shape.includes("_"))throw new Error(`No such shape: ${r.shape}. Shape names should be lowercase.`);if(!ae(r.shape))throw new Error(`No such shape: ${r.shape}.`);b.type=r==null?void 0:r.shape}r!=null&&r.label&&(b.text=r==null?void 0:r.label),r!=null&&r.icon&&(b.icon=r==null?void 0:r.icon,!((L=r.label)!=null&&L.trim())&&b.text===i&&(b.text="")),r!=null&&r.form&&(b.form=r==null?void 0:r.form),r!=null&&r.pos&&(b.pos=r==null?void 0:r.pos),r!=null&&r.img&&(b.img=r==null?void 0:r.img,!((C=r.label)!=null&&C.trim())&&b.text===i&&(b.text="")),r!=null&&r.constraint&&(b.constraint=r.constraint),r.w&&(b.assetWidth=Number(r.w)),r.h&&(b.assetHeight=Number(r.h))}}addSingleLink(i,a,n,u){const c={start:i,end:a,type:void 0,text:"",labelType:"text",classes:[],isUserDefinedId:!1,interpolate:this.edges.defaultInterpolate};tt.info("abc78 Got edge...",c);const A=n.text;if(A!==void 0&&(c.text=this.sanitizeText(A.text.trim()),c.text.startsWith('"')&&c.text.endsWith('"')&&(c.text=c.text.substring(1,c.text.length-1)),c.labelType=A.type),n!==void 0&&(c.type=n.type,c.stroke=n.stroke,c.length=n.length>10?10:n.length),u&&!this.edges.some(r=>r.id===u))c.id=u,c.isUserDefinedId=!0;else{const r=this.edges.filter(k=>k.start===c.start&&k.end===c.end);r.length===0?c.id=s1(c.start,c.end,{counter:0,prefix:"L"}):c.id=s1(c.start,c.end,{counter:r.length+1,prefix:"L"})}if(this.edges.length<(this.config.maxEdges??500))tt.info("Pushing edge..."),this.edges.push(c);else throw new Error(`Edge limit exceeded. ${this.edges.length} edges found, but the limit is ${this.config.maxEdges}.
6
-
7
- Initialize mermaid with maxEdges set to a higher number to allow more edges.
8
- You cannot set this config via configuration inside the diagram as it is a secure config.
9
- You have to call mermaid.initialize.`)}isLinkData(i){return i!==null&&typeof i=="object"&&"id"in i&&typeof i.id=="string"}addLink(i,a,n){const u=this.isLinkData(n)?n.id.replace("@",""):void 0;tt.info("addLink",i,a,u);for(const o of i)for(const f of a){const c=o===i[i.length-1],A=f===a[0];c&&A?this.addSingleLink(o,f,n,u):this.addSingleLink(o,f,n,void 0)}}updateLinkInterpolate(i,a){i.forEach(n=>{n==="default"?this.edges.defaultInterpolate=a:this.edges[n].interpolate=a})}updateLink(i,a){i.forEach(n=>{var u,o,f,c,A,r;if(typeof n=="number"&&n>=this.edges.length)throw new Error(`The index ${n} 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.)`);n==="default"?this.edges.defaultStyle=a:(this.edges[n].style=a,(((o=(u=this.edges[n])==null?void 0:u.style)==null?void 0:o.length)??0)>0&&!((c=(f=this.edges[n])==null?void 0:f.style)!=null&&c.some(k=>k==null?void 0:k.startsWith("fill")))&&((r=(A=this.edges[n])==null?void 0:A.style)==null||r.push("fill:none")))})}addClass(i,a){const n=a.join().replace(/\\,/g,"§§§").replace(/,/g,";").replace(/§§§/g,",").split(";");i.split(",").forEach(u=>{let o=this.classes.get(u);o===void 0&&(o={id:u,styles:[],textStyles:[]},this.classes.set(u,o)),n!=null&&n.forEach(f=>{if(/color/.exec(f)){const c=f.replace("fill","bgFill");o.textStyles.push(c)}o.styles.push(f)})})}setDirection(i){this.direction=i.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")}setClass(i,a){for(const n of i.split(",")){const u=this.vertices.get(n);u&&u.classes.push(a);const o=this.edges.find(c=>c.id===n);o&&o.classes.push(a);const f=this.subGraphLookup.get(n);f&&f.classes.push(a)}}setTooltip(i,a){if(a!==void 0){a=this.sanitizeText(a);for(const n of i.split(","))this.tooltips.set(this.version==="gen-1"?this.lookUpDomId(n):n,a)}}setClickFun(i,a,n){const u=this.lookUpDomId(i);if(bt().securityLevel!=="loose"||a===void 0)return;let o=[];if(typeof n=="string"){o=n.split(/,(?=(?:(?:[^"]*"){2})*[^"]*$)/);for(let c=0;c<o.length;c++){let A=o[c].trim();A.startsWith('"')&&A.endsWith('"')&&(A=A.substr(1,A.length-2)),o[c]=A}}o.length===0&&o.push(i);const f=this.vertices.get(i);f&&(f.haveCallback=!0,this.funs.push(()=>{const c=document.querySelector(`[id="${u}"]`);c!==null&&c.addEventListener("click",()=>{i1.runFunc(a,...o)},!1)}))}setLink(i,a,n){i.split(",").forEach(u=>{const o=this.vertices.get(u);o!==void 0&&(o.link=i1.formatUrl(a,this.config),o.linkTarget=n)}),this.setClass(i,"clickable")}getTooltip(i){return this.tooltips.get(i)}setClickEvent(i,a,n){i.split(",").forEach(u=>{this.setClickFun(u,a,n)}),this.setClass(i,"clickable")}bindFunctions(i){this.funs.forEach(a=>{a(i)})}getDirection(){var i;return(i=this.direction)==null?void 0:i.trim()}getVertices(){return this.vertices}getEdges(){return this.edges}getClasses(){return this.classes}setupToolTips(i){let a=St(".mermaidTooltip");(a._groups||a)[0][0]===null&&(a=St("body").append("div").attr("class","mermaidTooltip").style("opacity",0)),St(i).select("svg").selectAll("g.node").on("mouseover",o=>{var r;const f=St(o.currentTarget);if(f.attr("title")===null)return;const A=(r=o.currentTarget)==null?void 0:r.getBoundingClientRect();a.transition().duration(200).style("opacity",".9"),a.text(f.attr("title")).style("left",window.scrollX+A.left+(A.right-A.left)/2+"px").style("top",window.scrollY+A.bottom+"px"),a.html(a.html().replace(/&lt;br\/&gt;/g,"<br/>")),f.classed("hover",!0)}).on("mouseout",o=>{a.transition().duration(500).style("opacity",0),St(o.currentTarget).classed("hover",!1)})}clear(i="gen-2"){this.vertices=new Map,this.classes=new Map,this.edges=[],this.funs=[this.setupToolTips.bind(this)],this.subGraphs=[],this.subGraphLookup=new Map,this.subCount=0,this.tooltips=new Map,this.firstGraphFlag=!0,this.version=i,this.config=bt(),ne()}setGen(i){this.version=i||"gen-2"}defaultStyle(){return"fill:#ffa;stroke: #f66; stroke-width: 3px; stroke-dasharray: 5, 5;fill:#ffa;stroke: #666;"}addSubGraph(i,a,n){let u=i.text.trim(),o=n.text;i===n&&/\s/.exec(n.text)&&(u=void 0);const c=m(b=>{const L={boolean:{},number:{},string:{}},C=[];let d;return{nodeList:b.filter(function(W){const Z=typeof W;return W.stmt&&W.stmt==="dir"?(d=W.value,!1):W.trim()===""?!1:Z in L?L[Z].hasOwnProperty(W)?!1:L[Z][W]=!0:C.includes(W)?!1:C.push(W)}),dir:d}},"uniq")(a.flat()),A=c.nodeList;let r=c.dir;const k=bt().flowchart??{};if(r=r??(k.inheritDir?this.getDirection()??bt().direction??void 0:void 0),this.version==="gen-1")for(let b=0;b<A.length;b++)A[b]=this.lookUpDomId(A[b]);u=u??"subGraph"+this.subCount,o=o||"",o=this.sanitizeText(o),this.subCount=this.subCount+1;const E={id:u,nodes:A,title:o.trim(),classes:[],dir:r,labelType:n.type};return tt.info("Adding",E.id,E.nodes,E.dir),E.nodes=this.makeUniq(E,this.subGraphs).nodes,this.subGraphs.push(E),this.subGraphLookup.set(u,E),u}getPosForId(i){for(const[a,n]of this.subGraphs.entries())if(n.id===i)return a;return-1}indexNodes2(i,a){const n=this.subGraphs[a].nodes;if(this.secCount=this.secCount+1,this.secCount>2e3)return{result:!1,count:0};if(this.posCrossRef[this.secCount]=a,this.subGraphs[a].id===i)return{result:!0,count:0};let u=0,o=1;for(;u<n.length;){const f=this.getPosForId(n[u]);if(f>=0){const c=this.indexNodes2(i,f);if(c.result)return{result:!0,count:o+c.count};o=o+c.count}u=u+1}return{result:!1,count:o}}getDepthFirstPos(i){return this.posCrossRef[i]}indexNodes(){this.secCount=-1,this.subGraphs.length>0&&this.indexNodes2("none",this.subGraphs.length-1)}getSubGraphs(){return this.subGraphs}firstGraph(){return this.firstGraphFlag?(this.firstGraphFlag=!1,!0):!1}destructStartLink(i){let a=i.trim(),n="arrow_open";switch(a[0]){case"<":n="arrow_point",a=a.slice(1);break;case"x":n="arrow_cross",a=a.slice(1);break;case"o":n="arrow_circle",a=a.slice(1);break}let u="normal";return a.includes("=")&&(u="thick"),a.includes(".")&&(u="dotted"),{type:n,stroke:u}}countChar(i,a){const n=a.length;let u=0;for(let o=0;o<n;++o)a[o]===i&&++u;return u}destructEndLink(i){const a=i.trim();let n=a.slice(0,-1),u="arrow_open";switch(a.slice(-1)){case"x":u="arrow_cross",a.startsWith("x")&&(u="double_"+u,n=n.slice(1));break;case">":u="arrow_point",a.startsWith("<")&&(u="double_"+u,n=n.slice(1));break;case"o":u="arrow_circle",a.startsWith("o")&&(u="double_"+u,n=n.slice(1));break}let o="normal",f=n.length-1;n.startsWith("=")&&(o="thick"),n.startsWith("~")&&(o="invisible");const c=this.countChar(".",n);return c&&(o="dotted",f=c),{type:u,stroke:o,length:f}}destructLink(i,a){const n=this.destructEndLink(i);let u;if(a){if(u=this.destructStartLink(a),u.stroke!==n.stroke)return{type:"INVALID",stroke:"INVALID"};if(u.type==="arrow_open")u.type=n.type;else{if(u.type!==n.type)return{type:"INVALID",stroke:"INVALID"};u.type="double_"+u.type}return u.type==="double_arrow"&&(u.type="double_arrow_point"),u.length=n.length,u}return n}exists(i,a){for(const n of i)if(n.nodes.includes(a))return!0;return!1}makeUniq(i,a){const n=[];return i.nodes.forEach((u,o)=>{this.exists(a,u)||n.push(i.nodes[o])}),{nodes:n}}getTypeFromVertex(i){if(i.img)return"imageSquare";if(i.icon)return i.form==="circle"?"iconCircle":i.form==="square"?"iconSquare":i.form==="rounded"?"iconRounded":"icon";switch(i.type){case"square":case void 0:return"squareRect";case"round":return"roundedRect";case"ellipse":return"ellipse";default:return i.type}}findNode(i,a){return i.find(n=>n.id===a)}destructEdgeType(i){let a="none",n="arrow_point";switch(i){case"arrow_point":case"arrow_circle":case"arrow_cross":n=i;break;case"double_arrow_point":case"double_arrow_circle":case"double_arrow_cross":a=i.replace("double_",""),n=a;break}return{arrowTypeStart:a,arrowTypeEnd:n}}addNodeFromVertex(i,a,n,u,o,f){var k;const c=n.get(i.id),A=u.get(i.id)??!1,r=this.findNode(a,i.id);if(r)r.cssStyles=i.styles,r.cssCompiledStyles=this.getCompiledStyles(i.classes),r.cssClasses=i.classes.join(" ");else{const E={id:i.id,label:i.text,labelStyle:"",parentId:c,padding:((k=o.flowchart)==null?void 0:k.padding)||8,cssStyles:i.styles,cssCompiledStyles:this.getCompiledStyles(["default","node",...i.classes]),cssClasses:"default "+i.classes.join(" "),dir:i.dir,domId:i.domId,look:f,link:i.link,linkTarget:i.linkTarget,tooltip:this.getTooltip(i.id),icon:i.icon,pos:i.pos,img:i.img,assetWidth:i.assetWidth,assetHeight:i.assetHeight,constraint:i.constraint};A?a.push({...E,isGroup:!0,shape:"rect"}):a.push({...E,isGroup:!1,shape:this.getTypeFromVertex(i)})}}getCompiledStyles(i){let a=[];for(const n of i){const u=this.classes.get(n);u!=null&&u.styles&&(a=[...a,...u.styles??[]].map(o=>o.trim())),u!=null&&u.textStyles&&(a=[...a,...u.textStyles??[]].map(o=>o.trim()))}return a}getData(){const i=bt(),a=[],n=[],u=this.getSubGraphs(),o=new Map,f=new Map;for(let r=u.length-1;r>=0;r--){const k=u[r];k.nodes.length>0&&f.set(k.id,!0);for(const E of k.nodes)o.set(E,k.id)}for(let r=u.length-1;r>=0;r--){const k=u[r];a.push({id:k.id,label:k.title,labelStyle:"",parentId:o.get(k.id),padding:8,cssCompiledStyles:this.getCompiledStyles(k.classes),cssClasses:k.classes.join(" "),shape:"rect",dir:k.dir,isGroup:!0,look:i.look})}this.getVertices().forEach(r=>{this.addNodeFromVertex(r,a,o,f,i,i.look||"classic")});const A=this.getEdges();return A.forEach((r,k)=>{var d;const{arrowTypeStart:E,arrowTypeEnd:b}=this.destructEdgeType(r.type),L=[...A.defaultStyle??[]];r.style&&L.push(...r.style);const C={id:s1(r.start,r.end,{counter:k,prefix:"L"},r.id),isUserDefinedId:r.isUserDefinedId,start:r.start,end:r.end,type:r.type??"normal",label:r.text,labelpos:"c",thickness:r.stroke,minlen:r.length,classes:(r==null?void 0:r.stroke)==="invisible"?"":"edge-thickness-normal edge-pattern-solid flowchart-link",arrowTypeStart:(r==null?void 0:r.stroke)==="invisible"||(r==null?void 0:r.type)==="arrow_open"?"none":E,arrowTypeEnd:(r==null?void 0:r.stroke)==="invisible"||(r==null?void 0:r.type)==="arrow_open"?"none":b,arrowheadStyle:"fill: #333",cssCompiledStyles:this.getCompiledStyles(r.classes),labelStyle:L,style:L,pattern:r.stroke,look:i.look,animate:r.animate,animation:r.animation,curve:r.interpolate||this.edges.defaultInterpolate||((d=i.flowchart)==null?void 0:d.curve)};n.push(C)}),{nodes:a,edges:n,other:{},config:i}}defaultConfig(){return ue.flowchart}},m(Pt,"FlowDB"),Pt),fe=m(function(s,i){return i.db.getClasses()},"getClasses"),ge=m(async function(s,i,a,n){var L;tt.info("REF0:"),tt.info("Drawing state diagram (v2)",i);const{securityLevel:u,flowchart:o,layout:f}=bt();let c;u==="sandbox"&&(c=St("#i"+i));const A=u==="sandbox"?c.nodes()[0].contentDocument:document;tt.debug("Before getData: ");const r=n.db.getData();tt.debug("Data: ",r);const k=le(i,u),E=n.db.getDirection();r.type=n.type,r.layoutAlgorithm=H1(f),r.layoutAlgorithm==="dagre"&&f==="elk"&&tt.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."),r.direction=E,r.nodeSpacing=(o==null?void 0:o.nodeSpacing)||50,r.rankSpacing=(o==null?void 0:o.rankSpacing)||50,r.markers=["point","circle","cross"],r.diagramId=i,tt.debug("REF1:",r),await X1(r,k);const b=((L=r.config.flowchart)==null?void 0:L.diagramPadding)??8;i1.insertTitle(k,"flowchartTitleText",(o==null?void 0:o.titleTopMargin)||0,n.db.getDiagramTitle()),ce(k,b,"flowchart",(o==null?void 0:o.useMaxWidth)||!1);for(const C of r.nodes){const d=St(`#${i} [id="${C.id}"]`);if(!d||!C.link)continue;const J=A.createElementNS("http://www.w3.org/2000/svg","a");J.setAttributeNS("http://www.w3.org/2000/svg","class",C.cssClasses),J.setAttributeNS("http://www.w3.org/2000/svg","rel","noopener"),u==="sandbox"?J.setAttributeNS("http://www.w3.org/2000/svg","target","_top"):C.linkTarget&&J.setAttributeNS("http://www.w3.org/2000/svg","target",C.linkTarget);const W=d.insert(function(){return J},":first-child"),Z=d.select(".label-container");Z&&W.append(function(){return Z.node()});const At=d.select(".label");At&&W.append(function(){return At.node()})}},"draw"),be={getClasses:fe,draw:ge},r1=(function(){var s=m(function(gt,h,p,g){for(p=p||{},g=gt.length;g--;p[gt[g]]=h);return p},"o"),i=[1,4],a=[1,3],n=[1,5],u=[1,8,9,10,11,27,34,36,38,44,60,84,85,86,87,88,89,102,105,106,109,111,114,115,116,121,122,123,124],o=[2,2],f=[1,13],c=[1,14],A=[1,15],r=[1,16],k=[1,23],E=[1,25],b=[1,26],L=[1,27],C=[1,49],d=[1,48],J=[1,29],W=[1,30],Z=[1,31],At=[1,32],Mt=[1,33],V=[1,44],I=[1,46],w=[1,42],R=[1,47],N=[1,43],G=[1,50],P=[1,45],O=[1,51],M=[1,52],Ut=[1,34],Wt=[1,35],zt=[1,36],jt=[1,37],pt=[1,57],y=[1,8,9,10,11,27,32,34,36,38,44,60,84,85,86,87,88,89,102,105,106,109,111,114,115,116,121,122,123,124],et=[1,61],st=[1,60],it=[1,62],Dt=[8,9,11,75,77,78],a1=[1,78],xt=[1,91],Tt=[1,96],Et=[1,95],yt=[1,92],Ft=[1,88],_t=[1,94],Bt=[1,90],vt=[1,97],Lt=[1,93],Vt=[1,98],It=[1,89],kt=[8,9,10,11,40,75,77,78],z=[8,9,10,11,40,46,75,77,78],q=[8,9,10,11,29,40,44,46,48,50,52,54,56,58,60,63,65,67,68,70,75,77,78,89,102,105,106,109,111,114,115,116],n1=[8,9,11,44,60,75,77,78,89,102,105,106,109,111,114,115,116],wt=[44,60,89,102,105,106,109,111,114,115,116],u1=[1,121],o1=[1,122],Kt=[1,124],Yt=[1,123],l1=[44,60,62,74,89,102,105,106,109,111,114,115,116],c1=[1,133],h1=[1,147],d1=[1,148],p1=[1,149],f1=[1,150],g1=[1,135],b1=[1,137],A1=[1,141],k1=[1,142],m1=[1,143],C1=[1,144],S1=[1,145],D1=[1,146],x1=[1,151],T1=[1,152],E1=[1,131],y1=[1,132],F1=[1,139],_1=[1,134],B1=[1,138],v1=[1,136],Qt=[8,9,10,11,27,32,34,36,38,44,60,84,85,86,87,88,89,102,105,106,109,111,114,115,116,121,122,123,124],L1=[1,154],V1=[1,156],B=[8,9,11],H=[8,9,10,11,14,44,60,89,105,106,109,111,114,115,116],S=[1,176],j=[1,172],K=[1,173],D=[1,177],x=[1,174],T=[1,175],Rt=[77,116,119],F=[8,9,10,11,12,14,27,29,32,44,60,75,84,85,86,87,88,89,90,105,109,111,114,115,116],I1=[10,106],ft=[31,49,51,53,55,57,62,64,66,67,69,71,116,117,118],rt=[1,247],at=[1,245],nt=[1,249],ut=[1,243],ot=[1,244],lt=[1,246],ct=[1,248],ht=[1,250],Nt=[1,268],w1=[8,9,11,106],$=[8,9,10,11,60,84,105,106,109,110,111,112],Jt={trace:m(function(){},"trace"),yy:{},symbols_:{error:2,start:3,graphConfig:4,document:5,line:6,statement:7,SEMI:8,NEWLINE:9,SPACE:10,EOF:11,GRAPH:12,NODIR:13,DIR:14,FirstStmtSeparator:15,ending:16,endToken:17,spaceList:18,spaceListNewline:19,vertexStatement:20,separator:21,styleStatement:22,linkStyleStatement:23,classDefStatement:24,classStatement:25,clickStatement:26,subgraph:27,textNoTags:28,SQS:29,text:30,SQE:31,end:32,direction:33,acc_title:34,acc_title_value:35,acc_descr:36,acc_descr_value:37,acc_descr_multiline_value:38,shapeData:39,SHAPE_DATA:40,link:41,node:42,styledVertex:43,AMP:44,vertex:45,STYLE_SEPARATOR:46,idString:47,DOUBLECIRCLESTART:48,DOUBLECIRCLEEND:49,PS:50,PE:51,"(-":52,"-)":53,STADIUMSTART:54,STADIUMEND:55,SUBROUTINESTART:56,SUBROUTINEEND:57,VERTEX_WITH_PROPS_START:58,"NODE_STRING[field]":59,COLON:60,"NODE_STRING[value]":61,PIPE:62,CYLINDERSTART:63,CYLINDEREND:64,DIAMOND_START:65,DIAMOND_STOP:66,TAGEND:67,TRAPSTART:68,TRAPEND:69,INVTRAPSTART:70,INVTRAPEND:71,linkStatement:72,arrowText:73,TESTSTR:74,START_LINK:75,edgeText:76,LINK:77,LINK_ID:78,edgeTextToken:79,STR:80,MD_STR:81,textToken:82,keywords:83,STYLE:84,LINKSTYLE:85,CLASSDEF:86,CLASS:87,CLICK:88,DOWN:89,UP:90,textNoTagsToken:91,stylesOpt:92,"idString[vertex]":93,"idString[class]":94,CALLBACKNAME:95,CALLBACKARGS:96,HREF:97,LINK_TARGET:98,"STR[link]":99,"STR[tooltip]":100,alphaNum:101,DEFAULT:102,numList:103,INTERPOLATE:104,NUM:105,COMMA:106,style:107,styleComponent:108,NODE_STRING:109,UNIT:110,BRKT:111,PCT:112,idStringToken:113,MINUS:114,MULT:115,UNICODE_TEXT:116,TEXT:117,TAGSTART:118,EDGE_TEXT:119,alphaNumToken:120,direction_tb:121,direction_bt:122,direction_rl:123,direction_lr:124,$accept:0,$end:1},terminals_:{2:"error",8:"SEMI",9:"NEWLINE",10:"SPACE",11:"EOF",12:"GRAPH",13:"NODIR",14:"DIR",27:"subgraph",29:"SQS",31:"SQE",32:"end",34:"acc_title",35:"acc_title_value",36:"acc_descr",37:"acc_descr_value",38:"acc_descr_multiline_value",40:"SHAPE_DATA",44:"AMP",46:"STYLE_SEPARATOR",48:"DOUBLECIRCLESTART",49:"DOUBLECIRCLEEND",50:"PS",51:"PE",52:"(-",53:"-)",54:"STADIUMSTART",55:"STADIUMEND",56:"SUBROUTINESTART",57:"SUBROUTINEEND",58:"VERTEX_WITH_PROPS_START",59:"NODE_STRING[field]",60:"COLON",61:"NODE_STRING[value]",62:"PIPE",63:"CYLINDERSTART",64:"CYLINDEREND",65:"DIAMOND_START",66:"DIAMOND_STOP",67:"TAGEND",68:"TRAPSTART",69:"TRAPEND",70:"INVTRAPSTART",71:"INVTRAPEND",74:"TESTSTR",75:"START_LINK",77:"LINK",78:"LINK_ID",80:"STR",81:"MD_STR",84:"STYLE",85:"LINKSTYLE",86:"CLASSDEF",87:"CLASS",88:"CLICK",89:"DOWN",90:"UP",93:"idString[vertex]",94:"idString[class]",95:"CALLBACKNAME",96:"CALLBACKARGS",97:"HREF",98:"LINK_TARGET",99:"STR[link]",100:"STR[tooltip]",102:"DEFAULT",104:"INTERPOLATE",105:"NUM",106:"COMMA",109:"NODE_STRING",110:"UNIT",111:"BRKT",112:"PCT",114:"MINUS",115:"MULT",116:"UNICODE_TEXT",117:"TEXT",118:"TAGSTART",119:"EDGE_TEXT",121:"direction_tb",122:"direction_bt",123:"direction_rl",124:"direction_lr"},productions_:[0,[3,2],[5,0],[5,2],[6,1],[6,1],[6,1],[6,1],[6,1],[4,2],[4,2],[4,2],[4,3],[16,2],[16,1],[17,1],[17,1],[17,1],[15,1],[15,1],[15,2],[19,2],[19,2],[19,1],[19,1],[18,2],[18,1],[7,2],[7,2],[7,2],[7,2],[7,2],[7,2],[7,9],[7,6],[7,4],[7,1],[7,2],[7,2],[7,1],[21,1],[21,1],[21,1],[39,2],[39,1],[20,4],[20,3],[20,4],[20,2],[20,2],[20,1],[42,1],[42,6],[42,5],[43,1],[43,3],[45,4],[45,4],[45,6],[45,4],[45,4],[45,4],[45,8],[45,4],[45,4],[45,4],[45,6],[45,4],[45,4],[45,4],[45,4],[45,4],[45,1],[41,2],[41,3],[41,3],[41,1],[41,3],[41,4],[76,1],[76,2],[76,1],[76,1],[72,1],[72,2],[73,3],[30,1],[30,2],[30,1],[30,1],[83,1],[83,1],[83,1],[83,1],[83,1],[83,1],[83,1],[83,1],[83,1],[83,1],[83,1],[28,1],[28,2],[28,1],[28,1],[24,5],[25,5],[26,2],[26,4],[26,3],[26,5],[26,3],[26,5],[26,5],[26,7],[26,2],[26,4],[26,2],[26,4],[26,4],[26,6],[22,5],[23,5],[23,5],[23,9],[23,9],[23,7],[23,7],[103,1],[103,3],[92,1],[92,3],[107,1],[107,2],[108,1],[108,1],[108,1],[108,1],[108,1],[108,1],[108,1],[108,1],[113,1],[113,1],[113,1],[113,1],[113,1],[113,1],[113,1],[113,1],[113,1],[113,1],[113,1],[82,1],[82,1],[82,1],[82,1],[91,1],[91,1],[91,1],[91,1],[91,1],[91,1],[91,1],[91,1],[91,1],[91,1],[91,1],[79,1],[79,1],[120,1],[120,1],[120,1],[120,1],[120,1],[120,1],[120,1],[120,1],[120,1],[120,1],[120,1],[47,1],[47,2],[101,1],[101,2],[33,1],[33,1],[33,1],[33,1]],performAction:m(function(h,p,g,l,_,t,Ot){var e=t.length-1;switch(_){case 2:this.$=[];break;case 3:(!Array.isArray(t[e])||t[e].length>0)&&t[e-1].push(t[e]),this.$=t[e-1];break;case 4:case 183:this.$=t[e];break;case 11:l.setDirection("TB"),this.$="TB";break;case 12:l.setDirection(t[e-1]),this.$=t[e-1];break;case 27:this.$=t[e-1].nodes;break;case 28:case 29:case 30:case 31:case 32:this.$=[];break;case 33:this.$=l.addSubGraph(t[e-6],t[e-1],t[e-4]);break;case 34:this.$=l.addSubGraph(t[e-3],t[e-1],t[e-3]);break;case 35:this.$=l.addSubGraph(void 0,t[e-1],void 0);break;case 37:this.$=t[e].trim(),l.setAccTitle(this.$);break;case 38:case 39:this.$=t[e].trim(),l.setAccDescription(this.$);break;case 43:this.$=t[e-1]+t[e];break;case 44:this.$=t[e];break;case 45:l.addVertex(t[e-1][t[e-1].length-1],void 0,void 0,void 0,void 0,void 0,void 0,t[e]),l.addLink(t[e-3].stmt,t[e-1],t[e-2]),this.$={stmt:t[e-1],nodes:t[e-1].concat(t[e-3].nodes)};break;case 46:l.addLink(t[e-2].stmt,t[e],t[e-1]),this.$={stmt:t[e],nodes:t[e].concat(t[e-2].nodes)};break;case 47:l.addLink(t[e-3].stmt,t[e-1],t[e-2]),this.$={stmt:t[e-1],nodes:t[e-1].concat(t[e-3].nodes)};break;case 48:this.$={stmt:t[e-1],nodes:t[e-1]};break;case 49:l.addVertex(t[e-1][t[e-1].length-1],void 0,void 0,void 0,void 0,void 0,void 0,t[e]),this.$={stmt:t[e-1],nodes:t[e-1],shapeData:t[e]};break;case 50:this.$={stmt:t[e],nodes:t[e]};break;case 51:this.$=[t[e]];break;case 52:l.addVertex(t[e-5][t[e-5].length-1],void 0,void 0,void 0,void 0,void 0,void 0,t[e-4]),this.$=t[e-5].concat(t[e]);break;case 53:this.$=t[e-4].concat(t[e]);break;case 54:this.$=t[e];break;case 55:this.$=t[e-2],l.setClass(t[e-2],t[e]);break;case 56:this.$=t[e-3],l.addVertex(t[e-3],t[e-1],"square");break;case 57:this.$=t[e-3],l.addVertex(t[e-3],t[e-1],"doublecircle");break;case 58:this.$=t[e-5],l.addVertex(t[e-5],t[e-2],"circle");break;case 59:this.$=t[e-3],l.addVertex(t[e-3],t[e-1],"ellipse");break;case 60:this.$=t[e-3],l.addVertex(t[e-3],t[e-1],"stadium");break;case 61:this.$=t[e-3],l.addVertex(t[e-3],t[e-1],"subroutine");break;case 62:this.$=t[e-7],l.addVertex(t[e-7],t[e-1],"rect",void 0,void 0,void 0,Object.fromEntries([[t[e-5],t[e-3]]]));break;case 63:this.$=t[e-3],l.addVertex(t[e-3],t[e-1],"cylinder");break;case 64:this.$=t[e-3],l.addVertex(t[e-3],t[e-1],"round");break;case 65:this.$=t[e-3],l.addVertex(t[e-3],t[e-1],"diamond");break;case 66:this.$=t[e-5],l.addVertex(t[e-5],t[e-2],"hexagon");break;case 67:this.$=t[e-3],l.addVertex(t[e-3],t[e-1],"odd");break;case 68:this.$=t[e-3],l.addVertex(t[e-3],t[e-1],"trapezoid");break;case 69:this.$=t[e-3],l.addVertex(t[e-3],t[e-1],"inv_trapezoid");break;case 70:this.$=t[e-3],l.addVertex(t[e-3],t[e-1],"lean_right");break;case 71:this.$=t[e-3],l.addVertex(t[e-3],t[e-1],"lean_left");break;case 72:this.$=t[e],l.addVertex(t[e]);break;case 73:t[e-1].text=t[e],this.$=t[e-1];break;case 74:case 75:t[e-2].text=t[e-1],this.$=t[e-2];break;case 76:this.$=t[e];break;case 77:var v=l.destructLink(t[e],t[e-2]);this.$={type:v.type,stroke:v.stroke,length:v.length,text:t[e-1]};break;case 78:var v=l.destructLink(t[e],t[e-2]);this.$={type:v.type,stroke:v.stroke,length:v.length,text:t[e-1],id:t[e-3]};break;case 79:this.$={text:t[e],type:"text"};break;case 80:this.$={text:t[e-1].text+""+t[e],type:t[e-1].type};break;case 81:this.$={text:t[e],type:"string"};break;case 82:this.$={text:t[e],type:"markdown"};break;case 83:var v=l.destructLink(t[e]);this.$={type:v.type,stroke:v.stroke,length:v.length};break;case 84:var v=l.destructLink(t[e]);this.$={type:v.type,stroke:v.stroke,length:v.length,id:t[e-1]};break;case 85:this.$=t[e-1];break;case 86:this.$={text:t[e],type:"text"};break;case 87:this.$={text:t[e-1].text+""+t[e],type:t[e-1].type};break;case 88:this.$={text:t[e],type:"string"};break;case 89:case 104:this.$={text:t[e],type:"markdown"};break;case 101:this.$={text:t[e],type:"text"};break;case 102:this.$={text:t[e-1].text+""+t[e],type:t[e-1].type};break;case 103:this.$={text:t[e],type:"text"};break;case 105:this.$=t[e-4],l.addClass(t[e-2],t[e]);break;case 106:this.$=t[e-4],l.setClass(t[e-2],t[e]);break;case 107:case 115:this.$=t[e-1],l.setClickEvent(t[e-1],t[e]);break;case 108:case 116:this.$=t[e-3],l.setClickEvent(t[e-3],t[e-2]),l.setTooltip(t[e-3],t[e]);break;case 109:this.$=t[e-2],l.setClickEvent(t[e-2],t[e-1],t[e]);break;case 110:this.$=t[e-4],l.setClickEvent(t[e-4],t[e-3],t[e-2]),l.setTooltip(t[e-4],t[e]);break;case 111:this.$=t[e-2],l.setLink(t[e-2],t[e]);break;case 112:this.$=t[e-4],l.setLink(t[e-4],t[e-2]),l.setTooltip(t[e-4],t[e]);break;case 113:this.$=t[e-4],l.setLink(t[e-4],t[e-2],t[e]);break;case 114:this.$=t[e-6],l.setLink(t[e-6],t[e-4],t[e]),l.setTooltip(t[e-6],t[e-2]);break;case 117:this.$=t[e-1],l.setLink(t[e-1],t[e]);break;case 118:this.$=t[e-3],l.setLink(t[e-3],t[e-2]),l.setTooltip(t[e-3],t[e]);break;case 119:this.$=t[e-3],l.setLink(t[e-3],t[e-2],t[e]);break;case 120:this.$=t[e-5],l.setLink(t[e-5],t[e-4],t[e]),l.setTooltip(t[e-5],t[e-2]);break;case 121:this.$=t[e-4],l.addVertex(t[e-2],void 0,void 0,t[e]);break;case 122:this.$=t[e-4],l.updateLink([t[e-2]],t[e]);break;case 123:this.$=t[e-4],l.updateLink(t[e-2],t[e]);break;case 124:this.$=t[e-8],l.updateLinkInterpolate([t[e-6]],t[e-2]),l.updateLink([t[e-6]],t[e]);break;case 125:this.$=t[e-8],l.updateLinkInterpolate(t[e-6],t[e-2]),l.updateLink(t[e-6],t[e]);break;case 126:this.$=t[e-6],l.updateLinkInterpolate([t[e-4]],t[e]);break;case 127:this.$=t[e-6],l.updateLinkInterpolate(t[e-4],t[e]);break;case 128:case 130:this.$=[t[e]];break;case 129:case 131:t[e-2].push(t[e]),this.$=t[e-2];break;case 133:this.$=t[e-1]+t[e];break;case 181:this.$=t[e];break;case 182:this.$=t[e-1]+""+t[e];break;case 184:this.$=t[e-1]+""+t[e];break;case 185:this.$={stmt:"dir",value:"TB"};break;case 186:this.$={stmt:"dir",value:"BT"};break;case 187:this.$={stmt:"dir",value:"RL"};break;case 188:this.$={stmt:"dir",value:"LR"};break}},"anonymous"),table:[{3:1,4:2,9:i,10:a,12:n},{1:[3]},s(u,o,{5:6}),{4:7,9:i,10:a,12:n},{4:8,9:i,10:a,12:n},{13:[1,9],14:[1,10]},{1:[2,1],6:11,7:12,8:f,9:c,10:A,11:r,20:17,22:18,23:19,24:20,25:21,26:22,27:k,33:24,34:E,36:b,38:L,42:28,43:38,44:C,45:39,47:40,60:d,84:J,85:W,86:Z,87:At,88:Mt,89:V,102:I,105:w,106:R,109:N,111:G,113:41,114:P,115:O,116:M,121:Ut,122:Wt,123:zt,124:jt},s(u,[2,9]),s(u,[2,10]),s(u,[2,11]),{8:[1,54],9:[1,55],10:pt,15:53,18:56},s(y,[2,3]),s(y,[2,4]),s(y,[2,5]),s(y,[2,6]),s(y,[2,7]),s(y,[2,8]),{8:et,9:st,11:it,21:58,41:59,72:63,75:[1,64],77:[1,66],78:[1,65]},{8:et,9:st,11:it,21:67},{8:et,9:st,11:it,21:68},{8:et,9:st,11:it,21:69},{8:et,9:st,11:it,21:70},{8:et,9:st,11:it,21:71},{8:et,9:st,10:[1,72],11:it,21:73},s(y,[2,36]),{35:[1,74]},{37:[1,75]},s(y,[2,39]),s(Dt,[2,50],{18:76,39:77,10:pt,40:a1}),{10:[1,79]},{10:[1,80]},{10:[1,81]},{10:[1,82]},{14:xt,44:Tt,60:Et,80:[1,86],89:yt,95:[1,83],97:[1,84],101:85,105:Ft,106:_t,109:Bt,111:vt,114:Lt,115:Vt,116:It,120:87},s(y,[2,185]),s(y,[2,186]),s(y,[2,187]),s(y,[2,188]),s(kt,[2,51]),s(kt,[2,54],{46:[1,99]}),s(z,[2,72],{113:112,29:[1,100],44:C,48:[1,101],50:[1,102],52:[1,103],54:[1,104],56:[1,105],58:[1,106],60:d,63:[1,107],65:[1,108],67:[1,109],68:[1,110],70:[1,111],89:V,102:I,105:w,106:R,109:N,111:G,114:P,115:O,116:M}),s(q,[2,181]),s(q,[2,142]),s(q,[2,143]),s(q,[2,144]),s(q,[2,145]),s(q,[2,146]),s(q,[2,147]),s(q,[2,148]),s(q,[2,149]),s(q,[2,150]),s(q,[2,151]),s(q,[2,152]),s(u,[2,12]),s(u,[2,18]),s(u,[2,19]),{9:[1,113]},s(n1,[2,26],{18:114,10:pt}),s(y,[2,27]),{42:115,43:38,44:C,45:39,47:40,60:d,89:V,102:I,105:w,106:R,109:N,111:G,113:41,114:P,115:O,116:M},s(y,[2,40]),s(y,[2,41]),s(y,[2,42]),s(wt,[2,76],{73:116,62:[1,118],74:[1,117]}),{76:119,79:120,80:u1,81:o1,116:Kt,119:Yt},{75:[1,125],77:[1,126]},s(l1,[2,83]),s(y,[2,28]),s(y,[2,29]),s(y,[2,30]),s(y,[2,31]),s(y,[2,32]),{10:c1,12:h1,14:d1,27:p1,28:127,32:f1,44:g1,60:b1,75:A1,80:[1,129],81:[1,130],83:140,84:k1,85:m1,86:C1,87:S1,88:D1,89:x1,90:T1,91:128,105:E1,109:y1,111:F1,114:_1,115:B1,116:v1},s(Qt,o,{5:153}),s(y,[2,37]),s(y,[2,38]),s(Dt,[2,48],{44:L1}),s(Dt,[2,49],{18:155,10:pt,40:V1}),s(kt,[2,44]),{44:C,47:157,60:d,89:V,102:I,105:w,106:R,109:N,111:G,113:41,114:P,115:O,116:M},{102:[1,158],103:159,105:[1,160]},{44:C,47:161,60:d,89:V,102:I,105:w,106:R,109:N,111:G,113:41,114:P,115:O,116:M},{44:C,47:162,60:d,89:V,102:I,105:w,106:R,109:N,111:G,113:41,114:P,115:O,116:M},s(B,[2,107],{10:[1,163],96:[1,164]}),{80:[1,165]},s(B,[2,115],{120:167,10:[1,166],14:xt,44:Tt,60:Et,89:yt,105:Ft,106:_t,109:Bt,111:vt,114:Lt,115:Vt,116:It}),s(B,[2,117],{10:[1,168]}),s(H,[2,183]),s(H,[2,170]),s(H,[2,171]),s(H,[2,172]),s(H,[2,173]),s(H,[2,174]),s(H,[2,175]),s(H,[2,176]),s(H,[2,177]),s(H,[2,178]),s(H,[2,179]),s(H,[2,180]),{44:C,47:169,60:d,89:V,102:I,105:w,106:R,109:N,111:G,113:41,114:P,115:O,116:M},{30:170,67:S,80:j,81:K,82:171,116:D,117:x,118:T},{30:178,67:S,80:j,81:K,82:171,116:D,117:x,118:T},{30:180,50:[1,179],67:S,80:j,81:K,82:171,116:D,117:x,118:T},{30:181,67:S,80:j,81:K,82:171,116:D,117:x,118:T},{30:182,67:S,80:j,81:K,82:171,116:D,117:x,118:T},{30:183,67:S,80:j,81:K,82:171,116:D,117:x,118:T},{109:[1,184]},{30:185,67:S,80:j,81:K,82:171,116:D,117:x,118:T},{30:186,65:[1,187],67:S,80:j,81:K,82:171,116:D,117:x,118:T},{30:188,67:S,80:j,81:K,82:171,116:D,117:x,118:T},{30:189,67:S,80:j,81:K,82:171,116:D,117:x,118:T},{30:190,67:S,80:j,81:K,82:171,116:D,117:x,118:T},s(q,[2,182]),s(u,[2,20]),s(n1,[2,25]),s(Dt,[2,46],{39:191,18:192,10:pt,40:a1}),s(wt,[2,73],{10:[1,193]}),{10:[1,194]},{30:195,67:S,80:j,81:K,82:171,116:D,117:x,118:T},{77:[1,196],79:197,116:Kt,119:Yt},s(Rt,[2,79]),s(Rt,[2,81]),s(Rt,[2,82]),s(Rt,[2,168]),s(Rt,[2,169]),{76:198,79:120,80:u1,81:o1,116:Kt,119:Yt},s(l1,[2,84]),{8:et,9:st,10:c1,11:it,12:h1,14:d1,21:200,27:p1,29:[1,199],32:f1,44:g1,60:b1,75:A1,83:140,84:k1,85:m1,86:C1,87:S1,88:D1,89:x1,90:T1,91:201,105:E1,109:y1,111:F1,114:_1,115:B1,116:v1},s(F,[2,101]),s(F,[2,103]),s(F,[2,104]),s(F,[2,157]),s(F,[2,158]),s(F,[2,159]),s(F,[2,160]),s(F,[2,161]),s(F,[2,162]),s(F,[2,163]),s(F,[2,164]),s(F,[2,165]),s(F,[2,166]),s(F,[2,167]),s(F,[2,90]),s(F,[2,91]),s(F,[2,92]),s(F,[2,93]),s(F,[2,94]),s(F,[2,95]),s(F,[2,96]),s(F,[2,97]),s(F,[2,98]),s(F,[2,99]),s(F,[2,100]),{6:11,7:12,8:f,9:c,10:A,11:r,20:17,22:18,23:19,24:20,25:21,26:22,27:k,32:[1,202],33:24,34:E,36:b,38:L,42:28,43:38,44:C,45:39,47:40,60:d,84:J,85:W,86:Z,87:At,88:Mt,89:V,102:I,105:w,106:R,109:N,111:G,113:41,114:P,115:O,116:M,121:Ut,122:Wt,123:zt,124:jt},{10:pt,18:203},{44:[1,204]},s(kt,[2,43]),{10:[1,205],44:C,60:d,89:V,102:I,105:w,106:R,109:N,111:G,113:112,114:P,115:O,116:M},{10:[1,206]},{10:[1,207],106:[1,208]},s(I1,[2,128]),{10:[1,209],44:C,60:d,89:V,102:I,105:w,106:R,109:N,111:G,113:112,114:P,115:O,116:M},{10:[1,210],44:C,60:d,89:V,102:I,105:w,106:R,109:N,111:G,113:112,114:P,115:O,116:M},{80:[1,211]},s(B,[2,109],{10:[1,212]}),s(B,[2,111],{10:[1,213]}),{80:[1,214]},s(H,[2,184]),{80:[1,215],98:[1,216]},s(kt,[2,55],{113:112,44:C,60:d,89:V,102:I,105:w,106:R,109:N,111:G,114:P,115:O,116:M}),{31:[1,217],67:S,82:218,116:D,117:x,118:T},s(ft,[2,86]),s(ft,[2,88]),s(ft,[2,89]),s(ft,[2,153]),s(ft,[2,154]),s(ft,[2,155]),s(ft,[2,156]),{49:[1,219],67:S,82:218,116:D,117:x,118:T},{30:220,67:S,80:j,81:K,82:171,116:D,117:x,118:T},{51:[1,221],67:S,82:218,116:D,117:x,118:T},{53:[1,222],67:S,82:218,116:D,117:x,118:T},{55:[1,223],67:S,82:218,116:D,117:x,118:T},{57:[1,224],67:S,82:218,116:D,117:x,118:T},{60:[1,225]},{64:[1,226],67:S,82:218,116:D,117:x,118:T},{66:[1,227],67:S,82:218,116:D,117:x,118:T},{30:228,67:S,80:j,81:K,82:171,116:D,117:x,118:T},{31:[1,229],67:S,82:218,116:D,117:x,118:T},{67:S,69:[1,230],71:[1,231],82:218,116:D,117:x,118:T},{67:S,69:[1,233],71:[1,232],82:218,116:D,117:x,118:T},s(Dt,[2,45],{18:155,10:pt,40:V1}),s(Dt,[2,47],{44:L1}),s(wt,[2,75]),s(wt,[2,74]),{62:[1,234],67:S,82:218,116:D,117:x,118:T},s(wt,[2,77]),s(Rt,[2,80]),{77:[1,235],79:197,116:Kt,119:Yt},{30:236,67:S,80:j,81:K,82:171,116:D,117:x,118:T},s(Qt,o,{5:237}),s(F,[2,102]),s(y,[2,35]),{43:238,44:C,45:39,47:40,60:d,89:V,102:I,105:w,106:R,109:N,111:G,113:41,114:P,115:O,116:M},{10:pt,18:239},{10:rt,60:at,84:nt,92:240,105:ut,107:241,108:242,109:ot,110:lt,111:ct,112:ht},{10:rt,60:at,84:nt,92:251,104:[1,252],105:ut,107:241,108:242,109:ot,110:lt,111:ct,112:ht},{10:rt,60:at,84:nt,92:253,104:[1,254],105:ut,107:241,108:242,109:ot,110:lt,111:ct,112:ht},{105:[1,255]},{10:rt,60:at,84:nt,92:256,105:ut,107:241,108:242,109:ot,110:lt,111:ct,112:ht},{44:C,47:257,60:d,89:V,102:I,105:w,106:R,109:N,111:G,113:41,114:P,115:O,116:M},s(B,[2,108]),{80:[1,258]},{80:[1,259],98:[1,260]},s(B,[2,116]),s(B,[2,118],{10:[1,261]}),s(B,[2,119]),s(z,[2,56]),s(ft,[2,87]),s(z,[2,57]),{51:[1,262],67:S,82:218,116:D,117:x,118:T},s(z,[2,64]),s(z,[2,59]),s(z,[2,60]),s(z,[2,61]),{109:[1,263]},s(z,[2,63]),s(z,[2,65]),{66:[1,264],67:S,82:218,116:D,117:x,118:T},s(z,[2,67]),s(z,[2,68]),s(z,[2,70]),s(z,[2,69]),s(z,[2,71]),s([10,44,60,89,102,105,106,109,111,114,115,116],[2,85]),s(wt,[2,78]),{31:[1,265],67:S,82:218,116:D,117:x,118:T},{6:11,7:12,8:f,9:c,10:A,11:r,20:17,22:18,23:19,24:20,25:21,26:22,27:k,32:[1,266],33:24,34:E,36:b,38:L,42:28,43:38,44:C,45:39,47:40,60:d,84:J,85:W,86:Z,87:At,88:Mt,89:V,102:I,105:w,106:R,109:N,111:G,113:41,114:P,115:O,116:M,121:Ut,122:Wt,123:zt,124:jt},s(kt,[2,53]),{43:267,44:C,45:39,47:40,60:d,89:V,102:I,105:w,106:R,109:N,111:G,113:41,114:P,115:O,116:M},s(B,[2,121],{106:Nt}),s(w1,[2,130],{108:269,10:rt,60:at,84:nt,105:ut,109:ot,110:lt,111:ct,112:ht}),s($,[2,132]),s($,[2,134]),s($,[2,135]),s($,[2,136]),s($,[2,137]),s($,[2,138]),s($,[2,139]),s($,[2,140]),s($,[2,141]),s(B,[2,122],{106:Nt}),{10:[1,270]},s(B,[2,123],{106:Nt}),{10:[1,271]},s(I1,[2,129]),s(B,[2,105],{106:Nt}),s(B,[2,106],{113:112,44:C,60:d,89:V,102:I,105:w,106:R,109:N,111:G,114:P,115:O,116:M}),s(B,[2,110]),s(B,[2,112],{10:[1,272]}),s(B,[2,113]),{98:[1,273]},{51:[1,274]},{62:[1,275]},{66:[1,276]},{8:et,9:st,11:it,21:277},s(y,[2,34]),s(kt,[2,52]),{10:rt,60:at,84:nt,105:ut,107:278,108:242,109:ot,110:lt,111:ct,112:ht},s($,[2,133]),{14:xt,44:Tt,60:Et,89:yt,101:279,105:Ft,106:_t,109:Bt,111:vt,114:Lt,115:Vt,116:It,120:87},{14:xt,44:Tt,60:Et,89:yt,101:280,105:Ft,106:_t,109:Bt,111:vt,114:Lt,115:Vt,116:It,120:87},{98:[1,281]},s(B,[2,120]),s(z,[2,58]),{30:282,67:S,80:j,81:K,82:171,116:D,117:x,118:T},s(z,[2,66]),s(Qt,o,{5:283}),s(w1,[2,131],{108:269,10:rt,60:at,84:nt,105:ut,109:ot,110:lt,111:ct,112:ht}),s(B,[2,126],{120:167,10:[1,284],14:xt,44:Tt,60:Et,89:yt,105:Ft,106:_t,109:Bt,111:vt,114:Lt,115:Vt,116:It}),s(B,[2,127],{120:167,10:[1,285],14:xt,44:Tt,60:Et,89:yt,105:Ft,106:_t,109:Bt,111:vt,114:Lt,115:Vt,116:It}),s(B,[2,114]),{31:[1,286],67:S,82:218,116:D,117:x,118:T},{6:11,7:12,8:f,9:c,10:A,11:r,20:17,22:18,23:19,24:20,25:21,26:22,27:k,32:[1,287],33:24,34:E,36:b,38:L,42:28,43:38,44:C,45:39,47:40,60:d,84:J,85:W,86:Z,87:At,88:Mt,89:V,102:I,105:w,106:R,109:N,111:G,113:41,114:P,115:O,116:M,121:Ut,122:Wt,123:zt,124:jt},{10:rt,60:at,84:nt,92:288,105:ut,107:241,108:242,109:ot,110:lt,111:ct,112:ht},{10:rt,60:at,84:nt,92:289,105:ut,107:241,108:242,109:ot,110:lt,111:ct,112:ht},s(z,[2,62]),s(y,[2,33]),s(B,[2,124],{106:Nt}),s(B,[2,125],{106:Nt})],defaultActions:{},parseError:m(function(h,p){if(p.recoverable)this.trace(h);else{var g=new Error(h);throw g.hash=p,g}},"parseError"),parse:m(function(h){var p=this,g=[0],l=[],_=[null],t=[],Ot=this.table,e="",v=0,R1=0,z1=2,N1=1,j1=t.slice.call(arguments,1),U=Object.create(this.lexer),mt={yy:{}};for(var Zt in this.yy)Object.prototype.hasOwnProperty.call(this.yy,Zt)&&(mt.yy[Zt]=this.yy[Zt]);U.setInput(h,mt.yy),mt.yy.lexer=U,mt.yy.parser=this,typeof U.yylloc>"u"&&(U.yylloc={});var $t=U.yylloc;t.push($t);var K1=U.options&&U.options.ranges;typeof mt.yy.parseError=="function"?this.parseError=mt.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function Y1(X){g.length=g.length-2*X,_.length=_.length-X,t.length=t.length-X}m(Y1,"popStack");function G1(){var X;return X=l.pop()||U.lex()||N1,typeof X!="number"&&(X instanceof Array&&(l=X,X=l.pop()),X=p.symbols_[X]||X),X}m(G1,"lex");for(var Y,Ct,Q,t1,Gt={},Ht,dt,P1,Xt;;){if(Ct=g[g.length-1],this.defaultActions[Ct]?Q=this.defaultActions[Ct]:((Y===null||typeof Y>"u")&&(Y=G1()),Q=Ot[Ct]&&Ot[Ct][Y]),typeof Q>"u"||!Q.length||!Q[0]){var e1="";Xt=[];for(Ht in Ot[Ct])this.terminals_[Ht]&&Ht>z1&&Xt.push("'"+this.terminals_[Ht]+"'");U.showPosition?e1="Parse error on line "+(v+1)+`:
10
- `+U.showPosition()+`
11
- Expecting `+Xt.join(", ")+", got '"+(this.terminals_[Y]||Y)+"'":e1="Parse error on line "+(v+1)+": Unexpected "+(Y==N1?"end of input":"'"+(this.terminals_[Y]||Y)+"'"),this.parseError(e1,{text:U.match,token:this.terminals_[Y]||Y,line:U.yylineno,loc:$t,expected:Xt})}if(Q[0]instanceof Array&&Q.length>1)throw new Error("Parse Error: multiple actions possible at state: "+Ct+", token: "+Y);switch(Q[0]){case 1:g.push(Y),_.push(U.yytext),t.push(U.yylloc),g.push(Q[1]),Y=null,R1=U.yyleng,e=U.yytext,v=U.yylineno,$t=U.yylloc;break;case 2:if(dt=this.productions_[Q[1]][1],Gt.$=_[_.length-dt],Gt._$={first_line:t[t.length-(dt||1)].first_line,last_line:t[t.length-1].last_line,first_column:t[t.length-(dt||1)].first_column,last_column:t[t.length-1].last_column},K1&&(Gt._$.range=[t[t.length-(dt||1)].range[0],t[t.length-1].range[1]]),t1=this.performAction.apply(Gt,[e,R1,v,mt.yy,Q[1],_,t].concat(j1)),typeof t1<"u")return t1;dt&&(g=g.slice(0,-1*dt*2),_=_.slice(0,-1*dt),t=t.slice(0,-1*dt)),g.push(this.productions_[Q[1]][0]),_.push(Gt.$),t.push(Gt._$),P1=Ot[g[g.length-2]][g[g.length-1]],g.push(P1);break;case 3:return!0}}return!0},"parse")},W1=(function(){var gt={EOF:1,parseError:m(function(p,g){if(this.yy.parser)this.yy.parser.parseError(p,g);else throw new Error(p)},"parseError"),setInput:m(function(h,p){return this.yy=p||this.yy||{},this._input=h,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:m(function(){var h=this._input[0];this.yytext+=h,this.yyleng++,this.offset++,this.match+=h,this.matched+=h;var p=h.match(/(?:\r\n?|\n).*/g);return p?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),h},"input"),unput:m(function(h){var p=h.length,g=h.split(/(?:\r\n?|\n)/g);this._input=h+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-p),this.offset-=p;var l=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),g.length-1&&(this.yylineno-=g.length-1);var _=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:g?(g.length===l.length?this.yylloc.first_column:0)+l[l.length-g.length].length-g[0].length:this.yylloc.first_column-p},this.options.ranges&&(this.yylloc.range=[_[0],_[0]+this.yyleng-p]),this.yyleng=this.yytext.length,this},"unput"),more:m(function(){return this._more=!0,this},"more"),reject:m(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).
12
- `+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:m(function(h){this.unput(this.match.slice(h))},"less"),pastInput:m(function(){var h=this.matched.substr(0,this.matched.length-this.match.length);return(h.length>20?"...":"")+h.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:m(function(){var h=this.match;return h.length<20&&(h+=this._input.substr(0,20-h.length)),(h.substr(0,20)+(h.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:m(function(){var h=this.pastInput(),p=new Array(h.length+1).join("-");return h+this.upcomingInput()+`
13
- `+p+"^"},"showPosition"),test_match:m(function(h,p){var g,l,_;if(this.options.backtrack_lexer&&(_={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(_.yylloc.range=this.yylloc.range.slice(0))),l=h[0].match(/(?:\r\n?|\n).*/g),l&&(this.yylineno+=l.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:l?l[l.length-1].length-l[l.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+h[0].length},this.yytext+=h[0],this.match+=h[0],this.matches=h,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(h[0].length),this.matched+=h[0],g=this.performAction.call(this,this.yy,this,p,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),g)return g;if(this._backtrack){for(var t in _)this[t]=_[t];return!1}return!1},"test_match"),next:m(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var h,p,g,l;this._more||(this.yytext="",this.match="");for(var _=this._currentRules(),t=0;t<_.length;t++)if(g=this._input.match(this.rules[_[t]]),g&&(!p||g[0].length>p[0].length)){if(p=g,l=t,this.options.backtrack_lexer){if(h=this.test_match(g,_[t]),h!==!1)return h;if(this._backtrack){p=!1;continue}else return!1}else if(!this.options.flex)break}return p?(h=this.test_match(p,_[l]),h!==!1?h:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text.
14
- `+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:m(function(){var p=this.next();return p||this.lex()},"lex"),begin:m(function(p){this.conditionStack.push(p)},"begin"),popState:m(function(){var p=this.conditionStack.length-1;return p>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:m(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:m(function(p){return p=this.conditionStack.length-1-Math.abs(p||0),p>=0?this.conditionStack[p]:"INITIAL"},"topState"),pushState:m(function(p){this.begin(p)},"pushState"),stateStackSize:m(function(){return this.conditionStack.length},"stateStackSize"),options:{},performAction:m(function(p,g,l,_){switch(l){case 0:return this.begin("acc_title"),34;case 1:return this.popState(),"acc_title_value";case 2:return this.begin("acc_descr"),36;case 3:return this.popState(),"acc_descr_value";case 4:this.begin("acc_descr_multiline");break;case 5:this.popState();break;case 6:return"acc_descr_multiline_value";case 7:return this.pushState("shapeData"),g.yytext="",40;case 8:return this.pushState("shapeDataStr"),40;case 9:return this.popState(),40;case 10:const t=/\n\s*/g;return g.yytext=g.yytext.replace(t,"<br/>"),40;case 11:return 40;case 12:this.popState();break;case 13:this.begin("callbackname");break;case 14:this.popState();break;case 15:this.popState(),this.begin("callbackargs");break;case 16:return 95;case 17:this.popState();break;case 18:return 96;case 19:return"MD_STR";case 20:this.popState();break;case 21:this.begin("md_string");break;case 22:return"STR";case 23:this.popState();break;case 24:this.pushState("string");break;case 25:return 84;case 26:return 102;case 27:return 85;case 28:return 104;case 29:return 86;case 30:return 87;case 31:return 97;case 32:this.begin("click");break;case 33:this.popState();break;case 34:return 88;case 35:return p.lex.firstGraph()&&this.begin("dir"),12;case 36:return p.lex.firstGraph()&&this.begin("dir"),12;case 37:return p.lex.firstGraph()&&this.begin("dir"),12;case 38:return 27;case 39:return 32;case 40:return 98;case 41:return 98;case 42:return 98;case 43:return 98;case 44:return this.popState(),13;case 45:return this.popState(),14;case 46:return this.popState(),14;case 47:return this.popState(),14;case 48:return this.popState(),14;case 49:return this.popState(),14;case 50:return this.popState(),14;case 51:return this.popState(),14;case 52:return this.popState(),14;case 53:return this.popState(),14;case 54:return this.popState(),14;case 55:return 121;case 56:return 122;case 57:return 123;case 58:return 124;case 59:return 78;case 60:return 105;case 61:return 111;case 62:return 46;case 63:return 60;case 64:return 44;case 65:return 8;case 66:return 106;case 67:return 115;case 68:return this.popState(),77;case 69:return this.pushState("edgeText"),75;case 70:return 119;case 71:return this.popState(),77;case 72:return this.pushState("thickEdgeText"),75;case 73:return 119;case 74:return this.popState(),77;case 75:return this.pushState("dottedEdgeText"),75;case 76:return 119;case 77:return 77;case 78:return this.popState(),53;case 79:return"TEXT";case 80:return this.pushState("ellipseText"),52;case 81:return this.popState(),55;case 82:return this.pushState("text"),54;case 83:return this.popState(),57;case 84:return this.pushState("text"),56;case 85:return 58;case 86:return this.pushState("text"),67;case 87:return this.popState(),64;case 88:return this.pushState("text"),63;case 89:return this.popState(),49;case 90:return this.pushState("text"),48;case 91:return this.popState(),69;case 92:return this.popState(),71;case 93:return 117;case 94:return this.pushState("trapText"),68;case 95:return this.pushState("trapText"),70;case 96:return 118;case 97:return 67;case 98:return 90;case 99:return"SEP";case 100:return 89;case 101:return 115;case 102:return 111;case 103:return 44;case 104:return 109;case 105:return 114;case 106:return 116;case 107:return this.popState(),62;case 108:return this.pushState("text"),62;case 109:return this.popState(),51;case 110:return this.pushState("text"),50;case 111:return this.popState(),31;case 112:return this.pushState("text"),29;case 113:return this.popState(),66;case 114:return this.pushState("text"),65;case 115:return"TEXT";case 116:return"QUOTE";case 117:return 9;case 118:return 10;case 119:return 11}},"anonymous"),rules:[/^(?:accTitle\s*:\s*)/,/^(?:(?!\n||)*[^\n]*)/,/^(?:accDescr\s*:\s*)/,/^(?:(?!\n||)*[^\n]*)/,/^(?:accDescr\s*\{\s*)/,/^(?:[\}])/,/^(?:[^\}]*)/,/^(?:@\{)/,/^(?:["])/,/^(?:["])/,/^(?:[^\"]+)/,/^(?:[^}^"]+)/,/^(?:\})/,/^(?:call[\s]+)/,/^(?:\([\s]*\))/,/^(?:\()/,/^(?:[^(]*)/,/^(?:\))/,/^(?:[^)]*)/,/^(?:[^`"]+)/,/^(?:[`]["])/,/^(?:["][`])/,/^(?:[^"]+)/,/^(?:["])/,/^(?:["])/,/^(?:style\b)/,/^(?:default\b)/,/^(?:linkStyle\b)/,/^(?:interpolate\b)/,/^(?:classDef\b)/,/^(?:class\b)/,/^(?:href[\s])/,/^(?:click[\s]+)/,/^(?:[\s\n])/,/^(?:[^\s\n]*)/,/^(?:flowchart-elk\b)/,/^(?:graph\b)/,/^(?:flowchart\b)/,/^(?:subgraph\b)/,/^(?:end\b\s*)/,/^(?:_self\b)/,/^(?:_blank\b)/,/^(?:_parent\b)/,/^(?:_top\b)/,/^(?:(\r?\n)*\s*\n)/,/^(?:\s*LR\b)/,/^(?:\s*RL\b)/,/^(?:\s*TB\b)/,/^(?:\s*BT\b)/,/^(?:\s*TD\b)/,/^(?:\s*BR\b)/,/^(?:\s*<)/,/^(?:\s*>)/,/^(?:\s*\^)/,/^(?:\s*v\b)/,/^(?:.*direction\s+TB[^\n]*)/,/^(?:.*direction\s+BT[^\n]*)/,/^(?:.*direction\s+RL[^\n]*)/,/^(?:.*direction\s+LR[^\n]*)/,/^(?:[^\s\"]+@(?=[^\{\"]))/,/^(?:[0-9]+)/,/^(?:#)/,/^(?::::)/,/^(?::)/,/^(?:&)/,/^(?:;)/,/^(?:,)/,/^(?:\*)/,/^(?:\s*[xo<]?--+[-xo>]\s*)/,/^(?:\s*[xo<]?--\s*)/,/^(?:[^-]|-(?!-)+)/,/^(?:\s*[xo<]?==+[=xo>]\s*)/,/^(?:\s*[xo<]?==\s*)/,/^(?:[^=]|=(?!))/,/^(?:\s*[xo<]?-?\.+-[xo>]?\s*)/,/^(?:\s*[xo<]?-\.\s*)/,/^(?:[^\.]|\.(?!))/,/^(?:\s*~~[\~]+\s*)/,/^(?:[-/\)][\)])/,/^(?:[^\(\)\[\]\{\}]|!\)+)/,/^(?:\(-)/,/^(?:\]\))/,/^(?:\(\[)/,/^(?:\]\])/,/^(?:\[\[)/,/^(?:\[\|)/,/^(?:>)/,/^(?:\)\])/,/^(?:\[\()/,/^(?:\)\)\))/,/^(?:\(\(\()/,/^(?:[\\(?=\])][\]])/,/^(?:\/(?=\])\])/,/^(?:\/(?!\])|\\(?!\])|[^\\\[\]\(\)\{\}\/]+)/,/^(?:\[\/)/,/^(?:\[\\)/,/^(?:<)/,/^(?:>)/,/^(?:\^)/,/^(?:\\\|)/,/^(?:v\b)/,/^(?:\*)/,/^(?:#)/,/^(?:&)/,/^(?:([A-Za-z0-9!"\#$%&'*+\.`?\\_\/]|-(?=[^\>\-\.])|(?!))+)/,/^(?:-)/,/^(?:[\u00AA\u00B5\u00BA\u00C0-\u00D6\u00D8-\u00F6]|[\u00F8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377]|[\u037A-\u037D\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5]|[\u03F7-\u0481\u048A-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA]|[\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE]|[\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA]|[\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u08A0]|[\u08A2-\u08AC\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0977]|[\u0979-\u097F\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2]|[\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A]|[\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39]|[\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8]|[\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0B05-\u0B0C]|[\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C]|[\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99]|[\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0]|[\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C3D]|[\u0C58\u0C59\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3]|[\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10]|[\u0D12-\u0D3A\u0D3D\u0D4E\u0D60\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1]|[\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81]|[\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3]|[\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6]|[\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A]|[\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081]|[\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D]|[\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0]|[\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310]|[\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F4\u1401-\u166C]|[\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u1700-\u170C\u170E-\u1711]|[\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7]|[\u17DC\u1820-\u1877\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191C]|[\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19C1-\u19C7\u1A00-\u1A16]|[\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF]|[\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1CE9-\u1CEC]|[\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D]|[\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D]|[\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3]|[\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F]|[\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128]|[\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184]|[\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3]|[\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6]|[\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE]|[\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C]|[\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D]|[\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FCC]|[\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B]|[\uA640-\uA66E\uA67F-\uA697\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788]|[\uA78B-\uA78E\uA790-\uA793\uA7A0-\uA7AA\uA7F8-\uA801\uA803-\uA805]|[\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB]|[\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uAA00-\uAA28]|[\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA80-\uAAAF\uAAB1\uAAB5]|[\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4]|[\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E]|[\uABC0-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D]|[\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36]|[\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D]|[\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC]|[\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF]|[\uFFD2-\uFFD7\uFFDA-\uFFDC])/,/^(?:\|)/,/^(?:\|)/,/^(?:\))/,/^(?:\()/,/^(?:\])/,/^(?:\[)/,/^(?:(\}))/,/^(?:\{)/,/^(?:[^\[\]\(\)\{\}\|\"]+)/,/^(?:")/,/^(?:(\r?\n)+)/,/^(?:\s)/,/^(?:$)/],conditions:{shapeDataEndBracket:{rules:[21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},shapeDataStr:{rules:[9,10,21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},shapeData:{rules:[8,11,12,21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},callbackargs:{rules:[17,18,21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},callbackname:{rules:[14,15,16,21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},href:{rules:[21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},click:{rules:[21,24,33,34,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},dottedEdgeText:{rules:[21,24,74,76,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},thickEdgeText:{rules:[21,24,71,73,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},edgeText:{rules:[21,24,68,70,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},trapText:{rules:[21,24,77,80,82,84,88,90,91,92,93,94,95,108,110,112,114],inclusive:!1},ellipseText:{rules:[21,24,77,78,79,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},text:{rules:[21,24,77,80,81,82,83,84,87,88,89,90,94,95,107,108,109,110,111,112,113,114,115],inclusive:!1},vertex:{rules:[21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},dir:{rules:[21,24,44,45,46,47,48,49,50,51,52,53,54,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},acc_descr_multiline:{rules:[5,6,21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},acc_descr:{rules:[3,21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},acc_title:{rules:[1,21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},md_string:{rules:[19,20,21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},string:{rules:[21,22,23,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},INITIAL:{rules:[0,2,4,7,13,21,24,25,26,27,28,29,30,31,32,35,36,37,38,39,40,41,42,43,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,71,72,74,75,77,80,82,84,85,86,88,90,94,95,96,97,98,99,100,101,102,103,104,105,106,108,110,112,114,116,117,118,119],inclusive:!0}}};return gt})();Jt.lexer=W1;function qt(){this.yy={}}return m(qt,"Parser"),qt.prototype=Jt,Jt.Parser=qt,new qt})();r1.parser=r1;var M1=r1,U1=Object.assign({},M1);U1.parse=s=>{const i=s.replace(/}\s*\n/g,`}
15
- `);return M1.parse(i)};var Ae=U1,ke=m((s,i)=>{const a=he,n=a(s,"r"),u=a(s,"g"),o=a(s,"b");return oe(n,u,o,i)},"fade"),me=m(s=>`.label {
16
- font-family: ${s.fontFamily};
17
- color: ${s.nodeTextColor||s.textColor};
18
- }
19
- .cluster-label text {
20
- fill: ${s.titleColor};
21
- }
22
- .cluster-label span {
23
- color: ${s.titleColor};
24
- }
25
- .cluster-label span p {
26
- background-color: transparent;
27
- }
28
-
29
- .label text,span {
30
- fill: ${s.nodeTextColor||s.textColor};
31
- color: ${s.nodeTextColor||s.textColor};
32
- }
33
-
34
- .node rect,
35
- .node circle,
36
- .node ellipse,
37
- .node polygon,
38
- .node path {
39
- fill: ${s.mainBkg};
40
- stroke: ${s.nodeBorder};
41
- stroke-width: 1px;
42
- }
43
- .rough-node .label text , .node .label text, .image-shape .label, .icon-shape .label {
44
- text-anchor: middle;
45
- }
46
- // .flowchart-label .text-outer-tspan {
47
- // text-anchor: middle;
48
- // }
49
- // .flowchart-label .text-inner-tspan {
50
- // text-anchor: start;
51
- // }
52
-
53
- .node .katex path {
54
- fill: #000;
55
- stroke: #000;
56
- stroke-width: 1px;
57
- }
58
-
59
- .rough-node .label,.node .label, .image-shape .label, .icon-shape .label {
60
- text-align: center;
61
- }
62
- .node.clickable {
63
- cursor: pointer;
64
- }
65
-
66
-
67
- .root .anchor path {
68
- fill: ${s.lineColor} !important;
69
- stroke-width: 0;
70
- stroke: ${s.lineColor};
71
- }
72
-
73
- .arrowheadPath {
74
- fill: ${s.arrowheadColor};
75
- }
76
-
77
- .edgePath .path {
78
- stroke: ${s.lineColor};
79
- stroke-width: 2.0px;
80
- }
81
-
82
- .flowchart-link {
83
- stroke: ${s.lineColor};
84
- fill: none;
85
- }
86
-
87
- .edgeLabel {
88
- background-color: ${s.edgeLabelBackground};
89
- p {
90
- background-color: ${s.edgeLabelBackground};
91
- }
92
- rect {
93
- opacity: 0.5;
94
- background-color: ${s.edgeLabelBackground};
95
- fill: ${s.edgeLabelBackground};
96
- }
97
- text-align: center;
98
- }
99
-
100
- /* For html labels only */
101
- .labelBkg {
102
- background-color: ${ke(s.edgeLabelBackground,.5)};
103
- // background-color:
104
- }
105
-
106
- .cluster rect {
107
- fill: ${s.clusterBkg};
108
- stroke: ${s.clusterBorder};
109
- stroke-width: 1px;
110
- }
111
-
112
- .cluster text {
113
- fill: ${s.titleColor};
114
- }
115
-
116
- .cluster span {
117
- color: ${s.titleColor};
118
- }
119
- /* .cluster div {
120
- color: ${s.titleColor};
121
- } */
122
-
123
- div.mermaidTooltip {
124
- position: absolute;
125
- text-align: center;
126
- max-width: 200px;
127
- padding: 2px;
128
- font-family: ${s.fontFamily};
129
- font-size: 12px;
130
- background: ${s.tertiaryColor};
131
- border: 1px solid ${s.border2};
132
- border-radius: 2px;
133
- pointer-events: none;
134
- z-index: 100;
135
- }
136
-
137
- .flowchartTitleText {
138
- text-anchor: middle;
139
- font-size: 18px;
140
- fill: ${s.textColor};
141
- }
142
-
143
- rect.text {
144
- fill: none;
145
- stroke-width: 0;
146
- }
147
-
148
- .icon-shape, .image-shape {
149
- background-color: ${s.edgeLabelBackground};
150
- p {
151
- background-color: ${s.edgeLabelBackground};
152
- padding: 2px;
153
- }
154
- rect {
155
- opacity: 0.5;
156
- background-color: ${s.edgeLabelBackground};
157
- fill: ${s.edgeLabelBackground};
158
- }
159
- text-align: center;
160
- }
161
- ${q1()}
162
- `,"getStyles"),Ce=me,we={parser:Ae,get db(){return new pe},renderer:be,styles:Ce,init:m(s=>{s.flowchart||(s.flowchart={}),s.layout&&O1({layout:s.layout}),s.flowchart.arrowMarkerAbsolute=s.arrowMarkerAbsolute,O1({flowchart:{arrowMarkerAbsolute:s.arrowMarkerAbsolute}})},"init")};export{we as diagram};
@@ -1 +0,0 @@
1
- import{au as A}from"./index-Brc7moWM.js";function O(E,t){for(var n=0;n<t.length;n++){const r=t[n];if(typeof r!="string"&&!Array.isArray(r)){for(const e in r)if(e!=="default"&&!(e in E)){const o=Object.getOwnPropertyDescriptor(r,e);o&&Object.defineProperty(E,e,o.get?o:{enumerable:!0,get:()=>r[e]})}}}return Object.freeze(Object.defineProperty(E,Symbol.toStringTag,{value:"Module"}))}var T,N;function a(){if(N)return T;N=1,T=E,E.displayName="fortran",E.aliases=[];function E(t){t.languages.fortran={"quoted-number":{pattern:/[BOZ](['"])[A-F0-9]+\1/i,alias:"number"},string:{pattern:/(?:\b\w+_)?(['"])(?:\1\1|&(?:\r\n?|\n)(?:[ \t]*!.*(?:\r\n?|\n)|(?![ \t]*!))|(?!\1).)*(?:\1|&)/,inside:{comment:{pattern:/(&(?:\r\n?|\n)\s*)!.*/,lookbehind:!0}}},comment:{pattern:/!.*/,greedy:!0},boolean:/\.(?:FALSE|TRUE)\.(?:_\w+)?/i,number:/(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:[ED][+-]?\d+)?(?:_\w+)?/i,keyword:[/\b(?:CHARACTER|COMPLEX|DOUBLE ?PRECISION|INTEGER|LOGICAL|REAL)\b/i,/\b(?:END ?)?(?:BLOCK ?DATA|DO|FILE|FORALL|FUNCTION|IF|INTERFACE|MODULE(?! PROCEDURE)|PROGRAM|SELECT|SUBROUTINE|TYPE|WHERE)\b/i,/\b(?:ALLOCATABLE|ALLOCATE|BACKSPACE|CALL|CASE|CLOSE|COMMON|CONTAINS|CONTINUE|CYCLE|DATA|DEALLOCATE|DIMENSION|DO|END|EQUIVALENCE|EXIT|EXTERNAL|FORMAT|GO ?TO|IMPLICIT(?: NONE)?|INQUIRE|INTENT|INTRINSIC|MODULE PROCEDURE|NAMELIST|NULLIFY|OPEN|OPTIONAL|PARAMETER|POINTER|PRINT|PRIVATE|PUBLIC|READ|RETURN|REWIND|SAVE|SELECT|STOP|TARGET|WHILE|WRITE)\b/i,/\b(?:ASSIGNMENT|DEFAULT|ELEMENTAL|ELSE|ELSEIF|ELSEWHERE|ENTRY|IN|INCLUDE|INOUT|KIND|NULL|ONLY|OPERATOR|OUT|PURE|RECURSIVE|RESULT|SEQUENCE|STAT|THEN|USE)\b/i],operator:[/\*\*|\/\/|=>|[=\/]=|[<>]=?|::|[+\-*=%]|\.[A-Z]+\./i,{pattern:/(^|(?!\().)\/(?!\))/,lookbehind:!0}],punctuation:/\(\/|\/\)|[(),;:&]/}}return T}var L=a();const I=A(L),i=O({__proto__:null,default:I},[L]);export{i as f};
@@ -1,8 +0,0 @@
1
- import{m as f}from"./index-Brc7moWM.js";import"@mui/icons-material";import"@mui/material/colors";import"@mui/material";import"@mui/x-date-pickers";import"@mui/x-date-pickers/AdapterDayjs";import"@mui/material/Popper";import"@mui/material/Avatar";import"@mui/x-date-pickers/DateTimePicker";/*!-----------------------------------------------------------------------------
2
- * Copyright (c) Microsoft Corporation. All rights reserved.
3
- * Version: 0.49.0(383fdf3fc0e1e1a024068b8d0fd4f3dcbae74d04)
4
- * Released under the MIT license
5
- * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
6
- *-----------------------------------------------------------------------------*/var F=Object.defineProperty,b=Object.getOwnPropertyDescriptor,x=Object.getOwnPropertyNames,$=Object.prototype.hasOwnProperty,v=(t,n,_,e)=>{if(n&&typeof n=="object"||typeof n=="function")for(let o of x(n))!$.call(t,o)&&o!==_&&F(t,o,{get:()=>n[o],enumerable:!(e=b(n,o))||e.enumerable});return t},E=(t,n,_)=>(v(t,n,"default"),_),r={};E(r,f);var d=["assign","flush","ftl","return","global","import","include","break","continue","local","nested","nt","setting","stop","t","lt","rt","fallback"],s=["attempt","autoesc","autoEsc","compress","comment","escape","noescape","function","if","list","items","sep","macro","noparse","noParse","noautoesc","noAutoEsc","outputformat","switch","visit","recurse"],a={close:">",id:"angle",open:"<"},u={close:"\\]",id:"bracket",open:"\\["},D={close:"[>\\]]",id:"auto",open:"[<\\[]"},k={close:"\\}",id:"dollar",open1:"\\$",open2:"\\{"},p={close:"\\]",id:"bracket",open1:"\\[",open2:"="};function l(t){return{brackets:[["<",">"],["[","]"],["(",")"],["{","}"]],comments:{blockComment:[`${t.open}--`,`--${t.close}`]},autoCloseBefore:`
7
- \r }]),.:;=`,autoClosingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"',notIn:["string"]},{open:"'",close:"'",notIn:["string"]}],surroundingPairs:[{open:'"',close:'"'},{open:"'",close:"'"},{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:"<",close:">"}],folding:{markers:{start:new RegExp(`${t.open}#(?:${s.join("|")})([^/${t.close}]*(?!/)${t.close})[^${t.open}]*$`),end:new RegExp(`${t.open}/#(?:${s.join("|")})[\\r\\n\\t ]*>`)}},onEnterRules:[{beforeText:new RegExp(`${t.open}#(?!(?:${d.join("|")}))([a-zA-Z_]+)([^/${t.close}]*(?!/)${t.close})[^${t.open}]*$`),afterText:new RegExp(`^${t.open}/#([a-zA-Z_]+)[\\r\\n\\t ]*${t.close}$`),action:{indentAction:r.languages.IndentAction.IndentOutdent}},{beforeText:new RegExp(`${t.open}#(?!(?:${d.join("|")}))([a-zA-Z_]+)([^/${t.close}]*(?!/)${t.close})[^${t.open}]*$`),action:{indentAction:r.languages.IndentAction.Indent}}]}}function g(){return{brackets:[["<",">"],["[","]"],["(",")"],["{","}"]],autoCloseBefore:`
8
- \r }]),.:;=`,autoClosingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"',notIn:["string"]},{open:"'",close:"'",notIn:["string"]}],surroundingPairs:[{open:'"',close:'"'},{open:"'",close:"'"},{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:"<",close:">"}],folding:{markers:{start:new RegExp(`[<\\[]#(?:${s.join("|")})([^/>\\]]*(?!/)[>\\]])[^<\\[]*$`),end:new RegExp(`[<\\[]/#(?:${s.join("|")})[\\r\\n\\t ]*>`)}},onEnterRules:[{beforeText:new RegExp(`[<\\[]#(?!(?:${d.join("|")}))([a-zA-Z_]+)([^/>\\]]*(?!/)[>\\]])[^[<\\[]]*$`),afterText:new RegExp("^[<\\[]/#([a-zA-Z_]+)[\\r\\n\\t ]*[>\\]]$"),action:{indentAction:r.languages.IndentAction.IndentOutdent}},{beforeText:new RegExp(`[<\\[]#(?!(?:${d.join("|")}))([a-zA-Z_]+)([^/>\\]]*(?!/)[>\\]])[^[<\\[]]*$`),action:{indentAction:r.languages.IndentAction.Indent}}]}}function i(t,n){const _=`_${t.id}_${n.id}`,e=c=>c.replace(/__id__/g,_),o=c=>{const m=c.source.replace(/__id__/g,_);return new RegExp(m,c.flags)};return{unicode:!0,includeLF:!1,start:e("default__id__"),ignoreCase:!1,defaultToken:"invalid",tokenPostfix:".freemarker2",brackets:[{open:"{",close:"}",token:"delimiter.curly"},{open:"[",close:"]",token:"delimiter.square"},{open:"(",close:")",token:"delimiter.parenthesis"},{open:"<",close:">",token:"delimiter.angle"}],[e("open__id__")]:new RegExp(t.open),[e("close__id__")]:new RegExp(t.close),[e("iOpen1__id__")]:new RegExp(n.open1),[e("iOpen2__id__")]:new RegExp(n.open2),[e("iClose__id__")]:new RegExp(n.close),[e("startTag__id__")]:o(/(@open__id__)(#)/),[e("endTag__id__")]:o(/(@open__id__)(\/#)/),[e("startOrEndTag__id__")]:o(/(@open__id__)(\/?#)/),[e("closeTag1__id__")]:o(/((?:@blank)*)(@close__id__)/),[e("closeTag2__id__")]:o(/((?:@blank)*\/?)(@close__id__)/),blank:/[ \t\n\r]/,keywords:["false","true","in","as","using"],directiveStartCloseTag1:/attempt|recover|sep|auto[eE]sc|no(?:autoe|AutoE)sc|compress|default|no[eE]scape|comment|no[pP]arse/,directiveStartCloseTag2:/else|break|continue|return|stop|flush|t|lt|rt|nt|nested|recurse|fallback|ftl/,directiveStartBlank:/if|else[iI]f|list|for[eE]ach|switch|case|assign|global|local|include|import|function|macro|transform|visit|stop|return|call|setting|output[fF]ormat|nested|recurse|escape|ftl|items/,directiveEndCloseTag1:/if|list|items|sep|recover|attempt|for[eE]ach|local|global|assign|function|macro|output[fF]ormat|auto[eE]sc|no(?:autoe|AutoE)sc|compress|transform|switch|escape|no[eE]scape/,escapedChar:/\\(?:[ntrfbgla\\'"\{=]|(?:x[0-9A-Fa-f]{1,4}))/,asciiDigit:/[0-9]/,integer:/[0-9]+/,nonEscapedIdStartChar:/[\$@-Z_a-z\u00AA\u00B5\u00BA\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u1FFF\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\u3040-\u318F\u31A0-\u31BA\u31F0-\u31FF\u3300-\u337F\u3400-\u4DB5\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\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\uA8D0-\uA8D9\uA8F2-\uA8F7\uA8FB\uA900-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF-\uA9D9\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA50-\uAA59\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\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\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\uFF10-\uFF19\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]/,escapedIdChar:/\\[\-\.:#]/,idStartChar:/(?:@nonEscapedIdStartChar)|(?:@escapedIdChar)/,id:/(?:@idStartChar)(?:(?:@idStartChar)|(?:@asciiDigit))*/,specialHashKeys:/\*\*|\*|false|true|in|as|using/,namedSymbols:/&lt;=|&gt;=|\\lte|\\lt|&lt;|\\gte|\\gt|&gt;|&amp;&amp;|\\and|-&gt;|->|==|!=|\+=|-=|\*=|\/=|%=|\+\+|--|<=|&&|\|\||:|\.\.\.|\.\.\*|\.\.<|\.\.!|\?\?|=|<|\+|-|\*|\/|%|\||\.\.|\?|!|&|\.|,|;/,arrows:["->","-&gt;"],delimiters:[";",":",",","."],stringOperators:["lte","lt","gte","gt"],noParseTags:["noparse","noParse","comment"],tokenizer:{[e("default__id__")]:[{include:e("@directive_token__id__")},{include:e("@interpolation_and_text_token__id__")}],[e("fmExpression__id__.directive")]:[{include:e("@blank_and_expression_comment_token__id__")},{include:e("@directive_end_token__id__")},{include:e("@expression_token__id__")}],[e("fmExpression__id__.interpolation")]:[{include:e("@blank_and_expression_comment_token__id__")},{include:e("@expression_token__id__")},{include:e("@greater_operators_token__id__")}],[e("inParen__id__.plain")]:[{include:e("@blank_and_expression_comment_token__id__")},{include:e("@directive_end_token__id__")},{include:e("@expression_token__id__")}],[e("inParen__id__.gt")]:[{include:e("@blank_and_expression_comment_token__id__")},{include:e("@expression_token__id__")},{include:e("@greater_operators_token__id__")}],[e("noSpaceExpression__id__")]:[{include:e("@no_space_expression_end_token__id__")},{include:e("@directive_end_token__id__")},{include:e("@expression_token__id__")}],[e("unifiedCall__id__")]:[{include:e("@unified_call_token__id__")}],[e("singleString__id__")]:[{include:e("@string_single_token__id__")}],[e("doubleString__id__")]:[{include:e("@string_double_token__id__")}],[e("rawSingleString__id__")]:[{include:e("@string_single_raw_token__id__")}],[e("rawDoubleString__id__")]:[{include:e("@string_double_raw_token__id__")}],[e("expressionComment__id__")]:[{include:e("@expression_comment_token__id__")}],[e("noParse__id__")]:[{include:e("@no_parse_token__id__")}],[e("terseComment__id__")]:[{include:e("@terse_comment_token__id__")}],[e("directive_token__id__")]:[[o(/(?:@startTag__id__)(@directiveStartCloseTag1)(?:@closeTag1__id__)/),t.id==="auto"?{cases:{"$1==<":{token:"@rematch",switchTo:`@default_angle_${n.id}`},"$1==[":{token:"@rematch",switchTo:`@default_bracket_${n.id}`}}}:[{token:"@brackets.directive"},{token:"delimiter.directive"},{cases:{"@noParseTags":{token:"tag",next:e("@noParse__id__.$3")},"@default":{token:"tag"}}},{token:"delimiter.directive"},{token:"@brackets.directive"}]],[o(/(?:@startTag__id__)(@directiveStartCloseTag2)(?:@closeTag2__id__)/),t.id==="auto"?{cases:{"$1==<":{token:"@rematch",switchTo:`@default_angle_${n.id}`},"$1==[":{token:"@rematch",switchTo:`@default_bracket_${n.id}`}}}:[{token:"@brackets.directive"},{token:"delimiter.directive"},{token:"tag"},{token:"delimiter.directive"},{token:"@brackets.directive"}]],[o(/(?:@startTag__id__)(@directiveStartBlank)(@blank)/),t.id==="auto"?{cases:{"$1==<":{token:"@rematch",switchTo:`@default_angle_${n.id}`},"$1==[":{token:"@rematch",switchTo:`@default_bracket_${n.id}`}}}:[{token:"@brackets.directive"},{token:"delimiter.directive"},{token:"tag"},{token:"",next:e("@fmExpression__id__.directive")}]],[o(/(?:@endTag__id__)(@directiveEndCloseTag1)(?:@closeTag1__id__)/),t.id==="auto"?{cases:{"$1==<":{token:"@rematch",switchTo:`@default_angle_${n.id}`},"$1==[":{token:"@rematch",switchTo:`@default_bracket_${n.id}`}}}:[{token:"@brackets.directive"},{token:"delimiter.directive"},{token:"tag"},{token:"delimiter.directive"},{token:"@brackets.directive"}]],[o(/(@open__id__)(@)/),t.id==="auto"?{cases:{"$1==<":{token:"@rematch",switchTo:`@default_angle_${n.id}`},"$1==[":{token:"@rematch",switchTo:`@default_bracket_${n.id}`}}}:[{token:"@brackets.directive"},{token:"delimiter.directive",next:e("@unifiedCall__id__")}]],[o(/(@open__id__)(\/@)((?:(?:@id)(?:\.(?:@id))*)?)(?:@closeTag1__id__)/),[{token:"@brackets.directive"},{token:"delimiter.directive"},{token:"tag"},{token:"delimiter.directive"},{token:"@brackets.directive"}]],[o(/(@open__id__)#--/),t.id==="auto"?{cases:{"$1==<":{token:"@rematch",switchTo:`@default_angle_${n.id}`},"$1==[":{token:"@rematch",switchTo:`@default_bracket_${n.id}`}}}:{token:"comment",next:e("@terseComment__id__")}],[o(/(?:@startOrEndTag__id__)([a-zA-Z_]+)/),t.id==="auto"?{cases:{"$1==<":{token:"@rematch",switchTo:`@default_angle_${n.id}`},"$1==[":{token:"@rematch",switchTo:`@default_bracket_${n.id}`}}}:[{token:"@brackets.directive"},{token:"delimiter.directive"},{token:"tag.invalid",next:e("@fmExpression__id__.directive")}]]],[e("interpolation_and_text_token__id__")]:[[o(/(@iOpen1__id__)(@iOpen2__id__)/),[{token:n.id==="bracket"?"@brackets.interpolation":"delimiter.interpolation"},{token:n.id==="bracket"?"delimiter.interpolation":"@brackets.interpolation",next:e("@fmExpression__id__.interpolation")}]],[/[\$#<\[\{]|(?:@blank)+|[^\$<#\[\{\n\r\t ]+/,{token:"source"}]],[e("string_single_token__id__")]:[[/[^'\\]/,{token:"string"}],[/@escapedChar/,{token:"string.escape"}],[/'/,{token:"string",next:"@pop"}]],[e("string_double_token__id__")]:[[/[^"\\]/,{token:"string"}],[/@escapedChar/,{token:"string.escape"}],[/"/,{token:"string",next:"@pop"}]],[e("string_single_raw_token__id__")]:[[/[^']+/,{token:"string.raw"}],[/'/,{token:"string.raw",next:"@pop"}]],[e("string_double_raw_token__id__")]:[[/[^"]+/,{token:"string.raw"}],[/"/,{token:"string.raw",next:"@pop"}]],[e("expression_token__id__")]:[[/(r?)(['"])/,{cases:{"r'":[{token:"keyword"},{token:"string.raw",next:e("@rawSingleString__id__")}],'r"':[{token:"keyword"},{token:"string.raw",next:e("@rawDoubleString__id__")}],"'":[{token:"source"},{token:"string",next:e("@singleString__id__")}],'"':[{token:"source"},{token:"string",next:e("@doubleString__id__")}]}}],[/(?:@integer)(?:\.(?:@integer))?/,{cases:{"(?:@integer)":{token:"number"},"@default":{token:"number.float"}}}],[/(\.)(@blank*)(@specialHashKeys)/,[{token:"delimiter"},{token:""},{token:"identifier"}]],[/(?:@namedSymbols)/,{cases:{"@arrows":{token:"meta.arrow"},"@delimiters":{token:"delimiter"},"@default":{token:"operators"}}}],[/@id/,{cases:{"@keywords":{token:"keyword.$0"},"@stringOperators":{token:"operators"},"@default":{token:"identifier"}}}],[/[\[\]\(\)\{\}]/,{cases:{"\\[":{cases:{"$S2==gt":{token:"@brackets",next:e("@inParen__id__.gt")},"@default":{token:"@brackets",next:e("@inParen__id__.plain")}}},"\\]":{cases:{...n.id==="bracket"?{"$S2==interpolation":{token:"@brackets.interpolation",next:"@popall"}}:{},...t.id==="bracket"?{"$S2==directive":{token:"@brackets.directive",next:"@popall"}}:{},[e("$S1==inParen__id__")]:{token:"@brackets",next:"@pop"},"@default":{token:"@brackets"}}},"\\(":{token:"@brackets",next:e("@inParen__id__.gt")},"\\)":{cases:{[e("$S1==inParen__id__")]:{token:"@brackets",next:"@pop"},"@default":{token:"@brackets"}}},"\\{":{cases:{"$S2==gt":{token:"@brackets",next:e("@inParen__id__.gt")},"@default":{token:"@brackets",next:e("@inParen__id__.plain")}}},"\\}":{cases:{...n.id==="bracket"?{}:{"$S2==interpolation":{token:"@brackets.interpolation",next:"@popall"}},[e("$S1==inParen__id__")]:{token:"@brackets",next:"@pop"},"@default":{token:"@brackets"}}}}}],[/\$\{/,{token:"delimiter.invalid"}]],[e("blank_and_expression_comment_token__id__")]:[[/(?:@blank)+/,{token:""}],[/[<\[][#!]--/,{token:"comment",next:e("@expressionComment__id__")}]],[e("directive_end_token__id__")]:[[/>/,t.id==="bracket"?{token:"operators"}:{token:"@brackets.directive",next:"@popall"}],[o(/(\/)(@close__id__)/),[{token:"delimiter.directive"},{token:"@brackets.directive",next:"@popall"}]]],[e("greater_operators_token__id__")]:[[/>/,{token:"operators"}],[/>=/,{token:"operators"}]],[e("no_space_expression_end_token__id__")]:[[/(?:@blank)+/,{token:"",switchTo:e("@fmExpression__id__.directive")}]],[e("unified_call_token__id__")]:[[/(@id)((?:@blank)+)/,[{token:"tag"},{token:"",next:e("@fmExpression__id__.directive")}]],[o(/(@id)(\/?)(@close__id__)/),[{token:"tag"},{token:"delimiter.directive"},{token:"@brackets.directive",next:"@popall"}]],[/./,{token:"@rematch",next:e("@noSpaceExpression__id__")}]],[e("no_parse_token__id__")]:[[o(/(@open__id__)(\/#?)([a-zA-Z]+)((?:@blank)*)(@close__id__)/),{cases:{"$S2==$3":[{token:"@brackets.directive"},{token:"delimiter.directive"},{token:"tag"},{token:""},{token:"@brackets.directive",next:"@popall"}],"$S2==comment":[{token:"comment"},{token:"comment"},{token:"comment"},{token:"comment"},{token:"comment"}],"@default":[{token:"source"},{token:"source"},{token:"source"},{token:"source"},{token:"source"}]}}],[/[^<\[\-]+|[<\[\-]/,{cases:{"$S2==comment":{token:"comment"},"@default":{token:"source"}}}]],[e("expression_comment_token__id__")]:[[/--[>\]]/,{token:"comment",next:"@pop"}],[/[^\->\]]+|[>\]\-]/,{token:"comment"}]],[e("terse_comment_token__id__")]:[[o(/--(?:@close__id__)/),{token:"comment",next:"@popall"}],[/[^<\[\-]+|[<\[\-]/,{token:"comment"}]]}}}function A(t){const n=i(a,t),_=i(u,t),e=i(D,t);return{...n,..._,...e,unicode:!0,includeLF:!1,start:`default_auto_${t.id}`,ignoreCase:!1,defaultToken:"invalid",tokenPostfix:".freemarker2",brackets:[{open:"{",close:"}",token:"delimiter.curly"},{open:"[",close:"]",token:"delimiter.square"},{open:"(",close:")",token:"delimiter.parenthesis"},{open:"<",close:">",token:"delimiter.angle"}],tokenizer:{...n.tokenizer,..._.tokenizer,...e.tokenizer}}}var O={conf:l(a),language:i(a,k)},R={conf:l(u),language:i(u,k)},z={conf:l(a),language:i(a,p)},j={conf:l(u),language:i(u,p)},L={conf:g(),language:A(k)},Z={conf:g(),language:A(p)};export{z as TagAngleInterpolationBracket,O as TagAngleInterpolationDollar,Z as TagAutoInterpolationBracket,L as TagAutoInterpolationDollar,j as TagBracketInterpolationBracket,R as TagBracketInterpolationDollar};
@@ -1 +0,0 @@
1
- import{au as u}from"./index-Brc7moWM.js";function p(t,e){for(var n=0;n<e.length;n++){const r=e[n];if(typeof r!="string"&&!Array.isArray(r)){for(const a in r)if(a!=="default"&&!(a in t)){const o=Object.getOwnPropertyDescriptor(r,a);o&&Object.defineProperty(t,a,o.get?o:{enumerable:!0,get:()=>r[a]})}}}return Object.freeze(Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}))}var s,i;function d(){if(i)return s;i=1,s=t,t.displayName="fsharp",t.aliases=[];function t(e){e.languages.fsharp=e.languages.extend("clike",{comment:[{pattern:/(^|[^\\])\(\*(?!\))[\s\S]*?\*\)/,lookbehind:!0,greedy:!0},{pattern:/(^|[^\\:])\/\/.*/,lookbehind:!0,greedy:!0}],string:{pattern:/(?:"""[\s\S]*?"""|@"(?:""|[^"])*"|"(?:\\[\s\S]|[^\\"])*")B?/,greedy:!0},"class-name":{pattern:/(\b(?:exception|inherit|interface|new|of|type)\s+|\w\s*:\s*|\s:\??>\s*)[.\w]+\b(?:\s*(?:->|\*)\s*[.\w]+\b)*(?!\s*[:.])/,lookbehind:!0,inside:{operator:/->|\*/,punctuation:/\./}},keyword:/\b(?:let|return|use|yield)(?:!\B|\b)|\b(?:abstract|and|as|asr|assert|atomic|base|begin|break|checked|class|component|const|constraint|constructor|continue|default|delegate|do|done|downcast|downto|eager|elif|else|end|event|exception|extern|external|false|finally|fixed|for|fun|function|functor|global|if|in|include|inherit|inline|interface|internal|land|lazy|lor|lsl|lsr|lxor|match|member|method|mixin|mod|module|mutable|namespace|new|not|null|object|of|open|or|override|parallel|private|process|protected|public|pure|rec|sealed|select|sig|static|struct|tailcall|then|to|trait|true|try|type|upcast|val|virtual|void|volatile|when|while|with)\b/,number:[/\b0x[\da-fA-F]+(?:LF|lf|un)?\b/,/\b0b[01]+(?:uy|y)?\b/,/(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:[fm]|e[+-]?\d+)?\b/i,/\b\d+(?:[IlLsy]|UL|u[lsy]?)?\b/],operator:/([<>~&^])\1\1|([*.:<>&])\2|<-|->|[!=:]=|<?\|{1,3}>?|\??(?:<=|>=|<>|[-+*/%=<>])\??|[!?^&]|~[+~-]|:>|:\?>?/}),e.languages.insertBefore("fsharp","keyword",{preprocessor:{pattern:/(^[\t ]*)#.*/m,lookbehind:!0,alias:"property",inside:{directive:{pattern:/(^#)\b(?:else|endif|if|light|line|nowarn)\b/,lookbehind:!0,alias:"keyword"}}}}),e.languages.insertBefore("fsharp","punctuation",{"computation-expression":{pattern:/\b[_a-z]\w*(?=\s*\{)/i,alias:"keyword"}}),e.languages.insertBefore("fsharp","string",{annotation:{pattern:/\[<.+?>\]/,greedy:!0,inside:{punctuation:/^\[<|>\]$/,"class-name":{pattern:/^\w+$|(^|;\s*)[A-Z]\w*(?=\()/,lookbehind:!0},"annotation-content":{pattern:/[\s\S]+/,inside:e.languages.fsharp}}},char:{pattern:/'(?:[^\\']|\\(?:.|\d{3}|x[a-fA-F\d]{2}|u[a-fA-F\d]{4}|U[a-fA-F\d]{8}))'B?/,greedy:!0}})}return s}var l=d();const c=u(l),b=p({__proto__:null,default:c},[l]);export{b as f};
@@ -1,6 +0,0 @@
1
- /*!-----------------------------------------------------------------------------
2
- * Copyright (c) Microsoft Corporation. All rights reserved.
3
- * Version: 0.49.0(383fdf3fc0e1e1a024068b8d0fd4f3dcbae74d04)
4
- * Released under the MIT license
5
- * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
6
- *-----------------------------------------------------------------------------*/var e={comments:{lineComment:"//",blockComment:["(*","*)"]},brackets:[["{","}"],["[","]"],["(",")"]],autoClosingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"'}],surroundingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"'},{open:"'",close:"'"}],folding:{markers:{start:new RegExp("^\\s*//\\s*#region\\b|^\\s*\\(\\*\\s*#region(.*)\\*\\)"),end:new RegExp("^\\s*//\\s*#endregion\\b|^\\s*\\(\\*\\s*#endregion\\s*\\*\\)")}}},n={defaultToken:"",tokenPostfix:".fs",keywords:["abstract","and","atomic","as","assert","asr","base","begin","break","checked","component","const","constraint","constructor","continue","class","default","delegate","do","done","downcast","downto","elif","else","end","exception","eager","event","external","extern","false","finally","for","fun","function","fixed","functor","global","if","in","include","inherit","inline","interface","internal","land","lor","lsl","lsr","lxor","lazy","let","match","member","mod","module","mutable","namespace","method","mixin","new","not","null","of","open","or","object","override","private","parallel","process","protected","pure","public","rec","return","static","sealed","struct","sig","then","to","true","tailcall","trait","try","type","upcast","use","val","void","virtual","volatile","when","while","with","yield"],symbols:/[=><!~?:&|+\-*\^%;\.,\/]+/,escapes:/\\(?:[abfnrtv\\"']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,integersuffix:/[uU]?[yslnLI]?/,floatsuffix:/[fFmM]?/,tokenizer:{root:[[/[a-zA-Z_]\w*/,{cases:{"@keywords":{token:"keyword.$0"},"@default":"identifier"}}],{include:"@whitespace"},[/\[<.*>\]/,"annotation"],[/^#(if|else|endif)/,"keyword"],[/[{}()\[\]]/,"@brackets"],[/[<>](?!@symbols)/,"@brackets"],[/@symbols/,"delimiter"],[/\d*\d+[eE]([\-+]?\d+)?(@floatsuffix)/,"number.float"],[/\d*\.\d+([eE][\-+]?\d+)?(@floatsuffix)/,"number.float"],[/0x[0-9a-fA-F]+LF/,"number.float"],[/0x[0-9a-fA-F]+(@integersuffix)/,"number.hex"],[/0b[0-1]+(@integersuffix)/,"number.bin"],[/\d+(@integersuffix)/,"number"],[/[;,.]/,"delimiter"],[/"([^"\\]|\\.)*$/,"string.invalid"],[/"""/,"string",'@string."""'],[/"/,"string",'@string."'],[/\@"/,{token:"string.quote",next:"@litstring"}],[/'[^\\']'B?/,"string"],[/(')(@escapes)(')/,["string","string.escape","string"]],[/'/,"string.invalid"]],whitespace:[[/[ \t\r\n]+/,""],[/\(\*(?!\))/,"comment","@comment"],[/\/\/.*$/,"comment"]],comment:[[/[^*(]+/,"comment"],[/\*\)/,"comment","@pop"],[/\*/,"comment"],[/\(\*\)/,"comment"],[/\(/,"comment"]],string:[[/[^\\"]+/,"string"],[/@escapes/,"string.escape"],[/\\./,"string.escape.invalid"],[/("""|"B?)/,{cases:{"$#==$S2":{token:"string",next:"@pop"},"@default":"string"}}]],litstring:[[/[^"]+/,"string"],[/""/,"string.escape"],[/"/,{token:"string.quote",next:"@pop"}]]}};export{e as conf,n as language};
@@ -1 +0,0 @@
1
- import{au as f}from"./index-Brc7moWM.js";import{r as g}from"./markup-templating-BxAVv-bL.js";function d(o,r){for(var n=0;n<r.length;n++){const t=r[n];if(typeof t!="string"&&!Array.isArray(t)){for(const e in t)if(e!=="default"&&!(e in o)){const a=Object.getOwnPropertyDescriptor(t,e);a&&Object.defineProperty(o,e,a.get?a:{enumerable:!0,get:()=>t[e]})}}}return Object.freeze(Object.defineProperty(o,Symbol.toStringTag,{value:"Module"}))}var u,p;function b(){if(p)return u;p=1;var o=g();u=r,r.displayName="ftl",r.aliases=[];function r(n){n.register(o),(function(t){for(var e=/[^<()"']|\((?:<expr>)*\)|<(?!#--)|<#--(?:[^-]|-(?!->))*-->|"(?:[^\\"]|\\.)*"|'(?:[^\\']|\\.)*'/.source,a=0;a<2;a++)e=e.replace(/<expr>/g,function(){return e});e=e.replace(/<expr>/g,/[^\s\S]/.source);var i={comment:/<#--[\s\S]*?-->/,string:[{pattern:/\br("|')(?:(?!\1)[^\\]|\\.)*\1/,greedy:!0},{pattern:RegExp(/("|')(?:(?!\1|\$\{)[^\\]|\\.|\$\{(?:(?!\})(?:<expr>))*\})*\1/.source.replace(/<expr>/g,function(){return e})),greedy:!0,inside:{interpolation:{pattern:RegExp(/((?:^|[^\\])(?:\\\\)*)\$\{(?:(?!\})(?:<expr>))*\}/.source.replace(/<expr>/g,function(){return e})),lookbehind:!0,inside:{"interpolation-punctuation":{pattern:/^\$\{|\}$/,alias:"punctuation"},rest:null}}}}],keyword:/\b(?:as)\b/,boolean:/\b(?:false|true)\b/,"builtin-function":{pattern:/((?:^|[^?])\?\s*)\w+/,lookbehind:!0,alias:"function"},function:/\b\w+(?=\s*\()/,number:/\b\d+(?:\.\d+)?\b/,operator:/\.\.[<*!]?|->|--|\+\+|&&|\|\||\?{1,2}|[-+*/%!=<>]=?|\b(?:gt|gte|lt|lte)\b/,punctuation:/[,;.:()[\]{}]/};i.string[1].inside.interpolation.inside.rest=i,t.languages.ftl={"ftl-comment":{pattern:/^<#--[\s\S]*/,alias:"comment"},"ftl-directive":{pattern:/^<[\s\S]+>$/,inside:{directive:{pattern:/(^<\/?)[#@][a-z]\w*/i,lookbehind:!0,alias:"keyword"},punctuation:/^<\/?|\/?>$/,content:{pattern:/\s*\S[\s\S]*/,alias:"ftl",inside:i}}},"ftl-interpolation":{pattern:/^\$\{[\s\S]*\}$/,inside:{punctuation:/^\$\{|\}$/,content:{pattern:/\s*\S[\s\S]*/,alias:"ftl",inside:i}}}},t.hooks.add("before-tokenize",function(l){var c=RegExp(/<#--[\s\S]*?-->|<\/?[#@][a-zA-Z](?:<expr>)*?>|\$\{(?:<expr>)*?\}/.source.replace(/<expr>/g,function(){return e}),"gi");t.languages["markup-templating"].buildPlaceholders(l,"ftl",c)}),t.hooks.add("after-tokenize",function(l){t.languages["markup-templating"].tokenizePlaceholders(l,"ftl")})})(n)}return u}var s=b();const m=f(s),$=d({__proto__:null,default:m},[s]);export{$ as f};