@polderlabs/bizar 3.23.1 → 4.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (361) hide show
  1. package/README.md +83 -16
  2. package/bizar-dash/.bizar/activity.log +3 -0
  3. package/bizar-dash/.bizar/graph/.graphify_analysis.json +1540 -0
  4. package/bizar-dash/.bizar/graph/.graphify_labels.json +1 -0
  5. package/bizar-dash/.bizar/graph/GRAPH_REPORT.md +404 -0
  6. package/bizar-dash/.bizar/graph/cache/ast/v0.8.46/0661b816358db84dfdb7f10443db8a61152fd20b3fee950caf8fbf32920a1790.json +1 -0
  7. package/bizar-dash/.bizar/graph/cache/ast/v0.8.46/16da06d774142a6e5d74829ad982531286a6193ef798de8f593db029e123ec32.json +1 -0
  8. package/bizar-dash/.bizar/graph/cache/ast/v0.8.46/27e5697c01254c69c64c5a33896669073b40afb5ba88375102ae77fa5404136d.json +1 -0
  9. package/bizar-dash/.bizar/graph/cache/ast/v0.8.46/532997898027254aa4c0932243dc71d2f55888181232b65974961934997dc85b.json +1 -0
  10. package/bizar-dash/.bizar/graph/cache/ast/v0.8.46/84e3451a64c7f99f0cd6a88b0748d7426780486f53ab4935b7476b28c08f8293.json +1 -0
  11. package/bizar-dash/.bizar/graph/cache/ast/v0.8.46/88e5ea5f3e78fa69353fe9e6a8d1a05391d54605e25600cb125531eb5a6432ff.json +1 -0
  12. package/bizar-dash/.bizar/graph/cache/stat-index.json +1 -0
  13. package/bizar-dash/.bizar/graph/graph.html +307 -0
  14. package/bizar-dash/.bizar/graph/graph.json +40267 -0
  15. package/bizar-dash/.bizar/graph/manifest.json +762 -0
  16. package/bizar-dash/.graphifyignore +40 -0
  17. package/bizar-dash/.obsidian/README.md +14 -0
  18. package/bizar-dash/.obsidian/daily/2026-06-25.md +9 -0
  19. package/bizar-dash/.obsidian/vault.json +7 -0
  20. package/bizar-dash/.od-skills/web-prototype-e1429c1737/SKILL.md +103 -0
  21. package/bizar-dash/.od-skills/web-prototype-e1429c1737/assets/template.html +338 -0
  22. package/bizar-dash/.od-skills/web-prototype-e1429c1737/example.html +81 -0
  23. package/bizar-dash/.od-skills/web-prototype-e1429c1737/open-design.json +172 -0
  24. package/bizar-dash/.od-skills/web-prototype-e1429c1737/references/checklist.md +44 -0
  25. package/bizar-dash/.od-skills/web-prototype-e1429c1737/references/layouts.md +247 -0
  26. package/bizar-dash/CHANGELOG.md +474 -0
  27. package/bizar-dash/DESIGN.md +136 -0
  28. package/bizar-dash/dist/assets/main-B3RgW6FS.js +331 -0
  29. package/bizar-dash/dist/assets/main-B3RgW6FS.js.map +1 -0
  30. package/bizar-dash/dist/assets/main-DlJ8wgLR.css +1 -0
  31. package/bizar-dash/dist/assets/mobile-CsZQAswA.css +1 -0
  32. package/bizar-dash/dist/assets/mobile-DbxIw8BG.js +2 -0
  33. package/bizar-dash/dist/assets/mobile-DbxIw8BG.js.map +1 -0
  34. package/bizar-dash/dist/assets/mobile-Dvq2d53Y.js +354 -0
  35. package/bizar-dash/dist/assets/mobile-Dvq2d53Y.js.map +1 -0
  36. package/bizar-dash/dist/index.html +40 -0
  37. package/bizar-dash/dist/mobile.html +22 -0
  38. package/bizar-dash/plans/debug-plan/comments.json +1 -0
  39. package/bizar-dash/plans/debug-plan/meta.json +10 -0
  40. package/bizar-dash/plans/debug-plan/plan.json +174 -0
  41. package/bizar-dash/scripts/smoke-bg-retry.mjs +246 -0
  42. package/bizar-dash/src/cli/dashboard-ports.mjs +488 -0
  43. package/bizar-dash/src/cli.mjs +522 -0
  44. package/bizar-dash/src/server/activity-log.mjs +174 -0
  45. package/bizar-dash/src/server/agents-store.mjs +465 -0
  46. package/bizar-dash/src/server/api.mjs +138 -0
  47. package/bizar-dash/src/server/artifact-template.html +810 -0
  48. package/bizar-dash/src/server/artifacts-store.mjs +733 -0
  49. package/bizar-dash/src/server/auth.mjs +381 -0
  50. package/bizar-dash/src/server/background-store.mjs +447 -0
  51. package/bizar-dash/src/server/bg-poller.mjs +305 -0
  52. package/bizar-dash/src/server/bg-retry.mjs +574 -0
  53. package/bizar-dash/src/server/browser.mjs +40 -0
  54. package/bizar-dash/src/server/diagnostics-store.mjs +148 -0
  55. package/bizar-dash/src/server/dialog-poller.mjs +105 -0
  56. package/bizar-dash/src/server/dialog-store.mjs +177 -0
  57. package/bizar-dash/src/server/glyphs/mdx-compiler.mjs +583 -0
  58. package/bizar-dash/src/server/lib/path-safe.mjs +283 -0
  59. package/bizar-dash/src/server/memory-git.mjs +329 -0
  60. package/bizar-dash/src/server/memory-lightrag.mjs +767 -0
  61. package/bizar-dash/src/server/memory-schema.mjs +145 -0
  62. package/bizar-dash/src/server/memory-secrets.mjs +84 -0
  63. package/bizar-dash/src/server/memory-store.mjs +471 -0
  64. package/bizar-dash/src/server/mod-security.mjs +398 -0
  65. package/bizar-dash/src/server/mods-loader.mjs +1067 -0
  66. package/bizar-dash/src/server/notifications-store.mjs +243 -0
  67. package/bizar-dash/src/server/obsidian-store.mjs +318 -0
  68. package/bizar-dash/src/server/opencode-runner.mjs +279 -0
  69. package/bizar-dash/src/server/pair-store.mjs +138 -0
  70. package/bizar-dash/src/server/projects-store.mjs +364 -0
  71. package/bizar-dash/src/server/providers-store.mjs +789 -0
  72. package/bizar-dash/src/server/routes/_shared.mjs +415 -0
  73. package/bizar-dash/src/server/routes/activity.mjs +110 -0
  74. package/bizar-dash/src/server/routes/agents.mjs +134 -0
  75. package/bizar-dash/src/server/routes/artifacts.mjs +279 -0
  76. package/bizar-dash/src/server/routes/auth.mjs +69 -0
  77. package/bizar-dash/src/server/routes/background.mjs +165 -0
  78. package/bizar-dash/src/server/routes/chat.mjs +485 -0
  79. package/bizar-dash/src/server/routes/config.mjs +129 -0
  80. package/bizar-dash/src/server/routes/diagnostics.mjs +50 -0
  81. package/bizar-dash/src/server/routes/dialogs.mjs +86 -0
  82. package/bizar-dash/src/server/routes/fs.mjs +429 -0
  83. package/bizar-dash/src/server/routes/history.mjs +78 -0
  84. package/bizar-dash/src/server/routes/memory.mjs +658 -0
  85. package/bizar-dash/src/server/routes/misc.mjs +89 -0
  86. package/bizar-dash/src/server/routes/mods.mjs +359 -0
  87. package/bizar-dash/src/server/routes/notifications.mjs +54 -0
  88. package/bizar-dash/src/server/routes/obsidian.mjs +239 -0
  89. package/bizar-dash/src/server/routes/opencode-sessions.mjs +55 -0
  90. package/bizar-dash/src/server/routes/overview.mjs +91 -0
  91. package/bizar-dash/src/server/routes/pair.mjs +67 -0
  92. package/bizar-dash/src/server/routes/projects.mjs +175 -0
  93. package/bizar-dash/src/server/routes/providers.mjs +47 -0
  94. package/bizar-dash/src/server/routes/schedules.mjs +104 -0
  95. package/bizar-dash/src/server/routes/settings.mjs +51 -0
  96. package/bizar-dash/src/server/routes/skills.mjs +76 -0
  97. package/bizar-dash/src/server/routes/tasks.mjs +468 -0
  98. package/bizar-dash/src/server/routes/themes.mjs +51 -0
  99. package/bizar-dash/src/server/routes-v2/auth.mjs +59 -0
  100. package/bizar-dash/src/server/routes-v2/events.mjs +107 -0
  101. package/bizar-dash/src/server/routes-v2/health.mjs +21 -0
  102. package/bizar-dash/src/server/routes-v2/index.mjs +90 -0
  103. package/bizar-dash/src/server/routes-v2/sessions.mjs +111 -0
  104. package/bizar-dash/src/server/schedules-runner.mjs +369 -0
  105. package/bizar-dash/src/server/schedules-store.mjs +268 -0
  106. package/bizar-dash/src/server/search-store.mjs +220 -0
  107. package/bizar-dash/src/server/serve-info.mjs +684 -0
  108. package/bizar-dash/src/server/server.mjs +796 -0
  109. package/bizar-dash/src/server/settings-store.mjs +45 -0
  110. package/bizar-dash/src/server/skills-store.mjs +300 -0
  111. package/bizar-dash/src/server/state.mjs +437 -0
  112. package/bizar-dash/src/server/tailscale-store.mjs +113 -0
  113. package/bizar-dash/src/server/task-delegator.mjs +824 -0
  114. package/bizar-dash/src/server/tasks-store.mjs +508 -0
  115. package/bizar-dash/src/server/tui.mjs +923 -0
  116. package/bizar-dash/src/server/update-store.mjs +168 -0
  117. package/bizar-dash/src/server/v2-auth-file.mjs +99 -0
  118. package/bizar-dash/src/server/v2-event-bus.mjs +128 -0
  119. package/bizar-dash/src/server/watcher.mjs +81 -0
  120. package/bizar-dash/src/server/yaml.mjs +238 -0
  121. package/bizar-dash/src/web/App.tsx +718 -0
  122. package/bizar-dash/src/web/MobileApp.tsx +408 -0
  123. package/bizar-dash/src/web/components/ArtifactCreateDialog.tsx +95 -0
  124. package/bizar-dash/src/web/components/ArtifactListDialog.tsx +55 -0
  125. package/bizar-dash/src/web/components/ArtifactViewer.tsx +143 -0
  126. package/bizar-dash/src/web/components/AuditDialog.tsx +79 -0
  127. package/bizar-dash/src/web/components/BgStatusBadge.tsx +32 -0
  128. package/bizar-dash/src/web/components/Button.tsx +56 -0
  129. package/bizar-dash/src/web/components/CanvasContextMenu.tsx +68 -0
  130. package/bizar-dash/src/web/components/Card.tsx +40 -0
  131. package/bizar-dash/src/web/components/CollapsibleSection.tsx +72 -0
  132. package/bizar-dash/src/web/components/CommandDialog.tsx +66 -0
  133. package/bizar-dash/src/web/components/EmptyState.tsx +30 -0
  134. package/bizar-dash/src/web/components/FileBrowser.tsx +633 -0
  135. package/bizar-dash/src/web/components/HelpDialog.tsx +55 -0
  136. package/bizar-dash/src/web/components/KillConfirmDialog.tsx +88 -0
  137. package/bizar-dash/src/web/components/Modal.tsx +215 -0
  138. package/bizar-dash/src/web/components/Notifications.tsx +241 -0
  139. package/bizar-dash/src/web/components/SearchModal.tsx +224 -0
  140. package/bizar-dash/src/web/components/Sidebar.tsx +66 -0
  141. package/bizar-dash/src/web/components/Spinner.tsx +19 -0
  142. package/bizar-dash/src/web/components/StatusBadge.tsx +25 -0
  143. package/bizar-dash/src/web/components/Tag.tsx +28 -0
  144. package/bizar-dash/src/web/components/Toast.tsx +150 -0
  145. package/bizar-dash/src/web/components/Topbar.tsx +368 -0
  146. package/bizar-dash/src/web/components/VisualPlanDialog.tsx +58 -0
  147. package/bizar-dash/src/web/components/chat/AgentChip.tsx +68 -0
  148. package/bizar-dash/src/web/components/chat/ChatBubble.tsx +60 -0
  149. package/bizar-dash/src/web/components/chat/ChatThread.tsx +88 -0
  150. package/bizar-dash/src/web/components/chat/ChatTopBar.tsx +50 -0
  151. package/bizar-dash/src/web/components/chat/Composer.tsx +164 -0
  152. package/bizar-dash/src/web/components/chat/ConfirmModal.tsx +54 -0
  153. package/bizar-dash/src/web/components/chat/EmptyState.tsx +21 -0
  154. package/bizar-dash/src/web/components/chat/FirstRunGreeting.tsx +18 -0
  155. package/bizar-dash/src/web/components/chat/FloatingComposer.tsx +32 -0
  156. package/bizar-dash/src/web/components/chat/InfoPanel.tsx +119 -0
  157. package/bizar-dash/src/web/components/chat/LoadingSkeleton.tsx +19 -0
  158. package/bizar-dash/src/web/components/chat/MessageBubble.tsx +60 -0
  159. package/bizar-dash/src/web/components/chat/SessionList.tsx +153 -0
  160. package/bizar-dash/src/web/components/chat/StreamingIndicator.tsx +9 -0
  161. package/bizar-dash/src/web/components/chat/SuggestionCards.tsx +55 -0
  162. package/bizar-dash/src/web/components/chat/WelcomeScreen.tsx +36 -0
  163. package/bizar-dash/src/web/components/chat/index.ts +20 -0
  164. package/bizar-dash/src/web/components/chat/useAutoGrowTextarea.ts +18 -0
  165. package/bizar-dash/src/web/components/chat/useChat.ts +219 -0
  166. package/bizar-dash/src/web/components/chat/useSlashCommands.ts +47 -0
  167. package/bizar-dash/src/web/index.html +37 -0
  168. package/bizar-dash/src/web/lib/api.ts +193 -0
  169. package/bizar-dash/src/web/lib/markdown.tsx +59 -0
  170. package/bizar-dash/src/web/lib/types.ts +668 -0
  171. package/bizar-dash/src/web/lib/utils.ts +114 -0
  172. package/bizar-dash/src/web/lib/ws.ts +176 -0
  173. package/bizar-dash/src/web/main.tsx +34 -0
  174. package/bizar-dash/src/web/mobile/MobileApp.tsx +278 -0
  175. package/bizar-dash/src/web/mobile/MobileBottomNav.tsx +38 -0
  176. package/bizar-dash/src/web/mobile/MobileTopbar.tsx +115 -0
  177. package/bizar-dash/src/web/mobile/components/MobileBottomSheet.tsx +182 -0
  178. package/bizar-dash/src/web/mobile/components/MobileListItem.tsx +64 -0
  179. package/bizar-dash/src/web/mobile/components/MobileModal.tsx +123 -0
  180. package/bizar-dash/src/web/mobile/views/MobileActivity.tsx +273 -0
  181. package/bizar-dash/src/web/mobile/views/MobileAgents.tsx +374 -0
  182. package/bizar-dash/src/web/mobile/views/MobileArtifactCanvas.tsx +439 -0
  183. package/bizar-dash/src/web/mobile/views/MobileArtifacts.tsx +143 -0
  184. package/bizar-dash/src/web/mobile/views/MobileChat.tsx +180 -0
  185. package/bizar-dash/src/web/mobile/views/MobileConfig.tsx +175 -0
  186. package/bizar-dash/src/web/mobile/views/MobileHistory.tsx +191 -0
  187. package/bizar-dash/src/web/mobile/views/MobileMods.tsx +149 -0
  188. package/bizar-dash/src/web/mobile/views/MobileMore.tsx +121 -0
  189. package/bizar-dash/src/web/mobile/views/MobileNotifications.tsx +137 -0
  190. package/bizar-dash/src/web/mobile/views/MobilePlans.tsx +26 -0
  191. package/bizar-dash/src/web/mobile/views/MobileSchedules.tsx +685 -0
  192. package/bizar-dash/src/web/mobile/views/MobileSearchModal.tsx +172 -0
  193. package/bizar-dash/src/web/mobile/views/MobileSettings.tsx +388 -0
  194. package/bizar-dash/src/web/mobile/views/MobileSkills.tsx +153 -0
  195. package/bizar-dash/src/web/mobile/views/MobileTasks.tsx +564 -0
  196. package/bizar-dash/src/web/mobile.html +20 -0
  197. package/bizar-dash/src/web/mobile.tsx +13 -0
  198. package/bizar-dash/src/web/styles/chat.css +198 -0
  199. package/bizar-dash/src/web/styles/glyphs.css +960 -0
  200. package/bizar-dash/src/web/styles/main.css +8855 -0
  201. package/bizar-dash/src/web/styles/mobile-chat.css +5 -0
  202. package/bizar-dash/src/web/styles/mobile.css +1960 -0
  203. package/bizar-dash/src/web/views/Activity.tsx +1203 -0
  204. package/bizar-dash/src/web/views/Agents.tsx +701 -0
  205. package/bizar-dash/src/web/views/Artifacts.tsx +1480 -0
  206. package/bizar-dash/src/web/views/BackgroundAgents.tsx +450 -0
  207. package/bizar-dash/src/web/views/Chat.tsx +190 -0
  208. package/bizar-dash/src/web/views/Config.tsx +2063 -0
  209. package/bizar-dash/src/web/views/History.tsx +335 -0
  210. package/bizar-dash/src/web/views/ModView.tsx +207 -0
  211. package/bizar-dash/src/web/views/Mods.tsx +693 -0
  212. package/bizar-dash/src/web/views/Overview.tsx +812 -0
  213. package/bizar-dash/src/web/views/Providers.tsx +302 -0
  214. package/bizar-dash/src/web/views/Schedules.tsx +802 -0
  215. package/bizar-dash/src/web/views/Settings.tsx +1787 -0
  216. package/bizar-dash/src/web/views/Skills.tsx +431 -0
  217. package/bizar-dash/src/web/views/Tasks.tsx +1523 -0
  218. package/bizar-dash/src/web/views/glyphs/GlyphRenderer.tsx +613 -0
  219. package/bizar-dash/src/web/views/glyphs/components.tsx +1098 -0
  220. package/bizar-dash/templates/mod/FORMAT.md +76 -0
  221. package/bizar-dash/templates/mod/hello-mod/README.md +19 -0
  222. package/bizar-dash/templates/mod/hello-mod/agents/greeter.md +8 -0
  223. package/bizar-dash/templates/mod/hello-mod/commands/hello.md +6 -0
  224. package/bizar-dash/templates/mod/hello-mod/mod.json +20 -0
  225. package/bizar-dash/templates/mod/hello-mod/routes/ping.mjs +9 -0
  226. package/bizar-dash/templates/mod/hello-mod/views/HelloView.tsx +10 -0
  227. package/bizar-dash/tests/dashboard-ports.test.mjs +138 -0
  228. package/bizar-dash/tests/graphify-mod-spawn.node.test.mjs +90 -0
  229. package/bizar-dash/tests/memory-cli.test.mjs +542 -0
  230. package/bizar-dash/tests/memory-config.test.mjs +422 -0
  231. package/bizar-dash/tests/memory-git.test.mjs +246 -0
  232. package/bizar-dash/tests/memory-lightrag.test.mjs +153 -0
  233. package/bizar-dash/tests/memory-protocol-drift.test.mjs +45 -0
  234. package/bizar-dash/tests/memory-schema.test.mjs +198 -0
  235. package/bizar-dash/tests/memory-secrets.test.mjs +121 -0
  236. package/bizar-dash/tests/memory-store.test.mjs +390 -0
  237. package/bizar-dash/tests/memory-sync.test.mjs +141 -0
  238. package/bizar-dash/tests/mod-instructions.node.test.mjs +188 -0
  239. package/bizar-dash/tests/mod-security.test.mjs +273 -0
  240. package/bizar-dash/tests/mod-upgrade.node.test.mjs +357 -0
  241. package/bizar-dash/tests/no-agent-browser.node.test.mjs +98 -0
  242. package/bizar-dash/tests/obsidian-back-compat.test.mjs +199 -0
  243. package/bizar-dash/tests/opencode-runner.test.mjs +172 -0
  244. package/bizar-dash/tests/path-safe.test.mjs +108 -0
  245. package/bizar-dash/tests/providers-store-backup-keys.node.test.mjs +333 -0
  246. package/bizar-dash/tests/smoke-v2.mjs +212 -0
  247. package/bizar-dash/tests/strip-thinking.test.mjs +175 -0
  248. package/bizar-dash/tests/submit-feedback.test.mjs +353 -0
  249. package/bizar-dash/tests/tmux-wrap.test.mjs +145 -0
  250. package/bizar-dash/tests/yaml.test.mjs +128 -0
  251. package/bizar-dash/tsconfig.json +23 -0
  252. package/bizar-dash/vite.config.ts +27 -0
  253. package/cli/atomic.mjs +73 -0
  254. package/cli/banner.mjs +1 -1
  255. package/cli/bin.mjs +44 -47
  256. package/cli/bootstrap.mjs +1 -1
  257. package/cli/copy.mjs +25 -16
  258. package/cli/dev-link.mjs +17 -1
  259. package/cli/doctor.mjs +4 -4
  260. package/cli/doctor.test.mjs +2 -2
  261. package/cli/init.mjs +135 -1
  262. package/cli/install.mjs +31 -39
  263. package/cli/memory-constants.mjs +59 -0
  264. package/cli/memory.mjs +1436 -0
  265. package/cli/service.mjs +5 -6
  266. package/cli/utils.mjs +6 -3
  267. package/config/AGENTS.md +7 -7
  268. package/config/agents/_shared/AGENT_BASELINE.md +59 -61
  269. package/config/opencode.json +13 -38
  270. package/config/skills/memory-protocol/SKILL.md +105 -0
  271. package/config/skills/obsidian/SKILL.md +270 -65
  272. package/install.sh +59 -19
  273. package/package.json +49 -14
  274. package/packages/sdk/LICENSE +21 -0
  275. package/packages/sdk/README.md +80 -0
  276. package/packages/sdk/src/client.ts +183 -0
  277. package/packages/sdk/src/errors.ts +120 -0
  278. package/packages/sdk/src/events.ts +153 -0
  279. package/packages/sdk/src/index.ts +63 -0
  280. package/packages/sdk/src/types.ts +176 -0
  281. package/packages/sdk/src/version.ts +4 -0
  282. package/packages/sdk/tests/client.test.ts +217 -0
  283. package/packages/sdk/tests/errors.test.ts +108 -0
  284. package/packages/sdk/tests/events.test.ts +139 -0
  285. package/packages/sdk/tests/fixtures/fetch-mock.ts +152 -0
  286. package/packages/sdk/tests/fixtures/sse-mock.ts +30 -0
  287. package/packages/sdk/tsconfig.json +25 -0
  288. package/packages/sdk/vitest.config.ts +9 -0
  289. package/plugins/bizar/LICENSE +21 -0
  290. package/plugins/bizar/README.md +448 -0
  291. package/plugins/bizar/dist/index.js +29901 -0
  292. package/plugins/bizar/index.ts +1491 -0
  293. package/plugins/bizar/scripts/check-forbidden-imports.sh +33 -0
  294. package/plugins/bizar/src/background-state.ts +551 -0
  295. package/plugins/bizar/src/background.ts +1250 -0
  296. package/plugins/bizar/src/commands-impl.ts +464 -0
  297. package/plugins/bizar/src/commands.ts +1168 -0
  298. package/plugins/bizar/src/dashboard-client.ts +233 -0
  299. package/plugins/bizar/src/event-stream.ts +606 -0
  300. package/plugins/bizar/src/fingerprint.ts +120 -0
  301. package/plugins/bizar/src/handoff.ts +79 -0
  302. package/plugins/bizar/src/http-client.ts +467 -0
  303. package/plugins/bizar/src/key-rotation.ts +218 -0
  304. package/plugins/bizar/src/logger.ts +144 -0
  305. package/plugins/bizar/src/loop.ts +176 -0
  306. package/plugins/bizar/src/opencode-runner.ts +390 -0
  307. package/plugins/bizar/src/options.ts +421 -0
  308. package/plugins/bizar/src/plan-fs.ts +323 -0
  309. package/plugins/bizar/src/reasoning-clean.ts +454 -0
  310. package/plugins/bizar/src/report.ts +178 -0
  311. package/plugins/bizar/src/research-prompt.ts +35 -0
  312. package/plugins/bizar/src/serve-info.ts +228 -0
  313. package/plugins/bizar/src/serve.ts +496 -0
  314. package/plugins/bizar/src/settings.ts +349 -0
  315. package/plugins/bizar/src/state.ts +298 -0
  316. package/plugins/bizar/src/tools/bg-collect.ts +104 -0
  317. package/plugins/bizar/src/tools/bg-get-comments.ts +239 -0
  318. package/plugins/bizar/src/tools/bg-kill.ts +87 -0
  319. package/plugins/bizar/src/tools/bg-spawn.ts +401 -0
  320. package/plugins/bizar/src/tools/bg-status.ts +99 -0
  321. package/plugins/bizar/src/tools/open-kb.ts +191 -0
  322. package/plugins/bizar/src/tools/plan-action.ts +767 -0
  323. package/plugins/bizar/src/tools/read-glyph-feedback.ts +170 -0
  324. package/plugins/bizar/src/tools/wait-for-feedback.ts +402 -0
  325. package/plugins/bizar/tests/attach-handler-bug.test.ts +169 -0
  326. package/plugins/bizar/tests/background-state.test.ts +277 -0
  327. package/plugins/bizar/tests/background.test.ts +402 -0
  328. package/plugins/bizar/tests/block.test.ts +195 -0
  329. package/plugins/bizar/tests/canonical-key-order.test.ts +75 -0
  330. package/plugins/bizar/tests/commands-impl.test.ts +442 -0
  331. package/plugins/bizar/tests/commands.test.ts +584 -0
  332. package/plugins/bizar/tests/config.test.ts +122 -0
  333. package/plugins/bizar/tests/dashboard-client.test.ts +159 -0
  334. package/plugins/bizar/tests/dispose.test.ts +336 -0
  335. package/plugins/bizar/tests/event-stream.test.ts +409 -0
  336. package/plugins/bizar/tests/event.test.ts +262 -0
  337. package/plugins/bizar/tests/fingerprint.test.ts +162 -0
  338. package/plugins/bizar/tests/http-client.test.ts +404 -0
  339. package/plugins/bizar/tests/init-helpers.test.ts +203 -0
  340. package/plugins/bizar/tests/integration/slash-command.test.ts +348 -0
  341. package/plugins/bizar/tests/integration/tool-routing.test.ts +314 -0
  342. package/plugins/bizar/tests/key-rotation.test.ts +396 -0
  343. package/plugins/bizar/tests/loop.test.ts +397 -0
  344. package/plugins/bizar/tests/options.test.ts +276 -0
  345. package/plugins/bizar/tests/reasoning-clean.test.ts +422 -0
  346. package/plugins/bizar/tests/serve.test.ts +339 -0
  347. package/plugins/bizar/tests/settings.test.ts +351 -0
  348. package/plugins/bizar/tests/stall-think.test.ts +750 -0
  349. package/plugins/bizar/tests/state.test.ts +276 -0
  350. package/plugins/bizar/tests/tools/bg-collect.test.ts +337 -0
  351. package/plugins/bizar/tests/tools/bg-get-comments.test.ts +485 -0
  352. package/plugins/bizar/tests/tools/bg-kill.test.ts +235 -0
  353. package/plugins/bizar/tests/tools/bg-spawn-delegation.test.ts +147 -0
  354. package/plugins/bizar/tests/tools/bg-spawn.test.ts +311 -0
  355. package/plugins/bizar/tests/tools/bg-status.test.ts +217 -0
  356. package/plugins/bizar/tests/tools/opencode-runner.test.ts +115 -0
  357. package/plugins/bizar/tests/tools/plan-action.test.ts +599 -0
  358. package/plugins/bizar/tests/tools/read-glyph-feedback.test.ts +253 -0
  359. package/plugins/bizar/tests/tools/wait-for-feedback.test.ts +390 -0
  360. package/plugins/bizar/tests/update-deadlock.test.ts +145 -0
  361. package/plugins/bizar/tsconfig.json +29 -0
@@ -0,0 +1,307 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>graphify - /home/drb0rk/Projects/BizarHarness/bizar-dash/.bizar/graph/graph.html</title>
6
+ <script src="https://unpkg.com/vis-network@9.1.6/standalone/umd/vis-network.min.js"
7
+ integrity="sha384-Ux6phic9PEHJ38YtrijhkzyJ8yQlH8i/+buBR8s3mAZOJrP1gwyvAcIYl3GWtpX1"
8
+ crossorigin="anonymous"></script>
9
+ <style>
10
+ * { box-sizing: border-box; margin: 0; padding: 0; }
11
+ body { background: #0f0f1a; color: #e0e0e0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; display: flex; height: 100vh; overflow: hidden; }
12
+ #graph { flex: 1; }
13
+ #sidebar { width: 280px; background: #1a1a2e; border-left: 1px solid #2a2a4e; display: flex; flex-direction: column; overflow: hidden; }
14
+ #search-wrap { padding: 12px; border-bottom: 1px solid #2a2a4e; }
15
+ #search { width: 100%; background: #0f0f1a; border: 1px solid #3a3a5e; color: #e0e0e0; padding: 7px 10px; border-radius: 6px; font-size: 13px; outline: none; }
16
+ #search:focus { border-color: #4E79A7; }
17
+ #search-results { max-height: 140px; overflow-y: auto; padding: 4px 12px; border-bottom: 1px solid #2a2a4e; display: none; }
18
+ .search-item { padding: 4px 6px; cursor: pointer; border-radius: 4px; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
19
+ .search-item:hover { background: #2a2a4e; }
20
+ #info-panel { padding: 14px; border-bottom: 1px solid #2a2a4e; min-height: 140px; }
21
+ #info-panel h3 { font-size: 13px; color: #aaa; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
22
+ #info-content { font-size: 13px; color: #ccc; line-height: 1.6; }
23
+ #info-content .field { margin-bottom: 5px; }
24
+ #info-content .field b { color: #e0e0e0; }
25
+ #info-content .empty { color: #555; font-style: italic; }
26
+ .neighbor-link { display: block; padding: 2px 6px; margin: 2px 0; border-radius: 3px; cursor: pointer; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; border-left: 3px solid #333; }
27
+ .neighbor-link:hover { background: #2a2a4e; }
28
+ #neighbors-list { max-height: 160px; overflow-y: auto; margin-top: 4px; }
29
+ #legend-wrap { flex: 1; overflow-y: auto; padding: 12px; }
30
+ #legend-wrap h3 { font-size: 13px; color: #aaa; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
31
+ .legend-item { display: flex; align-items: center; gap: 8px; padding: 4px 0; cursor: pointer; border-radius: 4px; font-size: 12px; }
32
+ .legend-item:hover { background: #2a2a4e; padding-left: 4px; }
33
+ .legend-item.dimmed { opacity: 0.35; }
34
+ .legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
35
+ .legend-label { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
36
+ .legend-count { color: #666; font-size: 11px; }
37
+ #stats { padding: 10px 14px; border-top: 1px solid #2a2a4e; font-size: 11px; color: #555; }
38
+ #legend-controls { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; padding: 4px 0; }
39
+ #legend-controls label { display: flex; align-items: center; gap: 6px; cursor: pointer; font-size: 12px; color: #aaa; user-select: none; }
40
+ #legend-controls label:hover { color: #e0e0e0; }
41
+ .legend-cb, #select-all-cb { appearance: none; -webkit-appearance: none; width: 14px; height: 14px; border: 1.5px solid #3a3a5e; border-radius: 3px; background: #0f0f1a; cursor: pointer; position: relative; flex-shrink: 0; }
42
+ .legend-cb:checked, #select-all-cb:checked { background: #4E79A7; border-color: #4E79A7; }
43
+ .legend-cb:checked::after, #select-all-cb:checked::after { content: ''; position: absolute; left: 3.5px; top: 1px; width: 4px; height: 7px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
44
+ #select-all-cb:indeterminate { background: #4E79A7; border-color: #4E79A7; }
45
+ #select-all-cb:indeterminate::after { content: ''; position: absolute; left: 2px; top: 5px; width: 8px; height: 2px; background: #fff; border: none; transform: none; }
46
+ </style>
47
+ </head>
48
+ <body>
49
+ <div id="graph"></div>
50
+ <div id="sidebar">
51
+ <div id="search-wrap">
52
+ <input id="search" type="text" placeholder="Search nodes..." autocomplete="off">
53
+ <div id="search-results"></div>
54
+ </div>
55
+ <div id="info-panel">
56
+ <h3>Node Info</h3>
57
+ <div id="info-content"><span class="empty">Click a node to inspect it</span></div>
58
+ </div>
59
+ <div id="legend-wrap">
60
+ <h3>Communities</h3>
61
+ <div id="legend-controls">
62
+ <label><input type="checkbox" id="select-all-cb" checked onchange="toggleAllCommunities(!this.checked)">Select All</label>
63
+ </div>
64
+ <div id="legend"></div>
65
+ </div>
66
+ <div id="stats">1199 nodes &middot; 2556 edges &middot; 73 communities</div>
67
+ </div>
68
+ <script>
69
+ const RAW_NODES = [{"id": "web_prototype_e1429c1737_open_design", "label": "open-design.json", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.6, "font": {"size": 12, "color": "#ffffff"}, "title": "open-design.json", "community": 37, "community_name": "Community 37", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 14}, {"id": "web_prototype_e1429c1737_open_design_schema", "label": "$schema", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "$schema", "community": 37, "community_name": "Community 37", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_specversion", "label": "specVersion", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "specVersion", "community": 37, "community_name": "Community 37", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_name", "label": "name", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "name", "community": 37, "community_name": "Community 37", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_title", "label": "title", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "title", "community": 37, "community_name": "Community 37", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_title_i18n", "label": "title_i18n", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 16.3, "font": {"size": 12, "color": "#ffffff"}, "title": "title_i18n", "community": 23, "community_name": "Community 23", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 19}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_zh_cn", "label": "zh-CN", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "zh-CN", "community": 23, "community_name": "Community 23", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_zh_tw", "label": "zh-TW", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "zh-TW", "community": 23, "community_name": "Community 23", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_ja", "label": "ja", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ja", "community": 23, "community_name": "Community 23", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_ko", "label": "ko", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ko", "community": 23, "community_name": "Community 23", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_de", "label": "de", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "de", "community": 23, "community_name": "Community 23", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_fr", "label": "fr", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fr", "community": 23, "community_name": "Community 23", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_ru", "label": "ru", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ru", "community": 23, "community_name": "Community 23", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_es", "label": "es", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "es", "community": 23, "community_name": "Community 23", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_pt_br", "label": "pt-BR", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "pt-BR", "community": 23, "community_name": "Community 23", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_it", "label": "it", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "it", "community": 23, "community_name": "Community 23", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_vi", "label": "vi", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "vi", "community": 23, "community_name": "Community 23", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_pl", "label": "pl", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "pl", "community": 23, "community_name": "Community 23", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_id", "label": "id", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "id", "community": 23, "community_name": "Community 23", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_nl", "label": "nl", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "nl", "community": 23, "community_name": "Community 23", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_ar", "label": "ar", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ar", "community": 23, "community_name": "Community 23", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_tr", "label": "tr", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tr", "community": 23, "community_name": "Community 23", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_uk", "label": "uk", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "uk", "community": 23, "community_name": "Community 23", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_en", "label": "en", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "en", "community": 23, "community_name": "Community 23", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_version", "label": "version", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "version", "community": 37, "community_name": "Community 37", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_description", "label": "description", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "description", "community": 37, "community_name": "Community 37", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_description_i18n", "label": "description_i18n", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 16.3, "font": {"size": 12, "color": "#ffffff"}, "title": "description_i18n", "community": 22, "community_name": "Community 22", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 19}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_zh_cn", "label": "zh-CN", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "zh-CN", "community": 22, "community_name": "Community 22", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_zh_tw", "label": "zh-TW", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "zh-TW", "community": 22, "community_name": "Community 22", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_ja", "label": "ja", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ja", "community": 22, "community_name": "Community 22", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_ko", "label": "ko", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ko", "community": 22, "community_name": "Community 22", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_de", "label": "de", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "de", "community": 22, "community_name": "Community 22", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_fr", "label": "fr", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fr", "community": 22, "community_name": "Community 22", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_ru", "label": "ru", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ru", "community": 22, "community_name": "Community 22", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_es", "label": "es", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "es", "community": 22, "community_name": "Community 22", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_pt_br", "label": "pt-BR", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "pt-BR", "community": 22, "community_name": "Community 22", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_it", "label": "it", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "it", "community": 22, "community_name": "Community 22", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_vi", "label": "vi", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "vi", "community": 22, "community_name": "Community 22", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_pl", "label": "pl", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "pl", "community": 22, "community_name": "Community 22", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_id", "label": "id", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "id", "community": 22, "community_name": "Community 22", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_nl", "label": "nl", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "nl", "community": 22, "community_name": "Community 22", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_ar", "label": "ar", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ar", "community": 22, "community_name": "Community 22", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_tr", "label": "tr", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tr", "community": 22, "community_name": "Community 22", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_uk", "label": "uk", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "uk", "community": 22, "community_name": "Community 22", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_en", "label": "en", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "en", "community": 22, "community_name": "Community 22", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_license", "label": "license", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "license", "community": 37, "community_name": "Community 37", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_author", "label": "author", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "author", "community": 37, "community_name": "Community 37", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 3}, {"id": "web_prototype_e1429c1737_open_design_author_name", "label": "name", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "name", "community": 37, "community_name": "Community 37", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_author_url", "label": "url", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "url", "community": 37, "community_name": "Community 37", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_homepage", "label": "homepage", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "homepage", "community": 37, "community_name": "Community 37", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_tags", "label": "tags", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tags", "community": 37, "community_name": "Community 37", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_compat", "label": "compat", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "compat", "community": 37, "community_name": "Community 37", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 2}, {"id": "web_prototype_e1429c1737_open_design_compat_agentskills", "label": "agentSkills", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "agentSkills", "community": 37, "community_name": "Community 37", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_od", "label": "od", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "od", "community": 47, "community_name": "Community 47", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 13}, {"id": "web_prototype_e1429c1737_open_design_od_kind", "label": "kind", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "kind", "community": 47, "community_name": "Community 47", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_od_taskkind", "label": "taskKind", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "taskKind", "community": 47, "community_name": "Community 47", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_od_mode", "label": "mode", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "mode", "community": 47, "community_name": "Community 47", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_od_platform", "label": "platform", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "platform", "community": 47, "community_name": "Community 47", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_od_scenario", "label": "scenario", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "scenario", "community": 47, "community_name": "Community 47", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_od_surface", "label": "surface", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "surface", "community": 47, "community_name": "Community 47", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_od_preview", "label": "preview", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "preview", "community": 47, "community_name": "Community 47", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 3}, {"id": "web_prototype_e1429c1737_open_design_preview_type", "label": "type", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "type", "community": 47, "community_name": "Community 47", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_preview_entry", "label": "entry", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "entry", "community": 47, "community_name": "Community 47", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_od_usecase", "label": "useCase", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "useCase", "community": 68, "community_name": "Community 68", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 3}, {"id": "web_prototype_e1429c1737_open_design_usecase_query", "label": "query", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "query", "community": 68, "community_name": "Community 68", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 3}, {"id": "web_prototype_e1429c1737_open_design_query_en", "label": "en", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "en", "community": 68, "community_name": "Community 68", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_query_zh_cn", "label": "zh-CN", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "zh-CN", "community": 68, "community_name": "Community 68", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_usecase_exampleoutputs", "label": "exampleOutputs", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "exampleOutputs", "community": 68, "community_name": "Community 68", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_od_inputs", "label": "inputs", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "inputs", "community": 47, "community_name": "Community 47", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_od_context", "label": "context", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "context", "community": 67, "community_name": "Community 67", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 4}, {"id": "web_prototype_e1429c1737_open_design_context_skills", "label": "skills", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "skills", "community": 67, "community_name": "Community 67", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_context_designsystem", "label": "designSystem", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "designSystem", "community": 67, "community_name": "Community 67", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 2}, {"id": "web_prototype_e1429c1737_open_design_designsystem_primary", "label": "primary", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "primary", "community": 67, "community_name": "Community 67", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_context_assets", "label": "assets", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "assets", "community": 67, "community_name": "Community 67", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_od_pipeline", "label": "pipeline", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "pipeline", "community": 47, "community_name": "Community 47", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 2}, {"id": "web_prototype_e1429c1737_open_design_pipeline_stages", "label": "stages", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "stages", "community": 47, "community_name": "Community 47", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "web_prototype_e1429c1737_open_design_od_capabilities", "label": "capabilities", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "capabilities", "community": 47, "community_name": "Community 47", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "file_type": "code", "degree": 1}, {"id": "package", "label": "package.json", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "package.json", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 10}, {"id": "package_name", "label": "name", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "name", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_version", "label": "version", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "version", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_description", "label": "description", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "description", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_type", "label": "type", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "type", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_main", "label": "main", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "main", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_exports", "label": "exports", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "exports", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 2}, {"id": "package_exports_dash_cli", "label": "./dash-cli", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "./dash-cli", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_files", "label": "files", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "files", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts", "label": "scripts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "scripts", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 4}, {"id": "package_scripts_dev", "label": "dev", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "dev", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_build", "label": "build", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "build", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_typecheck", "label": "typecheck", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "typecheck", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies", "label": "dependencies", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "dependencies", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 15}, {"id": "package_dependencies_blessed", "label": "blessed", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "blessed", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_chokidar", "label": "chokidar", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "chokidar", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_cors", "label": "cors", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "cors", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_croner", "label": "croner", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "croner", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_express", "label": "express", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "express", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_fuse_js", "label": "fuse.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fuse.js", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_lucide_react", "label": "lucide-react", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "lucide-react", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_qrcode_terminal", "label": "qrcode-terminal", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "qrcode-terminal", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_qrcode_react", "label": "qrcode.react", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "qrcode.react", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_react", "label": "react", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "react", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_react_dom", "label": "react-dom", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "react-dom", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_react_markdown", "label": "react-markdown", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "react-markdown", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_remark_gfm", "label": "remark-gfm", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "remark-gfm", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_ws", "label": "ws", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ws", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies", "label": "devDependencies", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "devDependencies", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 6}, {"id": "package_devdependencies_types_react", "label": "@types/react", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/react", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies_types_react_dom", "label": "@types/react-dom", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/react-dom", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies_vitejs_plugin_react", "label": "@vitejs/plugin-react", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@vitejs/plugin-react", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies_typescript", "label": "typescript", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "typescript", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies_vite", "label": "vite", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "vite", "community": 4, "community_name": "Community 4", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "scripts_smoke_bg_retry", "label": "smoke-bg-retry.mjs", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "smoke-bg-retry.mjs", "community": 70, "community_name": "Community 70", "source_file": "scripts/smoke-bg-retry.mjs", "file_type": "code", "degree": 1}, {"id": "scripts_smoke_bg_retry_root", "label": "ROOT", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ROOT", "community": 70, "community_name": "Community 70", "source_file": "scripts/smoke-bg-retry.mjs", "file_type": "code", "degree": 1}, {"id": "src_cli", "label": "cli.mjs", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "cli.mjs", "community": 0, "community_name": "Community 0", "source_file": "src/cli.mjs", "file_type": "code", "degree": 16}, {"id": "src_cli_filename", "label": "__filename", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "__filename", "community": 0, "community_name": "Community 0", "source_file": "src/cli.mjs", "file_type": "code", "degree": 1}, {"id": "src_cli_dirname", "label": "__dirname", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "__dirname", "community": 0, "community_name": "Community 0", "source_file": "src/cli.mjs", "file_type": "code", "degree": 1}, {"id": "src_cli_port_file", "label": "PORT_FILE", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PORT_FILE", "community": 0, "community_name": "Community 0", "source_file": "src/cli.mjs", "file_type": "code", "degree": 1}, {"id": "src_cli_pid_file", "label": "PID_FILE", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PID_FILE", "community": 0, "community_name": "Community 0", "source_file": "src/cli.mjs", "file_type": "code", "degree": 1}, {"id": "src_cli_readversion", "label": "readVersion()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "readVersion()", "community": 0, "community_name": "Community 0", "source_file": "src/cli.mjs", "file_type": "code", "degree": 2}, {"id": "src_cli_showhelp", "label": "showHelp()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "showHelp()", "community": 0, "community_name": "Community 0", "source_file": "src/cli.mjs", "file_type": "code", "degree": 2}, {"id": "src_cli_findfreeport", "label": "findFreePort()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "findFreePort()", "community": 0, "community_name": "Community 0", "source_file": "src/cli.mjs", "file_type": "code", "degree": 4}, {"id": "src_cli_isportfree", "label": "isPortFree()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "isPortFree()", "community": 0, "community_name": "Community 0", "source_file": "src/cli.mjs", "file_type": "code", "degree": 2}, {"id": "src_cli_startdashboard", "label": "startDashboard()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "startDashboard()", "community": 0, "community_name": "Community 0", "source_file": "src/cli.mjs", "file_type": "code", "degree": 7}, {"id": "src_cli_detachafterboot", "label": "detachAfterBoot()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "detachAfterBoot()", "community": 0, "community_name": "Community 0", "source_file": "src/cli.mjs", "file_type": "code", "degree": 1}, {"id": "src_cli_startinbackground", "label": "startInBackground()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "startInBackground()", "community": 0, "community_name": "Community 0", "source_file": "src/cli.mjs", "file_type": "code", "degree": 1}, {"id": "src_cli_stopdashboard", "label": "stopDashboard()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "stopDashboard()", "community": 0, "community_name": "Community 0", "source_file": "src/cli.mjs", "file_type": "code", "degree": 2}, {"id": "src_cli_showstatus", "label": "showStatus()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "showStatus()", "community": 0, "community_name": "Community 0", "source_file": "src/cli.mjs", "file_type": "code", "degree": 2}, {"id": "src_cli_runtui", "label": "runTui()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "runTui()", "community": 0, "community_name": "Community 0", "source_file": "src/cli.mjs", "file_type": "code", "degree": 9}, {"id": "src_cli_ismainentry", "label": "isMainEntry()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isMainEntry()", "community": 0, "community_name": "Community 0", "source_file": "src/cli.mjs", "file_type": "code", "degree": 1}, {"id": "src_cli_main", "label": "main()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 0, "community_name": "Community 0", "source_file": "src/cli.mjs", "file_type": "code", "degree": 7}, {"id": "server_activity_log", "label": "activity-log.mjs", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "activity-log.mjs", "community": 62, "community_name": "Community 62", "source_file": "src/server/activity-log.mjs", "file_type": "code", "degree": 7}, {"id": "server_activity_log_home", "label": "HOME", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HOME", "community": 62, "community_name": "Community 62", "source_file": "src/server/activity-log.mjs", "file_type": "code", "degree": 1}, {"id": "server_activity_log_log_file", "label": "LOG_FILE", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "LOG_FILE", "community": 62, "community_name": "Community 62", "source_file": "src/server/activity-log.mjs", "file_type": "code", "degree": 1}, {"id": "server_activity_log_atomicwritetext", "label": "atomicWriteText()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "atomicWriteText()", "community": 62, "community_name": "Community 62", "source_file": "src/server/activity-log.mjs", "file_type": "code", "degree": 2}, {"id": "server_activity_log_ensurefile", "label": "ensureFile()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ensureFile()", "community": 62, "community_name": "Community 62", "source_file": "src/server/activity-log.mjs", "file_type": "code", "degree": 1}, {"id": "server_activity_log_rotateifneeded", "label": "rotateIfNeeded()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "rotateIfNeeded()", "community": 62, "community_name": "Community 62", "source_file": "src/server/activity-log.mjs", "file_type": "code", "degree": 2}, {"id": "server_activity_log_safeparse", "label": "safeParse()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "safeParse()", "community": 62, "community_name": "Community 62", "source_file": "src/server/activity-log.mjs", "file_type": "code", "degree": 1}, {"id": "server_activity_log_activitylog", "label": "activityLog", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "activityLog", "community": 62, "community_name": "Community 62", "source_file": "src/server/activity-log.mjs", "file_type": "code", "degree": 1}, {"id": "server_agents_store", "label": "agents-store.mjs", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 17.6, "font": {"size": 12, "color": "#ffffff"}, "title": "agents-store.mjs", "community": 33, "community_name": "Community 33", "source_file": "src/server/agents-store.mjs", "file_type": "code", "degree": 23}, {"id": "server_agents_store_home", "label": "HOME", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HOME", "community": 33, "community_name": "Community 33", "source_file": "src/server/agents-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_agents_store_agents_dir", "label": "AGENTS_DIR", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AGENTS_DIR", "community": 33, "community_name": "Community 33", "source_file": "src/server/agents-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_agents_store_hierarchy", "label": "HIERARCHY", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HIERARCHY", "community": 33, "community_name": "Community 33", "source_file": "src/server/agents-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_agents_store_status_file", "label": "STATUS_FILE", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "STATUS_FILE", "community": 33, "community_name": "Community 33", "source_file": "src/server/agents-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_agents_store_status", "label": "_status", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "_status", "community": 33, "community_name": "Community 33", "source_file": "src/server/agents-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_agents_store_loadstatus", "label": "loadStatus()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "loadStatus()", "community": 33, "community_name": "Community 33", "source_file": "src/server/agents-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_agents_store_savestatus", "label": "saveStatus()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "saveStatus()", "community": 33, "community_name": "Community 33", "source_file": "src/server/agents-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_agents_store_defaultstatus", "label": "defaultStatus()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "defaultStatus()", "community": 33, "community_name": "Community 33", "source_file": "src/server/agents-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_agents_store_safereadtext", "label": "safeReadText()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "safeReadText()", "community": 33, "community_name": "Community 33", "source_file": "src/server/agents-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_agents_store_parsefrontmatter", "label": "parseFrontmatter()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "parseFrontmatter()", "community": 33, "community_name": "Community 33", "source_file": "src/server/agents-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_agents_store_fmval", "label": "fmVal()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "fmVal()", "community": 33, "community_name": "Community 33", "source_file": "src/server/agents-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_agents_store_serializefrontmatter", "label": "serializeFrontmatter()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "serializeFrontmatter()", "community": 33, "community_name": "Community 33", "source_file": "src/server/agents-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_agents_store_readagent", "label": "readAgent()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "readAgent()", "community": 33, "community_name": "Community 33", "source_file": "src/server/agents-store.mjs", "file_type": "code", "degree": 5}, {"id": "server_agents_store_buildhierarchytree", "label": "buildHierarchyTree()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "buildHierarchyTree()", "community": 33, "community_name": "Community 33", "source_file": "src/server/agents-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_agents_store_agentsstore", "label": "agentsStore", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "agentsStore", "community": 17, "community_name": "Community 17", "source_file": "src/server/agents-store.mjs", "file_type": "code", "degree": 8}, {"id": "server_agents_store_isstuck", "label": "isStuck()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "isStuck()", "community": 33, "community_name": "Community 33", "source_file": "src/server/agents-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_api", "label": "api.mjs", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 27.1, "font": {"size": 12, "color": "#ffffff"}, "title": "api.mjs", "community": 1, "community_name": "Community 1", "source_file": "src/server/api.mjs", "file_type": "code", "degree": 52}, {"id": "server_api_createapirouter", "label": "createApiRouter()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 18.9, "font": {"size": 12, "color": "#ffffff"}, "title": "createApiRouter()", "community": 1, "community_name": "Community 1", "source_file": "src/server/api.mjs", "file_type": "code", "degree": 27}, {"id": "server_artifacts_store", "label": "artifacts-store.mjs", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "artifacts-store.mjs", "community": 57, "community_name": "Community 57", "source_file": "src/server/artifacts-store.mjs", "file_type": "code", "degree": 13}, {"id": "server_artifacts_store_home", "label": "HOME", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HOME", "community": 57, "community_name": "Community 57", "source_file": "src/server/artifacts-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_artifacts_store_artifacts_dir", "label": "ARTIFACTS_DIR", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ARTIFACTS_DIR", "community": 57, "community_name": "Community 57", "source_file": "src/server/artifacts-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_artifacts_store_genid", "label": "genId()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "genId()", "community": 57, "community_name": "Community 57", "source_file": "src/server/artifacts-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_artifacts_store_pickextension", "label": "pickExtension()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "pickExtension()", "community": 57, "community_name": "Community 57", "source_file": "src/server/artifacts-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_artifacts_store_atomicwritejson", "label": "atomicWriteJson()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "atomicWriteJson()", "community": 57, "community_name": "Community 57", "source_file": "src/server/artifacts-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_artifacts_store_iswithinartifactsdir", "label": "isWithinArtifactsDir()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "isWithinArtifactsDir()", "community": 57, "community_name": "Community 57", "source_file": "src/server/artifacts-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_artifacts_store_resolvebodypath", "label": "resolveBodyPath()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "resolveBodyPath()", "community": 57, "community_name": "Community 57", "source_file": "src/server/artifacts-store.mjs", "file_type": "code", "degree": 3}, {"id": "server_artifacts_store_sanitizemeta", "label": "sanitizeMeta()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "sanitizeMeta()", "community": 57, "community_name": "Community 57", "source_file": "src/server/artifacts-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_artifacts_store_artifactsstore", "label": "artifactsStore", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "artifactsStore", "community": 17, "community_name": "Community 17", "source_file": "src/server/artifacts-store.mjs", "file_type": "code", "degree": 4}, {"id": "server_artifacts_store_extractartifactfrommessage", "label": "extractArtifactFromMessage()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "extractArtifactFromMessage()", "community": 44, "community_name": "Community 44", "source_file": "src/server/artifacts-store.mjs", "file_type": "code", "degree": 3}, {"id": "server_auth", "label": "auth.mjs", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 16.3, "font": {"size": 12, "color": "#ffffff"}, "title": "auth.mjs", "community": 29, "community_name": "Community 29", "source_file": "src/server/auth.mjs", "file_type": "code", "degree": 19}, {"id": "server_auth_extra_allowed_origins", "label": "EXTRA_ALLOWED_ORIGINS", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "EXTRA_ALLOWED_ORIGINS", "community": 29, "community_name": "Community 29", "source_file": "src/server/auth.mjs", "file_type": "code", "degree": 1}, {"id": "server_auth_getorcreatesecret", "label": "getOrCreateSecret()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getOrCreateSecret()", "community": 29, "community_name": "Community 29", "source_file": "src/server/auth.mjs", "file_type": "code", "degree": 5}, {"id": "server_auth_getsecret", "label": "getSecret()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getSecret()", "community": 29, "community_name": "Community 29", "source_file": "src/server/auth.mjs", "file_type": "code", "degree": 1}, {"id": "server_auth_regeneratesecret", "label": "regenerateSecret()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "regenerateSecret()", "community": 29, "community_name": "Community 29", "source_file": "src/server/auth.mjs", "file_type": "code", "degree": 3}, {"id": "server_auth_requireauth", "label": "requireAuth()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "requireAuth()", "community": 9, "community_name": "Community 9", "source_file": "src/server/auth.mjs", "file_type": "code", "degree": 2}, {"id": "server_auth_checkwebsocketauth", "label": "checkWebSocketAuth()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "checkWebSocketAuth()", "community": 29, "community_name": "Community 29", "source_file": "src/server/auth.mjs", "file_type": "code", "degree": 5}, {"id": "server_auth_isloopback", "label": "isLoopback()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "isLoopback()", "community": 29, "community_name": "Community 29", "source_file": "src/server/auth.mjs", "file_type": "code", "degree": 6}, {"id": "server_auth_isauthrequired", "label": "isAuthRequired()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isAuthRequired()", "community": 29, "community_name": "Community 29", "source_file": "src/server/auth.mjs", "file_type": "code", "degree": 4}, {"id": "server_auth_getdirectpeeraddress", "label": "getDirectPeerAddress()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "getDirectPeerAddress()", "community": 29, "community_name": "Community 29", "source_file": "src/server/auth.mjs", "file_type": "code", "degree": 3}, {"id": "server_auth_getforwardedpeeraddress", "label": "getForwardedPeerAddress()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "getForwardedPeerAddress()", "community": 29, "community_name": "Community 29", "source_file": "src/server/auth.mjs", "file_type": "code", "degree": 2}, {"id": "server_auth_isalloweddashboardorigin", "label": "isAllowedDashboardOrigin()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isAllowedDashboardOrigin()", "community": 29, "community_name": "Community 29", "source_file": "src/server/auth.mjs", "file_type": "code", "degree": 4}, {"id": "server_auth_isalloweddashboardoriginforrequest", "label": "isAllowedDashboardOriginForRequest()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isAllowedDashboardOriginForRequest()", "community": 29, "community_name": "Community 29", "source_file": "src/server/auth.mjs", "file_type": "code", "degree": 4}, {"id": "server_auth_isloopbackaddr", "label": "isLoopbackAddr()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "isLoopbackAddr()", "community": 29, "community_name": "Community 29", "source_file": "src/server/auth.mjs", "file_type": "code", "degree": 3}, {"id": "server_auth_stripport", "label": "stripPort()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "stripPort()", "community": 29, "community_name": "Community 29", "source_file": "src/server/auth.mjs", "file_type": "code", "degree": 2}, {"id": "server_auth_ensuresecretfilemode", "label": "ensureSecretFileMode()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ensureSecretFileMode()", "community": 29, "community_name": "Community 29", "source_file": "src/server/auth.mjs", "file_type": "code", "degree": 2}, {"id": "server_auth_timingsafeequal", "label": "timingSafeEqual()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "timingSafeEqual()", "community": 29, "community_name": "Community 29", "source_file": "src/server/auth.mjs", "file_type": "code", "degree": 2}, {"id": "server_background_store", "label": "background-store.mjs", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "background-store.mjs", "community": 21, "community_name": "Community 21", "source_file": "src/server/background-store.mjs", "file_type": "code", "degree": 11}, {"id": "server_background_store_home", "label": "HOME", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HOME", "community": 21, "community_name": "Community 21", "source_file": "src/server/background-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_background_store_bg_dirs", "label": "BG_DIRS", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BG_DIRS", "community": 21, "community_name": "Community 21", "source_file": "src/server/background-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_background_store_pickbgdir", "label": "pickBgDir()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "pickBgDir()", "community": 21, "community_name": "Community 21", "source_file": "src/server/background-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_background_store_safereadjson", "label": "safeReadJSON()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "safeReadJSON()", "community": 21, "community_name": "Community 21", "source_file": "src/server/background-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_background_store_tmuxsessionfor", "label": "tmuxSessionFor()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tmuxSessionFor()", "community": 21, "community_name": "Community 21", "source_file": "src/server/background-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_background_store_tmuxhassession", "label": "tmuxHasSession()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tmuxHasSession()", "community": 21, "community_name": "Community 21", "source_file": "src/server/background-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_background_store_backgroundstore", "label": "backgroundStore", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "backgroundStore", "community": 21, "community_name": "Community 21", "source_file": "src/server/background-store.mjs", "file_type": "code", "degree": 4}, {"id": "server_bg_poller", "label": "bg-poller.mjs", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 18.2, "font": {"size": 12, "color": "#ffffff"}, "title": "bg-poller.mjs", "community": 44, "community_name": "Community 44", "source_file": "src/server/bg-poller.mjs", "file_type": "code", "degree": 25}, {"id": "server_bg_poller_trackedstatuses", "label": "trackedStatuses", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "trackedStatuses", "community": 44, "community_name": "Community 44", "source_file": "src/server/bg-poller.mjs", "file_type": "code", "degree": 1}, {"id": "server_bg_poller_processedartifacts", "label": "processedArtifacts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "processedArtifacts", "community": 44, "community_name": "Community 44", "source_file": "src/server/bg-poller.mjs", "file_type": "code", "degree": 1}, {"id": "server_bg_poller_taskfailures", "label": "taskFailures", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "taskFailures", "community": 44, "community_name": "Community 44", "source_file": "src/server/bg-poller.mjs", "file_type": "code", "degree": 1}, {"id": "server_bg_poller_recordpollerfailure", "label": "recordPollerFailure()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "recordPollerFailure()", "community": 44, "community_name": "Community 44", "source_file": "src/server/bg-poller.mjs", "file_type": "code", "degree": 3}, {"id": "server_bg_poller_scanforartifact", "label": "scanForArtifact()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "scanForArtifact()", "community": 44, "community_name": "Community 44", "source_file": "src/server/bg-poller.mjs", "file_type": "code", "degree": 6}, {"id": "server_bg_poller_killtmuxfor", "label": "killTmuxFor()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "killTmuxFor()", "community": 44, "community_name": "Community 44", "source_file": "src/server/bg-poller.mjs", "file_type": "code", "degree": 2}, {"id": "server_bg_poller_tick", "label": "tick()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "tick()", "community": 44, "community_name": "Community 44", "source_file": "src/server/bg-poller.mjs", "file_type": "code", "degree": 9}, {"id": "server_bg_poller_startbgpoller", "label": "startBgPoller()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "startBgPoller()", "community": 44, "community_name": "Community 44", "source_file": "src/server/bg-poller.mjs", "file_type": "code", "degree": 4}, {"id": "server_bg_poller_stopbgpoller", "label": "stopBgPoller()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "stopBgPoller()", "community": 44, "community_name": "Community 44", "source_file": "src/server/bg-poller.mjs", "file_type": "code", "degree": 2}, {"id": "server_bg_poller_pollerinternals", "label": "_pollerInternals", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "_pollerInternals", "community": 44, "community_name": "Community 44", "source_file": "src/server/bg-poller.mjs", "file_type": "code", "degree": 1}, {"id": "server_bg_retry", "label": "bg-retry.mjs", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 19.2, "font": {"size": 12, "color": "#ffffff"}, "title": "bg-retry.mjs", "community": 30, "community_name": "Community 30", "source_file": "src/server/bg-retry.mjs", "file_type": "code", "degree": 28}, {"id": "server_bg_retry_home", "label": "HOME", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HOME", "community": 30, "community_name": "Community 30", "source_file": "src/server/bg-retry.mjs", "file_type": "code", "degree": 1}, {"id": "server_bg_retry_bg_dirs", "label": "BG_DIRS", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BG_DIRS", "community": 30, "community_name": "Community 30", "source_file": "src/server/bg-retry.mjs", "file_type": "code", "degree": 1}, {"id": "server_bg_retry_pickbgdir", "label": "pickBgDir()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "pickBgDir()", "community": 30, "community_name": "Community 30", "source_file": "src/server/bg-retry.mjs", "file_type": "code", "degree": 1}, {"id": "server_bg_retry_readbgfile", "label": "readBgFile()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "readBgFile()", "community": 30, "community_name": "Community 30", "source_file": "src/server/bg-retry.mjs", "file_type": "code", "degree": 3}, {"id": "server_bg_retry_atomicwritejson", "label": "atomicWriteJson()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "atomicWriteJson()", "community": 30, "community_name": "Community 30", "source_file": "src/server/bg-retry.mjs", "file_type": "code", "degree": 2}, {"id": "server_bg_retry_findbgfile", "label": "findBgFile()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "findBgFile()", "community": 30, "community_name": "Community 30", "source_file": "src/server/bg-retry.mjs", "file_type": "code", "degree": 2}, {"id": "server_bg_retry_shouldretrydispatch", "label": "shouldRetryDispatch()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "shouldRetryDispatch()", "community": 30, "community_name": "Community 30", "source_file": "src/server/bg-retry.mjs", "file_type": "code", "degree": 2}, {"id": "server_bg_retry_repairlogpath", "label": "repairLogPath()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "repairLogPath()", "community": 30, "community_name": "Community 30", "source_file": "src/server/bg-retry.mjs", "file_type": "code", "degree": 5}, {"id": "server_bg_retry_retrydispatchonce", "label": "retryDispatchOnce()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "retryDispatchOnce()", "community": 30, "community_name": "Community 30", "source_file": "src/server/bg-retry.mjs", "file_type": "code", "degree": 12}, {"id": "server_bg_retry_buildreplayprompttext", "label": "buildReplayPromptText()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "buildReplayPromptText()", "community": 30, "community_name": "Community 30", "source_file": "src/server/bg-retry.mjs", "file_type": "code", "degree": 2}, {"id": "server_bg_retry_tickretryloop", "label": "tickRetryLoop()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tickRetryLoop()", "community": 30, "community_name": "Community 30", "source_file": "src/server/bg-retry.mjs", "file_type": "code", "degree": 4}, {"id": "server_bg_retry_startbgretryloop", "label": "startBgRetryLoop()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "startBgRetryLoop()", "community": 9, "community_name": "Community 9", "source_file": "src/server/bg-retry.mjs", "file_type": "code", "degree": 3}, {"id": "server_bg_retry_stopbgretryloop", "label": "stopBgRetryLoop()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "stopBgRetryLoop()", "community": 9, "community_name": "Community 9", "source_file": "src/server/bg-retry.mjs", "file_type": "code", "degree": 2}, {"id": "server_bg_retry_bg_retry_internal", "label": "_BG_RETRY_INTERNAL", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "_BG_RETRY_INTERNAL", "community": 30, "community_name": "Community 30", "source_file": "src/server/bg-retry.mjs", "file_type": "code", "degree": 1}, {"id": "server_browser", "label": "browser.mjs", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "browser.mjs", "community": 0, "community_name": "Community 0", "source_file": "src/server/browser.mjs", "file_type": "code", "degree": 3}, {"id": "server_browser_launchbrowser", "label": "launchBrowser()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "launchBrowser()", "community": 0, "community_name": "Community 0", "source_file": "src/server/browser.mjs", "file_type": "code", "degree": 3}, {"id": "server_diagnostics_store", "label": "diagnostics-store.mjs", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 18.2, "font": {"size": 12, "color": "#ffffff"}, "title": "diagnostics-store.mjs", "community": 42, "community_name": "Community 42", "source_file": "src/server/diagnostics-store.mjs", "file_type": "code", "degree": 25}, {"id": "server_diagnostics_store_home", "label": "HOME", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HOME", "community": 42, "community_name": "Community 42", "source_file": "src/server/diagnostics-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_diagnostics_store_service_log", "label": "SERVICE_LOG", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SERVICE_LOG", "community": 42, "community_name": "Community 42", "source_file": "src/server/diagnostics-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_diagnostics_store_service_pid", "label": "SERVICE_PID", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SERVICE_PID", "community": 42, "community_name": "Community 42", "source_file": "src/server/diagnostics-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_diagnostics_store_dash_package_json", "label": "DASH_PACKAGE_JSON", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DASH_PACKAGE_JSON", "community": 42, "community_name": "Community 42", "source_file": "src/server/diagnostics-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_diagnostics_store_startedat", "label": "startedAt", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "startedAt", "community": 42, "community_name": "Community 42", "source_file": "src/server/diagnostics-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_diagnostics_store_dashboardversion", "label": "dashboardVersion()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "dashboardVersion()", "community": 42, "community_name": "Community 42", "source_file": "src/server/diagnostics-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_diagnostics_store_readrecenterrors", "label": "readRecentErrors()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "readRecentErrors()", "community": 42, "community_name": "Community 42", "source_file": "src/server/diagnostics-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_diagnostics_store_parselogts", "label": "parseLogTs()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "parseLogTs()", "community": 42, "community_name": "Community 42", "source_file": "src/server/diagnostics-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_diagnostics_store_checkpidalive", "label": "checkPidAlive()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "checkPidAlive()", "community": 42, "community_name": "Community 42", "source_file": "src/server/diagnostics-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_diagnostics_store_servicestatus", "label": "serviceStatus()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "serviceStatus()", "community": 42, "community_name": "Community 42", "source_file": "src/server/diagnostics-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_diagnostics_store_diagnosticsstore", "label": "diagnosticsStore", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "diagnosticsStore", "community": 42, "community_name": "Community 42", "source_file": "src/server/diagnostics-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_dialog_poller", "label": "dialog-poller.mjs", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "dialog-poller.mjs", "community": 48, "community_name": "Community 48", "source_file": "src/server/dialog-poller.mjs", "file_type": "code", "degree": 8}, {"id": "server_dialog_poller_broadcastdialog", "label": "broadcastDialog()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "broadcastDialog()", "community": 9, "community_name": "Community 9", "source_file": "src/server/dialog-poller.mjs", "file_type": "code", "degree": 4}, {"id": "server_dialog_poller_tick", "label": "tick()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "tick()", "community": 48, "community_name": "Community 48", "source_file": "src/server/dialog-poller.mjs", "file_type": "code", "degree": 3}, {"id": "server_dialog_poller_startdialogpoller", "label": "startDialogPoller()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "startDialogPoller()", "community": 48, "community_name": "Community 48", "source_file": "src/server/dialog-poller.mjs", "file_type": "code", "degree": 4}, {"id": "server_dialog_poller_stopdialogpoller", "label": "stopDialogPoller()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "stopDialogPoller()", "community": 48, "community_name": "Community 48", "source_file": "src/server/dialog-poller.mjs", "file_type": "code", "degree": 1}, {"id": "server_dialog_poller_pollerinternals", "label": "_pollerInternals", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "_pollerInternals", "community": 48, "community_name": "Community 48", "source_file": "src/server/dialog-poller.mjs", "file_type": "code", "degree": 1}, {"id": "server_dialog_store", "label": "dialog-store.mjs", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "dialog-store.mjs", "community": 48, "community_name": "Community 48", "source_file": "src/server/dialog-store.mjs", "file_type": "code", "degree": 9}, {"id": "server_dialog_store_home", "label": "HOME", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HOME", "community": 48, "community_name": "Community 48", "source_file": "src/server/dialog-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_dialog_store_dialog_dir", "label": "DIALOG_DIR", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DIALOG_DIR", "community": 48, "community_name": "Community 48", "source_file": "src/server/dialog-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_dialog_store_ensuredir", "label": "ensureDir()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ensureDir()", "community": 48, "community_name": "Community 48", "source_file": "src/server/dialog-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_dialog_store_safereadjson", "label": "safeReadJSON()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "safeReadJSON()", "community": 48, "community_name": "Community 48", "source_file": "src/server/dialog-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_dialog_store_genid", "label": "genId()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "genId()", "community": 48, "community_name": "Community 48", "source_file": "src/server/dialog-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_dialog_store_known_components", "label": "KNOWN_COMPONENTS", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "KNOWN_COMPONENTS", "community": 48, "community_name": "Community 48", "source_file": "src/server/dialog-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_dialog_store_dialogstore", "label": "dialogStore", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "dialogStore", "community": 48, "community_name": "Community 48", "source_file": "src/server/dialog-store.mjs", "file_type": "code", "degree": 3}, {"id": "lib_path_safe", "label": "path-safe.mjs", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "path-safe.mjs", "community": 40, "community_name": "Community 40", "source_file": "src/server/lib/path-safe.mjs", "file_type": "code", "degree": 17}, {"id": "lib_path_safe_normalizeroots", "label": "normalizeRoots()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "normalizeRoots()", "community": 40, "community_name": "Community 40", "source_file": "src/server/lib/path-safe.mjs", "file_type": "code", "degree": 2}, {"id": "lib_path_safe_defaultallowedroots", "label": "defaultAllowedRoots()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "defaultAllowedRoots()", "community": 40, "community_name": "Community 40", "source_file": "src/server/lib/path-safe.mjs", "file_type": "code", "degree": 3}, {"id": "lib_path_safe_buildallowedrootsfromsettings", "label": "buildAllowedRootsFromSettings()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "buildAllowedRootsFromSettings()", "community": 60, "community_name": "Community 60", "source_file": "src/server/lib/path-safe.mjs", "file_type": "code", "degree": 8}, {"id": "lib_path_safe_resolvesafepath", "label": "resolveSafePath()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "resolveSafePath()", "community": 60, "community_name": "Community 60", "source_file": "src/server/lib/path-safe.mjs", "file_type": "code", "degree": 8}, {"id": "lib_path_safe_isdotroot", "label": "isDotRoot()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "isDotRoot()", "community": 40, "community_name": "Community 40", "source_file": "src/server/lib/path-safe.mjs", "file_type": "code", "degree": 2}, {"id": "lib_path_safe_fallback_log_dir", "label": "FALLBACK_LOG_DIR", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "FALLBACK_LOG_DIR", "community": 40, "community_name": "Community 40", "source_file": "src/server/lib/path-safe.mjs", "file_type": "code", "degree": 1}, {"id": "lib_path_safe_getbglogdir", "label": "getBgLogDir()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "getBgLogDir()", "community": 40, "community_name": "Community 40", "source_file": "src/server/lib/path-safe.mjs", "file_type": "code", "degree": 3}, {"id": "lib_path_safe_getactualbglogpath", "label": "getActualBgLogPath()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getActualBgLogPath()", "community": 40, "community_name": "Community 40", "source_file": "src/server/lib/path-safe.mjs", "file_type": "code", "degree": 7}, {"id": "lib_path_safe_deriveabsolutebglogpath", "label": "deriveAbsoluteBgLogPath()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "deriveAbsoluteBgLogPath()", "community": 30, "community_name": "Community 30", "source_file": "src/server/lib/path-safe.mjs", "file_type": "code", "degree": 4}, {"id": "lib_path_safe_isbrokenbglogpath", "label": "isBrokenBgLogPath()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "isBrokenBgLogPath()", "community": 30, "community_name": "Community 30", "source_file": "src/server/lib/path-safe.mjs", "file_type": "code", "degree": 3}, {"id": "server_mod_security", "label": "mod-security.mjs", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.6, "font": {"size": 12, "color": "#ffffff"}, "title": "mod-security.mjs", "community": 13, "community_name": "Community 13", "source_file": "src/server/mod-security.mjs", "file_type": "code", "degree": 14}, {"id": "server_mod_security_allowed_binaries", "label": "ALLOWED_BINARIES", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ALLOWED_BINARIES", "community": 13, "community_name": "Community 13", "source_file": "src/server/mod-security.mjs", "file_type": "code", "degree": 3}, {"id": "server_mod_security_default_permissions", "label": "DEFAULT_PERMISSIONS", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DEFAULT_PERMISSIONS", "community": 13, "community_name": "Community 13", "source_file": "src/server/mod-security.mjs", "file_type": "code", "degree": 1}, {"id": "server_mod_security_sensitive_paths", "label": "SENSITIVE_PATHS", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SENSITIVE_PATHS", "community": 13, "community_name": "Community 13", "source_file": "src/server/mod-security.mjs", "file_type": "code", "degree": 1}, {"id": "server_mod_security_parsepermissions", "label": "parsePermissions()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "parsePermissions()", "community": 13, "community_name": "Community 13", "source_file": "src/server/mod-security.mjs", "file_type": "code", "degree": 5}, {"id": "server_mod_security_authorizefspath", "label": "authorizeFsPath()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "authorizeFsPath()", "community": 13, "community_name": "Community 13", "source_file": "src/server/mod-security.mjs", "file_type": "code", "degree": 3}, {"id": "server_mod_security_sandboxedfs", "label": "sandboxedFs()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "sandboxedFs()", "community": 13, "community_name": "Community 13", "source_file": "src/server/mod-security.mjs", "file_type": "code", "degree": 2}, {"id": "server_mod_security_authorizespawn", "label": "authorizeSpawn()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "authorizeSpawn()", "community": 13, "community_name": "Community 13", "source_file": "src/server/mod-security.mjs", "file_type": "code", "degree": 3}, {"id": "server_mod_security_auditlogpath", "label": "auditLogPath()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "auditLogPath()", "community": 13, "community_name": "Community 13", "source_file": "src/server/mod-security.mjs", "file_type": "code", "degree": 2}, {"id": "server_mod_security_createauditwriter", "label": "createAuditWriter()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "createAuditWriter()", "community": 13, "community_name": "Community 13", "source_file": "src/server/mod-security.mjs", "file_type": "code", "degree": 5}, {"id": "server_mod_security_computemodhash", "label": "computeModHash()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "computeModHash()", "community": 13, "community_name": "Community 13", "source_file": "src/server/mod-security.mjs", "file_type": "code", "degree": 5}, {"id": "server_mod_security_verifymodintegrity", "label": "verifyModIntegrity()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "verifyModIntegrity()", "community": 13, "community_name": "Community 13", "source_file": "src/server/mod-security.mjs", "file_type": "code", "degree": 4}, {"id": "server_mod_security_createmodsecuritycontext", "label": "createModSecurityContext()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "createModSecurityContext()", "community": 13, "community_name": "Community 13", "source_file": "src/server/mod-security.mjs", "file_type": "code", "degree": 6}, {"id": "server_mods_loader", "label": "mods-loader.mjs", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 17.6, "font": {"size": 12, "color": "#ffffff"}, "title": "mods-loader.mjs", "community": 13, "community_name": "Community 13", "source_file": "src/server/mods-loader.mjs", "file_type": "code", "degree": 23}, {"id": "server_mods_loader_readsettingssafe", "label": "readSettingsSafe()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "readSettingsSafe()", "community": 13, "community_name": "Community 13", "source_file": "src/server/mods-loader.mjs", "file_type": "code", "degree": 1}, {"id": "server_mods_loader_home", "label": "HOME", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HOME", "community": 13, "community_name": "Community 13", "source_file": "src/server/mods-loader.mjs", "file_type": "code", "degree": 1}, {"id": "server_mods_loader_bizar_home", "label": "BIZAR_HOME", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BIZAR_HOME", "community": 13, "community_name": "Community 13", "source_file": "src/server/mods-loader.mjs", "file_type": "code", "degree": 1}, {"id": "server_mods_loader_mods_dir", "label": "MODS_DIR", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MODS_DIR", "community": 13, "community_name": "Community 13", "source_file": "src/server/mods-loader.mjs", "file_type": "code", "degree": 1}, {"id": "server_mods_loader_safereadjson", "label": "safeReadJSON()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "safeReadJSON()", "community": 13, "community_name": "Community 13", "source_file": "src/server/mods-loader.mjs", "file_type": "code", "degree": 2}, {"id": "server_mods_loader_listmodfolders", "label": "listModFolders()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "listModFolders()", "community": 13, "community_name": "Community 13", "source_file": "src/server/mods-loader.mjs", "file_type": "code", "degree": 1}, {"id": "server_mods_loader_loadmod", "label": "loadMod()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "loadMod()", "community": 13, "community_name": "Community 13", "source_file": "src/server/mods-loader.mjs", "file_type": "code", "degree": 4}, {"id": "server_mods_loader_modsloader", "label": "modsLoader", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "modsLoader", "community": 43, "community_name": "Community 43", "source_file": "src/server/mods-loader.mjs", "file_type": "code", "degree": 6}, {"id": "server_mods_loader_resolvewithin", "label": "resolveWithin()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "resolveWithin()", "community": 13, "community_name": "Community 13", "source_file": "src/server/mods-loader.mjs", "file_type": "code", "degree": 1}, {"id": "server_notifications_store", "label": "notifications-store.mjs", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.9, "font": {"size": 12, "color": "#ffffff"}, "title": "notifications-store.mjs", "community": 45, "community_name": "Community 45", "source_file": "src/server/notifications-store.mjs", "file_type": "code", "degree": 18}, {"id": "server_notifications_store_home", "label": "HOME", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HOME", "community": 45, "community_name": "Community 45", "source_file": "src/server/notifications-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_notifications_store_bizar_home", "label": "BIZAR_HOME", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BIZAR_HOME", "community": 45, "community_name": "Community 45", "source_file": "src/server/notifications-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_notifications_store_log_file", "label": "LOG_FILE", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "LOG_FILE", "community": 45, "community_name": "Community 45", "source_file": "src/server/notifications-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_notifications_store_read_file", "label": "READ_FILE", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "READ_FILE", "community": 45, "community_name": "Community 45", "source_file": "src/server/notifications-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_notifications_store_valid_severity", "label": "VALID_SEVERITY", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "VALID_SEVERITY", "community": 45, "community_name": "Community 45", "source_file": "src/server/notifications-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_notifications_store_atomicwritetext", "label": "atomicWriteText()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "atomicWriteText()", "community": 45, "community_name": "Community 45", "source_file": "src/server/notifications-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_notifications_store_atomicwritejson", "label": "atomicWriteJson()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "atomicWriteJson()", "community": 45, "community_name": "Community 45", "source_file": "src/server/notifications-store.mjs", "file_type": "code", "degree": 3}, {"id": "server_notifications_store_genid", "label": "genId()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "genId()", "community": 45, "community_name": "Community 45", "source_file": "src/server/notifications-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_notifications_store_ensurelogfile", "label": "ensureLogFile()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ensureLogFile()", "community": 45, "community_name": "Community 45", "source_file": "src/server/notifications-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_notifications_store_safeparse", "label": "safeParse()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "safeParse()", "community": 45, "community_name": "Community 45", "source_file": "src/server/notifications-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_notifications_store_loadreadset", "label": "loadReadSet()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "loadReadSet()", "community": 45, "community_name": "Community 45", "source_file": "src/server/notifications-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_notifications_store_savereadset", "label": "saveReadSet()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "saveReadSet()", "community": 45, "community_name": "Community 45", "source_file": "src/server/notifications-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_notifications_store_getreadset", "label": "getReadSet()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "getReadSet()", "community": 45, "community_name": "Community 45", "source_file": "src/server/notifications-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_notifications_store_notificationsstore", "label": "notificationsStore", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "notificationsStore", "community": 1, "community_name": "Community 1", "source_file": "src/server/notifications-store.mjs", "file_type": "code", "degree": 5}, {"id": "server_opencode_runner", "label": "opencode-runner.mjs", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "opencode-runner.mjs", "community": 54, "community_name": "Community 54", "source_file": "src/server/opencode-runner.mjs", "file_type": "code", "degree": 8}, {"id": "server_opencode_runner_agents", "label": "agents", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "agents", "community": 54, "community_name": "Community 54", "source_file": "src/server/opencode-runner.mjs", "file_type": "code", "degree": 1}, {"id": "server_opencode_runner_spawnagent", "label": "spawnAgent()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "spawnAgent()", "community": 54, "community_name": "Community 54", "source_file": "src/server/opencode-runner.mjs", "file_type": "code", "degree": 2}, {"id": "server_opencode_runner_getstatus", "label": "getStatus()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "getStatus()", "community": 54, "community_name": "Community 54", "source_file": "src/server/opencode-runner.mjs", "file_type": "code", "degree": 2}, {"id": "server_opencode_runner_onexit", "label": "onExit()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "onExit()", "community": 54, "community_name": "Community 54", "source_file": "src/server/opencode-runner.mjs", "file_type": "code", "degree": 2}, {"id": "server_opencode_runner_killagent", "label": "killAgent()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "killAgent()", "community": 54, "community_name": "Community 54", "source_file": "src/server/opencode-runner.mjs", "file_type": "code", "degree": 2}, {"id": "server_opencode_runner_list", "label": "list()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "list()", "community": 54, "community_name": "Community 54", "source_file": "src/server/opencode-runner.mjs", "file_type": "code", "degree": 2}, {"id": "server_opencode_runner_resetfortests", "label": "_resetForTests()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_resetForTests()", "community": 54, "community_name": "Community 54", "source_file": "src/server/opencode-runner.mjs", "file_type": "code", "degree": 2}, {"id": "server_pair_store", "label": "pair-store.mjs", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "pair-store.mjs", "community": 63, "community_name": "Community 63", "source_file": "src/server/pair-store.mjs", "file_type": "code", "degree": 9}, {"id": "server_pair_store_tokens", "label": "tokens", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tokens", "community": 63, "community_name": "Community 63", "source_file": "src/server/pair-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_pair_store_gc", "label": "gc()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "gc()", "community": 63, "community_name": "Community 63", "source_file": "src/server/pair-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_pair_store_mint", "label": "mint()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "mint()", "community": 63, "community_name": "Community 63", "source_file": "src/server/pair-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_pair_store_verify", "label": "verify()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "verify()", "community": 63, "community_name": "Community 63", "source_file": "src/server/pair-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_pair_store_pairtokenmiddleware", "label": "pairTokenMiddleware()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "pairTokenMiddleware()", "community": 63, "community_name": "Community 63", "source_file": "src/server/pair-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_pair_store_detectpublicurl", "label": "detectPublicUrl()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "detectPublicUrl()", "community": 63, "community_name": "Community 63", "source_file": "src/server/pair-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_pair_store_pairstore", "label": "pairStore", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "pairStore", "community": 1, "community_name": "Community 1", "source_file": "src/server/pair-store.mjs", "file_type": "code", "degree": 3}, {"id": "server_plans_store", "label": "plans-store.mjs", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plans-store.mjs", "community": 52, "community_name": "Community 52", "source_file": "src/server/plans-store.mjs", "file_type": "code", "degree": 13}, {"id": "server_plans_store_home", "label": "HOME", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HOME", "community": 52, "community_name": "Community 52", "source_file": "src/server/plans-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_plans_store_global_plans_dir", "label": "GLOBAL_PLANS_DIR", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GLOBAL_PLANS_DIR", "community": 52, "community_name": "Community 52", "source_file": "src/server/plans-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_plans_store_atomicwritejson", "label": "atomicWriteJson()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "atomicWriteJson()", "community": 52, "community_name": "Community 52", "source_file": "src/server/plans-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_plans_store_safereadjson", "label": "safeReadJSON()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "safeReadJSON()", "community": 52, "community_name": "Community 52", "source_file": "src/server/plans-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_plans_store_safereadtext", "label": "safeReadText()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "safeReadText()", "community": 52, "community_name": "Community 52", "source_file": "src/server/plans-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_plans_store_genid", "label": "genId()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "genId()", "community": 52, "community_name": "Community 52", "source_file": "src/server/plans-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_plans_store_emptycanvas", "label": "emptyCanvas()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "emptyCanvas()", "community": 52, "community_name": "Community 52", "source_file": "src/server/plans-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_plans_store_defaultmeta", "label": "defaultMeta()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "defaultMeta()", "community": 52, "community_name": "Community 52", "source_file": "src/server/plans-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_plans_store_plansstore", "label": "plansStore", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "plansStore", "community": 17, "community_name": "Community 17", "source_file": "src/server/plans-store.mjs", "file_type": "code", "degree": 3}, {"id": "server_plans_store_sanitizecanvas", "label": "sanitizeCanvas()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "sanitizeCanvas()", "community": 52, "community_name": "Community 52", "source_file": "src/server/plans-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_plans_store_sanitizeelement", "label": "sanitizeElement()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "sanitizeElement()", "community": 52, "community_name": "Community 52", "source_file": "src/server/plans-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_projects_store", "label": "projects-store.mjs", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 20.2, "font": {"size": 12, "color": "#ffffff"}, "title": "projects-store.mjs", "community": 34, "community_name": "Community 34", "source_file": "src/server/projects-store.mjs", "file_type": "code", "degree": 31}, {"id": "server_projects_store_home", "label": "HOME", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HOME", "community": 34, "community_name": "Community 34", "source_file": "src/server/projects-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_projects_store_opencode_dir", "label": "OPENCODE_DIR", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "OPENCODE_DIR", "community": 34, "community_name": "Community 34", "source_file": "src/server/projects-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_projects_store_projects_file", "label": "PROJECTS_FILE", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PROJECTS_FILE", "community": 34, "community_name": "Community 34", "source_file": "src/server/projects-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_projects_store_projects_dir", "label": "PROJECTS_DIR", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PROJECTS_DIR", "community": 34, "community_name": "Community 34", "source_file": "src/server/projects-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_projects_store_project_root_markers", "label": "PROJECT_ROOT_MARKERS", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PROJECT_ROOT_MARKERS", "community": 34, "community_name": "Community 34", "source_file": "src/server/projects-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_projects_store_safereadjson", "label": "safeReadJSON()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "safeReadJSON()", "community": 34, "community_name": "Community 34", "source_file": "src/server/projects-store.mjs", "file_type": "code", "degree": 3}, {"id": "server_projects_store_ensureprojectsdir", "label": "ensureProjectsDir()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ensureProjectsDir()", "community": 34, "community_name": "Community 34", "source_file": "src/server/projects-store.mjs", "file_type": "code", "degree": 3}, {"id": "server_projects_store_atomicwritejson", "label": "atomicWriteJson()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "atomicWriteJson()", "community": 34, "community_name": "Community 34", "source_file": "src/server/projects-store.mjs", "file_type": "code", "degree": 3}, {"id": "server_projects_store_loadregistry", "label": "loadRegistry()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "loadRegistry()", "community": 34, "community_name": "Community 34", "source_file": "src/server/projects-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_projects_store_saveregistry", "label": "saveRegistry()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "saveRegistry()", "community": 34, "community_name": "Community 34", "source_file": "src/server/projects-store.mjs", "file_type": "code", "degree": 3}, {"id": "server_projects_store_projectidfrompath", "label": "projectIdFromPath()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "projectIdFromPath()", "community": 34, "community_name": "Community 34", "source_file": "src/server/projects-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_projects_store_projectdir", "label": "projectDir()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "projectDir()", "community": 34, "community_name": "Community 34", "source_file": "src/server/projects-store.mjs", "file_type": "code", "degree": 3}, {"id": "server_projects_store_readprojectfile", "label": "readProjectFile()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "readProjectFile()", "community": 34, "community_name": "Community 34", "source_file": "src/server/projects-store.mjs", "file_type": "code", "degree": 3}, {"id": "server_projects_store_writeprojectfile", "label": "writeProjectFile()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "writeProjectFile()", "community": 34, "community_name": "Community 34", "source_file": "src/server/projects-store.mjs", "file_type": "code", "degree": 4}, {"id": "server_projects_store_uniqueprojectid", "label": "uniqueProjectId()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "uniqueProjectId()", "community": 34, "community_name": "Community 34", "source_file": "src/server/projects-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_projects_store_projectsstore", "label": "projectsStore", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "projectsStore", "community": 17, "community_name": "Community 17", "source_file": "src/server/projects-store.mjs", "file_type": "code", "degree": 16}, {"id": "server_providers_store", "label": "providers-store.mjs", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "providers-store.mjs", "community": 32, "community_name": "Community 32", "source_file": "src/server/providers-store.mjs", "file_type": "code", "degree": 16}, {"id": "server_providers_store_home", "label": "HOME", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HOME", "community": 32, "community_name": "Community 32", "source_file": "src/server/providers-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_providers_store_opencode_json", "label": "OPENCODE_JSON", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "OPENCODE_JSON", "community": 32, "community_name": "Community 32", "source_file": "src/server/providers-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_providers_store_opencode_agents_dir", "label": "OPENCODE_AGENTS_DIR", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "OPENCODE_AGENTS_DIR", "community": 32, "community_name": "Community 32", "source_file": "src/server/providers-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_providers_store_safereadjson", "label": "safeReadJSON()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "safeReadJSON()", "community": 32, "community_name": "Community 32", "source_file": "src/server/providers-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_providers_store_atomicwritejson", "label": "atomicWriteJson()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "atomicWriteJson()", "community": 32, "community_name": "Community 32", "source_file": "src/server/providers-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_providers_store_loadconfig", "label": "loadConfig()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "loadConfig()", "community": 32, "community_name": "Community 32", "source_file": "src/server/providers-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_providers_store_saveconfig", "label": "saveConfig()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "saveConfig()", "community": 32, "community_name": "Community 32", "source_file": "src/server/providers-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_providers_store_mask", "label": "mask()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "mask()", "community": 32, "community_name": "Community 32", "source_file": "src/server/providers-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_providers_store_unmask", "label": "unmask()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "unmask()", "community": 32, "community_name": "Community 32", "source_file": "src/server/providers-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_providers_store_providersstore", "label": "providersStore", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "providersStore", "community": 32, "community_name": "Community 32", "source_file": "src/server/providers-store.mjs", "file_type": "code", "degree": 6}, {"id": "server_providers_store_mcpsstore", "label": "mcpsStore", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "mcpsStore", "community": 32, "community_name": "Community 32", "source_file": "src/server/providers-store.mjs", "file_type": "code", "degree": 5}, {"id": "routes_v2_auth", "label": "auth.mjs", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "auth.mjs", "community": 36, "community_name": "Community 36", "source_file": "src/server/routes-v2/auth.mjs", "file_type": "code", "degree": 2}, {"id": "routes_v2_auth_v2basicauth", "label": "v2BasicAuth()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "v2BasicAuth()", "community": 36, "community_name": "Community 36", "source_file": "src/server/routes-v2/auth.mjs", "file_type": "code", "degree": 3}, {"id": "routes_v2_events", "label": "events.mjs", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "events.mjs", "community": 36, "community_name": "Community 36", "source_file": "src/server/routes-v2/events.mjs", "file_type": "code", "degree": 3}, {"id": "routes_v2_events_createv2eventsrouter", "label": "createV2EventsRouter()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "createV2EventsRouter()", "community": 36, "community_name": "Community 36", "source_file": "src/server/routes-v2/events.mjs", "file_type": "code", "degree": 3}, {"id": "routes_v2_events_writesseevent", "label": "writeSseEvent()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "writeSseEvent()", "community": 36, "community_name": "Community 36", "source_file": "src/server/routes-v2/events.mjs", "file_type": "code", "degree": 1}, {"id": "routes_v2_health", "label": "health.mjs", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "health.mjs", "community": 36, "community_name": "Community 36", "source_file": "src/server/routes-v2/health.mjs", "file_type": "code", "degree": 2}, {"id": "routes_v2_health_createv2healthrouter", "label": "createV2HealthRouter()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "createV2HealthRouter()", "community": 36, "community_name": "Community 36", "source_file": "src/server/routes-v2/health.mjs", "file_type": "code", "degree": 3}, {"id": "routes_v2_index", "label": "index.mjs", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.6, "font": {"size": 12, "color": "#ffffff"}, "title": "index.mjs", "community": 36, "community_name": "Community 36", "source_file": "src/server/routes-v2/index.mjs", "file_type": "code", "degree": 14}, {"id": "routes_v2_index_filename", "label": "__filename", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "__filename", "community": 36, "community_name": "Community 36", "source_file": "src/server/routes-v2/index.mjs", "file_type": "code", "degree": 1}, {"id": "routes_v2_index_dirname", "label": "__dirname", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "__dirname", "community": 36, "community_name": "Community 36", "source_file": "src/server/routes-v2/index.mjs", "file_type": "code", "degree": 1}, {"id": "routes_v2_index_findopenapispec", "label": "findOpenApiSpec()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "findOpenApiSpec()", "community": 36, "community_name": "Community 36", "source_file": "src/server/routes-v2/index.mjs", "file_type": "code", "degree": 1}, {"id": "routes_v2_index_createv2router", "label": "createV2Router()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "createV2Router()", "community": 36, "community_name": "Community 36", "source_file": "src/server/routes-v2/index.mjs", "file_type": "code", "degree": 9}, {"id": "routes_v2_sessions", "label": "sessions.mjs", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "sessions.mjs", "community": 36, "community_name": "Community 36", "source_file": "src/server/routes-v2/sessions.mjs", "file_type": "code", "degree": 3}, {"id": "routes_v2_sessions_createv2sessionsrouter", "label": "createV2SessionsRouter()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "createV2SessionsRouter()", "community": 36, "community_name": "Community 36", "source_file": "src/server/routes-v2/sessions.mjs", "file_type": "code", "degree": 3}, {"id": "routes_v2_sessions_randomulid", "label": "randomUlid()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "randomUlid()", "community": 36, "community_name": "Community 36", "source_file": "src/server/routes-v2/sessions.mjs", "file_type": "code", "degree": 1}, {"id": "routes_shared", "label": "_shared.mjs", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 25.5, "font": {"size": 12, "color": "#ffffff"}, "title": "_shared.mjs", "community": 18, "community_name": "Community 18", "source_file": "src/server/routes/_shared.mjs", "file_type": "code", "degree": 47}, {"id": "routes_shared_dash_package_json", "label": "DASH_PACKAGE_JSON", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DASH_PACKAGE_JSON", "community": 18, "community_name": "Community 18", "source_file": "src/server/routes/_shared.mjs", "file_type": "code", "degree": 1}, {"id": "routes_shared_readdashboardversion", "label": "readDashboardVersion()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "readDashboardVersion()", "community": 18, "community_name": "Community 18", "source_file": "src/server/routes/_shared.mjs", "file_type": "code", "degree": 1}, {"id": "routes_shared_dashboard_version", "label": "DASHBOARD_VERSION", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DASHBOARD_VERSION", "community": 18, "community_name": "Community 18", "source_file": "src/server/routes/_shared.mjs", "file_type": "code", "degree": 1}, {"id": "routes_shared_home", "label": "HOME", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HOME", "community": 18, "community_name": "Community 18", "source_file": "src/server/routes/_shared.mjs", "file_type": "code", "degree": 1}, {"id": "routes_shared_opencode_dir", "label": "OPENCODE_DIR", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "OPENCODE_DIR", "community": 18, "community_name": "Community 18", "source_file": "src/server/routes/_shared.mjs", "file_type": "code", "degree": 1}, {"id": "routes_shared_opencode_json", "label": "OPENCODE_JSON", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "OPENCODE_JSON", "community": 32, "community_name": "Community 32", "source_file": "src/server/routes/_shared.mjs", "file_type": "code", "degree": 3}, {"id": "routes_shared_bizar_home", "label": "BIZAR_HOME", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "BIZAR_HOME", "community": 42, "community_name": "Community 42", "source_file": "src/server/routes/_shared.mjs", "file_type": "code", "degree": 2}, {"id": "routes_shared_settings_file", "label": "SETTINGS_FILE", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SETTINGS_FILE", "community": 18, "community_name": "Community 18", "source_file": "src/server/routes/_shared.mjs", "file_type": "code", "degree": 1}, {"id": "routes_shared_safereadjson", "label": "safeReadJSON()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "safeReadJSON()", "community": 32, "community_name": "Community 32", "source_file": "src/server/routes/_shared.mjs", "file_type": "code", "degree": 5}, {"id": "routes_shared_safereadtext", "label": "safeReadText()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "safeReadText()", "community": 18, "community_name": "Community 18", "source_file": "src/server/routes/_shared.mjs", "file_type": "code", "degree": 1}, {"id": "routes_shared_atomicwritejson", "label": "atomicWriteJson()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "atomicWriteJson()", "community": 18, "community_name": "Community 18", "source_file": "src/server/routes/_shared.mjs", "file_type": "code", "degree": 3}, {"id": "routes_shared_default_settings", "label": "DEFAULT_SETTINGS", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "DEFAULT_SETTINGS", "community": 18, "community_name": "Community 18", "source_file": "src/server/routes/_shared.mjs", "file_type": "code", "degree": 2}, {"id": "routes_shared_mergesettings", "label": "mergeSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "mergeSettings()", "community": 18, "community_name": "Community 18", "source_file": "src/server/routes/_shared.mjs", "file_type": "code", "degree": 3}, {"id": "routes_shared_readsettings", "label": "readSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "readSettings()", "community": 18, "community_name": "Community 18", "source_file": "src/server/routes/_shared.mjs", "file_type": "code", "degree": 12}, {"id": "routes_shared_writesettings", "label": "writeSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "writeSettings()", "community": 18, "community_name": "Community 18", "source_file": "src/server/routes/_shared.mjs", "file_type": "code", "degree": 6}, {"id": "routes_shared_validatedashboardpath", "label": "validateDashboardPath()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "validateDashboardPath()", "community": 18, "community_name": "Community 18", "source_file": "src/server/routes/_shared.mjs", "file_type": "code", "degree": 2}, {"id": "routes_shared_validatedashboardsettings", "label": "validateDashboardSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "validateDashboardSettings()", "community": 18, "community_name": "Community 18", "source_file": "src/server/routes/_shared.mjs", "file_type": "code", "degree": 3}, {"id": "routes_shared_parsefrontmatter", "label": "parseFrontmatter()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "parseFrontmatter()", "community": 18, "community_name": "Community 18", "source_file": "src/server/routes/_shared.mjs", "file_type": "code", "degree": 1}, {"id": "routes_shared_readactiveprojectid", "label": "readActiveProjectId()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "readActiveProjectId()", "community": 50, "community_name": "Community 50", "source_file": "src/server/routes/_shared.mjs", "file_type": "code", "degree": 4}, {"id": "routes_shared_wrap", "label": "wrap()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 26.2, "font": {"size": 12, "color": "#ffffff"}, "title": "wrap()", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/_shared.mjs", "file_type": "code", "degree": 49}, {"id": "routes_activity", "label": "activity.mjs", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "activity.mjs", "community": 18, "community_name": "Community 18", "source_file": "src/server/routes/activity.mjs", "file_type": "code", "degree": 8}, {"id": "routes_activity_hidden_path", "label": "HIDDEN_PATH", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HIDDEN_PATH", "community": 18, "community_name": "Community 18", "source_file": "src/server/routes/activity.mjs", "file_type": "code", "degree": 1}, {"id": "routes_activity_readhidden", "label": "readHidden()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "readHidden()", "community": 18, "community_name": "Community 18", "source_file": "src/server/routes/activity.mjs", "file_type": "code", "degree": 1}, {"id": "routes_activity_writehidden", "label": "writeHidden()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "writeHidden()", "community": 18, "community_name": "Community 18", "source_file": "src/server/routes/activity.mjs", "file_type": "code", "degree": 1}, {"id": "routes_activity_activitykey", "label": "activityKey()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "activityKey()", "community": 18, "community_name": "Community 18", "source_file": "src/server/routes/activity.mjs", "file_type": "code", "degree": 1}, {"id": "routes_activity_createactivityrouter", "label": "createActivityRouter()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createActivityRouter()", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/activity.mjs", "file_type": "code", "degree": 4}, {"id": "routes_agents", "label": "agents.mjs", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "agents.mjs", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/agents.mjs", "file_type": "code", "degree": 7}, {"id": "routes_agents_createagentsrouter", "label": "createAgentsRouter()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createAgentsRouter()", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/agents.mjs", "file_type": "code", "degree": 4}, {"id": "routes_artifacts", "label": "artifacts.mjs", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "artifacts.mjs", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/artifacts.mjs", "file_type": "code", "degree": 6}, {"id": "routes_artifacts_createartifactsrouter", "label": "createArtifactsRouter()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createArtifactsRouter()", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/artifacts.mjs", "file_type": "code", "degree": 4}, {"id": "routes_auth", "label": "auth.mjs", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "auth.mjs", "community": 29, "community_name": "Community 29", "source_file": "src/server/routes/auth.mjs", "file_type": "code", "degree": 10}, {"id": "routes_auth_createauthrouter", "label": "createAuthRouter()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createAuthRouter()", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/auth.mjs", "file_type": "code", "degree": 4}, {"id": "routes_background", "label": "background.mjs", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "background.mjs", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/background.mjs", "file_type": "code", "degree": 4}, {"id": "routes_background_createbackgroundrouter", "label": "createBackgroundRouter()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createBackgroundRouter()", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/background.mjs", "file_type": "code", "degree": 4}, {"id": "routes_chat", "label": "chat.mjs", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "chat.mjs", "community": 31, "community_name": "Community 31", "source_file": "src/server/routes/chat.mjs", "file_type": "code", "degree": 12}, {"id": "routes_chat_createchatrouter", "label": "createChatRouter()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createChatRouter()", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/chat.mjs", "file_type": "code", "degree": 4}, {"id": "routes_config", "label": "config.mjs", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "config.mjs", "community": 32, "community_name": "Community 32", "source_file": "src/server/routes/config.mjs", "file_type": "code", "degree": 10}, {"id": "routes_config_createconfigrouter", "label": "createConfigRouter()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createConfigRouter()", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/config.mjs", "file_type": "code", "degree": 4}, {"id": "routes_diagnostics", "label": "diagnostics.mjs", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "diagnostics.mjs", "community": 42, "community_name": "Community 42", "source_file": "src/server/routes/diagnostics.mjs", "file_type": "code", "degree": 7}, {"id": "routes_diagnostics_creatediagnosticsrouter", "label": "createDiagnosticsRouter()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createDiagnosticsRouter()", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/diagnostics.mjs", "file_type": "code", "degree": 4}, {"id": "routes_dialogs", "label": "dialogs.mjs", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "dialogs.mjs", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/dialogs.mjs", "file_type": "code", "degree": 6}, {"id": "routes_dialogs_createdialogsrouter", "label": "createDialogsRouter()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createDialogsRouter()", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/dialogs.mjs", "file_type": "code", "degree": 4}, {"id": "routes_fs", "label": "fs.mjs", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fs.mjs", "community": 60, "community_name": "Community 60", "source_file": "src/server/routes/fs.mjs", "file_type": "code", "degree": 13}, {"id": "routes_fs_buildallowedroots", "label": "buildAllowedRoots()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "buildAllowedRoots()", "community": 60, "community_name": "Community 60", "source_file": "src/server/routes/fs.mjs", "file_type": "code", "degree": 3}, {"id": "routes_fs_ishiddenentry", "label": "isHiddenEntry()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isHiddenEntry()", "community": 60, "community_name": "Community 60", "source_file": "src/server/routes/fs.mjs", "file_type": "code", "degree": 1}, {"id": "routes_fs_sortentries", "label": "sortEntries()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "sortEntries()", "community": 60, "community_name": "Community 60", "source_file": "src/server/routes/fs.mjs", "file_type": "code", "degree": 1}, {"id": "routes_fs_validatedirname", "label": "validateDirName()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "validateDirName()", "community": 60, "community_name": "Community 60", "source_file": "src/server/routes/fs.mjs", "file_type": "code", "degree": 1}, {"id": "routes_fs_resolvetargetunderparent", "label": "resolveTargetUnderParent()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "resolveTargetUnderParent()", "community": 60, "community_name": "Community 60", "source_file": "src/server/routes/fs.mjs", "file_type": "code", "degree": 2}, {"id": "routes_fs_createfsrouter", "label": "createFsRouter()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createFsRouter()", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/fs.mjs", "file_type": "code", "degree": 4}, {"id": "routes_history", "label": "history.mjs", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "history.mjs", "community": 17, "community_name": "Community 17", "source_file": "src/server/routes/history.mjs", "file_type": "code", "degree": 10}, {"id": "routes_history_createhistoryrouter", "label": "createHistoryRouter()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createHistoryRouter()", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/history.mjs", "file_type": "code", "degree": 4}, {"id": "routes_misc", "label": "misc.mjs", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "misc.mjs", "community": 43, "community_name": "Community 43", "source_file": "src/server/routes/misc.mjs", "file_type": "code", "degree": 12}, {"id": "routes_misc_createmiscrouter", "label": "createMiscRouter()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createMiscRouter()", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/misc.mjs", "file_type": "code", "degree": 4}, {"id": "routes_mods", "label": "mods.mjs", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "mods.mjs", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/mods.mjs", "file_type": "code", "degree": 6}, {"id": "routes_mods_createmodsrouter", "label": "createModsRouter()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createModsRouter()", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/mods.mjs", "file_type": "code", "degree": 4}, {"id": "routes_notifications", "label": "notifications.mjs", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "notifications.mjs", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/notifications.mjs", "file_type": "code", "degree": 6}, {"id": "routes_notifications_createnotificationsrouter", "label": "createNotificationsRouter()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createNotificationsRouter()", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/notifications.mjs", "file_type": "code", "degree": 4}, {"id": "routes_overview", "label": "overview.mjs", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 16.6, "font": {"size": 12, "color": "#ffffff"}, "title": "overview.mjs", "community": 32, "community_name": "Community 32", "source_file": "src/server/routes/overview.mjs", "file_type": "code", "degree": 20}, {"id": "routes_overview_createoverviewrouter", "label": "createOverviewRouter()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createOverviewRouter()", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/overview.mjs", "file_type": "code", "degree": 4}, {"id": "routes_pair", "label": "pair.mjs", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "pair.mjs", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/pair.mjs", "file_type": "code", "degree": 6}, {"id": "routes_pair_createpairrouter", "label": "createPairRouter()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createPairRouter()", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/pair.mjs", "file_type": "code", "degree": 4}, {"id": "routes_plans", "label": "plans.mjs", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "plans.mjs", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/plans.mjs", "file_type": "code", "degree": 8}, {"id": "routes_plans_createplansrouter", "label": "createPlansRouter()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createPlansRouter()", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/plans.mjs", "file_type": "code", "degree": 4}, {"id": "routes_projects", "label": "projects.mjs", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "projects.mjs", "community": 50, "community_name": "Community 50", "source_file": "src/server/routes/projects.mjs", "file_type": "code", "degree": 16}, {"id": "routes_projects_createprojectsrouter", "label": "createProjectsRouter()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createProjectsRouter()", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/projects.mjs", "file_type": "code", "degree": 4}, {"id": "routes_providers", "label": "providers.mjs", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "providers.mjs", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/providers.mjs", "file_type": "code", "degree": 6}, {"id": "routes_providers_createprovidersrouter", "label": "createProvidersRouter()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createProvidersRouter()", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/providers.mjs", "file_type": "code", "degree": 4}, {"id": "routes_schedules", "label": "schedules.mjs", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "schedules.mjs", "community": 50, "community_name": "Community 50", "source_file": "src/server/routes/schedules.mjs", "file_type": "code", "degree": 9}, {"id": "routes_schedules_createschedulesrouter", "label": "createSchedulesRouter()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createSchedulesRouter()", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/schedules.mjs", "file_type": "code", "degree": 4}, {"id": "routes_settings", "label": "settings.mjs", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "settings.mjs", "community": 18, "community_name": "Community 18", "source_file": "src/server/routes/settings.mjs", "file_type": "code", "degree": 10}, {"id": "routes_settings_createsettingsrouter", "label": "createSettingsRouter()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createSettingsRouter()", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/settings.mjs", "file_type": "code", "degree": 4}, {"id": "routes_skills", "label": "skills.mjs", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "skills.mjs", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/skills.mjs", "file_type": "code", "degree": 6}, {"id": "routes_skills_createskillsrouter", "label": "createSkillsRouter()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createSkillsRouter()", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/skills.mjs", "file_type": "code", "degree": 4}, {"id": "routes_tasks", "label": "tasks.mjs", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 16.3, "font": {"size": 12, "color": "#ffffff"}, "title": "tasks.mjs", "community": 17, "community_name": "Community 17", "source_file": "src/server/routes/tasks.mjs", "file_type": "code", "degree": 19}, {"id": "routes_tasks_createtasksrouter", "label": "createTasksRouter()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createTasksRouter()", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/tasks.mjs", "file_type": "code", "degree": 4}, {"id": "routes_themes", "label": "themes.mjs", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "themes.mjs", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/themes.mjs", "file_type": "code", "degree": 4}, {"id": "routes_themes_createthemesrouter", "label": "createThemesRouter()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createThemesRouter()", "community": 1, "community_name": "Community 1", "source_file": "src/server/routes/themes.mjs", "file_type": "code", "degree": 4}, {"id": "server_schedules_runner", "label": "schedules-runner.mjs", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.9, "font": {"size": 12, "color": "#ffffff"}, "title": "schedules-runner.mjs", "community": 46, "community_name": "Community 46", "source_file": "src/server/schedules-runner.mjs", "file_type": "code", "degree": 18}, {"id": "server_schedules_runner_home", "label": "HOME", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HOME", "community": 46, "community_name": "Community 46", "source_file": "src/server/schedules-runner.mjs", "file_type": "code", "degree": 1}, {"id": "server_schedules_runner_log_dir", "label": "LOG_DIR", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "LOG_DIR", "community": 46, "community_name": "Community 46", "source_file": "src/server/schedules-runner.mjs", "file_type": "code", "degree": 1}, {"id": "server_schedules_runner_log_file", "label": "LOG_FILE", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "LOG_FILE", "community": 46, "community_name": "Community 46", "source_file": "src/server/schedules-runner.mjs", "file_type": "code", "degree": 1}, {"id": "server_schedules_runner_logline", "label": "logLine()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "logLine()", "community": 46, "community_name": "Community 46", "source_file": "src/server/schedules-runner.mjs", "file_type": "code", "degree": 2}, {"id": "server_schedules_runner_parsecommandtarget", "label": "parseCommandTarget()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "parseCommandTarget()", "community": 46, "community_name": "Community 46", "source_file": "src/server/schedules-runner.mjs", "file_type": "code", "degree": 1}, {"id": "server_schedules_runner_isprivatehostname", "label": "isPrivateHostname()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "isPrivateHostname()", "community": 46, "community_name": "Community 46", "source_file": "src/server/schedules-runner.mjs", "file_type": "code", "degree": 2}, {"id": "server_schedules_runner_validatewebhooktarget", "label": "validateWebhookTarget()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "validateWebhookTarget()", "community": 46, "community_name": "Community 46", "source_file": "src/server/schedules-runner.mjs", "file_type": "code", "degree": 3}, {"id": "server_schedules_runner_runaction", "label": "runAction()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "runAction()", "community": 46, "community_name": "Community 46", "source_file": "src/server/schedules-runner.mjs", "file_type": "code", "degree": 4}, {"id": "server_schedules_runner_runagentaction", "label": "runAgentAction()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "runAgentAction()", "community": 46, "community_name": "Community 46", "source_file": "src/server/schedules-runner.mjs", "file_type": "code", "degree": 3}, {"id": "server_schedules_runner_checkbudget", "label": "checkBudget()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "checkBudget()", "community": 46, "community_name": "Community 46", "source_file": "src/server/schedules-runner.mjs", "file_type": "code", "degree": 3}, {"id": "server_schedules_runner_runcommand", "label": "runCommand()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "runCommand()", "community": 46, "community_name": "Community 46", "source_file": "src/server/schedules-runner.mjs", "file_type": "code", "degree": 2}, {"id": "server_schedules_runner_runwebhook", "label": "runWebhook()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "runWebhook()", "community": 46, "community_name": "Community 46", "source_file": "src/server/schedules-runner.mjs", "file_type": "code", "degree": 3}, {"id": "server_schedules_runner_schedulesrunner", "label": "schedulesRunner", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "schedulesRunner", "community": 46, "community_name": "Community 46", "source_file": "src/server/schedules-runner.mjs", "file_type": "code", "degree": 2}, {"id": "server_schedules_store", "label": "schedules-store.mjs", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "schedules-store.mjs", "community": 50, "community_name": "Community 50", "source_file": "src/server/schedules-store.mjs", "file_type": "code", "degree": 17}, {"id": "server_schedules_store_safereadjson", "label": "safeReadJSON()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "safeReadJSON()", "community": 50, "community_name": "Community 50", "source_file": "src/server/schedules-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_schedules_store_genid", "label": "genId()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "genId()", "community": 50, "community_name": "Community 50", "source_file": "src/server/schedules-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_schedules_store_parseinterval", "label": "parseInterval()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "parseInterval()", "community": 50, "community_name": "Community 50", "source_file": "src/server/schedules-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_schedules_store_computenextrun", "label": "computeNextRun()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "computeNextRun()", "community": 50, "community_name": "Community 50", "source_file": "src/server/schedules-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_schedules_store_loadschedules", "label": "loadSchedules()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "loadSchedules()", "community": 50, "community_name": "Community 50", "source_file": "src/server/schedules-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_schedules_store_atomicwritejson", "label": "atomicWriteJson()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "atomicWriteJson()", "community": 50, "community_name": "Community 50", "source_file": "src/server/schedules-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_schedules_store_saveschedules", "label": "saveSchedules()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "saveSchedules()", "community": 50, "community_name": "Community 50", "source_file": "src/server/schedules-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_schedules_store_schedulesstore", "label": "schedulesStore", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "schedulesStore", "community": 50, "community_name": "Community 50", "source_file": "src/server/schedules-store.mjs", "file_type": "code", "degree": 8}, {"id": "server_search_store", "label": "search-store.mjs", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 16.3, "font": {"size": 12, "color": "#ffffff"}, "title": "search-store.mjs", "community": 43, "community_name": "Community 43", "source_file": "src/server/search-store.mjs", "file_type": "code", "degree": 19}, {"id": "server_search_store_home", "label": "HOME", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HOME", "community": 43, "community_name": "Community 43", "source_file": "src/server/search-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_search_store_settings_file", "label": "SETTINGS_FILE", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SETTINGS_FILE", "community": 43, "community_name": "Community 43", "source_file": "src/server/search-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_search_store_settings_descriptions", "label": "SETTINGS_DESCRIPTIONS", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SETTINGS_DESCRIPTIONS", "community": 43, "community_name": "Community 43", "source_file": "src/server/search-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_search_store_flattensettings", "label": "flattenSettings()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "flattenSettings()", "community": 43, "community_name": "Community 43", "source_file": "src/server/search-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_search_store_readsettings", "label": "readSettings()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "readSettings()", "community": 43, "community_name": "Community 43", "source_file": "src/server/search-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_search_store_scoreitem", "label": "scoreItem()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "scoreItem()", "community": 43, "community_name": "Community 43", "source_file": "src/server/search-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_search_store_findplans", "label": "findPlans()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "findPlans()", "community": 43, "community_name": "Community 43", "source_file": "src/server/search-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_search_store_searchstore", "label": "searchStore", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "searchStore", "community": 43, "community_name": "Community 43", "source_file": "src/server/search-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_serve_info", "label": "serve-info.mjs", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "serve-info.mjs", "community": 31, "community_name": "Community 31", "source_file": "src/server/serve-info.mjs", "file_type": "code", "degree": 21}, {"id": "server_serve_info_home", "label": "HOME", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HOME", "community": 31, "community_name": "Community 31", "source_file": "src/server/serve-info.mjs", "file_type": "code", "degree": 1}, {"id": "server_serve_info_serve_info_files", "label": "SERVE_INFO_FILES", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SERVE_INFO_FILES", "community": 31, "community_name": "Community 31", "source_file": "src/server/serve-info.mjs", "file_type": "code", "degree": 1}, {"id": "server_serve_info_readserveinfo", "label": "readServeInfo()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "readServeInfo()", "community": 44, "community_name": "Community 44", "source_file": "src/server/serve-info.mjs", "file_type": "code", "degree": 10}, {"id": "server_serve_info_issafeservebaseurl", "label": "isSafeServeBaseUrl()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "isSafeServeBaseUrl()", "community": 31, "community_name": "Community 31", "source_file": "src/server/serve-info.mjs", "file_type": "code", "degree": 3}, {"id": "server_serve_info_isloopbackhostname", "label": "isLoopbackHostname()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "isLoopbackHostname()", "community": 31, "community_name": "Community 31", "source_file": "src/server/serve-info.mjs", "file_type": "code", "degree": 2}, {"id": "server_serve_info_abortsession", "label": "abortSession()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "abortSession()", "community": 44, "community_name": "Community 44", "source_file": "src/server/serve-info.mjs", "file_type": "code", "degree": 3}, {"id": "server_serve_info_listopencodesessions", "label": "listOpencodeSessions()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "listOpencodeSessions()", "community": 31, "community_name": "Community 31", "source_file": "src/server/serve-info.mjs", "file_type": "code", "degree": 1}, {"id": "server_serve_info_buildauthheader", "label": "buildAuthHeader()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "buildAuthHeader()", "community": 31, "community_name": "Community 31", "source_file": "src/server/serve-info.mjs", "file_type": "code", "degree": 4}, {"id": "server_serve_info_createopencodesession", "label": "createOpencodeSession()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "createOpencodeSession()", "community": 31, "community_name": "Community 31", "source_file": "src/server/serve-info.mjs", "file_type": "code", "degree": 5}, {"id": "server_serve_info_sendopencodeprompt", "label": "sendOpencodePrompt()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "sendOpencodePrompt()", "community": 31, "community_name": "Community 31", "source_file": "src/server/serve-info.mjs", "file_type": "code", "degree": 5}, {"id": "server_serve_info_listopencodemessages", "label": "listOpencodeMessages()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "listOpencodeMessages()", "community": 31, "community_name": "Community 31", "source_file": "src/server/serve-info.mjs", "file_type": "code", "degree": 6}, {"id": "server_serve_info_extractcontentfromopencodemessage", "label": "extractContentFromOpencodeMessage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "extractContentFromOpencodeMessage()", "community": 31, "community_name": "Community 31", "source_file": "src/server/serve-info.mjs", "file_type": "code", "degree": 7}, {"id": "server_serve_info_stripthinkingtags", "label": "stripThinkingTags()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "stripThinkingTags()", "community": 31, "community_name": "Community 31", "source_file": "src/server/serve-info.mjs", "file_type": "code", "degree": 3}, {"id": "server_serve_info_finalizetext", "label": "finalizeText()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "finalizeText()", "community": 31, "community_name": "Community 31", "source_file": "src/server/serve-info.mjs", "file_type": "code", "degree": 3}, {"id": "server_serve_info_normalizeopencodemessage", "label": "normalizeOpencodeMessage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "normalizeOpencodeMessage()", "community": 31, "community_name": "Community 31", "source_file": "src/server/serve-info.mjs", "file_type": "code", "degree": 3}, {"id": "server_serve_info_pingopencodeserve", "label": "pingOpencodeServe()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "pingOpencodeServe()", "community": 30, "community_name": "Community 30", "source_file": "src/server/serve-info.mjs", "file_type": "code", "degree": 3}, {"id": "server_server", "label": "server.mjs", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 30.4, "font": {"size": 12, "color": "#ffffff"}, "title": "server.mjs", "community": 9, "community_name": "Community 9", "source_file": "src/server/server.mjs", "file_type": "code", "degree": 62}, {"id": "server_server_installprocesshandlers", "label": "installProcessHandlers()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "installProcessHandlers()", "community": 9, "community_name": "Community 9", "source_file": "src/server/server.mjs", "file_type": "code", "degree": 2}, {"id": "server_server_dirname", "label": "__dirname", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "__dirname", "community": 9, "community_name": "Community 9", "source_file": "src/server/server.mjs", "file_type": "code", "degree": 1}, {"id": "server_server_dist_dir", "label": "DIST_DIR", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DIST_DIR", "community": 9, "community_name": "Community 9", "source_file": "src/server/server.mjs", "file_type": "code", "degree": 1}, {"id": "server_server_currentbroadcast", "label": "currentBroadcast()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "currentBroadcast()", "community": 9, "community_name": "Community 9", "source_file": "src/server/server.mjs", "file_type": "code", "degree": 2}, {"id": "server_server_broadcast", "label": "broadcast()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "broadcast()", "community": 9, "community_name": "Community 9", "source_file": "src/server/server.mjs", "file_type": "code", "degree": 4}, {"id": "server_server_publishv2event", "label": "publishV2Event()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "publishV2Event()", "community": 9, "community_name": "Community 9", "source_file": "src/server/server.mjs", "file_type": "code", "degree": 1}, {"id": "server_server_getv2auth", "label": "getV2Auth()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getV2Auth()", "community": 9, "community_name": "Community 9", "source_file": "src/server/server.mjs", "file_type": "code", "degree": 1}, {"id": "server_server_shouldredirecttomobile", "label": "shouldRedirectToMobile()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "shouldRedirectToMobile()", "community": 9, "community_name": "Community 9", "source_file": "src/server/server.mjs", "file_type": "code", "degree": 1}, {"id": "server_server_mobileredirecttarget", "label": "mobileRedirectTarget()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "mobileRedirectTarget()", "community": 9, "community_name": "Community 9", "source_file": "src/server/server.mjs", "file_type": "code", "degree": 1}, {"id": "server_server_createserver", "label": "createServer()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.9, "font": {"size": 12, "color": "#ffffff"}, "title": "createServer()", "community": 9, "community_name": "Community 9", "source_file": "src/server/server.mjs", "file_type": "code", "degree": 18}, {"id": "server_server_buildsnapshotsafe", "label": "buildSnapshotSafe()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "buildSnapshotSafe()", "community": 9, "community_name": "Community 9", "source_file": "src/server/server.mjs", "file_type": "code", "degree": 2}, {"id": "server_server_buildsnapshot", "label": "buildSnapshot()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "buildSnapshot()", "community": 9, "community_name": "Community 9", "source_file": "src/server/server.mjs", "file_type": "code", "degree": 3}, {"id": "server_server_existssafe", "label": "existsSafe()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "existsSafe()", "community": 9, "community_name": "Community 9", "source_file": "src/server/server.mjs", "file_type": "code", "degree": 2}, {"id": "server_server_dirnamesafe", "label": "dirnameSafe()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "dirnameSafe()", "community": 9, "community_name": "Community 9", "source_file": "src/server/server.mjs", "file_type": "code", "degree": 2}, {"id": "server_server_rendernotbuiltpage", "label": "renderNotBuiltPage()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderNotBuiltPage()", "community": 9, "community_name": "Community 9", "source_file": "src/server/server.mjs", "file_type": "code", "degree": 1}, {"id": "server_settings_store", "label": "settings-store.mjs", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "settings-store.mjs", "community": 18, "community_name": "Community 18", "source_file": "src/server/settings-store.mjs", "file_type": "code", "degree": 4}, {"id": "server_settings_store_settings_path", "label": "SETTINGS_PATH", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SETTINGS_PATH", "community": 18, "community_name": "Community 18", "source_file": "src/server/settings-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_settings_store_readpluginoptions", "label": "readPluginOptions()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "readPluginOptions()", "community": 18, "community_name": "Community 18", "source_file": "src/server/settings-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_settings_store_writepluginoptions", "label": "writePluginOptions()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "writePluginOptions()", "community": 18, "community_name": "Community 18", "source_file": "src/server/settings-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_skills_store", "label": "skills-store.mjs", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "skills-store.mjs", "community": 51, "community_name": "Community 51", "source_file": "src/server/skills-store.mjs", "file_type": "code", "degree": 12}, {"id": "server_skills_store_execfilep", "label": "execFileP", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "execFileP", "community": 51, "community_name": "Community 51", "source_file": "src/server/skills-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_skills_store_home", "label": "HOME", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HOME", "community": 51, "community_name": "Community 51", "source_file": "src/server/skills-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_skills_store_state_file", "label": "STATE_FILE", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "STATE_FILE", "community": 51, "community_name": "Community 51", "source_file": "src/server/skills-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_skills_store_atomicwritejson", "label": "atomicWriteJson()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "atomicWriteJson()", "community": 51, "community_name": "Community 51", "source_file": "src/server/skills-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_skills_store_categories", "label": "CATEGORIES", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CATEGORIES", "community": 51, "community_name": "Community 51", "source_file": "src/server/skills-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_skills_store_loadstate", "label": "loadState()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "loadState()", "community": 51, "community_name": "Community 51", "source_file": "src/server/skills-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_skills_store_savestate", "label": "saveState()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "saveState()", "community": 51, "community_name": "Community 51", "source_file": "src/server/skills-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_skills_store_safeexec", "label": "safeExec()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "safeExec()", "community": 51, "community_name": "Community 51", "source_file": "src/server/skills-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_skills_store_mockcatalog", "label": "mockCatalog()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "mockCatalog()", "community": 51, "community_name": "Community 51", "source_file": "src/server/skills-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_skills_store_infercategoryfromtags", "label": "inferCategoryFromTags()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "inferCategoryFromTags()", "community": 51, "community_name": "Community 51", "source_file": "src/server/skills-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_skills_store_skillsstore", "label": "skillsStore", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "skillsStore", "community": 51, "community_name": "Community 51", "source_file": "src/server/skills-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_state", "label": "state.mjs", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "state.mjs", "community": 9, "community_name": "Community 9", "source_file": "src/server/state.mjs", "file_type": "code", "degree": 5}, {"id": "server_state_home", "label": "HOME", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HOME", "community": 9, "community_name": "Community 9", "source_file": "src/server/state.mjs", "file_type": "code", "degree": 1}, {"id": "server_state_createstate", "label": "createState()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "createState()", "community": 9, "community_name": "Community 9", "source_file": "src/server/state.mjs", "file_type": "code", "degree": 3}, {"id": "server_tailscale_store", "label": "tailscale-store.mjs", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "tailscale-store.mjs", "community": 58, "community_name": "Community 58", "source_file": "src/server/tailscale-store.mjs", "file_type": "code", "degree": 9}, {"id": "server_tailscale_store_execfilep", "label": "execFileP", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "execFileP", "community": 58, "community_name": "Community 58", "source_file": "src/server/tailscale-store.mjs", "file_type": "code", "degree": 3}, {"id": "server_tailscale_store_home", "label": "HOME", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HOME", "community": 58, "community_name": "Community 58", "source_file": "src/server/tailscale-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_tailscale_store_settings_file", "label": "SETTINGS_FILE", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SETTINGS_FILE", "community": 58, "community_name": "Community 58", "source_file": "src/server/tailscale-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_tailscale_store_loadsettings", "label": "loadSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "loadSettings()", "community": 58, "community_name": "Community 58", "source_file": "src/server/tailscale-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_tailscale_store_savesettings", "label": "saveSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "saveSettings()", "community": 58, "community_name": "Community 58", "source_file": "src/server/tailscale-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_tailscale_store_tailscaleversion", "label": "tailscaleVersion()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "tailscaleVersion()", "community": 58, "community_name": "Community 58", "source_file": "src/server/tailscale-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_tailscale_store_tailscalestatus", "label": "tailscaleStatus()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "tailscaleStatus()", "community": 58, "community_name": "Community 58", "source_file": "src/server/tailscale-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_tailscale_store_tailscalestore", "label": "tailscaleStore", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "tailscaleStore", "community": 58, "community_name": "Community 58", "source_file": "src/server/tailscale-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_task_delegator", "label": "task-delegator.mjs", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 17.3, "font": {"size": 12, "color": "#ffffff"}, "title": "task-delegator.mjs", "community": 21, "community_name": "Community 21", "source_file": "src/server/task-delegator.mjs", "file_type": "code", "degree": 22}, {"id": "server_task_delegator_home", "label": "HOME", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HOME", "community": 21, "community_name": "Community 21", "source_file": "src/server/task-delegator.mjs", "file_type": "code", "degree": 1}, {"id": "server_task_delegator_bg_dirs", "label": "BG_DIRS", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BG_DIRS", "community": 21, "community_name": "Community 21", "source_file": "src/server/task-delegator.mjs", "file_type": "code", "degree": 1}, {"id": "server_task_delegator_genid", "label": "genId()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "genId()", "community": 21, "community_name": "Community 21", "source_file": "src/server/task-delegator.mjs", "file_type": "code", "degree": 1}, {"id": "server_task_delegator_genshorthex", "label": "genShortHex()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "genShortHex()", "community": 21, "community_name": "Community 21", "source_file": "src/server/task-delegator.mjs", "file_type": "code", "degree": 1}, {"id": "server_task_delegator_buildprompttext", "label": "buildPromptText()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "buildPromptText()", "community": 21, "community_name": "Community 21", "source_file": "src/server/task-delegator.mjs", "file_type": "code", "degree": 1}, {"id": "server_task_delegator_writebgstatefile", "label": "writeBgStateFile()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "writeBgStateFile()", "community": 21, "community_name": "Community 21", "source_file": "src/server/task-delegator.mjs", "file_type": "code", "degree": 2}, {"id": "server_task_delegator_pickbgdir", "label": "pickBgDir()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "pickBgDir()", "community": 21, "community_name": "Community 21", "source_file": "src/server/task-delegator.mjs", "file_type": "code", "degree": 2}, {"id": "server_task_delegator_autotitlefromcontent", "label": "autoTitleFromContent()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "autoTitleFromContent()", "community": 0, "community_name": "Community 0", "source_file": "src/server/task-delegator.mjs", "file_type": "code", "degree": 2}, {"id": "server_task_delegator_taskdelegator", "label": "taskDelegator", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "taskDelegator", "community": 21, "community_name": "Community 21", "source_file": "src/server/task-delegator.mjs", "file_type": "code", "degree": 1}, {"id": "server_task_delegator_readbginstance", "label": "readBgInstance()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "readBgInstance()", "community": 21, "community_name": "Community 21", "source_file": "src/server/task-delegator.mjs", "file_type": "code", "degree": 1}, {"id": "server_task_delegator_listbginstances", "label": "listBgInstances()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "listBgInstances()", "community": 21, "community_name": "Community 21", "source_file": "src/server/task-delegator.mjs", "file_type": "code", "degree": 1}, {"id": "server_tasks_store", "label": "tasks-store.mjs", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 18.6, "font": {"size": 12, "color": "#ffffff"}, "title": "tasks-store.mjs", "community": 17, "community_name": "Community 17", "source_file": "src/server/tasks-store.mjs", "file_type": "code", "degree": 26}, {"id": "server_tasks_store_home", "label": "HOME", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HOME", "community": 17, "community_name": "Community 17", "source_file": "src/server/tasks-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_tasks_store_legacy_file", "label": "LEGACY_FILE", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "LEGACY_FILE", "community": 17, "community_name": "Community 17", "source_file": "src/server/tasks-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_tasks_store_atomicwritejson", "label": "atomicWriteJson()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "atomicWriteJson()", "community": 17, "community_name": "Community 17", "source_file": "src/server/tasks-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_tasks_store_waiters", "label": "_waiters", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "_waiters", "community": 17, "community_name": "Community 17", "source_file": "src/server/tasks-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_tasks_store_acquire", "label": "acquire()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "acquire()", "community": 17, "community_name": "Community 17", "source_file": "src/server/tasks-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_tasks_store_release", "label": "release()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "release()", "community": 17, "community_name": "Community 17", "source_file": "src/server/tasks-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_tasks_store_safereadjson", "label": "safeReadJSON()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "safeReadJSON()", "community": 17, "community_name": "Community 17", "source_file": "src/server/tasks-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_tasks_store_genid", "label": "genId()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "genId()", "community": 17, "community_name": "Community 17", "source_file": "src/server/tasks-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_tasks_store_genshortid", "label": "genShortId()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "genShortId()", "community": 17, "community_name": "Community 17", "source_file": "src/server/tasks-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_tasks_store_resolvestoragefile", "label": "resolveStorageFile()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "resolveStorageFile()", "community": 17, "community_name": "Community 17", "source_file": "src/server/tasks-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_tasks_store_loadstore", "label": "loadStore()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "loadStore()", "community": 17, "community_name": "Community 17", "source_file": "src/server/tasks-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_tasks_store_savestore", "label": "saveStore()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "saveStore()", "community": 17, "community_name": "Community 17", "source_file": "src/server/tasks-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_tasks_store_appendactivity", "label": "appendActivity()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "appendActivity()", "community": 17, "community_name": "Community 17", "source_file": "src/server/tasks-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_tasks_store_tasksstore", "label": "tasksStore", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "tasksStore", "community": 17, "community_name": "Community 17", "source_file": "src/server/tasks-store.mjs", "file_type": "code", "degree": 11}, {"id": "server_tui", "label": "tui.mjs", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 19.6, "font": {"size": 12, "color": "#ffffff"}, "title": "tui.mjs", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 29}, {"id": "server_tui_filename", "label": "__filename", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "__filename", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 1}, {"id": "server_tui_dirname", "label": "__dirname", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "__dirname", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 1}, {"id": "server_tui_home", "label": "HOME", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HOME", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 1}, {"id": "server_tui_readdashboardversion", "label": "readDashboardVersion()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "readDashboardVersion()", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 1}, {"id": "server_tui_readdashboardtoken", "label": "readDashboardToken()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "readDashboardToken()", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 2}, {"id": "server_tui_version", "label": "VERSION", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "VERSION", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 1}, {"id": "server_tui_tabs", "label": "TABS", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TABS", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 1}, {"id": "server_tui_truncate", "label": "truncate()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "truncate()", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 7}, {"id": "server_tui_pad", "label": "pad()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "pad()", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 11}, {"id": "server_tui_jsontotags", "label": "jsonToTags()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "jsonToTags()", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 2}, {"id": "server_tui_shorttime", "label": "shortTime()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "shortTime()", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 3}, {"id": "server_tui_relativetime", "label": "relativeTime()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "relativeTime()", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 2}, {"id": "server_tui_prompt", "label": "prompt()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "prompt()", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 1}, {"id": "server_tui_confirm", "label": "confirm()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "confirm()", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 1}, {"id": "server_tui_toast", "label": "toast()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "toast()", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 1}, {"id": "server_tui_makeapiclient", "label": "makeApiClient()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "makeApiClient()", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 2}, {"id": "server_tui_renderoverview", "label": "renderOverview()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderOverview()", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 4}, {"id": "server_tui_renderchat", "label": "renderChat()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderChat()", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 4}, {"id": "server_tui_renderagents", "label": "renderAgents()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "renderAgents()", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 2}, {"id": "server_tui_card", "label": "card()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "card()", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 4}, {"id": "server_tui_renderplans", "label": "renderPlans()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "renderPlans()", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 3}, {"id": "server_tui_renderprojects", "label": "renderProjects()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "renderProjects()", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 3}, {"id": "server_tui_rendertasks", "label": "renderTasks()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderTasks()", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 1}, {"id": "server_tui_renderconfig", "label": "renderConfig()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "renderConfig()", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 3}, {"id": "server_tui_rendersettings", "label": "renderSettings()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "renderSettings()", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 3}, {"id": "server_tui_renderers", "label": "RENDERERS", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "RENDERERS", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 1}, {"id": "server_tui_dashboardsocket", "label": "DashboardSocket", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DashboardSocket", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 5}, {"id": "server_tui_dashboardsocket_constructor", "label": ".constructor()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 2}, {"id": "server_tui_dashboardsocket_connect", "label": ".connect()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".connect()", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 4}, {"id": "server_tui_dashboardsocket_schedulereconnect", "label": ".scheduleReconnect()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".scheduleReconnect()", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 2}, {"id": "server_tui_dashboardsocket_close", "label": ".close()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".close()", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 1}, {"id": "server_tui_launchtui", "label": "launchTui()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "launchTui()", "community": 0, "community_name": "Community 0", "source_file": "src/server/tui.mjs", "file_type": "code", "degree": 3}, {"id": "server_update_store", "label": "update-store.mjs", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "update-store.mjs", "community": 43, "community_name": "Community 43", "source_file": "src/server/update-store.mjs", "file_type": "code", "degree": 4}, {"id": "server_update_store_require", "label": "require", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "require", "community": 14, "community_name": "Community 14", "source_file": "src/server/update-store.mjs", "file_type": "code", "degree": 4}, {"id": "server_update_store_packages", "label": "PACKAGES", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PACKAGES", "community": 43, "community_name": "Community 43", "source_file": "src/server/update-store.mjs", "file_type": "code", "degree": 1}, {"id": "server_update_store_updatestore", "label": "updateStore", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "updateStore", "community": 43, "community_name": "Community 43", "source_file": "src/server/update-store.mjs", "file_type": "code", "degree": 2}, {"id": "server_v2_auth_file", "label": "v2-auth-file.mjs", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "v2-auth-file.mjs", "community": 53, "community_name": "Community 53", "source_file": "src/server/v2-auth-file.mjs", "file_type": "code", "degree": 8}, {"id": "server_v2_auth_file_home", "label": "HOME", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HOME", "community": 53, "community_name": "Community 53", "source_file": "src/server/v2-auth-file.mjs", "file_type": "code", "degree": 1}, {"id": "server_v2_auth_file_default_dir", "label": "DEFAULT_DIR", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DEFAULT_DIR", "community": 53, "community_name": "Community 53", "source_file": "src/server/v2-auth-file.mjs", "file_type": "code", "degree": 1}, {"id": "server_v2_auth_file_default_file", "label": "DEFAULT_FILE", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DEFAULT_FILE", "community": 53, "community_name": "Community 53", "source_file": "src/server/v2-auth-file.mjs", "file_type": "code", "degree": 1}, {"id": "server_v2_auth_file_legacy_file", "label": "LEGACY_FILE", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "LEGACY_FILE", "community": 53, "community_name": "Community 53", "source_file": "src/server/v2-auth-file.mjs", "file_type": "code", "degree": 1}, {"id": "server_v2_auth_file_loadorcreateauth", "label": "loadOrCreateAuth()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "loadOrCreateAuth()", "community": 53, "community_name": "Community 53", "source_file": "src/server/v2-auth-file.mjs", "file_type": "code", "degree": 6}, {"id": "server_v2_auth_file_writeauthfile", "label": "writeAuthFile()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "writeAuthFile()", "community": 53, "community_name": "Community 53", "source_file": "src/server/v2-auth-file.mjs", "file_type": "code", "degree": 2}, {"id": "server_v2_event_bus", "label": "v2-event-bus.mjs", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "v2-event-bus.mjs", "community": 64, "community_name": "Community 64", "source_file": "src/server/v2-event-bus.mjs", "file_type": "code", "degree": 3}, {"id": "server_v2_event_bus_v2eventbus", "label": "V2EventBus", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "V2EventBus", "community": 64, "community_name": "Community 64", "source_file": "src/server/v2-event-bus.mjs", "file_type": "code", "degree": 8}, {"id": "server_v2_event_bus_v2eventbus_constructor", "label": ".constructor()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 64, "community_name": "Community 64", "source_file": "src/server/v2-event-bus.mjs", "file_type": "code", "degree": 1}, {"id": "server_v2_event_bus_v2eventbus_publish", "label": ".publish()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".publish()", "community": 64, "community_name": "Community 64", "source_file": "src/server/v2-event-bus.mjs", "file_type": "code", "degree": 1}, {"id": "server_v2_event_bus_v2eventbus_subscribe", "label": ".subscribe()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".subscribe()", "community": 64, "community_name": "Community 64", "source_file": "src/server/v2-event-bus.mjs", "file_type": "code", "degree": 1}, {"id": "server_v2_event_bus_v2eventbus_size", "label": ".size()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".size()", "community": 64, "community_name": "Community 64", "source_file": "src/server/v2-event-bus.mjs", "file_type": "code", "degree": 1}, {"id": "server_v2_event_bus_v2eventbus_buffersize", "label": ".bufferSize()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".bufferSize()", "community": 64, "community_name": "Community 64", "source_file": "src/server/v2-event-bus.mjs", "file_type": "code", "degree": 1}, {"id": "server_watcher", "label": "watcher.mjs", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "watcher.mjs", "community": 9, "community_name": "Community 9", "source_file": "src/server/watcher.mjs", "file_type": "code", "degree": 2}, {"id": "server_watcher_createwatcher", "label": "createWatcher()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "createWatcher()", "community": 9, "community_name": "Community 9", "source_file": "src/server/watcher.mjs", "file_type": "code", "degree": 3}, {"id": "web_app", "label": "App.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 32.7, "font": {"size": 12, "color": "#ffffff"}, "title": "App.tsx", "community": 6, "community_name": "Community 6", "source_file": "src/web/App.tsx", "file_type": "code", "degree": 69}, {"id": "web_app_viewprops", "label": "ViewProps", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ViewProps", "community": 6, "community_name": "Community 6", "source_file": "src/web/App.tsx", "file_type": "code", "degree": 1}, {"id": "web_app_crossviewstate", "label": "CrossViewState", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CrossViewState", "community": 6, "community_name": "Community 6", "source_file": "src/web/App.tsx", "file_type": "code", "degree": 1}, {"id": "web_app_view_map", "label": "VIEW_MAP", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "VIEW_MAP", "community": 6, "community_name": "Community 6", "source_file": "src/web/App.tsx", "file_type": "code", "degree": 1}, {"id": "web_app_app", "label": "App()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "App()", "community": 6, "community_name": "Community 6", "source_file": "src/web/App.tsx", "file_type": "code", "degree": 2}, {"id": "web_app_shell", "label": "Shell()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Shell()", "community": 6, "community_name": "Community 6", "source_file": "src/web/App.tsx", "file_type": "code", "degree": 3}, {"id": "web_mobileapp", "label": "MobileApp.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 27.1, "font": {"size": 12, "color": "#ffffff"}, "title": "MobileApp.tsx", "community": 25, "community_name": "Community 25", "source_file": "src/web/MobileApp.tsx", "file_type": "code", "degree": 52}, {"id": "web_mobileapp_maintabid", "label": "MainTabId", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MainTabId", "community": 25, "community_name": "Community 25", "source_file": "src/web/MobileApp.tsx", "file_type": "code", "degree": 1}, {"id": "web_mobileapp_mobileview", "label": "MobileView", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileView", "community": 25, "community_name": "Community 25", "source_file": "src/web/MobileApp.tsx", "file_type": "code", "degree": 1}, {"id": "web_mobileapp_main_tabs", "label": "MAIN_TABS", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MAIN_TABS", "community": 25, "community_name": "Community 25", "source_file": "src/web/MobileApp.tsx", "file_type": "code", "degree": 1}, {"id": "web_mobileapp_parsenotificationtarget", "label": "parseNotificationTarget()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "parseNotificationTarget()", "community": 25, "community_name": "Community 25", "source_file": "src/web/MobileApp.tsx", "file_type": "code", "degree": 1}, {"id": "web_mobileapp_mobileapp", "label": "MobileApp()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileApp()", "community": 25, "community_name": "Community 25", "source_file": "src/web/MobileApp.tsx", "file_type": "code", "degree": 2}, {"id": "components_artifactviewer", "label": "ArtifactViewer.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "ArtifactViewer.tsx", "community": 5, "community_name": "Community 5", "source_file": "src/web/components/ArtifactViewer.tsx", "file_type": "code", "degree": 15}, {"id": "components_artifactviewer_artifactmeta", "label": "ArtifactMeta", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ArtifactMeta", "community": 5, "community_name": "Community 5", "source_file": "src/web/components/ArtifactViewer.tsx", "file_type": "code", "degree": 1}, {"id": "components_artifactviewer_props", "label": "Props", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 5, "community_name": "Community 5", "source_file": "src/web/components/ArtifactViewer.tsx", "file_type": "code", "degree": 1}, {"id": "components_artifactviewer_artifactviewer", "label": "ArtifactViewer()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ArtifactViewer()", "community": 5, "community_name": "Community 5", "source_file": "src/web/components/ArtifactViewer.tsx", "file_type": "code", "degree": 3}, {"id": "components_artifactviewer_formatbytes", "label": "formatBytes()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "formatBytes()", "community": 5, "community_name": "Community 5", "source_file": "src/web/components/ArtifactViewer.tsx", "file_type": "code", "degree": 2}, {"id": "components_artifactviewer_fetchrawcontent", "label": "fetchRawContent()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchRawContent()", "community": 5, "community_name": "Community 5", "source_file": "src/web/components/ArtifactViewer.tsx", "file_type": "code", "degree": 2}, {"id": "components_artifactviewer_getartifactcontenturl", "label": "getArtifactContentUrl()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getArtifactContentUrl()", "community": 5, "community_name": "Community 5", "source_file": "src/web/components/ArtifactViewer.tsx", "file_type": "code", "degree": 4}, {"id": "components_artifactviewer_openartifactviewer", "label": "openArtifactViewer()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "openArtifactViewer()", "community": 5, "community_name": "Community 5", "source_file": "src/web/components/ArtifactViewer.tsx", "file_type": "code", "degree": 4}, {"id": "components_auditdialog", "label": "AuditDialog.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AuditDialog.tsx", "community": 24, "community_name": "Community 24", "source_file": "src/web/components/AuditDialog.tsx", "file_type": "code", "degree": 8}, {"id": "components_auditdialog_auditdialogprops", "label": "AuditDialogProps", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AuditDialogProps", "community": 24, "community_name": "Community 24", "source_file": "src/web/components/AuditDialog.tsx", "file_type": "code", "degree": 1}, {"id": "components_auditdialog_auditresult", "label": "AuditResult", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AuditResult", "community": 24, "community_name": "Community 24", "source_file": "src/web/components/AuditDialog.tsx", "file_type": "code", "degree": 1}, {"id": "components_auditdialog_auditdialog", "label": "AuditDialog()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "AuditDialog()", "community": 38, "community_name": "Community 38", "source_file": "src/web/components/AuditDialog.tsx", "file_type": "code", "degree": 2}, {"id": "components_bgstatusbadge", "label": "BgStatusBadge.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BgStatusBadge.tsx", "community": 3, "community_name": "Community 3", "source_file": "src/web/components/BgStatusBadge.tsx", "file_type": "code", "degree": 8}, {"id": "components_bgstatusbadge_status_kind", "label": "STATUS_KIND", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "STATUS_KIND", "community": 3, "community_name": "Community 3", "source_file": "src/web/components/BgStatusBadge.tsx", "file_type": "code", "degree": 1}, {"id": "components_bgstatusbadge_status_labels", "label": "STATUS_LABELS", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "STATUS_LABELS", "community": 3, "community_name": "Community 3", "source_file": "src/web/components/BgStatusBadge.tsx", "file_type": "code", "degree": 1}, {"id": "components_bgstatusbadge_bgstatusbadge", "label": "BgStatusBadge()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "BgStatusBadge()", "community": 3, "community_name": "Community 3", "source_file": "src/web/components/BgStatusBadge.tsx", "file_type": "code", "degree": 3}, {"id": "components_button", "label": "Button.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 19.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Button.tsx", "community": 10, "community_name": "Community 10", "source_file": "src/web/components/Button.tsx", "file_type": "code", "degree": 29}, {"id": "components_button_buttonvariant", "label": "ButtonVariant", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ButtonVariant", "community": 10, "community_name": "Community 10", "source_file": "src/web/components/Button.tsx", "file_type": "code", "degree": 1}, {"id": "components_button_buttonsize", "label": "ButtonSize", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ButtonSize", "community": 10, "community_name": "Community 10", "source_file": "src/web/components/Button.tsx", "file_type": "code", "degree": 1}, {"id": "components_button_buttonprops", "label": "ButtonProps", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ButtonProps", "community": 10, "community_name": "Community 10", "source_file": "src/web/components/Button.tsx", "file_type": "code", "degree": 1}, {"id": "components_button_button", "label": "Button", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 17.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Button", "community": 10, "community_name": "Community 10", "source_file": "src/web/components/Button.tsx", "file_type": "code", "degree": 24}, {"id": "components_canvascontextmenu", "label": "CanvasContextMenu.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CanvasContextMenu.tsx", "community": 11, "community_name": "Community 11", "source_file": "src/web/components/CanvasContextMenu.tsx", "file_type": "code", "degree": 5}, {"id": "components_canvascontextmenu_contextmenuitem", "label": "ContextMenuItem", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ContextMenuItem", "community": 11, "community_name": "Community 11", "source_file": "src/web/components/CanvasContextMenu.tsx", "file_type": "code", "degree": 1}, {"id": "components_canvascontextmenu_contextmenustate", "label": "ContextMenuState", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ContextMenuState", "community": 11, "community_name": "Community 11", "source_file": "src/web/components/CanvasContextMenu.tsx", "file_type": "code", "degree": 2}, {"id": "components_canvascontextmenu_props", "label": "Props", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 11, "community_name": "Community 11", "source_file": "src/web/components/CanvasContextMenu.tsx", "file_type": "code", "degree": 1}, {"id": "components_canvascontextmenu_canvascontextmenu", "label": "CanvasContextMenu()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "CanvasContextMenu()", "community": 11, "community_name": "Community 11", "source_file": "src/web/components/CanvasContextMenu.tsx", "file_type": "code", "degree": 2}, {"id": "components_card", "label": "Card.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 16.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Card.tsx", "community": 2, "community_name": "Community 2", "source_file": "src/web/components/Card.tsx", "file_type": "code", "degree": 20}, {"id": "components_card_cardprops", "label": "CardProps", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CardProps", "community": 2, "community_name": "Community 2", "source_file": "src/web/components/Card.tsx", "file_type": "code", "degree": 1}, {"id": "components_card_card", "label": "Card()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Card()", "community": 2, "community_name": "Community 2", "source_file": "src/web/components/Card.tsx", "file_type": "code", "degree": 16}, {"id": "components_card_cardtitle", "label": "CardTitle()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "CardTitle()", "community": 2, "community_name": "Community 2", "source_file": "src/web/components/Card.tsx", "file_type": "code", "degree": 15}, {"id": "components_card_cardmeta", "label": "CardMeta()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CardMeta()", "community": 2, "community_name": "Community 2", "source_file": "src/web/components/Card.tsx", "file_type": "code", "degree": 11}, {"id": "components_collapsiblesection", "label": "CollapsibleSection.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CollapsibleSection.tsx", "community": 3, "community_name": "Community 3", "source_file": "src/web/components/CollapsibleSection.tsx", "file_type": "code", "degree": 4}, {"id": "components_collapsiblesection_props", "label": "Props", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 3, "community_name": "Community 3", "source_file": "src/web/components/CollapsibleSection.tsx", "file_type": "code", "degree": 1}, {"id": "components_collapsiblesection_collapsiblesection", "label": "CollapsibleSection()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "CollapsibleSection()", "community": 3, "community_name": "Community 3", "source_file": "src/web/components/CollapsibleSection.tsx", "file_type": "code", "degree": 2}, {"id": "components_commanddialog", "label": "CommandDialog.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "CommandDialog.tsx", "community": 38, "community_name": "Community 38", "source_file": "src/web/components/CommandDialog.tsx", "file_type": "code", "degree": 15}, {"id": "components_commanddialog_genericdialog", "label": "GenericDialog()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GenericDialog()", "community": 38, "community_name": "Community 38", "source_file": "src/web/components/CommandDialog.tsx", "file_type": "code", "degree": 1}, {"id": "components_commanddialog_commanddialog", "label": "CommandDialog()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "CommandDialog()", "community": 38, "community_name": "Community 38", "source_file": "src/web/components/CommandDialog.tsx", "file_type": "code", "degree": 2}, {"id": "components_emptystate", "label": "EmptyState.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "EmptyState.tsx", "community": 2, "community_name": "Community 2", "source_file": "src/web/components/EmptyState.tsx", "file_type": "code", "degree": 15}, {"id": "components_emptystate_emptystateprops", "label": "EmptyStateProps", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "EmptyStateProps", "community": 2, "community_name": "Community 2", "source_file": "src/web/components/EmptyState.tsx", "file_type": "code", "degree": 1}, {"id": "components_emptystate_emptystate", "label": "EmptyState()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "EmptyState()", "community": 2, "community_name": "Community 2", "source_file": "src/web/components/EmptyState.tsx", "file_type": "code", "degree": 13}, {"id": "components_filebrowser", "label": "FileBrowser.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "FileBrowser.tsx", "community": 26, "community_name": "Community 26", "source_file": "src/web/components/FileBrowser.tsx", "file_type": "code", "degree": 21}, {"id": "components_filebrowser_filebrowserprops", "label": "FileBrowserProps", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "FileBrowserProps", "community": 26, "community_name": "Community 26", "source_file": "src/web/components/FileBrowser.tsx", "file_type": "code", "degree": 1}, {"id": "components_filebrowser_cacheentry", "label": "CacheEntry", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CacheEntry", "community": 26, "community_name": "Community 26", "source_file": "src/web/components/FileBrowser.tsx", "file_type": "code", "degree": 1}, {"id": "components_filebrowser_cache", "label": "_cache", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "_cache", "community": 26, "community_name": "Community 26", "source_file": "src/web/components/FileBrowser.tsx", "file_type": "code", "degree": 1}, {"id": "components_filebrowser_cacheget", "label": "cacheGet()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "cacheGet()", "community": 26, "community_name": "Community 26", "source_file": "src/web/components/FileBrowser.tsx", "file_type": "code", "degree": 1}, {"id": "components_filebrowser_cacheset", "label": "cacheSet()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "cacheSet()", "community": 26, "community_name": "Community 26", "source_file": "src/web/components/FileBrowser.tsx", "file_type": "code", "degree": 1}, {"id": "components_filebrowser_pathsegments", "label": "pathSegments()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "pathSegments()", "community": 26, "community_name": "Community 26", "source_file": "src/web/components/FileBrowser.tsx", "file_type": "code", "degree": 2}, {"id": "components_filebrowser_sortentries", "label": "sortEntries()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "sortEntries()", "community": 26, "community_name": "Community 26", "source_file": "src/web/components/FileBrowser.tsx", "file_type": "code", "degree": 2}, {"id": "components_filebrowser_validatedirname", "label": "validateDirName()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "validateDirName()", "community": 26, "community_name": "Community 26", "source_file": "src/web/components/FileBrowser.tsx", "file_type": "code", "degree": 1}, {"id": "components_filebrowser_filebrowser", "label": "FileBrowser()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "FileBrowser()", "community": 26, "community_name": "Community 26", "source_file": "src/web/components/FileBrowser.tsx", "file_type": "code", "degree": 5}, {"id": "components_filebrowser_treenode", "label": "TreeNode()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TreeNode()", "community": 26, "community_name": "Community 26", "source_file": "src/web/components/FileBrowser.tsx", "file_type": "code", "degree": 1}, {"id": "components_filebrowser_treeskeleton", "label": "TreeSkeleton()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TreeSkeleton()", "community": 26, "community_name": "Community 26", "source_file": "src/web/components/FileBrowser.tsx", "file_type": "code", "degree": 1}, {"id": "components_filebrowser_flatskeleton", "label": "FlatSkeleton()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "FlatSkeleton()", "community": 26, "community_name": "Community 26", "source_file": "src/web/components/FileBrowser.tsx", "file_type": "code", "degree": 1}, {"id": "components_helpdialog", "label": "HelpDialog.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "HelpDialog.tsx", "community": 10, "community_name": "Community 10", "source_file": "src/web/components/HelpDialog.tsx", "file_type": "code", "degree": 6}, {"id": "components_helpdialog_helpdialogprops", "label": "HelpDialogProps", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HelpDialogProps", "community": 10, "community_name": "Community 10", "source_file": "src/web/components/HelpDialog.tsx", "file_type": "code", "degree": 1}, {"id": "components_helpdialog_cmdentry", "label": "CmdEntry", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CmdEntry", "community": 10, "community_name": "Community 10", "source_file": "src/web/components/HelpDialog.tsx", "file_type": "code", "degree": 1}, {"id": "components_helpdialog_helpdialog", "label": "HelpDialog()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "HelpDialog()", "community": 38, "community_name": "Community 38", "source_file": "src/web/components/HelpDialog.tsx", "file_type": "code", "degree": 2}, {"id": "components_killconfirmdialog", "label": "KillConfirmDialog.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "KillConfirmDialog.tsx", "community": 7, "community_name": "Community 7", "source_file": "src/web/components/KillConfirmDialog.tsx", "file_type": "code", "degree": 9}, {"id": "components_killconfirmdialog_killconfirmdialogprops", "label": "KillConfirmDialogProps", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "KillConfirmDialogProps", "community": 7, "community_name": "Community 7", "source_file": "src/web/components/KillConfirmDialog.tsx", "file_type": "code", "degree": 1}, {"id": "components_killconfirmdialog_killconfirmdialog", "label": "KillConfirmDialog()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "KillConfirmDialog()", "community": 7, "community_name": "Community 7", "source_file": "src/web/components/KillConfirmDialog.tsx", "file_type": "code", "degree": 1}, {"id": "components_killconfirmdialog_openkillconfirmdialog", "label": "openKillConfirmDialog()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "openKillConfirmDialog()", "community": 7, "community_name": "Community 7", "source_file": "src/web/components/KillConfirmDialog.tsx", "file_type": "code", "degree": 3}, {"id": "components_modal", "label": "Modal.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 17.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Modal.tsx", "community": 7, "community_name": "Community 7", "source_file": "src/web/components/Modal.tsx", "file_type": "code", "degree": 24}, {"id": "components_modal_modalprops", "label": "ModalProps", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ModalProps", "community": 7, "community_name": "Community 7", "source_file": "src/web/components/Modal.tsx", "file_type": "code", "degree": 1}, {"id": "components_modal_modalapi", "label": "ModalApi", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ModalApi", "community": 7, "community_name": "Community 7", "source_file": "src/web/components/Modal.tsx", "file_type": "code", "degree": 2}, {"id": "components_modal_modalcontext", "label": "ModalContext", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ModalContext", "community": 7, "community_name": "Community 7", "source_file": "src/web/components/Modal.tsx", "file_type": "code", "degree": 1}, {"id": "components_modal_focusable_selector", "label": "FOCUSABLE_SELECTOR", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "FOCUSABLE_SELECTOR", "community": 7, "community_name": "Community 7", "source_file": "src/web/components/Modal.tsx", "file_type": "code", "degree": 1}, {"id": "components_modal_usemodal", "label": "useModal()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 20.9, "font": {"size": 12, "color": "#ffffff"}, "title": "useModal()", "community": 6, "community_name": "Community 6", "source_file": "src/web/components/Modal.tsx", "file_type": "code", "degree": 33}, {"id": "components_modal_openmodal", "label": "OpenModal", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "OpenModal", "community": 7, "community_name": "Community 7", "source_file": "src/web/components/Modal.tsx", "file_type": "code", "degree": 1}, {"id": "components_modal_modalprovider", "label": "ModalProvider()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ModalProvider()", "community": 7, "community_name": "Community 7", "source_file": "src/web/components/Modal.tsx", "file_type": "code", "degree": 2}, {"id": "components_modal_modalshell", "label": "ModalShell()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ModalShell()", "community": 7, "community_name": "Community 7", "source_file": "src/web/components/Modal.tsx", "file_type": "code", "degree": 1}, {"id": "components_notifications", "label": "Notifications.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Notifications.tsx", "community": 10, "community_name": "Community 10", "source_file": "src/web/components/Notifications.tsx", "file_type": "code", "degree": 17}, {"id": "components_notifications_icons", "label": "ICONS", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ICONS", "community": 10, "community_name": "Community 10", "source_file": "src/web/components/Notifications.tsx", "file_type": "code", "degree": 1}, {"id": "components_notifications_props", "label": "Props", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 10, "community_name": "Community 10", "source_file": "src/web/components/Notifications.tsx", "file_type": "code", "degree": 1}, {"id": "components_notifications_notifications", "label": "Notifications()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Notifications()", "community": 6, "community_name": "Community 6", "source_file": "src/web/components/Notifications.tsx", "file_type": "code", "degree": 5}, {"id": "components_plancreatedialog", "label": "PlanCreateDialog.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PlanCreateDialog.tsx", "community": 38, "community_name": "Community 38", "source_file": "src/web/components/PlanCreateDialog.tsx", "file_type": "code", "degree": 8}, {"id": "components_plancreatedialog_plancreatedialogprops", "label": "PlanCreateDialogProps", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PlanCreateDialogProps", "community": 38, "community_name": "Community 38", "source_file": "src/web/components/PlanCreateDialog.tsx", "file_type": "code", "degree": 1}, {"id": "components_plancreatedialog_known_templates", "label": "KNOWN_TEMPLATES", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "KNOWN_TEMPLATES", "community": 38, "community_name": "Community 38", "source_file": "src/web/components/PlanCreateDialog.tsx", "file_type": "code", "degree": 1}, {"id": "components_plancreatedialog_plancreatedialog", "label": "PlanCreateDialog()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "PlanCreateDialog()", "community": 38, "community_name": "Community 38", "source_file": "src/web/components/PlanCreateDialog.tsx", "file_type": "code", "degree": 2}, {"id": "components_planlistdialog", "label": "PlanListDialog.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PlanListDialog.tsx", "community": 10, "community_name": "Community 10", "source_file": "src/web/components/PlanListDialog.tsx", "file_type": "code", "degree": 5}, {"id": "components_planlistdialog_planlistdialogprops", "label": "PlanListDialogProps", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PlanListDialogProps", "community": 10, "community_name": "Community 10", "source_file": "src/web/components/PlanListDialog.tsx", "file_type": "code", "degree": 1}, {"id": "components_planlistdialog_planlistdialog", "label": "PlanListDialog()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "PlanListDialog()", "community": 38, "community_name": "Community 38", "source_file": "src/web/components/PlanListDialog.tsx", "file_type": "code", "degree": 2}, {"id": "components_searchmodal", "label": "SearchModal.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.6, "font": {"size": 12, "color": "#ffffff"}, "title": "SearchModal.tsx", "community": 24, "community_name": "Community 24", "source_file": "src/web/components/SearchModal.tsx", "file_type": "code", "degree": 14}, {"id": "components_searchmodal_props", "label": "Props", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 24, "community_name": "Community 24", "source_file": "src/web/components/SearchModal.tsx", "file_type": "code", "degree": 1}, {"id": "components_searchmodal_scopes", "label": "SCOPES", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SCOPES", "community": 24, "community_name": "Community 24", "source_file": "src/web/components/SearchModal.tsx", "file_type": "code", "degree": 1}, {"id": "components_searchmodal_result_type_by_scope", "label": "RESULT_TYPE_BY_SCOPE", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "RESULT_TYPE_BY_SCOPE", "community": 24, "community_name": "Community 24", "source_file": "src/web/components/SearchModal.tsx", "file_type": "code", "degree": 1}, {"id": "components_searchmodal_searchmodal", "label": "SearchModal()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchModal()", "community": 24, "community_name": "Community 24", "source_file": "src/web/components/SearchModal.tsx", "file_type": "code", "degree": 3}, {"id": "components_searchmodal_summarize", "label": "summarize()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "summarize()", "community": 24, "community_name": "Community 24", "source_file": "src/web/components/SearchModal.tsx", "file_type": "code", "degree": 1}, {"id": "components_sidebar", "label": "Sidebar.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Sidebar.tsx", "community": 10, "community_name": "Community 10", "source_file": "src/web/components/Sidebar.tsx", "file_type": "code", "degree": 7}, {"id": "components_sidebar_sidebarprops", "label": "SidebarProps", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SidebarProps", "community": 10, "community_name": "Community 10", "source_file": "src/web/components/Sidebar.tsx", "file_type": "code", "degree": 1}, {"id": "components_sidebar_sidebar", "label": "Sidebar()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Sidebar()", "community": 10, "community_name": "Community 10", "source_file": "src/web/components/Sidebar.tsx", "file_type": "code", "degree": 2}, {"id": "components_spinner", "label": "Spinner.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 16.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Spinner.tsx", "community": 2, "community_name": "Community 2", "source_file": "src/web/components/Spinner.tsx", "file_type": "code", "degree": 20}, {"id": "components_spinner_spinnerprops", "label": "SpinnerProps", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SpinnerProps", "community": 2, "community_name": "Community 2", "source_file": "src/web/components/Spinner.tsx", "file_type": "code", "degree": 1}, {"id": "components_spinner_spinner", "label": "Spinner()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Spinner()", "community": 2, "community_name": "Community 2", "source_file": "src/web/components/Spinner.tsx", "file_type": "code", "degree": 18}, {"id": "components_statusbadge", "label": "StatusBadge.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "StatusBadge.tsx", "community": 3, "community_name": "Community 3", "source_file": "src/web/components/StatusBadge.tsx", "file_type": "code", "degree": 10}, {"id": "components_statusbadge_statusbadgeprops", "label": "StatusBadgeProps", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "StatusBadgeProps", "community": 3, "community_name": "Community 3", "source_file": "src/web/components/StatusBadge.tsx", "file_type": "code", "degree": 2}, {"id": "components_statusbadge_statusbadge", "label": "StatusBadge()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "StatusBadge()", "community": 3, "community_name": "Community 3", "source_file": "src/web/components/StatusBadge.tsx", "file_type": "code", "degree": 8}, {"id": "components_tag", "label": "Tag.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Tag.tsx", "community": 3, "community_name": "Community 3", "source_file": "src/web/components/Tag.tsx", "file_type": "code", "degree": 5}, {"id": "components_tag_tagprops", "label": "TagProps", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TagProps", "community": 3, "community_name": "Community 3", "source_file": "src/web/components/Tag.tsx", "file_type": "code", "degree": 1}, {"id": "components_tag_tag", "label": "Tag()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Tag()", "community": 3, "community_name": "Community 3", "source_file": "src/web/components/Tag.tsx", "file_type": "code", "degree": 3}, {"id": "components_toast", "label": "Toast.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 18.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Toast.tsx", "community": 55, "community_name": "Community 55", "source_file": "src/web/components/Toast.tsx", "file_type": "code", "degree": 26}, {"id": "components_toast_toastkind", "label": "ToastKind", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ToastKind", "community": 55, "community_name": "Community 55", "source_file": "src/web/components/Toast.tsx", "file_type": "code", "degree": 1}, {"id": "components_toast_toast", "label": "Toast", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Toast", "community": 55, "community_name": "Community 55", "source_file": "src/web/components/Toast.tsx", "file_type": "code", "degree": 1}, {"id": "components_toast_toastapi", "label": "ToastApi", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ToastApi", "community": 55, "community_name": "Community 55", "source_file": "src/web/components/Toast.tsx", "file_type": "code", "degree": 1}, {"id": "components_toast_toastcontext", "label": "ToastContext", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ToastContext", "community": 55, "community_name": "Community 55", "source_file": "src/web/components/Toast.tsx", "file_type": "code", "degree": 1}, {"id": "components_toast_usetoast", "label": "useToast()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 24.5, "font": {"size": 12, "color": "#ffffff"}, "title": "useToast()", "community": 6, "community_name": "Community 6", "source_file": "src/web/components/Toast.tsx", "file_type": "code", "degree": 44}, {"id": "components_toast_icons", "label": "ICONS", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ICONS", "community": 55, "community_name": "Community 55", "source_file": "src/web/components/Toast.tsx", "file_type": "code", "degree": 1}, {"id": "components_toast_toastprovider", "label": "ToastProvider()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ToastProvider()", "community": 55, "community_name": "Community 55", "source_file": "src/web/components/Toast.tsx", "file_type": "code", "degree": 2}, {"id": "components_toast_toastcontainer", "label": "ToastContainer()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ToastContainer()", "community": 55, "community_name": "Community 55", "source_file": "src/web/components/Toast.tsx", "file_type": "code", "degree": 1}, {"id": "components_toast_toastitem", "label": "ToastItem()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ToastItem()", "community": 55, "community_name": "Community 55", "source_file": "src/web/components/Toast.tsx", "file_type": "code", "degree": 1}, {"id": "components_topbar", "label": "Topbar.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 17.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Topbar.tsx", "community": 10, "community_name": "Community 10", "source_file": "src/web/components/Topbar.tsx", "file_type": "code", "degree": 24}, {"id": "components_topbar_tabdef", "label": "TabDef", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "TabDef", "community": 10, "community_name": "Community 10", "source_file": "src/web/components/Topbar.tsx", "file_type": "code", "degree": 2}, {"id": "components_topbar_tabs", "label": "TABS", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "TABS", "community": 10, "community_name": "Community 10", "source_file": "src/web/components/Topbar.tsx", "file_type": "code", "degree": 2}, {"id": "components_topbar_topbarprops", "label": "TopbarProps", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TopbarProps", "community": 10, "community_name": "Community 10", "source_file": "src/web/components/Topbar.tsx", "file_type": "code", "degree": 1}, {"id": "components_topbar_topbar", "label": "Topbar()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Topbar()", "community": 3, "community_name": "Community 3", "source_file": "src/web/components/Topbar.tsx", "file_type": "code", "degree": 3}, {"id": "components_topbar_projectselector", "label": "ProjectSelector()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ProjectSelector()", "community": 10, "community_name": "Community 10", "source_file": "src/web/components/Topbar.tsx", "file_type": "code", "degree": 2}, {"id": "components_topbar_topbaraddprojectdialog", "label": "TopbarAddProjectDialog()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TopbarAddProjectDialog()", "community": 10, "community_name": "Community 10", "source_file": "src/web/components/Topbar.tsx", "file_type": "code", "degree": 1}, {"id": "components_visualplandialog", "label": "VisualPlanDialog.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "VisualPlanDialog.tsx", "community": 38, "community_name": "Community 38", "source_file": "src/web/components/VisualPlanDialog.tsx", "file_type": "code", "degree": 5}, {"id": "components_visualplandialog_visualplandialogprops", "label": "VisualPlanDialogProps", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "VisualPlanDialogProps", "community": 38, "community_name": "Community 38", "source_file": "src/web/components/VisualPlanDialog.tsx", "file_type": "code", "degree": 1}, {"id": "components_visualplandialog_visualplandialog", "label": "VisualPlanDialog()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "VisualPlanDialog()", "community": 38, "community_name": "Community 38", "source_file": "src/web/components/VisualPlanDialog.tsx", "file_type": "code", "degree": 2}, {"id": "lib_api", "label": "api.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 24.2, "font": {"size": 12, "color": "#ffffff"}, "title": "api.ts", "community": 24, "community_name": "Community 24", "source_file": "src/web/lib/api.ts", "file_type": "code", "degree": 43}, {"id": "lib_api_apierror", "label": "ApiError", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiError", "community": 24, "community_name": "Community 24", "source_file": "src/web/lib/api.ts", "file_type": "code", "degree": 2}, {"id": "lib_api_apierror_constructor", "label": ".constructor()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 24, "community_name": "Community 24", "source_file": "src/web/lib/api.ts", "file_type": "code", "degree": 1}, {"id": "lib_api_apiclient", "label": "ApiClient", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiClient", "community": 49, "community_name": "Community 49", "source_file": "src/web/lib/api.ts", "file_type": "code", "degree": 12}, {"id": "lib_api_apiclient_gettoken", "label": ".getToken()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": ".getToken()", "community": 49, "community_name": "Community 49", "source_file": "src/web/lib/api.ts", "file_type": "code", "degree": 3}, {"id": "lib_api_apiclient_settoken", "label": ".setToken()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".setToken()", "community": 49, "community_name": "Community 49", "source_file": "src/web/lib/api.ts", "file_type": "code", "degree": 1}, {"id": "lib_api_apiclient_urlwithtoken", "label": ".urlWithToken()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".urlWithToken()", "community": 49, "community_name": "Community 49", "source_file": "src/web/lib/api.ts", "file_type": "code", "degree": 2}, {"id": "lib_api_apiclient_probeauthstatus", "label": ".probeAuthStatus()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".probeAuthStatus()", "community": 49, "community_name": "Community 49", "source_file": "src/web/lib/api.ts", "file_type": "code", "degree": 1}, {"id": "lib_api_apiclient_isloopbacktrusted", "label": ".isLoopbackTrusted()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".isLoopbackTrusted()", "community": 49, "community_name": "Community 49", "source_file": "src/web/lib/api.ts", "file_type": "code", "degree": 1}, {"id": "lib_api_apiclient_get", "label": ".get()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".get()", "community": 49, "community_name": "Community 49", "source_file": "src/web/lib/api.ts", "file_type": "code", "degree": 2}, {"id": "lib_api_apiclient_post", "label": ".post()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".post()", "community": 49, "community_name": "Community 49", "source_file": "src/web/lib/api.ts", "file_type": "code", "degree": 2}, {"id": "lib_api_apiclient_put", "label": ".put()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".put()", "community": 49, "community_name": "Community 49", "source_file": "src/web/lib/api.ts", "file_type": "code", "degree": 2}, {"id": "lib_api_apiclient_patch", "label": ".patch()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".patch()", "community": 49, "community_name": "Community 49", "source_file": "src/web/lib/api.ts", "file_type": "code", "degree": 2}, {"id": "lib_api_apiclient_del", "label": ".del()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".del()", "community": 49, "community_name": "Community 49", "source_file": "src/web/lib/api.ts", "file_type": "code", "degree": 2}, {"id": "lib_api_apiclient_req", "label": ".req()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".req()", "community": 49, "community_name": "Community 49", "source_file": "src/web/lib/api.ts", "file_type": "code", "degree": 7}, {"id": "lib_api_api", "label": "api", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 23.2, "font": {"size": 12, "color": "#ffffff"}, "title": "api", "community": 24, "community_name": "Community 24", "source_file": "src/web/lib/api.ts", "file_type": "code", "degree": 40}, {"id": "lib_markdown", "label": "markdown.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "markdown.tsx", "community": 65, "community_name": "Community 65", "source_file": "src/web/lib/markdown.tsx", "file_type": "code", "degree": 4}, {"id": "lib_markdown_token", "label": "Token", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Token", "community": 65, "community_name": "Community 65", "source_file": "src/web/lib/markdown.tsx", "file_type": "code", "degree": 1}, {"id": "lib_markdown_tokenize", "label": "tokenize()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "tokenize()", "community": 65, "community_name": "Community 65", "source_file": "src/web/lib/markdown.tsx", "file_type": "code", "degree": 2}, {"id": "lib_markdown_color", "label": "COLOR", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "COLOR", "community": 65, "community_name": "Community 65", "source_file": "src/web/lib/markdown.tsx", "file_type": "code", "degree": 1}, {"id": "lib_markdown_jsonhighlight", "label": "JsonHighlight()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "JsonHighlight()", "community": 65, "community_name": "Community 65", "source_file": "src/web/lib/markdown.tsx", "file_type": "code", "degree": 2}, {"id": "lib_types", "label": "types.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 40.0, "font": {"size": 12, "color": "#ffffff"}, "title": "types.ts", "community": 8, "community_name": "Community 8", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 91}, {"id": "lib_types_dialogcomponent", "label": "DialogComponent", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DialogComponent", "community": 8, "community_name": "Community 8", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 1}, {"id": "lib_types_dialogdescriptor", "label": "DialogDescriptor", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "DialogDescriptor", "community": 38, "community_name": "Community 38", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 3}, {"id": "lib_types_themename", "label": "ThemeName", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ThemeName", "community": 56, "community_name": "Community 56", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 3}, {"id": "lib_types_themesettings", "label": "ThemeSettings", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ThemeSettings", "community": 8, "community_name": "Community 8", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 1}, {"id": "lib_types_uisettings", "label": "UiSettings", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UiSettings", "community": 8, "community_name": "Community 8", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 1}, {"id": "lib_types_agent", "label": "Agent", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Agent", "community": 39, "community_name": "Community 39", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 6}, {"id": "lib_types_projectrecord", "label": "ProjectRecord", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ProjectRecord", "community": 27, "community_name": "Community 27", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 4}, {"id": "lib_types_projectsresponse", "label": "ProjectsResponse", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ProjectsResponse", "community": 8, "community_name": "Community 8", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 1}, {"id": "lib_types_directoryentry", "label": "DirectoryEntry", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "DirectoryEntry", "community": 26, "community_name": "Community 26", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 2}, {"id": "lib_types_directorylisting", "label": "DirectoryListing", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DirectoryListing", "community": 26, "community_name": "Community 26", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 4}, {"id": "lib_types_mkdirrequest", "label": "MkdirRequest", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "MkdirRequest", "community": 26, "community_name": "Community 26", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 2}, {"id": "lib_types_mkdirresponse", "label": "MkdirResponse", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "MkdirResponse", "community": 26, "community_name": "Community 26", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 2}, {"id": "lib_types_scanresult", "label": "ScanResult", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ScanResult", "community": 27, "community_name": "Community 27", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 2}, {"id": "lib_types_plan", "label": "Plan", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Plan", "community": 39, "community_name": "Community 39", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 4}, {"id": "lib_types_canvaselement", "label": "CanvasElement", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "CanvasElement", "community": 8, "community_name": "Community 8", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 3}, {"id": "lib_types_canvasconnection", "label": "CanvasConnection", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "CanvasConnection", "community": 11, "community_name": "Community 11", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 2}, {"id": "lib_types_canvascomment", "label": "CanvasComment", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "CanvasComment", "community": 11, "community_name": "Community 11", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 2}, {"id": "lib_types_canvasviewport", "label": "CanvasViewport", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CanvasViewport", "community": 8, "community_name": "Community 8", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 1}, {"id": "lib_types_canvas", "label": "Canvas", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Canvas", "community": 8, "community_name": "Community 8", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 3}, {"id": "lib_types_configresponse", "label": "ConfigResponse", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ConfigResponse", "community": 15, "community_name": "Community 15", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 2}, {"id": "lib_types_settings", "label": "Settings", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Settings", "community": 2, "community_name": "Community 2", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 21}, {"id": "lib_types_settingsresponse", "label": "SettingsResponse", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "SettingsResponse", "community": 41, "community_name": "Community 41", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 3}, {"id": "lib_types_overviewcounts", "label": "OverviewCounts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "OverviewCounts", "community": 8, "community_name": "Community 8", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 1}, {"id": "lib_types_overviewversions", "label": "OverviewVersions", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "OverviewVersions", "community": 8, "community_name": "Community 8", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 1}, {"id": "lib_types_activityitem", "label": "ActivityItem", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ActivityItem", "community": 61, "community_name": "Community 61", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 3}, {"id": "lib_types_overview", "label": "Overview", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Overview", "community": 27, "community_name": "Community 27", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 2}, {"id": "lib_types_chatmessage", "label": "ChatMessage", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ChatMessage", "community": 14, "community_name": "Community 14", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 3}, {"id": "lib_types_chatsession", "label": "ChatSession", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ChatSession", "community": 2, "community_name": "Community 2", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 2}, {"id": "lib_types_chatresponse", "label": "ChatResponse", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ChatResponse", "community": 2, "community_name": "Community 2", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 2}, {"id": "lib_types_task", "label": "Task", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task", "community": 5, "community_name": "Community 5", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 4}, {"id": "lib_types_notification", "label": "Notification", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Notification", "community": 12, "community_name": "Community 12", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 4}, {"id": "lib_types_notificationstats", "label": "NotificationStats", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "NotificationStats", "community": 10, "community_name": "Community 10", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 2}, {"id": "lib_types_notificationsresponse", "label": "NotificationsResponse", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "NotificationsResponse", "community": 8, "community_name": "Community 8", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 1}, {"id": "lib_types_customtheme", "label": "CustomTheme", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CustomTheme", "community": 8, "community_name": "Community 8", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 1}, {"id": "lib_types_budgetcheck", "label": "BudgetCheck", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BudgetCheck", "community": 8, "community_name": "Community 8", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 1}, {"id": "lib_types_scheduleaction", "label": "ScheduleAction", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ScheduleAction", "community": 8, "community_name": "Community 8", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 1}, {"id": "lib_types_schedule", "label": "Schedule", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Schedule", "community": 16, "community_name": "Community 16", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 3}, {"id": "lib_types_mod", "label": "Mod", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Mod", "community": 14, "community_name": "Community 14", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 5}, {"id": "lib_types_provider", "label": "Provider", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Provider", "community": 2, "community_name": "Community 2", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 3}, {"id": "lib_types_mcpserver", "label": "McpServer", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "McpServer", "community": 2, "community_name": "Community 2", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 3}, {"id": "lib_types_diagnosticitem", "label": "DiagnosticItem", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DiagnosticItem", "community": 8, "community_name": "Community 8", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 1}, {"id": "lib_types_diagnostics", "label": "Diagnostics", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Diagnostics", "community": 15, "community_name": "Community 15", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 2}, {"id": "lib_types_tailscalestatus", "label": "TailscaleStatus", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "TailscaleStatus", "community": 41, "community_name": "Community 41", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 2}, {"id": "lib_types_searchresult", "label": "SearchResult", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchResult", "community": 24, "community_name": "Community 24", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 4}, {"id": "lib_types_bginstance", "label": "BgInstance", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "BgInstance", "community": 7, "community_name": "Community 7", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 2}, {"id": "lib_types_backgroundlistresponse", "label": "BackgroundListResponse", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "BackgroundListResponse", "community": 7, "community_name": "Community 7", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 2}, {"id": "lib_types_backgroundoutputresponse", "label": "BackgroundOutputResponse", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "BackgroundOutputResponse", "community": 7, "community_name": "Community 7", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 2}, {"id": "lib_types_backgroundtmuxresponse", "label": "BackgroundTmuxResponse", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "BackgroundTmuxResponse", "community": 7, "community_name": "Community 7", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 2}, {"id": "lib_types_snapshot", "label": "Snapshot", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 19.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Snapshot", "community": 14, "community_name": "Community 14", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 29}, {"id": "lib_types_wsstatus", "label": "WsStatus", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "WsStatus", "community": 35, "community_name": "Community 35", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 7}, {"id": "lib_types_wsmessage", "label": "WsMessage", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "WsMessage", "community": 10, "community_name": "Community 10", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 6}, {"id": "lib_types_applytheme", "label": "applyTheme()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "applyTheme()", "community": 56, "community_name": "Community 56", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 5}, {"id": "lib_types_applythemetokens", "label": "applyThemeTokens()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "applyThemeTokens()", "community": 8, "community_name": "Community 8", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 6}, {"id": "lib_types_hextorgba", "label": "hexToRgba()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "hexToRgba()", "community": 8, "community_name": "Community 8", "source_file": "src/web/lib/types.ts", "file_type": "code", "degree": 2}, {"id": "lib_utils", "label": "utils.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 23.5, "font": {"size": 12, "color": "#ffffff"}, "title": "utils.ts", "community": 28, "community_name": "Community 28", "source_file": "src/web/lib/utils.ts", "file_type": "code", "degree": 41}, {"id": "lib_utils_cn", "label": "cn()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 27.8, "font": {"size": 12, "color": "#ffffff"}, "title": "cn()", "community": 3, "community_name": "Community 3", "source_file": "src/web/lib/utils.ts", "file_type": "code", "degree": 54}, {"id": "lib_utils_formatrelative", "label": "formatRelative()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 17.3, "font": {"size": 12, "color": "#ffffff"}, "title": "formatRelative()", "community": 27, "community_name": "Community 27", "source_file": "src/web/lib/utils.ts", "file_type": "code", "degree": 22}, {"id": "lib_utils_formattime", "label": "formatTime()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "formatTime()", "community": 7, "community_name": "Community 7", "source_file": "src/web/lib/utils.ts", "file_type": "code", "degree": 9}, {"id": "lib_utils_truncate", "label": "truncate()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "truncate()", "community": 11, "community_name": "Community 11", "source_file": "src/web/lib/utils.ts", "file_type": "code", "degree": 7}, {"id": "lib_utils_debounce", "label": "debounce()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "debounce()", "community": 28, "community_name": "Community 28", "source_file": "src/web/lib/utils.ts", "file_type": "code", "degree": 2}, {"id": "lib_utils_prioritycolors", "label": "priorityColors", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "priorityColors", "community": 28, "community_name": "Community 28", "source_file": "src/web/lib/utils.ts", "file_type": "code", "degree": 3}, {"id": "lib_utils_statusbadgekind", "label": "statusBadgeKind()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "statusBadgeKind()", "community": 28, "community_name": "Community 28", "source_file": "src/web/lib/utils.ts", "file_type": "code", "degree": 1}, {"id": "lib_utils_hashtext", "label": "hashText()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "hashText()", "community": 28, "community_name": "Community 28", "source_file": "src/web/lib/utils.ts", "file_type": "code", "degree": 2}, {"id": "lib_utils_autotitlefromcontent", "label": "autoTitleFromContent()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "autoTitleFromContent()", "community": 0, "community_name": "Community 0", "source_file": "src/web/lib/utils.ts", "file_type": "code", "degree": 3}, {"id": "lib_ws", "label": "ws.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ws.ts", "community": 35, "community_name": "Community 35", "source_file": "src/web/lib/ws.ts", "file_type": "code", "degree": 13}, {"id": "lib_ws_handler", "label": "Handler", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Handler", "community": 35, "community_name": "Community 35", "source_file": "src/web/lib/ws.ts", "file_type": "code", "degree": 2}, {"id": "lib_ws_statushandler", "label": "StatusHandler", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "StatusHandler", "community": 35, "community_name": "Community 35", "source_file": "src/web/lib/ws.ts", "file_type": "code", "degree": 1}, {"id": "lib_ws_buildwsurl", "label": "buildWsUrl()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "buildWsUrl()", "community": 35, "community_name": "Community 35", "source_file": "src/web/lib/ws.ts", "file_type": "code", "degree": 2}, {"id": "lib_ws_ws", "label": "Ws", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Ws", "community": 35, "community_name": "Community 35", "source_file": "src/web/lib/ws.ts", "file_type": "code", "degree": 16}, {"id": "lib_ws_ws_constructor", "label": ".constructor()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 35, "community_name": "Community 35", "source_file": "src/web/lib/ws.ts", "file_type": "code", "degree": 2}, {"id": "lib_ws_ws_on", "label": ".on()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".on()", "community": 35, "community_name": "Community 35", "source_file": "src/web/lib/ws.ts", "file_type": "code", "degree": 1}, {"id": "lib_ws_ws_onstatus", "label": ".onStatus()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".onStatus()", "community": 35, "community_name": "Community 35", "source_file": "src/web/lib/ws.ts", "file_type": "code", "degree": 2}, {"id": "lib_ws_ws_status", "label": ".status()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".status()", "community": 35, "community_name": "Community 35", "source_file": "src/web/lib/ws.ts", "file_type": "code", "degree": 2}, {"id": "lib_ws_ws_send", "label": ".send()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".send()", "community": 35, "community_name": "Community 35", "source_file": "src/web/lib/ws.ts", "file_type": "code", "degree": 1}, {"id": "lib_ws_ws_close", "label": ".close()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".close()", "community": 35, "community_name": "Community 35", "source_file": "src/web/lib/ws.ts", "file_type": "code", "degree": 2}, {"id": "lib_ws_ws_connect", "label": ".connect()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".connect()", "community": 35, "community_name": "Community 35", "source_file": "src/web/lib/ws.ts", "file_type": "code", "degree": 5}, {"id": "lib_ws_ws_schedulereconnect", "label": ".scheduleReconnect()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".scheduleReconnect()", "community": 35, "community_name": "Community 35", "source_file": "src/web/lib/ws.ts", "file_type": "code", "degree": 2}, {"id": "lib_ws_ws_setstatus", "label": ".setStatus()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".setStatus()", "community": 35, "community_name": "Community 35", "source_file": "src/web/lib/ws.ts", "file_type": "code", "degree": 4}, {"id": "web_main", "label": "main.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "main.tsx", "community": 6, "community_name": "Community 6", "source_file": "src/web/main.tsx", "file_type": "code", "degree": 3}, {"id": "web_main_root", "label": "root", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "root", "community": 6, "community_name": "Community 6", "source_file": "src/web/main.tsx", "file_type": "code", "degree": 1}, {"id": "web_mobile", "label": "mobile.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "mobile.tsx", "community": 25, "community_name": "Community 25", "source_file": "src/web/mobile.tsx", "file_type": "code", "degree": 3}, {"id": "web_mobile_root", "label": "root", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "root", "community": 25, "community_name": "Community 25", "source_file": "src/web/mobile.tsx", "file_type": "code", "degree": 1}, {"id": "mobile_mobileapp", "label": "MobileApp.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 24.5, "font": {"size": 12, "color": "#ffffff"}, "title": "MobileApp.tsx", "community": 14, "community_name": "Community 14", "source_file": "src/web/mobile/MobileApp.tsx", "file_type": "code", "degree": 44}, {"id": "mobile_mobileapp_mobileview", "label": "MobileView", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileView", "community": 14, "community_name": "Community 14", "source_file": "src/web/mobile/MobileApp.tsx", "file_type": "code", "degree": 1}, {"id": "mobile_mobileapp_tabs", "label": "TABS", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TABS", "community": 14, "community_name": "Community 14", "source_file": "src/web/mobile/MobileApp.tsx", "file_type": "code", "degree": 1}, {"id": "mobile_mobileapp_mobileapp", "label": "MobileApp()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileApp()", "community": 14, "community_name": "Community 14", "source_file": "src/web/mobile/MobileApp.tsx", "file_type": "code", "degree": 1}, {"id": "mobile_mobileapp_plandetailview", "label": "PlanDetailView()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "PlanDetailView()", "community": 14, "community_name": "Community 14", "source_file": "src/web/mobile/MobileApp.tsx", "file_type": "code", "degree": 2}, {"id": "mobile_mobileapp_agentdetailview", "label": "AgentDetailView()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "AgentDetailView()", "community": 14, "community_name": "Community 14", "source_file": "src/web/mobile/MobileApp.tsx", "file_type": "code", "degree": 2}, {"id": "mobile_mobileapp_taskdetailview", "label": "TaskDetailView()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "TaskDetailView()", "community": 14, "community_name": "Community 14", "source_file": "src/web/mobile/MobileApp.tsx", "file_type": "code", "degree": 2}, {"id": "mobile_mobilebottomnav", "label": "MobileBottomNav.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileBottomNav.tsx", "community": 25, "community_name": "Community 25", "source_file": "src/web/mobile/MobileBottomNav.tsx", "file_type": "code", "degree": 7}, {"id": "mobile_mobilebottomnav_mobiletab", "label": "MobileTab", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileTab", "community": 25, "community_name": "Community 25", "source_file": "src/web/mobile/MobileBottomNav.tsx", "file_type": "code", "degree": 3}, {"id": "mobile_mobilebottomnav_props", "label": "Props", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 25, "community_name": "Community 25", "source_file": "src/web/mobile/MobileBottomNav.tsx", "file_type": "code", "degree": 1}, {"id": "mobile_mobilebottomnav_mobilebottomnav", "label": "MobileBottomNav()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileBottomNav()", "community": 25, "community_name": "Community 25", "source_file": "src/web/mobile/MobileBottomNav.tsx", "file_type": "code", "degree": 3}, {"id": "mobile_mobiletopbar", "label": "MobileTopbar.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileTopbar.tsx", "community": 12, "community_name": "Community 12", "source_file": "src/web/mobile/MobileTopbar.tsx", "file_type": "code", "degree": 13}, {"id": "mobile_mobiletopbar_props", "label": "Props", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 12, "community_name": "Community 12", "source_file": "src/web/mobile/MobileTopbar.tsx", "file_type": "code", "degree": 1}, {"id": "mobile_mobiletopbar_tab_labels", "label": "TAB_LABELS", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TAB_LABELS", "community": 12, "community_name": "Community 12", "source_file": "src/web/mobile/MobileTopbar.tsx", "file_type": "code", "degree": 1}, {"id": "mobile_mobiletopbar_mobiletopbar", "label": "MobileTopbar()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileTopbar()", "community": 12, "community_name": "Community 12", "source_file": "src/web/mobile/MobileTopbar.tsx", "file_type": "code", "degree": 3}, {"id": "components_mobilebottomsheet", "label": "MobileBottomSheet.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileBottomSheet.tsx", "community": 12, "community_name": "Community 12", "source_file": "src/web/mobile/components/MobileBottomSheet.tsx", "file_type": "code", "degree": 12}, {"id": "components_mobilebottomsheet_props", "label": "Props", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 12, "community_name": "Community 12", "source_file": "src/web/mobile/components/MobileBottomSheet.tsx", "file_type": "code", "degree": 1}, {"id": "components_mobilebottomsheet_mobilebottomsheet", "label": "MobileBottomSheet()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileBottomSheet()", "community": 12, "community_name": "Community 12", "source_file": "src/web/mobile/components/MobileBottomSheet.tsx", "file_type": "code", "degree": 11}, {"id": "components_mobilelistitem", "label": "MobileListItem.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileListItem.tsx", "community": 3, "community_name": "Community 3", "source_file": "src/web/mobile/components/MobileListItem.tsx", "file_type": "code", "degree": 5}, {"id": "components_mobilelistitem_props", "label": "Props", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 3, "community_name": "Community 3", "source_file": "src/web/mobile/components/MobileListItem.tsx", "file_type": "code", "degree": 1}, {"id": "components_mobilelistitem_mobilelistitem", "label": "MobileListItem()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileListItem()", "community": 3, "community_name": "Community 3", "source_file": "src/web/mobile/components/MobileListItem.tsx", "file_type": "code", "degree": 2}, {"id": "components_mobilelistitem_chevronright", "label": "ChevronRight()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ChevronRight()", "community": 3, "community_name": "Community 3", "source_file": "src/web/mobile/components/MobileListItem.tsx", "file_type": "code", "degree": 1}, {"id": "components_mobilemodal", "label": "MobileModal.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileModal.tsx", "community": 39, "community_name": "Community 39", "source_file": "src/web/mobile/components/MobileModal.tsx", "file_type": "code", "degree": 8}, {"id": "components_mobilemodal_props", "label": "Props", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 39, "community_name": "Community 39", "source_file": "src/web/mobile/components/MobileModal.tsx", "file_type": "code", "degree": 1}, {"id": "components_mobilemodal_mobilemodal", "label": "MobileModal()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileModal()", "community": 39, "community_name": "Community 39", "source_file": "src/web/mobile/components/MobileModal.tsx", "file_type": "code", "degree": 7}, {"id": "views_mobileactivity", "label": "MobileActivity.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "MobileActivity.tsx", "community": 61, "community_name": "Community 61", "source_file": "src/web/mobile/views/MobileActivity.tsx", "file_type": "code", "degree": 17}, {"id": "views_mobileactivity_props", "label": "Props", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 61, "community_name": "Community 61", "source_file": "src/web/mobile/views/MobileActivity.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobileactivity_event_kinds", "label": "EVENT_KINDS", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "EVENT_KINDS", "community": 61, "community_name": "Community 61", "source_file": "src/web/mobile/views/MobileActivity.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobileactivity_eventkind", "label": "EventKind", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "EventKind", "community": 61, "community_name": "Community 61", "source_file": "src/web/mobile/views/MobileActivity.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobileactivity_kind_labels", "label": "KIND_LABELS", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "KIND_LABELS", "community": 61, "community_name": "Community 61", "source_file": "src/web/mobile/views/MobileActivity.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobileactivity_mobileactivity", "label": "MobileActivity()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileActivity()", "community": 61, "community_name": "Community 61", "source_file": "src/web/mobile/views/MobileActivity.tsx", "file_type": "code", "degree": 3}, {"id": "views_mobileactivity_rendereventmessage", "label": "renderEventMessage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderEventMessage()", "community": 61, "community_name": "Community 61", "source_file": "src/web/mobile/views/MobileActivity.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobileagents", "label": "MobileAgents.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.9, "font": {"size": 12, "color": "#ffffff"}, "title": "MobileAgents.tsx", "community": 39, "community_name": "Community 39", "source_file": "src/web/mobile/views/MobileAgents.tsx", "file_type": "code", "degree": 18}, {"id": "views_mobileagents_props", "label": "Props", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 39, "community_name": "Community 39", "source_file": "src/web/mobile/views/MobileAgents.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobileagents_categories", "label": "CATEGORIES", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CATEGORIES", "community": 39, "community_name": "Community 39", "source_file": "src/web/mobile/views/MobileAgents.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobileagents_category_colors", "label": "CATEGORY_COLORS", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CATEGORY_COLORS", "community": 39, "community_name": "Community 39", "source_file": "src/web/mobile/views/MobileAgents.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobileagents_mobileagents", "label": "MobileAgents()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileAgents()", "community": 39, "community_name": "Community 39", "source_file": "src/web/mobile/views/MobileAgents.tsx", "file_type": "code", "degree": 4}, {"id": "views_mobileagents_newagentmodal", "label": "NewAgentModal()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "NewAgentModal()", "community": 39, "community_name": "Community 39", "source_file": "src/web/mobile/views/MobileAgents.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobilechat", "label": "MobileChat.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "MobileChat.tsx", "community": 14, "community_name": "Community 14", "source_file": "src/web/mobile/views/MobileChat.tsx", "file_type": "code", "degree": 16}, {"id": "views_mobilechat_props", "label": "Props", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 14, "community_name": "Community 14", "source_file": "src/web/mobile/views/MobileChat.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobilechat_taskchatsession", "label": "TaskChatSession", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TaskChatSession", "community": 14, "community_name": "Community 14", "source_file": "src/web/mobile/views/MobileChat.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobilechat_slash_commands", "label": "SLASH_COMMANDS", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SLASH_COMMANDS", "community": 14, "community_name": "Community 14", "source_file": "src/web/mobile/views/MobileChat.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobilechat_mobilechat", "label": "MobileChat()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileChat()", "community": 14, "community_name": "Community 14", "source_file": "src/web/mobile/views/MobileChat.tsx", "file_type": "code", "degree": 3}, {"id": "views_mobileconfig", "label": "MobileConfig.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileConfig.tsx", "community": 24, "community_name": "Community 24", "source_file": "src/web/mobile/views/MobileConfig.tsx", "file_type": "code", "degree": 7}, {"id": "views_mobileconfig_configentry", "label": "ConfigEntry", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ConfigEntry", "community": 24, "community_name": "Community 24", "source_file": "src/web/mobile/views/MobileConfig.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobileconfig_props", "label": "Props", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 24, "community_name": "Community 24", "source_file": "src/web/mobile/views/MobileConfig.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobileconfig_mobileconfig", "label": "MobileConfig()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileConfig()", "community": 24, "community_name": "Community 24", "source_file": "src/web/mobile/views/MobileConfig.tsx", "file_type": "code", "degree": 3}, {"id": "views_mobilehistory", "label": "MobileHistory.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileHistory.tsx", "community": 12, "community_name": "Community 12", "source_file": "src/web/mobile/views/MobileHistory.tsx", "file_type": "code", "degree": 12}, {"id": "views_mobilehistory_historyentry", "label": "HistoryEntry", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HistoryEntry", "community": 12, "community_name": "Community 12", "source_file": "src/web/mobile/views/MobileHistory.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobilehistory_historyevent", "label": "HistoryEvent", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HistoryEvent", "community": 12, "community_name": "Community 12", "source_file": "src/web/mobile/views/MobileHistory.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobilehistory_projecthistory", "label": "ProjectHistory", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ProjectHistory", "community": 12, "community_name": "Community 12", "source_file": "src/web/mobile/views/MobileHistory.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobilehistory_historyresponse", "label": "HistoryResponse", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HistoryResponse", "community": 12, "community_name": "Community 12", "source_file": "src/web/mobile/views/MobileHistory.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobilehistory_props", "label": "Props", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 12, "community_name": "Community 12", "source_file": "src/web/mobile/views/MobileHistory.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobilehistory_mobilehistory", "label": "MobileHistory()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileHistory()", "community": 7, "community_name": "Community 7", "source_file": "src/web/mobile/views/MobileHistory.tsx", "file_type": "code", "degree": 4}, {"id": "views_mobilemods", "label": "MobileMods.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileMods.tsx", "community": 14, "community_name": "Community 14", "source_file": "src/web/mobile/views/MobileMods.tsx", "file_type": "code", "degree": 11}, {"id": "views_mobilemods_props", "label": "Props", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 14, "community_name": "Community 14", "source_file": "src/web/mobile/views/MobileMods.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobilemods_mobilemods", "label": "MobileMods()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileMods()", "community": 14, "community_name": "Community 14", "source_file": "src/web/mobile/views/MobileMods.tsx", "file_type": "code", "degree": 3}, {"id": "views_mobilemore", "label": "MobileMore.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileMore.tsx", "community": 14, "community_name": "Community 14", "source_file": "src/web/mobile/views/MobileMore.tsx", "file_type": "code", "degree": 6}, {"id": "views_mobilemore_props", "label": "Props", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 14, "community_name": "Community 14", "source_file": "src/web/mobile/views/MobileMore.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobilemore_mobilemore", "label": "MobileMore()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileMore()", "community": 14, "community_name": "Community 14", "source_file": "src/web/mobile/views/MobileMore.tsx", "file_type": "code", "degree": 3}, {"id": "views_mobilenotifications", "label": "MobileNotifications.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileNotifications.tsx", "community": 12, "community_name": "Community 12", "source_file": "src/web/mobile/views/MobileNotifications.tsx", "file_type": "code", "degree": 12}, {"id": "views_mobilenotifications_props", "label": "Props", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 12, "community_name": "Community 12", "source_file": "src/web/mobile/views/MobileNotifications.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobilenotifications_notificon", "label": "notifIcon()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "notifIcon()", "community": 12, "community_name": "Community 12", "source_file": "src/web/mobile/views/MobileNotifications.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobilenotifications_formatnotiftime", "label": "formatNotifTime()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatNotifTime()", "community": 12, "community_name": "Community 12", "source_file": "src/web/mobile/views/MobileNotifications.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobilenotifications_mobilenotifications", "label": "MobileNotifications()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileNotifications()", "community": 12, "community_name": "Community 12", "source_file": "src/web/mobile/views/MobileNotifications.tsx", "file_type": "code", "degree": 3}, {"id": "views_mobileplancanvas", "label": "MobilePlanCanvas.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 16.3, "font": {"size": 12, "color": "#ffffff"}, "title": "MobilePlanCanvas.tsx", "community": 8, "community_name": "Community 8", "source_file": "src/web/mobile/views/MobilePlanCanvas.tsx", "file_type": "code", "degree": 19}, {"id": "views_mobileplancanvas_props", "label": "Props", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 8, "community_name": "Community 8", "source_file": "src/web/mobile/views/MobilePlanCanvas.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobileplancanvas_element_types", "label": "ELEMENT_TYPES", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ELEMENT_TYPES", "community": 8, "community_name": "Community 8", "source_file": "src/web/mobile/views/MobilePlanCanvas.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobileplancanvas_elementcolor", "label": "elementColor()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "elementColor()", "community": 8, "community_name": "Community 8", "source_file": "src/web/mobile/views/MobilePlanCanvas.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobileplancanvas_elementicon", "label": "ElementIcon()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ElementIcon()", "community": 8, "community_name": "Community 8", "source_file": "src/web/mobile/views/MobilePlanCanvas.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobileplancanvas_mobileplancanvas", "label": "MobilePlanCanvas()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "MobilePlanCanvas()", "community": 8, "community_name": "Community 8", "source_file": "src/web/mobile/views/MobilePlanCanvas.tsx", "file_type": "code", "degree": 2}, {"id": "views_mobileplancanvas_elementeditform", "label": "ElementEditForm()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ElementEditForm()", "community": 8, "community_name": "Community 8", "source_file": "src/web/mobile/views/MobilePlanCanvas.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobileplancanvas_addelementmodal", "label": "AddElementModal()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AddElementModal()", "community": 8, "community_name": "Community 8", "source_file": "src/web/mobile/views/MobilePlanCanvas.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobileplans", "label": "MobilePlans.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MobilePlans.tsx", "community": 39, "community_name": "Community 39", "source_file": "src/web/mobile/views/MobilePlans.tsx", "file_type": "code", "degree": 11}, {"id": "views_mobileplans_props", "label": "Props", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 39, "community_name": "Community 39", "source_file": "src/web/mobile/views/MobilePlans.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobileplans_mobileplans", "label": "MobilePlans()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "MobilePlans()", "community": 39, "community_name": "Community 39", "source_file": "src/web/mobile/views/MobilePlans.tsx", "file_type": "code", "degree": 3}, {"id": "views_mobileschedules", "label": "MobileSchedules.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 19.9, "font": {"size": 12, "color": "#ffffff"}, "title": "MobileSchedules.tsx", "community": 16, "community_name": "Community 16", "source_file": "src/web/mobile/views/MobileSchedules.tsx", "file_type": "code", "degree": 30}, {"id": "views_mobileschedules_props", "label": "Props", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 16, "community_name": "Community 16", "source_file": "src/web/mobile/views/MobileSchedules.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobileschedules_types", "label": "TYPES", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TYPES", "community": 16, "community_name": "Community 16", "source_file": "src/web/mobile/views/MobileSchedules.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobileschedules_actions", "label": "ACTIONS", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ACTIONS", "community": 16, "community_name": "Community 16", "source_file": "src/web/mobile/views/MobileSchedules.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobileschedules_timezones", "label": "TIMEZONES", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TIMEZONES", "community": 16, "community_name": "Community 16", "source_file": "src/web/mobile/views/MobileSchedules.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobileschedules_hours", "label": "HOURS", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HOURS", "community": 16, "community_name": "Community 16", "source_file": "src/web/mobile/views/MobileSchedules.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobileschedules_minutes", "label": "MINUTES", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MINUTES", "community": 16, "community_name": "Community 16", "source_file": "src/web/mobile/views/MobileSchedules.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobileschedules_dows", "label": "DOWS", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DOWS", "community": 16, "community_name": "Community 16", "source_file": "src/web/mobile/views/MobileSchedules.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobileschedules_interval_units", "label": "INTERVAL_UNITS", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "INTERVAL_UNITS", "community": 16, "community_name": "Community 16", "source_file": "src/web/mobile/views/MobileSchedules.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobileschedules_mobileschedules", "label": "MobileSchedules()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileSchedules()", "community": 16, "community_name": "Community 16", "source_file": "src/web/mobile/views/MobileSchedules.tsx", "file_type": "code", "degree": 6}, {"id": "views_mobileschedules_editorstate", "label": "EditorState", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "EditorState", "community": 16, "community_name": "Community 16", "source_file": "src/web/mobile/views/MobileSchedules.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobileschedules_initialeditorstate", "label": "initialEditorState()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "initialEditorState()", "community": 16, "community_name": "Community 16", "source_file": "src/web/mobile/views/MobileSchedules.tsx", "file_type": "code", "degree": 4}, {"id": "views_mobileschedules_composeschedulevalue", "label": "composeScheduleValue()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "composeScheduleValue()", "community": 16, "community_name": "Community 16", "source_file": "src/web/mobile/views/MobileSchedules.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobileschedules_scheduleeditor", "label": "ScheduleEditor()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ScheduleEditor()", "community": 16, "community_name": "Community 16", "source_file": "src/web/mobile/views/MobileSchedules.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobileschedules_formatrel", "label": "formatRel()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "formatRel()", "community": 16, "community_name": "Community 16", "source_file": "src/web/mobile/views/MobileSchedules.tsx", "file_type": "code", "degree": 2}, {"id": "views_mobileschedules_formatnextshort", "label": "formatNextShort()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "formatNextShort()", "community": 16, "community_name": "Community 16", "source_file": "src/web/mobile/views/MobileSchedules.tsx", "file_type": "code", "degree": 2}, {"id": "views_mobileschedules_parsesimplecron", "label": "parseSimpleCron()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "parseSimpleCron()", "community": 16, "community_name": "Community 16", "source_file": "src/web/mobile/views/MobileSchedules.tsx", "file_type": "code", "degree": 3}, {"id": "views_mobileschedules_parsesimpleinterval", "label": "parseSimpleInterval()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "parseSimpleInterval()", "community": 16, "community_name": "Community 16", "source_file": "src/web/mobile/views/MobileSchedules.tsx", "file_type": "code", "degree": 2}, {"id": "views_mobileschedules_todatetimelocal", "label": "toDatetimeLocal()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "toDatetimeLocal()", "community": 16, "community_name": "Community 16", "source_file": "src/web/mobile/views/MobileSchedules.tsx", "file_type": "code", "degree": 3}, {"id": "views_mobileschedules_humanizeschedule", "label": "humanizeSchedule()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "humanizeSchedule()", "community": 16, "community_name": "Community 16", "source_file": "src/web/mobile/views/MobileSchedules.tsx", "file_type": "code", "degree": 3}, {"id": "views_mobilesearchmodal", "label": "MobileSearchModal.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileSearchModal.tsx", "community": 25, "community_name": "Community 25", "source_file": "src/web/mobile/views/MobileSearchModal.tsx", "file_type": "code", "degree": 13}, {"id": "views_mobilesearchmodal_props", "label": "Props", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 25, "community_name": "Community 25", "source_file": "src/web/mobile/views/MobileSearchModal.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobilesearchmodal_scopes", "label": "SCOPES", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SCOPES", "community": 25, "community_name": "Community 25", "source_file": "src/web/mobile/views/MobileSearchModal.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobilesearchmodal_scope", "label": "Scope", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Scope", "community": 25, "community_name": "Community 25", "source_file": "src/web/mobile/views/MobileSearchModal.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobilesearchmodal_scope_icons", "label": "SCOPE_ICONS", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SCOPE_ICONS", "community": 25, "community_name": "Community 25", "source_file": "src/web/mobile/views/MobileSearchModal.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobilesearchmodal_mobilesearchmodal", "label": "MobileSearchModal()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileSearchModal()", "community": 25, "community_name": "Community 25", "source_file": "src/web/mobile/views/MobileSearchModal.tsx", "file_type": "code", "degree": 3}, {"id": "views_mobilesettings", "label": "MobileSettings.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "MobileSettings.tsx", "community": 56, "community_name": "Community 56", "source_file": "src/web/mobile/views/MobileSettings.tsx", "file_type": "code", "degree": 16}, {"id": "views_mobilesettings_props", "label": "Props", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 56, "community_name": "Community 56", "source_file": "src/web/mobile/views/MobileSettings.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobilesettings_pairsession", "label": "PairSession", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PairSession", "community": 56, "community_name": "Community 56", "source_file": "src/web/mobile/views/MobileSettings.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobilesettings_themes", "label": "THEMES", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "THEMES", "community": 56, "community_name": "Community 56", "source_file": "src/web/mobile/views/MobileSettings.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobilesettings_preset_accents", "label": "PRESET_ACCENTS", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PRESET_ACCENTS", "community": 56, "community_name": "Community 56", "source_file": "src/web/mobile/views/MobileSettings.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobilesettings_formatcountdown", "label": "formatCountdown()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "formatCountdown()", "community": 56, "community_name": "Community 56", "source_file": "src/web/mobile/views/MobileSettings.tsx", "file_type": "code", "degree": 2}, {"id": "views_mobilesettings_mobilesettings", "label": "MobileSettings()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileSettings()", "community": 56, "community_name": "Community 56", "source_file": "src/web/mobile/views/MobileSettings.tsx", "file_type": "code", "degree": 4}, {"id": "views_mobileskills", "label": "MobileSkills.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileSkills.tsx", "community": 12, "community_name": "Community 12", "source_file": "src/web/mobile/views/MobileSkills.tsx", "file_type": "code", "degree": 12}, {"id": "views_mobileskills_skill", "label": "Skill", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Skill", "community": 12, "community_name": "Community 12", "source_file": "src/web/mobile/views/MobileSkills.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobileskills_props", "label": "Props", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 12, "community_name": "Community 12", "source_file": "src/web/mobile/views/MobileSkills.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobileskills_categories", "label": "CATEGORIES", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CATEGORIES", "community": 12, "community_name": "Community 12", "source_file": "src/web/mobile/views/MobileSkills.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobileskills_mobileskills", "label": "MobileSkills()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileSkills()", "community": 12, "community_name": "Community 12", "source_file": "src/web/mobile/views/MobileSkills.tsx", "file_type": "code", "degree": 3}, {"id": "views_mobiletasks", "label": "MobileTasks.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 18.2, "font": {"size": 12, "color": "#ffffff"}, "title": "MobileTasks.tsx", "community": 28, "community_name": "Community 28", "source_file": "src/web/mobile/views/MobileTasks.tsx", "file_type": "code", "degree": 25}, {"id": "views_mobiletasks_props", "label": "Props", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 28, "community_name": "Community 28", "source_file": "src/web/mobile/views/MobileTasks.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobiletasks_status_order", "label": "STATUS_ORDER", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "STATUS_ORDER", "community": 28, "community_name": "Community 28", "source_file": "src/web/mobile/views/MobileTasks.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobiletasks_status_labels", "label": "STATUS_LABELS", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "STATUS_LABELS", "community": 28, "community_name": "Community 28", "source_file": "src/web/mobile/views/MobileTasks.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobiletasks_next_status", "label": "NEXT_STATUS", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "NEXT_STATUS", "community": 28, "community_name": "Community 28", "source_file": "src/web/mobile/views/MobileTasks.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobiletasks_taskchatmeta", "label": "TaskChatMeta", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TaskChatMeta", "community": 28, "community_name": "Community 28", "source_file": "src/web/mobile/views/MobileTasks.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobiletasks_taskartifactmeta", "label": "TaskArtifactMeta", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TaskArtifactMeta", "community": 28, "community_name": "Community 28", "source_file": "src/web/mobile/views/MobileTasks.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobiletasks_hastaskchat", "label": "hasTaskChat()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "hasTaskChat()", "community": 28, "community_name": "Community 28", "source_file": "src/web/mobile/views/MobileTasks.tsx", "file_type": "code", "degree": 2}, {"id": "views_mobiletasks_hastaskartifacts", "label": "hasTaskArtifacts()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "hasTaskArtifacts()", "community": 28, "community_name": "Community 28", "source_file": "src/web/mobile/views/MobileTasks.tsx", "file_type": "code", "degree": 2}, {"id": "views_mobiletasks_mobiletasks", "label": "MobileTasks()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileTasks()", "community": 28, "community_name": "Community 28", "source_file": "src/web/mobile/views/MobileTasks.tsx", "file_type": "code", "degree": 6}, {"id": "views_mobiletasks_settingsdefaultagent", "label": "settingsDefaultAgent()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "settingsDefaultAgent()", "community": 28, "community_name": "Community 28", "source_file": "src/web/mobile/views/MobileTasks.tsx", "file_type": "code", "degree": 1}, {"id": "views_mobiletasks_newtaskmodal", "label": "NewTaskModal()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "NewTaskModal()", "community": 28, "community_name": "Community 28", "source_file": "src/web/mobile/views/MobileTasks.tsx", "file_type": "code", "degree": 1}, {"id": "views_activity", "label": "Activity.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 24.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Activity.tsx", "community": 5, "community_name": "Community 5", "source_file": "src/web/views/Activity.tsx", "file_type": "code", "degree": 45}, {"id": "views_activity_props", "label": "Props", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 5, "community_name": "Community 5", "source_file": "src/web/views/Activity.tsx", "file_type": "code", "degree": 1}, {"id": "views_activity_bginstance", "label": "BgInstance", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BgInstance", "community": 5, "community_name": "Community 5", "source_file": "src/web/views/Activity.tsx", "file_type": "code", "degree": 1}, {"id": "views_activity_activityevent", "label": "ActivityEvent", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ActivityEvent", "community": 5, "community_name": "Community 5", "source_file": "src/web/views/Activity.tsx", "file_type": "code", "degree": 1}, {"id": "views_activity_zoom_ranges", "label": "ZOOM_RANGES", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ZOOM_RANGES", "community": 5, "community_name": "Community 5", "source_file": "src/web/views/Activity.tsx", "file_type": "code", "degree": 1}, {"id": "views_activity_zoomkey", "label": "ZoomKey", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ZoomKey", "community": 5, "community_name": "Community 5", "source_file": "src/web/views/Activity.tsx", "file_type": "code", "degree": 1}, {"id": "views_activity_status_colors", "label": "STATUS_COLORS", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "STATUS_COLORS", "community": 5, "community_name": "Community 5", "source_file": "src/web/views/Activity.tsx", "file_type": "code", "degree": 1}, {"id": "views_activity_statuscolor", "label": "statusColor()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "statusColor()", "community": 5, "community_name": "Community 5", "source_file": "src/web/views/Activity.tsx", "file_type": "code", "degree": 1}, {"id": "views_activity_shortlabel", "label": "shortLabel()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "shortLabel()", "community": 5, "community_name": "Community 5", "source_file": "src/web/views/Activity.tsx", "file_type": "code", "degree": 1}, {"id": "views_activity_parsets", "label": "parseTs()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "parseTs()", "community": 5, "community_name": "Community 5", "source_file": "src/web/views/Activity.tsx", "file_type": "code", "degree": 3}, {"id": "views_activity_taskstartms", "label": "taskStartMs()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "taskStartMs()", "community": 5, "community_name": "Community 5", "source_file": "src/web/views/Activity.tsx", "file_type": "code", "degree": 2}, {"id": "views_activity_taskendms", "label": "taskEndMs()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "taskEndMs()", "community": 5, "community_name": "Community 5", "source_file": "src/web/views/Activity.tsx", "file_type": "code", "degree": 2}, {"id": "views_activity_bgstartms", "label": "bgStartMs()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "bgStartMs()", "community": 5, "community_name": "Community 5", "source_file": "src/web/views/Activity.tsx", "file_type": "code", "degree": 1}, {"id": "views_activity_bgendms", "label": "bgEndMs()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "bgEndMs()", "community": 5, "community_name": "Community 5", "source_file": "src/web/views/Activity.tsx", "file_type": "code", "degree": 1}, {"id": "views_activity_choosetickstep", "label": "chooseTickStep()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "chooseTickStep()", "community": 5, "community_name": "Community 5", "source_file": "src/web/views/Activity.tsx", "file_type": "code", "degree": 1}, {"id": "views_activity_formatticklabel", "label": "formatTickLabel()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatTickLabel()", "community": 5, "community_name": "Community 5", "source_file": "src/web/views/Activity.tsx", "file_type": "code", "degree": 1}, {"id": "views_activity_lane", "label": "Lane", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Lane", "community": 5, "community_name": "Community 5", "source_file": "src/web/views/Activity.tsx", "file_type": "code", "degree": 1}, {"id": "views_activity_selecteditem", "label": "SelectedItem", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SelectedItem", "community": 5, "community_name": "Community 5", "source_file": "src/web/views/Activity.tsx", "file_type": "code", "degree": 1}, {"id": "views_activity_eventmarker", "label": "EventMarker", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "EventMarker", "community": 5, "community_name": "Community 5", "source_file": "src/web/views/Activity.tsx", "file_type": "code", "degree": 1}, {"id": "views_activity_taskbar", "label": "TaskBar", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TaskBar", "community": 5, "community_name": "Community 5", "source_file": "src/web/views/Activity.tsx", "file_type": "code", "degree": 1}, {"id": "views_activity_activity", "label": "Activity()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Activity()", "community": 6, "community_name": "Community 6", "source_file": "src/web/views/Activity.tsx", "file_type": "code", "degree": 5}, {"id": "views_agents", "label": "Agents.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 21.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Agents.tsx", "community": 59, "community_name": "Community 59", "source_file": "src/web/views/Agents.tsx", "file_type": "code", "degree": 35}, {"id": "views_agents_props", "label": "Props", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 59, "community_name": "Community 59", "source_file": "src/web/views/Agents.tsx", "file_type": "code", "degree": 1}, {"id": "views_agents_tool_options", "label": "TOOL_OPTIONS", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TOOL_OPTIONS", "community": 59, "community_name": "Community 59", "source_file": "src/web/views/Agents.tsx", "file_type": "code", "degree": 1}, {"id": "views_agents_models", "label": "MODELS", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MODELS", "community": 59, "community_name": "Community 59", "source_file": "src/web/views/Agents.tsx", "file_type": "code", "degree": 1}, {"id": "views_agents_categories", "label": "CATEGORIES", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CATEGORIES", "community": 59, "community_name": "Community 59", "source_file": "src/web/views/Agents.tsx", "file_type": "code", "degree": 1}, {"id": "views_agents_categorycolor", "label": "categoryColor()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "categoryColor()", "community": 59, "community_name": "Community 59", "source_file": "src/web/views/Agents.tsx", "file_type": "code", "degree": 2}, {"id": "views_agents_statusdot", "label": "StatusDot()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "StatusDot()", "community": 59, "community_name": "Community 59", "source_file": "src/web/views/Agents.tsx", "file_type": "code", "degree": 1}, {"id": "views_agents_statuspill", "label": "StatusPill()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "StatusPill()", "community": 59, "community_name": "Community 59", "source_file": "src/web/views/Agents.tsx", "file_type": "code", "degree": 1}, {"id": "views_agents_agents", "label": "Agents()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Agents()", "community": 6, "community_name": "Community 6", "source_file": "src/web/views/Agents.tsx", "file_type": "code", "degree": 4}, {"id": "views_agents_agentcard", "label": "AgentCard()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AgentCard()", "community": 59, "community_name": "Community 59", "source_file": "src/web/views/Agents.tsx", "file_type": "code", "degree": 5}, {"id": "views_backgroundagents", "label": "BackgroundAgents.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 23.5, "font": {"size": 12, "color": "#ffffff"}, "title": "BackgroundAgents.tsx", "community": 7, "community_name": "Community 7", "source_file": "src/web/views/BackgroundAgents.tsx", "file_type": "code", "degree": 41}, {"id": "views_backgroundagents_props", "label": "Props", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 7, "community_name": "Community 7", "source_file": "src/web/views/BackgroundAgents.tsx", "file_type": "code", "degree": 1}, {"id": "views_backgroundagents_isactive", "label": "isActive()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isActive()", "community": 7, "community_name": "Community 7", "source_file": "src/web/views/BackgroundAgents.tsx", "file_type": "code", "degree": 1}, {"id": "views_backgroundagents_formatduration", "label": "formatDuration()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "formatDuration()", "community": 7, "community_name": "Community 7", "source_file": "src/web/views/BackgroundAgents.tsx", "file_type": "code", "degree": 2}, {"id": "views_backgroundagents_backgroundagents", "label": "BackgroundAgents()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BackgroundAgents()", "community": 6, "community_name": "Community 6", "source_file": "src/web/views/BackgroundAgents.tsx", "file_type": "code", "degree": 4}, {"id": "views_backgroundagents_backgroundagentcard", "label": "BackgroundAgentCard()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BackgroundAgentCard()", "community": 7, "community_name": "Community 7", "source_file": "src/web/views/BackgroundAgents.tsx", "file_type": "code", "degree": 5}, {"id": "views_backgroundagents_openoutputmodal", "label": "openOutputModal()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "openOutputModal()", "community": 7, "community_name": "Community 7", "source_file": "src/web/views/BackgroundAgents.tsx", "file_type": "code", "degree": 1}, {"id": "views_backgroundagents_outputmodalbody", "label": "OutputModalBody()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "OutputModalBody()", "community": 7, "community_name": "Community 7", "source_file": "src/web/views/BackgroundAgents.tsx", "file_type": "code", "degree": 2}, {"id": "views_backgroundagents_opentmuxmodal", "label": "openTmuxModal()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "openTmuxModal()", "community": 7, "community_name": "Community 7", "source_file": "src/web/views/BackgroundAgents.tsx", "file_type": "code", "degree": 1}, {"id": "views_backgroundagents_tmuxmodalbody", "label": "TmuxModalBody()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TmuxModalBody()", "community": 7, "community_name": "Community 7", "source_file": "src/web/views/BackgroundAgents.tsx", "file_type": "code", "degree": 1}, {"id": "views_chat", "label": "Chat.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 21.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Chat.tsx", "community": 2, "community_name": "Community 2", "source_file": "src/web/views/Chat.tsx", "file_type": "code", "degree": 35}, {"id": "views_chat_props", "label": "Props", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 2, "community_name": "Community 2", "source_file": "src/web/views/Chat.tsx", "file_type": "code", "degree": 1}, {"id": "views_chat_slashcommand", "label": "SlashCommand", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SlashCommand", "community": 2, "community_name": "Community 2", "source_file": "src/web/views/Chat.tsx", "file_type": "code", "degree": 1}, {"id": "views_chat_taskchatsession", "label": "TaskChatSession", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TaskChatSession", "community": 2, "community_name": "Community 2", "source_file": "src/web/views/Chat.tsx", "file_type": "code", "degree": 1}, {"id": "views_chat_builtin_commands", "label": "BUILTIN_COMMANDS", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BUILTIN_COMMANDS", "community": 2, "community_name": "Community 2", "source_file": "src/web/views/Chat.tsx", "file_type": "code", "degree": 1}, {"id": "views_chat_chat", "label": "Chat()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Chat()", "community": 6, "community_name": "Community 6", "source_file": "src/web/views/Chat.tsx", "file_type": "code", "degree": 5}, {"id": "views_chat_chatbubble", "label": "ChatBubble()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ChatBubble()", "community": 7, "community_name": "Community 7", "source_file": "src/web/views/Chat.tsx", "file_type": "code", "degree": 3}, {"id": "views_config", "label": "Config.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 26.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Config.tsx", "community": 15, "community_name": "Community 15", "source_file": "src/web/views/Config.tsx", "file_type": "code", "degree": 49}, {"id": "views_config_props", "label": "Props", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 15, "community_name": "Community 15", "source_file": "src/web/views/Config.tsx", "file_type": "code", "degree": 1}, {"id": "views_config_navid", "label": "NavId", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "NavId", "community": 15, "community_name": "Community 15", "source_file": "src/web/views/Config.tsx", "file_type": "code", "degree": 1}, {"id": "views_config_nav_items", "label": "NAV_ITEMS", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "NAV_ITEMS", "community": 15, "community_name": "Community 15", "source_file": "src/web/views/Config.tsx", "file_type": "code", "degree": 1}, {"id": "views_config_config", "label": "Config()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Config()", "community": 6, "community_name": "Community 6", "source_file": "src/web/views/Config.tsx", "file_type": "code", "degree": 4}, {"id": "views_config_ocsection", "label": "OcSection", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "OcSection", "community": 15, "community_name": "Community 15", "source_file": "src/web/views/Config.tsx", "file_type": "code", "degree": 1}, {"id": "views_config_oc_sections", "label": "OC_SECTIONS", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "OC_SECTIONS", "community": 15, "community_name": "Community 15", "source_file": "src/web/views/Config.tsx", "file_type": "code", "degree": 1}, {"id": "views_config_configeditorpanel", "label": "ConfigEditorPanel()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ConfigEditorPanel()", "community": 3, "community_name": "Community 3", "source_file": "src/web/views/Config.tsx", "file_type": "code", "degree": 2}, {"id": "views_config_modelform", "label": "ModelForm()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ModelForm()", "community": 15, "community_name": "Community 15", "source_file": "src/web/views/Config.tsx", "file_type": "code", "degree": 1}, {"id": "views_config_pluginsform", "label": "PluginsForm()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PluginsForm()", "community": 15, "community_name": "Community 15", "source_file": "src/web/views/Config.tsx", "file_type": "code", "degree": 1}, {"id": "views_config_toolsform", "label": "ToolsForm()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ToolsForm()", "community": 15, "community_name": "Community 15", "source_file": "src/web/views/Config.tsx", "file_type": "code", "degree": 1}, {"id": "views_config_permissionsform", "label": "PermissionsForm()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "PermissionsForm()", "community": 3, "community_name": "Community 3", "source_file": "src/web/views/Config.tsx", "file_type": "code", "degree": 2}, {"id": "views_config_hooksform", "label": "HooksForm()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HooksForm()", "community": 15, "community_name": "Community 15", "source_file": "src/web/views/Config.tsx", "file_type": "code", "degree": 1}, {"id": "views_config_diagnosticspanel", "label": "DiagnosticsPanel()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DiagnosticsPanel()", "community": 15, "community_name": "Community 15", "source_file": "src/web/views/Config.tsx", "file_type": "code", "degree": 1}, {"id": "views_config_providerdraft", "label": "ProviderDraft", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ProviderDraft", "community": 15, "community_name": "Community 15", "source_file": "src/web/views/Config.tsx", "file_type": "code", "degree": 1}, {"id": "views_config_providerspanel", "label": "ProvidersPanel()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ProvidersPanel()", "community": 6, "community_name": "Community 6", "source_file": "src/web/views/Config.tsx", "file_type": "code", "degree": 3}, {"id": "views_config_emptyproviders", "label": "EmptyProviders()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "EmptyProviders()", "community": 15, "community_name": "Community 15", "source_file": "src/web/views/Config.tsx", "file_type": "code", "degree": 1}, {"id": "views_config_mcpdraft", "label": "McpDraft", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "McpDraft", "community": 15, "community_name": "Community 15", "source_file": "src/web/views/Config.tsx", "file_type": "code", "degree": 1}, {"id": "views_config_parseenv", "label": "parseEnv()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "parseEnv()", "community": 15, "community_name": "Community 15", "source_file": "src/web/views/Config.tsx", "file_type": "code", "degree": 1}, {"id": "views_config_parseheaders", "label": "parseHeaders()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "parseHeaders()", "community": 15, "community_name": "Community 15", "source_file": "src/web/views/Config.tsx", "file_type": "code", "degree": 1}, {"id": "views_config_mcpspanel", "label": "McpsPanel()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "McpsPanel()", "community": 6, "community_name": "Community 6", "source_file": "src/web/views/Config.tsx", "file_type": "code", "degree": 3}, {"id": "views_config_exportpanel", "label": "ExportPanel()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ExportPanel()", "community": 15, "community_name": "Community 15", "source_file": "src/web/views/Config.tsx", "file_type": "code", "degree": 1}, {"id": "views_config_autodetectresult", "label": "AutoDetectResult", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AutoDetectResult", "community": 15, "community_name": "Community 15", "source_file": "src/web/views/Config.tsx", "file_type": "code", "degree": 1}, {"id": "views_config_autodetectbanner", "label": "AutoDetectBanner()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "AutoDetectBanner()", "community": 15, "community_name": "Community 15", "source_file": "src/web/views/Config.tsx", "file_type": "code", "degree": 2}, {"id": "views_history", "label": "History.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 18.2, "font": {"size": 12, "color": "#ffffff"}, "title": "History.tsx", "community": 2, "community_name": "Community 2", "source_file": "src/web/views/History.tsx", "file_type": "code", "degree": 25}, {"id": "views_history_props", "label": "Props", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 2, "community_name": "Community 2", "source_file": "src/web/views/History.tsx", "file_type": "code", "degree": 1}, {"id": "views_history_historyevent", "label": "HistoryEvent", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HistoryEvent", "community": 2, "community_name": "Community 2", "source_file": "src/web/views/History.tsx", "file_type": "code", "degree": 1}, {"id": "views_history_projecthistory", "label": "ProjectHistory", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ProjectHistory", "community": 2, "community_name": "Community 2", "source_file": "src/web/views/History.tsx", "file_type": "code", "degree": 1}, {"id": "views_history_historyresponse", "label": "HistoryResponse", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HistoryResponse", "community": 2, "community_name": "Community 2", "source_file": "src/web/views/History.tsx", "file_type": "code", "degree": 1}, {"id": "views_history_time_ranges", "label": "TIME_RANGES", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TIME_RANGES", "community": 2, "community_name": "Community 2", "source_file": "src/web/views/History.tsx", "file_type": "code", "degree": 1}, {"id": "views_history_history", "label": "History()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "History()", "community": 6, "community_name": "Community 6", "source_file": "src/web/views/History.tsx", "file_type": "code", "degree": 4}, {"id": "views_mods", "label": "Mods.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 18.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Mods.tsx", "community": 2, "community_name": "Community 2", "source_file": "src/web/views/Mods.tsx", "file_type": "code", "degree": 27}, {"id": "views_mods_props", "label": "Props", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 2, "community_name": "Community 2", "source_file": "src/web/views/Mods.tsx", "file_type": "code", "degree": 1}, {"id": "views_mods_modview", "label": "ModView", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ModView", "community": 2, "community_name": "Community 2", "source_file": "src/web/views/Mods.tsx", "file_type": "code", "degree": 1}, {"id": "views_mods_mods", "label": "Mods()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Mods()", "community": 6, "community_name": "Community 6", "source_file": "src/web/views/Mods.tsx", "file_type": "code", "degree": 4}, {"id": "views_mods_moddetails", "label": "ModDetails()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ModDetails()", "community": 2, "community_name": "Community 2", "source_file": "src/web/views/Mods.tsx", "file_type": "code", "degree": 1}, {"id": "views_overview", "label": "Overview.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 24.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Overview.tsx", "community": 27, "community_name": "Community 27", "source_file": "src/web/views/Overview.tsx", "file_type": "code", "degree": 45}, {"id": "views_overview_props", "label": "Props", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 27, "community_name": "Community 27", "source_file": "src/web/views/Overview.tsx", "file_type": "code", "degree": 1}, {"id": "views_overview_overview", "label": "Overview()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Overview()", "community": 6, "community_name": "Community 6", "source_file": "src/web/views/Overview.tsx", "file_type": "code", "degree": 6}, {"id": "views_overview_addprojectdialog", "label": "AddProjectDialog()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AddProjectDialog()", "community": 27, "community_name": "Community 27", "source_file": "src/web/views/Overview.tsx", "file_type": "code", "degree": 1}, {"id": "views_overview_projectcard", "label": "ProjectCard()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ProjectCard()", "community": 27, "community_name": "Community 27", "source_file": "src/web/views/Overview.tsx", "file_type": "code", "degree": 2}, {"id": "views_overview_sentencecase", "label": "sentenceCase()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "sentenceCase()", "community": 27, "community_name": "Community 27", "source_file": "src/web/views/Overview.tsx", "file_type": "code", "degree": 2}, {"id": "views_overview_humanizekind", "label": "humanizeKind()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "humanizeKind()", "community": 27, "community_name": "Community 27", "source_file": "src/web/views/Overview.tsx", "file_type": "code", "degree": 3}, {"id": "views_overview_firststring", "label": "firstString()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "firstString()", "community": 27, "community_name": "Community 27", "source_file": "src/web/views/Overview.tsx", "file_type": "code", "degree": 2}, {"id": "views_overview_formatactivitysummary", "label": "formatActivitySummary()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "formatActivitySummary()", "community": 27, "community_name": "Community 27", "source_file": "src/web/views/Overview.tsx", "file_type": "code", "degree": 3}, {"id": "views_overview_formatrelativetime", "label": "formatRelativeTime()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "formatRelativeTime()", "community": 27, "community_name": "Community 27", "source_file": "src/web/views/Overview.tsx", "file_type": "code", "degree": 3}, {"id": "views_overview_activityseverity", "label": "activitySeverity()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "activitySeverity()", "community": 27, "community_name": "Community 27", "source_file": "src/web/views/Overview.tsx", "file_type": "code", "degree": 2}, {"id": "views_overview_activityicon", "label": "activityIcon()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "activityIcon()", "community": 27, "community_name": "Community 27", "source_file": "src/web/views/Overview.tsx", "file_type": "code", "degree": 2}, {"id": "views_overview_activitynavtarget", "label": "activityNavTarget()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "activityNavTarget()", "community": 27, "community_name": "Community 27", "source_file": "src/web/views/Overview.tsx", "file_type": "code", "degree": 2}, {"id": "views_overview_activityfeeditem", "label": "ActivityFeedItem()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ActivityFeedItem()", "community": 27, "community_name": "Community 27", "source_file": "src/web/views/Overview.tsx", "file_type": "code", "degree": 8}, {"id": "views_plans", "label": "Plans.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 26.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Plans.tsx", "community": 11, "community_name": "Community 11", "source_file": "src/web/views/Plans.tsx", "file_type": "code", "degree": 51}, {"id": "views_plans_props", "label": "Props", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 11, "community_name": "Community 11", "source_file": "src/web/views/Plans.tsx", "file_type": "code", "degree": 1}, {"id": "views_plans_element_types", "label": "ELEMENT_TYPES", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ELEMENT_TYPES", "community": 11, "community_name": "Community 11", "source_file": "src/web/views/Plans.tsx", "file_type": "code", "degree": 1}, {"id": "views_plans_plan_statuses", "label": "PLAN_STATUSES", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PLAN_STATUSES", "community": 11, "community_name": "Community 11", "source_file": "src/web/views/Plans.tsx", "file_type": "code", "degree": 1}, {"id": "views_plans_planstatuskind", "label": "planStatusKind()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "planStatusKind()", "community": 11, "community_name": "Community 11", "source_file": "src/web/views/Plans.tsx", "file_type": "code", "degree": 4}, {"id": "views_plans_elementcolor", "label": "elementColor()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "elementColor()", "community": 11, "community_name": "Community 11", "source_file": "src/web/views/Plans.tsx", "file_type": "code", "degree": 2}, {"id": "views_plans_elementicon", "label": "ElementIcon()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ElementIcon()", "community": 11, "community_name": "Community 11", "source_file": "src/web/views/Plans.tsx", "file_type": "code", "degree": 1}, {"id": "views_plans_plans", "label": "Plans()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Plans()", "community": 6, "community_name": "Community 6", "source_file": "src/web/views/Plans.tsx", "file_type": "code", "degree": 3}, {"id": "views_plans_newplancard", "label": "NewPlanCard()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "NewPlanCard()", "community": 11, "community_name": "Community 11", "source_file": "src/web/views/Plans.tsx", "file_type": "code", "degree": 1}, {"id": "views_plans_plancard", "label": "PlanCard()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "PlanCard()", "community": 11, "community_name": "Community 11", "source_file": "src/web/views/Plans.tsx", "file_type": "code", "degree": 3}, {"id": "views_plans_planeditor", "label": "PlanEditor()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PlanEditor()", "community": 6, "community_name": "Community 6", "source_file": "src/web/views/Plans.tsx", "file_type": "code", "degree": 5}, {"id": "views_plans_planeditorheader", "label": "PlanEditorHeader()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "PlanEditorHeader()", "community": 11, "community_name": "Community 11", "source_file": "src/web/views/Plans.tsx", "file_type": "code", "degree": 2}, {"id": "views_plans_editelementinline", "label": "editElementInline()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "editElementInline()", "community": 11, "community_name": "Community 11", "source_file": "src/web/views/Plans.tsx", "file_type": "code", "degree": 1}, {"id": "views_plans_viewportprops", "label": "ViewportProps", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ViewportProps", "community": 11, "community_name": "Community 11", "source_file": "src/web/views/Plans.tsx", "file_type": "code", "degree": 1}, {"id": "views_plans_canvasviewport", "label": "CanvasViewport()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CanvasViewport()", "community": 11, "community_name": "Community 11", "source_file": "src/web/views/Plans.tsx", "file_type": "code", "degree": 1}, {"id": "views_plans_canvaselementview", "label": "CanvasElementView()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CanvasElementView()", "community": 11, "community_name": "Community 11", "source_file": "src/web/views/Plans.tsx", "file_type": "code", "degree": 4}, {"id": "views_plans_connectionslayer", "label": "ConnectionsLayer()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ConnectionsLayer()", "community": 11, "community_name": "Community 11", "source_file": "src/web/views/Plans.tsx", "file_type": "code", "degree": 1}, {"id": "views_plans_commentspanel", "label": "CommentsPanel()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CommentsPanel()", "community": 11, "community_name": "Community 11", "source_file": "src/web/views/Plans.tsx", "file_type": "code", "degree": 1}, {"id": "views_providers", "label": "Providers.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 18.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Providers.tsx", "community": 2, "community_name": "Community 2", "source_file": "src/web/views/Providers.tsx", "file_type": "code", "degree": 26}, {"id": "views_providers_props", "label": "Props", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 2, "community_name": "Community 2", "source_file": "src/web/views/Providers.tsx", "file_type": "code", "degree": 1}, {"id": "views_providers_providerwithmeta", "label": "ProviderWithMeta", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ProviderWithMeta", "community": 2, "community_name": "Community 2", "source_file": "src/web/views/Providers.tsx", "file_type": "code", "degree": 1}, {"id": "views_providers_providers", "label": "Providers()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Providers()", "community": 6, "community_name": "Community 6", "source_file": "src/web/views/Providers.tsx", "file_type": "code", "degree": 3}, {"id": "views_schedules", "label": "Schedules.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 24.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Schedules.tsx", "community": 20, "community_name": "Community 20", "source_file": "src/web/views/Schedules.tsx", "file_type": "code", "degree": 43}, {"id": "views_schedules_props", "label": "Props", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 20, "community_name": "Community 20", "source_file": "src/web/views/Schedules.tsx", "file_type": "code", "degree": 1}, {"id": "views_schedules_types", "label": "TYPES", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TYPES", "community": 20, "community_name": "Community 20", "source_file": "src/web/views/Schedules.tsx", "file_type": "code", "degree": 1}, {"id": "views_schedules_actions", "label": "ACTIONS", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ACTIONS", "community": 20, "community_name": "Community 20", "source_file": "src/web/views/Schedules.tsx", "file_type": "code", "degree": 1}, {"id": "views_schedules_timezones", "label": "TIMEZONES", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TIMEZONES", "community": 20, "community_name": "Community 20", "source_file": "src/web/views/Schedules.tsx", "file_type": "code", "degree": 1}, {"id": "views_schedules_minute_options", "label": "MINUTE_OPTIONS", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MINUTE_OPTIONS", "community": 20, "community_name": "Community 20", "source_file": "src/web/views/Schedules.tsx", "file_type": "code", "degree": 1}, {"id": "views_schedules_hour_options", "label": "HOUR_OPTIONS", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HOUR_OPTIONS", "community": 20, "community_name": "Community 20", "source_file": "src/web/views/Schedules.tsx", "file_type": "code", "degree": 1}, {"id": "views_schedules_dow_options", "label": "DOW_OPTIONS", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DOW_OPTIONS", "community": 20, "community_name": "Community 20", "source_file": "src/web/views/Schedules.tsx", "file_type": "code", "degree": 1}, {"id": "views_schedules_interval_units", "label": "INTERVAL_UNITS", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "INTERVAL_UNITS", "community": 20, "community_name": "Community 20", "source_file": "src/web/views/Schedules.tsx", "file_type": "code", "degree": 1}, {"id": "views_schedules_parsecronfields", "label": "parseCronFields()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "parseCronFields()", "community": 20, "community_name": "Community 20", "source_file": "src/web/views/Schedules.tsx", "file_type": "code", "degree": 3}, {"id": "views_schedules_parseintervalparts", "label": "parseIntervalParts()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "parseIntervalParts()", "community": 20, "community_name": "Community 20", "source_file": "src/web/views/Schedules.tsx", "file_type": "code", "degree": 2}, {"id": "views_schedules_editorstate", "label": "EditorState", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "EditorState", "community": 20, "community_name": "Community 20", "source_file": "src/web/views/Schedules.tsx", "file_type": "code", "degree": 1}, {"id": "views_schedules_buildinitialstate", "label": "buildInitialState()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "buildInitialState()", "community": 20, "community_name": "Community 20", "source_file": "src/web/views/Schedules.tsx", "file_type": "code", "degree": 4}, {"id": "views_schedules_todatetimelocal", "label": "toDatetimeLocal()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "toDatetimeLocal()", "community": 20, "community_name": "Community 20", "source_file": "src/web/views/Schedules.tsx", "file_type": "code", "degree": 3}, {"id": "views_schedules_composeschedule", "label": "composeSchedule()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "composeSchedule()", "community": 20, "community_name": "Community 20", "source_file": "src/web/views/Schedules.tsx", "file_type": "code", "degree": 1}, {"id": "views_schedules_schedules", "label": "Schedules()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Schedules()", "community": 6, "community_name": "Community 6", "source_file": "src/web/views/Schedules.tsx", "file_type": "code", "degree": 4}, {"id": "views_schedules_scheduleeditormodal", "label": "ScheduleEditorModal()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ScheduleEditorModal()", "community": 20, "community_name": "Community 20", "source_file": "src/web/views/Schedules.tsx", "file_type": "code", "degree": 1}, {"id": "views_schedules_humanizeschedule", "label": "humanizeSchedule()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "humanizeSchedule()", "community": 20, "community_name": "Community 20", "source_file": "src/web/views/Schedules.tsx", "file_type": "code", "degree": 2}, {"id": "views_schedules_formatnextrun", "label": "formatNextRun()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatNextRun()", "community": 20, "community_name": "Community 20", "source_file": "src/web/views/Schedules.tsx", "file_type": "code", "degree": 1}, {"id": "views_schedules_resulttagclass", "label": "resultTagClass()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "resultTagClass()", "community": 20, "community_name": "Community 20", "source_file": "src/web/views/Schedules.tsx", "file_type": "code", "degree": 1}, {"id": "views_schedules_truncate", "label": "truncate()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "truncate()", "community": 20, "community_name": "Community 20", "source_file": "src/web/views/Schedules.tsx", "file_type": "code", "degree": 1}, {"id": "views_settings", "label": "Settings.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 21.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Settings.tsx", "community": 41, "community_name": "Community 41", "source_file": "src/web/views/Settings.tsx", "file_type": "code", "degree": 35}, {"id": "views_settings_props", "label": "Props", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 41, "community_name": "Community 41", "source_file": "src/web/views/Settings.tsx", "file_type": "code", "degree": 1}, {"id": "views_settings_themes", "label": "THEMES", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "THEMES", "community": 41, "community_name": "Community 41", "source_file": "src/web/views/Settings.tsx", "file_type": "code", "degree": 1}, {"id": "views_settings_preset_themes", "label": "PRESET_THEMES", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PRESET_THEMES", "community": 41, "community_name": "Community 41", "source_file": "src/web/views/Settings.tsx", "file_type": "code", "degree": 1}, {"id": "views_settings_font_families", "label": "FONT_FAMILIES", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "FONT_FAMILIES", "community": 41, "community_name": "Community 41", "source_file": "src/web/views/Settings.tsx", "file_type": "code", "degree": 1}, {"id": "views_settings_pairsession", "label": "PairSession", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PairSession", "community": 41, "community_name": "Community 41", "source_file": "src/web/views/Settings.tsx", "file_type": "code", "degree": 1}, {"id": "views_settings_formatcountdown", "label": "formatCountdown()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "formatCountdown()", "community": 41, "community_name": "Community 41", "source_file": "src/web/views/Settings.tsx", "file_type": "code", "degree": 2}, {"id": "views_settings_pairdevicecard", "label": "PairDeviceCard()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "PairDeviceCard()", "community": 41, "community_name": "Community 41", "source_file": "src/web/views/Settings.tsx", "file_type": "code", "degree": 3}, {"id": "views_settings_layouts", "label": "LAYOUTS", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "LAYOUTS", "community": 41, "community_name": "Community 41", "source_file": "src/web/views/Settings.tsx", "file_type": "code", "degree": 1}, {"id": "views_settings_pkgstatus", "label": "PkgStatus", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PkgStatus", "community": 41, "community_name": "Community 41", "source_file": "src/web/views/Settings.tsx", "file_type": "code", "degree": 1}, {"id": "views_settings_updatescard", "label": "UpdatesCard()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdatesCard()", "community": 41, "community_name": "Community 41", "source_file": "src/web/views/Settings.tsx", "file_type": "code", "degree": 2}, {"id": "views_settings_settingsview", "label": "SettingsView()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SettingsView()", "community": 6, "community_name": "Community 6", "source_file": "src/web/views/Settings.tsx", "file_type": "code", "degree": 4}, {"id": "views_settings_activitylogcard", "label": "ActivityLogCard()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ActivityLogCard()", "community": 41, "community_name": "Community 41", "source_file": "src/web/views/Settings.tsx", "file_type": "code", "degree": 2}, {"id": "views_skills", "label": "Skills.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 19.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Skills.tsx", "community": 2, "community_name": "Community 2", "source_file": "src/web/views/Skills.tsx", "file_type": "code", "degree": 29}, {"id": "views_skills_props", "label": "Props", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 2, "community_name": "Community 2", "source_file": "src/web/views/Skills.tsx", "file_type": "code", "degree": 1}, {"id": "views_skills_skill", "label": "Skill", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Skill", "community": 2, "community_name": "Community 2", "source_file": "src/web/views/Skills.tsx", "file_type": "code", "degree": 1}, {"id": "views_skills_icons", "label": "ICONS", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ICONS", "community": 2, "community_name": "Community 2", "source_file": "src/web/views/Skills.tsx", "file_type": "code", "degree": 1}, {"id": "views_skills_skills", "label": "Skills()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Skills()", "community": 6, "community_name": "Community 6", "source_file": "src/web/views/Skills.tsx", "file_type": "code", "degree": 4}, {"id": "views_skills_skillcard", "label": "SkillCard()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "SkillCard()", "community": 2, "community_name": "Community 2", "source_file": "src/web/views/Skills.tsx", "file_type": "code", "degree": 2}, {"id": "views_tasks", "label": "Tasks.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 26.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Tasks.tsx", "community": 3, "community_name": "Community 3", "source_file": "src/web/views/Tasks.tsx", "file_type": "code", "degree": 51}, {"id": "views_tasks_props", "label": "Props", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 3, "community_name": "Community 3", "source_file": "src/web/views/Tasks.tsx", "file_type": "code", "degree": 1}, {"id": "views_tasks_column", "label": "Column", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Column", "community": 3, "community_name": "Community 3", "source_file": "src/web/views/Tasks.tsx", "file_type": "code", "degree": 1}, {"id": "views_tasks_columns", "label": "COLUMNS", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "COLUMNS", "community": 3, "community_name": "Community 3", "source_file": "src/web/views/Tasks.tsx", "file_type": "code", "degree": 1}, {"id": "views_tasks_matchescolumn", "label": "matchesColumn()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "matchesColumn()", "community": 3, "community_name": "Community 3", "source_file": "src/web/views/Tasks.tsx", "file_type": "code", "degree": 1}, {"id": "views_tasks_priorities", "label": "PRIORITIES", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PRIORITIES", "community": 3, "community_name": "Community 3", "source_file": "src/web/views/Tasks.tsx", "file_type": "code", "degree": 1}, {"id": "views_tasks_priority", "label": "Priority", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Priority", "community": 3, "community_name": "Community 3", "source_file": "src/web/views/Tasks.tsx", "file_type": "code", "degree": 1}, {"id": "views_tasks_sortkey", "label": "SortKey", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SortKey", "community": 3, "community_name": "Community 3", "source_file": "src/web/views/Tasks.tsx", "file_type": "code", "degree": 1}, {"id": "views_tasks_sorts", "label": "SORTS", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SORTS", "community": 3, "community_name": "Community 3", "source_file": "src/web/views/Tasks.tsx", "file_type": "code", "degree": 1}, {"id": "views_tasks_tasks", "label": "Tasks()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Tasks()", "community": 6, "community_name": "Community 6", "source_file": "src/web/views/Tasks.tsx", "file_type": "code", "degree": 4}, {"id": "views_tasks_kanbancolumn", "label": "KanbanColumn()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "KanbanColumn()", "community": 3, "community_name": "Community 3", "source_file": "src/web/views/Tasks.tsx", "file_type": "code", "degree": 2}, {"id": "views_tasks_taskcard", "label": "TaskCard()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "TaskCard()", "community": 6, "community_name": "Community 6", "source_file": "src/web/views/Tasks.tsx", "file_type": "code", "degree": 6}, {"id": "views_tasks_formatduration", "label": "formatDuration()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "formatDuration()", "community": 3, "community_name": "Community 3", "source_file": "src/web/views/Tasks.tsx", "file_type": "code", "degree": 3}, {"id": "views_tasks_opentaskmodal", "label": "openTaskModal()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "openTaskModal()", "community": 3, "community_name": "Community 3", "source_file": "src/web/views/Tasks.tsx", "file_type": "code", "degree": 1}, {"id": "views_tasks_opentaskdetail", "label": "openTaskDetail()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "openTaskDetail()", "community": 3, "community_name": "Community 3", "source_file": "src/web/views/Tasks.tsx", "file_type": "code", "degree": 4}, {"id": "views_tasks_opensubmittaskmodal", "label": "openSubmitTaskModal()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "openSubmitTaskModal()", "community": 3, "community_name": "Community 3", "source_file": "src/web/views/Tasks.tsx", "file_type": "code", "degree": 1}, {"id": "routes_ping", "label": "ping.mjs", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ping.mjs", "community": 69, "community_name": "Community 69", "source_file": "templates/mod/hello-mod/routes/ping.mjs", "file_type": "code", "degree": 1}, {"id": "routes_ping_register", "label": "register()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "register()", "community": 69, "community_name": "Community 69", "source_file": "templates/mod/hello-mod/routes/ping.mjs", "file_type": "code", "degree": 1}, {"id": "views_helloview", "label": "HelloView.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "HelloView.tsx", "community": 73, "community_name": "Community 73", "source_file": "templates/mod/hello-mod/views/HelloView.tsx", "file_type": "code", "degree": 0}, {"id": "tests_mod_security_test", "label": "mod-security.test.mjs", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "mod-security.test.mjs", "community": 13, "community_name": "Community 13", "source_file": "tests/mod-security.test.mjs", "file_type": "code", "degree": 10}, {"id": "tests_mod_security_test_freshtmp", "label": "freshTmp()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "freshTmp()", "community": 13, "community_name": "Community 13", "source_file": "tests/mod-security.test.mjs", "file_type": "code", "degree": 1}, {"id": "tests_opencode_runner_test", "label": "opencode-runner.test.mjs", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "opencode-runner.test.mjs", "community": 54, "community_name": "Community 54", "source_file": "tests/opencode-runner.test.mjs", "file_type": "code", "degree": 8}, {"id": "tests_opencode_runner_test_has_opencode", "label": "HAS_OPENCODE", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HAS_OPENCODE", "community": 54, "community_name": "Community 54", "source_file": "tests/opencode-runner.test.mjs", "file_type": "code", "degree": 1}, {"id": "tests_path_safe_test", "label": "path-safe.test.mjs", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "path-safe.test.mjs", "community": 40, "community_name": "Community 40", "source_file": "tests/path-safe.test.mjs", "file_type": "code", "degree": 6}, {"id": "tests_path_safe_test_home", "label": "HOME", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HOME", "community": 40, "community_name": "Community 40", "source_file": "tests/path-safe.test.mjs", "file_type": "code", "degree": 1}, {"id": "tests_path_safe_test_fallback", "label": "FALLBACK", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "FALLBACK", "community": 40, "community_name": "Community 40", "source_file": "tests/path-safe.test.mjs", "file_type": "code", "degree": 1}, {"id": "tests_smoke_v2", "label": "smoke-v2.mjs", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "smoke-v2.mjs", "community": 53, "community_name": "Community 53", "source_file": "tests/smoke-v2.mjs", "file_type": "code", "degree": 9}, {"id": "tests_smoke_v2_tests", "label": "tests", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tests", "community": 53, "community_name": "Community 53", "source_file": "tests/smoke-v2.mjs", "file_type": "code", "degree": 1}, {"id": "tests_smoke_v2_test", "label": "test()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "test()", "community": 53, "community_name": "Community 53", "source_file": "tests/smoke-v2.mjs", "file_type": "code", "degree": 2}, {"id": "tests_smoke_v2_main", "label": "main()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 53, "community_name": "Community 53", "source_file": "tests/smoke-v2.mjs", "file_type": "code", "degree": 5}, {"id": "tests_strip_thinking_test", "label": "strip-thinking.test.mjs", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "strip-thinking.test.mjs", "community": 31, "community_name": "Community 31", "source_file": "tests/strip-thinking.test.mjs", "file_type": "code", "degree": 3}, {"id": "tests_tmux_wrap_test", "label": "tmux-wrap.test.mjs", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "tmux-wrap.test.mjs", "community": 40, "community_name": "Community 40", "source_file": "tests/tmux-wrap.test.mjs", "file_type": "code", "degree": 5}, {"id": "tests_tmux_wrap_test_has_tmux", "label": "HAS_TMUX", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HAS_TMUX", "community": 40, "community_name": "Community 40", "source_file": "tests/tmux-wrap.test.mjs", "file_type": "code", "degree": 1}, {"id": "tests_tmux_wrap_test_spawntmuxfor", "label": "spawnTmuxFor()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "spawnTmuxFor()", "community": 40, "community_name": "Community 40", "source_file": "tests/tmux-wrap.test.mjs", "file_type": "code", "degree": 1}, {"id": "tests_tmux_wrap_test_killtmuxsession", "label": "killTmuxSession()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "killTmuxSession()", "community": 40, "community_name": "Community 40", "source_file": "tests/tmux-wrap.test.mjs", "file_type": "code", "degree": 1}, {"id": "tsconfig", "label": "tsconfig.json", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "tsconfig.json", "community": 19, "community_name": "Community 19", "source_file": "tsconfig.json", "file_type": "code", "degree": 3}, {"id": "tsconfig_compileroptions", "label": "compilerOptions", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.9, "font": {"size": 12, "color": "#ffffff"}, "title": "compilerOptions", "community": 19, "community_name": "Community 19", "source_file": "tsconfig.json", "file_type": "code", "degree": 18}, {"id": "tsconfig_compileroptions_target", "label": "target", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "target", "community": 19, "community_name": "Community 19", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_lib", "label": "lib", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "lib", "community": 19, "community_name": "Community 19", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_module", "label": "module", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "module", "community": 19, "community_name": "Community 19", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_moduleresolution", "label": "moduleResolution", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "moduleResolution", "community": 19, "community_name": "Community 19", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_jsx", "label": "jsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "jsx", "community": 19, "community_name": "Community 19", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_strict", "label": "strict", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "strict", "community": 19, "community_name": "Community 19", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_nounusedlocals", "label": "noUnusedLocals", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noUnusedLocals", "community": 19, "community_name": "Community 19", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_nounusedparameters", "label": "noUnusedParameters", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noUnusedParameters", "community": 19, "community_name": "Community 19", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_nofallthroughcasesinswitch", "label": "noFallthroughCasesInSwitch", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noFallthroughCasesInSwitch", "community": 19, "community_name": "Community 19", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_esmoduleinterop", "label": "esModuleInterop", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "esModuleInterop", "community": 19, "community_name": "Community 19", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_skiplibcheck", "label": "skipLibCheck", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "skipLibCheck", "community": 19, "community_name": "Community 19", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_forceconsistentcasinginfilenames", "label": "forceConsistentCasingInFileNames", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "forceConsistentCasingInFileNames", "community": 19, "community_name": "Community 19", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_resolvejsonmodule", "label": "resolveJsonModule", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "resolveJsonModule", "community": 19, "community_name": "Community 19", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_isolatedmodules", "label": "isolatedModules", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isolatedModules", "community": 19, "community_name": "Community 19", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_allowsyntheticdefaultimports", "label": "allowSyntheticDefaultImports", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "allowSyntheticDefaultImports", "community": 19, "community_name": "Community 19", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_usedefineforclassfields", "label": "useDefineForClassFields", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "useDefineForClassFields", "community": 19, "community_name": "Community 19", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_types", "label": "types", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "types", "community": 19, "community_name": "Community 19", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_include", "label": "include", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "include", "community": 19, "community_name": "Community 19", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_exclude", "label": "exclude", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "exclude", "community": 19, "community_name": "Community 19", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "vite_config", "label": "vite.config.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "vite.config.ts", "community": 71, "community_name": "Community 71", "source_file": "vite.config.ts", "file_type": "code", "degree": 1}, {"id": "vite_config_dirname", "label": "__dirname", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "__dirname", "community": 71, "community_name": "Community 71", "source_file": "vite.config.ts", "file_type": "code", "degree": 1}, {"id": "server_serve_info_serve_info_file_paths", "label": "SERVE_INFO_FILE_PATHS", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "SERVE_INFO_FILE_PATHS", "community": 72, "community_name": "Community 72", "source_file": "src/server/serve-info.mjs", "file_type": "code", "degree": 0}];
70
+ const RAW_EDGES = [{"from": "web_prototype_e1429c1737_open_design", "to": "web_prototype_e1429c1737_open_design_author", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design", "to": "web_prototype_e1429c1737_open_design_compat", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design", "to": "web_prototype_e1429c1737_open_design_description", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design", "to": "web_prototype_e1429c1737_open_design_description_i18n", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design", "to": "web_prototype_e1429c1737_open_design_homepage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design", "to": "web_prototype_e1429c1737_open_design_license", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design", "to": "web_prototype_e1429c1737_open_design_name", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design", "to": "web_prototype_e1429c1737_open_design_od", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design", "to": "web_prototype_e1429c1737_open_design_schema", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design", "to": "web_prototype_e1429c1737_open_design_specversion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design", "to": "web_prototype_e1429c1737_open_design_tags", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design", "to": "web_prototype_e1429c1737_open_design_title", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design", "to": "web_prototype_e1429c1737_open_design_title_i18n", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design", "to": "web_prototype_e1429c1737_open_design_version", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_title_i18n", "to": "web_prototype_e1429c1737_open_design_title_i18n_ar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_title_i18n", "to": "web_prototype_e1429c1737_open_design_title_i18n_de", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_title_i18n", "to": "web_prototype_e1429c1737_open_design_title_i18n_en", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_title_i18n", "to": "web_prototype_e1429c1737_open_design_title_i18n_es", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_title_i18n", "to": "web_prototype_e1429c1737_open_design_title_i18n_fr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_title_i18n", "to": "web_prototype_e1429c1737_open_design_title_i18n_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_title_i18n", "to": "web_prototype_e1429c1737_open_design_title_i18n_it", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_title_i18n", "to": "web_prototype_e1429c1737_open_design_title_i18n_ja", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_title_i18n", "to": "web_prototype_e1429c1737_open_design_title_i18n_ko", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_title_i18n", "to": "web_prototype_e1429c1737_open_design_title_i18n_nl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_title_i18n", "to": "web_prototype_e1429c1737_open_design_title_i18n_pl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_title_i18n", "to": "web_prototype_e1429c1737_open_design_title_i18n_pt_br", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_title_i18n", "to": "web_prototype_e1429c1737_open_design_title_i18n_ru", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_title_i18n", "to": "web_prototype_e1429c1737_open_design_title_i18n_tr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_title_i18n", "to": "web_prototype_e1429c1737_open_design_title_i18n_uk", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_title_i18n", "to": "web_prototype_e1429c1737_open_design_title_i18n_vi", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_title_i18n", "to": "web_prototype_e1429c1737_open_design_title_i18n_zh_cn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_title_i18n", "to": "web_prototype_e1429c1737_open_design_title_i18n_zh_tw", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_description_i18n", "to": "web_prototype_e1429c1737_open_design_description_i18n_ar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_description_i18n", "to": "web_prototype_e1429c1737_open_design_description_i18n_de", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_description_i18n", "to": "web_prototype_e1429c1737_open_design_description_i18n_en", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_description_i18n", "to": "web_prototype_e1429c1737_open_design_description_i18n_es", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_description_i18n", "to": "web_prototype_e1429c1737_open_design_description_i18n_fr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_description_i18n", "to": "web_prototype_e1429c1737_open_design_description_i18n_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_description_i18n", "to": "web_prototype_e1429c1737_open_design_description_i18n_it", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_description_i18n", "to": "web_prototype_e1429c1737_open_design_description_i18n_ja", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_description_i18n", "to": "web_prototype_e1429c1737_open_design_description_i18n_ko", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_description_i18n", "to": "web_prototype_e1429c1737_open_design_description_i18n_nl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_description_i18n", "to": "web_prototype_e1429c1737_open_design_description_i18n_pl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_description_i18n", "to": "web_prototype_e1429c1737_open_design_description_i18n_pt_br", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_description_i18n", "to": "web_prototype_e1429c1737_open_design_description_i18n_ru", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_description_i18n", "to": "web_prototype_e1429c1737_open_design_description_i18n_tr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_description_i18n", "to": "web_prototype_e1429c1737_open_design_description_i18n_uk", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_description_i18n", "to": "web_prototype_e1429c1737_open_design_description_i18n_vi", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_description_i18n", "to": "web_prototype_e1429c1737_open_design_description_i18n_zh_cn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_description_i18n", "to": "web_prototype_e1429c1737_open_design_description_i18n_zh_tw", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_author", "to": "web_prototype_e1429c1737_open_design_author_name", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_author", "to": "web_prototype_e1429c1737_open_design_author_url", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_compat", "to": "web_prototype_e1429c1737_open_design_compat_agentskills", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_od", "to": "web_prototype_e1429c1737_open_design_od_capabilities", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_od", "to": "web_prototype_e1429c1737_open_design_od_context", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_od", "to": "web_prototype_e1429c1737_open_design_od_inputs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_od", "to": "web_prototype_e1429c1737_open_design_od_kind", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_od", "to": "web_prototype_e1429c1737_open_design_od_mode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_od", "to": "web_prototype_e1429c1737_open_design_od_pipeline", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_od", "to": "web_prototype_e1429c1737_open_design_od_platform", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_od", "to": "web_prototype_e1429c1737_open_design_od_preview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_od", "to": "web_prototype_e1429c1737_open_design_od_scenario", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_od", "to": "web_prototype_e1429c1737_open_design_od_surface", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_od", "to": "web_prototype_e1429c1737_open_design_od_taskkind", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_od", "to": "web_prototype_e1429c1737_open_design_od_usecase", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_od_preview", "to": "web_prototype_e1429c1737_open_design_preview_entry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_od_preview", "to": "web_prototype_e1429c1737_open_design_preview_type", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_od_usecase", "to": "web_prototype_e1429c1737_open_design_usecase_exampleoutputs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_od_usecase", "to": "web_prototype_e1429c1737_open_design_usecase_query", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_usecase_query", "to": "web_prototype_e1429c1737_open_design_query_en", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_usecase_query", "to": "web_prototype_e1429c1737_open_design_query_zh_cn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_od_context", "to": "web_prototype_e1429c1737_open_design_context_assets", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_od_context", "to": "web_prototype_e1429c1737_open_design_context_designsystem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_od_context", "to": "web_prototype_e1429c1737_open_design_context_skills", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_context_designsystem", "to": "web_prototype_e1429c1737_open_design_designsystem_primary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_prototype_e1429c1737_open_design_od_pipeline", "to": "web_prototype_e1429c1737_open_design_pipeline_stages", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_description", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_devdependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_exports", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_name", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_scripts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_type", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_version", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_exports", "to": "package_exports_dash_cli", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_build", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_dev", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_typecheck", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_blessed", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_chokidar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_cors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_croner", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_express", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_fuse_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_lucide_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_qrcode_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_qrcode_terminal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_react_dom", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_react_markdown", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_remark_gfm", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_ws", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_types_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_types_react_dom", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_typescript", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_vite", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_vitejs_plugin_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "scripts_smoke_bg_retry", "to": "scripts_smoke_bg_retry_root", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_cli", "to": "src_cli_detachafterboot", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_cli", "to": "src_cli_dirname", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_cli", "to": "src_cli_filename", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_cli", "to": "src_cli_findfreeport", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_cli", "to": "src_cli_ismainentry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_cli", "to": "src_cli_isportfree", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_cli", "to": "src_cli_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_cli", "to": "src_cli_pid_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_cli", "to": "src_cli_port_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_cli", "to": "src_cli_readversion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_cli", "to": "src_cli_runtui", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_cli", "to": "src_cli_showhelp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_cli", "to": "src_cli_showstatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_cli", "to": "src_cli_startdashboard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_cli", "to": "src_cli_startinbackground", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_cli", "to": "src_cli_stopdashboard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_cli_main", "to": "src_cli_readversion", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_cli_main", "to": "src_cli_showhelp", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_cli_findfreeport", "to": "src_cli_isportfree", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_cli_runtui", "to": "src_cli_findfreeport", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_cli_startdashboard", "to": "src_cli_findfreeport", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_cli_main", "to": "src_cli_startdashboard", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_cli_startdashboard", "to": "server_browser", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_cli_startdashboard", "to": "server_browser_launchbrowser", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "src_cli_startdashboard", "to": "server_server", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_cli_startdashboard", "to": "server_server_createserver", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "src_cli_main", "to": "src_cli_stopdashboard", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_cli_main", "to": "src_cli_showstatus", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_cli_main", "to": "src_cli_runtui", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_cli_runtui", "to": "server_browser", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_cli_runtui", "to": "server_browser_launchbrowser", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "src_cli_runtui", "to": "server_server", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_cli_runtui", "to": "server_server_createserver", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "src_cli_runtui", "to": "server_tui", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_cli_runtui", "to": "server_tui_launchtui", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "server_activity_log", "to": "server_activity_log_activitylog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_activity_log", "to": "server_activity_log_atomicwritetext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_activity_log", "to": "server_activity_log_ensurefile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_activity_log", "to": "server_activity_log_home", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_activity_log", "to": "server_activity_log_log_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_activity_log", "to": "server_activity_log_rotateifneeded", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_activity_log", "to": "server_activity_log_safeparse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_activity_log_rotateifneeded", "to": "server_activity_log_atomicwritetext", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_agents", "to": "server_agents_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_overview", "to": "server_agents_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_tasks", "to": "server_agents_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_agents_store", "to": "server_agents_store_agents_dir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_agents_store", "to": "server_agents_store_agentsstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_agents_store", "to": "server_agents_store_buildhierarchytree", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_agents_store", "to": "server_agents_store_defaultstatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_agents_store", "to": "server_agents_store_fmval", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_agents_store", "to": "server_agents_store_hierarchy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_agents_store", "to": "server_agents_store_home", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_agents_store", "to": "server_agents_store_isstuck", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_agents_store", "to": "server_agents_store_loadstatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_agents_store", "to": "server_agents_store_parsefrontmatter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_agents_store", "to": "server_agents_store_readagent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_agents_store", "to": "server_agents_store_safereadtext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_agents_store", "to": "server_agents_store_savestatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_agents_store", "to": "server_agents_store_serializefrontmatter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_agents_store", "to": "server_agents_store_status", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_agents_store", "to": "server_agents_store_status_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_diagnostics_store", "to": "server_agents_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_search_store", "to": "server_agents_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_agents_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_task_delegator", "to": "server_agents_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_agents_store_readagent", "to": "server_agents_store_defaultstatus", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_agents_store_readagent", "to": "server_agents_store_safereadtext", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_agents_store_readagent", "to": "server_agents_store_parsefrontmatter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_agents_store_serializefrontmatter", "to": "server_agents_store_fmval", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_agents_store_readagent", "to": "server_agents_store_isstuck", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_agents", "to": "server_agents_store_buildhierarchytree", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_agents", "to": "server_agents_store_agentsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_overview", "to": "server_agents_store_agentsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_tasks", "to": "server_agents_store_agentsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_diagnostics_store", "to": "server_agents_store_agentsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_search_store", "to": "server_agents_store_agentsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_agents_store_agentsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_task_delegator", "to": "server_agents_store_agentsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_activity", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_activity_createactivityrouter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_agents", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_agents_createagentsrouter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_artifacts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_artifacts_createartifactsrouter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_auth", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_auth_createauthrouter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_background", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_background_createbackgroundrouter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_chat", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_chat_createchatrouter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_config", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_config_createconfigrouter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_diagnostics", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_diagnostics_creatediagnosticsrouter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_dialogs", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_dialogs_createdialogsrouter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_fs", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_fs_createfsrouter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_history", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_history_createhistoryrouter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_misc", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_misc_createmiscrouter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_mods", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_mods_createmodsrouter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_notifications", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_notifications_createnotificationsrouter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_overview", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_overview_createoverviewrouter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_pair", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_pair_createpairrouter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_plans", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_plans_createplansrouter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_projects", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_projects_createprojectsrouter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_providers", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_providers_createprovidersrouter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_schedules", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_schedules_createschedulesrouter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_settings", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_settings_createsettingsrouter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_skills", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_skills_createskillsrouter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_tasks", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_tasks_createtasksrouter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_themes", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "routes_themes_createthemesrouter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "server_api_createapirouter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "server_pair_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api", "to": "server_pair_store_pairstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api_createapirouter", "to": "routes_activity_createactivityrouter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api_createapirouter", "to": "routes_agents_createagentsrouter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api_createapirouter", "to": "routes_artifacts_createartifactsrouter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api_createapirouter", "to": "routes_auth_createauthrouter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api_createapirouter", "to": "routes_background_createbackgroundrouter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api_createapirouter", "to": "routes_chat_createchatrouter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api_createapirouter", "to": "routes_config_createconfigrouter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api_createapirouter", "to": "routes_diagnostics_creatediagnosticsrouter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api_createapirouter", "to": "routes_dialogs_createdialogsrouter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api_createapirouter", "to": "routes_fs_createfsrouter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api_createapirouter", "to": "routes_history_createhistoryrouter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api_createapirouter", "to": "routes_misc_createmiscrouter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api_createapirouter", "to": "routes_mods_createmodsrouter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api_createapirouter", "to": "routes_notifications_createnotificationsrouter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api_createapirouter", "to": "routes_overview_createoverviewrouter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api_createapirouter", "to": "routes_pair_createpairrouter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api_createapirouter", "to": "routes_plans_createplansrouter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api_createapirouter", "to": "routes_projects_createprojectsrouter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api_createapirouter", "to": "routes_providers_createprovidersrouter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api_createapirouter", "to": "routes_schedules_createschedulesrouter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api_createapirouter", "to": "routes_settings_createsettingsrouter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api_createapirouter", "to": "routes_skills_createskillsrouter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api_createapirouter", "to": "routes_tasks_createtasksrouter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_api_createapirouter", "to": "routes_themes_createthemesrouter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_api_createapirouter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server_createserver", "to": "server_api_createapirouter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_artifacts", "to": "server_artifacts_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_tasks", "to": "server_artifacts_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_artifacts_store", "to": "server_artifacts_store_artifacts_dir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_artifacts_store", "to": "server_artifacts_store_artifactsstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_artifacts_store", "to": "server_artifacts_store_atomicwritejson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_artifacts_store", "to": "server_artifacts_store_extractartifactfrommessage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_artifacts_store", "to": "server_artifacts_store_genid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_artifacts_store", "to": "server_artifacts_store_home", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_artifacts_store", "to": "server_artifacts_store_iswithinartifactsdir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_artifacts_store", "to": "server_artifacts_store_pickextension", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_artifacts_store", "to": "server_artifacts_store_resolvebodypath", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_artifacts_store", "to": "server_artifacts_store_sanitizemeta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller", "to": "server_artifacts_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_artifacts_store_resolvebodypath", "to": "server_artifacts_store_iswithinartifactsdir", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_artifacts_store_sanitizemeta", "to": "server_artifacts_store_resolvebodypath", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_artifacts", "to": "server_artifacts_store_artifactsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_tasks", "to": "server_artifacts_store_artifactsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller", "to": "server_artifacts_store_artifactsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller", "to": "server_artifacts_store_extractartifactfrommessage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller_scanforartifact", "to": "server_artifacts_store_extractartifactfrommessage", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_auth", "to": "server_auth", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_auth", "to": "server_auth_checkwebsocketauth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_auth", "to": "server_auth_ensuresecretfilemode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_auth", "to": "server_auth_extra_allowed_origins", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_auth", "to": "server_auth_getdirectpeeraddress", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_auth", "to": "server_auth_getforwardedpeeraddress", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_auth", "to": "server_auth_getorcreatesecret", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_auth", "to": "server_auth_getsecret", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_auth", "to": "server_auth_isalloweddashboardorigin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_auth", "to": "server_auth_isalloweddashboardoriginforrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_auth", "to": "server_auth_isauthrequired", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_auth", "to": "server_auth_isloopback", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_auth", "to": "server_auth_isloopbackaddr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_auth", "to": "server_auth_regeneratesecret", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_auth", "to": "server_auth_requireauth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_auth", "to": "server_auth_stripport", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_auth", "to": "server_auth_timingsafeequal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_auth", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server_createserver", "to": "server_auth", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_auth", "to": "server_auth_getorcreatesecret", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_auth_checkwebsocketauth", "to": "server_auth_getorcreatesecret", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_auth_getorcreatesecret", "to": "server_auth_ensuresecretfilemode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_auth_regeneratesecret", "to": "server_auth_getorcreatesecret", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_auth", "to": "server_auth_regeneratesecret", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server_createserver", "to": "server_auth_requireauth", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_auth_checkwebsocketauth", "to": "server_auth_isauthrequired", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_auth_checkwebsocketauth", "to": "server_auth_timingsafeequal", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_auth_checkwebsocketauth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_auth", "to": "server_auth_isloopback", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_auth_isauthrequired", "to": "server_auth_isloopback", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_auth_isloopback", "to": "server_auth_getdirectpeeraddress", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_auth_isloopback", "to": "server_auth_getforwardedpeeraddress", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_auth_isloopback", "to": "server_auth_isloopbackaddr", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_auth", "to": "server_auth_isauthrequired", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_auth", "to": "server_auth_getdirectpeeraddress", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_auth_isalloweddashboardorigin", "to": "server_auth_isloopbackaddr", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_auth_isalloweddashboardoriginforrequest", "to": "server_auth_isalloweddashboardorigin", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_auth_isalloweddashboardorigin", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_auth_isalloweddashboardoriginforrequest", "to": "server_auth_stripport", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_auth_isalloweddashboardoriginforrequest", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_background_store", "to": "server_background_store_backgroundstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_background_store", "to": "server_background_store_bg_dirs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_background_store", "to": "server_background_store_home", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_background_store", "to": "server_background_store_pickbgdir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_background_store", "to": "server_background_store_safereadjson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_background_store", "to": "server_background_store_tmuxhassession", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_background_store", "to": "server_background_store_tmuxsessionfor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller", "to": "server_background_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry", "to": "server_background_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_runner_checkbudget", "to": "server_background_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_task_delegator", "to": "server_background_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller", "to": "server_background_store_backgroundstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry", "to": "server_background_store_backgroundstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_task_delegator", "to": "server_background_store_backgroundstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller", "to": "server_bg_poller_killtmuxfor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller", "to": "server_bg_poller_pollerinternals", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller", "to": "server_bg_poller_processedartifacts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller", "to": "server_bg_poller_recordpollerfailure", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller", "to": "server_bg_poller_scanforartifact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller", "to": "server_bg_poller_startbgpoller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller", "to": "server_bg_poller_stopbgpoller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller", "to": "server_bg_poller_taskfailures", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller", "to": "server_bg_poller_tick", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller", "to": "server_bg_poller_trackedstatuses", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller", "to": "server_projects_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller", "to": "server_projects_store_projectsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller", "to": "server_serve_info", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller", "to": "server_serve_info_abortsession", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller", "to": "server_serve_info_extractcontentfromopencodemessage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller", "to": "server_serve_info_listopencodemessages", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller", "to": "server_serve_info_readserveinfo", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller", "to": "server_tasks_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller", "to": "server_tasks_store_tasksstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_bg_poller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller_recordpollerfailure", "to": "server_server", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller_tick", "to": "server_bg_poller_recordpollerfailure", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller_scanforartifact", "to": "server_serve_info_extractcontentfromopencodemessage", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller_scanforartifact", "to": "server_serve_info_listopencodemessages", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller_scanforartifact", "to": "server_serve_info_readserveinfo", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller_tick", "to": "server_bg_poller_scanforartifact", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller_tick", "to": "server_bg_poller_killtmuxfor", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller_startbgpoller", "to": "server_bg_poller_tick", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller_tick", "to": "server_serve_info_abortsession", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller_tick", "to": "server_serve_info_readserveinfo", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller_tick", "to": "server_server", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_poller_tick", "to": "server_server_broadcast", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "server_server", "to": "server_bg_poller_startbgpoller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server_createserver", "to": "server_bg_poller_startbgpoller", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_bg_poller_stopbgpoller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry", "to": "lib_path_safe", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry", "to": "lib_path_safe_deriveabsolutebglogpath", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry", "to": "lib_path_safe_getactualbglogpath", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry", "to": "lib_path_safe_isbrokenbglogpath", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry", "to": "server_bg_retry_atomicwritejson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry", "to": "server_bg_retry_bg_dirs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry", "to": "server_bg_retry_bg_retry_internal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry", "to": "server_bg_retry_buildreplayprompttext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry", "to": "server_bg_retry_findbgfile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry", "to": "server_bg_retry_home", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry", "to": "server_bg_retry_pickbgdir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry", "to": "server_bg_retry_readbgfile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry", "to": "server_bg_retry_repairlogpath", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry", "to": "server_bg_retry_retrydispatchonce", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry", "to": "server_bg_retry_shouldretrydispatch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry", "to": "server_bg_retry_startbgretryloop", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry", "to": "server_bg_retry_stopbgretryloop", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry", "to": "server_bg_retry_tickretryloop", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry", "to": "server_serve_info", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry", "to": "server_serve_info_createopencodesession", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry", "to": "server_serve_info_pingopencodeserve", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry", "to": "server_serve_info_readserveinfo", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry", "to": "server_serve_info_sendopencodeprompt", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry", "to": "server_tasks_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry", "to": "server_tasks_store_tasksstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_bg_retry", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry_retrydispatchonce", "to": "server_bg_retry_readbgfile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry_tickretryloop", "to": "server_bg_retry_readbgfile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry_retrydispatchonce", "to": "server_bg_retry_atomicwritejson", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry_retrydispatchonce", "to": "server_bg_retry_findbgfile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry_tickretryloop", "to": "server_bg_retry_shouldretrydispatch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry_repairlogpath", "to": "lib_path_safe_deriveabsolutebglogpath", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry_repairlogpath", "to": "lib_path_safe_isbrokenbglogpath", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry_repairlogpath", "to": "server_serve_info_readserveinfo", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry_retrydispatchonce", "to": "server_bg_retry_repairlogpath", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry_retrydispatchonce", "to": "lib_path_safe_getactualbglogpath", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry_retrydispatchonce", "to": "server_bg_retry_buildreplayprompttext", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry_retrydispatchonce", "to": "server_serve_info_createopencodesession", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry_retrydispatchonce", "to": "server_serve_info_pingopencodeserve", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry_retrydispatchonce", "to": "server_serve_info_readserveinfo", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry_retrydispatchonce", "to": "server_serve_info_sendopencodeprompt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_bg_retry_tickretryloop", "to": "server_bg_retry_retrydispatchonce", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_bg_retry_startbgretryloop", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server_createserver", "to": "server_bg_retry_startbgretryloop", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_bg_retry_stopbgretryloop", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_browser", "to": "server_browser_launchbrowser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_diagnostics", "to": "server_diagnostics_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_diagnostics_store", "to": "server_diagnostics_store_checkpidalive", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_diagnostics_store", "to": "server_diagnostics_store_dash_package_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_diagnostics_store", "to": "server_diagnostics_store_dashboardversion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_diagnostics_store", "to": "server_diagnostics_store_diagnosticsstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_diagnostics_store", "to": "server_diagnostics_store_home", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_diagnostics_store", "to": "server_diagnostics_store_parselogts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_diagnostics_store", "to": "server_diagnostics_store_readrecenterrors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_diagnostics_store", "to": "server_diagnostics_store_service_log", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_diagnostics_store", "to": "server_diagnostics_store_service_pid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_diagnostics_store", "to": "server_diagnostics_store_servicestatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_diagnostics_store", "to": "server_diagnostics_store_startedat", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_diagnostics_store", "to": "server_mods_loader", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_diagnostics_store", "to": "server_mods_loader_modsloader", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_diagnostics_store", "to": "server_projects_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_diagnostics_store", "to": "server_projects_store_projectsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_diagnostics_store", "to": "server_providers_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_diagnostics_store", "to": "server_providers_store_mcpsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_diagnostics_store", "to": "server_providers_store_providersstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_diagnostics_store", "to": "server_schedules_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_diagnostics_store", "to": "server_schedules_store_schedulesstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_diagnostics_store", "to": "server_tasks_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_diagnostics_store", "to": "server_tasks_store_tasksstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_diagnostics_store_readrecenterrors", "to": "server_diagnostics_store_parselogts", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_diagnostics_store_servicestatus", "to": "server_diagnostics_store_checkpidalive", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_diagnostics", "to": "server_diagnostics_store_diagnosticsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_dialog_poller", "to": "server_dialog_poller_broadcastdialog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_dialog_poller", "to": "server_dialog_poller_pollerinternals", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_dialog_poller", "to": "server_dialog_poller_startdialogpoller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_dialog_poller", "to": "server_dialog_poller_stopdialogpoller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_dialog_poller", "to": "server_dialog_poller_tick", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_dialog_poller", "to": "server_dialog_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_dialog_poller", "to": "server_dialog_store_dialogstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_dialog_poller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_dialog_poller_broadcastdialog", "to": "server_server", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_dialog_poller_broadcastdialog", "to": "server_server_broadcast", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "server_dialog_poller_tick", "to": "server_dialog_poller_broadcastdialog", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_dialog_poller_startdialogpoller", "to": "server_dialog_poller_tick", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_dialog_poller_startdialogpoller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server_createserver", "to": "server_dialog_poller_startdialogpoller", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_dialogs", "to": "server_dialog_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_dialog_store", "to": "server_dialog_store_dialog_dir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_dialog_store", "to": "server_dialog_store_dialogstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_dialog_store", "to": "server_dialog_store_ensuredir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_dialog_store", "to": "server_dialog_store_genid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_dialog_store", "to": "server_dialog_store_home", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_dialog_store", "to": "server_dialog_store_known_components", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_dialog_store", "to": "server_dialog_store_safereadjson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_dialogs", "to": "server_dialog_store_dialogstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_path_safe", "to": "lib_path_safe_buildallowedrootsfromsettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_path_safe", "to": "lib_path_safe_defaultallowedroots", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_path_safe", "to": "lib_path_safe_deriveabsolutebglogpath", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_path_safe", "to": "lib_path_safe_fallback_log_dir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_path_safe", "to": "lib_path_safe_getactualbglogpath", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_path_safe", "to": "lib_path_safe_getbglogdir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_path_safe", "to": "lib_path_safe_isbrokenbglogpath", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_path_safe", "to": "lib_path_safe_isdotroot", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_path_safe", "to": "lib_path_safe_normalizeroots", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_path_safe", "to": "lib_path_safe_resolvesafepath", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_fs", "to": "lib_path_safe", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_projects", "to": "lib_path_safe", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "lib_path_safe", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_task_delegator", "to": "lib_path_safe", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_path_safe_test", "to": "lib_path_safe", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_tmux_wrap_test", "to": "lib_path_safe", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_path_safe_defaultallowedroots", "to": "lib_path_safe_normalizeroots", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_path_safe_buildallowedrootsfromsettings", "to": "lib_path_safe_defaultallowedroots", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_path_safe_buildallowedrootsfromsettings", "to": "lib_path_safe_resolvesafepath", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_fs", "to": "lib_path_safe_buildallowedrootsfromsettings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_fs_buildallowedroots", "to": "lib_path_safe_buildallowedrootsfromsettings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_projects", "to": "lib_path_safe_buildallowedrootsfromsettings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "lib_path_safe_buildallowedrootsfromsettings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server_createserver", "to": "lib_path_safe_buildallowedrootsfromsettings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_path_safe_resolvesafepath", "to": "lib_path_safe_isdotroot", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_fs", "to": "lib_path_safe_resolvesafepath", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_fs_resolvetargetunderparent", "to": "lib_path_safe_resolvesafepath", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_projects", "to": "lib_path_safe_resolvesafepath", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "lib_path_safe_resolvesafepath", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server_createserver", "to": "lib_path_safe_resolvesafepath", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_path_safe_getactualbglogpath", "to": "lib_path_safe_getbglogdir", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_path_safe_test", "to": "lib_path_safe_getbglogdir", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_task_delegator", "to": "lib_path_safe_getactualbglogpath", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_path_safe_test", "to": "lib_path_safe_getactualbglogpath", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_tmux_wrap_test", "to": "lib_path_safe_getactualbglogpath", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_path_safe_test", "to": "lib_path_safe_deriveabsolutebglogpath", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mod_security", "to": "server_mod_security_allowed_binaries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mod_security", "to": "server_mod_security_auditlogpath", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mod_security", "to": "server_mod_security_authorizefspath", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mod_security", "to": "server_mod_security_authorizespawn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mod_security", "to": "server_mod_security_computemodhash", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mod_security", "to": "server_mod_security_createauditwriter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mod_security", "to": "server_mod_security_createmodsecuritycontext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mod_security", "to": "server_mod_security_default_permissions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mod_security", "to": "server_mod_security_parsepermissions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mod_security", "to": "server_mod_security_sandboxedfs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mod_security", "to": "server_mod_security_sensitive_paths", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mod_security", "to": "server_mod_security_verifymodintegrity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mods_loader", "to": "server_mod_security", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_mod_security_test", "to": "server_mod_security", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mods_loader", "to": "server_mod_security_allowed_binaries", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_mod_security_test", "to": "server_mod_security_allowed_binaries", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mod_security_createmodsecuritycontext", "to": "server_mod_security_parsepermissions", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mods_loader", "to": "server_mod_security_parsepermissions", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mods_loader_loadmod", "to": "server_mod_security_parsepermissions", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_mod_security_test", "to": "server_mod_security_parsepermissions", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mods_loader", "to": "server_mod_security_authorizefspath", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_mod_security_test", "to": "server_mod_security_authorizefspath", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mod_security_createmodsecuritycontext", "to": "server_mod_security_sandboxedfs", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mods_loader", "to": "server_mod_security_authorizespawn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_mod_security_test", "to": "server_mod_security_authorizespawn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mod_security_createauditwriter", "to": "server_mod_security_auditlogpath", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mod_security_createmodsecuritycontext", "to": "server_mod_security_createauditwriter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mods_loader", "to": "server_mod_security_createauditwriter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_mod_security_test", "to": "server_mod_security_createauditwriter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mod_security_verifymodintegrity", "to": "server_mod_security_computemodhash", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mods_loader", "to": "server_mod_security_computemodhash", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mods_loader_loadmod", "to": "server_mod_security_computemodhash", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_mod_security_test", "to": "server_mod_security_computemodhash", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mods_loader", "to": "server_mod_security_verifymodintegrity", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_mod_security_test", "to": "server_mod_security_verifymodintegrity", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mods_loader", "to": "server_mod_security_createmodsecuritycontext", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_mod_security_test", "to": "server_mod_security_createmodsecuritycontext", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_mods", "to": "server_mods_loader", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_overview", "to": "server_mods_loader", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mods_loader", "to": "server_mods_loader_bizar_home", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mods_loader", "to": "server_mods_loader_home", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mods_loader", "to": "server_mods_loader_listmodfolders", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mods_loader", "to": "server_mods_loader_loadmod", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mods_loader", "to": "server_mods_loader_mods_dir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mods_loader", "to": "server_mods_loader_modsloader", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mods_loader", "to": "server_mods_loader_readsettingssafe", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mods_loader", "to": "server_mods_loader_resolvewithin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mods_loader", "to": "server_mods_loader_safereadjson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_search_store", "to": "server_mods_loader", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_mods_loader", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_mods_loader_loadmod", "to": "server_mods_loader_safereadjson", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_mods", "to": "server_mods_loader_modsloader", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_overview", "to": "server_mods_loader_modsloader", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_search_store", "to": "server_mods_loader_modsloader", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_mods_loader_modsloader", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_notifications", "to": "server_notifications_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_plans", "to": "server_notifications_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_tasks", "to": "server_notifications_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_notifications_store", "to": "server_notifications_store_atomicwritejson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_notifications_store", "to": "server_notifications_store_atomicwritetext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_notifications_store", "to": "server_notifications_store_bizar_home", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_notifications_store", "to": "server_notifications_store_ensurelogfile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_notifications_store", "to": "server_notifications_store_genid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_notifications_store", "to": "server_notifications_store_getreadset", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_notifications_store", "to": "server_notifications_store_home", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_notifications_store", "to": "server_notifications_store_loadreadset", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_notifications_store", "to": "server_notifications_store_log_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_notifications_store", "to": "server_notifications_store_notificationsstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_notifications_store", "to": "server_notifications_store_read_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_notifications_store", "to": "server_notifications_store_safeparse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_notifications_store", "to": "server_notifications_store_savereadset", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_notifications_store", "to": "server_notifications_store_valid_severity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_task_delegator", "to": "server_notifications_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_notifications_store_atomicwritejson", "to": "server_notifications_store_atomicwritetext", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_notifications_store_savereadset", "to": "server_notifications_store_atomicwritejson", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_notifications_store_getreadset", "to": "server_notifications_store_loadreadset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_notifications", "to": "server_notifications_store_notificationsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_plans", "to": "server_notifications_store_notificationsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_tasks", "to": "server_notifications_store_notificationsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_task_delegator", "to": "server_notifications_store_notificationsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_opencode_runner", "to": "server_opencode_runner_agents", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_opencode_runner", "to": "server_opencode_runner_getstatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_opencode_runner", "to": "server_opencode_runner_killagent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_opencode_runner", "to": "server_opencode_runner_list", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_opencode_runner", "to": "server_opencode_runner_onexit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_opencode_runner", "to": "server_opencode_runner_resetfortests", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_opencode_runner", "to": "server_opencode_runner_spawnagent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_opencode_runner_test", "to": "server_opencode_runner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_opencode_runner_test", "to": "server_opencode_runner_spawnagent", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_opencode_runner_test", "to": "server_opencode_runner_getstatus", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_opencode_runner_test", "to": "server_opencode_runner_onexit", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_opencode_runner_test", "to": "server_opencode_runner_killagent", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_opencode_runner_test", "to": "server_opencode_runner_list", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_opencode_runner_test", "to": "server_opencode_runner_resetfortests", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_pair", "to": "server_pair_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_pair_store", "to": "server_pair_store_detectpublicurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_pair_store", "to": "server_pair_store_gc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_pair_store", "to": "server_pair_store_mint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_pair_store", "to": "server_pair_store_pairstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_pair_store", "to": "server_pair_store_pairtokenmiddleware", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_pair_store", "to": "server_pair_store_tokens", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_pair_store", "to": "server_pair_store_verify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_pair_store_mint", "to": "server_pair_store_gc", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_pair_store_pairtokenmiddleware", "to": "server_pair_store_verify", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_pair", "to": "server_pair_store_pairstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_history", "to": "server_plans_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_plans", "to": "server_plans_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_plans_store", "to": "server_plans_store_atomicwritejson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_plans_store", "to": "server_plans_store_defaultmeta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_plans_store", "to": "server_plans_store_emptycanvas", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_plans_store", "to": "server_plans_store_genid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_plans_store", "to": "server_plans_store_global_plans_dir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_plans_store", "to": "server_plans_store_home", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_plans_store", "to": "server_plans_store_plansstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_plans_store", "to": "server_plans_store_safereadjson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_plans_store", "to": "server_plans_store_safereadtext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_plans_store", "to": "server_plans_store_sanitizecanvas", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_plans_store", "to": "server_plans_store_sanitizeelement", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_plans_store_sanitizeelement", "to": "server_plans_store_genid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_plans_store_sanitizecanvas", "to": "server_plans_store_emptycanvas", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_history", "to": "server_plans_store_plansstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_plans", "to": "server_plans_store_plansstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_chat", "to": "server_projects_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_history", "to": "server_projects_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_misc", "to": "server_projects_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_overview", "to": "server_projects_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_projects", "to": "server_projects_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_shared", "to": "server_projects_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_tasks", "to": "server_projects_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_projects_store", "to": "server_projects_store_atomicwritejson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_projects_store", "to": "server_projects_store_ensureprojectsdir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_projects_store", "to": "server_projects_store_home", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_projects_store", "to": "server_projects_store_loadregistry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_projects_store", "to": "server_projects_store_opencode_dir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_projects_store", "to": "server_projects_store_project_root_markers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_projects_store", "to": "server_projects_store_projectdir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_projects_store", "to": "server_projects_store_projectidfrompath", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_projects_store", "to": "server_projects_store_projects_dir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_projects_store", "to": "server_projects_store_projects_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_projects_store", "to": "server_projects_store_projectsstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_projects_store", "to": "server_projects_store_readprojectfile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_projects_store", "to": "server_projects_store_safereadjson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_projects_store", "to": "server_projects_store_saveregistry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_projects_store", "to": "server_projects_store_uniqueprojectid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_projects_store", "to": "server_projects_store_writeprojectfile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_runner", "to": "server_projects_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_store", "to": "server_projects_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_search_store", "to": "server_projects_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_projects_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_state", "to": "server_projects_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tasks_store", "to": "server_projects_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_projects_store_loadregistry", "to": "server_projects_store_safereadjson", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_projects_store_readprojectfile", "to": "server_projects_store_safereadjson", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_projects_store_saveregistry", "to": "server_projects_store_ensureprojectsdir", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_projects_store_writeprojectfile", "to": "server_projects_store_ensureprojectsdir", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_projects_store_saveregistry", "to": "server_projects_store_atomicwritejson", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_projects_store_writeprojectfile", "to": "server_projects_store_atomicwritejson", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_projects_store_uniqueprojectid", "to": "server_projects_store_projectidfrompath", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_projects_store_readprojectfile", "to": "server_projects_store_projectdir", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_projects_store_writeprojectfile", "to": "server_projects_store_projectdir", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_chat", "to": "server_projects_store_projectsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_history", "to": "server_projects_store_projectsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_misc", "to": "server_projects_store_projectsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_overview", "to": "server_projects_store_projectsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_projects", "to": "server_projects_store_projectsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_shared", "to": "server_projects_store_projectsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_tasks", "to": "server_projects_store_projectsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_runner", "to": "server_projects_store_projectsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_store", "to": "server_projects_store_projectsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_search_store", "to": "server_projects_store_projectsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_projects_store_projectsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_state", "to": "server_projects_store_projectsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tasks_store", "to": "server_projects_store_projectsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_config", "to": "server_providers_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_overview", "to": "server_providers_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_providers", "to": "server_providers_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_providers_store", "to": "server_providers_store_atomicwritejson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_providers_store", "to": "server_providers_store_home", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_providers_store", "to": "server_providers_store_loadconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_providers_store", "to": "server_providers_store_mask", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_providers_store", "to": "server_providers_store_mcpsstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_providers_store", "to": "server_providers_store_opencode_agents_dir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_providers_store", "to": "server_providers_store_opencode_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_providers_store", "to": "server_providers_store_providersstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_providers_store", "to": "server_providers_store_safereadjson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_providers_store", "to": "server_providers_store_saveconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_providers_store", "to": "server_providers_store_unmask", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_providers_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_providers_store_loadconfig", "to": "server_providers_store_safereadjson", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_providers_store_saveconfig", "to": "server_providers_store_atomicwritejson", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_config", "to": "server_providers_store_providersstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_overview", "to": "server_providers_store_providersstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_providers", "to": "server_providers_store_providersstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_providers_store_providersstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_config", "to": "server_providers_store_mcpsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_overview", "to": "server_providers_store_mcpsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_providers_store_mcpsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_v2_auth", "to": "routes_v2_auth_v2basicauth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_v2_index", "to": "routes_v2_auth", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_v2_index", "to": "routes_v2_auth_v2basicauth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_v2_index_createv2router", "to": "routes_v2_auth_v2basicauth", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_v2_events", "to": "routes_v2_events_createv2eventsrouter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_v2_events", "to": "routes_v2_events_writesseevent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_v2_index", "to": "routes_v2_events", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_v2_index", "to": "routes_v2_events_createv2eventsrouter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_v2_index_createv2router", "to": "routes_v2_events_createv2eventsrouter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_v2_health", "to": "routes_v2_health_createv2healthrouter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_v2_index", "to": "routes_v2_health", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_v2_index", "to": "routes_v2_health_createv2healthrouter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_v2_index_createv2router", "to": "routes_v2_health_createv2healthrouter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_v2_index", "to": "routes_v2_index_createv2router", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_v2_index", "to": "routes_v2_index_dirname", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_v2_index", "to": "routes_v2_index_filename", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_v2_index", "to": "routes_v2_index_findopenapispec", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_v2_index", "to": "routes_v2_sessions", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_v2_index", "to": "routes_v2_sessions_createv2sessionsrouter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "routes_v2_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_smoke_v2", "to": "routes_v2_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_v2_index_createv2router", "to": "routes_v2_sessions_createv2sessionsrouter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "routes_v2_index_createv2router", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server_createserver", "to": "routes_v2_index_createv2router", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_smoke_v2", "to": "routes_v2_index_createv2router", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_smoke_v2_main", "to": "routes_v2_index_createv2router", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_v2_sessions", "to": "routes_v2_sessions_createv2sessionsrouter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_v2_sessions", "to": "routes_v2_sessions_randomulid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_activity", "to": "routes_shared", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_agents", "to": "routes_shared", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_artifacts", "to": "routes_shared", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_auth", "to": "routes_shared", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_background", "to": "routes_shared", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_chat", "to": "routes_shared", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_config", "to": "routes_shared", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_diagnostics", "to": "routes_shared", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_dialogs", "to": "routes_shared", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_fs", "to": "routes_shared", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_history", "to": "routes_shared", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_misc", "to": "routes_shared", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_mods", "to": "routes_shared", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_notifications", "to": "routes_shared", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_overview", "to": "routes_shared", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_pair", "to": "routes_shared", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_plans", "to": "routes_shared", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_projects", "to": "routes_shared", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_providers", "to": "routes_shared", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_schedules", "to": "routes_shared", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_settings", "to": "routes_shared", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_shared", "to": "routes_shared_atomicwritejson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_shared", "to": "routes_shared_bizar_home", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_shared", "to": "routes_shared_dash_package_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_shared", "to": "routes_shared_dashboard_version", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_shared", "to": "routes_shared_default_settings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_shared", "to": "routes_shared_home", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_shared", "to": "routes_shared_mergesettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_shared", "to": "routes_shared_opencode_dir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_shared", "to": "routes_shared_opencode_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_shared", "to": "routes_shared_parsefrontmatter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_shared", "to": "routes_shared_readactiveprojectid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_shared", "to": "routes_shared_readdashboardversion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_shared", "to": "routes_shared_readsettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_shared", "to": "routes_shared_safereadjson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_shared", "to": "routes_shared_safereadtext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_shared", "to": "routes_shared_settings_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_shared", "to": "routes_shared_validatedashboardpath", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_shared", "to": "routes_shared_validatedashboardsettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_shared", "to": "routes_shared_wrap", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_shared", "to": "routes_shared_writesettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_skills", "to": "routes_shared", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_tasks", "to": "routes_shared", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_themes", "to": "routes_shared", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "routes_shared", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_config", "to": "routes_shared_opencode_json", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_overview", "to": "routes_shared_opencode_json", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_diagnostics", "to": "routes_shared_bizar_home", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_config", "to": "routes_shared_safereadjson", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_overview", "to": "routes_shared_safereadjson", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_projects", "to": "routes_shared_safereadjson", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_shared_readsettings", "to": "routes_shared_safereadjson", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_config", "to": "routes_shared_atomicwritejson", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_shared_writesettings", "to": "routes_shared_atomicwritejson", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_settings", "to": "routes_shared_default_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_shared_readsettings", "to": "routes_shared_mergesettings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_shared_writesettings", "to": "routes_shared_mergesettings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_fs", "to": "routes_shared_readsettings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_fs_buildallowedroots", "to": "routes_shared_readsettings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_overview", "to": "routes_shared_readsettings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_projects", "to": "routes_shared_readsettings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_settings", "to": "routes_shared_readsettings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_shared_writesettings", "to": "routes_shared_readsettings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "routes_shared_readsettings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server_buildsnapshot", "to": "routes_shared_readsettings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server_createserver", "to": "routes_shared_readsettings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_settings", "to": "routes_shared_writesettings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_shared_writesettings", "to": "routes_shared_validatedashboardsettings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_shared_validatedashboardsettings", "to": "routes_shared_validatedashboardpath", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_projects", "to": "routes_shared_readactiveprojectid", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_schedules", "to": "routes_shared_readactiveprojectid", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_tasks", "to": "routes_shared_readactiveprojectid", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_activity", "to": "routes_shared_wrap", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_activity_createactivityrouter", "to": "routes_shared_wrap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_agents", "to": "routes_shared_wrap", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_agents_createagentsrouter", "to": "routes_shared_wrap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_artifacts", "to": "routes_shared_wrap", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_artifacts_createartifactsrouter", "to": "routes_shared_wrap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_auth", "to": "routes_shared_wrap", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_auth_createauthrouter", "to": "routes_shared_wrap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_background", "to": "routes_shared_wrap", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_background_createbackgroundrouter", "to": "routes_shared_wrap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_chat", "to": "routes_shared_wrap", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_chat_createchatrouter", "to": "routes_shared_wrap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_config", "to": "routes_shared_wrap", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_config_createconfigrouter", "to": "routes_shared_wrap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_diagnostics", "to": "routes_shared_wrap", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_diagnostics_creatediagnosticsrouter", "to": "routes_shared_wrap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_dialogs", "to": "routes_shared_wrap", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_dialogs_createdialogsrouter", "to": "routes_shared_wrap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_fs", "to": "routes_shared_wrap", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_fs_createfsrouter", "to": "routes_shared_wrap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_history", "to": "routes_shared_wrap", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_history_createhistoryrouter", "to": "routes_shared_wrap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_misc", "to": "routes_shared_wrap", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_misc_createmiscrouter", "to": "routes_shared_wrap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_mods", "to": "routes_shared_wrap", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_mods_createmodsrouter", "to": "routes_shared_wrap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_notifications", "to": "routes_shared_wrap", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_notifications_createnotificationsrouter", "to": "routes_shared_wrap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_overview", "to": "routes_shared_wrap", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_overview_createoverviewrouter", "to": "routes_shared_wrap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_pair", "to": "routes_shared_wrap", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_pair_createpairrouter", "to": "routes_shared_wrap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_plans", "to": "routes_shared_wrap", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_plans_createplansrouter", "to": "routes_shared_wrap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_projects", "to": "routes_shared_wrap", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_projects_createprojectsrouter", "to": "routes_shared_wrap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_providers", "to": "routes_shared_wrap", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_providers_createprovidersrouter", "to": "routes_shared_wrap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_schedules", "to": "routes_shared_wrap", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_schedules_createschedulesrouter", "to": "routes_shared_wrap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_settings", "to": "routes_shared_wrap", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_settings_createsettingsrouter", "to": "routes_shared_wrap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_skills", "to": "routes_shared_wrap", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_skills_createskillsrouter", "to": "routes_shared_wrap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_tasks", "to": "routes_shared_wrap", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_tasks_createtasksrouter", "to": "routes_shared_wrap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_themes", "to": "routes_shared_wrap", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_themes_createthemesrouter", "to": "routes_shared_wrap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_activity", "to": "routes_activity_activitykey", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_activity", "to": "routes_activity_createactivityrouter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_activity", "to": "routes_activity_hidden_path", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_activity", "to": "routes_activity_readhidden", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_activity", "to": "routes_activity_writehidden", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_agents", "to": "routes_agents_createagentsrouter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_artifacts", "to": "routes_artifacts_createartifactsrouter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_auth", "to": "routes_auth_createauthrouter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_background", "to": "routes_background_createbackgroundrouter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_chat", "to": "routes_chat_createchatrouter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_chat", "to": "server_serve_info", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_chat", "to": "server_serve_info_createopencodesession", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_chat", "to": "server_serve_info_extractcontentfromopencodemessage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_chat", "to": "server_serve_info_listopencodemessages", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_chat", "to": "server_serve_info_readserveinfo", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_chat", "to": "server_serve_info_sendopencodeprompt", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_config", "to": "routes_config_createconfigrouter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_diagnostics", "to": "routes_diagnostics_creatediagnosticsrouter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_dialogs", "to": "routes_dialogs_createdialogsrouter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_fs", "to": "routes_fs_buildallowedroots", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_fs", "to": "routes_fs_createfsrouter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_fs", "to": "routes_fs_ishiddenentry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_fs", "to": "routes_fs_resolvetargetunderparent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_fs", "to": "routes_fs_sortentries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_fs", "to": "routes_fs_validatedirname", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_history", "to": "routes_history_createhistoryrouter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_history", "to": "server_tasks_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_history", "to": "server_tasks_store_tasksstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_misc", "to": "routes_misc_createmiscrouter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_misc", "to": "server_search_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_misc", "to": "server_search_store_searchstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_misc", "to": "server_tailscale_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_misc", "to": "server_tailscale_store_tailscalestore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_misc", "to": "server_update_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_misc", "to": "server_update_store_updatestore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_mods", "to": "routes_mods_createmodsrouter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_notifications", "to": "routes_notifications_createnotificationsrouter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_overview", "to": "routes_overview_createoverviewrouter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_overview", "to": "server_schedules_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_overview", "to": "server_schedules_store_schedulesstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_overview", "to": "server_tasks_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_overview", "to": "server_tasks_store_tasksstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_pair", "to": "routes_pair_createpairrouter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_plans", "to": "routes_plans_createplansrouter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_projects", "to": "routes_projects_createprojectsrouter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_projects", "to": "server_schedules_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_projects", "to": "server_schedules_store_schedulesstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_projects", "to": "server_tasks_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_projects", "to": "server_tasks_store_tasksstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_providers", "to": "routes_providers_createprovidersrouter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_schedules", "to": "routes_schedules_createschedulesrouter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_schedules", "to": "server_schedules_runner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_schedules", "to": "server_schedules_runner_schedulesrunner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_schedules", "to": "server_schedules_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_schedules", "to": "server_schedules_store_schedulesstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_settings", "to": "routes_settings_createsettingsrouter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_settings", "to": "server_settings_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_settings", "to": "server_settings_store_readpluginoptions", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_settings", "to": "server_settings_store_writepluginoptions", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_skills", "to": "routes_skills_createskillsrouter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_skills", "to": "server_skills_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_skills", "to": "server_skills_store_skillsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_tasks", "to": "routes_tasks_createtasksrouter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_tasks", "to": "server_serve_info", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_tasks", "to": "server_serve_info_listopencodemessages", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_tasks", "to": "server_serve_info_normalizeopencodemessage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_tasks", "to": "server_serve_info_readserveinfo", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_tasks", "to": "server_tasks_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_tasks", "to": "server_tasks_store_tasksstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_themes", "to": "routes_themes_createthemesrouter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_runner", "to": "server_schedules_runner_checkbudget", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_runner", "to": "server_schedules_runner_home", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_runner", "to": "server_schedules_runner_isprivatehostname", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_runner", "to": "server_schedules_runner_log_dir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_runner", "to": "server_schedules_runner_log_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_runner", "to": "server_schedules_runner_logline", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_runner", "to": "server_schedules_runner_parsecommandtarget", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_runner", "to": "server_schedules_runner_runaction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_runner", "to": "server_schedules_runner_runagentaction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_runner", "to": "server_schedules_runner_runcommand", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_runner", "to": "server_schedules_runner_runwebhook", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_runner", "to": "server_schedules_runner_schedulesrunner", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_runner", "to": "server_schedules_runner_validatewebhooktarget", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_runner", "to": "server_schedules_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_runner", "to": "server_schedules_store_schedulesstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_runner_checkbudget", "to": "server_schedules_runner_logline", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_runner_validatewebhooktarget", "to": "server_schedules_runner_isprivatehostname", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_runner_runwebhook", "to": "server_schedules_runner_validatewebhooktarget", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_runner_runaction", "to": "server_schedules_runner_runagentaction", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_runner_runaction", "to": "server_schedules_runner_runcommand", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_runner_runaction", "to": "server_schedules_runner_runwebhook", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_runner_runagentaction", "to": "server_task_delegator", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_store", "to": "server_schedules_store_atomicwritejson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_store", "to": "server_schedules_store_computenextrun", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_store", "to": "server_schedules_store_genid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_store", "to": "server_schedules_store_loadschedules", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_store", "to": "server_schedules_store_parseinterval", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_store", "to": "server_schedules_store_safereadjson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_store", "to": "server_schedules_store_saveschedules", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_store", "to": "server_schedules_store_schedulesstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_search_store", "to": "server_schedules_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_schedules_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_store_loadschedules", "to": "server_schedules_store_safereadjson", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_store_computenextrun", "to": "server_schedules_store_parseinterval", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_schedules_store_saveschedules", "to": "server_schedules_store_atomicwritejson", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_search_store", "to": "server_schedules_store_schedulesstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_schedules_store_schedulesstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_search_store", "to": "server_search_store_findplans", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_search_store", "to": "server_search_store_flattensettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_search_store", "to": "server_search_store_home", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_search_store", "to": "server_search_store_readsettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_search_store", "to": "server_search_store_scoreitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_search_store", "to": "server_search_store_searchstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_search_store", "to": "server_search_store_settings_descriptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_search_store", "to": "server_search_store_settings_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_search_store", "to": "server_tasks_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_search_store", "to": "server_tasks_store_tasksstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_serve_info", "to": "server_serve_info_abortsession", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_serve_info", "to": "server_serve_info_buildauthheader", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_serve_info", "to": "server_serve_info_createopencodesession", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_serve_info", "to": "server_serve_info_extractcontentfromopencodemessage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_serve_info", "to": "server_serve_info_finalizetext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_serve_info", "to": "server_serve_info_home", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_serve_info", "to": "server_serve_info_isloopbackhostname", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_serve_info", "to": "server_serve_info_issafeservebaseurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_serve_info", "to": "server_serve_info_listopencodemessages", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_serve_info", "to": "server_serve_info_listopencodesessions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_serve_info", "to": "server_serve_info_normalizeopencodemessage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_serve_info", "to": "server_serve_info_pingopencodeserve", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_serve_info", "to": "server_serve_info_readserveinfo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_serve_info", "to": "server_serve_info_sendopencodeprompt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_serve_info", "to": "server_serve_info_serve_info_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_serve_info", "to": "server_serve_info_stripthinkingtags", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_strip_thinking_test", "to": "server_serve_info", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_serve_info_readserveinfo", "to": "server_serve_info_issafeservebaseurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_serve_info_issafeservebaseurl", "to": "server_serve_info_isloopbackhostname", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_serve_info_createopencodesession", "to": "server_serve_info_buildauthheader", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_serve_info_listopencodemessages", "to": "server_serve_info_buildauthheader", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_serve_info_sendopencodeprompt", "to": "server_serve_info_buildauthheader", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_serve_info_extractcontentfromopencodemessage", "to": "server_serve_info_finalizetext", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_serve_info_normalizeopencodemessage", "to": "server_serve_info_extractcontentfromopencodemessage", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_strip_thinking_test", "to": "server_serve_info_extractcontentfromopencodemessage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_serve_info_finalizetext", "to": "server_serve_info_stripthinkingtags", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_strip_thinking_test", "to": "server_serve_info_stripthinkingtags", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_server_broadcast", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_server_buildsnapshot", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_server_buildsnapshotsafe", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_server_createserver", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_server_currentbroadcast", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_server_dirname", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_server_dirnamesafe", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_server_dist_dir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_server_existssafe", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_server_getv2auth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_server_installprocesshandlers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_server_mobileredirecttarget", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_server_publishv2event", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_server_rendernotbuiltpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_server_shouldredirecttomobile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_state", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_state_createstate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_tasks_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_tasks_store_tasksstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_v2_auth_file", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_v2_auth_file_loadorcreateauth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_v2_event_bus", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_v2_event_bus_v2eventbus", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_watcher", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server", "to": "server_watcher_createwatcher", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server_createserver", "to": "server_server_installprocesshandlers", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server_broadcast", "to": "server_server_currentbroadcast", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server_createserver", "to": "server_state_createstate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server_createserver", "to": "server_v2_auth_file_loadorcreateauth", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server_createserver", "to": "server_watcher_createwatcher", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_smoke_v2_main", "to": "server_server_createserver", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "server_server_buildsnapshotsafe", "to": "server_server_buildsnapshot", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_server_existssafe", "to": "server_server_dirnamesafe", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_settings_store", "to": "server_settings_store_readpluginoptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_settings_store", "to": "server_settings_store_settings_path", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_settings_store", "to": "server_settings_store_writepluginoptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_skills_store", "to": "server_skills_store_atomicwritejson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_skills_store", "to": "server_skills_store_categories", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_skills_store", "to": "server_skills_store_execfilep", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_skills_store", "to": "server_skills_store_home", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_skills_store", "to": "server_skills_store_infercategoryfromtags", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_skills_store", "to": "server_skills_store_loadstate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_skills_store", "to": "server_skills_store_mockcatalog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_skills_store", "to": "server_skills_store_safeexec", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_skills_store", "to": "server_skills_store_savestate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_skills_store", "to": "server_skills_store_skillsstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_skills_store", "to": "server_skills_store_state_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_skills_store_safeexec", "to": "server_skills_store_execfilep", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_skills_store_savestate", "to": "server_skills_store_atomicwritejson", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_state", "to": "server_state_createstate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_state", "to": "server_state_home", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tailscale_store", "to": "server_tailscale_store_execfilep", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tailscale_store", "to": "server_tailscale_store_home", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tailscale_store", "to": "server_tailscale_store_loadsettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tailscale_store", "to": "server_tailscale_store_savesettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tailscale_store", "to": "server_tailscale_store_settings_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tailscale_store", "to": "server_tailscale_store_tailscalestatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tailscale_store", "to": "server_tailscale_store_tailscalestore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tailscale_store", "to": "server_tailscale_store_tailscaleversion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tailscale_store_tailscalestatus", "to": "server_tailscale_store_execfilep", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tailscale_store_tailscaleversion", "to": "server_tailscale_store_execfilep", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_task_delegator", "to": "server_task_delegator_autotitlefromcontent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_task_delegator", "to": "server_task_delegator_bg_dirs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_task_delegator", "to": "server_task_delegator_buildprompttext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_task_delegator", "to": "server_task_delegator_genid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_task_delegator", "to": "server_task_delegator_genshorthex", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_task_delegator", "to": "server_task_delegator_home", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_task_delegator", "to": "server_task_delegator_listbginstances", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_task_delegator", "to": "server_task_delegator_pickbgdir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_task_delegator", "to": "server_task_delegator_readbginstance", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_task_delegator", "to": "server_task_delegator_taskdelegator", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_task_delegator", "to": "server_task_delegator_writebgstatefile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_task_delegator", "to": "server_tasks_store", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_task_delegator", "to": "server_tasks_store_tasksstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_task_delegator_writebgstatefile", "to": "server_task_delegator_pickbgdir", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_task_delegator_autotitlefromcontent", "to": "server_tui_pad", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "server_tasks_store", "to": "server_tasks_store_acquire", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tasks_store", "to": "server_tasks_store_appendactivity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tasks_store", "to": "server_tasks_store_atomicwritejson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tasks_store", "to": "server_tasks_store_genid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tasks_store", "to": "server_tasks_store_genshortid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tasks_store", "to": "server_tasks_store_home", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tasks_store", "to": "server_tasks_store_legacy_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tasks_store", "to": "server_tasks_store_loadstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tasks_store", "to": "server_tasks_store_release", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tasks_store", "to": "server_tasks_store_resolvestoragefile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tasks_store", "to": "server_tasks_store_safereadjson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tasks_store", "to": "server_tasks_store_savestore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tasks_store", "to": "server_tasks_store_tasksstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tasks_store", "to": "server_tasks_store_waiters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tasks_store_savestore", "to": "server_tasks_store_atomicwritejson", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tasks_store_loadstore", "to": "server_tasks_store_safereadjson", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tasks_store_appendactivity", "to": "server_tasks_store_genshortid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui", "to": "server_tui_card", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui", "to": "server_tui_confirm", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui", "to": "server_tui_dashboardsocket", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui", "to": "server_tui_dirname", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui", "to": "server_tui_filename", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui", "to": "server_tui_home", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui", "to": "server_tui_jsontotags", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui", "to": "server_tui_launchtui", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui", "to": "server_tui_makeapiclient", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui", "to": "server_tui_pad", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui", "to": "server_tui_prompt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui", "to": "server_tui_readdashboardtoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui", "to": "server_tui_readdashboardversion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui", "to": "server_tui_relativetime", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui", "to": "server_tui_renderagents", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui", "to": "server_tui_renderchat", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui", "to": "server_tui_renderconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui", "to": "server_tui_renderers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui", "to": "server_tui_renderoverview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui", "to": "server_tui_renderplans", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui", "to": "server_tui_renderprojects", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui", "to": "server_tui_rendersettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui", "to": "server_tui_rendertasks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui", "to": "server_tui_shorttime", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui", "to": "server_tui_tabs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui", "to": "server_tui_toast", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui", "to": "server_tui_truncate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui", "to": "server_tui_version", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui_dashboardsocket_connect", "to": "server_tui_readdashboardtoken", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui_card", "to": "server_tui_truncate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui_renderchat", "to": "server_tui_truncate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui_renderconfig", "to": "server_tui_truncate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui_renderoverview", "to": "server_tui_truncate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui_renderprojects", "to": "server_tui_truncate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui_rendersettings", "to": "server_tui_truncate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_utils_autotitlefromcontent", "to": "server_tui_pad", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "server_tui_card", "to": "server_tui_pad", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui_renderchat", "to": "server_tui_pad", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui_renderoverview", "to": "server_tui_pad", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui_renderplans", "to": "server_tui_pad", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui_renderprojects", "to": "server_tui_pad", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui_rendersettings", "to": "server_tui_pad", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules_todatetimelocal", "to": "server_tui_pad", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "views_schedules_todatetimelocal", "to": "server_tui_pad", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "server_tui_renderconfig", "to": "server_tui_jsontotags", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui_renderchat", "to": "server_tui_shorttime", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui_renderoverview", "to": "server_tui_shorttime", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui_renderplans", "to": "server_tui_relativetime", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui_launchtui", "to": "server_tui_makeapiclient", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui_renderagents", "to": "server_tui_card", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui_dashboardsocket", "to": "server_tui_dashboardsocket_close", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui_dashboardsocket", "to": "server_tui_dashboardsocket_connect", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui_dashboardsocket", "to": "server_tui_dashboardsocket_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui_dashboardsocket", "to": "server_tui_dashboardsocket_schedulereconnect", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui_dashboardsocket_constructor", "to": "server_tui_dashboardsocket_connect", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_tui_dashboardsocket_connect", "to": "server_tui_dashboardsocket_schedulereconnect", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_update_store", "to": "server_update_store_packages", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_update_store", "to": "server_update_store_require", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_update_store", "to": "server_update_store_updatestore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp_agentdetailview", "to": "server_update_store_require", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "mobile_mobileapp_plandetailview", "to": "server_update_store_require", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "mobile_mobileapp_taskdetailview", "to": "server_update_store_require", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "server_v2_auth_file", "to": "server_v2_auth_file_default_dir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_v2_auth_file", "to": "server_v2_auth_file_default_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_v2_auth_file", "to": "server_v2_auth_file_home", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_v2_auth_file", "to": "server_v2_auth_file_legacy_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_v2_auth_file", "to": "server_v2_auth_file_loadorcreateauth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_v2_auth_file", "to": "server_v2_auth_file_writeauthfile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_smoke_v2", "to": "server_v2_auth_file", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_v2_auth_file_loadorcreateauth", "to": "server_v2_auth_file_writeauthfile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_smoke_v2", "to": "server_v2_auth_file_loadorcreateauth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_smoke_v2_main", "to": "server_v2_auth_file_loadorcreateauth", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_v2_event_bus", "to": "server_v2_event_bus_v2eventbus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_smoke_v2", "to": "server_v2_event_bus", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_v2_event_bus_v2eventbus", "to": "server_v2_event_bus_v2eventbus_buffersize", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_v2_event_bus_v2eventbus", "to": "server_v2_event_bus_v2eventbus_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_v2_event_bus_v2eventbus", "to": "server_v2_event_bus_v2eventbus_publish", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_v2_event_bus_v2eventbus", "to": "server_v2_event_bus_v2eventbus_size", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_v2_event_bus_v2eventbus", "to": "server_v2_event_bus_v2eventbus_subscribe", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_smoke_v2", "to": "server_v2_event_bus_v2eventbus", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_watcher", "to": "server_watcher_createwatcher", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "components_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "components_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "components_commanddialog", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "components_commanddialog_commanddialog", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "components_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "components_modal_modalprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "components_modal_usemodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "components_notifications", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "components_notifications_notifications", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "components_searchmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "components_searchmodal_searchmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "components_sidebar", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "components_sidebar_sidebar", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "components_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "components_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "components_toast", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "components_toast_toastprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "components_toast_usetoast", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "components_topbar", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "components_topbar_tabs", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "components_topbar_topbar", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "lib_types_applytheme", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "lib_types_applythemetokens", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "lib_types_dialogdescriptor", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "lib_types_plan", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "lib_types_projectrecord", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "lib_types_searchresult", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "lib_types_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "lib_types_settingsresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "lib_types_snapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "lib_types_wsmessage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "lib_types_wsstatus", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "lib_ws", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "lib_ws_ws", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "views_activity", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "views_activity_activity", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "views_agents", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "views_agents_agents", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "views_backgroundagents", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "views_backgroundagents_backgroundagents", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "views_chat", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "views_chat_chat", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "views_config", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "views_config_config", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "views_history", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "views_history_history", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "views_mods", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "views_mods_mods", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "views_overview", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "views_overview_overview", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "views_plans", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "views_plans_plans", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "views_schedules", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "views_schedules_schedules", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "views_settings", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "views_settings_settingsview", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "views_skills", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "views_skills_skills", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "views_tasks", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "views_tasks_tasks", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "web_app_app", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "web_app_crossviewstate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "web_app_shell", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "web_app_view_map", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app", "to": "web_app_viewprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_main", "to": "web_app", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_main", "to": "web_app_app", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app_shell", "to": "components_modal_usemodal", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_app_shell", "to": "components_toast_usetoast", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobile", "to": "web_mobileapp", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "components_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "components_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "lib_types_applytheme", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "lib_types_applythemetokens", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "lib_types_notification", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "lib_types_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "lib_types_snapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "lib_types_wsmessage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "lib_ws", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "lib_ws_ws", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "mobile_mobilebottomnav", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "mobile_mobilebottomnav_mobilebottomnav", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "mobile_mobilebottomnav_mobiletab", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "mobile_mobiletopbar", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "mobile_mobiletopbar_mobiletopbar", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "views_mobileactivity", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "views_mobileactivity_mobileactivity", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "views_mobileagents", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "views_mobileagents_mobileagents", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "views_mobilechat", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "views_mobilechat_mobilechat", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "views_mobileconfig", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "views_mobileconfig_mobileconfig", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "views_mobilehistory", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "views_mobilehistory_mobilehistory", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "views_mobilemods", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "views_mobilemods_mobilemods", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "views_mobilemore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "views_mobilemore_mobilemore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "views_mobileplancanvas", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "views_mobileplancanvas_mobileplancanvas", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "views_mobileplans", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "views_mobileplans_mobileplans", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "views_mobileschedules", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "views_mobileschedules_mobileschedules", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "views_mobilesearchmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "views_mobilesearchmodal_mobilesearchmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "views_mobilesettings", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "views_mobilesettings_mobilesettings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "views_mobileskills", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "views_mobileskills_mobileskills", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "views_mobiletasks", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "views_mobiletasks_mobiletasks", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "web_mobileapp_main_tabs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "web_mobileapp_maintabid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "web_mobileapp_mobileapp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "web_mobileapp_mobileview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobileapp", "to": "web_mobileapp_parsenotificationtarget", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobile", "to": "web_mobileapp_mobileapp", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_artifactviewer", "to": "components_artifactviewer_artifactmeta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_artifactviewer", "to": "components_artifactviewer_artifactviewer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_artifactviewer", "to": "components_artifactviewer_fetchrawcontent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_artifactviewer", "to": "components_artifactviewer_formatbytes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_artifactviewer", "to": "components_artifactviewer_getartifactcontenturl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_artifactviewer", "to": "components_artifactviewer_openartifactviewer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_artifactviewer", "to": "components_artifactviewer_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_artifactviewer", "to": "components_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_artifactviewer", "to": "components_modal_usemodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_artifactviewer", "to": "components_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_artifactviewer", "to": "components_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_artifactviewer", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_artifactviewer", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "components_artifactviewer", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "components_artifactviewer", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_artifactviewer_artifactviewer", "to": "components_artifactviewer_formatbytes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_artifactviewer_artifactviewer", "to": "components_artifactviewer_getartifactcontenturl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_artifactviewer_fetchrawcontent", "to": "components_artifactviewer_getartifactcontenturl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_artifactviewer_openartifactviewer", "to": "components_artifactviewer_getartifactcontenturl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "components_artifactviewer_openartifactviewer", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "components_artifactviewer_openartifactviewer", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_auditdialog", "to": "components_auditdialog_auditdialog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_auditdialog", "to": "components_auditdialog_auditdialogprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_auditdialog", "to": "components_auditdialog_auditresult", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_auditdialog", "to": "components_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_auditdialog", "to": "components_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_auditdialog", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_auditdialog", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_commanddialog", "to": "components_auditdialog", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_commanddialog", "to": "components_auditdialog_auditdialog", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_bgstatusbadge", "to": "components_bgstatusbadge_bgstatusbadge", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_bgstatusbadge", "to": "components_bgstatusbadge_status_kind", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_bgstatusbadge", "to": "components_bgstatusbadge_status_labels", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_bgstatusbadge", "to": "components_statusbadge", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_bgstatusbadge", "to": "components_statusbadge_statusbadge", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_bgstatusbadge", "to": "components_statusbadge_statusbadgeprops", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "components_bgstatusbadge", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "components_bgstatusbadge", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "components_bgstatusbadge_bgstatusbadge", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "components_bgstatusbadge_bgstatusbadge", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_button", "to": "components_button_button", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_button", "to": "components_button_buttonprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_button", "to": "components_button_buttonsize", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_button", "to": "components_button_buttonvariant", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_button", "to": "lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_button", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_helpdialog", "to": "components_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_killconfirmdialog", "to": "components_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_notifications", "to": "components_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_plancreatedialog", "to": "components_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_planlistdialog", "to": "components_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_topbar", "to": "components_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_visualplandialog", "to": "components_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "components_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "components_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "components_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "components_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "components_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_history", "to": "components_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mods", "to": "components_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "components_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "components_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_providers", "to": "components_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "components_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "components_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_skills", "to": "components_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "components_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_helpdialog", "to": "components_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_killconfirmdialog", "to": "components_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_notifications", "to": "components_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_plancreatedialog", "to": "components_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_planlistdialog", "to": "components_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_topbar", "to": "components_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_visualplandialog", "to": "components_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "components_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "components_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "components_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "components_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "components_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_history", "to": "components_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mods", "to": "components_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "components_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "components_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_providers", "to": "components_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "components_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "components_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_skills", "to": "components_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "components_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_canvascontextmenu", "to": "components_canvascontextmenu_canvascontextmenu", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_canvascontextmenu", "to": "components_canvascontextmenu_contextmenuitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_canvascontextmenu", "to": "components_canvascontextmenu_contextmenustate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_canvascontextmenu", "to": "components_canvascontextmenu_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "components_canvascontextmenu", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "components_canvascontextmenu_contextmenustate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "components_canvascontextmenu_canvascontextmenu", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_card", "to": "components_card_card", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_card", "to": "components_card_cardmeta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_card", "to": "components_card_cardprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_card", "to": "components_card_cardtitle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_card", "to": "lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_card", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "components_card", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "components_card", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "components_card", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "components_card", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "components_card", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_history", "to": "components_card", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mods", "to": "components_card", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "components_card", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "components_card", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_providers", "to": "components_card", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "components_card", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "components_card", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_skills", "to": "components_card", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "components_card", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_card_card", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "components_card_card", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "components_card_card", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "components_card_card", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "components_card_card", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "components_card_card", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_history", "to": "components_card_card", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mods", "to": "components_card_card", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "components_card_card", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "components_card_card", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_providers", "to": "components_card_card", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "components_card_card", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "components_card_card", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_skills", "to": "components_card_card", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "components_card_card", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_card_cardtitle", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "components_card_cardtitle", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "components_card_cardtitle", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "components_card_cardtitle", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "components_card_cardtitle", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_history", "to": "components_card_cardtitle", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mods", "to": "components_card_cardtitle", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "components_card_cardtitle", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "components_card_cardtitle", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_providers", "to": "components_card_cardtitle", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "components_card_cardtitle", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "components_card_cardtitle", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_skills", "to": "components_card_cardtitle", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "components_card_cardtitle", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_card_cardmeta", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "components_card_cardmeta", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "components_card_cardmeta", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_history", "to": "components_card_cardmeta", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mods", "to": "components_card_cardmeta", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "components_card_cardmeta", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "components_card_cardmeta", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "components_card_cardmeta", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "components_card_cardmeta", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_skills", "to": "components_card_cardmeta", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_collapsiblesection", "to": "components_collapsiblesection_collapsiblesection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_collapsiblesection", "to": "components_collapsiblesection_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_collapsiblesection", "to": "lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_collapsiblesection", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_collapsiblesection_collapsiblesection", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_commanddialog", "to": "components_commanddialog_commanddialog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_commanddialog", "to": "components_commanddialog_genericdialog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_commanddialog", "to": "components_helpdialog", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_commanddialog", "to": "components_helpdialog_helpdialog", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_commanddialog", "to": "components_plancreatedialog", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_commanddialog", "to": "components_plancreatedialog_plancreatedialog", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_commanddialog", "to": "components_planlistdialog", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_commanddialog", "to": "components_planlistdialog_planlistdialog", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_commanddialog", "to": "components_visualplandialog", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_commanddialog", "to": "components_visualplandialog_visualplandialog", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_commanddialog", "to": "lib_types", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_commanddialog", "to": "lib_types_dialogdescriptor", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_emptystate", "to": "components_emptystate_emptystate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_emptystate", "to": "components_emptystate_emptystateprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_emptystate", "to": "lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_emptystate", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "components_emptystate", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "components_emptystate", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "components_emptystate", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "components_emptystate", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mods", "to": "components_emptystate", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "components_emptystate", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "components_emptystate", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_providers", "to": "components_emptystate", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "components_emptystate", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_skills", "to": "components_emptystate", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "components_emptystate", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_emptystate_emptystate", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "components_emptystate_emptystate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "components_emptystate_emptystate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "components_emptystate_emptystate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "components_emptystate_emptystate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mods", "to": "components_emptystate_emptystate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "components_emptystate_emptystate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "components_emptystate_emptystate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_providers", "to": "components_emptystate_emptystate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "components_emptystate_emptystate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_skills", "to": "components_emptystate_emptystate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "components_emptystate_emptystate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_filebrowser", "to": "components_filebrowser_cache", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_filebrowser", "to": "components_filebrowser_cacheentry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_filebrowser", "to": "components_filebrowser_cacheget", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_filebrowser", "to": "components_filebrowser_cacheset", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_filebrowser", "to": "components_filebrowser_filebrowser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_filebrowser", "to": "components_filebrowser_filebrowserprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_filebrowser", "to": "components_filebrowser_flatskeleton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_filebrowser", "to": "components_filebrowser_pathsegments", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_filebrowser", "to": "components_filebrowser_sortentries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_filebrowser", "to": "components_filebrowser_treenode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_filebrowser", "to": "components_filebrowser_treeskeleton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_filebrowser", "to": "components_filebrowser_validatedirname", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_filebrowser", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_filebrowser", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_filebrowser", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_filebrowser", "to": "lib_types_directoryentry", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_filebrowser", "to": "lib_types_directorylisting", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_filebrowser", "to": "lib_types_mkdirrequest", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_filebrowser", "to": "lib_types_mkdirresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_topbar", "to": "components_filebrowser", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "components_filebrowser", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_filebrowser_filebrowser", "to": "components_filebrowser_pathsegments", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_filebrowser_filebrowser", "to": "components_filebrowser_sortentries", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_topbar", "to": "components_filebrowser_filebrowser", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "components_filebrowser_filebrowser", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_helpdialog", "to": "components_helpdialog_cmdentry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_helpdialog", "to": "components_helpdialog_helpdialog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_helpdialog", "to": "components_helpdialog_helpdialogprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_killconfirmdialog", "to": "components_killconfirmdialog_killconfirmdialog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_killconfirmdialog", "to": "components_killconfirmdialog_killconfirmdialogprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_killconfirmdialog", "to": "components_killconfirmdialog_openkillconfirmdialog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_killconfirmdialog", "to": "components_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_killconfirmdialog", "to": "components_modal_modalapi", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "components_killconfirmdialog", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "components_killconfirmdialog", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "components_killconfirmdialog_openkillconfirmdialog", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "components_killconfirmdialog_openkillconfirmdialog", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_modal", "to": "components_modal_focusable_selector", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_modal", "to": "components_modal_modalapi", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_modal", "to": "components_modal_modalcontext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_modal", "to": "components_modal_modalprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_modal", "to": "components_modal_modalprovider", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_modal", "to": "components_modal_modalshell", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_modal", "to": "components_modal_openmodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_modal", "to": "components_modal_usemodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_topbar", "to": "components_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "components_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "components_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "components_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "components_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "components_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mods", "to": "components_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "components_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "components_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_providers", "to": "components_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "components_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_skills", "to": "components_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "components_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_topbar", "to": "components_modal_usemodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_topbar_projectselector", "to": "components_modal_usemodal", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "components_modal_usemodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity_activity", "to": "components_modal_usemodal", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "components_modal_usemodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents_agents", "to": "components_modal_usemodal", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "components_modal_usemodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents_backgroundagents", "to": "components_modal_usemodal", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "components_modal_usemodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat_chat", "to": "components_modal_usemodal", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "components_modal_usemodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config_config", "to": "components_modal_usemodal", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config_mcpspanel", "to": "components_modal_usemodal", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config_providerspanel", "to": "components_modal_usemodal", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mods", "to": "components_modal_usemodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mods_mods", "to": "components_modal_usemodal", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "components_modal_usemodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview_overview", "to": "components_modal_usemodal", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "components_modal_usemodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans_planeditor", "to": "components_modal_usemodal", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_providers", "to": "components_modal_usemodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_providers_providers", "to": "components_modal_usemodal", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "components_modal_usemodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules_schedules", "to": "components_modal_usemodal", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_skills", "to": "components_modal_usemodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_skills_skills", "to": "components_modal_usemodal", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "components_modal_usemodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks_taskcard", "to": "components_modal_usemodal", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks_tasks", "to": "components_modal_usemodal", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_notifications", "to": "components_notifications_icons", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_notifications", "to": "components_notifications_notifications", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_notifications", "to": "components_notifications_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_notifications", "to": "components_toast", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_notifications", "to": "components_toast_usetoast", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_notifications", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_notifications", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_notifications", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_notifications", "to": "lib_types_notification", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_notifications", "to": "lib_types_notificationstats", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_notifications", "to": "lib_types_wsmessage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_notifications", "to": "lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_notifications", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_notifications", "to": "lib_utils_formatrelative", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_notifications_notifications", "to": "components_toast_usetoast", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_notifications_notifications", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_notifications_notifications", "to": "lib_utils_formatrelative", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_plancreatedialog", "to": "components_plancreatedialog_known_templates", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_plancreatedialog", "to": "components_plancreatedialog_plancreatedialog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_plancreatedialog", "to": "components_plancreatedialog_plancreatedialogprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_plancreatedialog", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_plancreatedialog", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_planlistdialog", "to": "components_planlistdialog_planlistdialog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_planlistdialog", "to": "components_planlistdialog_planlistdialogprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_searchmodal", "to": "components_searchmodal_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_searchmodal", "to": "components_searchmodal_result_type_by_scope", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_searchmodal", "to": "components_searchmodal_scopes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_searchmodal", "to": "components_searchmodal_searchmodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_searchmodal", "to": "components_searchmodal_summarize", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_searchmodal", "to": "components_toast", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_searchmodal", "to": "components_toast_usetoast", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_searchmodal", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_searchmodal", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_searchmodal", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_searchmodal", "to": "lib_types_searchresult", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_searchmodal", "to": "lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_searchmodal", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_searchmodal_searchmodal", "to": "components_toast_usetoast", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_sidebar", "to": "components_sidebar_sidebar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_sidebar", "to": "components_sidebar_sidebarprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_sidebar", "to": "components_topbar", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_sidebar", "to": "components_topbar_tabdef", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_sidebar", "to": "lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_sidebar", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_spinner", "to": "components_spinner_spinner", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_spinner", "to": "components_spinner_spinnerprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_spinner", "to": "lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_spinner", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "components_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "components_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "components_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "components_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "components_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_history", "to": "components_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mods", "to": "components_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "components_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "components_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_providers", "to": "components_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "components_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_skills", "to": "components_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "components_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_spinner_spinner", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "components_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "components_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "components_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "components_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "components_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_history", "to": "components_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mods", "to": "components_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "components_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "components_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_providers", "to": "components_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "components_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_skills", "to": "components_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "components_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_statusbadge", "to": "components_statusbadge_statusbadge", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_statusbadge", "to": "components_statusbadge_statusbadgeprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_statusbadge", "to": "lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_statusbadge", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "components_statusbadge", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "components_statusbadge", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_providers", "to": "components_statusbadge", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_skills", "to": "components_statusbadge", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "components_statusbadge", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_statusbadge_statusbadge", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "components_statusbadge_statusbadge", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "components_statusbadge_statusbadge", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_providers", "to": "components_statusbadge_statusbadge", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_skills", "to": "components_statusbadge_statusbadge", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "components_statusbadge_statusbadge", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_tag", "to": "components_tag_tag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_tag", "to": "components_tag_tagprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_tag", "to": "lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_tag", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "components_tag", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_tag_tag", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "components_tag_tag", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_toast", "to": "components_toast_icons", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_toast", "to": "components_toast_toast", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_toast", "to": "components_toast_toastapi", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_toast", "to": "components_toast_toastcontainer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_toast", "to": "components_toast_toastcontext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_toast", "to": "components_toast_toastitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_toast", "to": "components_toast_toastkind", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_toast", "to": "components_toast_toastprovider", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_toast", "to": "components_toast_usetoast", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "components_toast", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "components_toast", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "components_toast", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "components_toast", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "components_toast", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_history", "to": "components_toast", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mods", "to": "components_toast", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "components_toast", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "components_toast", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_providers", "to": "components_toast", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "components_toast", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "components_toast", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_skills", "to": "components_toast", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "components_toast", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "components_toast_usetoast", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity_activity", "to": "components_toast_usetoast", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "components_toast_usetoast", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents_agents", "to": "components_toast_usetoast", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "components_toast_usetoast", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents_backgroundagents", "to": "components_toast_usetoast", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents_outputmodalbody", "to": "components_toast_usetoast", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "components_toast_usetoast", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat_chat", "to": "components_toast_usetoast", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "components_toast_usetoast", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config_autodetectbanner", "to": "components_toast_usetoast", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config_config", "to": "components_toast_usetoast", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config_mcpspanel", "to": "components_toast_usetoast", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config_providerspanel", "to": "components_toast_usetoast", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_history", "to": "components_toast_usetoast", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_history_history", "to": "components_toast_usetoast", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mods", "to": "components_toast_usetoast", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mods_mods", "to": "components_toast_usetoast", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "components_toast_usetoast", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview_overview", "to": "components_toast_usetoast", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "components_toast_usetoast", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans_planeditor", "to": "components_toast_usetoast", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans_plans", "to": "components_toast_usetoast", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_providers", "to": "components_toast_usetoast", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_providers_providers", "to": "components_toast_usetoast", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "components_toast_usetoast", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules_schedules", "to": "components_toast_usetoast", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "components_toast_usetoast", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings_activitylogcard", "to": "components_toast_usetoast", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings_pairdevicecard", "to": "components_toast_usetoast", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings_settingsview", "to": "components_toast_usetoast", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings_updatescard", "to": "components_toast_usetoast", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_skills", "to": "components_toast_usetoast", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_skills_skills", "to": "components_toast_usetoast", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "components_toast_usetoast", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks_taskcard", "to": "components_toast_usetoast", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks_tasks", "to": "components_toast_usetoast", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_topbar", "to": "components_topbar_projectselector", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_topbar", "to": "components_topbar_tabdef", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_topbar", "to": "components_topbar_tabs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_topbar", "to": "components_topbar_topbar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_topbar", "to": "components_topbar_topbaraddprojectdialog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_topbar", "to": "components_topbar_topbarprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_topbar", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_topbar", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_topbar", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_topbar", "to": "lib_types_directorylisting", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_topbar", "to": "lib_types_projectrecord", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_topbar", "to": "lib_types_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_topbar", "to": "lib_types_wsmessage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_topbar", "to": "lib_types_wsstatus", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_topbar", "to": "lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_topbar", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_topbar_topbar", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_visualplandialog", "to": "components_visualplandialog_visualplandialog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_visualplandialog", "to": "components_visualplandialog_visualplandialogprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api", "to": "lib_api_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api", "to": "lib_api_apiclient", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api", "to": "lib_api_apierror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_ws", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobiletopbar", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_history", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileactivity", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileagents", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilechat", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileconfig", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilehistory", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilemods", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilenotifications", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileplancanvas", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileplans", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilesearchmodal", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilesettings", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileskills", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobiletasks", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mods", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_providers", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_skills", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "lib_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apierror", "to": "lib_api_apierror_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apiclient", "to": "lib_api_apiclient_del", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apiclient", "to": "lib_api_apiclient_get", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apiclient", "to": "lib_api_apiclient_gettoken", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apiclient", "to": "lib_api_apiclient_isloopbacktrusted", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apiclient", "to": "lib_api_apiclient_patch", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apiclient", "to": "lib_api_apiclient_post", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apiclient", "to": "lib_api_apiclient_probeauthstatus", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apiclient", "to": "lib_api_apiclient_put", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apiclient", "to": "lib_api_apiclient_req", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apiclient", "to": "lib_api_apiclient_settoken", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apiclient", "to": "lib_api_apiclient_urlwithtoken", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apiclient_req", "to": "lib_api_apiclient_gettoken", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apiclient_urlwithtoken", "to": "lib_api_apiclient_gettoken", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apiclient_get", "to": "lib_api_apiclient_req", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apiclient_post", "to": "lib_api_apiclient_req", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apiclient_put", "to": "lib_api_apiclient_req", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apiclient_patch", "to": "lib_api_apiclient_req", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apiclient_del", "to": "lib_api_apiclient_req", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobiletopbar", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_history", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileactivity", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileagents", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilechat", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileconfig", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilehistory", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilemods", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilenotifications", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileplancanvas", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileplans", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilesearchmodal", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilesettings", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileskills", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobiletasks", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mods", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_providers", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_skills", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "lib_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_markdown", "to": "lib_markdown_color", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_markdown", "to": "lib_markdown_jsonhighlight", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_markdown", "to": "lib_markdown_token", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_markdown", "to": "lib_markdown_tokenize", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_markdown_jsonhighlight", "to": "lib_markdown_tokenize", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_activityitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_agent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_applytheme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_applythemetokens", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_backgroundlistresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_backgroundoutputresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_backgroundtmuxresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_bginstance", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_budgetcheck", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_canvas", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_canvascomment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_canvasconnection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_canvaselement", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_canvasviewport", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_chatmessage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_chatresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_chatsession", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_configresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_customtheme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_diagnosticitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_diagnostics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_dialogcomponent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_dialogdescriptor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_directoryentry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_directorylisting", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_hextorgba", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_mcpserver", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_mkdirrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_mkdirresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_mod", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_notification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_notificationsresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_notificationstats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_overview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_overviewcounts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_overviewversions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_projectrecord", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_projectsresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_provider", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_scanresult", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_schedule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_scheduleaction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_searchresult", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_settings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_settingsresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_snapshot", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_tailscalestatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_task", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_themename", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_themesettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_uisettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_wsmessage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types", "to": "lib_types_wsstatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_ws", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobiletopbar", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_history", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileactivity", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileagents", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilechat", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilemods", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilemore", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilenotifications", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileplancanvas", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileplans", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilesearchmodal", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilesettings", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileskills", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobiletasks", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mods", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_providers", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_skills", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilesettings", "to": "lib_types_themename", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "lib_types_themename", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "lib_types_agent", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "lib_types_agent", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "lib_types_agent", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileagents", "to": "lib_types_agent", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "lib_types_agent", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "lib_types_projectrecord", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "lib_types_directorylisting", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "lib_types_scanresult", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileplans", "to": "lib_types_plan", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "lib_types_plan", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileplancanvas", "to": "lib_types_canvaselement", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "lib_types_canvaselement", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "lib_types_canvasconnection", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "lib_types_canvascomment", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileplancanvas", "to": "lib_types_canvas", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "lib_types_canvas", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "lib_types_configresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "lib_types_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "lib_types_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "lib_types_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "lib_types_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "lib_types_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "lib_types_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_history", "to": "lib_types_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilechat", "to": "lib_types_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilesettings", "to": "lib_types_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mods", "to": "lib_types_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "lib_types_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "lib_types_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_providers", "to": "lib_types_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "lib_types_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "lib_types_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_skills", "to": "lib_types_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "lib_types_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "lib_types_settingsresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileactivity", "to": "lib_types_activityitem", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "lib_types_activityitem", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "lib_types_overview", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "lib_types_chatmessage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilechat", "to": "lib_types_chatmessage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "lib_types_chatsession", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "lib_types_chatresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "lib_types_task", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobiletasks", "to": "lib_types_task", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "lib_types_task", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilenotifications", "to": "lib_types_notification", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules", "to": "lib_types_schedule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "lib_types_schedule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "lib_types_mod", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilemods", "to": "lib_types_mod", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mods", "to": "lib_types_mod", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "lib_types_mod", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "lib_types_provider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_providers", "to": "lib_types_provider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "lib_types_mcpserver", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "lib_types_mcpserver", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "lib_types_diagnostics", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "lib_types_tailscalestatus", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilesearchmodal", "to": "lib_types_searchresult", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "lib_types_bginstance", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "lib_types_backgroundlistresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "lib_types_backgroundoutputresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "lib_types_backgroundtmuxresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "lib_types_snapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobiletopbar", "to": "lib_types_snapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "lib_types_snapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "lib_types_snapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "lib_types_snapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "lib_types_snapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "lib_types_snapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_history", "to": "lib_types_snapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileactivity", "to": "lib_types_snapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileagents", "to": "lib_types_snapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilechat", "to": "lib_types_snapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilemods", "to": "lib_types_snapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilemore", "to": "lib_types_snapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileplans", "to": "lib_types_snapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules", "to": "lib_types_snapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilesettings", "to": "lib_types_snapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileskills", "to": "lib_types_snapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobiletasks", "to": "lib_types_snapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mods", "to": "lib_types_snapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "lib_types_snapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "lib_types_snapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_providers", "to": "lib_types_snapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "lib_types_snapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "lib_types_snapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_skills", "to": "lib_types_snapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "lib_types_snapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_ws", "to": "lib_types_wsstatus", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_ws_ws", "to": "lib_types_wsstatus", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_ws_ws_setstatus", "to": "lib_types_wsstatus", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_ws_ws_status", "to": "lib_types_wsstatus", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_ws", "to": "lib_types_wsmessage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilesettings", "to": "lib_types_applytheme", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "lib_types_applytheme", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_types_applythemetokens", "to": "lib_types_hextorgba", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilesettings", "to": "lib_types_applythemetokens", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "lib_types_applythemetokens", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_mobilelistitem", "to": "lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_utils", "to": "lib_utils_autotitlefromcontent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_utils", "to": "lib_utils_cn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_utils", "to": "lib_utils_debounce", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_utils", "to": "lib_utils_formatrelative", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_utils", "to": "lib_utils_formattime", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_utils", "to": "lib_utils_hashtext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_utils", "to": "lib_utils_prioritycolors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_utils", "to": "lib_utils_statusbadgekind", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_utils", "to": "lib_utils_truncate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobilebottomnav", "to": "lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_history", "to": "lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileactivity", "to": "lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileagents", "to": "lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilechat", "to": "lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileplancanvas", "to": "lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobiletasks", "to": "lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mods", "to": "lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_providers", "to": "lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_skills", "to": "lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_mobilelistitem", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_mobilelistitem_mobilelistitem", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobilebottomnav", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity_activity", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents_agentcard", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents_backgroundagentcard", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat_chat", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat_chatbubble", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config_configeditorpanel", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config_permissionsform", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_history", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mods", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview_activityfeeditem", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview_overview", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans_canvaselementview", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans_planeditor", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_providers", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings_settingsview", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_skills", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_skills_skillcard", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks_kanbancolumn", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks_opentaskdetail", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks_taskcard", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "lib_utils_formatrelative", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents_agentcard", "to": "lib_utils_formatrelative", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_history", "to": "lib_utils_formatrelative", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_history_history", "to": "lib_utils_formatrelative", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileactivity", "to": "lib_utils_formatrelative", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileagents", "to": "lib_utils_formatrelative", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileagents_mobileagents", "to": "lib_utils_formatrelative", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileplancanvas", "to": "lib_utils_formatrelative", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobiletasks", "to": "lib_utils_formatrelative", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobiletasks_mobiletasks", "to": "lib_utils_formatrelative", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "lib_utils_formatrelative", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview_formatrelativetime", "to": "lib_utils_formatrelative", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview_projectcard", "to": "lib_utils_formatrelative", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "lib_utils_formatrelative", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans_plancard", "to": "lib_utils_formatrelative", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "lib_utils_formatrelative", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "lib_utils_formatrelative", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks_opentaskdetail", "to": "lib_utils_formatrelative", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks_taskcard", "to": "lib_utils_formatrelative", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "lib_utils_formattime", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents_backgroundagentcard", "to": "lib_utils_formattime", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "lib_utils_formattime", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat_chatbubble", "to": "lib_utils_formattime", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilechat", "to": "lib_utils_formattime", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilehistory_mobilehistory", "to": "lib_utils_formattime", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "views_overview", "to": "lib_utils_formattime", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview_overview", "to": "lib_utils_formattime", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "lib_utils_truncate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents_agentcard", "to": "lib_utils_truncate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "lib_utils_truncate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents_backgroundagentcard", "to": "lib_utils_truncate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "lib_utils_truncate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans_canvaselementview", "to": "lib_utils_truncate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "lib_utils_debounce", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobiletasks", "to": "lib_utils_prioritycolors", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "lib_utils_prioritycolors", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "lib_utils_hashtext", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "lib_utils_autotitlefromcontent", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_ws", "to": "lib_ws_buildwsurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_ws", "to": "lib_ws_handler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_ws", "to": "lib_ws_statushandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_ws", "to": "lib_ws_ws", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "lib_ws", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilechat", "to": "lib_ws", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "lib_ws", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_ws_ws_onstatus", "to": "lib_ws_handler", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_ws_ws_connect", "to": "lib_ws_buildwsurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_ws_ws", "to": "lib_ws_ws_close", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_ws_ws", "to": "lib_ws_ws_connect", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_ws_ws", "to": "lib_ws_ws_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_ws_ws", "to": "lib_ws_ws_on", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_ws_ws", "to": "lib_ws_ws_onstatus", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_ws_ws", "to": "lib_ws_ws_schedulereconnect", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_ws_ws", "to": "lib_ws_ws_send", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_ws_ws", "to": "lib_ws_ws_setstatus", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_ws_ws", "to": "lib_ws_ws_status", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "lib_ws_ws", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilechat", "to": "lib_ws_ws", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "lib_ws_ws", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_ws_ws_constructor", "to": "lib_ws_ws_connect", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_ws_ws_close", "to": "lib_ws_ws_setstatus", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_ws_ws_connect", "to": "lib_ws_ws_schedulereconnect", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_ws_ws_connect", "to": "lib_ws_ws_setstatus", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_main", "to": "web_main_root", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "web_mobile", "to": "web_mobile_root", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "mobile_mobileapp_agentdetailview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "mobile_mobileapp_mobileapp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "mobile_mobileapp_mobileview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "mobile_mobileapp_plandetailview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "mobile_mobileapp_tabs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "mobile_mobileapp_taskdetailview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "mobile_mobilebottomnav", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "mobile_mobilebottomnav_mobilebottomnav", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "mobile_mobilebottomnav_mobiletab", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "mobile_mobiletopbar", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "mobile_mobiletopbar_mobiletopbar", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "views_mobileactivity", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "views_mobileactivity_mobileactivity", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "views_mobileagents", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "views_mobileagents_mobileagents", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "views_mobilechat", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "views_mobilechat_mobilechat", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "views_mobileconfig", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "views_mobileconfig_mobileconfig", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "views_mobilehistory", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "views_mobilehistory_mobilehistory", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "views_mobilemods", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "views_mobilemods_mobilemods", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "views_mobilemore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "views_mobilemore_mobilemore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "views_mobilenotifications", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "views_mobilenotifications_mobilenotifications", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "views_mobileplans", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "views_mobileplans_mobileplans", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "views_mobileschedules", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "views_mobileschedules_mobileschedules", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "views_mobilesearchmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "views_mobilesearchmodal_mobilesearchmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "views_mobilesettings", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "views_mobilesettings_mobilesettings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "views_mobileskills", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "views_mobileskills_mobileskills", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "views_mobiletasks", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobileapp", "to": "views_mobiletasks_mobiletasks", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobilebottomnav", "to": "mobile_mobilebottomnav_mobilebottomnav", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobilebottomnav", "to": "mobile_mobilebottomnav_mobiletab", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobilebottomnav", "to": "mobile_mobilebottomnav_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobiletopbar", "to": "components_mobilebottomsheet", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobiletopbar", "to": "components_mobilebottomsheet_mobilebottomsheet", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobiletopbar", "to": "mobile_mobiletopbar_mobiletopbar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobiletopbar", "to": "mobile_mobiletopbar_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobiletopbar", "to": "mobile_mobiletopbar_tab_labels", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobiletopbar", "to": "views_mobilenotifications", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_mobiletopbar", "to": "views_mobilenotifications_mobilenotifications", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_mobilebottomsheet", "to": "components_mobilebottomsheet_mobilebottomsheet", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_mobilebottomsheet", "to": "components_mobilebottomsheet_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileactivity", "to": "components_mobilebottomsheet", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileagents", "to": "components_mobilebottomsheet", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilehistory", "to": "components_mobilebottomsheet", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilemods", "to": "components_mobilebottomsheet", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilenotifications", "to": "components_mobilebottomsheet", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileplancanvas", "to": "components_mobilebottomsheet", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules", "to": "components_mobilebottomsheet", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileskills", "to": "components_mobilebottomsheet", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobiletasks", "to": "components_mobilebottomsheet", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileactivity", "to": "components_mobilebottomsheet_mobilebottomsheet", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileagents", "to": "components_mobilebottomsheet_mobilebottomsheet", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilehistory", "to": "components_mobilebottomsheet_mobilebottomsheet", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilemods", "to": "components_mobilebottomsheet_mobilebottomsheet", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilenotifications", "to": "components_mobilebottomsheet_mobilebottomsheet", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileplancanvas", "to": "components_mobilebottomsheet_mobilebottomsheet", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules", "to": "components_mobilebottomsheet_mobilebottomsheet", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileskills", "to": "components_mobilebottomsheet_mobilebottomsheet", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobiletasks", "to": "components_mobilebottomsheet_mobilebottomsheet", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_mobilelistitem", "to": "components_mobilelistitem_chevronright", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_mobilelistitem", "to": "components_mobilelistitem_mobilelistitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_mobilelistitem", "to": "components_mobilelistitem_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_mobilemodal", "to": "components_mobilemodal_mobilemodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_mobilemodal", "to": "components_mobilemodal_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileagents", "to": "components_mobilemodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileplancanvas", "to": "components_mobilemodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileplans", "to": "components_mobilemodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules", "to": "components_mobilemodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilesearchmodal", "to": "components_mobilemodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobiletasks", "to": "components_mobilemodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileagents", "to": "components_mobilemodal_mobilemodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileplancanvas", "to": "components_mobilemodal_mobilemodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileplans", "to": "components_mobilemodal_mobilemodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules", "to": "components_mobilemodal_mobilemodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilesearchmodal", "to": "components_mobilemodal_mobilemodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobiletasks", "to": "components_mobilemodal_mobilemodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileactivity", "to": "views_mobileactivity_event_kinds", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileactivity", "to": "views_mobileactivity_eventkind", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileactivity", "to": "views_mobileactivity_kind_labels", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileactivity", "to": "views_mobileactivity_mobileactivity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileactivity", "to": "views_mobileactivity_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileactivity", "to": "views_mobileactivity_rendereventmessage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileagents", "to": "views_mobileagents_categories", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileagents", "to": "views_mobileagents_category_colors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileagents", "to": "views_mobileagents_mobileagents", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileagents", "to": "views_mobileagents_newagentmodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileagents", "to": "views_mobileagents_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilechat", "to": "views_mobilechat_mobilechat", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilechat", "to": "views_mobilechat_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilechat", "to": "views_mobilechat_slash_commands", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilechat", "to": "views_mobilechat_taskchatsession", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileconfig", "to": "views_mobileconfig_configentry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileconfig", "to": "views_mobileconfig_mobileconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileconfig", "to": "views_mobileconfig_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilehistory", "to": "views_mobilehistory_historyentry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilehistory", "to": "views_mobilehistory_historyevent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilehistory", "to": "views_mobilehistory_historyresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilehistory", "to": "views_mobilehistory_mobilehistory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilehistory", "to": "views_mobilehistory_projecthistory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilehistory", "to": "views_mobilehistory_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilemods", "to": "views_mobilemods_mobilemods", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilemods", "to": "views_mobilemods_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilemore", "to": "views_mobilemore_mobilemore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilemore", "to": "views_mobilemore_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilenotifications", "to": "views_mobilenotifications_formatnotiftime", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilenotifications", "to": "views_mobilenotifications_mobilenotifications", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilenotifications", "to": "views_mobilenotifications_notificon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilenotifications", "to": "views_mobilenotifications_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileplancanvas", "to": "views_mobileplancanvas_addelementmodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileplancanvas", "to": "views_mobileplancanvas_element_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileplancanvas", "to": "views_mobileplancanvas_elementcolor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileplancanvas", "to": "views_mobileplancanvas_elementeditform", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileplancanvas", "to": "views_mobileplancanvas_elementicon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileplancanvas", "to": "views_mobileplancanvas_mobileplancanvas", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileplancanvas", "to": "views_mobileplancanvas_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileplans", "to": "views_mobileplans_mobileplans", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileplans", "to": "views_mobileplans_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules", "to": "views_mobileschedules_actions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules", "to": "views_mobileschedules_composeschedulevalue", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules", "to": "views_mobileschedules_dows", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules", "to": "views_mobileschedules_editorstate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules", "to": "views_mobileschedules_formatnextshort", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules", "to": "views_mobileschedules_formatrel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules", "to": "views_mobileschedules_hours", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules", "to": "views_mobileschedules_humanizeschedule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules", "to": "views_mobileschedules_initialeditorstate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules", "to": "views_mobileschedules_interval_units", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules", "to": "views_mobileschedules_minutes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules", "to": "views_mobileschedules_mobileschedules", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules", "to": "views_mobileschedules_parsesimplecron", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules", "to": "views_mobileschedules_parsesimpleinterval", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules", "to": "views_mobileschedules_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules", "to": "views_mobileschedules_scheduleeditor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules", "to": "views_mobileschedules_timezones", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules", "to": "views_mobileschedules_todatetimelocal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules", "to": "views_mobileschedules_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules_mobileschedules", "to": "views_mobileschedules_formatnextshort", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules_mobileschedules", "to": "views_mobileschedules_formatrel", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules_mobileschedules", "to": "views_mobileschedules_humanizeschedule", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules_initialeditorstate", "to": "views_mobileschedules_parsesimplecron", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules_initialeditorstate", "to": "views_mobileschedules_parsesimpleinterval", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules_initialeditorstate", "to": "views_mobileschedules_todatetimelocal", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileschedules_humanizeschedule", "to": "views_mobileschedules_parsesimplecron", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilesearchmodal", "to": "views_mobilesearchmodal_mobilesearchmodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilesearchmodal", "to": "views_mobilesearchmodal_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilesearchmodal", "to": "views_mobilesearchmodal_scope", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilesearchmodal", "to": "views_mobilesearchmodal_scope_icons", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilesearchmodal", "to": "views_mobilesearchmodal_scopes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilesettings", "to": "views_mobilesettings_formatcountdown", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilesettings", "to": "views_mobilesettings_mobilesettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilesettings", "to": "views_mobilesettings_pairsession", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilesettings", "to": "views_mobilesettings_preset_accents", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilesettings", "to": "views_mobilesettings_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilesettings", "to": "views_mobilesettings_themes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobilesettings_mobilesettings", "to": "views_mobilesettings_formatcountdown", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileskills", "to": "views_mobileskills_categories", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileskills", "to": "views_mobileskills_mobileskills", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileskills", "to": "views_mobileskills_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobileskills", "to": "views_mobileskills_skill", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobiletasks", "to": "views_mobiletasks_hastaskartifacts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobiletasks", "to": "views_mobiletasks_hastaskchat", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobiletasks", "to": "views_mobiletasks_mobiletasks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobiletasks", "to": "views_mobiletasks_newtaskmodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobiletasks", "to": "views_mobiletasks_next_status", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobiletasks", "to": "views_mobiletasks_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobiletasks", "to": "views_mobiletasks_settingsdefaultagent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobiletasks", "to": "views_mobiletasks_status_labels", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobiletasks", "to": "views_mobiletasks_status_order", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobiletasks", "to": "views_mobiletasks_taskartifactmeta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobiletasks", "to": "views_mobiletasks_taskchatmeta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobiletasks_mobiletasks", "to": "views_mobiletasks_hastaskchat", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mobiletasks_mobiletasks", "to": "views_mobiletasks_hastaskartifacts", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "views_activity_activity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "views_activity_activityevent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "views_activity_bgendms", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "views_activity_bginstance", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "views_activity_bgstartms", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "views_activity_choosetickstep", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "views_activity_eventmarker", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "views_activity_formatticklabel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "views_activity_lane", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "views_activity_parsets", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "views_activity_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "views_activity_selecteditem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "views_activity_shortlabel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "views_activity_status_colors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "views_activity_statuscolor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "views_activity_taskbar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "views_activity_taskendms", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "views_activity_taskstartms", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "views_activity_zoom_ranges", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity", "to": "views_activity_zoomkey", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity_taskendms", "to": "views_activity_parsets", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_activity_taskstartms", "to": "views_activity_parsets", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "views_agents_agentcard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "views_agents_agents", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "views_agents_categories", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "views_agents_categorycolor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "views_agents_models", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "views_agents_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "views_agents_statusdot", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "views_agents_statuspill", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents", "to": "views_agents_tool_options", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_agents_agentcard", "to": "views_agents_categorycolor", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "views_backgroundagents_backgroundagentcard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "views_backgroundagents_backgroundagents", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "views_backgroundagents_formatduration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "views_backgroundagents_isactive", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "views_backgroundagents_openoutputmodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "views_backgroundagents_opentmuxmodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "views_backgroundagents_outputmodalbody", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "views_backgroundagents_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents", "to": "views_backgroundagents_tmuxmodalbody", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_backgroundagents_backgroundagentcard", "to": "views_backgroundagents_formatduration", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "views_chat_builtin_commands", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "views_chat_chat", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "views_chat_chatbubble", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "views_chat_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "views_chat_slashcommand", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_chat", "to": "views_chat_taskchatsession", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "views_config_autodetectbanner", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "views_config_autodetectresult", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "views_config_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "views_config_configeditorpanel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "views_config_diagnosticspanel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "views_config_emptyproviders", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "views_config_exportpanel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "views_config_hooksform", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "views_config_mcpdraft", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "views_config_mcpspanel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "views_config_modelform", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "views_config_nav_items", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "views_config_navid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "views_config_oc_sections", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "views_config_ocsection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "views_config_parseenv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "views_config_parseheaders", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "views_config_permissionsform", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "views_config_pluginsform", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "views_config_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "views_config_providerdraft", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "views_config_providerspanel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_config", "to": "views_config_toolsform", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_history", "to": "views_history_history", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_history", "to": "views_history_historyevent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_history", "to": "views_history_historyresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_history", "to": "views_history_projecthistory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_history", "to": "views_history_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_history", "to": "views_history_time_ranges", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mods", "to": "views_mods_moddetails", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mods", "to": "views_mods_mods", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mods", "to": "views_mods_modview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_mods", "to": "views_mods_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "views_overview_activityfeeditem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "views_overview_activityicon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "views_overview_activitynavtarget", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "views_overview_activityseverity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "views_overview_addprojectdialog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "views_overview_firststring", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "views_overview_formatactivitysummary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "views_overview_formatrelativetime", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "views_overview_humanizekind", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "views_overview_overview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "views_overview_projectcard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "views_overview_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview", "to": "views_overview_sentencecase", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview_humanizekind", "to": "views_overview_sentencecase", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview_activityfeeditem", "to": "views_overview_humanizekind", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview_formatactivitysummary", "to": "views_overview_firststring", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview_activityfeeditem", "to": "views_overview_formatactivitysummary", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview_activityfeeditem", "to": "views_overview_formatrelativetime", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview_activityfeeditem", "to": "views_overview_activityseverity", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview_activityfeeditem", "to": "views_overview_activityicon", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_overview_activityfeeditem", "to": "views_overview_activitynavtarget", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "views_plans_canvaselementview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "views_plans_canvasviewport", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "views_plans_commentspanel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "views_plans_connectionslayer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "views_plans_editelementinline", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "views_plans_element_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "views_plans_elementcolor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "views_plans_elementicon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "views_plans_newplancard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "views_plans_plan_statuses", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "views_plans_plancard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "views_plans_planeditor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "views_plans_planeditorheader", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "views_plans_plans", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "views_plans_planstatuskind", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "views_plans_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans", "to": "views_plans_viewportprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans_plancard", "to": "views_plans_planstatuskind", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans_planeditor", "to": "views_plans_planstatuskind", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans_planeditorheader", "to": "views_plans_planstatuskind", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_plans_canvaselementview", "to": "views_plans_elementcolor", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_providers", "to": "views_providers_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_providers", "to": "views_providers_providers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_providers", "to": "views_providers_providerwithmeta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "views_schedules_actions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "views_schedules_buildinitialstate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "views_schedules_composeschedule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "views_schedules_dow_options", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "views_schedules_editorstate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "views_schedules_formatnextrun", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "views_schedules_hour_options", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "views_schedules_humanizeschedule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "views_schedules_interval_units", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "views_schedules_minute_options", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "views_schedules_parsecronfields", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "views_schedules_parseintervalparts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "views_schedules_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "views_schedules_resulttagclass", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "views_schedules_scheduleeditormodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "views_schedules_schedules", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "views_schedules_timezones", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "views_schedules_todatetimelocal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "views_schedules_truncate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules", "to": "views_schedules_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules_buildinitialstate", "to": "views_schedules_parsecronfields", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules_humanizeschedule", "to": "views_schedules_parsecronfields", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules_buildinitialstate", "to": "views_schedules_parseintervalparts", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_schedules_buildinitialstate", "to": "views_schedules_todatetimelocal", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "views_settings_activitylogcard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "views_settings_font_families", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "views_settings_formatcountdown", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "views_settings_layouts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "views_settings_pairdevicecard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "views_settings_pairsession", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "views_settings_pkgstatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "views_settings_preset_themes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "views_settings_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "views_settings_settingsview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "views_settings_themes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings", "to": "views_settings_updatescard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_settings_pairdevicecard", "to": "views_settings_formatcountdown", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_skills", "to": "views_skills_icons", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_skills", "to": "views_skills_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_skills", "to": "views_skills_skill", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_skills", "to": "views_skills_skillcard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_skills", "to": "views_skills_skills", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "views_tasks_column", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "views_tasks_columns", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "views_tasks_formatduration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "views_tasks_kanbancolumn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "views_tasks_matchescolumn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "views_tasks_opensubmittaskmodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "views_tasks_opentaskdetail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "views_tasks_opentaskmodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "views_tasks_priorities", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "views_tasks_priority", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "views_tasks_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "views_tasks_sortkey", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "views_tasks_sorts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "views_tasks_taskcard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks", "to": "views_tasks_tasks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks_taskcard", "to": "views_tasks_formatduration", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "views_tasks_opentaskdetail", "to": "views_tasks_formatduration", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_ping", "to": "routes_ping_register", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_mod_security_test", "to": "tests_mod_security_test_freshtmp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_opencode_runner_test", "to": "tests_opencode_runner_test_has_opencode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_path_safe_test", "to": "tests_path_safe_test_fallback", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_path_safe_test", "to": "tests_path_safe_test_home", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_smoke_v2", "to": "tests_smoke_v2_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_smoke_v2", "to": "tests_smoke_v2_test", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_smoke_v2", "to": "tests_smoke_v2_tests", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_smoke_v2_main", "to": "tests_smoke_v2_test", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_tmux_wrap_test", "to": "tests_tmux_wrap_test_has_tmux", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_tmux_wrap_test", "to": "tests_tmux_wrap_test_killtmuxsession", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_tmux_wrap_test", "to": "tests_tmux_wrap_test_spawntmuxfor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig", "to": "tsconfig_compileroptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig", "to": "tsconfig_exclude", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig", "to": "tsconfig_include", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_allowsyntheticdefaultimports", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_esmoduleinterop", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_forceconsistentcasinginfilenames", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_isolatedmodules", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_jsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_lib", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_module", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_moduleresolution", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_nofallthroughcasesinswitch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_nounusedlocals", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_nounusedparameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_resolvejsonmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_skiplibcheck", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_strict", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_target", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_usedefineforclassfields", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "vite_config", "to": "vite_config_dirname", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}];
71
+ const LEGEND = [{"cid": 0, "color": "#4E79A7", "label": "Community 0", "count": 54}, {"cid": 1, "color": "#F28E2B", "label": "Community 1", "count": 40}, {"cid": 2, "color": "#E15759", "label": "Community 2", "count": 39}, {"cid": 3, "color": "#76B7B2", "label": "Community 3", "count": 35}, {"cid": 4, "color": "#59A14F", "label": "Community 4", "count": 34}, {"cid": 5, "color": "#EDC948", "label": "Community 5", "count": 29}, {"cid": 6, "color": "#B07AA1", "label": "Community 6", "count": 29}, {"cid": 7, "color": "#FF9DA7", "label": "Community 7", "count": 28}, {"cid": 8, "color": "#9C755F", "label": "Community 8", "count": 25}, {"cid": 9, "color": "#BAB0AC", "label": "Community 9", "count": 25}, {"cid": 10, "color": "#4E79A7", "label": "Community 10", "count": 24}, {"cid": 11, "color": "#F28E2B", "label": "Community 11", "count": 24}, {"cid": 12, "color": "#E15759", "label": "Community 12", "count": 24}, {"cid": 13, "color": "#76B7B2", "label": "Community 13", "count": 24}, {"cid": 14, "color": "#59A14F", "label": "Community 14", "count": 22}, {"cid": 15, "color": "#EDC948", "label": "Community 15", "count": 21}, {"cid": 16, "color": "#B07AA1", "label": "Community 16", "count": 21}, {"cid": 17, "color": "#FF9DA7", "label": "Community 17", "count": 21}, {"cid": 18, "color": "#9C755F", "label": "Community 18", "count": 26}, {"cid": 19, "color": "#BAB0AC", "label": "Community 19", "count": 21}, {"cid": 20, "color": "#4E79A7", "label": "Community 20", "count": 20}, {"cid": 21, "color": "#F28E2B", "label": "Community 21", "count": 19}, {"cid": 22, "color": "#E15759", "label": "Community 22", "count": 19}, {"cid": 23, "color": "#76B7B2", "label": "Community 23", "count": 19}, {"cid": 24, "color": "#59A14F", "label": "Community 24", "count": 18}, {"cid": 25, "color": "#EDC948", "label": "Community 25", "count": 18}, {"cid": 26, "color": "#B07AA1", "label": "Community 26", "count": 17}, {"cid": 27, "color": "#FF9DA7", "label": "Community 27", "count": 17}, {"cid": 28, "color": "#9C755F", "label": "Community 28", "count": 17}, {"cid": 29, "color": "#BAB0AC", "label": "Community 29", "count": 17}, {"cid": 30, "color": "#4E79A7", "label": "Community 30", "count": 16}, {"cid": 31, "color": "#F28E2B", "label": "Community 31", "count": 16}, {"cid": 32, "color": "#E15759", "label": "Community 32", "count": 16}, {"cid": 33, "color": "#76B7B2", "label": "Community 33", "count": 16}, {"cid": 34, "color": "#59A14F", "label": "Community 34", "count": 16}, {"cid": 35, "color": "#EDC948", "label": "Community 35", "count": 15}, {"cid": 36, "color": "#B07AA1", "label": "Community 36", "count": 15}, {"cid": 37, "color": "#FF9DA7", "label": "Community 37", "count": 15}, {"cid": 38, "color": "#9C755F", "label": "Community 38", "count": 14}, {"cid": 39, "color": "#BAB0AC", "label": "Community 39", "count": 14}, {"cid": 40, "color": "#4E79A7", "label": "Community 40", "count": 14}, {"cid": 41, "color": "#F28E2B", "label": "Community 41", "count": 14}, {"cid": 42, "color": "#E15759", "label": "Community 42", "count": 14}, {"cid": 43, "color": "#76B7B2", "label": "Community 43", "count": 14}, {"cid": 44, "color": "#59A14F", "label": "Community 44", "count": 14}, {"cid": 45, "color": "#EDC948", "label": "Community 45", "count": 14}, {"cid": 46, "color": "#B07AA1", "label": "Community 46", "count": 14}, {"cid": 47, "color": "#FF9DA7", "label": "Community 47", "count": 14}, {"cid": 48, "color": "#9C755F", "label": "Community 48", "count": 13}, {"cid": 49, "color": "#BAB0AC", "label": "Community 49", "count": 12}, {"cid": 50, "color": "#4E79A7", "label": "Community 50", "count": 12}, {"cid": 51, "color": "#F28E2B", "label": "Community 51", "count": 12}, {"cid": 52, "color": "#E15759", "label": "Community 52", "count": 11}, {"cid": 53, "color": "#76B7B2", "label": "Community 53", "count": 11}, {"cid": 54, "color": "#59A14F", "label": "Community 54", "count": 10}, {"cid": 55, "color": "#EDC948", "label": "Community 55", "count": 9}, {"cid": 56, "color": "#B07AA1", "label": "Community 56", "count": 9}, {"cid": 57, "color": "#FF9DA7", "label": "Community 57", "count": 9}, {"cid": 58, "color": "#9C755F", "label": "Community 58", "count": 9}, {"cid": 59, "color": "#BAB0AC", "label": "Community 59", "count": 9}, {"cid": 60, "color": "#4E79A7", "label": "Community 60", "count": 8}, {"cid": 61, "color": "#F28E2B", "label": "Community 61", "count": 8}, {"cid": 62, "color": "#E15759", "label": "Community 62", "count": 8}, {"cid": 63, "color": "#76B7B2", "label": "Community 63", "count": 7}, {"cid": 64, "color": "#59A14F", "label": "Community 64", "count": 7}, {"cid": 65, "color": "#EDC948", "label": "Community 65", "count": 5}, {"cid": 66, "color": "#B07AA1", "label": "Community 66", "count": 0}, {"cid": 67, "color": "#FF9DA7", "label": "Community 67", "count": 5}, {"cid": 68, "color": "#9C755F", "label": "Community 68", "count": 5}, {"cid": 69, "color": "#BAB0AC", "label": "Community 69", "count": 2}, {"cid": 70, "color": "#4E79A7", "label": "Community 70", "count": 2}, {"cid": 71, "color": "#F28E2B", "label": "Community 71", "count": 2}, {"cid": 72, "color": "#E15759", "label": "Community 72", "count": 1}, {"cid": 73, "color": "#76B7B2", "label": "Community 73", "count": 1}];
72
+
73
+ // HTML-escape helper — prevents XSS when injecting graph data into innerHTML
74
+ function esc(s) {
75
+ return String(s).replace(/&/g,'&amp;').replace(/</g,'&lt;').replace(/>/g,'&gt;').replace(/"/g,'&quot;').replace(/'/g,'&#39;');
76
+ }
77
+
78
+ // Build vis datasets
79
+ const nodesDS = new vis.DataSet(RAW_NODES.map(n => ({
80
+ id: n.id, label: n.label, color: n.color, size: n.size,
81
+ font: n.font, title: n.title,
82
+ _community: n.community, _community_name: n.community_name,
83
+ _source_file: n.source_file, _file_type: n.file_type, _degree: n.degree,
84
+ })));
85
+
86
+ const edgesDS = new vis.DataSet(RAW_EDGES.map((e, i) => ({
87
+ id: i, from: e.from, to: e.to,
88
+ label: '',
89
+ title: e.title,
90
+ dashes: e.dashes,
91
+ width: e.width,
92
+ color: e.color,
93
+ arrows: { to: { enabled: true, scaleFactor: 0.5 } },
94
+ })));
95
+
96
+ const container = document.getElementById('graph');
97
+ const network = new vis.Network(container, { nodes: nodesDS, edges: edgesDS }, {
98
+ physics: {
99
+ enabled: true,
100
+ solver: 'forceAtlas2Based',
101
+ forceAtlas2Based: {
102
+ gravitationalConstant: -60,
103
+ centralGravity: 0.005,
104
+ springLength: 120,
105
+ springConstant: 0.08,
106
+ damping: 0.4,
107
+ avoidOverlap: 0.8,
108
+ },
109
+ stabilization: { iterations: 200, fit: true },
110
+ },
111
+ interaction: {
112
+ hover: true,
113
+ tooltipDelay: 100,
114
+ hideEdgesOnDrag: true,
115
+ navigationButtons: false,
116
+ keyboard: false,
117
+ },
118
+ nodes: { shape: 'dot', borderWidth: 1.5 },
119
+ edges: { smooth: { type: 'continuous', roundness: 0.2 }, selectionWidth: 3 },
120
+ });
121
+
122
+ network.once('stabilizationIterationsDone', () => {
123
+ network.setOptions({ physics: { enabled: false } });
124
+ });
125
+
126
+ function showInfo(nodeId) {
127
+ const n = nodesDS.get(nodeId);
128
+ if (!n) return;
129
+ const neighborIds = network.getConnectedNodes(nodeId);
130
+ const neighborItems = neighborIds.map(nid => {
131
+ const nb = nodesDS.get(nid);
132
+ const color = nb ? nb.color.background : '#555';
133
+ return `<span class="neighbor-link" style="border-left-color:${esc(color)}" onclick="focusNode(${JSON.stringify(nid)})">${esc(nb ? nb.label : nid)}</span>`;
134
+ }).join('');
135
+ document.getElementById('info-content').innerHTML = `
136
+ <div class="field"><b>${esc(n.label)}</b></div>
137
+ <div class="field">Type: ${esc(n._file_type || 'unknown')}</div>
138
+ <div class="field">Community: ${esc(n._community_name)}</div>
139
+ <div class="field">Source: ${esc(n._source_file || '-')}</div>
140
+ <div class="field">Degree: ${n._degree}</div>
141
+ ${neighborIds.length ? `<div class="field" style="margin-top:8px;color:#aaa;font-size:11px">Neighbors (${neighborIds.length})</div><div id="neighbors-list">${neighborItems}</div>` : ''}
142
+ `;
143
+ }
144
+
145
+ function focusNode(nodeId) {
146
+ network.focus(nodeId, { scale: 1.4, animation: true });
147
+ network.selectNodes([nodeId]);
148
+ showInfo(nodeId);
149
+ }
150
+
151
+ // Track hovered node — hover detection is more reliable than click params
152
+ let hoveredNodeId = null;
153
+ network.on('hoverNode', params => {
154
+ hoveredNodeId = params.node;
155
+ container.style.cursor = 'pointer';
156
+ });
157
+ network.on('blurNode', () => {
158
+ hoveredNodeId = null;
159
+ container.style.cursor = 'default';
160
+ });
161
+ container.addEventListener('click', () => {
162
+ if (hoveredNodeId !== null) {
163
+ showInfo(hoveredNodeId);
164
+ network.selectNodes([hoveredNodeId]);
165
+ }
166
+ });
167
+ network.on('click', params => {
168
+ if (params.nodes.length > 0) {
169
+ showInfo(params.nodes[0]);
170
+ } else if (hoveredNodeId === null) {
171
+ document.getElementById('info-content').innerHTML = '<span class="empty">Click a node to inspect it</span>';
172
+ }
173
+ });
174
+
175
+ const searchInput = document.getElementById('search');
176
+ const searchResults = document.getElementById('search-results');
177
+ searchInput.addEventListener('input', () => {
178
+ const q = searchInput.value.toLowerCase().trim();
179
+ searchResults.innerHTML = '';
180
+ if (!q) { searchResults.style.display = 'none'; return; }
181
+ const matches = RAW_NODES.filter(n => n.label.toLowerCase().includes(q)).slice(0, 20);
182
+ if (!matches.length) { searchResults.style.display = 'none'; return; }
183
+ searchResults.style.display = 'block';
184
+ matches.forEach(n => {
185
+ const el = document.createElement('div');
186
+ el.className = 'search-item';
187
+ el.textContent = n.label;
188
+ el.style.borderLeft = `3px solid ${n.color.background}`;
189
+ el.style.paddingLeft = '8px';
190
+ el.onclick = () => {
191
+ network.focus(n.id, { scale: 1.5, animation: true });
192
+ network.selectNodes([n.id]);
193
+ showInfo(n.id);
194
+ searchResults.style.display = 'none';
195
+ searchInput.value = '';
196
+ };
197
+ searchResults.appendChild(el);
198
+ });
199
+ });
200
+ document.addEventListener('click', e => {
201
+ if (!searchResults.contains(e.target) && e.target !== searchInput)
202
+ searchResults.style.display = 'none';
203
+ });
204
+
205
+ const hiddenCommunities = new Set();
206
+
207
+ const selectAllCb = document.getElementById('select-all-cb');
208
+
209
+ function updateSelectAllState() {
210
+ const total = LEGEND.length;
211
+ const hidden = hiddenCommunities.size;
212
+ selectAllCb.checked = hidden === 0;
213
+ selectAllCb.indeterminate = hidden > 0 && hidden < total;
214
+ }
215
+
216
+ function toggleAllCommunities(hide) {
217
+ document.querySelectorAll('.legend-item').forEach(item => {
218
+ hide ? item.classList.add('dimmed') : item.classList.remove('dimmed');
219
+ });
220
+ document.querySelectorAll('.legend-cb').forEach(cb => {
221
+ cb.checked = !hide;
222
+ });
223
+ LEGEND.forEach(c => {
224
+ if (hide) hiddenCommunities.add(c.cid); else hiddenCommunities.delete(c.cid);
225
+ });
226
+ const updates = RAW_NODES.map(n => ({ id: n.id, hidden: hide }));
227
+ nodesDS.update(updates);
228
+ updateSelectAllState();
229
+ }
230
+
231
+ const legendEl = document.getElementById('legend');
232
+ LEGEND.forEach(c => {
233
+ const item = document.createElement('div');
234
+ item.className = 'legend-item';
235
+ const cb = document.createElement('input');
236
+ cb.type = 'checkbox';
237
+ cb.className = 'legend-cb';
238
+ cb.checked = true;
239
+ cb.addEventListener('change', (e) => {
240
+ e.stopPropagation();
241
+ if (cb.checked) {
242
+ hiddenCommunities.delete(c.cid);
243
+ item.classList.remove('dimmed');
244
+ } else {
245
+ hiddenCommunities.add(c.cid);
246
+ item.classList.add('dimmed');
247
+ }
248
+ const updates = RAW_NODES
249
+ .filter(n => n.community === c.cid)
250
+ .map(n => ({ id: n.id, hidden: !cb.checked }));
251
+ nodesDS.update(updates);
252
+ updateSelectAllState();
253
+ });
254
+ item.innerHTML = `<div class="legend-dot" style="background:${c.color}"></div>
255
+ <span class="legend-label">${c.label}</span>
256
+ <span class="legend-count">${c.count}</span>`;
257
+ item.prepend(cb);
258
+ item.onclick = (e) => {
259
+ if (e.target === cb) return;
260
+ cb.checked = !cb.checked;
261
+ cb.dispatchEvent(new Event('change'));
262
+ };
263
+ legendEl.appendChild(item);
264
+ });
265
+ </script>
266
+ <script>
267
+ // Render hyperedges as shaded regions
268
+ const hyperedges = [];
269
+ // afterDrawing passes ctx already transformed to network coordinate space.
270
+ // Draw node positions raw — no manual pan/zoom/DPR math needed.
271
+ network.on('afterDrawing', function(ctx) {
272
+ hyperedges.forEach(h => {
273
+ const positions = h.nodes
274
+ .map(nid => network.getPositions([nid])[nid])
275
+ .filter(p => p !== undefined);
276
+ if (positions.length < 2) return;
277
+ ctx.save();
278
+ ctx.globalAlpha = 0.12;
279
+ ctx.fillStyle = '#6366f1';
280
+ ctx.strokeStyle = '#6366f1';
281
+ ctx.lineWidth = 2;
282
+ ctx.beginPath();
283
+ // Centroid and expanded hull in network coordinates
284
+ const cx = positions.reduce((s, p) => s + p.x, 0) / positions.length;
285
+ const cy = positions.reduce((s, p) => s + p.y, 0) / positions.length;
286
+ const expanded = positions.map(p => ({
287
+ x: cx + (p.x - cx) * 1.15,
288
+ y: cy + (p.y - cy) * 1.15
289
+ }));
290
+ ctx.moveTo(expanded[0].x, expanded[0].y);
291
+ expanded.slice(1).forEach(p => ctx.lineTo(p.x, p.y));
292
+ ctx.closePath();
293
+ ctx.fill();
294
+ ctx.globalAlpha = 0.4;
295
+ ctx.stroke();
296
+ // Label
297
+ ctx.globalAlpha = 0.8;
298
+ ctx.fillStyle = '#4f46e5';
299
+ ctx.font = 'bold 11px sans-serif';
300
+ ctx.textAlign = 'center';
301
+ ctx.fillText(h.label, cx, cy - 5);
302
+ ctx.restore();
303
+ });
304
+ });
305
+ </script>
306
+ </body>
307
+ </html>