@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{aZ as O,a_ as u,av as v,a$ as g,b0 as y,b1 as N,b2 as c,aX as b,aB as o,b3 as w,aY as A,b4 as M,aV as B,b5 as E,aS as F}from"./index-Brc7moWM.js";var P=/\s/;function T(r){for(var n=r.length;n--&&P.test(r.charAt(n)););return n}var $=/^\s+/;function S(r){return r&&r.slice(0,T(r)+1).replace($,"")}var I=NaN,L=/^[-+]0x[0-9a-f]+$/i,R=/^0b[01]+$/i,X=/^0o[0-7]+$/i,Y=parseInt;function _(r){if(typeof r=="number")return r;if(O(r))return I;if(u(r)){var n=typeof r.valueOf=="function"?r.valueOf():r;r=u(n)?n+"":n}if(typeof r!="string")return r===0?r:+r;r=S(r);var t=R.test(r);return t||X.test(r)?Y(r.slice(2),t?2:8):L.test(r)?I:+r}var h=1/0,q=17976931348623157e292;function C(r){if(!r)return r===0?r:0;if(r=_(r),r===h||r===-h){var n=r<0?-1:1;return n*q}return r===r?r:0}function G(r){var n=C(r),t=n%1;return n===n?t?n-t:n:0}var x=Object.prototype,H=x.hasOwnProperty,D=v(function(r,n){r=Object(r);var t=-1,i=n.length,a=i>2?n[2]:void 0;for(a&&g(n[0],n[1],a)&&(i=1);++t<i;)for(var s=n[t],e=y(s),f=-1,p=e.length;++f<p;){var d=e[f],m=r[d];(m===void 0||N(m,x[d])&&!H.call(r,d))&&(r[d]=s[d])}return r});function V(r){return function(n,t,i){var a=Object(n);if(!c(n)){var s=b(t);n=o(n),t=function(f){return s(a[f],f,a)}}var e=r(n,t,i);return e>-1?a[s?n[e]:e]:void 0}}var W=Math.max;function Z(r,n,t){var i=r==null?0:r.length;if(!i)return-1;var a=t==null?0:G(t);return a<0&&(a=W(i+a,0)),w(r,b(n),a)}var J=V(Z);function K(r,n){var t=B(r)?A:M;return t(r,b(n))}function j(r,n){return r<n}function Q(r){return r&&r.length?E(r,F,j):void 0}export{Q as a,j as b,G as c,D as d,J as f,K as m,C as t};
@@ -1,95 +0,0 @@
1
- import{au as Et,_,l as Q,c as st,N as Lt,af as Tt,K as it,i as J,ag as Nt,ah as mt,ai as Dt,d as Ot,ap as At,a7 as It}from"./index-Brc7moWM.js";import{c as ft}from"./cytoscape.esm-BQaXIfA_.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 tt={exports:{}},et={exports:{}},rt={exports:{}},Ct=rt.exports,ct;function Rt(){return ct||(ct=1,(function(C,M){(function(D,y){C.exports=y()})(Ct,function(){return(function(u){var D={};function y(r){if(D[r])return D[r].exports;var t=D[r]={i:r,l:!1,exports:{}};return u[r].call(t.exports,t,t.exports,y),t.l=!0,t.exports}return y.m=u,y.c=D,y.i=function(r){return r},y.d=function(r,t,e){y.o(r,t)||Object.defineProperty(r,t,{configurable:!1,enumerable:!0,get:e})},y.n=function(r){var t=r&&r.__esModule?function(){return r.default}:function(){return r};return y.d(t,"a",t),t},y.o=function(r,t){return Object.prototype.hasOwnProperty.call(r,t)},y.p="",y(y.s=26)})([(function(u,D,y){function r(){}r.QUALITY=1,r.DEFAULT_CREATE_BENDS_AS_NEEDED=!1,r.DEFAULT_INCREMENTAL=!1,r.DEFAULT_ANIMATION_ON_LAYOUT=!0,r.DEFAULT_ANIMATION_DURING_LAYOUT=!1,r.DEFAULT_ANIMATION_PERIOD=50,r.DEFAULT_UNIFORM_LEAF_NODE_SIZES=!1,r.DEFAULT_GRAPH_MARGIN=15,r.NODE_DIMENSIONS_INCLUDE_LABELS=!1,r.SIMPLE_NODE_SIZE=40,r.SIMPLE_NODE_HALF_SIZE=r.SIMPLE_NODE_SIZE/2,r.EMPTY_COMPOUND_NODE_SIZE=40,r.MIN_EDGE_LENGTH=1,r.WORLD_BOUNDARY=1e6,r.INITIAL_WORLD_BOUNDARY=r.WORLD_BOUNDARY/1e3,r.WORLD_CENTER_X=1200,r.WORLD_CENTER_Y=900,u.exports=r}),(function(u,D,y){var r=y(2),t=y(8),e=y(9);function i(g,a,v){r.call(this,v),this.isOverlapingSourceAndTarget=!1,this.vGraphObject=v,this.bendpoints=[],this.source=g,this.target=a}i.prototype=Object.create(r.prototype);for(var o in r)i[o]=r[o];i.prototype.getSource=function(){return this.source},i.prototype.getTarget=function(){return this.target},i.prototype.isInterGraph=function(){return this.isInterGraph},i.prototype.getLength=function(){return this.length},i.prototype.isOverlapingSourceAndTarget=function(){return this.isOverlapingSourceAndTarget},i.prototype.getBendpoints=function(){return this.bendpoints},i.prototype.getLca=function(){return this.lca},i.prototype.getSourceInLca=function(){return this.sourceInLca},i.prototype.getTargetInLca=function(){return this.targetInLca},i.prototype.getOtherEnd=function(g){if(this.source===g)return this.target;if(this.target===g)return this.source;throw"Node is not incident with this edge"},i.prototype.getOtherEndInGraph=function(g,a){for(var v=this.getOtherEnd(g),n=a.getGraphManager().getRoot();;){if(v.getOwner()==a)return v;if(v.getOwner()==n)break;v=v.getOwner().getParent()}return null},i.prototype.updateLength=function(){var g=new Array(4);this.isOverlapingSourceAndTarget=t.getIntersection(this.target.getRect(),this.source.getRect(),g),this.isOverlapingSourceAndTarget||(this.lengthX=g[0]-g[2],this.lengthY=g[1]-g[3],Math.abs(this.lengthX)<1&&(this.lengthX=e.sign(this.lengthX)),Math.abs(this.lengthY)<1&&(this.lengthY=e.sign(this.lengthY)),this.length=Math.sqrt(this.lengthX*this.lengthX+this.lengthY*this.lengthY))},i.prototype.updateLengthSimple=function(){this.lengthX=this.target.getCenterX()-this.source.getCenterX(),this.lengthY=this.target.getCenterY()-this.source.getCenterY(),Math.abs(this.lengthX)<1&&(this.lengthX=e.sign(this.lengthX)),Math.abs(this.lengthY)<1&&(this.lengthY=e.sign(this.lengthY)),this.length=Math.sqrt(this.lengthX*this.lengthX+this.lengthY*this.lengthY)},u.exports=i}),(function(u,D,y){function r(t){this.vGraphObject=t}u.exports=r}),(function(u,D,y){var r=y(2),t=y(10),e=y(13),i=y(0),o=y(16),g=y(4);function a(n,c,l,E){l==null&&E==null&&(E=c),r.call(this,E),n.graphManager!=null&&(n=n.graphManager),this.estimatedSize=t.MIN_VALUE,this.inclusionTreeDepth=t.MAX_VALUE,this.vGraphObject=E,this.edges=[],this.graphManager=n,l!=null&&c!=null?this.rect=new e(c.x,c.y,l.width,l.height):this.rect=new e}a.prototype=Object.create(r.prototype);for(var v in r)a[v]=r[v];a.prototype.getEdges=function(){return this.edges},a.prototype.getChild=function(){return this.child},a.prototype.getOwner=function(){return this.owner},a.prototype.getWidth=function(){return this.rect.width},a.prototype.setWidth=function(n){this.rect.width=n},a.prototype.getHeight=function(){return this.rect.height},a.prototype.setHeight=function(n){this.rect.height=n},a.prototype.getCenterX=function(){return this.rect.x+this.rect.width/2},a.prototype.getCenterY=function(){return this.rect.y+this.rect.height/2},a.prototype.getCenter=function(){return new g(this.rect.x+this.rect.width/2,this.rect.y+this.rect.height/2)},a.prototype.getLocation=function(){return new g(this.rect.x,this.rect.y)},a.prototype.getRect=function(){return this.rect},a.prototype.getDiagonal=function(){return Math.sqrt(this.rect.width*this.rect.width+this.rect.height*this.rect.height)},a.prototype.getHalfTheDiagonal=function(){return Math.sqrt(this.rect.height*this.rect.height+this.rect.width*this.rect.width)/2},a.prototype.setRect=function(n,c){this.rect.x=n.x,this.rect.y=n.y,this.rect.width=c.width,this.rect.height=c.height},a.prototype.setCenter=function(n,c){this.rect.x=n-this.rect.width/2,this.rect.y=c-this.rect.height/2},a.prototype.setLocation=function(n,c){this.rect.x=n,this.rect.y=c},a.prototype.moveBy=function(n,c){this.rect.x+=n,this.rect.y+=c},a.prototype.getEdgeListToNode=function(n){var c=[],l=this;return l.edges.forEach(function(E){if(E.target==n){if(E.source!=l)throw"Incorrect edge source!";c.push(E)}}),c},a.prototype.getEdgesBetween=function(n){var c=[],l=this;return l.edges.forEach(function(E){if(!(E.source==l||E.target==l))throw"Incorrect edge source and/or target";(E.target==n||E.source==n)&&c.push(E)}),c},a.prototype.getNeighborsList=function(){var n=new Set,c=this;return c.edges.forEach(function(l){if(l.source==c)n.add(l.target);else{if(l.target!=c)throw"Incorrect incidency!";n.add(l.source)}}),n},a.prototype.withChildren=function(){var n=new Set,c,l;if(n.add(this),this.child!=null)for(var E=this.child.getNodes(),T=0;T<E.length;T++)c=E[T],l=c.withChildren(),l.forEach(function(m){n.add(m)});return n},a.prototype.getNoOfChildren=function(){var n=0,c;if(this.child==null)n=1;else for(var l=this.child.getNodes(),E=0;E<l.length;E++)c=l[E],n+=c.getNoOfChildren();return n==0&&(n=1),n},a.prototype.getEstimatedSize=function(){if(this.estimatedSize==t.MIN_VALUE)throw"assert failed";return this.estimatedSize},a.prototype.calcEstimatedSize=function(){return this.child==null?this.estimatedSize=(this.rect.width+this.rect.height)/2:(this.estimatedSize=this.child.calcEstimatedSize(),this.rect.width=this.estimatedSize,this.rect.height=this.estimatedSize,this.estimatedSize)},a.prototype.scatter=function(){var n,c,l=-i.INITIAL_WORLD_BOUNDARY,E=i.INITIAL_WORLD_BOUNDARY;n=i.WORLD_CENTER_X+o.nextDouble()*(E-l)+l;var T=-i.INITIAL_WORLD_BOUNDARY,m=i.INITIAL_WORLD_BOUNDARY;c=i.WORLD_CENTER_Y+o.nextDouble()*(m-T)+T,this.rect.x=n,this.rect.y=c},a.prototype.updateBounds=function(){if(this.getChild()==null)throw"assert failed";if(this.getChild().getNodes().length!=0){var n=this.getChild();if(n.updateBounds(!0),this.rect.x=n.getLeft(),this.rect.y=n.getTop(),this.setWidth(n.getRight()-n.getLeft()),this.setHeight(n.getBottom()-n.getTop()),i.NODE_DIMENSIONS_INCLUDE_LABELS){var c=n.getRight()-n.getLeft(),l=n.getBottom()-n.getTop();this.labelWidth>c&&(this.rect.x-=(this.labelWidth-c)/2,this.setWidth(this.labelWidth)),this.labelHeight>l&&(this.labelPos=="center"?this.rect.y-=(this.labelHeight-l)/2:this.labelPos=="top"&&(this.rect.y-=this.labelHeight-l),this.setHeight(this.labelHeight))}}},a.prototype.getInclusionTreeDepth=function(){if(this.inclusionTreeDepth==t.MAX_VALUE)throw"assert failed";return this.inclusionTreeDepth},a.prototype.transform=function(n){var c=this.rect.x;c>i.WORLD_BOUNDARY?c=i.WORLD_BOUNDARY:c<-i.WORLD_BOUNDARY&&(c=-i.WORLD_BOUNDARY);var l=this.rect.y;l>i.WORLD_BOUNDARY?l=i.WORLD_BOUNDARY:l<-i.WORLD_BOUNDARY&&(l=-i.WORLD_BOUNDARY);var E=new g(c,l),T=n.inverseTransformPoint(E);this.setLocation(T.x,T.y)},a.prototype.getLeft=function(){return this.rect.x},a.prototype.getRight=function(){return this.rect.x+this.rect.width},a.prototype.getTop=function(){return this.rect.y},a.prototype.getBottom=function(){return this.rect.y+this.rect.height},a.prototype.getParent=function(){return this.owner==null?null:this.owner.getParent()},u.exports=a}),(function(u,D,y){function r(t,e){t==null&&e==null?(this.x=0,this.y=0):(this.x=t,this.y=e)}r.prototype.getX=function(){return this.x},r.prototype.getY=function(){return this.y},r.prototype.setX=function(t){this.x=t},r.prototype.setY=function(t){this.y=t},r.prototype.getDifference=function(t){return new DimensionD(this.x-t.x,this.y-t.y)},r.prototype.getCopy=function(){return new r(this.x,this.y)},r.prototype.translate=function(t){return this.x+=t.width,this.y+=t.height,this},u.exports=r}),(function(u,D,y){var r=y(2),t=y(10),e=y(0),i=y(6),o=y(3),g=y(1),a=y(13),v=y(12),n=y(11);function c(E,T,m){r.call(this,m),this.estimatedSize=t.MIN_VALUE,this.margin=e.DEFAULT_GRAPH_MARGIN,this.edges=[],this.nodes=[],this.isConnected=!1,this.parent=E,T!=null&&T instanceof i?this.graphManager=T:T!=null&&T instanceof Layout&&(this.graphManager=T.graphManager)}c.prototype=Object.create(r.prototype);for(var l in r)c[l]=r[l];c.prototype.getNodes=function(){return this.nodes},c.prototype.getEdges=function(){return this.edges},c.prototype.getGraphManager=function(){return this.graphManager},c.prototype.getParent=function(){return this.parent},c.prototype.getLeft=function(){return this.left},c.prototype.getRight=function(){return this.right},c.prototype.getTop=function(){return this.top},c.prototype.getBottom=function(){return this.bottom},c.prototype.isConnected=function(){return this.isConnected},c.prototype.add=function(E,T,m){if(T==null&&m==null){var L=E;if(this.graphManager==null)throw"Graph has no graph mgr!";if(this.getNodes().indexOf(L)>-1)throw"Node already in graph!";return L.owner=this,this.getNodes().push(L),L}else{var O=E;if(!(this.getNodes().indexOf(T)>-1&&this.getNodes().indexOf(m)>-1))throw"Source or target not in graph!";if(!(T.owner==m.owner&&T.owner==this))throw"Both owners must be this graph!";return T.owner!=m.owner?null:(O.source=T,O.target=m,O.isInterGraph=!1,this.getEdges().push(O),T.edges.push(O),m!=T&&m.edges.push(O),O)}},c.prototype.remove=function(E){var T=E;if(E instanceof o){if(T==null)throw"Node is null!";if(!(T.owner!=null&&T.owner==this))throw"Owner graph is invalid!";if(this.graphManager==null)throw"Owner graph manager is invalid!";for(var m=T.edges.slice(),L,O=m.length,d=0;d<O;d++)L=m[d],L.isInterGraph?this.graphManager.remove(L):L.source.owner.remove(L);var N=this.nodes.indexOf(T);if(N==-1)throw"Node not in owner node list!";this.nodes.splice(N,1)}else if(E instanceof g){var L=E;if(L==null)throw"Edge is null!";if(!(L.source!=null&&L.target!=null))throw"Source and/or target is null!";if(!(L.source.owner!=null&&L.target.owner!=null&&L.source.owner==this&&L.target.owner==this))throw"Source and/or target owner is invalid!";var s=L.source.edges.indexOf(L),h=L.target.edges.indexOf(L);if(!(s>-1&&h>-1))throw"Source and/or target doesn't know this edge!";L.source.edges.splice(s,1),L.target!=L.source&&L.target.edges.splice(h,1);var N=L.source.owner.getEdges().indexOf(L);if(N==-1)throw"Not in owner's edge list!";L.source.owner.getEdges().splice(N,1)}},c.prototype.updateLeftTop=function(){for(var E=t.MAX_VALUE,T=t.MAX_VALUE,m,L,O,d=this.getNodes(),N=d.length,s=0;s<N;s++){var h=d[s];m=h.getTop(),L=h.getLeft(),E>m&&(E=m),T>L&&(T=L)}return E==t.MAX_VALUE?null:(d[0].getParent().paddingLeft!=null?O=d[0].getParent().paddingLeft:O=this.margin,this.left=T-O,this.top=E-O,new v(this.left,this.top))},c.prototype.updateBounds=function(E){for(var T=t.MAX_VALUE,m=-t.MAX_VALUE,L=t.MAX_VALUE,O=-t.MAX_VALUE,d,N,s,h,f,p=this.nodes,A=p.length,I=0;I<A;I++){var R=p[I];E&&R.child!=null&&R.updateBounds(),d=R.getLeft(),N=R.getRight(),s=R.getTop(),h=R.getBottom(),T>d&&(T=d),m<N&&(m=N),L>s&&(L=s),O<h&&(O=h)}var x=new a(T,L,m-T,O-L);T==t.MAX_VALUE&&(this.left=this.parent.getLeft(),this.right=this.parent.getRight(),this.top=this.parent.getTop(),this.bottom=this.parent.getBottom()),p[0].getParent().paddingLeft!=null?f=p[0].getParent().paddingLeft:f=this.margin,this.left=x.x-f,this.right=x.x+x.width+f,this.top=x.y-f,this.bottom=x.y+x.height+f},c.calculateBounds=function(E){for(var T=t.MAX_VALUE,m=-t.MAX_VALUE,L=t.MAX_VALUE,O=-t.MAX_VALUE,d,N,s,h,f=E.length,p=0;p<f;p++){var A=E[p];d=A.getLeft(),N=A.getRight(),s=A.getTop(),h=A.getBottom(),T>d&&(T=d),m<N&&(m=N),L>s&&(L=s),O<h&&(O=h)}var I=new a(T,L,m-T,O-L);return I},c.prototype.getInclusionTreeDepth=function(){return this==this.graphManager.getRoot()?1:this.parent.getInclusionTreeDepth()},c.prototype.getEstimatedSize=function(){if(this.estimatedSize==t.MIN_VALUE)throw"assert failed";return this.estimatedSize},c.prototype.calcEstimatedSize=function(){for(var E=0,T=this.nodes,m=T.length,L=0;L<m;L++){var O=T[L];E+=O.calcEstimatedSize()}return E==0?this.estimatedSize=e.EMPTY_COMPOUND_NODE_SIZE:this.estimatedSize=E/Math.sqrt(this.nodes.length),this.estimatedSize},c.prototype.updateConnected=function(){var E=this;if(this.nodes.length==0){this.isConnected=!0;return}var T=new n,m=new Set,L=this.nodes[0],O,d,N=L.withChildren();for(N.forEach(function(I){T.push(I),m.add(I)});T.length!==0;){L=T.shift(),O=L.getEdges();for(var s=O.length,h=0;h<s;h++){var f=O[h];if(d=f.getOtherEndInGraph(L,this),d!=null&&!m.has(d)){var p=d.withChildren();p.forEach(function(I){T.push(I),m.add(I)})}}}if(this.isConnected=!1,m.size>=this.nodes.length){var A=0;m.forEach(function(I){I.owner==E&&A++}),A==this.nodes.length&&(this.isConnected=!0)}},u.exports=c}),(function(u,D,y){var r,t=y(1);function e(i){r=y(5),this.layout=i,this.graphs=[],this.edges=[]}e.prototype.addRoot=function(){var i=this.layout.newGraph(),o=this.layout.newNode(null),g=this.add(i,o);return this.setRootGraph(g),this.rootGraph},e.prototype.add=function(i,o,g,a,v){if(g==null&&a==null&&v==null){if(i==null)throw"Graph is null!";if(o==null)throw"Parent node is null!";if(this.graphs.indexOf(i)>-1)throw"Graph already in this graph mgr!";if(this.graphs.push(i),i.parent!=null)throw"Already has a parent!";if(o.child!=null)throw"Already has a child!";return i.parent=o,o.child=i,i}else{v=g,a=o,g=i;var n=a.getOwner(),c=v.getOwner();if(!(n!=null&&n.getGraphManager()==this))throw"Source not in this graph mgr!";if(!(c!=null&&c.getGraphManager()==this))throw"Target not in this graph mgr!";if(n==c)return g.isInterGraph=!1,n.add(g,a,v);if(g.isInterGraph=!0,g.source=a,g.target=v,this.edges.indexOf(g)>-1)throw"Edge already in inter-graph edge list!";if(this.edges.push(g),!(g.source!=null&&g.target!=null))throw"Edge source and/or target is null!";if(!(g.source.edges.indexOf(g)==-1&&g.target.edges.indexOf(g)==-1))throw"Edge already in source and/or target incidency list!";return g.source.edges.push(g),g.target.edges.push(g),g}},e.prototype.remove=function(i){if(i instanceof r){var o=i;if(o.getGraphManager()!=this)throw"Graph not in this graph mgr";if(!(o==this.rootGraph||o.parent!=null&&o.parent.graphManager==this))throw"Invalid parent node!";var g=[];g=g.concat(o.getEdges());for(var a,v=g.length,n=0;n<v;n++)a=g[n],o.remove(a);var c=[];c=c.concat(o.getNodes());var l;v=c.length;for(var n=0;n<v;n++)l=c[n],o.remove(l);o==this.rootGraph&&this.setRootGraph(null);var E=this.graphs.indexOf(o);this.graphs.splice(E,1),o.parent=null}else if(i instanceof t){if(a=i,a==null)throw"Edge is null!";if(!a.isInterGraph)throw"Not an inter-graph edge!";if(!(a.source!=null&&a.target!=null))throw"Source and/or target is null!";if(!(a.source.edges.indexOf(a)!=-1&&a.target.edges.indexOf(a)!=-1))throw"Source and/or target doesn't know this edge!";var E=a.source.edges.indexOf(a);if(a.source.edges.splice(E,1),E=a.target.edges.indexOf(a),a.target.edges.splice(E,1),!(a.source.owner!=null&&a.source.owner.getGraphManager()!=null))throw"Edge owner graph or owner graph manager is null!";if(a.source.owner.getGraphManager().edges.indexOf(a)==-1)throw"Not in owner graph manager's edge list!";var E=a.source.owner.getGraphManager().edges.indexOf(a);a.source.owner.getGraphManager().edges.splice(E,1)}},e.prototype.updateBounds=function(){this.rootGraph.updateBounds(!0)},e.prototype.getGraphs=function(){return this.graphs},e.prototype.getAllNodes=function(){if(this.allNodes==null){for(var i=[],o=this.getGraphs(),g=o.length,a=0;a<g;a++)i=i.concat(o[a].getNodes());this.allNodes=i}return this.allNodes},e.prototype.resetAllNodes=function(){this.allNodes=null},e.prototype.resetAllEdges=function(){this.allEdges=null},e.prototype.resetAllNodesToApplyGravitation=function(){this.allNodesToApplyGravitation=null},e.prototype.getAllEdges=function(){if(this.allEdges==null){var i=[],o=this.getGraphs();o.length;for(var g=0;g<o.length;g++)i=i.concat(o[g].getEdges());i=i.concat(this.edges),this.allEdges=i}return this.allEdges},e.prototype.getAllNodesToApplyGravitation=function(){return this.allNodesToApplyGravitation},e.prototype.setAllNodesToApplyGravitation=function(i){if(this.allNodesToApplyGravitation!=null)throw"assert failed";this.allNodesToApplyGravitation=i},e.prototype.getRoot=function(){return this.rootGraph},e.prototype.setRootGraph=function(i){if(i.getGraphManager()!=this)throw"Root not in this graph mgr!";this.rootGraph=i,i.parent==null&&(i.parent=this.layout.newNode("Root node"))},e.prototype.getLayout=function(){return this.layout},e.prototype.isOneAncestorOfOther=function(i,o){if(!(i!=null&&o!=null))throw"assert failed";if(i==o)return!0;var g=i.getOwner(),a;do{if(a=g.getParent(),a==null)break;if(a==o)return!0;if(g=a.getOwner(),g==null)break}while(!0);g=o.getOwner();do{if(a=g.getParent(),a==null)break;if(a==i)return!0;if(g=a.getOwner(),g==null)break}while(!0);return!1},e.prototype.calcLowestCommonAncestors=function(){for(var i,o,g,a,v,n=this.getAllEdges(),c=n.length,l=0;l<c;l++){if(i=n[l],o=i.source,g=i.target,i.lca=null,i.sourceInLca=o,i.targetInLca=g,o==g){i.lca=o.getOwner();continue}for(a=o.getOwner();i.lca==null;){for(i.targetInLca=g,v=g.getOwner();i.lca==null;){if(v==a){i.lca=v;break}if(v==this.rootGraph)break;if(i.lca!=null)throw"assert failed";i.targetInLca=v.getParent(),v=i.targetInLca.getOwner()}if(a==this.rootGraph)break;i.lca==null&&(i.sourceInLca=a.getParent(),a=i.sourceInLca.getOwner())}if(i.lca==null)throw"assert failed"}},e.prototype.calcLowestCommonAncestor=function(i,o){if(i==o)return i.getOwner();var g=i.getOwner();do{if(g==null)break;var a=o.getOwner();do{if(a==null)break;if(a==g)return a;a=a.getParent().getOwner()}while(!0);g=g.getParent().getOwner()}while(!0);return g},e.prototype.calcInclusionTreeDepths=function(i,o){i==null&&o==null&&(i=this.rootGraph,o=1);for(var g,a=i.getNodes(),v=a.length,n=0;n<v;n++)g=a[n],g.inclusionTreeDepth=o,g.child!=null&&this.calcInclusionTreeDepths(g.child,o+1)},e.prototype.includesInvalidEdge=function(){for(var i,o=this.edges.length,g=0;g<o;g++)if(i=this.edges[g],this.isOneAncestorOfOther(i.source,i.target))return!0;return!1},u.exports=e}),(function(u,D,y){var r=y(0);function t(){}for(var e in r)t[e]=r[e];t.MAX_ITERATIONS=2500,t.DEFAULT_EDGE_LENGTH=50,t.DEFAULT_SPRING_STRENGTH=.45,t.DEFAULT_REPULSION_STRENGTH=4500,t.DEFAULT_GRAVITY_STRENGTH=.4,t.DEFAULT_COMPOUND_GRAVITY_STRENGTH=1,t.DEFAULT_GRAVITY_RANGE_FACTOR=3.8,t.DEFAULT_COMPOUND_GRAVITY_RANGE_FACTOR=1.5,t.DEFAULT_USE_SMART_IDEAL_EDGE_LENGTH_CALCULATION=!0,t.DEFAULT_USE_SMART_REPULSION_RANGE_CALCULATION=!0,t.DEFAULT_COOLING_FACTOR_INCREMENTAL=.3,t.COOLING_ADAPTATION_FACTOR=.33,t.ADAPTATION_LOWER_NODE_LIMIT=1e3,t.ADAPTATION_UPPER_NODE_LIMIT=5e3,t.MAX_NODE_DISPLACEMENT_INCREMENTAL=100,t.MAX_NODE_DISPLACEMENT=t.MAX_NODE_DISPLACEMENT_INCREMENTAL*3,t.MIN_REPULSION_DIST=t.DEFAULT_EDGE_LENGTH/10,t.CONVERGENCE_CHECK_PERIOD=100,t.PER_LEVEL_IDEAL_EDGE_LENGTH_FACTOR=.1,t.MIN_EDGE_LENGTH=1,t.GRID_CALCULATION_CHECK_PERIOD=10,u.exports=t}),(function(u,D,y){var r=y(12);function t(){}t.calcSeparationAmount=function(e,i,o,g){if(!e.intersects(i))throw"assert failed";var a=new Array(2);this.decideDirectionsForOverlappingNodes(e,i,a),o[0]=Math.min(e.getRight(),i.getRight())-Math.max(e.x,i.x),o[1]=Math.min(e.getBottom(),i.getBottom())-Math.max(e.y,i.y),e.getX()<=i.getX()&&e.getRight()>=i.getRight()?o[0]+=Math.min(i.getX()-e.getX(),e.getRight()-i.getRight()):i.getX()<=e.getX()&&i.getRight()>=e.getRight()&&(o[0]+=Math.min(e.getX()-i.getX(),i.getRight()-e.getRight())),e.getY()<=i.getY()&&e.getBottom()>=i.getBottom()?o[1]+=Math.min(i.getY()-e.getY(),e.getBottom()-i.getBottom()):i.getY()<=e.getY()&&i.getBottom()>=e.getBottom()&&(o[1]+=Math.min(e.getY()-i.getY(),i.getBottom()-e.getBottom()));var v=Math.abs((i.getCenterY()-e.getCenterY())/(i.getCenterX()-e.getCenterX()));i.getCenterY()===e.getCenterY()&&i.getCenterX()===e.getCenterX()&&(v=1);var n=v*o[0],c=o[1]/v;o[0]<c?c=o[0]:n=o[1],o[0]=-1*a[0]*(c/2+g),o[1]=-1*a[1]*(n/2+g)},t.decideDirectionsForOverlappingNodes=function(e,i,o){e.getCenterX()<i.getCenterX()?o[0]=-1:o[0]=1,e.getCenterY()<i.getCenterY()?o[1]=-1:o[1]=1},t.getIntersection2=function(e,i,o){var g=e.getCenterX(),a=e.getCenterY(),v=i.getCenterX(),n=i.getCenterY();if(e.intersects(i))return o[0]=g,o[1]=a,o[2]=v,o[3]=n,!0;var c=e.getX(),l=e.getY(),E=e.getRight(),T=e.getX(),m=e.getBottom(),L=e.getRight(),O=e.getWidthHalf(),d=e.getHeightHalf(),N=i.getX(),s=i.getY(),h=i.getRight(),f=i.getX(),p=i.getBottom(),A=i.getRight(),I=i.getWidthHalf(),R=i.getHeightHalf(),x=!1,G=!1;if(g===v){if(a>n)return o[0]=g,o[1]=l,o[2]=v,o[3]=p,!1;if(a<n)return o[0]=g,o[1]=m,o[2]=v,o[3]=s,!1}else if(a===n){if(g>v)return o[0]=c,o[1]=a,o[2]=h,o[3]=n,!1;if(g<v)return o[0]=E,o[1]=a,o[2]=N,o[3]=n,!1}else{var U=e.height/e.width,X=i.height/i.width,w=(n-a)/(v-g),S=void 0,F=void 0,b=void 0,Y=void 0,k=void 0,H=void 0;if(-U===w?g>v?(o[0]=T,o[1]=m,x=!0):(o[0]=E,o[1]=l,x=!0):U===w&&(g>v?(o[0]=c,o[1]=l,x=!0):(o[0]=L,o[1]=m,x=!0)),-X===w?v>g?(o[2]=f,o[3]=p,G=!0):(o[2]=h,o[3]=s,G=!0):X===w&&(v>g?(o[2]=N,o[3]=s,G=!0):(o[2]=A,o[3]=p,G=!0)),x&&G)return!1;if(g>v?a>n?(S=this.getCardinalDirection(U,w,4),F=this.getCardinalDirection(X,w,2)):(S=this.getCardinalDirection(-U,w,3),F=this.getCardinalDirection(-X,w,1)):a>n?(S=this.getCardinalDirection(-U,w,1),F=this.getCardinalDirection(-X,w,3)):(S=this.getCardinalDirection(U,w,2),F=this.getCardinalDirection(X,w,4)),!x)switch(S){case 1:Y=l,b=g+-d/w,o[0]=b,o[1]=Y;break;case 2:b=L,Y=a+O*w,o[0]=b,o[1]=Y;break;case 3:Y=m,b=g+d/w,o[0]=b,o[1]=Y;break;case 4:b=T,Y=a+-O*w,o[0]=b,o[1]=Y;break}if(!G)switch(F){case 1:H=s,k=v+-R/w,o[2]=k,o[3]=H;break;case 2:k=A,H=n+I*w,o[2]=k,o[3]=H;break;case 3:H=p,k=v+R/w,o[2]=k,o[3]=H;break;case 4:k=f,H=n+-I*w,o[2]=k,o[3]=H;break}}return!1},t.getCardinalDirection=function(e,i,o){return e>i?o:1+o%4},t.getIntersection=function(e,i,o,g){if(g==null)return this.getIntersection2(e,i,o);var a=e.x,v=e.y,n=i.x,c=i.y,l=o.x,E=o.y,T=g.x,m=g.y,L=void 0,O=void 0,d=void 0,N=void 0,s=void 0,h=void 0,f=void 0,p=void 0,A=void 0;return d=c-v,s=a-n,f=n*v-a*c,N=m-E,h=l-T,p=T*E-l*m,A=d*h-N*s,A===0?null:(L=(s*p-h*f)/A,O=(N*f-d*p)/A,new r(L,O))},t.angleOfVector=function(e,i,o,g){var a=void 0;return e!==o?(a=Math.atan((g-i)/(o-e)),o<e?a+=Math.PI:g<i&&(a+=this.TWO_PI)):g<i?a=this.ONE_AND_HALF_PI:a=this.HALF_PI,a},t.doIntersect=function(e,i,o,g){var a=e.x,v=e.y,n=i.x,c=i.y,l=o.x,E=o.y,T=g.x,m=g.y,L=(n-a)*(m-E)-(T-l)*(c-v);if(L===0)return!1;var O=((m-E)*(T-a)+(l-T)*(m-v))/L,d=((v-c)*(T-a)+(n-a)*(m-v))/L;return 0<O&&O<1&&0<d&&d<1},t.HALF_PI=.5*Math.PI,t.ONE_AND_HALF_PI=1.5*Math.PI,t.TWO_PI=2*Math.PI,t.THREE_PI=3*Math.PI,u.exports=t}),(function(u,D,y){function r(){}r.sign=function(t){return t>0?1:t<0?-1:0},r.floor=function(t){return t<0?Math.ceil(t):Math.floor(t)},r.ceil=function(t){return t<0?Math.floor(t):Math.ceil(t)},u.exports=r}),(function(u,D,y){function r(){}r.MAX_VALUE=2147483647,r.MIN_VALUE=-2147483648,u.exports=r}),(function(u,D,y){var r=(function(){function a(v,n){for(var c=0;c<n.length;c++){var l=n[c];l.enumerable=l.enumerable||!1,l.configurable=!0,"value"in l&&(l.writable=!0),Object.defineProperty(v,l.key,l)}}return function(v,n,c){return n&&a(v.prototype,n),c&&a(v,c),v}})();function t(a,v){if(!(a instanceof v))throw new TypeError("Cannot call a class as a function")}var e=function(v){return{value:v,next:null,prev:null}},i=function(v,n,c,l){return v!==null?v.next=n:l.head=n,c!==null?c.prev=n:l.tail=n,n.prev=v,n.next=c,l.length++,n},o=function(v,n){var c=v.prev,l=v.next;return c!==null?c.next=l:n.head=l,l!==null?l.prev=c:n.tail=c,v.prev=v.next=null,n.length--,v},g=(function(){function a(v){var n=this;t(this,a),this.length=0,this.head=null,this.tail=null,v!=null&&v.forEach(function(c){return n.push(c)})}return r(a,[{key:"size",value:function(){return this.length}},{key:"insertBefore",value:function(n,c){return i(c.prev,e(n),c,this)}},{key:"insertAfter",value:function(n,c){return i(c,e(n),c.next,this)}},{key:"insertNodeBefore",value:function(n,c){return i(c.prev,n,c,this)}},{key:"insertNodeAfter",value:function(n,c){return i(c,n,c.next,this)}},{key:"push",value:function(n){return i(this.tail,e(n),null,this)}},{key:"unshift",value:function(n){return i(null,e(n),this.head,this)}},{key:"remove",value:function(n){return o(n,this)}},{key:"pop",value:function(){return o(this.tail,this).value}},{key:"popNode",value:function(){return o(this.tail,this)}},{key:"shift",value:function(){return o(this.head,this).value}},{key:"shiftNode",value:function(){return o(this.head,this)}},{key:"get_object_at",value:function(n){if(n<=this.length()){for(var c=1,l=this.head;c<n;)l=l.next,c++;return l.value}}},{key:"set_object_at",value:function(n,c){if(n<=this.length()){for(var l=1,E=this.head;l<n;)E=E.next,l++;E.value=c}}}]),a})();u.exports=g}),(function(u,D,y){function r(t,e,i){this.x=null,this.y=null,t==null&&e==null&&i==null?(this.x=0,this.y=0):typeof t=="number"&&typeof e=="number"&&i==null?(this.x=t,this.y=e):t.constructor.name=="Point"&&e==null&&i==null&&(i=t,this.x=i.x,this.y=i.y)}r.prototype.getX=function(){return this.x},r.prototype.getY=function(){return this.y},r.prototype.getLocation=function(){return new r(this.x,this.y)},r.prototype.setLocation=function(t,e,i){t.constructor.name=="Point"&&e==null&&i==null?(i=t,this.setLocation(i.x,i.y)):typeof t=="number"&&typeof e=="number"&&i==null&&(parseInt(t)==t&&parseInt(e)==e?this.move(t,e):(this.x=Math.floor(t+.5),this.y=Math.floor(e+.5)))},r.prototype.move=function(t,e){this.x=t,this.y=e},r.prototype.translate=function(t,e){this.x+=t,this.y+=e},r.prototype.equals=function(t){if(t.constructor.name=="Point"){var e=t;return this.x==e.x&&this.y==e.y}return this==t},r.prototype.toString=function(){return new r().constructor.name+"[x="+this.x+",y="+this.y+"]"},u.exports=r}),(function(u,D,y){function r(t,e,i,o){this.x=0,this.y=0,this.width=0,this.height=0,t!=null&&e!=null&&i!=null&&o!=null&&(this.x=t,this.y=e,this.width=i,this.height=o)}r.prototype.getX=function(){return this.x},r.prototype.setX=function(t){this.x=t},r.prototype.getY=function(){return this.y},r.prototype.setY=function(t){this.y=t},r.prototype.getWidth=function(){return this.width},r.prototype.setWidth=function(t){this.width=t},r.prototype.getHeight=function(){return this.height},r.prototype.setHeight=function(t){this.height=t},r.prototype.getRight=function(){return this.x+this.width},r.prototype.getBottom=function(){return this.y+this.height},r.prototype.intersects=function(t){return!(this.getRight()<t.x||this.getBottom()<t.y||t.getRight()<this.x||t.getBottom()<this.y)},r.prototype.getCenterX=function(){return this.x+this.width/2},r.prototype.getMinX=function(){return this.getX()},r.prototype.getMaxX=function(){return this.getX()+this.width},r.prototype.getCenterY=function(){return this.y+this.height/2},r.prototype.getMinY=function(){return this.getY()},r.prototype.getMaxY=function(){return this.getY()+this.height},r.prototype.getWidthHalf=function(){return this.width/2},r.prototype.getHeightHalf=function(){return this.height/2},u.exports=r}),(function(u,D,y){var r=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};function t(){}t.lastID=0,t.createID=function(e){return t.isPrimitive(e)?e:(e.uniqueID!=null||(e.uniqueID=t.getString(),t.lastID++),e.uniqueID)},t.getString=function(e){return e==null&&(e=t.lastID),"Object#"+e},t.isPrimitive=function(e){var i=typeof e>"u"?"undefined":r(e);return e==null||i!="object"&&i!="function"},u.exports=t}),(function(u,D,y){function r(l){if(Array.isArray(l)){for(var E=0,T=Array(l.length);E<l.length;E++)T[E]=l[E];return T}else return Array.from(l)}var t=y(0),e=y(6),i=y(3),o=y(1),g=y(5),a=y(4),v=y(17),n=y(27);function c(l){n.call(this),this.layoutQuality=t.QUALITY,this.createBendsAsNeeded=t.DEFAULT_CREATE_BENDS_AS_NEEDED,this.incremental=t.DEFAULT_INCREMENTAL,this.animationOnLayout=t.DEFAULT_ANIMATION_ON_LAYOUT,this.animationDuringLayout=t.DEFAULT_ANIMATION_DURING_LAYOUT,this.animationPeriod=t.DEFAULT_ANIMATION_PERIOD,this.uniformLeafNodeSizes=t.DEFAULT_UNIFORM_LEAF_NODE_SIZES,this.edgeToDummyNodes=new Map,this.graphManager=new e(this),this.isLayoutFinished=!1,this.isSubLayout=!1,this.isRemoteUse=!1,l!=null&&(this.isRemoteUse=l)}c.RANDOM_SEED=1,c.prototype=Object.create(n.prototype),c.prototype.getGraphManager=function(){return this.graphManager},c.prototype.getAllNodes=function(){return this.graphManager.getAllNodes()},c.prototype.getAllEdges=function(){return this.graphManager.getAllEdges()},c.prototype.getAllNodesToApplyGravitation=function(){return this.graphManager.getAllNodesToApplyGravitation()},c.prototype.newGraphManager=function(){var l=new e(this);return this.graphManager=l,l},c.prototype.newGraph=function(l){return new g(null,this.graphManager,l)},c.prototype.newNode=function(l){return new i(this.graphManager,l)},c.prototype.newEdge=function(l){return new o(null,null,l)},c.prototype.checkLayoutSuccess=function(){return this.graphManager.getRoot()==null||this.graphManager.getRoot().getNodes().length==0||this.graphManager.includesInvalidEdge()},c.prototype.runLayout=function(){this.isLayoutFinished=!1,this.tilingPreLayout&&this.tilingPreLayout(),this.initParameters();var l;return this.checkLayoutSuccess()?l=!1:l=this.layout(),t.ANIMATE==="during"?!1:(l&&(this.isSubLayout||this.doPostLayout()),this.tilingPostLayout&&this.tilingPostLayout(),this.isLayoutFinished=!0,l)},c.prototype.doPostLayout=function(){this.incremental||this.transform(),this.update()},c.prototype.update2=function(){if(this.createBendsAsNeeded&&(this.createBendpointsFromDummyNodes(),this.graphManager.resetAllEdges()),!this.isRemoteUse){for(var l=this.graphManager.getAllEdges(),E=0;E<l.length;E++)l[E];for(var T=this.graphManager.getRoot().getNodes(),E=0;E<T.length;E++)T[E];this.update(this.graphManager.getRoot())}},c.prototype.update=function(l){if(l==null)this.update2();else if(l instanceof i){var E=l;if(E.getChild()!=null)for(var T=E.getChild().getNodes(),m=0;m<T.length;m++)update(T[m]);if(E.vGraphObject!=null){var L=E.vGraphObject;L.update(E)}}else if(l instanceof o){var O=l;if(O.vGraphObject!=null){var d=O.vGraphObject;d.update(O)}}else if(l instanceof g){var N=l;if(N.vGraphObject!=null){var s=N.vGraphObject;s.update(N)}}},c.prototype.initParameters=function(){this.isSubLayout||(this.layoutQuality=t.QUALITY,this.animationDuringLayout=t.DEFAULT_ANIMATION_DURING_LAYOUT,this.animationPeriod=t.DEFAULT_ANIMATION_PERIOD,this.animationOnLayout=t.DEFAULT_ANIMATION_ON_LAYOUT,this.incremental=t.DEFAULT_INCREMENTAL,this.createBendsAsNeeded=t.DEFAULT_CREATE_BENDS_AS_NEEDED,this.uniformLeafNodeSizes=t.DEFAULT_UNIFORM_LEAF_NODE_SIZES),this.animationDuringLayout&&(this.animationOnLayout=!1)},c.prototype.transform=function(l){if(l==null)this.transform(new a(0,0));else{var E=new v,T=this.graphManager.getRoot().updateLeftTop();if(T!=null){E.setWorldOrgX(l.x),E.setWorldOrgY(l.y),E.setDeviceOrgX(T.x),E.setDeviceOrgY(T.y);for(var m=this.getAllNodes(),L,O=0;O<m.length;O++)L=m[O],L.transform(E)}}},c.prototype.positionNodesRandomly=function(l){if(l==null)this.positionNodesRandomly(this.getGraphManager().getRoot()),this.getGraphManager().getRoot().updateBounds(!0);else for(var E,T,m=l.getNodes(),L=0;L<m.length;L++)E=m[L],T=E.getChild(),T==null||T.getNodes().length==0?E.scatter():(this.positionNodesRandomly(T),E.updateBounds())},c.prototype.getFlatForest=function(){for(var l=[],E=!0,T=this.graphManager.getRoot().getNodes(),m=!0,L=0;L<T.length;L++)T[L].getChild()!=null&&(m=!1);if(!m)return l;var O=new Set,d=[],N=new Map,s=[];for(s=s.concat(T);s.length>0&&E;){for(d.push(s[0]);d.length>0&&E;){var h=d[0];d.splice(0,1),O.add(h);for(var f=h.getEdges(),L=0;L<f.length;L++){var p=f[L].getOtherEnd(h);if(N.get(h)!=p)if(!O.has(p))d.push(p),N.set(p,h);else{E=!1;break}}}if(!E)l=[];else{var A=[].concat(r(O));l.push(A);for(var L=0;L<A.length;L++){var I=A[L],R=s.indexOf(I);R>-1&&s.splice(R,1)}O=new Set,N=new Map}}return l},c.prototype.createDummyNodesForBendpoints=function(l){for(var E=[],T=l.source,m=this.graphManager.calcLowestCommonAncestor(l.source,l.target),L=0;L<l.bendpoints.length;L++){var O=this.newNode(null);O.setRect(new Point(0,0),new Dimension(1,1)),m.add(O);var d=this.newEdge(null);this.graphManager.add(d,T,O),E.add(O),T=O}var d=this.newEdge(null);return this.graphManager.add(d,T,l.target),this.edgeToDummyNodes.set(l,E),l.isInterGraph()?this.graphManager.remove(l):m.remove(l),E},c.prototype.createBendpointsFromDummyNodes=function(){var l=[];l=l.concat(this.graphManager.getAllEdges()),l=[].concat(r(this.edgeToDummyNodes.keys())).concat(l);for(var E=0;E<l.length;E++){var T=l[E];if(T.bendpoints.length>0){for(var m=this.edgeToDummyNodes.get(T),L=0;L<m.length;L++){var O=m[L],d=new a(O.getCenterX(),O.getCenterY()),N=T.bendpoints.get(L);N.x=d.x,N.y=d.y,O.getOwner().remove(O)}this.graphManager.add(T,T.source,T.target)}}},c.transform=function(l,E,T,m){if(T!=null&&m!=null){var L=E;if(l<=50){var O=E/T;L-=(E-O)/50*(50-l)}else{var d=E*m;L+=(d-E)/50*(l-50)}return L}else{var N,s;return l<=50?(N=9*E/500,s=E/10):(N=9*E/50,s=-8*E),N*l+s}},c.findCenterOfTree=function(l){var E=[];E=E.concat(l);var T=[],m=new Map,L=!1,O=null;(E.length==1||E.length==2)&&(L=!0,O=E[0]);for(var d=0;d<E.length;d++){var N=E[d],s=N.getNeighborsList().size;m.set(N,N.getNeighborsList().size),s==1&&T.push(N)}var h=[];for(h=h.concat(T);!L;){var f=[];f=f.concat(h),h=[];for(var d=0;d<E.length;d++){var N=E[d],p=E.indexOf(N);p>=0&&E.splice(p,1);var A=N.getNeighborsList();A.forEach(function(x){if(T.indexOf(x)<0){var G=m.get(x),U=G-1;U==1&&h.push(x),m.set(x,U)}})}T=T.concat(h),(E.length==1||E.length==2)&&(L=!0,O=E[0])}return O},c.prototype.setGraphManager=function(l){this.graphManager=l},u.exports=c}),(function(u,D,y){function r(){}r.seed=1,r.x=0,r.nextDouble=function(){return r.x=Math.sin(r.seed++)*1e4,r.x-Math.floor(r.x)},u.exports=r}),(function(u,D,y){var r=y(4);function t(e,i){this.lworldOrgX=0,this.lworldOrgY=0,this.ldeviceOrgX=0,this.ldeviceOrgY=0,this.lworldExtX=1,this.lworldExtY=1,this.ldeviceExtX=1,this.ldeviceExtY=1}t.prototype.getWorldOrgX=function(){return this.lworldOrgX},t.prototype.setWorldOrgX=function(e){this.lworldOrgX=e},t.prototype.getWorldOrgY=function(){return this.lworldOrgY},t.prototype.setWorldOrgY=function(e){this.lworldOrgY=e},t.prototype.getWorldExtX=function(){return this.lworldExtX},t.prototype.setWorldExtX=function(e){this.lworldExtX=e},t.prototype.getWorldExtY=function(){return this.lworldExtY},t.prototype.setWorldExtY=function(e){this.lworldExtY=e},t.prototype.getDeviceOrgX=function(){return this.ldeviceOrgX},t.prototype.setDeviceOrgX=function(e){this.ldeviceOrgX=e},t.prototype.getDeviceOrgY=function(){return this.ldeviceOrgY},t.prototype.setDeviceOrgY=function(e){this.ldeviceOrgY=e},t.prototype.getDeviceExtX=function(){return this.ldeviceExtX},t.prototype.setDeviceExtX=function(e){this.ldeviceExtX=e},t.prototype.getDeviceExtY=function(){return this.ldeviceExtY},t.prototype.setDeviceExtY=function(e){this.ldeviceExtY=e},t.prototype.transformX=function(e){var i=0,o=this.lworldExtX;return o!=0&&(i=this.ldeviceOrgX+(e-this.lworldOrgX)*this.ldeviceExtX/o),i},t.prototype.transformY=function(e){var i=0,o=this.lworldExtY;return o!=0&&(i=this.ldeviceOrgY+(e-this.lworldOrgY)*this.ldeviceExtY/o),i},t.prototype.inverseTransformX=function(e){var i=0,o=this.ldeviceExtX;return o!=0&&(i=this.lworldOrgX+(e-this.ldeviceOrgX)*this.lworldExtX/o),i},t.prototype.inverseTransformY=function(e){var i=0,o=this.ldeviceExtY;return o!=0&&(i=this.lworldOrgY+(e-this.ldeviceOrgY)*this.lworldExtY/o),i},t.prototype.inverseTransformPoint=function(e){var i=new r(this.inverseTransformX(e.x),this.inverseTransformY(e.y));return i},u.exports=t}),(function(u,D,y){function r(n){if(Array.isArray(n)){for(var c=0,l=Array(n.length);c<n.length;c++)l[c]=n[c];return l}else return Array.from(n)}var t=y(15),e=y(7),i=y(0),o=y(8),g=y(9);function a(){t.call(this),this.useSmartIdealEdgeLengthCalculation=e.DEFAULT_USE_SMART_IDEAL_EDGE_LENGTH_CALCULATION,this.idealEdgeLength=e.DEFAULT_EDGE_LENGTH,this.springConstant=e.DEFAULT_SPRING_STRENGTH,this.repulsionConstant=e.DEFAULT_REPULSION_STRENGTH,this.gravityConstant=e.DEFAULT_GRAVITY_STRENGTH,this.compoundGravityConstant=e.DEFAULT_COMPOUND_GRAVITY_STRENGTH,this.gravityRangeFactor=e.DEFAULT_GRAVITY_RANGE_FACTOR,this.compoundGravityRangeFactor=e.DEFAULT_COMPOUND_GRAVITY_RANGE_FACTOR,this.displacementThresholdPerNode=3*e.DEFAULT_EDGE_LENGTH/100,this.coolingFactor=e.DEFAULT_COOLING_FACTOR_INCREMENTAL,this.initialCoolingFactor=e.DEFAULT_COOLING_FACTOR_INCREMENTAL,this.totalDisplacement=0,this.oldTotalDisplacement=0,this.maxIterations=e.MAX_ITERATIONS}a.prototype=Object.create(t.prototype);for(var v in t)a[v]=t[v];a.prototype.initParameters=function(){t.prototype.initParameters.call(this,arguments),this.totalIterations=0,this.notAnimatedIterations=0,this.useFRGridVariant=e.DEFAULT_USE_SMART_REPULSION_RANGE_CALCULATION,this.grid=[]},a.prototype.calcIdealEdgeLengths=function(){for(var n,c,l,E,T,m,L=this.getGraphManager().getAllEdges(),O=0;O<L.length;O++)n=L[O],n.idealLength=this.idealEdgeLength,n.isInterGraph&&(l=n.getSource(),E=n.getTarget(),T=n.getSourceInLca().getEstimatedSize(),m=n.getTargetInLca().getEstimatedSize(),this.useSmartIdealEdgeLengthCalculation&&(n.idealLength+=T+m-2*i.SIMPLE_NODE_SIZE),c=n.getLca().getInclusionTreeDepth(),n.idealLength+=e.DEFAULT_EDGE_LENGTH*e.PER_LEVEL_IDEAL_EDGE_LENGTH_FACTOR*(l.getInclusionTreeDepth()+E.getInclusionTreeDepth()-2*c))},a.prototype.initSpringEmbedder=function(){var n=this.getAllNodes().length;this.incremental?(n>e.ADAPTATION_LOWER_NODE_LIMIT&&(this.coolingFactor=Math.max(this.coolingFactor*e.COOLING_ADAPTATION_FACTOR,this.coolingFactor-(n-e.ADAPTATION_LOWER_NODE_LIMIT)/(e.ADAPTATION_UPPER_NODE_LIMIT-e.ADAPTATION_LOWER_NODE_LIMIT)*this.coolingFactor*(1-e.COOLING_ADAPTATION_FACTOR))),this.maxNodeDisplacement=e.MAX_NODE_DISPLACEMENT_INCREMENTAL):(n>e.ADAPTATION_LOWER_NODE_LIMIT?this.coolingFactor=Math.max(e.COOLING_ADAPTATION_FACTOR,1-(n-e.ADAPTATION_LOWER_NODE_LIMIT)/(e.ADAPTATION_UPPER_NODE_LIMIT-e.ADAPTATION_LOWER_NODE_LIMIT)*(1-e.COOLING_ADAPTATION_FACTOR)):this.coolingFactor=1,this.initialCoolingFactor=this.coolingFactor,this.maxNodeDisplacement=e.MAX_NODE_DISPLACEMENT),this.maxIterations=Math.max(this.getAllNodes().length*5,this.maxIterations),this.totalDisplacementThreshold=this.displacementThresholdPerNode*this.getAllNodes().length,this.repulsionRange=this.calcRepulsionRange()},a.prototype.calcSpringForces=function(){for(var n=this.getAllEdges(),c,l=0;l<n.length;l++)c=n[l],this.calcSpringForce(c,c.idealLength)},a.prototype.calcRepulsionForces=function(){var n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!0,c=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,l,E,T,m,L=this.getAllNodes(),O;if(this.useFRGridVariant)for(this.totalIterations%e.GRID_CALCULATION_CHECK_PERIOD==1&&n&&this.updateGrid(),O=new Set,l=0;l<L.length;l++)T=L[l],this.calculateRepulsionForceOfANode(T,O,n,c),O.add(T);else for(l=0;l<L.length;l++)for(T=L[l],E=l+1;E<L.length;E++)m=L[E],T.getOwner()==m.getOwner()&&this.calcRepulsionForce(T,m)},a.prototype.calcGravitationalForces=function(){for(var n,c=this.getAllNodesToApplyGravitation(),l=0;l<c.length;l++)n=c[l],this.calcGravitationalForce(n)},a.prototype.moveNodes=function(){for(var n=this.getAllNodes(),c,l=0;l<n.length;l++)c=n[l],c.move()},a.prototype.calcSpringForce=function(n,c){var l=n.getSource(),E=n.getTarget(),T,m,L,O;if(this.uniformLeafNodeSizes&&l.getChild()==null&&E.getChild()==null)n.updateLengthSimple();else if(n.updateLength(),n.isOverlapingSourceAndTarget)return;T=n.getLength(),T!=0&&(m=this.springConstant*(T-c),L=m*(n.lengthX/T),O=m*(n.lengthY/T),l.springForceX+=L,l.springForceY+=O,E.springForceX-=L,E.springForceY-=O)},a.prototype.calcRepulsionForce=function(n,c){var l=n.getRect(),E=c.getRect(),T=new Array(2),m=new Array(4),L,O,d,N,s,h,f;if(l.intersects(E)){o.calcSeparationAmount(l,E,T,e.DEFAULT_EDGE_LENGTH/2),h=2*T[0],f=2*T[1];var p=n.noOfChildren*c.noOfChildren/(n.noOfChildren+c.noOfChildren);n.repulsionForceX-=p*h,n.repulsionForceY-=p*f,c.repulsionForceX+=p*h,c.repulsionForceY+=p*f}else this.uniformLeafNodeSizes&&n.getChild()==null&&c.getChild()==null?(L=E.getCenterX()-l.getCenterX(),O=E.getCenterY()-l.getCenterY()):(o.getIntersection(l,E,m),L=m[2]-m[0],O=m[3]-m[1]),Math.abs(L)<e.MIN_REPULSION_DIST&&(L=g.sign(L)*e.MIN_REPULSION_DIST),Math.abs(O)<e.MIN_REPULSION_DIST&&(O=g.sign(O)*e.MIN_REPULSION_DIST),d=L*L+O*O,N=Math.sqrt(d),s=this.repulsionConstant*n.noOfChildren*c.noOfChildren/d,h=s*L/N,f=s*O/N,n.repulsionForceX-=h,n.repulsionForceY-=f,c.repulsionForceX+=h,c.repulsionForceY+=f},a.prototype.calcGravitationalForce=function(n){var c,l,E,T,m,L,O,d;c=n.getOwner(),l=(c.getRight()+c.getLeft())/2,E=(c.getTop()+c.getBottom())/2,T=n.getCenterX()-l,m=n.getCenterY()-E,L=Math.abs(T)+n.getWidth()/2,O=Math.abs(m)+n.getHeight()/2,n.getOwner()==this.graphManager.getRoot()?(d=c.getEstimatedSize()*this.gravityRangeFactor,(L>d||O>d)&&(n.gravitationForceX=-this.gravityConstant*T,n.gravitationForceY=-this.gravityConstant*m)):(d=c.getEstimatedSize()*this.compoundGravityRangeFactor,(L>d||O>d)&&(n.gravitationForceX=-this.gravityConstant*T*this.compoundGravityConstant,n.gravitationForceY=-this.gravityConstant*m*this.compoundGravityConstant))},a.prototype.isConverged=function(){var n,c=!1;return this.totalIterations>this.maxIterations/3&&(c=Math.abs(this.totalDisplacement-this.oldTotalDisplacement)<2),n=this.totalDisplacement<this.totalDisplacementThreshold,this.oldTotalDisplacement=this.totalDisplacement,n||c},a.prototype.animate=function(){this.animationDuringLayout&&!this.isSubLayout&&(this.notAnimatedIterations==this.animationPeriod?(this.update(),this.notAnimatedIterations=0):this.notAnimatedIterations++)},a.prototype.calcNoOfChildrenForAllNodes=function(){for(var n,c=this.graphManager.getAllNodes(),l=0;l<c.length;l++)n=c[l],n.noOfChildren=n.getNoOfChildren()},a.prototype.calcGrid=function(n){var c=0,l=0;c=parseInt(Math.ceil((n.getRight()-n.getLeft())/this.repulsionRange)),l=parseInt(Math.ceil((n.getBottom()-n.getTop())/this.repulsionRange));for(var E=new Array(c),T=0;T<c;T++)E[T]=new Array(l);for(var T=0;T<c;T++)for(var m=0;m<l;m++)E[T][m]=new Array;return E},a.prototype.addNodeToGrid=function(n,c,l){var E=0,T=0,m=0,L=0;E=parseInt(Math.floor((n.getRect().x-c)/this.repulsionRange)),T=parseInt(Math.floor((n.getRect().width+n.getRect().x-c)/this.repulsionRange)),m=parseInt(Math.floor((n.getRect().y-l)/this.repulsionRange)),L=parseInt(Math.floor((n.getRect().height+n.getRect().y-l)/this.repulsionRange));for(var O=E;O<=T;O++)for(var d=m;d<=L;d++)this.grid[O][d].push(n),n.setGridCoordinates(E,T,m,L)},a.prototype.updateGrid=function(){var n,c,l=this.getAllNodes();for(this.grid=this.calcGrid(this.graphManager.getRoot()),n=0;n<l.length;n++)c=l[n],this.addNodeToGrid(c,this.graphManager.getRoot().getLeft(),this.graphManager.getRoot().getTop())},a.prototype.calculateRepulsionForceOfANode=function(n,c,l,E){if(this.totalIterations%e.GRID_CALCULATION_CHECK_PERIOD==1&&l||E){var T=new Set;n.surrounding=new Array;for(var m,L=this.grid,O=n.startX-1;O<n.finishX+2;O++)for(var d=n.startY-1;d<n.finishY+2;d++)if(!(O<0||d<0||O>=L.length||d>=L[0].length)){for(var N=0;N<L[O][d].length;N++)if(m=L[O][d][N],!(n.getOwner()!=m.getOwner()||n==m)&&!c.has(m)&&!T.has(m)){var s=Math.abs(n.getCenterX()-m.getCenterX())-(n.getWidth()/2+m.getWidth()/2),h=Math.abs(n.getCenterY()-m.getCenterY())-(n.getHeight()/2+m.getHeight()/2);s<=this.repulsionRange&&h<=this.repulsionRange&&T.add(m)}}n.surrounding=[].concat(r(T))}for(O=0;O<n.surrounding.length;O++)this.calcRepulsionForce(n,n.surrounding[O])},a.prototype.calcRepulsionRange=function(){return 0},u.exports=a}),(function(u,D,y){var r=y(1),t=y(7);function e(o,g,a){r.call(this,o,g,a),this.idealLength=t.DEFAULT_EDGE_LENGTH}e.prototype=Object.create(r.prototype);for(var i in r)e[i]=r[i];u.exports=e}),(function(u,D,y){var r=y(3);function t(i,o,g,a){r.call(this,i,o,g,a),this.springForceX=0,this.springForceY=0,this.repulsionForceX=0,this.repulsionForceY=0,this.gravitationForceX=0,this.gravitationForceY=0,this.displacementX=0,this.displacementY=0,this.startX=0,this.finishX=0,this.startY=0,this.finishY=0,this.surrounding=[]}t.prototype=Object.create(r.prototype);for(var e in r)t[e]=r[e];t.prototype.setGridCoordinates=function(i,o,g,a){this.startX=i,this.finishX=o,this.startY=g,this.finishY=a},u.exports=t}),(function(u,D,y){function r(t,e){this.width=0,this.height=0,t!==null&&e!==null&&(this.height=e,this.width=t)}r.prototype.getWidth=function(){return this.width},r.prototype.setWidth=function(t){this.width=t},r.prototype.getHeight=function(){return this.height},r.prototype.setHeight=function(t){this.height=t},u.exports=r}),(function(u,D,y){var r=y(14);function t(){this.map={},this.keys=[]}t.prototype.put=function(e,i){var o=r.createID(e);this.contains(o)||(this.map[o]=i,this.keys.push(e))},t.prototype.contains=function(e){return r.createID(e),this.map[e]!=null},t.prototype.get=function(e){var i=r.createID(e);return this.map[i]},t.prototype.keySet=function(){return this.keys},u.exports=t}),(function(u,D,y){var r=y(14);function t(){this.set={}}t.prototype.add=function(e){var i=r.createID(e);this.contains(i)||(this.set[i]=e)},t.prototype.remove=function(e){delete this.set[r.createID(e)]},t.prototype.clear=function(){this.set={}},t.prototype.contains=function(e){return this.set[r.createID(e)]==e},t.prototype.isEmpty=function(){return this.size()===0},t.prototype.size=function(){return Object.keys(this.set).length},t.prototype.addAllTo=function(e){for(var i=Object.keys(this.set),o=i.length,g=0;g<o;g++)e.push(this.set[i[g]])},t.prototype.size=function(){return Object.keys(this.set).length},t.prototype.addAll=function(e){for(var i=e.length,o=0;o<i;o++){var g=e[o];this.add(g)}},u.exports=t}),(function(u,D,y){var r=(function(){function o(g,a){for(var v=0;v<a.length;v++){var n=a[v];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(g,n.key,n)}}return function(g,a,v){return a&&o(g.prototype,a),v&&o(g,v),g}})();function t(o,g){if(!(o instanceof g))throw new TypeError("Cannot call a class as a function")}var e=y(11),i=(function(){function o(g,a){t(this,o),(a!==null||a!==void 0)&&(this.compareFunction=this._defaultCompareFunction);var v=void 0;g instanceof e?v=g.size():v=g.length,this._quicksort(g,0,v-1)}return r(o,[{key:"_quicksort",value:function(a,v,n){if(v<n){var c=this._partition(a,v,n);this._quicksort(a,v,c),this._quicksort(a,c+1,n)}}},{key:"_partition",value:function(a,v,n){for(var c=this._get(a,v),l=v,E=n;;){for(;this.compareFunction(c,this._get(a,E));)E--;for(;this.compareFunction(this._get(a,l),c);)l++;if(l<E)this._swap(a,l,E),l++,E--;else return E}}},{key:"_get",value:function(a,v){return a instanceof e?a.get_object_at(v):a[v]}},{key:"_set",value:function(a,v,n){a instanceof e?a.set_object_at(v,n):a[v]=n}},{key:"_swap",value:function(a,v,n){var c=this._get(a,v);this._set(a,v,this._get(a,n)),this._set(a,n,c)}},{key:"_defaultCompareFunction",value:function(a,v){return v>a}}]),o})();u.exports=i}),(function(u,D,y){var r=(function(){function i(o,g){for(var a=0;a<g.length;a++){var v=g[a];v.enumerable=v.enumerable||!1,v.configurable=!0,"value"in v&&(v.writable=!0),Object.defineProperty(o,v.key,v)}}return function(o,g,a){return g&&i(o.prototype,g),a&&i(o,a),o}})();function t(i,o){if(!(i instanceof o))throw new TypeError("Cannot call a class as a function")}var e=(function(){function i(o,g){var a=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1,v=arguments.length>3&&arguments[3]!==void 0?arguments[3]:-1,n=arguments.length>4&&arguments[4]!==void 0?arguments[4]:-1;t(this,i),this.sequence1=o,this.sequence2=g,this.match_score=a,this.mismatch_penalty=v,this.gap_penalty=n,this.iMax=o.length+1,this.jMax=g.length+1,this.grid=new Array(this.iMax);for(var c=0;c<this.iMax;c++){this.grid[c]=new Array(this.jMax);for(var l=0;l<this.jMax;l++)this.grid[c][l]=0}this.tracebackGrid=new Array(this.iMax);for(var E=0;E<this.iMax;E++){this.tracebackGrid[E]=new Array(this.jMax);for(var T=0;T<this.jMax;T++)this.tracebackGrid[E][T]=[null,null,null]}this.alignments=[],this.score=-1,this.computeGrids()}return r(i,[{key:"getScore",value:function(){return this.score}},{key:"getAlignments",value:function(){return this.alignments}},{key:"computeGrids",value:function(){for(var g=1;g<this.jMax;g++)this.grid[0][g]=this.grid[0][g-1]+this.gap_penalty,this.tracebackGrid[0][g]=[!1,!1,!0];for(var a=1;a<this.iMax;a++)this.grid[a][0]=this.grid[a-1][0]+this.gap_penalty,this.tracebackGrid[a][0]=[!1,!0,!1];for(var v=1;v<this.iMax;v++)for(var n=1;n<this.jMax;n++){var c=void 0;this.sequence1[v-1]===this.sequence2[n-1]?c=this.grid[v-1][n-1]+this.match_score:c=this.grid[v-1][n-1]+this.mismatch_penalty;var l=this.grid[v-1][n]+this.gap_penalty,E=this.grid[v][n-1]+this.gap_penalty,T=[c,l,E],m=this.arrayAllMaxIndexes(T);this.grid[v][n]=T[m[0]],this.tracebackGrid[v][n]=[m.includes(0),m.includes(1),m.includes(2)]}this.score=this.grid[this.iMax-1][this.jMax-1]}},{key:"alignmentTraceback",value:function(){var g=[];for(g.push({pos:[this.sequence1.length,this.sequence2.length],seq1:"",seq2:""});g[0];){var a=g[0],v=this.tracebackGrid[a.pos[0]][a.pos[1]];v[0]&&g.push({pos:[a.pos[0]-1,a.pos[1]-1],seq1:this.sequence1[a.pos[0]-1]+a.seq1,seq2:this.sequence2[a.pos[1]-1]+a.seq2}),v[1]&&g.push({pos:[a.pos[0]-1,a.pos[1]],seq1:this.sequence1[a.pos[0]-1]+a.seq1,seq2:"-"+a.seq2}),v[2]&&g.push({pos:[a.pos[0],a.pos[1]-1],seq1:"-"+a.seq1,seq2:this.sequence2[a.pos[1]-1]+a.seq2}),a.pos[0]===0&&a.pos[1]===0&&this.alignments.push({sequence1:a.seq1,sequence2:a.seq2}),g.shift()}return this.alignments}},{key:"getAllIndexes",value:function(g,a){for(var v=[],n=-1;(n=g.indexOf(a,n+1))!==-1;)v.push(n);return v}},{key:"arrayAllMaxIndexes",value:function(g){return this.getAllIndexes(g,Math.max.apply(null,g))}}]),i})();u.exports=e}),(function(u,D,y){var r=function(){};r.FDLayout=y(18),r.FDLayoutConstants=y(7),r.FDLayoutEdge=y(19),r.FDLayoutNode=y(20),r.DimensionD=y(21),r.HashMap=y(22),r.HashSet=y(23),r.IGeometry=y(8),r.IMath=y(9),r.Integer=y(10),r.Point=y(12),r.PointD=y(4),r.RandomSeed=y(16),r.RectangleD=y(13),r.Transform=y(17),r.UniqueIDGeneretor=y(14),r.Quicksort=y(24),r.LinkedList=y(11),r.LGraphObject=y(2),r.LGraph=y(5),r.LEdge=y(1),r.LGraphManager=y(6),r.LNode=y(3),r.Layout=y(15),r.LayoutConstants=y(0),r.NeedlemanWunsch=y(25),u.exports=r}),(function(u,D,y){function r(){this.listeners=[]}var t=r.prototype;t.addListener=function(e,i){this.listeners.push({event:e,callback:i})},t.removeListener=function(e,i){for(var o=this.listeners.length;o>=0;o--){var g=this.listeners[o];g.event===e&&g.callback===i&&this.listeners.splice(o,1)}},t.emit=function(e,i){for(var o=0;o<this.listeners.length;o++){var g=this.listeners[o];e===g.event&&g.callback(i)}},u.exports=r})])})})(rt)),rt.exports}var xt=et.exports,gt;function Mt(){return gt||(gt=1,(function(C,M){(function(D,y){C.exports=y(Rt())})(xt,function(u){return(function(D){var y={};function r(t){if(y[t])return y[t].exports;var e=y[t]={i:t,l:!1,exports:{}};return D[t].call(e.exports,e,e.exports,r),e.l=!0,e.exports}return r.m=D,r.c=y,r.i=function(t){return t},r.d=function(t,e,i){r.o(t,e)||Object.defineProperty(t,e,{configurable:!1,enumerable:!0,get:i})},r.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return r.d(e,"a",e),e},r.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},r.p="",r(r.s=7)})([(function(D,y){D.exports=u}),(function(D,y,r){var t=r(0).FDLayoutConstants;function e(){}for(var i in t)e[i]=t[i];e.DEFAULT_USE_MULTI_LEVEL_SCALING=!1,e.DEFAULT_RADIAL_SEPARATION=t.DEFAULT_EDGE_LENGTH,e.DEFAULT_COMPONENT_SEPERATION=60,e.TILE=!0,e.TILING_PADDING_VERTICAL=10,e.TILING_PADDING_HORIZONTAL=10,e.TREE_REDUCTION_ON_INCREMENTAL=!1,D.exports=e}),(function(D,y,r){var t=r(0).FDLayoutEdge;function e(o,g,a){t.call(this,o,g,a)}e.prototype=Object.create(t.prototype);for(var i in t)e[i]=t[i];D.exports=e}),(function(D,y,r){var t=r(0).LGraph;function e(o,g,a){t.call(this,o,g,a)}e.prototype=Object.create(t.prototype);for(var i in t)e[i]=t[i];D.exports=e}),(function(D,y,r){var t=r(0).LGraphManager;function e(o){t.call(this,o)}e.prototype=Object.create(t.prototype);for(var i in t)e[i]=t[i];D.exports=e}),(function(D,y,r){var t=r(0).FDLayoutNode,e=r(0).IMath;function i(g,a,v,n){t.call(this,g,a,v,n)}i.prototype=Object.create(t.prototype);for(var o in t)i[o]=t[o];i.prototype.move=function(){var g=this.graphManager.getLayout();this.displacementX=g.coolingFactor*(this.springForceX+this.repulsionForceX+this.gravitationForceX)/this.noOfChildren,this.displacementY=g.coolingFactor*(this.springForceY+this.repulsionForceY+this.gravitationForceY)/this.noOfChildren,Math.abs(this.displacementX)>g.coolingFactor*g.maxNodeDisplacement&&(this.displacementX=g.coolingFactor*g.maxNodeDisplacement*e.sign(this.displacementX)),Math.abs(this.displacementY)>g.coolingFactor*g.maxNodeDisplacement&&(this.displacementY=g.coolingFactor*g.maxNodeDisplacement*e.sign(this.displacementY)),this.child==null?this.moveBy(this.displacementX,this.displacementY):this.child.getNodes().length==0?this.moveBy(this.displacementX,this.displacementY):this.propogateDisplacementToChildren(this.displacementX,this.displacementY),g.totalDisplacement+=Math.abs(this.displacementX)+Math.abs(this.displacementY),this.springForceX=0,this.springForceY=0,this.repulsionForceX=0,this.repulsionForceY=0,this.gravitationForceX=0,this.gravitationForceY=0,this.displacementX=0,this.displacementY=0},i.prototype.propogateDisplacementToChildren=function(g,a){for(var v=this.getChild().getNodes(),n,c=0;c<v.length;c++)n=v[c],n.getChild()==null?(n.moveBy(g,a),n.displacementX+=g,n.displacementY+=a):n.propogateDisplacementToChildren(g,a)},i.prototype.setPred1=function(g){this.pred1=g},i.prototype.getPred1=function(){return pred1},i.prototype.getPred2=function(){return pred2},i.prototype.setNext=function(g){this.next=g},i.prototype.getNext=function(){return next},i.prototype.setProcessed=function(g){this.processed=g},i.prototype.isProcessed=function(){return processed},D.exports=i}),(function(D,y,r){var t=r(0).FDLayout,e=r(4),i=r(3),o=r(5),g=r(2),a=r(1),v=r(0).FDLayoutConstants,n=r(0).LayoutConstants,c=r(0).Point,l=r(0).PointD,E=r(0).Layout,T=r(0).Integer,m=r(0).IGeometry,L=r(0).LGraph,O=r(0).Transform;function d(){t.call(this),this.toBeTiled={}}d.prototype=Object.create(t.prototype);for(var N in t)d[N]=t[N];d.prototype.newGraphManager=function(){var s=new e(this);return this.graphManager=s,s},d.prototype.newGraph=function(s){return new i(null,this.graphManager,s)},d.prototype.newNode=function(s){return new o(this.graphManager,s)},d.prototype.newEdge=function(s){return new g(null,null,s)},d.prototype.initParameters=function(){t.prototype.initParameters.call(this,arguments),this.isSubLayout||(a.DEFAULT_EDGE_LENGTH<10?this.idealEdgeLength=10:this.idealEdgeLength=a.DEFAULT_EDGE_LENGTH,this.useSmartIdealEdgeLengthCalculation=a.DEFAULT_USE_SMART_IDEAL_EDGE_LENGTH_CALCULATION,this.springConstant=v.DEFAULT_SPRING_STRENGTH,this.repulsionConstant=v.DEFAULT_REPULSION_STRENGTH,this.gravityConstant=v.DEFAULT_GRAVITY_STRENGTH,this.compoundGravityConstant=v.DEFAULT_COMPOUND_GRAVITY_STRENGTH,this.gravityRangeFactor=v.DEFAULT_GRAVITY_RANGE_FACTOR,this.compoundGravityRangeFactor=v.DEFAULT_COMPOUND_GRAVITY_RANGE_FACTOR,this.prunedNodesAll=[],this.growTreeIterations=0,this.afterGrowthIterations=0,this.isTreeGrowing=!1,this.isGrowthFinished=!1,this.coolingCycle=0,this.maxCoolingCycle=this.maxIterations/v.CONVERGENCE_CHECK_PERIOD,this.finalTemperature=v.CONVERGENCE_CHECK_PERIOD/this.maxIterations,this.coolingAdjuster=1)},d.prototype.layout=function(){var s=n.DEFAULT_CREATE_BENDS_AS_NEEDED;return s&&(this.createBendpoints(),this.graphManager.resetAllEdges()),this.level=0,this.classicLayout()},d.prototype.classicLayout=function(){if(this.nodesWithGravity=this.calculateNodesToApplyGravitationTo(),this.graphManager.setAllNodesToApplyGravitation(this.nodesWithGravity),this.calcNoOfChildrenForAllNodes(),this.graphManager.calcLowestCommonAncestors(),this.graphManager.calcInclusionTreeDepths(),this.graphManager.getRoot().calcEstimatedSize(),this.calcIdealEdgeLengths(),this.incremental){if(a.TREE_REDUCTION_ON_INCREMENTAL){this.reduceTrees(),this.graphManager.resetAllNodesToApplyGravitation();var h=new Set(this.getAllNodes()),f=this.nodesWithGravity.filter(function(I){return h.has(I)});this.graphManager.setAllNodesToApplyGravitation(f)}}else{var s=this.getFlatForest();if(s.length>0)this.positionNodesRadially(s);else{this.reduceTrees(),this.graphManager.resetAllNodesToApplyGravitation();var h=new Set(this.getAllNodes()),f=this.nodesWithGravity.filter(function(p){return h.has(p)});this.graphManager.setAllNodesToApplyGravitation(f),this.positionNodesRandomly()}}return this.initSpringEmbedder(),this.runSpringEmbedder(),!0},d.prototype.tick=function(){if(this.totalIterations++,this.totalIterations===this.maxIterations&&!this.isTreeGrowing&&!this.isGrowthFinished)if(this.prunedNodesAll.length>0)this.isTreeGrowing=!0;else return!0;if(this.totalIterations%v.CONVERGENCE_CHECK_PERIOD==0&&!this.isTreeGrowing&&!this.isGrowthFinished){if(this.isConverged())if(this.prunedNodesAll.length>0)this.isTreeGrowing=!0;else return!0;this.coolingCycle++,this.layoutQuality==0?this.coolingAdjuster=this.coolingCycle:this.layoutQuality==1&&(this.coolingAdjuster=this.coolingCycle/3),this.coolingFactor=Math.max(this.initialCoolingFactor-Math.pow(this.coolingCycle,Math.log(100*(this.initialCoolingFactor-this.finalTemperature))/Math.log(this.maxCoolingCycle))/100*this.coolingAdjuster,this.finalTemperature),this.animationPeriod=Math.ceil(this.initialAnimationPeriod*Math.sqrt(this.coolingFactor))}if(this.isTreeGrowing){if(this.growTreeIterations%10==0)if(this.prunedNodesAll.length>0){this.graphManager.updateBounds(),this.updateGrid(),this.growTree(this.prunedNodesAll),this.graphManager.resetAllNodesToApplyGravitation();var s=new Set(this.getAllNodes()),h=this.nodesWithGravity.filter(function(A){return s.has(A)});this.graphManager.setAllNodesToApplyGravitation(h),this.graphManager.updateBounds(),this.updateGrid(),this.coolingFactor=v.DEFAULT_COOLING_FACTOR_INCREMENTAL}else this.isTreeGrowing=!1,this.isGrowthFinished=!0;this.growTreeIterations++}if(this.isGrowthFinished){if(this.isConverged())return!0;this.afterGrowthIterations%10==0&&(this.graphManager.updateBounds(),this.updateGrid()),this.coolingFactor=v.DEFAULT_COOLING_FACTOR_INCREMENTAL*((100-this.afterGrowthIterations)/100),this.afterGrowthIterations++}var f=!this.isTreeGrowing&&!this.isGrowthFinished,p=this.growTreeIterations%10==1&&this.isTreeGrowing||this.afterGrowthIterations%10==1&&this.isGrowthFinished;return this.totalDisplacement=0,this.graphManager.updateBounds(),this.calcSpringForces(),this.calcRepulsionForces(f,p),this.calcGravitationalForces(),this.moveNodes(),this.animate(),!1},d.prototype.getPositionsData=function(){for(var s=this.graphManager.getAllNodes(),h={},f=0;f<s.length;f++){var p=s[f].rect,A=s[f].id;h[A]={id:A,x:p.getCenterX(),y:p.getCenterY(),w:p.width,h:p.height}}return h},d.prototype.runSpringEmbedder=function(){this.initialAnimationPeriod=25,this.animationPeriod=this.initialAnimationPeriod;var s=!1;if(v.ANIMATE==="during")this.emit("layoutstarted");else{for(;!s;)s=this.tick();this.graphManager.updateBounds()}},d.prototype.calculateNodesToApplyGravitationTo=function(){var s=[],h,f=this.graphManager.getGraphs(),p=f.length,A;for(A=0;A<p;A++)h=f[A],h.updateConnected(),h.isConnected||(s=s.concat(h.getNodes()));return s},d.prototype.createBendpoints=function(){var s=[];s=s.concat(this.graphManager.getAllEdges());var h=new Set,f;for(f=0;f<s.length;f++){var p=s[f];if(!h.has(p)){var A=p.getSource(),I=p.getTarget();if(A==I)p.getBendpoints().push(new l),p.getBendpoints().push(new l),this.createDummyNodesForBendpoints(p),h.add(p);else{var R=[];if(R=R.concat(A.getEdgeListToNode(I)),R=R.concat(I.getEdgeListToNode(A)),!h.has(R[0])){if(R.length>1){var x;for(x=0;x<R.length;x++){var G=R[x];G.getBendpoints().push(new l),this.createDummyNodesForBendpoints(G)}}R.forEach(function(U){h.add(U)})}}}if(h.size==s.length)break}},d.prototype.positionNodesRadially=function(s){for(var h=new c(0,0),f=Math.ceil(Math.sqrt(s.length)),p=0,A=0,I=0,R=new l(0,0),x=0;x<s.length;x++){x%f==0&&(I=0,A=p,x!=0&&(A+=a.DEFAULT_COMPONENT_SEPERATION),p=0);var G=s[x],U=E.findCenterOfTree(G);h.x=I,h.y=A,R=d.radialLayout(G,U,h),R.y>p&&(p=Math.floor(R.y)),I=Math.floor(R.x+a.DEFAULT_COMPONENT_SEPERATION)}this.transform(new l(n.WORLD_CENTER_X-R.x/2,n.WORLD_CENTER_Y-R.y/2))},d.radialLayout=function(s,h,f){var p=Math.max(this.maxDiagonalInTree(s),a.DEFAULT_RADIAL_SEPARATION);d.branchRadialLayout(h,null,0,359,0,p);var A=L.calculateBounds(s),I=new O;I.setDeviceOrgX(A.getMinX()),I.setDeviceOrgY(A.getMinY()),I.setWorldOrgX(f.x),I.setWorldOrgY(f.y);for(var R=0;R<s.length;R++){var x=s[R];x.transform(I)}var G=new l(A.getMaxX(),A.getMaxY());return I.inverseTransformPoint(G)},d.branchRadialLayout=function(s,h,f,p,A,I){var R=(p-f+1)/2;R<0&&(R+=180);var x=(R+f)%360,G=x*m.TWO_PI/360,U=A*Math.cos(G),X=A*Math.sin(G);s.setCenter(U,X);var w=[];w=w.concat(s.getEdges());var S=w.length;h!=null&&S--;for(var F=0,b=w.length,Y,k=s.getEdgesBetween(h);k.length>1;){var H=k[0];k.splice(0,1);var P=w.indexOf(H);P>=0&&w.splice(P,1),b--,S--}h!=null?Y=(w.indexOf(k[0])+1)%b:Y=0;for(var B=Math.abs(p-f)/S,$=Y;F!=S;$=++$%b){var j=w[$].getOtherEnd(s);if(j!=h){var V=(f+F*B)%360,z=(V+B)%360;d.branchRadialLayout(j,s,V,z,A+I,I),F++}}},d.maxDiagonalInTree=function(s){for(var h=T.MIN_VALUE,f=0;f<s.length;f++){var p=s[f],A=p.getDiagonal();A>h&&(h=A)}return h},d.prototype.calcRepulsionRange=function(){return 2*(this.level+1)*this.idealEdgeLength},d.prototype.groupZeroDegreeMembers=function(){var s=this,h={};this.memberGroups={},this.idToDummyNode={};for(var f=[],p=this.graphManager.getAllNodes(),A=0;A<p.length;A++){var I=p[A],R=I.getParent();this.getNodeDegreeWithChildren(I)===0&&(R.id==null||!this.getToBeTiled(R))&&f.push(I)}for(var A=0;A<f.length;A++){var I=f[A],x=I.getParent().id;typeof h[x]>"u"&&(h[x]=[]),h[x]=h[x].concat(I)}Object.keys(h).forEach(function(G){if(h[G].length>1){var U="DummyCompound_"+G;s.memberGroups[U]=h[G];var X=h[G][0].getParent(),w=new o(s.graphManager);w.id=U,w.paddingLeft=X.paddingLeft||0,w.paddingRight=X.paddingRight||0,w.paddingBottom=X.paddingBottom||0,w.paddingTop=X.paddingTop||0,s.idToDummyNode[U]=w;var S=s.getGraphManager().add(s.newGraph(),w),F=X.getChild();F.add(w);for(var b=0;b<h[G].length;b++){var Y=h[G][b];F.remove(Y),S.add(Y)}}})},d.prototype.clearCompounds=function(){var s={},h={};this.performDFSOnCompounds();for(var f=0;f<this.compoundOrder.length;f++)h[this.compoundOrder[f].id]=this.compoundOrder[f],s[this.compoundOrder[f].id]=[].concat(this.compoundOrder[f].getChild().getNodes()),this.graphManager.remove(this.compoundOrder[f].getChild()),this.compoundOrder[f].child=null;this.graphManager.resetAllNodes(),this.tileCompoundMembers(s,h)},d.prototype.clearZeroDegreeMembers=function(){var s=this,h=this.tiledZeroDegreePack=[];Object.keys(this.memberGroups).forEach(function(f){var p=s.idToDummyNode[f];h[f]=s.tileNodes(s.memberGroups[f],p.paddingLeft+p.paddingRight),p.rect.width=h[f].width,p.rect.height=h[f].height})},d.prototype.repopulateCompounds=function(){for(var s=this.compoundOrder.length-1;s>=0;s--){var h=this.compoundOrder[s],f=h.id,p=h.paddingLeft,A=h.paddingTop;this.adjustLocations(this.tiledMemberPack[f],h.rect.x,h.rect.y,p,A)}},d.prototype.repopulateZeroDegreeMembers=function(){var s=this,h=this.tiledZeroDegreePack;Object.keys(h).forEach(function(f){var p=s.idToDummyNode[f],A=p.paddingLeft,I=p.paddingTop;s.adjustLocations(h[f],p.rect.x,p.rect.y,A,I)})},d.prototype.getToBeTiled=function(s){var h=s.id;if(this.toBeTiled[h]!=null)return this.toBeTiled[h];var f=s.getChild();if(f==null)return this.toBeTiled[h]=!1,!1;for(var p=f.getNodes(),A=0;A<p.length;A++){var I=p[A];if(this.getNodeDegree(I)>0)return this.toBeTiled[h]=!1,!1;if(I.getChild()==null){this.toBeTiled[I.id]=!1;continue}if(!this.getToBeTiled(I))return this.toBeTiled[h]=!1,!1}return this.toBeTiled[h]=!0,!0},d.prototype.getNodeDegree=function(s){s.id;for(var h=s.getEdges(),f=0,p=0;p<h.length;p++){var A=h[p];A.getSource().id!==A.getTarget().id&&(f=f+1)}return f},d.prototype.getNodeDegreeWithChildren=function(s){var h=this.getNodeDegree(s);if(s.getChild()==null)return h;for(var f=s.getChild().getNodes(),p=0;p<f.length;p++){var A=f[p];h+=this.getNodeDegreeWithChildren(A)}return h},d.prototype.performDFSOnCompounds=function(){this.compoundOrder=[],this.fillCompexOrderByDFS(this.graphManager.getRoot().getNodes())},d.prototype.fillCompexOrderByDFS=function(s){for(var h=0;h<s.length;h++){var f=s[h];f.getChild()!=null&&this.fillCompexOrderByDFS(f.getChild().getNodes()),this.getToBeTiled(f)&&this.compoundOrder.push(f)}},d.prototype.adjustLocations=function(s,h,f,p,A){h+=p,f+=A;for(var I=h,R=0;R<s.rows.length;R++){var x=s.rows[R];h=I;for(var G=0,U=0;U<x.length;U++){var X=x[U];X.rect.x=h,X.rect.y=f,h+=X.rect.width+s.horizontalPadding,X.rect.height>G&&(G=X.rect.height)}f+=G+s.verticalPadding}},d.prototype.tileCompoundMembers=function(s,h){var f=this;this.tiledMemberPack=[],Object.keys(s).forEach(function(p){var A=h[p];f.tiledMemberPack[p]=f.tileNodes(s[p],A.paddingLeft+A.paddingRight),A.rect.width=f.tiledMemberPack[p].width,A.rect.height=f.tiledMemberPack[p].height})},d.prototype.tileNodes=function(s,h){var f=a.TILING_PADDING_VERTICAL,p=a.TILING_PADDING_HORIZONTAL,A={rows:[],rowWidth:[],rowHeight:[],width:0,height:h,verticalPadding:f,horizontalPadding:p};s.sort(function(x,G){return x.rect.width*x.rect.height>G.rect.width*G.rect.height?-1:x.rect.width*x.rect.height<G.rect.width*G.rect.height?1:0});for(var I=0;I<s.length;I++){var R=s[I];A.rows.length==0?this.insertNodeToRow(A,R,0,h):this.canAddHorizontal(A,R.rect.width,R.rect.height)?this.insertNodeToRow(A,R,this.getShortestRowIndex(A),h):this.insertNodeToRow(A,R,A.rows.length,h),this.shiftToLastRow(A)}return A},d.prototype.insertNodeToRow=function(s,h,f,p){var A=p;if(f==s.rows.length){var I=[];s.rows.push(I),s.rowWidth.push(A),s.rowHeight.push(0)}var R=s.rowWidth[f]+h.rect.width;s.rows[f].length>0&&(R+=s.horizontalPadding),s.rowWidth[f]=R,s.width<R&&(s.width=R);var x=h.rect.height;f>0&&(x+=s.verticalPadding);var G=0;x>s.rowHeight[f]&&(G=s.rowHeight[f],s.rowHeight[f]=x,G=s.rowHeight[f]-G),s.height+=G,s.rows[f].push(h)},d.prototype.getShortestRowIndex=function(s){for(var h=-1,f=Number.MAX_VALUE,p=0;p<s.rows.length;p++)s.rowWidth[p]<f&&(h=p,f=s.rowWidth[p]);return h},d.prototype.getLongestRowIndex=function(s){for(var h=-1,f=Number.MIN_VALUE,p=0;p<s.rows.length;p++)s.rowWidth[p]>f&&(h=p,f=s.rowWidth[p]);return h},d.prototype.canAddHorizontal=function(s,h,f){var p=this.getShortestRowIndex(s);if(p<0)return!0;var A=s.rowWidth[p];if(A+s.horizontalPadding+h<=s.width)return!0;var I=0;s.rowHeight[p]<f&&p>0&&(I=f+s.verticalPadding-s.rowHeight[p]);var R;s.width-A>=h+s.horizontalPadding?R=(s.height+I)/(A+h+s.horizontalPadding):R=(s.height+I)/s.width,I=f+s.verticalPadding;var x;return s.width<h?x=(s.height+I)/h:x=(s.height+I)/s.width,x<1&&(x=1/x),R<1&&(R=1/R),R<x},d.prototype.shiftToLastRow=function(s){var h=this.getLongestRowIndex(s),f=s.rowWidth.length-1,p=s.rows[h],A=p[p.length-1],I=A.width+s.horizontalPadding;if(s.width-s.rowWidth[f]>I&&h!=f){p.splice(-1,1),s.rows[f].push(A),s.rowWidth[h]=s.rowWidth[h]-I,s.rowWidth[f]=s.rowWidth[f]+I,s.width=s.rowWidth[instance.getLongestRowIndex(s)];for(var R=Number.MIN_VALUE,x=0;x<p.length;x++)p[x].height>R&&(R=p[x].height);h>0&&(R+=s.verticalPadding);var G=s.rowHeight[h]+s.rowHeight[f];s.rowHeight[h]=R,s.rowHeight[f]<A.height+s.verticalPadding&&(s.rowHeight[f]=A.height+s.verticalPadding);var U=s.rowHeight[h]+s.rowHeight[f];s.height+=U-G,this.shiftToLastRow(s)}},d.prototype.tilingPreLayout=function(){a.TILE&&(this.groupZeroDegreeMembers(),this.clearCompounds(),this.clearZeroDegreeMembers())},d.prototype.tilingPostLayout=function(){a.TILE&&(this.repopulateZeroDegreeMembers(),this.repopulateCompounds())},d.prototype.reduceTrees=function(){for(var s=[],h=!0,f;h;){var p=this.graphManager.getAllNodes(),A=[];h=!1;for(var I=0;I<p.length;I++)f=p[I],f.getEdges().length==1&&!f.getEdges()[0].isInterGraph&&f.getChild()==null&&(A.push([f,f.getEdges()[0],f.getOwner()]),h=!0);if(h==!0){for(var R=[],x=0;x<A.length;x++)A[x][0].getEdges().length==1&&(R.push(A[x]),A[x][0].getOwner().remove(A[x][0]));s.push(R),this.graphManager.resetAllNodes(),this.graphManager.resetAllEdges()}}this.prunedNodesAll=s},d.prototype.growTree=function(s){for(var h=s.length,f=s[h-1],p,A=0;A<f.length;A++)p=f[A],this.findPlaceforPrunedNode(p),p[2].add(p[0]),p[2].add(p[1],p[1].source,p[1].target);s.splice(s.length-1,1),this.graphManager.resetAllNodes(),this.graphManager.resetAllEdges()},d.prototype.findPlaceforPrunedNode=function(s){var h,f,p=s[0];p==s[1].source?f=s[1].target:f=s[1].source;var A=f.startX,I=f.finishX,R=f.startY,x=f.finishY,G=0,U=0,X=0,w=0,S=[G,X,U,w];if(R>0)for(var F=A;F<=I;F++)S[0]+=this.grid[F][R-1].length+this.grid[F][R].length-1;if(I<this.grid.length-1)for(var F=R;F<=x;F++)S[1]+=this.grid[I+1][F].length+this.grid[I][F].length-1;if(x<this.grid[0].length-1)for(var F=A;F<=I;F++)S[2]+=this.grid[F][x+1].length+this.grid[F][x].length-1;if(A>0)for(var F=R;F<=x;F++)S[3]+=this.grid[A-1][F].length+this.grid[A][F].length-1;for(var b=T.MAX_VALUE,Y,k,H=0;H<S.length;H++)S[H]<b?(b=S[H],Y=1,k=H):S[H]==b&&Y++;if(Y==3&&b==0)S[0]==0&&S[1]==0&&S[2]==0?h=1:S[0]==0&&S[1]==0&&S[3]==0?h=0:S[0]==0&&S[2]==0&&S[3]==0?h=3:S[1]==0&&S[2]==0&&S[3]==0&&(h=2);else if(Y==2&&b==0){var P=Math.floor(Math.random()*2);S[0]==0&&S[1]==0?P==0?h=0:h=1:S[0]==0&&S[2]==0?P==0?h=0:h=2:S[0]==0&&S[3]==0?P==0?h=0:h=3:S[1]==0&&S[2]==0?P==0?h=1:h=2:S[1]==0&&S[3]==0?P==0?h=1:h=3:P==0?h=2:h=3}else if(Y==4&&b==0){var P=Math.floor(Math.random()*4);h=P}else h=k;h==0?p.setCenter(f.getCenterX(),f.getCenterY()-f.getHeight()/2-v.DEFAULT_EDGE_LENGTH-p.getHeight()/2):h==1?p.setCenter(f.getCenterX()+f.getWidth()/2+v.DEFAULT_EDGE_LENGTH+p.getWidth()/2,f.getCenterY()):h==2?p.setCenter(f.getCenterX(),f.getCenterY()+f.getHeight()/2+v.DEFAULT_EDGE_LENGTH+p.getHeight()/2):p.setCenter(f.getCenterX()-f.getWidth()/2-v.DEFAULT_EDGE_LENGTH-p.getWidth()/2,f.getCenterY())},D.exports=d}),(function(D,y,r){var t={};t.layoutBase=r(0),t.CoSEConstants=r(1),t.CoSEEdge=r(2),t.CoSEGraph=r(3),t.CoSEGraphManager=r(4),t.CoSELayout=r(6),t.CoSENode=r(5),D.exports=t})])})})(et)),et.exports}var wt=tt.exports,ut;function St(){return ut||(ut=1,(function(C,M){(function(D,y){C.exports=y(Mt())})(wt,function(u){return(function(D){var y={};function r(t){if(y[t])return y[t].exports;var e=y[t]={i:t,l:!1,exports:{}};return D[t].call(e.exports,e,e.exports,r),e.l=!0,e.exports}return r.m=D,r.c=y,r.i=function(t){return t},r.d=function(t,e,i){r.o(t,e)||Object.defineProperty(t,e,{configurable:!1,enumerable:!0,get:i})},r.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return r.d(e,"a",e),e},r.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},r.p="",r(r.s=1)})([(function(D,y){D.exports=u}),(function(D,y,r){var t=r(0).layoutBase.LayoutConstants,e=r(0).layoutBase.FDLayoutConstants,i=r(0).CoSEConstants,o=r(0).CoSELayout,g=r(0).CoSENode,a=r(0).layoutBase.PointD,v=r(0).layoutBase.DimensionD,n={ready:function(){},stop:function(){},quality:"default",nodeDimensionsIncludeLabels:!1,refresh:30,fit:!0,padding:10,randomize:!0,nodeRepulsion:4500,idealEdgeLength:50,edgeElasticity:.45,nestingFactor:.1,gravity:.25,numIter:2500,tile:!0,animate:"end",animationDuration:500,tilingPaddingVertical:10,tilingPaddingHorizontal:10,gravityRangeCompound:1.5,gravityCompound:1,gravityRange:3.8,initialEnergyOnIncremental:.5};function c(m,L){var O={};for(var d in m)O[d]=m[d];for(var d in L)O[d]=L[d];return O}function l(m){this.options=c(n,m),E(this.options)}var E=function(L){L.nodeRepulsion!=null&&(i.DEFAULT_REPULSION_STRENGTH=e.DEFAULT_REPULSION_STRENGTH=L.nodeRepulsion),L.idealEdgeLength!=null&&(i.DEFAULT_EDGE_LENGTH=e.DEFAULT_EDGE_LENGTH=L.idealEdgeLength),L.edgeElasticity!=null&&(i.DEFAULT_SPRING_STRENGTH=e.DEFAULT_SPRING_STRENGTH=L.edgeElasticity),L.nestingFactor!=null&&(i.PER_LEVEL_IDEAL_EDGE_LENGTH_FACTOR=e.PER_LEVEL_IDEAL_EDGE_LENGTH_FACTOR=L.nestingFactor),L.gravity!=null&&(i.DEFAULT_GRAVITY_STRENGTH=e.DEFAULT_GRAVITY_STRENGTH=L.gravity),L.numIter!=null&&(i.MAX_ITERATIONS=e.MAX_ITERATIONS=L.numIter),L.gravityRange!=null&&(i.DEFAULT_GRAVITY_RANGE_FACTOR=e.DEFAULT_GRAVITY_RANGE_FACTOR=L.gravityRange),L.gravityCompound!=null&&(i.DEFAULT_COMPOUND_GRAVITY_STRENGTH=e.DEFAULT_COMPOUND_GRAVITY_STRENGTH=L.gravityCompound),L.gravityRangeCompound!=null&&(i.DEFAULT_COMPOUND_GRAVITY_RANGE_FACTOR=e.DEFAULT_COMPOUND_GRAVITY_RANGE_FACTOR=L.gravityRangeCompound),L.initialEnergyOnIncremental!=null&&(i.DEFAULT_COOLING_FACTOR_INCREMENTAL=e.DEFAULT_COOLING_FACTOR_INCREMENTAL=L.initialEnergyOnIncremental),L.quality=="draft"?t.QUALITY=0:L.quality=="proof"?t.QUALITY=2:t.QUALITY=1,i.NODE_DIMENSIONS_INCLUDE_LABELS=e.NODE_DIMENSIONS_INCLUDE_LABELS=t.NODE_DIMENSIONS_INCLUDE_LABELS=L.nodeDimensionsIncludeLabels,i.DEFAULT_INCREMENTAL=e.DEFAULT_INCREMENTAL=t.DEFAULT_INCREMENTAL=!L.randomize,i.ANIMATE=e.ANIMATE=t.ANIMATE=L.animate,i.TILE=L.tile,i.TILING_PADDING_VERTICAL=typeof L.tilingPaddingVertical=="function"?L.tilingPaddingVertical.call():L.tilingPaddingVertical,i.TILING_PADDING_HORIZONTAL=typeof L.tilingPaddingHorizontal=="function"?L.tilingPaddingHorizontal.call():L.tilingPaddingHorizontal};l.prototype.run=function(){var m,L,O=this.options;this.idToLNode={};var d=this.layout=new o,N=this;N.stopped=!1,this.cy=this.options.cy,this.cy.trigger({type:"layoutstart",layout:this});var s=d.newGraphManager();this.gm=s;var h=this.options.eles.nodes(),f=this.options.eles.edges();this.root=s.addRoot(),this.processChildrenList(this.root,this.getTopMostNodes(h),d);for(var p=0;p<f.length;p++){var A=f[p],I=this.idToLNode[A.data("source")],R=this.idToLNode[A.data("target")];if(I!==R&&I.getEdgesBetween(R).length==0){var x=s.add(d.newEdge(),I,R);x.id=A.id()}}var G=function(w,S){typeof w=="number"&&(w=S);var F=w.data("id"),b=N.idToLNode[F];return{x:b.getRect().getCenterX(),y:b.getRect().getCenterY()}},U=function X(){for(var w=function(){O.fit&&O.cy.fit(O.eles,O.padding),m||(m=!0,N.cy.one("layoutready",O.ready),N.cy.trigger({type:"layoutready",layout:N}))},S=N.options.refresh,F,b=0;b<S&&!F;b++)F=N.stopped||N.layout.tick();if(F){d.checkLayoutSuccess()&&!d.isSubLayout&&d.doPostLayout(),d.tilingPostLayout&&d.tilingPostLayout(),d.isLayoutFinished=!0,N.options.eles.nodes().positions(G),w(),N.cy.one("layoutstop",N.options.stop),N.cy.trigger({type:"layoutstop",layout:N}),L&&cancelAnimationFrame(L),m=!1;return}var Y=N.layout.getPositionsData();O.eles.nodes().positions(function(k,H){if(typeof k=="number"&&(k=H),!k.isParent()){for(var P=k.id(),B=Y[P],$=k;B==null&&(B=Y[$.data("parent")]||Y["DummyCompound_"+$.data("parent")],Y[P]=B,$=$.parent()[0],$!=null););return B!=null?{x:B.x,y:B.y}:{x:k.position("x"),y:k.position("y")}}}),w(),L=requestAnimationFrame(X)};return d.addListener("layoutstarted",function(){N.options.animate==="during"&&(L=requestAnimationFrame(U))}),d.runLayout(),this.options.animate!=="during"&&(N.options.eles.nodes().not(":parent").layoutPositions(N,N.options,G),m=!1),this},l.prototype.getTopMostNodes=function(m){for(var L={},O=0;O<m.length;O++)L[m[O].id()]=!0;var d=m.filter(function(N,s){typeof N=="number"&&(N=s);for(var h=N.parent()[0];h!=null;){if(L[h.id()])return!1;h=h.parent()[0]}return!0});return d},l.prototype.processChildrenList=function(m,L,O){for(var d=L.length,N=0;N<d;N++){var s=L[N],h=s.children(),f,p=s.layoutDimensions({nodeDimensionsIncludeLabels:this.options.nodeDimensionsIncludeLabels});if(s.outerWidth()!=null&&s.outerHeight()!=null?f=m.add(new g(O.graphManager,new a(s.position("x")-p.w/2,s.position("y")-p.h/2),new v(parseFloat(p.w),parseFloat(p.h)))):f=m.add(new g(this.graphManager)),f.id=s.data("id"),f.paddingLeft=parseInt(s.css("padding")),f.paddingTop=parseInt(s.css("padding")),f.paddingRight=parseInt(s.css("padding")),f.paddingBottom=parseInt(s.css("padding")),this.options.nodeDimensionsIncludeLabels&&s.isParent()){var A=s.boundingBox({includeLabels:!0,includeNodes:!1}).w,I=s.boundingBox({includeLabels:!0,includeNodes:!1}).h,R=s.css("text-halign");f.labelWidth=A,f.labelHeight=I,f.labelPos=R}if(this.idToLNode[s.data("id")]=f,isNaN(f.rect.x)&&(f.rect.x=0),isNaN(f.rect.y)&&(f.rect.y=0),h!=null&&h.length>0){var x;x=O.getGraphManager().add(O.newGraph(),f),this.processChildrenList(x,h,O)}}},l.prototype.stop=function(){return this.stopped=!0,this};var T=function(L){L("layout","cose-bilkent",l)};typeof cytoscape<"u"&&T(cytoscape),D.exports=T})])})})(tt)),tt.exports}var Gt=St();const _t=Et(Gt);var at=(function(){var C=_(function(O,d,N,s){for(N=N||{},s=O.length;s--;N[O[s]]=d);return N},"o"),M=[1,4],u=[1,13],D=[1,12],y=[1,15],r=[1,16],t=[1,20],e=[1,19],i=[6,7,8],o=[1,26],g=[1,24],a=[1,25],v=[6,7,11],n=[1,6,13,15,16,19,22],c=[1,33],l=[1,34],E=[1,6,7,11,13,15,16,19,22],T={trace:_(function(){},"trace"),yy:{},symbols_:{error:2,start:3,mindMap:4,spaceLines:5,SPACELINE:6,NL:7,MINDMAP:8,document:9,stop:10,EOF:11,statement:12,SPACELIST:13,node:14,ICON:15,CLASS:16,nodeWithId:17,nodeWithoutId:18,NODE_DSTART:19,NODE_DESCR:20,NODE_DEND:21,NODE_ID:22,$accept:0,$end:1},terminals_:{2:"error",6:"SPACELINE",7:"NL",8:"MINDMAP",11:"EOF",13:"SPACELIST",15:"ICON",16:"CLASS",19:"NODE_DSTART",20:"NODE_DESCR",21:"NODE_DEND",22:"NODE_ID"},productions_:[0,[3,1],[3,2],[5,1],[5,2],[5,2],[4,2],[4,3],[10,1],[10,1],[10,1],[10,2],[10,2],[9,3],[9,2],[12,2],[12,2],[12,2],[12,1],[12,1],[12,1],[12,1],[12,1],[14,1],[14,1],[18,3],[17,1],[17,4]],performAction:_(function(d,N,s,h,f,p,A){var I=p.length-1;switch(f){case 6:case 7:return h;case 8:h.getLogger().trace("Stop NL ");break;case 9:h.getLogger().trace("Stop EOF ");break;case 11:h.getLogger().trace("Stop NL2 ");break;case 12:h.getLogger().trace("Stop EOF2 ");break;case 15:h.getLogger().info("Node: ",p[I].id),h.addNode(p[I-1].length,p[I].id,p[I].descr,p[I].type);break;case 16:h.getLogger().trace("Icon: ",p[I]),h.decorateNode({icon:p[I]});break;case 17:case 21:h.decorateNode({class:p[I]});break;case 18:h.getLogger().trace("SPACELIST");break;case 19:h.getLogger().trace("Node: ",p[I].id),h.addNode(0,p[I].id,p[I].descr,p[I].type);break;case 20:h.decorateNode({icon:p[I]});break;case 25:h.getLogger().trace("node found ..",p[I-2]),this.$={id:p[I-1],descr:p[I-1],type:h.getType(p[I-2],p[I])};break;case 26:this.$={id:p[I],descr:p[I],type:h.nodeType.DEFAULT};break;case 27:h.getLogger().trace("node found ..",p[I-3]),this.$={id:p[I-3],descr:p[I-1],type:h.getType(p[I-2],p[I])};break}},"anonymous"),table:[{3:1,4:2,5:3,6:[1,5],8:M},{1:[3]},{1:[2,1]},{4:6,6:[1,7],7:[1,8],8:M},{6:u,7:[1,10],9:9,12:11,13:D,14:14,15:y,16:r,17:17,18:18,19:t,22:e},C(i,[2,3]),{1:[2,2]},C(i,[2,4]),C(i,[2,5]),{1:[2,6],6:u,12:21,13:D,14:14,15:y,16:r,17:17,18:18,19:t,22:e},{6:u,9:22,12:11,13:D,14:14,15:y,16:r,17:17,18:18,19:t,22:e},{6:o,7:g,10:23,11:a},C(v,[2,22],{17:17,18:18,14:27,15:[1,28],16:[1,29],19:t,22:e}),C(v,[2,18]),C(v,[2,19]),C(v,[2,20]),C(v,[2,21]),C(v,[2,23]),C(v,[2,24]),C(v,[2,26],{19:[1,30]}),{20:[1,31]},{6:o,7:g,10:32,11:a},{1:[2,7],6:u,12:21,13:D,14:14,15:y,16:r,17:17,18:18,19:t,22:e},C(n,[2,14],{7:c,11:l}),C(E,[2,8]),C(E,[2,9]),C(E,[2,10]),C(v,[2,15]),C(v,[2,16]),C(v,[2,17]),{20:[1,35]},{21:[1,36]},C(n,[2,13],{7:c,11:l}),C(E,[2,11]),C(E,[2,12]),{21:[1,37]},C(v,[2,25]),C(v,[2,27])],defaultActions:{2:[2,1],6:[2,2]},parseError:_(function(d,N){if(N.recoverable)this.trace(d);else{var s=new Error(d);throw s.hash=N,s}},"parseError"),parse:_(function(d){var N=this,s=[0],h=[],f=[null],p=[],A=this.table,I="",R=0,x=0,G=2,U=1,X=p.slice.call(arguments,1),w=Object.create(this.lexer),S={yy:{}};for(var F in this.yy)Object.prototype.hasOwnProperty.call(this.yy,F)&&(S.yy[F]=this.yy[F]);w.setInput(d,S.yy),S.yy.lexer=w,S.yy.parser=this,typeof w.yylloc>"u"&&(w.yylloc={});var b=w.yylloc;p.push(b);var Y=w.options&&w.options.ranges;typeof S.yy.parseError=="function"?this.parseError=S.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function k(W){s.length=s.length-2*W,f.length=f.length-W,p.length=p.length-W}_(k,"popStack");function H(){var W;return W=h.pop()||w.lex()||U,typeof W!="number"&&(W instanceof Array&&(h=W,W=h.pop()),W=N.symbols_[W]||W),W}_(H,"lex");for(var P,B,$,j,V={},z,Z,lt,q;;){if(B=s[s.length-1],this.defaultActions[B]?$=this.defaultActions[B]:((P===null||typeof P>"u")&&(P=H()),$=A[B]&&A[B][P]),typeof $>"u"||!$.length||!$[0]){var nt="";q=[];for(z in A[B])this.terminals_[z]&&z>G&&q.push("'"+this.terminals_[z]+"'");w.showPosition?nt="Parse error on line "+(R+1)+`:
2
- `+w.showPosition()+`
3
- Expecting `+q.join(", ")+", got '"+(this.terminals_[P]||P)+"'":nt="Parse error on line "+(R+1)+": Unexpected "+(P==U?"end of input":"'"+(this.terminals_[P]||P)+"'"),this.parseError(nt,{text:w.match,token:this.terminals_[P]||P,line:w.yylineno,loc:b,expected:q})}if($[0]instanceof Array&&$.length>1)throw new Error("Parse Error: multiple actions possible at state: "+B+", token: "+P);switch($[0]){case 1:s.push(P),f.push(w.yytext),p.push(w.yylloc),s.push($[1]),P=null,x=w.yyleng,I=w.yytext,R=w.yylineno,b=w.yylloc;break;case 2:if(Z=this.productions_[$[1]][1],V.$=f[f.length-Z],V._$={first_line:p[p.length-(Z||1)].first_line,last_line:p[p.length-1].last_line,first_column:p[p.length-(Z||1)].first_column,last_column:p[p.length-1].last_column},Y&&(V._$.range=[p[p.length-(Z||1)].range[0],p[p.length-1].range[1]]),j=this.performAction.apply(V,[I,x,R,S.yy,$[1],f,p].concat(X)),typeof j<"u")return j;Z&&(s=s.slice(0,-1*Z*2),f=f.slice(0,-1*Z),p=p.slice(0,-1*Z)),s.push(this.productions_[$[1]][0]),f.push(V.$),p.push(V._$),lt=A[s[s.length-2]][s[s.length-1]],s.push(lt);break;case 3:return!0}}return!0},"parse")},m=(function(){var O={EOF:1,parseError:_(function(N,s){if(this.yy.parser)this.yy.parser.parseError(N,s);else throw new Error(N)},"parseError"),setInput:_(function(d,N){return this.yy=N||this.yy||{},this._input=d,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:_(function(){var d=this._input[0];this.yytext+=d,this.yyleng++,this.offset++,this.match+=d,this.matched+=d;var N=d.match(/(?:\r\n?|\n).*/g);return N?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),d},"input"),unput:_(function(d){var N=d.length,s=d.split(/(?:\r\n?|\n)/g);this._input=d+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-N),this.offset-=N;var h=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),s.length-1&&(this.yylineno-=s.length-1);var f=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:s?(s.length===h.length?this.yylloc.first_column:0)+h[h.length-s.length].length-s[0].length:this.yylloc.first_column-N},this.options.ranges&&(this.yylloc.range=[f[0],f[0]+this.yyleng-N]),this.yyleng=this.yytext.length,this},"unput"),more:_(function(){return this._more=!0,this},"more"),reject:_(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).
4
- `+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:_(function(d){this.unput(this.match.slice(d))},"less"),pastInput:_(function(){var d=this.matched.substr(0,this.matched.length-this.match.length);return(d.length>20?"...":"")+d.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:_(function(){var d=this.match;return d.length<20&&(d+=this._input.substr(0,20-d.length)),(d.substr(0,20)+(d.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:_(function(){var d=this.pastInput(),N=new Array(d.length+1).join("-");return d+this.upcomingInput()+`
5
- `+N+"^"},"showPosition"),test_match:_(function(d,N){var s,h,f;if(this.options.backtrack_lexer&&(f={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&&(f.yylloc.range=this.yylloc.range.slice(0))),h=d[0].match(/(?:\r\n?|\n).*/g),h&&(this.yylineno+=h.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:h?h[h.length-1].length-h[h.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+d[0].length},this.yytext+=d[0],this.match+=d[0],this.matches=d,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(d[0].length),this.matched+=d[0],s=this.performAction.call(this,this.yy,this,N,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),s)return s;if(this._backtrack){for(var p in f)this[p]=f[p];return!1}return!1},"test_match"),next:_(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var d,N,s,h;this._more||(this.yytext="",this.match="");for(var f=this._currentRules(),p=0;p<f.length;p++)if(s=this._input.match(this.rules[f[p]]),s&&(!N||s[0].length>N[0].length)){if(N=s,h=p,this.options.backtrack_lexer){if(d=this.test_match(s,f[p]),d!==!1)return d;if(this._backtrack){N=!1;continue}else return!1}else if(!this.options.flex)break}return N?(d=this.test_match(N,f[h]),d!==!1?d:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text.
6
- `+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:_(function(){var N=this.next();return N||this.lex()},"lex"),begin:_(function(N){this.conditionStack.push(N)},"begin"),popState:_(function(){var N=this.conditionStack.length-1;return N>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:_(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:_(function(N){return N=this.conditionStack.length-1-Math.abs(N||0),N>=0?this.conditionStack[N]:"INITIAL"},"topState"),pushState:_(function(N){this.begin(N)},"pushState"),stateStackSize:_(function(){return this.conditionStack.length},"stateStackSize"),options:{"case-insensitive":!0},performAction:_(function(N,s,h,f){switch(h){case 0:return N.getLogger().trace("Found comment",s.yytext),6;case 1:return 8;case 2:this.begin("CLASS");break;case 3:return this.popState(),16;case 4:this.popState();break;case 5:N.getLogger().trace("Begin icon"),this.begin("ICON");break;case 6:return N.getLogger().trace("SPACELINE"),6;case 7:return 7;case 8:return 15;case 9:N.getLogger().trace("end icon"),this.popState();break;case 10:return N.getLogger().trace("Exploding node"),this.begin("NODE"),19;case 11:return N.getLogger().trace("Cloud"),this.begin("NODE"),19;case 12:return N.getLogger().trace("Explosion Bang"),this.begin("NODE"),19;case 13:return N.getLogger().trace("Cloud Bang"),this.begin("NODE"),19;case 14:return this.begin("NODE"),19;case 15:return this.begin("NODE"),19;case 16:return this.begin("NODE"),19;case 17:return this.begin("NODE"),19;case 18:return 13;case 19:return 22;case 20:return 11;case 21:this.begin("NSTR2");break;case 22:return"NODE_DESCR";case 23:this.popState();break;case 24:N.getLogger().trace("Starting NSTR"),this.begin("NSTR");break;case 25:return N.getLogger().trace("description:",s.yytext),"NODE_DESCR";case 26:this.popState();break;case 27:return this.popState(),N.getLogger().trace("node end ))"),"NODE_DEND";case 28:return this.popState(),N.getLogger().trace("node end )"),"NODE_DEND";case 29:return this.popState(),N.getLogger().trace("node end ...",s.yytext),"NODE_DEND";case 30:return this.popState(),N.getLogger().trace("node end (("),"NODE_DEND";case 31:return this.popState(),N.getLogger().trace("node end (-"),"NODE_DEND";case 32:return this.popState(),N.getLogger().trace("node end (-"),"NODE_DEND";case 33:return this.popState(),N.getLogger().trace("node end (("),"NODE_DEND";case 34:return this.popState(),N.getLogger().trace("node end (("),"NODE_DEND";case 35:return N.getLogger().trace("Long description:",s.yytext),20;case 36:return N.getLogger().trace("Long description:",s.yytext),20}},"anonymous"),rules:[/^(?:\s*%%.*)/i,/^(?:mindmap\b)/i,/^(?::::)/i,/^(?:.+)/i,/^(?:\n)/i,/^(?:::icon\()/i,/^(?:[\s]+[\n])/i,/^(?:[\n]+)/i,/^(?:[^\)]+)/i,/^(?:\))/i,/^(?:-\))/i,/^(?:\(-)/i,/^(?:\)\))/i,/^(?:\))/i,/^(?:\(\()/i,/^(?:\{\{)/i,/^(?:\()/i,/^(?:\[)/i,/^(?:[\s]+)/i,/^(?:[^\(\[\n\)\{\}]+)/i,/^(?:$)/i,/^(?:["][`])/i,/^(?:[^`"]+)/i,/^(?:[`]["])/i,/^(?:["])/i,/^(?:[^"]+)/i,/^(?:["])/i,/^(?:[\)]\))/i,/^(?:[\)])/i,/^(?:[\]])/i,/^(?:\}\})/i,/^(?:\(-)/i,/^(?:-\))/i,/^(?:\(\()/i,/^(?:\()/i,/^(?:[^\)\]\(\}]+)/i,/^(?:.+(?!\(\())/i],conditions:{CLASS:{rules:[3,4],inclusive:!1},ICON:{rules:[8,9],inclusive:!1},NSTR2:{rules:[22,23],inclusive:!1},NSTR:{rules:[25,26],inclusive:!1},NODE:{rules:[21,24,27,28,29,30,31,32,33,34,35,36],inclusive:!1},INITIAL:{rules:[0,1,2,5,6,7,10,11,12,13,14,15,16,17,18,19,20],inclusive:!0}}};return O})();T.lexer=m;function L(){this.yy={}}return _(L,"Parser"),L.prototype=T,T.Parser=L,new L})();at.parser=at;var Ft=at,bt={DEFAULT:0,NO_BORDER:0,ROUNDED_RECT:1,RECT:2,CIRCLE:3,CLOUD:4,BANG:5,HEXAGON:6},K,Ut=(K=class{constructor(){this.nodes=[],this.count=0,this.elements={},this.getLogger=this.getLogger.bind(this),this.nodeType=bt,this.clear(),this.getType=this.getType.bind(this),this.getMindmap=this.getMindmap.bind(this),this.getElementById=this.getElementById.bind(this),this.getParent=this.getParent.bind(this),this.getMindmap=this.getMindmap.bind(this),this.addNode=this.addNode.bind(this),this.decorateNode=this.decorateNode.bind(this)}clear(){this.nodes=[],this.count=0,this.elements={}}getParent(M){for(let u=this.nodes.length-1;u>=0;u--)if(this.nodes[u].level<M)return this.nodes[u];return null}getMindmap(){return this.nodes.length>0?this.nodes[0]:null}addNode(M,u,D,y){var o,g;Q.info("addNode",M,u,D,y);const r=st();let t=((o=r.mindmap)==null?void 0:o.padding)??it.mindmap.padding;switch(y){case this.nodeType.ROUNDED_RECT:case this.nodeType.RECT:case this.nodeType.HEXAGON:t*=2;break}const e={id:this.count++,nodeId:J(u,r),level:M,descr:J(D,r),type:y,children:[],width:((g=r.mindmap)==null?void 0:g.maxNodeWidth)??it.mindmap.maxNodeWidth,padding:t},i=this.getParent(M);if(i)i.children.push(e),this.nodes.push(e);else if(this.nodes.length===0)this.nodes.push(e);else throw new Error(`There can be only one root. No parent could be found for ("${e.descr}")`)}getType(M,u){switch(Q.debug("In get type",M,u),M){case"[":return this.nodeType.RECT;case"(":return u===")"?this.nodeType.ROUNDED_RECT:this.nodeType.CLOUD;case"((":return this.nodeType.CIRCLE;case")":return this.nodeType.CLOUD;case"))":return this.nodeType.BANG;case"{{":return this.nodeType.HEXAGON;default:return this.nodeType.DEFAULT}}setElementForId(M,u){this.elements[M]=u}getElementById(M){return this.elements[M]}decorateNode(M){if(!M)return;const u=st(),D=this.nodes[this.nodes.length-1];M.icon&&(D.icon=J(M.icon,u)),M.class&&(D.class=J(M.class,u))}type2Str(M){switch(M){case this.nodeType.DEFAULT:return"no-border";case this.nodeType.RECT:return"rect";case this.nodeType.ROUNDED_RECT:return"rounded-rect";case this.nodeType.CIRCLE:return"circle";case this.nodeType.CLOUD:return"cloud";case this.nodeType.BANG:return"bang";case this.nodeType.HEXAGON:return"hexgon";default:return"no-border"}}getLogger(){return Q}},_(K,"MindmapDB"),K),Pt=12,Yt=_(function(C,M,u,D){M.append("path").attr("id","node-"+u.id).attr("class","node-bkg node-"+C.type2Str(u.type)).attr("d",`M0 ${u.height-5} v${-u.height+10} q0,-5 5,-5 h${u.width-10} q5,0 5,5 v${u.height-5} H0 Z`),M.append("line").attr("class","node-line-"+D).attr("x1",0).attr("y1",u.height).attr("x2",u.width).attr("y2",u.height)},"defaultBkg"),Xt=_(function(C,M,u){M.append("rect").attr("id","node-"+u.id).attr("class","node-bkg node-"+C.type2Str(u.type)).attr("height",u.height).attr("width",u.width)},"rectBkg"),kt=_(function(C,M,u){const D=u.width,y=u.height,r=.15*D,t=.25*D,e=.35*D,i=.2*D;M.append("path").attr("id","node-"+u.id).attr("class","node-bkg node-"+C.type2Str(u.type)).attr("d",`M0 0 a${r},${r} 0 0,1 ${D*.25},${-1*D*.1}
7
- a${e},${e} 1 0,1 ${D*.4},${-1*D*.1}
8
- a${t},${t} 1 0,1 ${D*.35},${1*D*.2}
9
-
10
- a${r},${r} 1 0,1 ${D*.15},${1*y*.35}
11
- a${i},${i} 1 0,1 ${-1*D*.15},${1*y*.65}
12
-
13
- a${t},${r} 1 0,1 ${-1*D*.25},${D*.15}
14
- a${e},${e} 1 0,1 ${-1*D*.5},0
15
- a${r},${r} 1 0,1 ${-1*D*.25},${-1*D*.15}
16
-
17
- a${r},${r} 1 0,1 ${-1*D*.1},${-1*y*.35}
18
- a${i},${i} 1 0,1 ${D*.1},${-1*y*.65}
19
-
20
- H0 V0 Z`)},"cloudBkg"),Ht=_(function(C,M,u){const D=u.width,y=u.height,r=.15*D;M.append("path").attr("id","node-"+u.id).attr("class","node-bkg node-"+C.type2Str(u.type)).attr("d",`M0 0 a${r},${r} 1 0,0 ${D*.25},${-1*y*.1}
21
- a${r},${r} 1 0,0 ${D*.25},0
22
- a${r},${r} 1 0,0 ${D*.25},0
23
- a${r},${r} 1 0,0 ${D*.25},${1*y*.1}
24
-
25
- a${r},${r} 1 0,0 ${D*.15},${1*y*.33}
26
- a${r*.8},${r*.8} 1 0,0 0,${1*y*.34}
27
- a${r},${r} 1 0,0 ${-1*D*.15},${1*y*.33}
28
-
29
- a${r},${r} 1 0,0 ${-1*D*.25},${y*.15}
30
- a${r},${r} 1 0,0 ${-1*D*.25},0
31
- a${r},${r} 1 0,0 ${-1*D*.25},0
32
- a${r},${r} 1 0,0 ${-1*D*.25},${-1*y*.15}
33
-
34
- a${r},${r} 1 0,0 ${-1*D*.1},${-1*y*.33}
35
- a${r*.8},${r*.8} 1 0,0 0,${-1*y*.34}
36
- a${r},${r} 1 0,0 ${D*.1},${-1*y*.33}
37
-
38
- H0 V0 Z`)},"bangBkg"),$t=_(function(C,M,u){M.append("circle").attr("id","node-"+u.id).attr("class","node-bkg node-"+C.type2Str(u.type)).attr("r",u.width/2)},"circleBkg");function pt(C,M,u,D,y){return C.insert("polygon",":first-child").attr("points",D.map(function(r){return r.x+","+r.y}).join(" ")).attr("transform","translate("+(y.width-M)/2+", "+u+")")}_(pt,"insertPolygonShape");var Bt=_(function(C,M,u){const D=u.height,r=D/4,t=u.width-u.padding+2*r,e=[{x:r,y:0},{x:t-r,y:0},{x:t,y:-D/2},{x:t-r,y:-D},{x:r,y:-D},{x:0,y:-D/2}];pt(M,t,D,e,u)},"hexagonBkg"),Wt=_(function(C,M,u){M.append("rect").attr("id","node-"+u.id).attr("class","node-bkg node-"+C.type2Str(u.type)).attr("height",u.height).attr("rx",u.padding).attr("ry",u.padding).attr("width",u.width)},"roundedRectBkg"),Vt=_(async function(C,M,u,D,y){const r=y.htmlLabels,t=D%(Pt-1),e=M.append("g");u.section=t;let i="section-"+t;t<0&&(i+=" section-root"),e.attr("class",(u.class?u.class+" ":"")+"mindmap-node "+i);const o=e.append("g"),g=e.append("g"),a=u.descr.replace(/(<br\/*>)/g,`
39
- `);await At(g,a,{useHtmlLabels:r,width:u.width,classes:"mindmap-node-label"},y),r||g.attr("dy","1em").attr("alignment-baseline","middle").attr("dominant-baseline","middle").attr("text-anchor","middle");const v=g.node().getBBox(),[n]=It(y.fontSize);if(u.height=v.height+n*1.1*.5+u.padding,u.width=v.width+2*u.padding,u.icon)if(u.type===C.nodeType.CIRCLE)u.height+=50,u.width+=50,e.append("foreignObject").attr("height","50px").attr("width",u.width).attr("style","text-align: center;").append("div").attr("class","icon-container").append("i").attr("class","node-icon-"+t+" "+u.icon),g.attr("transform","translate("+u.width/2+", "+(u.height/2-1.5*u.padding)+")");else{u.width+=50;const c=u.height;u.height=Math.max(c,60);const l=Math.abs(u.height-c);e.append("foreignObject").attr("width","60px").attr("height",u.height).attr("style","text-align: center;margin-top:"+l/2+"px;").append("div").attr("class","icon-container").append("i").attr("class","node-icon-"+t+" "+u.icon),g.attr("transform","translate("+(25+u.width/2)+", "+(l/2+u.padding/2)+")")}else if(r){const c=(u.width-v.width)/2,l=(u.height-v.height)/2;g.attr("transform","translate("+c+", "+l+")")}else{const c=u.width/2,l=u.padding/2;g.attr("transform","translate("+c+", "+l+")")}switch(u.type){case C.nodeType.DEFAULT:Yt(C,o,u,t);break;case C.nodeType.ROUNDED_RECT:Wt(C,o,u,t);break;case C.nodeType.RECT:Xt(C,o,u,t);break;case C.nodeType.CIRCLE:o.attr("transform","translate("+u.width/2+", "+ +u.height/2+")"),$t(C,o,u,t);break;case C.nodeType.CLOUD:kt(C,o,u,t);break;case C.nodeType.BANG:Ht(C,o,u,t);break;case C.nodeType.HEXAGON:Bt(C,o,u,t);break}return C.setElementForId(u.id,e),u.height},"drawNode"),Zt=_(function(C,M){const u=C.getElementById(M.id),D=M.x||0,y=M.y||0;u.attr("transform","translate("+D+","+y+")")},"positionNode");ft.use(_t);async function ot(C,M,u,D,y){await Vt(C,M,u,D,y),u.children&&await Promise.all(u.children.map((r,t)=>ot(C,M,r,D<0?t:D,y)))}_(ot,"drawNodes");function dt(C,M){M.edges().map((u,D)=>{const y=u.data();if(u[0]._private.bodyBounds){const r=u[0]._private.rscratch;Q.trace("Edge: ",D,y),C.insert("path").attr("d",`M ${r.startX},${r.startY} L ${r.midX},${r.midY} L${r.endX},${r.endY} `).attr("class","edge section-edge-"+y.section+" edge-depth-"+y.depth)}})}_(dt,"drawEdges");function ht(C,M,u,D){M.add({group:"nodes",data:{id:C.id.toString(),labelText:C.descr,height:C.height,width:C.width,level:D,nodeId:C.id,padding:C.padding,type:C.type},position:{x:C.x,y:C.y}}),C.children&&C.children.forEach(y=>{ht(y,M,u,D+1),M.add({group:"edges",data:{id:`${C.id}_${y.id}`,source:C.id,target:y.id,depth:D,section:y.section}})})}_(ht,"addNodes");function vt(C,M){return new Promise(u=>{const D=Ot("body").append("div").attr("id","cy").attr("style","display:none"),y=ft({container:document.getElementById("cy"),style:[{selector:"edge",style:{"curve-style":"bezier"}}]});D.remove(),ht(C,y,M,0),y.nodes().forEach(function(r){r.layoutDimensions=()=>{const t=r.data();return{w:t.width,h:t.height}}}),y.layout({name:"cose-bilkent",quality:"proof",styleEnabled:!1,animate:!1}).run(),y.ready(r=>{Q.info("Ready",r),u(y)})})}_(vt,"layoutMindmap");function yt(C,M){M.nodes().map((u,D)=>{const y=u.data();y.x=u.position().x,y.y=u.position().y,Zt(C,y);const r=C.getElementById(y.nodeId);Q.info("id:",D,"Position: (",u.position().x,", ",u.position().y,")",y),r.attr("transform",`translate(${u.position().x-y.width/2}, ${u.position().y-y.height/2})`),r.attr("attr",`apa-${D})`)})}_(yt,"positionNodes");var Qt=_(async(C,M,u,D)=>{var a,v;Q.debug(`Rendering mindmap diagram
40
- `+C);const y=D.db,r=y.getMindmap();if(!r)return;const t=st();t.htmlLabels=!1;const e=Lt(M),i=e.append("g");i.attr("class","mindmap-edges");const o=e.append("g");o.attr("class","mindmap-nodes"),await ot(y,o,r,-1,t);const g=await vt(r,t);dt(i,g),yt(y,g),Tt(void 0,e,((a=t.mindmap)==null?void 0:a.padding)??it.mindmap.padding,((v=t.mindmap)==null?void 0:v.useMaxWidth)??it.mindmap.useMaxWidth)},"draw"),jt={draw:Qt},zt=_(C=>{let M="";for(let u=0;u<C.THEME_COLOR_LIMIT;u++)C["lineColor"+u]=C["lineColor"+u]||C["cScaleInv"+u],Nt(C["lineColor"+u])?C["lineColor"+u]=mt(C["lineColor"+u],20):C["lineColor"+u]=Dt(C["lineColor"+u],20);for(let u=0;u<C.THEME_COLOR_LIMIT;u++){const D=""+(17-3*u);M+=`
41
- .section-${u-1} rect, .section-${u-1} path, .section-${u-1} circle, .section-${u-1} polygon, .section-${u-1} path {
42
- fill: ${C["cScale"+u]};
43
- }
44
- .section-${u-1} text {
45
- fill: ${C["cScaleLabel"+u]};
46
- }
47
- .node-icon-${u-1} {
48
- font-size: 40px;
49
- color: ${C["cScaleLabel"+u]};
50
- }
51
- .section-edge-${u-1}{
52
- stroke: ${C["cScale"+u]};
53
- }
54
- .edge-depth-${u-1}{
55
- stroke-width: ${D};
56
- }
57
- .section-${u-1} line {
58
- stroke: ${C["cScaleInv"+u]} ;
59
- stroke-width: 3;
60
- }
61
-
62
- .disabled, .disabled circle, .disabled text {
63
- fill: lightgray;
64
- }
65
- .disabled text {
66
- fill: #efefef;
67
- }
68
- `}return M},"genSections"),Kt=_(C=>`
69
- .edge {
70
- stroke-width: 3;
71
- }
72
- ${zt(C)}
73
- .section-root rect, .section-root path, .section-root circle, .section-root polygon {
74
- fill: ${C.git0};
75
- }
76
- .section-root text {
77
- fill: ${C.gitBranchLabel0};
78
- }
79
- .icon-container {
80
- height:100%;
81
- display: flex;
82
- justify-content: center;
83
- align-items: center;
84
- }
85
- .edge {
86
- fill: none;
87
- }
88
- .mindmap-node-label {
89
- dy: 1em;
90
- alignment-baseline: middle;
91
- text-anchor: middle;
92
- dominant-baseline: middle;
93
- text-align: center;
94
- }
95
- `,"getStyles"),qt=Kt,le={get db(){return new Ut},renderer:jt,parser:Ft,styles:qt};export{le as diagram};
@@ -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={wordPattern:/(-?\d*\.\d\w*)|([^\`\~\!\@\#%\^\&\*\(\)\=\$\-\+\[\{\]\}\\\|\;\:\'\"\,\.\<\>\/\?\s]+)/g,comments:{blockComment:["###","###"],lineComment:"#"},folding:{markers:{start:new RegExp("^\\s*#region\\b"),end:new RegExp("^\\s*#endregion\\b")}}},t={defaultToken:"",ignoreCase:!1,tokenPostfix:".mips",regEx:/\/(?!\/\/)(?:[^\/\\]|\\.)*\/[igm]*/,keywords:[".data",".text","syscall","trap","add","addu","addi","addiu","and","andi","div","divu","mult","multu","nor","or","ori","sll","slv","sra","srav","srl","srlv","sub","subu","xor","xori","lhi","lho","lhi","llo","slt","slti","sltu","sltiu","beq","bgtz","blez","bne","j","jal","jalr","jr","lb","lbu","lh","lhu","lw","li","la","sb","sh","sw","mfhi","mflo","mthi","mtlo","move"],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*/,"variable.predefined"],[/[.a-zA-Z_]\w*/,{cases:{this:"variable.predefined","@keywords":{token:"keyword.$0"},"@default":""}}],[/[ \t\r\n]+/,""],[/#.*$/,"comment"],["///",{token:"regexp",next:"@hereregexp"}],[/^(\s*)(@regEx)/,["","regexp"]],[/(\,)(\s*)(@regEx)/,["delimiter","","regexp"]],[/(\:)(\s*)(@regEx)/,["delimiter","","regexp"]],[/@symbols/,"delimiter"],[/\d+[eE]([\-+]?\d+)?/,"number.float"],[/\d+\.\d+([eE][\-+]?\d+)?/,"number.float"],[/0[xX][0-9a-fA-F]+/,"number.hex"],[/0[0-7]+(?!\d)/,"number.octal"],[/\d+/,"number"],[/[,.]/,"delimiter"],[/"""/,"string",'@herestring."""'],[/'''/,"string","@herestring.'''"],[/"/,{cases:{"@eos":"string","@default":{token:"string",next:'@string."'}}}],[/'/,{cases:{"@eos":"string","@default":{token:"string",next:"@string.'"}}}]],string:[[/[^"'\#\\]+/,"string"],[/@escapes/,"string.escape"],[/\./,"string.escape.invalid"],[/\./,"string.escape.invalid"],[/#{/,{cases:{'$S2=="':{token:"string",next:"root.interpolatedstring"},"@default":"string"}}],[/["']/,{cases:{"$#==$S2":{token:"string",next:"@pop"},"@default":"string"}}],[/#/,"string"]],herestring:[[/("""|''')/,{cases:{"$1==$S2":{token:"string",next:"@pop"},"@default":"string"}}],[/[^#\\'"]+/,"string"],[/['"]+/,"string"],[/@escapes/,"string.escape"],[/\./,"string.escape.invalid"],[/#{/,{token:"string.quote",next:"root.interpolatedstring"}],[/#/,"string"]],comment:[[/[^#]+/,"comment"],[/#/,"comment"]],hereregexp:[[/[^\\\/#]+/,"regexp"],[/\\./,"regexp"],[/#.*$/,"comment"],["///[igm]*",{token:"regexp",next:"@pop"}],[/\//,"regexp"]]}};export{e as conf,t as language};
@@ -1 +0,0 @@
1
- import{au as u}from"./index-Brc7moWM.js";function d(e,i){for(var o=0;o<i.length;o++){const r=i[o];if(typeof r!="string"&&!Array.isArray(r)){for(const t in r)if(t!=="default"&&!(t in e)){const n=Object.getOwnPropertyDescriptor(r,t);n&&Object.defineProperty(e,t,n.get?n:{enumerable:!0,get:()=>r[t]})}}}return Object.freeze(Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}))}var s,a;function m(){if(a)return s;a=1,s=e,e.displayName="mizar",e.aliases=[];function e(i){i.languages.mizar={comment:/::.+/,keyword:/@proof\b|\b(?:according|aggregate|all|and|antonym|are|as|associativity|assume|asymmetry|attr|be|begin|being|by|canceled|case|cases|clusters?|coherence|commutativity|compatibility|connectedness|consider|consistency|constructors|contradiction|correctness|def|deffunc|define|definitions?|defpred|do|does|end|environ|equals|ex|exactly|existence|for|from|func|given|hence|hereby|holds|idempotence|identity|iff?|implies|involutiveness|irreflexivity|is|it|let|means|mode|non|not|notations?|now|of|or|otherwise|over|per|pred|prefix|projectivity|proof|provided|qua|reconsider|redefine|reduce|reducibility|reflexivity|registrations?|requirements|reserve|sch|schemes?|section|selector|set|sethood|st|struct|such|suppose|symmetry|synonym|take|that|the|then|theorems?|thesis|thus|to|transitivity|uniqueness|vocabular(?:ies|y)|when|where|with|wrt)\b/,parameter:{pattern:/\$(?:10|\d)/,alias:"variable"},variable:/\b\w+(?=:)/,number:/(?:\b|-)\d+\b/,operator:/\.\.\.|->|&|\.?=/,punctuation:/\(#|#\)|[,:;\[\](){}]/}}return s}var c=m();const f=u(c),y=d({__proto__:null,default:f},[c]);export{y as m};
@@ -1 +0,0 @@
1
- import{au as d}from"./index-Brc7moWM.js";function u(t,a){for(var e=0;e<a.length;e++){const $=a[e];if(typeof $!="string"&&!Array.isArray($)){for(const r in $)if(r!=="default"&&!(r in t)){const n=Object.getOwnPropertyDescriptor($,r);n&&Object.defineProperty(t,r,n.get?n:{enumerable:!0,get:()=>$[r]})}}}return Object.freeze(Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}))}var o,s;function c(){if(s)return o;s=1,o=t,t.displayName="mongodb",t.aliases=[];function t(a){(function(e){var $=["$eq","$gt","$gte","$in","$lt","$lte","$ne","$nin","$and","$not","$nor","$or","$exists","$type","$expr","$jsonSchema","$mod","$regex","$text","$where","$geoIntersects","$geoWithin","$near","$nearSphere","$all","$elemMatch","$size","$bitsAllClear","$bitsAllSet","$bitsAnyClear","$bitsAnySet","$comment","$elemMatch","$meta","$slice","$currentDate","$inc","$min","$max","$mul","$rename","$set","$setOnInsert","$unset","$addToSet","$pop","$pull","$push","$pullAll","$each","$position","$slice","$sort","$bit","$addFields","$bucket","$bucketAuto","$collStats","$count","$currentOp","$facet","$geoNear","$graphLookup","$group","$indexStats","$limit","$listLocalSessions","$listSessions","$lookup","$match","$merge","$out","$planCacheStats","$project","$redact","$replaceRoot","$replaceWith","$sample","$set","$skip","$sort","$sortByCount","$unionWith","$unset","$unwind","$setWindowFields","$abs","$accumulator","$acos","$acosh","$add","$addToSet","$allElementsTrue","$and","$anyElementTrue","$arrayElemAt","$arrayToObject","$asin","$asinh","$atan","$atan2","$atanh","$avg","$binarySize","$bsonSize","$ceil","$cmp","$concat","$concatArrays","$cond","$convert","$cos","$dateFromParts","$dateToParts","$dateFromString","$dateToString","$dayOfMonth","$dayOfWeek","$dayOfYear","$degreesToRadians","$divide","$eq","$exp","$filter","$first","$floor","$function","$gt","$gte","$hour","$ifNull","$in","$indexOfArray","$indexOfBytes","$indexOfCP","$isArray","$isNumber","$isoDayOfWeek","$isoWeek","$isoWeekYear","$last","$last","$let","$literal","$ln","$log","$log10","$lt","$lte","$ltrim","$map","$max","$mergeObjects","$meta","$min","$millisecond","$minute","$mod","$month","$multiply","$ne","$not","$objectToArray","$or","$pow","$push","$radiansToDegrees","$range","$reduce","$regexFind","$regexFindAll","$regexMatch","$replaceOne","$replaceAll","$reverseArray","$round","$rtrim","$second","$setDifference","$setEquals","$setIntersection","$setIsSubset","$setUnion","$size","$sin","$slice","$split","$sqrt","$stdDevPop","$stdDevSamp","$strcasecmp","$strLenBytes","$strLenCP","$substr","$substrBytes","$substrCP","$subtract","$sum","$switch","$tan","$toBool","$toDate","$toDecimal","$toDouble","$toInt","$toLong","$toObjectId","$toString","$toLower","$toUpper","$trim","$trunc","$type","$week","$year","$zip","$count","$dateAdd","$dateDiff","$dateSubtract","$dateTrunc","$getField","$rand","$sampleRate","$setField","$unsetField","$comment","$explain","$hint","$max","$maxTimeMS","$min","$orderby","$query","$returnKey","$showDiskLoc","$natural"],r=["ObjectId","Code","BinData","DBRef","Timestamp","NumberLong","NumberDecimal","MaxKey","MinKey","RegExp","ISODate","UUID"];$=$.map(function(l){return l.replace("$","\\$")});var n="(?:"+$.join("|")+")\\b";e.languages.mongodb=e.languages.extend("javascript",{}),e.languages.insertBefore("mongodb","string",{property:{pattern:/(?:(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1|(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)(?=\s*:)/,greedy:!0,inside:{keyword:RegExp(`^(['"])?`+n+"(?:\\1)?$")}}}),e.languages.mongodb.string.inside={url:{pattern:/https?:\/\/[-\w@:%.+~#=]{1,256}\.[a-z0-9()]{1,6}\b[-\w()@:%+.~#?&/=]*/i,greedy:!0},entity:{pattern:/\b(?:(?:[01]?\d\d?|2[0-4]\d|25[0-5])\.){3}(?:[01]?\d\d?|2[0-4]\d|25[0-5])\b/,greedy:!0}},e.languages.insertBefore("mongodb","constant",{builtin:{pattern:RegExp("\\b(?:"+r.join("|")+")\\b"),alias:"keyword"}})})(a)}return o}var i=c();const m=d(i),p=u({__proto__:null,default:m},[i]);export{p as m};
@@ -1 +0,0 @@
1
- import{au as u}from"./index-Brc7moWM.js";function c(e,n){for(var o=0;o<n.length;o++){const t=n[o];if(typeof t!="string"&&!Array.isArray(t)){for(const r in t)if(r!=="default"&&!(r in e)){const a=Object.getOwnPropertyDescriptor(t,r);a&&Object.defineProperty(e,r,a.get?a:{enumerable:!0,get:()=>t[r]})}}}return Object.freeze(Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}))}var i,l;function p(){if(l)return i;l=1,i=e,e.displayName="monkey",e.aliases=[];function e(n){n.languages.monkey={comment:{pattern:/^#Rem\s[\s\S]*?^#End|'.+/im,greedy:!0},string:{pattern:/"[^"\r\n]*"/,greedy:!0},preprocessor:{pattern:/(^[ \t]*)#.+/m,lookbehind:!0,greedy:!0,alias:"property"},function:/\b\w+(?=\()/,"type-char":{pattern:/\b[?%#$]/,alias:"class-name"},number:{pattern:/((?:\.\.)?)(?:(?:\b|\B-\.?|\B\.)\d+(?:(?!\.\.)\.\d*)?|\$[\da-f]+)/i,lookbehind:!0},keyword:/\b(?:Abstract|Array|Bool|Case|Catch|Class|Const|Continue|Default|Eachin|Else|ElseIf|End|EndIf|Exit|Extends|Extern|False|Field|Final|Float|For|Forever|Function|Global|If|Implements|Import|Inline|Int|Interface|Local|Method|Module|New|Next|Null|Object|Private|Property|Public|Repeat|Return|Select|Self|Step|Strict|String|Super|Then|Throw|To|True|Try|Until|Void|Wend|While)\b/i,operator:/\.\.|<[=>]?|>=?|:?=|(?:[+\-*\/&~|]|\b(?:Mod|Shl|Shr)\b)=?|\b(?:And|Not|Or)\b/i,punctuation:/[.,:;()\[\]]/}}return i}var s=p();const d=u(s),f=c({__proto__:null,default:d},[s]);export{f as m};
@@ -1 +0,0 @@
1
- import{au as p}from"./index-Brc7moWM.js";function u(t,e){for(var r=0;r<e.length;r++){const o=e[r];if(typeof o!="string"&&!Array.isArray(o)){for(const n in o)if(n!=="default"&&!(n in t)){const a=Object.getOwnPropertyDescriptor(o,n);a&&Object.defineProperty(t,n,a.get?a:{enumerable:!0,get:()=>o[n]})}}}return Object.freeze(Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}))}var s,i;function c(){if(i)return s;i=1,s=t,t.displayName="moonscript",t.aliases=["moon"];function t(e){e.languages.moonscript={comment:/--.*/,string:[{pattern:/'[^']*'|\[(=*)\[[\s\S]*?\]\1\]/,greedy:!0},{pattern:/"[^"]*"/,greedy:!0,inside:{interpolation:{pattern:/#\{[^{}]*\}/,inside:{moonscript:{pattern:/(^#\{)[\s\S]+(?=\})/,lookbehind:!0,inside:null},"interpolation-punctuation":{pattern:/#\{|\}/,alias:"punctuation"}}}}}],"class-name":[{pattern:/(\b(?:class|extends)[ \t]+)\w+/,lookbehind:!0},/\b[A-Z]\w*/],keyword:/\b(?:class|continue|do|else|elseif|export|extends|for|from|if|import|in|local|nil|return|self|super|switch|then|unless|using|when|while|with)\b/,variable:/@@?\w*/,property:{pattern:/\b(?!\d)\w+(?=:)|(:)(?!\d)\w+/,lookbehind:!0},function:{pattern:/\b(?:_G|_VERSION|assert|collectgarbage|coroutine\.(?:create|resume|running|status|wrap|yield)|debug\.(?:debug|getfenv|gethook|getinfo|getlocal|getmetatable|getregistry|getupvalue|setfenv|sethook|setlocal|setmetatable|setupvalue|traceback)|dofile|error|getfenv|getmetatable|io\.(?:close|flush|input|lines|open|output|popen|read|stderr|stdin|stdout|tmpfile|type|write)|ipairs|load|loadfile|loadstring|math\.(?:abs|acos|asin|atan|atan2|ceil|cos|cosh|deg|exp|floor|fmod|frexp|ldexp|log|log10|max|min|modf|pi|pow|rad|random|randomseed|sin|sinh|sqrt|tan|tanh)|module|next|os\.(?:clock|date|difftime|execute|exit|getenv|remove|rename|setlocale|time|tmpname)|package\.(?:cpath|loaded|loadlib|path|preload|seeall)|pairs|pcall|print|rawequal|rawget|rawset|require|select|setfenv|setmetatable|string\.(?:byte|char|dump|find|format|gmatch|gsub|len|lower|match|rep|reverse|sub|upper)|table\.(?:concat|insert|maxn|remove|sort)|tonumber|tostring|type|unpack|xpcall)\b/,inside:{punctuation:/\./}},boolean:/\b(?:false|true)\b/,number:/(?:\B\.\d+|\b\d+\.\d+|\b\d+(?=[eE]))(?:[eE][-+]?\d+)?\b|\b(?:0x[a-fA-F\d]+|\d+)(?:U?LL)?\b/,operator:/\.{3}|[-=]>|~=|(?:[-+*/%<>!=]|\.\.)=?|[:#^]|\b(?:and|or)\b=?|\b(?:not)\b/,punctuation:/[.,()[\]{}\\]/},e.languages.moonscript.string[1].inside.interpolation.inside.moonscript.inside=e.languages.moonscript,e.languages.moon=e.languages.moonscript}return s}var l=c();const d=p(l),g=u({__proto__:null,default:d},[l]);export{g as m};
@@ -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:'"',notIn:["string","comment"]},{open:"'",close:"'",notIn:["string","comment"]},{open:"[",close:"]",notIn:["string","comment"]},{open:"(",close:")",notIn:["string","comment"]},{open:"{",close:"}",notIn:["string","comment"]}]},T={defaultToken:"",tokenPostfix:".msdax",ignoreCase:!0,brackets:[{open:"[",close:"]",token:"delimiter.square"},{open:"{",close:"}",token:"delimiter.brackets"},{open:"(",close:")",token:"delimiter.parenthesis"}],keywords:["VAR","RETURN","NOT","EVALUATE","DATATABLE","ORDER","BY","START","AT","DEFINE","MEASURE","ASC","DESC","IN","BOOLEAN","DOUBLE","INTEGER","DATETIME","CURRENCY","STRING"],functions:["CLOSINGBALANCEMONTH","CLOSINGBALANCEQUARTER","CLOSINGBALANCEYEAR","DATEADD","DATESBETWEEN","DATESINPERIOD","DATESMTD","DATESQTD","DATESYTD","ENDOFMONTH","ENDOFQUARTER","ENDOFYEAR","FIRSTDATE","FIRSTNONBLANK","LASTDATE","LASTNONBLANK","NEXTDAY","NEXTMONTH","NEXTQUARTER","NEXTYEAR","OPENINGBALANCEMONTH","OPENINGBALANCEQUARTER","OPENINGBALANCEYEAR","PARALLELPERIOD","PREVIOUSDAY","PREVIOUSMONTH","PREVIOUSQUARTER","PREVIOUSYEAR","SAMEPERIODLASTYEAR","STARTOFMONTH","STARTOFQUARTER","STARTOFYEAR","TOTALMTD","TOTALQTD","TOTALYTD","ADDCOLUMNS","ADDMISSINGITEMS","ALL","ALLEXCEPT","ALLNOBLANKROW","ALLSELECTED","CALCULATE","CALCULATETABLE","CALENDAR","CALENDARAUTO","CROSSFILTER","CROSSJOIN","CURRENTGROUP","DATATABLE","DETAILROWS","DISTINCT","EARLIER","EARLIEST","EXCEPT","FILTER","FILTERS","GENERATE","GENERATEALL","GROUPBY","IGNORE","INTERSECT","ISONORAFTER","KEEPFILTERS","LOOKUPVALUE","NATURALINNERJOIN","NATURALLEFTOUTERJOIN","RELATED","RELATEDTABLE","ROLLUP","ROLLUPADDISSUBTOTAL","ROLLUPGROUP","ROLLUPISSUBTOTAL","ROW","SAMPLE","SELECTCOLUMNS","SUBSTITUTEWITHINDEX","SUMMARIZE","SUMMARIZECOLUMNS","TOPN","TREATAS","UNION","USERELATIONSHIP","VALUES","SUM","SUMX","PATH","PATHCONTAINS","PATHITEM","PATHITEMREVERSE","PATHLENGTH","AVERAGE","AVERAGEA","AVERAGEX","COUNT","COUNTA","COUNTAX","COUNTBLANK","COUNTROWS","COUNTX","DISTINCTCOUNT","DIVIDE","GEOMEAN","GEOMEANX","MAX","MAXA","MAXX","MEDIAN","MEDIANX","MIN","MINA","MINX","PERCENTILE.EXC","PERCENTILE.INC","PERCENTILEX.EXC","PERCENTILEX.INC","PRODUCT","PRODUCTX","RANK.EQ","RANKX","STDEV.P","STDEV.S","STDEVX.P","STDEVX.S","VAR.P","VAR.S","VARX.P","VARX.S","XIRR","XNPV","DATE","DATEDIFF","DATEVALUE","DAY","EDATE","EOMONTH","HOUR","MINUTE","MONTH","NOW","SECOND","TIME","TIMEVALUE","TODAY","WEEKDAY","WEEKNUM","YEAR","YEARFRAC","CONTAINS","CONTAINSROW","CUSTOMDATA","ERROR","HASONEFILTER","HASONEVALUE","ISBLANK","ISCROSSFILTERED","ISEMPTY","ISERROR","ISEVEN","ISFILTERED","ISLOGICAL","ISNONTEXT","ISNUMBER","ISODD","ISSUBTOTAL","ISTEXT","USERNAME","USERPRINCIPALNAME","AND","FALSE","IF","IFERROR","NOT","OR","SWITCH","TRUE","ABS","ACOS","ACOSH","ACOT","ACOTH","ASIN","ASINH","ATAN","ATANH","BETA.DIST","BETA.INV","CEILING","CHISQ.DIST","CHISQ.DIST.RT","CHISQ.INV","CHISQ.INV.RT","COMBIN","COMBINA","CONFIDENCE.NORM","CONFIDENCE.T","COS","COSH","COT","COTH","CURRENCY","DEGREES","EVEN","EXP","EXPON.DIST","FACT","FLOOR","GCD","INT","ISO.CEILING","LCM","LN","LOG","LOG10","MOD","MROUND","ODD","PERMUT","PI","POISSON.DIST","POWER","QUOTIENT","RADIANS","RAND","RANDBETWEEN","ROUND","ROUNDDOWN","ROUNDUP","SIGN","SIN","SINH","SQRT","SQRTPI","TAN","TANH","TRUNC","BLANK","CONCATENATE","CONCATENATEX","EXACT","FIND","FIXED","FORMAT","LEFT","LEN","LOWER","MID","REPLACE","REPT","RIGHT","SEARCH","SUBSTITUTE","TRIM","UNICHAR","UNICODE","UPPER","VALUE"],tokenizer:{root:[{include:"@comments"},{include:"@whitespace"},{include:"@numbers"},{include:"@strings"},{include:"@complexIdentifiers"},[/[;,.]/,"delimiter"],[/[({})]/,"@brackets"],[/[a-z_][a-zA-Z0-9_]*/,{cases:{"@keywords":"keyword","@functions":"keyword","@default":"identifier"}}],[/[<>=!%&+\-*/|~^]/,"operator"]],whitespace:[[/\s+/,"white"]],comments:[[/\/\/+.*/,"comment"],[/\/\*/,{token:"comment.quote",next:"@comment"}]],comment:[[/[^*/]+/,"comment"],[/\*\//,{token:"comment.quote",next:"@pop"}],[/./,"comment"]],numbers:[[/0[xX][0-9a-fA-F]*/,"number"],[/[$][+-]*\d*(\.\d*)?/,"number"],[/((\d+(\.\d*)?)|(\.\d+))([eE][\-+]?\d+)?/,"number"]],strings:[[/N"/,{token:"string",next:"@string"}],[/"/,{token:"string",next:"@string"}]],string:[[/[^"]+/,"string"],[/""/,"string"],[/"/,{token:"string",next:"@pop"}]],complexIdentifiers:[[/\[/,{token:"identifier.quote",next:"@bracketedIdentifier"}],[/'/,{token:"identifier.quote",next:"@quotedIdentifier"}]],bracketedIdentifier:[[/[^\]]+/,"identifier"],[/]]/,"identifier"],[/]/,{token:"identifier.quote",next:"@pop"}]],quotedIdentifier:[[/[^']+/,"identifier"],[/''/,"identifier"],[/'/,{token:"identifier.quote",next:"@pop"}]]}};export{E as conf,T as language};
@@ -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:'"'},{open:"'",close:"'"}],surroundingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"'},{open:"'",close:"'"}]},T={defaultToken:"",tokenPostfix:".sql",ignoreCase:!0,brackets:[{open:"[",close:"]",token:"delimiter.square"},{open:"(",close:")",token:"delimiter.parenthesis"}],keywords:["ACCESSIBLE","ADD","ALL","ALTER","ANALYZE","AND","AS","ASC","ASENSITIVE","BEFORE","BETWEEN","BIGINT","BINARY","BLOB","BOTH","BY","CALL","CASCADE","CASE","CHANGE","CHAR","CHARACTER","CHECK","COLLATE","COLUMN","CONDITION","CONSTRAINT","CONTINUE","CONVERT","CREATE","CROSS","CUBE","CUME_DIST","CURRENT_DATE","CURRENT_TIME","CURRENT_TIMESTAMP","CURRENT_USER","CURSOR","DATABASE","DATABASES","DAY_HOUR","DAY_MICROSECOND","DAY_MINUTE","DAY_SECOND","DEC","DECIMAL","DECLARE","DEFAULT","DELAYED","DELETE","DENSE_RANK","DESC","DESCRIBE","DETERMINISTIC","DISTINCT","DISTINCTROW","DIV","DOUBLE","DROP","DUAL","EACH","ELSE","ELSEIF","EMPTY","ENCLOSED","ESCAPED","EXCEPT","EXISTS","EXIT","EXPLAIN","FALSE","FETCH","FIRST_VALUE","FLOAT","FLOAT4","FLOAT8","FOR","FORCE","FOREIGN","FROM","FULLTEXT","FUNCTION","GENERATED","GET","GRANT","GROUP","GROUPING","GROUPS","HAVING","HIGH_PRIORITY","HOUR_MICROSECOND","HOUR_MINUTE","HOUR_SECOND","IF","IGNORE","IN","INDEX","INFILE","INNER","INOUT","INSENSITIVE","INSERT","INT","INT1","INT2","INT3","INT4","INT8","INTEGER","INTERVAL","INTO","IO_AFTER_GTIDS","IO_BEFORE_GTIDS","IS","ITERATE","JOIN","JSON_TABLE","KEY","KEYS","KILL","LAG","LAST_VALUE","LATERAL","LEAD","LEADING","LEAVE","LEFT","LIKE","LIMIT","LINEAR","LINES","LOAD","LOCALTIME","LOCALTIMESTAMP","LOCK","LONG","LONGBLOB","LONGTEXT","LOOP","LOW_PRIORITY","MASTER_BIND","MASTER_SSL_VERIFY_SERVER_CERT","MATCH","MAXVALUE","MEDIUMBLOB","MEDIUMINT","MEDIUMTEXT","MIDDLEINT","MINUTE_MICROSECOND","MINUTE_SECOND","MOD","MODIFIES","NATURAL","NOT","NO_WRITE_TO_BINLOG","NTH_VALUE","NTILE","NULL","NUMERIC","OF","ON","OPTIMIZE","OPTIMIZER_COSTS","OPTION","OPTIONALLY","OR","ORDER","OUT","OUTER","OUTFILE","OVER","PARTITION","PERCENT_RANK","PRECISION","PRIMARY","PROCEDURE","PURGE","RANGE","RANK","READ","READS","READ_WRITE","REAL","RECURSIVE","REFERENCES","REGEXP","RELEASE","RENAME","REPEAT","REPLACE","REQUIRE","RESIGNAL","RESTRICT","RETURN","REVOKE","RIGHT","RLIKE","ROW","ROWS","ROW_NUMBER","SCHEMA","SCHEMAS","SECOND_MICROSECOND","SELECT","SENSITIVE","SEPARATOR","SET","SHOW","SIGNAL","SMALLINT","SPATIAL","SPECIFIC","SQL","SQLEXCEPTION","SQLSTATE","SQLWARNING","SQL_BIG_RESULT","SQL_CALC_FOUND_ROWS","SQL_SMALL_RESULT","SSL","STARTING","STORED","STRAIGHT_JOIN","SYSTEM","TABLE","TERMINATED","THEN","TINYBLOB","TINYINT","TINYTEXT","TO","TRAILING","TRIGGER","TRUE","UNDO","UNION","UNIQUE","UNLOCK","UNSIGNED","UPDATE","USAGE","USE","USING","UTC_DATE","UTC_TIME","UTC_TIMESTAMP","VALUES","VARBINARY","VARCHAR","VARCHARACTER","VARYING","VIRTUAL","WHEN","WHERE","WHILE","WINDOW","WITH","WRITE","XOR","YEAR_MONTH","ZEROFILL"],operators:["AND","BETWEEN","IN","LIKE","NOT","OR","IS","NULL","INTERSECT","UNION","INNER","JOIN","LEFT","OUTER","RIGHT"],builtinFunctions:["ABS","ACOS","ADDDATE","ADDTIME","AES_DECRYPT","AES_ENCRYPT","ANY_VALUE","Area","AsBinary","AsWKB","ASCII","ASIN","AsText","AsWKT","ASYMMETRIC_DECRYPT","ASYMMETRIC_DERIVE","ASYMMETRIC_ENCRYPT","ASYMMETRIC_SIGN","ASYMMETRIC_VERIFY","ATAN","ATAN2","ATAN","AVG","BENCHMARK","BIN","BIT_AND","BIT_COUNT","BIT_LENGTH","BIT_OR","BIT_XOR","Buffer","CAST","CEIL","CEILING","Centroid","CHAR","CHAR_LENGTH","CHARACTER_LENGTH","CHARSET","COALESCE","COERCIBILITY","COLLATION","COMPRESS","CONCAT","CONCAT_WS","CONNECTION_ID","Contains","CONV","CONVERT","CONVERT_TZ","ConvexHull","COS","COT","COUNT","CRC32","CREATE_ASYMMETRIC_PRIV_KEY","CREATE_ASYMMETRIC_PUB_KEY","CREATE_DH_PARAMETERS","CREATE_DIGEST","Crosses","CUME_DIST","CURDATE","CURRENT_DATE","CURRENT_ROLE","CURRENT_TIME","CURRENT_TIMESTAMP","CURRENT_USER","CURTIME","DATABASE","DATE","DATE_ADD","DATE_FORMAT","DATE_SUB","DATEDIFF","DAY","DAYNAME","DAYOFMONTH","DAYOFWEEK","DAYOFYEAR","DECODE","DEFAULT","DEGREES","DES_DECRYPT","DES_ENCRYPT","DENSE_RANK","Dimension","Disjoint","Distance","ELT","ENCODE","ENCRYPT","EndPoint","Envelope","Equals","EXP","EXPORT_SET","ExteriorRing","EXTRACT","ExtractValue","FIELD","FIND_IN_SET","FIRST_VALUE","FLOOR","FORMAT","FORMAT_BYTES","FORMAT_PICO_TIME","FOUND_ROWS","FROM_BASE64","FROM_DAYS","FROM_UNIXTIME","GEN_RANGE","GEN_RND_EMAIL","GEN_RND_PAN","GEN_RND_SSN","GEN_RND_US_PHONE","GeomCollection","GeomCollFromText","GeometryCollectionFromText","GeomCollFromWKB","GeometryCollectionFromWKB","GeometryCollection","GeometryN","GeometryType","GeomFromText","GeometryFromText","GeomFromWKB","GeometryFromWKB","GET_FORMAT","GET_LOCK","GLength","GREATEST","GROUP_CONCAT","GROUPING","GTID_SUBSET","GTID_SUBTRACT","HEX","HOUR","ICU_VERSION","IF","IFNULL","INET_ATON","INET_NTOA","INET6_ATON","INET6_NTOA","INSERT","INSTR","InteriorRingN","Intersects","INTERVAL","IS_FREE_LOCK","IS_IPV4","IS_IPV4_COMPAT","IS_IPV4_MAPPED","IS_IPV6","IS_USED_LOCK","IS_UUID","IsClosed","IsEmpty","ISNULL","IsSimple","JSON_APPEND","JSON_ARRAY","JSON_ARRAY_APPEND","JSON_ARRAY_INSERT","JSON_ARRAYAGG","JSON_CONTAINS","JSON_CONTAINS_PATH","JSON_DEPTH","JSON_EXTRACT","JSON_INSERT","JSON_KEYS","JSON_LENGTH","JSON_MERGE","JSON_MERGE_PATCH","JSON_MERGE_PRESERVE","JSON_OBJECT","JSON_OBJECTAGG","JSON_OVERLAPS","JSON_PRETTY","JSON_QUOTE","JSON_REMOVE","JSON_REPLACE","JSON_SCHEMA_VALID","JSON_SCHEMA_VALIDATION_REPORT","JSON_SEARCH","JSON_SET","JSON_STORAGE_FREE","JSON_STORAGE_SIZE","JSON_TABLE","JSON_TYPE","JSON_UNQUOTE","JSON_VALID","LAG","LAST_DAY","LAST_INSERT_ID","LAST_VALUE","LCASE","LEAD","LEAST","LEFT","LENGTH","LineFromText","LineStringFromText","LineFromWKB","LineStringFromWKB","LineString","LN","LOAD_FILE","LOCALTIME","LOCALTIMESTAMP","LOCATE","LOG","LOG10","LOG2","LOWER","LPAD","LTRIM","MAKE_SET","MAKEDATE","MAKETIME","MASK_INNER","MASK_OUTER","MASK_PAN","MASK_PAN_RELAXED","MASK_SSN","MASTER_POS_WAIT","MAX","MBRContains","MBRCoveredBy","MBRCovers","MBRDisjoint","MBREqual","MBREquals","MBRIntersects","MBROverlaps","MBRTouches","MBRWithin","MD5","MEMBER OF","MICROSECOND","MID","MIN","MINUTE","MLineFromText","MultiLineStringFromText","MLineFromWKB","MultiLineStringFromWKB","MOD","MONTH","MONTHNAME","MPointFromText","MultiPointFromText","MPointFromWKB","MultiPointFromWKB","MPolyFromText","MultiPolygonFromText","MPolyFromWKB","MultiPolygonFromWKB","MultiLineString","MultiPoint","MultiPolygon","NAME_CONST","NOT IN","NOW","NTH_VALUE","NTILE","NULLIF","NumGeometries","NumInteriorRings","NumPoints","OCT","OCTET_LENGTH","OLD_PASSWORD","ORD","Overlaps","PASSWORD","PERCENT_RANK","PERIOD_ADD","PERIOD_DIFF","PI","Point","PointFromText","PointFromWKB","PointN","PolyFromText","PolygonFromText","PolyFromWKB","PolygonFromWKB","Polygon","POSITION","POW","POWER","PS_CURRENT_THREAD_ID","PS_THREAD_ID","PROCEDURE ANALYSE","QUARTER","QUOTE","RADIANS","RAND","RANDOM_BYTES","RANK","REGEXP_INSTR","REGEXP_LIKE","REGEXP_REPLACE","REGEXP_REPLACE","RELEASE_ALL_LOCKS","RELEASE_LOCK","REPEAT","REPLACE","REVERSE","RIGHT","ROLES_GRAPHML","ROUND","ROW_COUNT","ROW_NUMBER","RPAD","RTRIM","SCHEMA","SEC_TO_TIME","SECOND","SESSION_USER","SHA1","SHA","SHA2","SIGN","SIN","SLEEP","SOUNDEX","SOURCE_POS_WAIT","SPACE","SQRT","SRID","ST_Area","ST_AsBinary","ST_AsWKB","ST_AsGeoJSON","ST_AsText","ST_AsWKT","ST_Buffer","ST_Buffer_Strategy","ST_Centroid","ST_Collect","ST_Contains","ST_ConvexHull","ST_Crosses","ST_Difference","ST_Dimension","ST_Disjoint","ST_Distance","ST_Distance_Sphere","ST_EndPoint","ST_Envelope","ST_Equals","ST_ExteriorRing","ST_FrechetDistance","ST_GeoHash","ST_GeomCollFromText","ST_GeometryCollectionFromText","ST_GeomCollFromTxt","ST_GeomCollFromWKB","ST_GeometryCollectionFromWKB","ST_GeometryN","ST_GeometryType","ST_GeomFromGeoJSON","ST_GeomFromText","ST_GeometryFromText","ST_GeomFromWKB","ST_GeometryFromWKB","ST_HausdorffDistance","ST_InteriorRingN","ST_Intersection","ST_Intersects","ST_IsClosed","ST_IsEmpty","ST_IsSimple","ST_IsValid","ST_LatFromGeoHash","ST_Length","ST_LineFromText","ST_LineStringFromText","ST_LineFromWKB","ST_LineStringFromWKB","ST_LineInterpolatePoint","ST_LineInterpolatePoints","ST_LongFromGeoHash","ST_Longitude","ST_MakeEnvelope","ST_MLineFromText","ST_MultiLineStringFromText","ST_MLineFromWKB","ST_MultiLineStringFromWKB","ST_MPointFromText","ST_MultiPointFromText","ST_MPointFromWKB","ST_MultiPointFromWKB","ST_MPolyFromText","ST_MultiPolygonFromText","ST_MPolyFromWKB","ST_MultiPolygonFromWKB","ST_NumGeometries","ST_NumInteriorRing","ST_NumInteriorRings","ST_NumPoints","ST_Overlaps","ST_PointAtDistance","ST_PointFromGeoHash","ST_PointFromText","ST_PointFromWKB","ST_PointN","ST_PolyFromText","ST_PolygonFromText","ST_PolyFromWKB","ST_PolygonFromWKB","ST_Simplify","ST_SRID","ST_StartPoint","ST_SwapXY","ST_SymDifference","ST_Touches","ST_Transform","ST_Union","ST_Validate","ST_Within","ST_X","ST_Y","StartPoint","STATEMENT_DIGEST","STATEMENT_DIGEST_TEXT","STD","STDDEV","STDDEV_POP","STDDEV_SAMP","STR_TO_DATE","STRCMP","SUBDATE","SUBSTR","SUBSTRING","SUBSTRING_INDEX","SUBTIME","SUM","SYSDATE","SYSTEM_USER","TAN","TIME","TIME_FORMAT","TIME_TO_SEC","TIMEDIFF","TIMESTAMP","TIMESTAMPADD","TIMESTAMPDIFF","TO_BASE64","TO_DAYS","TO_SECONDS","Touches","TRIM","TRUNCATE","UCASE","UNCOMPRESS","UNCOMPRESSED_LENGTH","UNHEX","UNIX_TIMESTAMP","UpdateXML","UPPER","USER","UTC_DATE","UTC_TIME","UTC_TIMESTAMP","UUID","UUID_SHORT","UUID_TO_BIN","VALIDATE_PASSWORD_STRENGTH","VALUES","VAR_POP","VAR_SAMP","VARIANCE","VERSION","WAIT_FOR_EXECUTED_GTID_SET","WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS","WEEK","WEEKDAY","WEEKOFYEAR","WEIGHT_STRING","Within","X","Y","YEAR","YEARWEEK"],builtinVariables:[],tokenizer:{root:[{include:"@comments"},{include:"@whitespace"},{include:"@numbers"},{include:"@strings"},{include:"@complexIdentifiers"},{include:"@scopes"},[/[;,.]/,"delimiter"],[/[()]/,"@brackets"],[/[\w@]+/,{cases:{"@operators":"operator","@builtinVariables":"predefined","@builtinFunctions":"predefined","@keywords":"keyword","@default":"identifier"}}],[/[<>=!%&+\-*/|~^]/,"operator"]],whitespace:[[/\s+/,"white"]],comments:[[/--+.*/,"comment"],[/#+.*/,"comment"],[/\/\*/,{token:"comment.quote",next:"@comment"}]],comment:[[/[^*/]+/,"comment"],[/\*\//,{token:"comment.quote",next:"@pop"}],[/./,"comment"]],numbers:[[/0[xX][0-9a-fA-F]*/,"number"],[/[$][+-]*\d*(\.\d*)?/,"number"],[/((\d+(\.\d*)?)|(\.\d+))([eE][\-+]?\d+)?/,"number"]],strings:[[/'/,{token:"string",next:"@string"}],[/"/,{token:"string.double",next:"@stringDouble"}]],string:[[/\\'/,"string"],[/[^']+/,"string"],[/''/,"string"],[/'/,{token:"string",next:"@pop"}]],stringDouble:[[/[^"]+/,"string.double"],[/""/,"string.double"],[/"/,{token:"string.double",next:"@pop"}]],complexIdentifiers:[[/`/,{token:"identifier.quote",next:"@quotedIdentifier"}]],quotedIdentifier:[[/[^`]+/,"identifier"],[/``/,"identifier"],[/`/,{token:"identifier.quote",next:"@pop"}]],scopes:[]}};export{E as conf,T as language};
@@ -1 +0,0 @@
1
- import{au as L}from"./index-Brc7moWM.js";function r(E,R){for(var A=0;A<R.length;A++){const T=R[A];if(typeof T!="string"&&!Array.isArray(T)){for(const N in T)if(N!=="default"&&!(N in E)){const I=Object.getOwnPropertyDescriptor(T,N);I&&Object.defineProperty(E,N,I.get?I:{enumerable:!0,get:()=>T[N]})}}}return Object.freeze(Object.defineProperty(E,Symbol.toStringTag,{value:"Module"}))}var S,O;function t(){if(O)return S;O=1,S=E,E.displayName="n1ql",E.aliases=[];function E(R){R.languages.n1ql={comment:{pattern:/\/\*[\s\S]*?(?:$|\*\/)|--.*/,greedy:!0},string:{pattern:/(["'])(?:\\[\s\S]|(?!\1)[^\\]|\1\1)*\1/,greedy:!0},identifier:{pattern:/`(?:\\[\s\S]|[^\\`]|``)*`/,greedy:!0},parameter:/\$[\w.]+/,keyword:/\b(?:ADVISE|ALL|ALTER|ANALYZE|AS|ASC|AT|BEGIN|BINARY|BOOLEAN|BREAK|BUCKET|BUILD|BY|CALL|CAST|CLUSTER|COLLATE|COLLECTION|COMMIT|COMMITTED|CONNECT|CONTINUE|CORRELATE|CORRELATED|COVER|CREATE|CURRENT|DATABASE|DATASET|DATASTORE|DECLARE|DECREMENT|DELETE|DERIVED|DESC|DESCRIBE|DISTINCT|DO|DROP|EACH|ELEMENT|EXCEPT|EXCLUDE|EXECUTE|EXPLAIN|FETCH|FILTER|FLATTEN|FLUSH|FOLLOWING|FOR|FORCE|FROM|FTS|FUNCTION|GOLANG|GRANT|GROUP|GROUPS|GSI|HASH|HAVING|IF|IGNORE|ILIKE|INCLUDE|INCREMENT|INDEX|INFER|INLINE|INNER|INSERT|INTERSECT|INTO|IS|ISOLATION|JAVASCRIPT|JOIN|KEY|KEYS|KEYSPACE|KNOWN|LANGUAGE|LAST|LEFT|LET|LETTING|LEVEL|LIMIT|LSM|MAP|MAPPING|MATCHED|MATERIALIZED|MERGE|MINUS|MISSING|NAMESPACE|NEST|NL|NO|NTH_VALUE|NULL|NULLS|NUMBER|OBJECT|OFFSET|ON|OPTION|OPTIONS|ORDER|OTHERS|OUTER|OVER|PARSE|PARTITION|PASSWORD|PATH|POOL|PRECEDING|PREPARE|PRIMARY|PRIVATE|PRIVILEGE|PROBE|PROCEDURE|PUBLIC|RANGE|RAW|REALM|REDUCE|RENAME|RESPECT|RETURN|RETURNING|REVOKE|RIGHT|ROLE|ROLLBACK|ROW|ROWS|SATISFIES|SAVEPOINT|SCHEMA|SCOPE|SELECT|SELF|SEMI|SET|SHOW|SOME|START|STATISTICS|STRING|SYSTEM|TIES|TO|TRAN|TRANSACTION|TRIGGER|TRUNCATE|UNBOUNDED|UNDER|UNION|UNIQUE|UNKNOWN|UNNEST|UNSET|UPDATE|UPSERT|USE|USER|USING|VALIDATE|VALUE|VALUES|VIA|VIEW|WHERE|WHILE|WINDOW|WITH|WORK|XOR)\b/i,function:/\b[a-z_]\w*(?=\s*\()/i,boolean:/\b(?:FALSE|TRUE)\b/i,number:/(?:\b\d+\.|\B\.)\d+e[+\-]?\d+\b|\b\d+(?:\.\d*)?|\B\.\d+\b/i,operator:/[-+*\/%]|!=|==?|\|\||<[>=]?|>=?|\b(?:AND|ANY|ARRAY|BETWEEN|CASE|ELSE|END|EVERY|EXISTS|FIRST|IN|LIKE|NOT|OR|THEN|VALUED|WHEN|WITHIN)\b/i,punctuation:/[;[\](),.{}:]/}}return S}var e=t();const C=L(e),U=r({__proto__:null,default:C},[e]);export{U as n};
@@ -1 +0,0 @@
1
- import{au as u}from"./index-Brc7moWM.js";function c(t,e){for(var a=0;a<e.length;a++){const n=e[a];if(typeof n!="string"&&!Array.isArray(n)){for(const r in n)if(r!=="default"&&!(r in t)){const s=Object.getOwnPropertyDescriptor(n,r);s&&Object.defineProperty(t,r,s.get?s:{enumerable:!0,get:()=>n[r]})}}}return Object.freeze(Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}))}var o,i;function f(){if(i)return o;i=1,o=t,t.displayName="n4js",t.aliases=["n4jsd"];function t(e){e.languages.n4js=e.languages.extend("javascript",{keyword:/\b(?:Array|any|boolean|break|case|catch|class|const|constructor|continue|debugger|declare|default|delete|do|else|enum|export|extends|false|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|module|new|null|number|package|private|protected|public|return|set|static|string|super|switch|this|throw|true|try|typeof|var|void|while|with|yield)\b/}),e.languages.insertBefore("n4js","constant",{annotation:{pattern:/@+\w+/,alias:"operator"}}),e.languages.n4jsd=e.languages.n4js}return o}var l=f();const g=u(l),d=c({__proto__:null,default:g},[l]);export{d as n};
@@ -1 +0,0 @@
1
- import{au as l}from"./index-Brc7moWM.js";function u(e,n){for(var a=0;a<n.length;a++){const t=n[a];if(typeof t!="string"&&!Array.isArray(t)){for(const r in t)if(r!=="default"&&!(r in e)){const o=Object.getOwnPropertyDescriptor(t,r);o&&Object.defineProperty(e,r,o.get?o:{enumerable:!0,get:()=>t[r]})}}}return Object.freeze(Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}))}var s,i;function f(){if(i)return s;i=1,s=e,e.displayName="nand2tetrisHdl",e.aliases=[];function e(n){n.languages["nand2tetris-hdl"]={comment:/\/\/.*|\/\*[\s\S]*?(?:\*\/|$)/,keyword:/\b(?:BUILTIN|CHIP|CLOCKED|IN|OUT|PARTS)\b/,boolean:/\b(?:false|true)\b/,function:/\b[A-Za-z][A-Za-z0-9]*(?=\()/,number:/\b\d+\b/,operator:/=|\.\./,punctuation:/[{}[\];(),:]/}}return s}var d=f();const c=l(d),p=u({__proto__:null,default:c},[d]);export{p as n};
@@ -1 +0,0 @@
1
- import{au as y}from"./index-Brc7moWM.js";function h(i,p){for(var a=0;a<p.length;a++){const t=p[a];if(typeof t!="string"&&!Array.isArray(t)){for(const n in t)if(n!=="default"&&!(n in i)){const s=Object.getOwnPropertyDescriptor(t,n);s&&Object.defineProperty(i,n,s.get?s:{enumerable:!0,get:()=>t[n]})}}}return Object.freeze(Object.defineProperty(i,Symbol.toStringTag,{value:"Module"}))}var d,f;function b(){if(f)return d;f=1,d=i,i.displayName="naniscript",i.aliases=[];function i(p){(function(a){var t=/\{[^\r\n\[\]{}]*\}/,n={"quoted-string":{pattern:/"(?:[^"\\]|\\.)*"/,alias:"operator"},"command-param-id":{pattern:/(\s)\w+:/,lookbehind:!0,alias:"property"},"command-param-value":[{pattern:t,alias:"selector"},{pattern:/([\t ])\S+/,lookbehind:!0,greedy:!0,alias:"operator"},{pattern:/\S(?:.*\S)?/,alias:"operator"}]};a.languages.naniscript={comment:{pattern:/^([\t ]*);.*/m,lookbehind:!0},define:{pattern:/^>.+/m,alias:"tag",inside:{value:{pattern:/(^>\w+[\t ]+)(?!\s)[^{}\r\n]+/,lookbehind:!0,alias:"operator"},key:{pattern:/(^>)\w+/,lookbehind:!0}}},label:{pattern:/^([\t ]*)#[\t ]*\w+[\t ]*$/m,lookbehind:!0,alias:"regex"},command:{pattern:/^([\t ]*)@\w+(?=[\t ]|$).*/m,lookbehind:!0,alias:"function",inside:{"command-name":/^@\w+/,expression:{pattern:t,greedy:!0,alias:"selector"},"command-params":{pattern:/\s*\S[\s\S]*/,inside:n}}},"generic-text":{pattern:/(^[ \t]*)[^#@>;\s].*/m,lookbehind:!0,alias:"punctuation",inside:{"escaped-char":/\\[{}\[\]"]/,expression:{pattern:t,greedy:!0,alias:"selector"},"inline-command":{pattern:/\[[\t ]*\w[^\r\n\[\]]*\]/,greedy:!0,alias:"function",inside:{"command-params":{pattern:/(^\[[\t ]*\w+\b)[\s\S]+(?=\]$)/,lookbehind:!0,inside:n},"command-param-name":{pattern:/^(\[[\t ]*)\w+/,lookbehind:!0,alias:"name"},"start-stop-char":/[\[\]]/}}}}},a.languages.nani=a.languages.naniscript,a.hooks.add("after-tokenize",function(e){var u=e.tokens;u.forEach(function(r){if(typeof r!="string"&&r.type==="generic-text"){var o=c(r);s(o)||(r.type="bad-line",r.content=o)}})});function s(e){for(var u="[]{}",r=[],o=0;o<e.length;o++){var g=e[o],l=u.indexOf(g);if(l!==-1){if(l%2===0)r.push(l+1);else if(r.pop()!==l)return!1}}return r.length===0}function c(e){return typeof e=="string"?e:Array.isArray(e)?e.map(c).join(""):c(e.content)}})(p)}return d}var m=b();const v=y(m),k=h({__proto__:null,default:v},[m]);export{k as n};
@@ -1 +0,0 @@
1
- import{au as m}from"./index-Brc7moWM.js";function f(e,a){for(var n=0;n<a.length;n++){const r=a[n];if(typeof r!="string"&&!Array.isArray(r)){for(const t in r)if(t!=="default"&&!(t in e)){const s=Object.getOwnPropertyDescriptor(r,t);s&&Object.defineProperty(e,t,s.get?s:{enumerable:!0,get:()=>r[t]})}}}return Object.freeze(Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}))}var o,d;function l(){if(d)return o;d=1,o=e,e.displayName="nasm",e.aliases=[];function e(a){a.languages.nasm={comment:/;.*$/m,string:/(["'`])(?:\\.|(?!\1)[^\\\r\n])*\1/,label:{pattern:/(^\s*)[A-Za-z._?$][\w.?$@~#]*:/m,lookbehind:!0,alias:"function"},keyword:[/\[?BITS (?:16|32|64)\]?/,{pattern:/(^\s*)section\s*[a-z.]+:?/im,lookbehind:!0},/(?:extern|global)[^;\r\n]*/i,/(?:CPU|DEFAULT|FLOAT).*$/m],register:{pattern:/\b(?:st\d|[xyz]mm\d\d?|[cdt]r\d|r\d\d?[bwd]?|[er]?[abcd]x|[abcd][hl]|[er]?(?:bp|di|si|sp)|[cdefgs]s)\b/i,alias:"variable"},number:/(?:\b|(?=\$))(?:0[hx](?:\.[\da-f]+|[\da-f]+(?:\.[\da-f]+)?)(?:p[+-]?\d+)?|\d[\da-f]+[hx]|\$\d[\da-f]*|0[oq][0-7]+|[0-7]+[oq]|0[by][01]+|[01]+[by]|0[dt]\d+|(?:\d+(?:\.\d+)?|\.\d+)(?:\.?e[+-]?\d+)?[dt]?)\b/i,operator:/[\[\]*+\-\/%<>=&|$!]/}}return o}var i=l();const b=m(i),c=f({__proto__:null,default:b},[i]);export{c as n};
@@ -1 +0,0 @@
1
- import{au as u}from"./index-Brc7moWM.js";function l(e,n){for(var o=0;o<n.length;o++){const t=n[o];if(typeof t!="string"&&!Array.isArray(t)){for(const r in t)if(r!=="default"&&!(r in e)){const a=Object.getOwnPropertyDescriptor(t,r);a&&Object.defineProperty(e,r,a.get?a:{enumerable:!0,get:()=>t[r]})}}}return Object.freeze(Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}))}var s,d;function p(){if(d)return s;d=1,s=e,e.displayName="neon",e.aliases=[];function e(n){n.languages.neon={comment:{pattern:/#.*/,greedy:!0},datetime:{pattern:/(^|[[{(=:,\s])\d\d\d\d-\d\d?-\d\d?(?:(?:[Tt]| +)\d\d?:\d\d:\d\d(?:\.\d*)? *(?:Z|[-+]\d\d?(?::?\d\d)?)?)?(?=$|[\]}),\s])/,lookbehind:!0,alias:"number"},key:{pattern:/(^|[[{(,\s])[^,:=[\]{}()'"\s]+(?=\s*:(?:$|[\]}),\s])|\s*=)/,lookbehind:!0,alias:"atrule"},number:{pattern:/(^|[[{(=:,\s])[+-]?(?:0x[\da-fA-F]+|0o[0-7]+|0b[01]+|(?:\d+(?:\.\d*)?|\.?\d+)(?:[eE][+-]?\d+)?)(?=$|[\]}),:=\s])/,lookbehind:!0},boolean:{pattern:/(^|[[{(=:,\s])(?:false|no|true|yes)(?=$|[\]}),:=\s])/i,lookbehind:!0},null:{pattern:/(^|[[{(=:,\s])(?:null)(?=$|[\]}),:=\s])/i,lookbehind:!0,alias:"keyword"},string:{pattern:/(^|[[{(=:,\s])(?:('''|""")\r?\n(?:(?:[^\r\n]|\r?\n(?![\t ]*\2))*\r?\n)?[\t ]*\2|'[^'\r\n]*'|"(?:\\.|[^\\"\r\n])*")/,lookbehind:!0,greedy:!0},literal:{pattern:/(^|[[{(=:,\s])(?:[^#"',:=[\]{}()\s`-]|[:-][^"',=[\]{}()\s])(?:[^,:=\]})(\s]|:(?![\s,\]})]|$)|[ \t]+[^#,:=\]})(\s])*/,lookbehind:!0,alias:"string"},punctuation:/[,:=[\]{}()-]/}}return s}var i=p();const f=u(i),c=l({__proto__:null,default:f},[i]);export{c as n};
@@ -1 +0,0 @@
1
- import{au as l}from"./index-Brc7moWM.js";function d(a,n){for(var r=0;r<n.length;r++){const e=n[r];if(typeof e!="string"&&!Array.isArray(e)){for(const t in e)if(t!=="default"&&!(t in a)){const s=Object.getOwnPropertyDescriptor(e,t);s&&Object.defineProperty(a,t,s.get?s:{enumerable:!0,get:()=>e[t]})}}}return Object.freeze(Object.defineProperty(a,Symbol.toStringTag,{value:"Module"}))}var i,o;function u(){if(o)return i;o=1,i=a,a.displayName="nevod",a.aliases=[];function a(n){n.languages.nevod={comment:/\/\/.*|(?:\/\*[\s\S]*?(?:\*\/|$))/,string:{pattern:/(?:"(?:""|[^"])*"(?!")|'(?:''|[^'])*'(?!'))!?\*?/,greedy:!0,inside:{"string-attrs":/!$|!\*$|\*$/}},namespace:{pattern:/(@namespace\s+)[a-zA-Z0-9\-.]+(?=\s*\{)/,lookbehind:!0},pattern:{pattern:/(@pattern\s+)?#?[a-zA-Z0-9\-.]+(?:\s*\(\s*(?:~\s*)?[a-zA-Z0-9\-.]+\s*(?:,\s*(?:~\s*)?[a-zA-Z0-9\-.]*)*\))?(?=\s*=)/,lookbehind:!0,inside:{"pattern-name":{pattern:/^#?[a-zA-Z0-9\-.]+/,alias:"class-name"},fields:{pattern:/\(.*\)/,inside:{"field-name":{pattern:/[a-zA-Z0-9\-.]+/,alias:"variable"},punctuation:/[,()]/,operator:{pattern:/~/,alias:"field-hidden-mark"}}}}},search:{pattern:/(@search\s+|#)[a-zA-Z0-9\-.]+(?:\.\*)?(?=\s*;)/,alias:"function",lookbehind:!0},keyword:/@(?:having|inside|namespace|outside|pattern|require|search|where)\b/,"standard-pattern":{pattern:/\b(?:Alpha|AlphaNum|Any|Blank|End|LineBreak|Num|NumAlpha|Punct|Space|Start|Symbol|Word|WordBreak)\b(?:\([a-zA-Z0-9\-.,\s+]*\))?/,inside:{"standard-pattern-name":{pattern:/^[a-zA-Z0-9\-.]+/,alias:"builtin"},quantifier:{pattern:/\b\d+(?:\s*\+|\s*-\s*\d+)?(?!\w)/,alias:"number"},"standard-pattern-attr":{pattern:/[a-zA-Z0-9\-.]+/,alias:"builtin"},punctuation:/[,()]/}},quantifier:{pattern:/\b\d+(?:\s*\+|\s*-\s*\d+)?(?!\w)/,alias:"number"},operator:[{pattern:/=/,alias:"pattern-def"},{pattern:/&/,alias:"conjunction"},{pattern:/~/,alias:"exception"},{pattern:/\?/,alias:"optionality"},{pattern:/[[\]]/,alias:"repetition"},{pattern:/[{}]/,alias:"variation"},{pattern:/[+_]/,alias:"sequence"},{pattern:/\.{2,3}/,alias:"span"}],"field-capture":[{pattern:/([a-zA-Z0-9\-.]+\s*\()\s*[a-zA-Z0-9\-.]+\s*:\s*[a-zA-Z0-9\-.]+(?:\s*,\s*[a-zA-Z0-9\-.]+\s*:\s*[a-zA-Z0-9\-.]+)*(?=\s*\))/,lookbehind:!0,inside:{"field-name":{pattern:/[a-zA-Z0-9\-.]+/,alias:"variable"},colon:/:/}},{pattern:/[a-zA-Z0-9\-.]+\s*:/,inside:{"field-name":{pattern:/[a-zA-Z0-9\-.]+/,alias:"variable"},colon:/:/}}],punctuation:/[:;,()]/,name:/[a-zA-Z0-9\-.]+/}}return i}var p=u();const c=l(p),m=d({__proto__:null,default:c},[p]);export{m as n};
@@ -1 +0,0 @@
1
- import{au as g}from"./index-Brc7moWM.js";function d(t,i){for(var r=0;r<i.length;r++){const e=i[r];if(typeof e!="string"&&!Array.isArray(e)){for(const n in e)if(n!=="default"&&!(n in t)){const o=Object.getOwnPropertyDescriptor(e,n);o&&Object.defineProperty(t,n,o.get?o:{enumerable:!0,get:()=>e[n]})}}}return Object.freeze(Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}))}var a,s;function l(){if(s)return a;s=1,a=t,t.displayName="nginx",t.aliases=[];function t(i){(function(r){var e=/\$(?:\w[a-z\d]*(?:_[^\x00-\x1F\s"'\\()$]*)?|\{[^}\s"'\\]+\})/i;r.languages.nginx={comment:{pattern:/(^|[\s{};])#.*/,lookbehind:!0,greedy:!0},directive:{pattern:/(^|\s)\w(?:[^;{}"'\\\s]|\\.|"(?:[^"\\]|\\.)*"|'(?:[^'\\]|\\.)*'|\s+(?:#.*(?!.)|(?![#\s])))*?(?=\s*[;{])/,lookbehind:!0,greedy:!0,inside:{string:{pattern:/((?:^|[^\\])(?:\\\\)*)(?:"(?:[^"\\]|\\.)*"|'(?:[^'\\]|\\.)*')/,lookbehind:!0,greedy:!0,inside:{escape:{pattern:/\\["'\\nrt]/,alias:"entity"},variable:e}},comment:{pattern:/(\s)#.*/,lookbehind:!0,greedy:!0},keyword:{pattern:/^\S+/,greedy:!0},boolean:{pattern:/(\s)(?:off|on)(?!\S)/,lookbehind:!0},number:{pattern:/(\s)\d+[a-z]*(?!\S)/i,lookbehind:!0},variable:e}},punctuation:/[{};]/}})(i)}return a}var u=l();const p=g(u),f=d({__proto__:null,default:p},[u]);export{f as n};
@@ -1 +0,0 @@
1
- import{au as u}from"./index-Brc7moWM.js";function c(e,n){for(var i=0;i<n.length;i++){const t=n[i];if(typeof t!="string"&&!Array.isArray(t)){for(const r in t)if(r!=="default"&&!(r in e)){const o=Object.getOwnPropertyDescriptor(t,r);o&&Object.defineProperty(e,r,o.get?o:{enumerable:!0,get:()=>t[r]})}}}return Object.freeze(Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}))}var a,d;function f(){if(d)return a;d=1,a=e,e.displayName="nim",e.aliases=[];function e(n){n.languages.nim={comment:{pattern:/#.*/,greedy:!0},string:{pattern:/(?:\b(?!\d)(?:\w|\\x[89a-fA-F][0-9a-fA-F])+)?(?:"""[\s\S]*?"""(?!")|"(?:\\[\s\S]|""|[^"\\])*")/,greedy:!0},char:{pattern:/'(?:\\(?:\d+|x[\da-fA-F]{0,2}|.)|[^'])'/,greedy:!0},function:{pattern:/(?:(?!\d)(?:\w|\\x[89a-fA-F][0-9a-fA-F])+|`[^`\r\n]+`)\*?(?:\[[^\]]+\])?(?=\s*\()/,greedy:!0,inside:{operator:/\*$/}},identifier:{pattern:/`[^`\r\n]+`/,greedy:!0,inside:{punctuation:/`/}},number:/\b(?:0[xXoObB][\da-fA-F_]+|\d[\d_]*(?:(?!\.\.)\.[\d_]*)?(?:[eE][+-]?\d[\d_]*)?)(?:'?[iuf]\d*)?/,keyword:/\b(?:addr|as|asm|atomic|bind|block|break|case|cast|concept|const|continue|converter|defer|discard|distinct|do|elif|else|end|enum|except|export|finally|for|from|func|generic|if|import|include|interface|iterator|let|macro|method|mixin|nil|object|out|proc|ptr|raise|ref|return|static|template|try|tuple|type|using|var|when|while|with|without|yield)\b/,operator:{pattern:/(^|[({\[](?=\.\.)|(?![({\[]\.).)(?:(?:[=+\-*\/<>@$~&%|!?^:\\]|\.\.|\.(?![)}\]]))+|\b(?:and|div|in|is|isnot|mod|not|notin|of|or|shl|shr|xor)\b)/m,lookbehind:!0},punctuation:/[({\[]\.|\.[)}\]]|[`(){}\[\],:]/}}return a}var s=f();const p=u(s),l=c({__proto__:null,default:p},[s]);export{l as n};
@@ -1 +0,0 @@
1
- import{au as u}from"./index-Brc7moWM.js";function g(t,e){for(var i=0;i<e.length;i++){const r=e[i];if(typeof r!="string"&&!Array.isArray(r)){for(const n in r)if(n!=="default"&&!(n in t)){const a=Object.getOwnPropertyDescriptor(r,n);a&&Object.defineProperty(t,n,a.get?a:{enumerable:!0,get:()=>r[n]})}}}return Object.freeze(Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}))}var s,o;function p(){if(o)return s;o=1,s=t,t.displayName="nix",t.aliases=[];function t(e){e.languages.nix={comment:{pattern:/\/\*[\s\S]*?\*\/|#.*/,greedy:!0},string:{pattern:/"(?:[^"\\]|\\[\s\S])*"|''(?:(?!'')[\s\S]|''(?:'|\\|\$\{))*''/,greedy:!0,inside:{interpolation:{pattern:/(^|(?:^|(?!'').)[^\\])\$\{(?:[^{}]|\{[^}]*\})*\}/,lookbehind:!0,inside:null}}},url:[/\b(?:[a-z]{3,7}:\/\/)[\w\-+%~\/.:#=?&]+/,{pattern:/([^\/])(?:[\w\-+%~.:#=?&]*(?!\/\/)[\w\-+%~\/.:#=?&])?(?!\/\/)\/[\w\-+%~\/.:#=?&]*/,lookbehind:!0}],antiquotation:{pattern:/\$(?=\{)/,alias:"important"},number:/\b\d+\b/,keyword:/\b(?:assert|builtins|else|if|in|inherit|let|null|or|then|with)\b/,function:/\b(?:abort|add|all|any|attrNames|attrValues|baseNameOf|compareVersions|concatLists|currentSystem|deepSeq|derivation|dirOf|div|elem(?:At)?|fetch(?:Tarball|url)|filter(?:Source)?|fromJSON|genList|getAttr|getEnv|hasAttr|hashString|head|import|intersectAttrs|is(?:Attrs|Bool|Function|Int|List|Null|String)|length|lessThan|listToAttrs|map|mul|parseDrvName|pathExists|read(?:Dir|File)|removeAttrs|replaceStrings|seq|sort|stringLength|sub(?:string)?|tail|throw|to(?:File|JSON|Path|String|XML)|trace|typeOf)\b|\bfoldl'\B/,boolean:/\b(?:false|true)\b/,operator:/[=!<>]=?|\+\+?|\|\||&&|\/\/|->?|[?@]/,punctuation:/[{}()[\].,:;]/},e.languages.nix.string.inside.interpolation.inside=e.languages.nix}return s}var l=p();const c=u(l),f=g({__proto__:null,default:c},[l]);export{f as n};
@@ -1 +0,0 @@
1
- import{au as d}from"./index-Brc7moWM.js";function T(e,n){for(var i=0;i<n.length;i++){const t=n[i];if(typeof t!="string"&&!Array.isArray(t)){for(const r in t)if(r!=="default"&&!(r in e)){const o=Object.getOwnPropertyDescriptor(t,r);o&&Object.defineProperty(e,r,o.get?o:{enumerable:!0,get:()=>t[r]})}}}return Object.freeze(Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}))}var a,s;function S(){if(s)return a;s=1,a=e,e.displayName="nsis",e.aliases=[];function e(n){n.languages.nsis={comment:{pattern:/(^|[^\\])(?:\/\*[\s\S]*?\*\/|[#;].*)/,lookbehind:!0,greedy:!0},string:{pattern:/("|')(?:\\.|(?!\1)[^\\\r\n])*\1/,greedy:!0},keyword:{pattern:/(^[\t ]*)(?:Abort|Add(?:BrandingImage|Size)|AdvSplash|Allow(?:RootDirInstall|SkipFiles)|AutoCloseWindow|BG(?:Font|Gradient|Image)|Banner|BrandingText|BringToFront|CRCCheck|Call(?:InstDLL)?|Caption|ChangeUI|CheckBitmap|ClearErrors|CompletedText|ComponentText|CopyFiles|Create(?:Directory|Font|ShortCut)|Delete(?:INISec|INIStr|RegKey|RegValue)?|Detail(?:Print|sButtonText)|Dialer|Dir(?:Text|Var|Verify)|EnableWindow|Enum(?:RegKey|RegValue)|Exch|Exec(?:Shell(?:Wait)?|Wait)?|ExpandEnvStrings|File(?:BufSize|Close|ErrorText|Open|Read|ReadByte|ReadUTF16LE|ReadWord|Seek|Write|WriteByte|WriteUTF16LE|WriteWord)?|Find(?:Close|First|Next|Window)|FlushINI|Get(?:CurInstType|CurrentAddress|DLLVersion(?:Local)?|DlgItem|ErrorLevel|FileTime(?:Local)?|FullPathName|Function(?:Address|End)?|InstDirError|LabelAddress|TempFileName)|Goto|HideWindow|Icon|If(?:Abort|Errors|FileExists|RebootFlag|Silent)|InitPluginsDir|InstProgressFlags|Inst(?:Type(?:GetText|SetText)?)|Install(?:ButtonText|Colors|Dir(?:RegKey)?)|Int(?:64|Ptr)?CmpU?|Int(?:64)?Fmt|Int(?:Ptr)?Op|IsWindow|Lang(?:DLL|String)|License(?:BkColor|Data|ForceSelection|LangString|Text)|LoadLanguageFile|LockWindow|Log(?:Set|Text)|Manifest(?:DPIAware|SupportedOS)|Math|MessageBox|MiscButtonText|NSISdl|Name|Nop|OutFile|PE(?:DllCharacteristics|SubsysVer)|Page(?:Callbacks)?|Pop|Push|Quit|RMDir|Read(?:EnvStr|INIStr|RegDWORD|RegStr)|Reboot|RegDLL|Rename|RequestExecutionLevel|ReserveFile|Return|SearchPath|Section(?:End|GetFlags|GetInstTypes|GetSize|GetText|Group|In|SetFlags|SetInstTypes|SetSize|SetText)?|SendMessage|Set(?:AutoClose|BrandingImage|Compress|Compressor(?:DictSize)?|CtlColors|CurInstType|DatablockOptimize|DateSave|Details(?:Print|View)|ErrorLevel|Errors|FileAttributes|Font|OutPath|Overwrite|PluginUnload|RebootFlag|RegView|ShellVarContext|Silent)|Show(?:InstDetails|UninstDetails|Window)|Silent(?:Install|UnInstall)|Sleep|SpaceTexts|Splash|StartMenu|Str(?:CmpS?|Cpy|Len)|SubCaption|System|UnRegDLL|Unicode|UninstPage|Uninstall(?:ButtonText|Caption|Icon|SubCaption|Text)|UserInfo|VI(?:AddVersionKey|FileVersion|ProductVersion)|VPatch|Var|WindowIcon|Write(?:INIStr|Reg(?:Bin|DWORD|ExpandStr|MultiStr|None|Str)|Uninstaller)|XPStyle|ns(?:Dialogs|Exec))\b/m,lookbehind:!0},property:/\b(?:ARCHIVE|FILE_(?:ATTRIBUTE_ARCHIVE|ATTRIBUTE_NORMAL|ATTRIBUTE_OFFLINE|ATTRIBUTE_READONLY|ATTRIBUTE_SYSTEM|ATTRIBUTE_TEMPORARY)|HK(?:(?:CR|CU|LM)(?:32|64)?|DD|PD|U)|HKEY_(?:CLASSES_ROOT|CURRENT_CONFIG|CURRENT_USER|DYN_DATA|LOCAL_MACHINE|PERFORMANCE_DATA|USERS)|ID(?:ABORT|CANCEL|IGNORE|NO|OK|RETRY|YES)|MB_(?:ABORTRETRYIGNORE|DEFBUTTON1|DEFBUTTON2|DEFBUTTON3|DEFBUTTON4|ICONEXCLAMATION|ICONINFORMATION|ICONQUESTION|ICONSTOP|OK|OKCANCEL|RETRYCANCEL|RIGHT|RTLREADING|SETFOREGROUND|TOPMOST|USERICON|YESNO)|NORMAL|OFFLINE|READONLY|SHCTX|SHELL_CONTEXT|SYSTEM|TEMPORARY|admin|all|auto|both|colored|false|force|hide|highest|lastused|leave|listonly|none|normal|notset|off|on|open|print|show|silent|silentlog|smooth|textonly|true|user)\b/,constant:/\$\{[!\w\.:\^-]+\}|\$\([!\w\.:\^-]+\)/,variable:/\$\w[\w\.]*/,number:/\b0x[\dA-Fa-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:[Ee]-?\d+)?/,operator:/--?|\+\+?|<=?|>=?|==?=?|&&?|\|\|?|[?*\/~^%]/,punctuation:/[{}[\];(),.:]/,important:{pattern:/(^[\t ]*)!(?:addincludedir|addplugindir|appendfile|cd|define|delfile|echo|else|endif|error|execute|finalize|getdllversion|gettlbversion|if|ifdef|ifmacrodef|ifmacrondef|ifndef|include|insertmacro|macro|macroend|makensis|packhdr|pragma|searchparse|searchreplace|system|tempfile|undef|verbose|warning)\b/im,lookbehind:!0}}}return a}var l=S();const E=d(l),u=T({__proto__:null,default:E},[l]);export{u as n};
@@ -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:'"'},{open:"'",close:"'"}],surroundingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"'},{open:"'",close:"'"}]},n={defaultToken:"",tokenPostfix:".objective-c",keywords:["#import","#include","#define","#else","#endif","#if","#ifdef","#ifndef","#ident","#undef","@class","@defs","@dynamic","@encode","@end","@implementation","@interface","@package","@private","@protected","@property","@protocol","@public","@selector","@synthesize","__declspec","assign","auto","BOOL","break","bycopy","byref","case","char","Class","const","copy","continue","default","do","double","else","enum","extern","FALSE","false","float","for","goto","if","in","int","id","inout","IMP","long","nil","nonatomic","NULL","oneway","out","private","public","protected","readwrite","readonly","register","return","SEL","self","short","signed","sizeof","static","struct","super","switch","typedef","TRUE","true","union","unsigned","volatile","void","while"],decpart:/\d(_?\d)*/,decimal:/0|@decpart/,tokenizer:{root:[{include:"@comments"},{include:"@whitespace"},{include:"@numbers"},{include:"@strings"},[/[,:;]/,"delimiter"],[/[{}\[\]()<>]/,"@brackets"],[/[a-zA-Z@#]\w*/,{cases:{"@keywords":"keyword","@default":"identifier"}}],[/[<>=\\+\\-\\*\\/\\^\\|\\~,]|and\\b|or\\b|not\\b]/,"operator"]],whitespace:[[/\s+/,"white"]],comments:[["\\/\\*","comment","@comment"],["\\/\\/+.*","comment"]],comment:[["\\*\\/","comment","@pop"],[".","comment"]],numbers:[[/0[xX][0-9a-fA-F]*(_?[0-9a-fA-F])*/,"number.hex"],[/@decimal((\.@decpart)?([eE][\-+]?@decpart)?)[fF]*/,{cases:{"(\\d)*":"number",$0:"number.float"}}]],strings:[[/'$/,"string.escape","@popall"],[/'/,"string.escape","@stringBody"],[/"$/,"string.escape","@popall"],[/"/,"string.escape","@dblStringBody"]],stringBody:[[/[^\\']+$/,"string","@popall"],[/[^\\']+/,"string"],[/\\./,"string"],[/'/,"string.escape","@popall"],[/\\$/,"string"]],dblStringBody:[[/[^\\"]+$/,"string","@popall"],[/[^\\"]+/,"string"],[/\\./,"string"],[/"/,"string.escape","@popall"],[/\\$/,"string"]]}};export{e as conf,n as language};
@@ -1 +0,0 @@
1
- import{au as l}from"./index-Brc7moWM.js";import{r as u}from"./c-kgVuzdLE.js";function f(r,t){for(var e=0;e<t.length;e++){const o=t[e];if(typeof o!="string"&&!Array.isArray(o)){for(const c in o)if(c!=="default"&&!(c in r)){const n=Object.getOwnPropertyDescriptor(o,c);n&&Object.defineProperty(r,c,n.get?n:{enumerable:!0,get:()=>o[c]})}}}return Object.freeze(Object.defineProperty(r,Symbol.toStringTag,{value:"Module"}))}var a,i;function g(){if(i)return a;i=1;var r=u();a=t,t.displayName="objectivec",t.aliases=["objc"];function t(e){e.register(r),e.languages.objectivec=e.languages.extend("c",{string:{pattern:/@?"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"/,greedy:!0},keyword:/\b(?:asm|auto|break|case|char|const|continue|default|do|double|else|enum|extern|float|for|goto|if|in|inline|int|long|register|return|self|short|signed|sizeof|static|struct|super|switch|typedef|typeof|union|unsigned|void|volatile|while)\b|(?:@interface|@end|@implementation|@protocol|@class|@public|@protected|@private|@property|@try|@catch|@finally|@throw|@synthesize|@dynamic|@selector)\b/,operator:/-[->]?|\+\+?|!=?|<<?=?|>>?=?|==?|&&?|\|\|?|[~^%?*\/@]/}),delete e.languages.objectivec["class-name"],e.languages.objc=e.languages.objectivec}return a}var s=g();const b=l(s),v=f({__proto__:null,default:b},[s]);export{v as o};