mirror of
https://github.com/J3vb/OwnCord.git
synced 2026-09-03 03:50:00 +03:00
* chore: track the graphify knowledge graph and the bug-hunt ledger Both were local-only, so a clone — including a cloud session, which sees only tracked files — started with no graph and no findings history. graphify-out/: the top-level built graph is now tracked so a fresh clone can query it without a rebuild. Subdirectories stay ignored: cache/ is a per-machine AST cache, and graphify parks the previous graph in a dated YYYY-MM-DD/ backup on every rebuild (18 MB of stale duplicate, a local rollback aid rather than shared state). .gitattributes marks the tree -text: the repo-wide `* text=auto eol=lf` rule would otherwise rewrite line endings inside .graphify_labels.json.sig, which signs the labels byte-for-byte, and invalidate the signature on checkout. graph.json/graph.html also get -diff, and the tree is linguist-generated so it stays out of language stats and collapses in review. .superpowers/: findings-ledger.json, its FINDINGS.md render and render-ledger.mjs are tracked so contributors can add findings by PR. Hunt transcripts, .bak snapshots and debris patches remain per-session scratch. Tradeoff accepted deliberately: the post-commit rebuild hook rewrites graph.json, so each refresh writes a fresh ~18 MB blob into history. Refresh it in its own commit rather than folding it into an unrelated diff. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> * chore(graphify): refresh the graph over the newly-tracked files The first commit added findings-ledger.json, FINDINGS.md and render-ledger.mjs to the tracked tree, so the post-commit rebuild picked them up and rewrote the graph. Also ignores .pending_changes, the transient rebuild-state file. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> * chore(graphify): share the PreToolUse graph-first nudge hooks The two hook-guard hooks lived in the gitignored settings.local.json with an absolute C:/Users path, so no other clone got them. Portable form: bare `graphify` off PATH, and `|| exit 0` so a contributor without graphify installed is never blocked. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> * Update graph output files and manifest - Updated binary files: graph.html and graph.json with new content. - Added new entry for findings-ledger.json in manifest.json with updated metadata. --------- Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
320 lines
518 KiB
HTML
Generated
320 lines
518 KiB
HTML
Generated
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>graphify - graphify-out/graph.html</title>
|
|
<script src="https://unpkg.com/vis-network@9.1.6/standalone/umd/vis-network.min.js"
|
|
integrity="sha384-Ux6phic9PEHJ38YtrijhkzyJ8yQlH8i/+buBR8s3mAZOJrP1gwyvAcIYl3GWtpX1"
|
|
crossorigin="anonymous"></script>
|
|
<style>
|
|
* { box-sizing: border-box; margin: 0; padding: 0; }
|
|
body { background: #0f0f1a; color: #e0e0e0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; display: flex; height: 100vh; overflow: hidden; }
|
|
#graph { flex: 1; }
|
|
#sidebar { width: 280px; background: #1a1a2e; border-left: 1px solid #2a2a4e; display: flex; flex-direction: column; overflow: hidden; }
|
|
#search-wrap { padding: 12px; border-bottom: 1px solid #2a2a4e; }
|
|
#search { width: 100%; background: #0f0f1a; border: 1px solid #3a3a5e; color: #e0e0e0; padding: 7px 10px; border-radius: 6px; font-size: 13px; outline: none; }
|
|
#search:focus { border-color: #4E79A7; }
|
|
#search-results { max-height: 140px; overflow-y: auto; padding: 4px 12px; border-bottom: 1px solid #2a2a4e; display: none; }
|
|
.search-item { padding: 4px 6px; cursor: pointer; border-radius: 4px; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
|
.search-item:hover { background: #2a2a4e; }
|
|
#info-panel { padding: 14px; border-bottom: 1px solid #2a2a4e; min-height: 140px; }
|
|
#info-panel h3 { font-size: 13px; color: #aaa; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
|
|
#info-content { font-size: 13px; color: #ccc; line-height: 1.6; }
|
|
#info-content .field { margin-bottom: 5px; }
|
|
#info-content .field b { color: #e0e0e0; }
|
|
#info-content .empty { color: #555; font-style: italic; }
|
|
.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; }
|
|
.neighbor-link:hover { background: #2a2a4e; }
|
|
#neighbors-list { max-height: 160px; overflow-y: auto; margin-top: 4px; }
|
|
#legend-wrap { flex: 1; overflow-y: auto; padding: 12px; }
|
|
#legend-wrap h3 { font-size: 13px; color: #aaa; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
|
|
.legend-item { display: flex; align-items: center; gap: 8px; padding: 4px 0; cursor: pointer; border-radius: 4px; font-size: 12px; }
|
|
.legend-item:hover { background: #2a2a4e; padding-left: 4px; }
|
|
.legend-item.dimmed { opacity: 0.35; }
|
|
.legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
|
|
.legend-label { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
.legend-count { color: #666; font-size: 11px; }
|
|
#stats { padding: 10px 14px; border-top: 1px solid #2a2a4e; font-size: 11px; color: #555; }
|
|
#legend-controls { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; padding: 4px 0; }
|
|
#legend-controls label { display: flex; align-items: center; gap: 6px; cursor: pointer; font-size: 12px; color: #aaa; user-select: none; }
|
|
#legend-controls label:hover { color: #e0e0e0; }
|
|
.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; }
|
|
.legend-cb:checked, #select-all-cb:checked { background: #4E79A7; border-color: #4E79A7; }
|
|
.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); }
|
|
#select-all-cb:indeterminate { background: #4E79A7; border-color: #4E79A7; }
|
|
#select-all-cb:indeterminate::after { content: ''; position: absolute; left: 2px; top: 5px; width: 8px; height: 2px; background: #fff; border: none; transform: none; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="graph"></div>
|
|
<div id="sidebar">
|
|
<div id="search-wrap">
|
|
<input id="search" type="text" placeholder="Search nodes..." autocomplete="off">
|
|
<div id="search-results"></div>
|
|
</div>
|
|
<div id="info-panel">
|
|
<h3>Node Info</h3>
|
|
<div id="info-content"><span class="empty">Click a node to inspect it</span></div>
|
|
</div>
|
|
<div id="legend-wrap">
|
|
<h3>Communities</h3>
|
|
<div id="legend-controls">
|
|
<label><input type="checkbox" id="select-all-cb" checked onchange="toggleAllCommunities(!this.checked)">Select All</label>
|
|
</div>
|
|
<div id="legend"></div>
|
|
</div>
|
|
<div id="stats">529 nodes · 1449 edges · 529 communities</div>
|
|
</div>
|
|
<script>
|
|
const RAW_NODES = [{"id": "0", "label": "members.store.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 21.3, "font": {"size": 12, "color": "#ffffff"}, "title": "members.store.ts", "community": 0, "community_name": "members.store.ts", "source_file": "", "file_type": "", "degree": 12}, {"id": "1", "label": "createElement", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 37.2, "font": {"size": 12, "color": "#ffffff"}, "title": "createElement", "community": 1, "community_name": "createElement", "source_file": "", "file_type": "", "degree": 24}, {"id": "2", "label": "testing.T", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 30.4, "font": {"size": 12, "color": "#ffffff"}, "title": "testing.T", "community": 2, "community_name": "testing.T", "source_file": "", "file_type": "", "degree": 137}, {"id": "3", "label": "livekitSession.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 40.0, "font": {"size": 12, "color": "#ffffff"}, "title": "livekitSession.ts", "community": 3, "community_name": "livekitSession.ts", "source_file": "", "file_type": "", "degree": 23}, {"id": "4", "label": "dispatcher.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 31.1, "font": {"size": 12, "color": "#ffffff"}, "title": "dispatcher.ts", "community": 4, "community_name": "dispatcher.ts", "source_file": "", "file_type": "", "degree": 18}, {"id": "5", "label": "openMigratedMemory", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 30.7, "font": {"size": 12, "color": "#ffffff"}, "title": "openMigratedMemory", "community": 5, "community_name": "openMigratedMemory", "source_file": "", "file_type": "", "degree": 6}, {"id": "6", "label": "context.Context", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 30.7, "font": {"size": 12, "color": "#ffffff"}, "title": "context.Context", "community": 6, "community_name": "context.Context", "source_file": "", "file_type": "", "degree": 89}, {"id": "7", "label": "buildChannelRouter", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 25.6, "font": {"size": 12, "color": "#ffffff"}, "title": "buildChannelRouter", "community": 7, "community_name": "buildChannelRouter", "source_file": "", "file_type": "", "degree": 10}, {"id": "8", "label": "MessageInput.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 21.7, "font": {"size": 12, "color": "#ffffff"}, "title": "MessageInput.ts", "community": 8, "community_name": "MessageInput.ts", "source_file": "", "file_type": "", "degree": 10}, {"id": "9", "label": "attachments.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 25.1, "font": {"size": 12, "color": "#ffffff"}, "title": "attachments.ts", "community": 9, "community_name": "attachments.ts", "source_file": "", "file_type": "", "degree": 12}, {"id": "10", "label": "telemetry.go", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 23.9, "font": {"size": 12, "color": "#ffffff"}, "title": "telemetry.go", "community": 10, "community_name": "telemetry.go", "source_file": "", "file_type": "", "degree": 21}, {"id": "11", "label": "waitRegistered", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 24.3, "font": {"size": 12, "color": "#ffffff"}, "title": "waitRegistered", "community": 11, "community_name": "waitRegistered", "source_file": "", "file_type": "", "degree": 19}, {"id": "12", "label": "types.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 23.1, "font": {"size": 12, "color": "#ffffff"}, "title": "types.ts", "community": 12, "community_name": "types.ts", "source_file": "", "file_type": "", "degree": 14}, {"id": "13", "label": "NewAdminAPI", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 22.0, "font": {"size": 12, "color": "#ffffff"}, "title": "NewAdminAPI", "community": 13, "community_name": "NewAdminAPI", "source_file": "", "file_type": "", "degree": 25}, {"id": "14", "label": "Fixed", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 25.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Fixed", "community": 14, "community_name": "Fixed", "source_file": "", "file_type": "", "degree": 1}, {"id": "15", "label": "messages_test.go", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 17.7, "font": {"size": 12, "color": "#ffffff"}, "title": "messages_test.go", "community": 15, "community_name": "messages_test.go", "source_file": "", "file_type": "", "degree": 19}, {"id": "16", "label": "main.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 22.2, "font": {"size": 12, "color": "#ffffff"}, "title": "main.ts", "community": 16, "community_name": "main.ts", "source_file": "", "file_type": "", "degree": 20}, {"id": "17", "label": "net/http.HandlerFunc", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 17.9, "font": {"size": 12, "color": "#ffffff"}, "title": "net/http.HandlerFunc", "community": 17, "community_name": "net/http.HandlerFunc", "source_file": "", "file_type": "", "degree": 27}, {"id": "18", "label": "NewTestClient", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 19.6, "font": {"size": 12, "color": "#ffffff"}, "title": "NewTestClient", "community": 18, "community_name": "NewTestClient", "source_file": "", "file_type": "", "degree": 24}, {"id": "19", "label": "newHandlerHub", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 20.2, "font": {"size": 12, "color": "#ffffff"}, "title": "newHandlerHub", "community": 19, "community_name": "newHandlerHub", "source_file": "", "file_type": "", "degree": 14}, {"id": "20", "label": "livekitE2EE.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.1, "font": {"size": 12, "color": "#ffffff"}, "title": "livekitE2EE.ts", "community": 20, "community_name": "livekitE2EE.ts", "source_file": "", "file_type": "", "degree": 10}, {"id": "21", "label": "drainChanTimeout", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 19.7, "font": {"size": 12, "color": "#ffffff"}, "title": "drainChanTimeout", "community": 21, "community_name": "drainChanTimeout", "source_file": "", "file_type": "", "degree": 14}, {"id": "22", "label": "buildDMRouter", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 19.3, "font": {"size": 12, "color": "#ffffff"}, "title": "buildDMRouter", "community": 22, "community_name": "buildDMRouter", "source_file": "", "file_type": "", "degree": 12}, {"id": "23", "label": "tofu.rs", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 19.2, "font": {"size": 12, "color": "#ffffff"}, "title": "tofu.rs", "community": 23, "community_name": "tofu.rs", "source_file": "", "file_type": "", "degree": 3}, {"id": "24", "label": "newAuthTestDB", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 19.1, "font": {"size": 12, "color": "#ffffff"}, "title": "newAuthTestDB", "community": 24, "community_name": "newAuthTestDB", "source_file": "", "file_type": "", "degree": 15}, {"id": "25", "label": "newMigratedTestDB", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 18.4, "font": {"size": 12, "color": "#ffffff"}, "title": "newMigratedTestDB", "community": 25, "community_name": "newMigratedTestDB", "source_file": "", "file_type": "", "degree": 5}, {"id": "26", "label": "time.Time", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 17.8, "font": {"size": 12, "color": "#ffffff"}, "title": "time.Time", "community": 26, "community_name": "time.Time", "source_file": "", "file_type": "", "degree": 21}, {"id": "27", "label": "Config", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Config", "community": 27, "community_name": "Config", "source_file": "", "file_type": "", "degree": 12}, {"id": "28", "label": "secret_store.rs", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 17.8, "font": {"size": 12, "color": "#ffffff"}, "title": "secret_store.rs", "community": 28, "community_name": "secret_store.rs", "source_file": "", "file_type": "", "degree": 0}, {"id": "29", "label": "User", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 16.7, "font": {"size": 12, "color": "#ffffff"}, "title": "User", "community": 29, "community_name": "User", "source_file": "", "file_type": "", "degree": 38}, {"id": "30", "label": "database/sql.Result", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 18.6, "font": {"size": 12, "color": "#ffffff"}, "title": "database/sql.Result", "community": 30, "community_name": "database/sql.Result", "source_file": "", "file_type": "", "degree": 11}, {"id": "31", "label": "newUploadTestDB", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 17.7, "font": {"size": 12, "color": "#ffffff"}, "title": "newUploadTestDB", "community": 31, "community_name": "newUploadTestDB", "source_file": "", "file_type": "", "degree": 18}, {"id": "32", "label": "MainPage.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 31.8, "font": {"size": 12, "color": "#ffffff"}, "title": "MainPage.ts", "community": 32, "community_name": "MainPage.ts", "source_file": "", "file_type": "", "degree": 19}, {"id": "33", "label": "writeJSON", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "writeJSON", "community": 33, "community_name": "writeJSON", "source_file": "", "file_type": "", "degree": 32}, {"id": "34", "label": "newAdminTestDB", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 17.4, "font": {"size": 12, "color": "#ffffff"}, "title": "newAdminTestDB", "community": 34, "community_name": "newAdminTestDB", "source_file": "", "file_type": "", "degree": 8}, {"id": "35", "label": "HashToken", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "HashToken", "community": 35, "community_name": "HashToken", "source_file": "", "file_type": "", "degree": 50}, {"id": "36", "label": "content-parser.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 31.6, "font": {"size": 12, "color": "#ffffff"}, "title": "content-parser.ts", "community": 36, "community_name": "content-parser.ts", "source_file": "", "file_type": "", "degree": 17}, {"id": "37", "label": "ChannelSidebar.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 22.4, "font": {"size": 12, "color": "#ffffff"}, "title": "ChannelSidebar.ts", "community": 37, "community_name": "ChannelSidebar.ts", "source_file": "", "file_type": "", "degree": 15}, {"id": "38", "label": "plugin/registry_test.go", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.1, "font": {"size": 12, "color": "#ffffff"}, "title": "plugin/registry_test.go", "community": 38, "community_name": "plugin/registry_test.go", "source_file": "", "file_type": "", "degree": 3}, {"id": "39", "label": "DB", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 18.0, "font": {"size": 12, "color": "#ffffff"}, "title": "DB", "community": 39, "community_name": "DB", "source_file": "", "file_type": "", "degree": 93}, {"id": "40", "label": "Instance", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Instance", "community": 40, "community_name": "Instance", "source_file": "", "file_type": "", "degree": 6}, {"id": "41", "label": "livekit_test.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.9, "font": {"size": 12, "color": "#ffffff"}, "title": "livekit_test.go", "community": 41, "community_name": "livekit_test.go", "source_file": "", "file_type": "", "degree": 16}, {"id": "42", "label": "NewChecker", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "NewChecker", "community": 42, "community_name": "NewChecker", "source_file": "", "file_type": "", "degree": 33}, {"id": "43", "label": "middleware_test.go", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.4, "font": {"size": 12, "color": "#ffffff"}, "title": "middleware_test.go", "community": 43, "community_name": "middleware_test.go", "source_file": "", "file_type": "", "degree": 20}, {"id": "44", "label": "authStore", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 24.7, "font": {"size": 12, "color": "#ffffff"}, "title": "authStore", "community": 44, "community_name": "authStore", "source_file": "", "file_type": "", "degree": 19}, {"id": "45", "label": "DB", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "DB", "community": 45, "community_name": "DB", "source_file": "", "file_type": "", "degree": 19}, {"id": "46", "label": "testing.F", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.6, "font": {"size": 12, "color": "#ffffff"}, "title": "testing.F", "community": 46, "community_name": "testing.F", "source_file": "", "file_type": "", "degree": 22}, {"id": "47", "label": "Result", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 16.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Result", "community": 47, "community_name": "Result", "source_file": "", "file_type": "", "degree": 25}, {"id": "48", "label": "livekit_proxy.rs", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 16.0, "font": {"size": 12, "color": "#ffffff"}, "title": "livekit_proxy.rs", "community": 48, "community_name": "livekit_proxy.rs", "source_file": "", "file_type": "", "degree": 1}, {"id": "49", "label": "native/helpers.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "native/helpers.ts", "community": 49, "community_name": "native/helpers.ts", "source_file": "", "file_type": "", "degree": 0}, {"id": "50", "label": "NewRouter", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "NewRouter", "community": 50, "community_name": "NewRouter", "source_file": "", "file_type": "", "degree": 32}, {"id": "51", "label": "net/http.Handler", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "net/http.Handler", "community": 51, "community_name": "net/http.Handler", "source_file": "", "file_type": "", "degree": 32}, {"id": "52", "label": "totp_test.go", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "totp_test.go", "community": 52, "community_name": "totp_test.go", "source_file": "", "file_type": "", "degree": 6}, {"id": "53", "label": "newTestDB", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 18.9, "font": {"size": 12, "color": "#ffffff"}, "title": "newTestDB", "community": 53, "community_name": "newTestDB", "source_file": "", "file_type": "", "degree": 5}, {"id": "54", "label": "createLogger", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.2, "font": {"size": 12, "color": "#ffffff"}, "title": "createLogger", "community": 54, "community_name": "createLogger", "source_file": "", "file_type": "", "degree": 20}, {"id": "55", "label": "newServeHub", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.2, "font": {"size": 12, "color": "#ffffff"}, "title": "newServeHub", "community": 55, "community_name": "newServeHub", "source_file": "", "file_type": "", "degree": 10}, {"id": "56", "label": "OwnCord \u2014 Comprehensive Project Audit", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.1, "font": {"size": 12, "color": "#ffffff"}, "title": "OwnCord \u2014 Comprehensive Project Audit", "community": 56, "community_name": "OwnCord \u2014 Comprehensive Project Audit", "source_file": "", "file_type": "", "degree": 2}, {"id": "57", "label": "permissions_test.go", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "permissions_test.go", "community": 57, "community_name": "permissions_test.go", "source_file": "", "file_type": "", "degree": 19}, {"id": "58", "label": "seedMemberUser", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.2, "font": {"size": 12, "color": "#ffffff"}, "title": "seedMemberUser", "community": 58, "community_name": "seedMemberUser", "source_file": "", "file_type": "", "degree": 10}, {"id": "59", "label": "postJSONWithToken", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.1, "font": {"size": 12, "color": "#ffffff"}, "title": "postJSONWithToken", "community": 59, "community_name": "postJSONWithToken", "source_file": "", "file_type": "", "degree": 11}, {"id": "60", "label": "http_proxy.rs", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.8, "font": {"size": 12, "color": "#ffffff"}, "title": "http_proxy.rs", "community": 60, "community_name": "http_proxy.rs", "source_file": "", "file_type": "", "degree": 1}, {"id": "61", "label": "newVoiceTestDB", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.8, "font": {"size": 12, "color": "#ffffff"}, "title": "newVoiceTestDB", "community": 61, "community_name": "newVoiceTestDB", "source_file": "", "file_type": "", "degree": 4}, {"id": "62", "label": "messages.go", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 16.0, "font": {"size": 12, "color": "#ffffff"}, "title": "messages.go", "community": 62, "community_name": "messages.go", "source_file": "", "file_type": "", "degree": 22}, {"id": "63", "label": "dbgen/models.go", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.6, "font": {"size": 12, "color": "#ffffff"}, "title": "dbgen/models.go", "community": 63, "community_name": "dbgen/models.go", "source_file": "", "file_type": "", "degree": 6}, {"id": "64", "label": "ProfileManager", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "ProfileManager", "community": 64, "community_name": "ProfileManager", "source_file": "", "file_type": "", "degree": 2}, {"id": "65", "label": "README.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "README.md", "community": 65, "community_name": "README.md", "source_file": "", "file_type": "", "degree": 29}, {"id": "66", "label": "devDependencies", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.7, "font": {"size": 12, "color": "#ffffff"}, "title": "devDependencies", "community": 66, "community_name": "devDependencies", "source_file": "", "file_type": "", "degree": 4}, {"id": "67", "label": "itoa", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.4, "font": {"size": 12, "color": "#ffffff"}, "title": "itoa", "community": 67, "community_name": "itoa", "source_file": "", "file_type": "", "degree": 11}, {"id": "68", "label": "helpers_test.go", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.4, "font": {"size": 12, "color": "#ffffff"}, "title": "helpers_test.go", "community": 68, "community_name": "helpers_test.go", "source_file": "", "file_type": "", "degree": 14}, {"id": "69", "label": "ChannelService", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.9, "font": {"size": 12, "color": "#ffffff"}, "title": "ChannelService", "community": 69, "community_name": "ChannelService", "source_file": "", "file_type": "", "degree": 18}, {"id": "70", "label": "Security Policy", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Security Policy", "community": 70, "community_name": "Security Policy", "source_file": "", "file_type": "", "degree": 1}, {"id": "71", "label": "Role", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Role", "community": 71, "community_name": "Role", "source_file": "", "file_type": "", "degree": 35}, {"id": "72", "label": "channels.sql.go", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.2, "font": {"size": 12, "color": "#ffffff"}, "title": "channels.sql.go", "community": 72, "community_name": "channels.sql.go", "source_file": "", "file_type": "", "degree": 2}, {"id": "73", "label": "Deployment Guide", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Deployment Guide", "community": 73, "community_name": "Deployment Guide", "source_file": "", "file_type": "", "degree": 1}, {"id": "74", "label": "livekit_proxy_test.go", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.1, "font": {"size": 12, "color": "#ffffff"}, "title": "livekit_proxy_test.go", "community": 74, "community_name": "livekit_proxy_test.go", "source_file": "", "file_type": "", "degree": 14}, {"id": "75", "label": "newEmojiService", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.1, "font": {"size": 12, "color": "#ffffff"}, "title": "newEmojiService", "community": 75, "community_name": "newEmojiService", "source_file": "", "file_type": "", "degree": 17}, {"id": "76", "label": "ws_proxy.rs", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.1, "font": {"size": 12, "color": "#ffffff"}, "title": "ws_proxy.rs", "community": 76, "community_name": "ws_proxy.rs", "source_file": "", "file_type": "", "degree": 1}, {"id": "77", "label": "bughunt.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.1, "font": {"size": 12, "color": "#ffffff"}, "title": "bughunt.js", "community": 77, "community_name": "bughunt.js", "source_file": "", "file_type": "", "degree": 0}, {"id": "78", "label": "openAdminTestDB", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.1, "font": {"size": 12, "color": "#ffffff"}, "title": "openAdminTestDB", "community": 78, "community_name": "openAdminTestDB", "source_file": "", "file_type": "", "degree": 22}, {"id": "79", "label": "db/db.go", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "db/db.go", "community": 79, "community_name": "db/db.go", "source_file": "", "file_type": "", "degree": 8}, {"id": "80", "label": "Tables", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Tables", "community": 80, "community_name": "Tables", "source_file": "", "file_type": "", "degree": 1}, {"id": "81", "label": "newMentionFixture", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.0, "font": {"size": 12, "color": "#ffffff"}, "title": "newMentionFixture", "community": 81, "community_name": "newMentionFixture", "source_file": "", "file_type": "", "degree": 10}, {"id": "82", "label": "Channel", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Channel", "community": 82, "community_name": "Channel", "source_file": "", "file_type": "", "degree": 20}, {"id": "83", "label": "NewWAFMiddlewareCRS", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.2, "font": {"size": 12, "color": "#ffffff"}, "title": "NewWAFMiddlewareCRS", "community": 83, "community_name": "NewWAFMiddlewareCRS", "source_file": "", "file_type": "", "degree": 5}, {"id": "84", "label": "E2EEManager", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.2, "font": {"size": 12, "color": "#ffffff"}, "title": "E2EEManager", "community": 84, "community_name": "E2EEManager", "source_file": "", "file_type": "", "degree": 3}, {"id": "85", "label": "storage_test.go", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "storage_test.go", "community": 85, "community_name": "storage_test.go", "source_file": "", "file_type": "", "degree": 6}, {"id": "86", "label": "Migrate", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Migrate", "community": 86, "community_name": "Migrate", "source_file": "", "file_type": "", "degree": 31}, {"id": "87", "label": "Hub", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Hub", "community": 87, "community_name": "Hub", "source_file": "", "file_type": "", "degree": 32}, {"id": "88", "label": "chdirTemp", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.7, "font": {"size": 12, "color": "#ffffff"}, "title": "chdirTemp", "community": 88, "community_name": "chdirTemp", "source_file": "", "file_type": "", "degree": 10}, {"id": "89", "label": "AppearanceTab.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.1, "font": {"size": 12, "color": "#ffffff"}, "title": "AppearanceTab.ts", "community": 89, "community_name": "AppearanceTab.ts", "source_file": "", "file_type": "", "degree": 5}, {"id": "90", "label": "updater_test.go", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.9, "font": {"size": 12, "color": "#ffffff"}, "title": "updater_test.go", "community": 90, "community_name": "updater_test.go", "source_file": "", "file_type": "", "degree": 12}, {"id": "91", "label": "newTestMessageService", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.6, "font": {"size": 12, "color": "#ffffff"}, "title": "newTestMessageService", "community": 91, "community_name": "newTestMessageService", "source_file": "", "file_type": "", "degree": 6}, {"id": "92", "label": "textAssetServer", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 12, "color": "#ffffff"}, "title": "textAssetServer", "community": 92, "community_name": "textAssetServer", "source_file": "", "file_type": "", "degree": 11}, {"id": "93", "label": "Hub", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Hub", "community": 93, "community_name": "Hub", "source_file": "", "file_type": "", "degree": 16}, {"id": "94", "label": "compilerOptions", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.5, "font": {"size": 12, "color": "#ffffff"}, "title": "compilerOptions", "community": 94, "community_name": "compilerOptions", "source_file": "", "file_type": "", "degree": 0}, {"id": "95", "label": "NewEventRingBuffer", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.0, "font": {"size": 12, "color": "#ffffff"}, "title": "NewEventRingBuffer", "community": 95, "community_name": "NewEventRingBuffer", "source_file": "", "file_type": "", "degree": 5}, {"id": "96", "label": "HandlerRegistry", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.9, "font": {"size": 12, "color": "#ffffff"}, "title": "HandlerRegistry", "community": 96, "community_name": "HandlerRegistry", "source_file": "", "file_type": "", "degree": 12}, {"id": "97", "label": "emoji_handler_test.go", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.7, "font": {"size": 12, "color": "#ffffff"}, "title": "emoji_handler_test.go", "community": 97, "community_name": "emoji_handler_test.go", "source_file": "", "file_type": "", "degree": 12}, {"id": "98", "label": "handleCreateEmoji", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.2, "font": {"size": 12, "color": "#ffffff"}, "title": "handleCreateEmoji", "community": 98, "community_name": "handleCreateEmoji", "source_file": "", "file_type": "", "degree": 21}, {"id": "99", "label": "doRequest", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.1, "font": {"size": 12, "color": "#ffffff"}, "title": "doRequest", "community": 99, "community_name": "doRequest", "source_file": "", "file_type": "", "degree": 14}, {"id": "100", "label": "audioPipeline.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.6, "font": {"size": 12, "color": "#ffffff"}, "title": "audioPipeline.ts", "community": 100, "community_name": "audioPipeline.ts", "source_file": "", "file_type": "", "degree": 6}, {"id": "101", "label": "LoadOrGenerate", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.9, "font": {"size": 12, "color": "#ffffff"}, "title": "LoadOrGenerate", "community": 101, "community_name": "LoadOrGenerate", "source_file": "", "file_type": "", "degree": 6}, {"id": "102", "label": "Auth Endpoints", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Auth Endpoints", "community": 102, "community_name": "Auth Endpoints", "source_file": "", "file_type": "", "degree": 1}, {"id": "103", "label": "MigrateFS", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.2, "font": {"size": 12, "color": "#ffffff"}, "title": "MigrateFS", "community": 103, "community_name": "MigrateFS", "source_file": "", "file_type": "", "degree": 24}, {"id": "104", "label": "newOverrideFixture", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "newOverrideFixture", "community": 104, "community_name": "newOverrideFixture", "source_file": "", "file_type": "", "degree": 6}, {"id": "105", "label": "Save", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Save", "community": 105, "community_name": "Save", "source_file": "", "file_type": "", "degree": 4}, {"id": "106", "label": "REST API Reference", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.1, "font": {"size": 12, "color": "#ffffff"}, "title": "REST API Reference", "community": 106, "community_name": "REST API Reference", "source_file": "", "file_type": "", "degree": 22}, {"id": "107", "label": "NewRegistry", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.1, "font": {"size": 12, "color": "#ffffff"}, "title": "NewRegistry", "community": 107, "community_name": "NewRegistry", "source_file": "", "file_type": "", "degree": 13}, {"id": "108", "label": "voice_moderation_test.go", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.1, "font": {"size": 12, "color": "#ffffff"}, "title": "voice_moderation_test.go", "community": 108, "community_name": "voice_moderation_test.go", "source_file": "", "file_type": "", "degree": 13}, {"id": "109", "label": "ptt.rs", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.0, "font": {"size": 12, "color": "#ffffff"}, "title": "ptt.rs", "community": 109, "community_name": "ptt.rs", "source_file": "", "file_type": "", "degree": 0}, {"id": "110", "label": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.0, "font": {"size": 12, "color": "#ffffff"}, "title": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", "community": 110, "community_name": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", "source_file": "", "file_type": "", "degree": 1}, {"id": "111", "label": "scripts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.9, "font": {"size": 12, "color": "#ffffff"}, "title": "scripts", "community": 111, "community_name": "scripts", "source_file": "", "file_type": "", "degree": 1}, {"id": "112", "label": "ResolveTokenHash", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 12, "color": "#ffffff"}, "title": "ResolveTokenHash", "community": 112, "community_name": "ResolveTokenHash", "source_file": "", "file_type": "", "degree": 12}, {"id": "113", "label": "Load", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Load", "community": 113, "community_name": "Load", "source_file": "", "file_type": "", "degree": 7}, {"id": "114", "label": "handleVoiceE2EEOfferV2", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.9, "font": {"size": 12, "color": "#ffffff"}, "title": "handleVoiceE2EEOfferV2", "community": 114, "community_name": "handleVoiceE2EEOfferV2", "source_file": "", "file_type": "", "degree": 7}, {"id": "115", "label": "commands.rs", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.8, "font": {"size": 12, "color": "#ffffff"}, "title": "commands.rs", "community": 115, "community_name": "commands.rs", "source_file": "", "file_type": "", "degree": 0}, {"id": "116", "label": "newEmitTestHub", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.6, "font": {"size": 12, "color": "#ffffff"}, "title": "newEmitTestHub", "community": 116, "community_name": "newEmitTestHub", "source_file": "", "file_type": "", "degree": 19}, {"id": "117", "label": "Plan: Remediate security-hardening review regressions", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Plan: Remediate security-hardening review regressions", "community": 117, "community_name": "Plan: Remediate security-hardening review regressions", "source_file": "", "file_type": "", "degree": 0}, {"id": "118", "label": "verify.go", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.7, "font": {"size": 12, "color": "#ffffff"}, "title": "verify.go", "community": 118, "community_name": "verify.go", "source_file": "", "file_type": "", "degree": 6}, {"id": "119", "label": "newRoleCRUDService", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.7, "font": {"size": 12, "color": "#ffffff"}, "title": "newRoleCRUDService", "community": 119, "community_name": "newRoleCRUDService", "source_file": "", "file_type": "", "degree": 4}, {"id": "120", "label": "Checker", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Checker", "community": 120, "community_name": "Checker", "source_file": "", "file_type": "", "degree": 21}, {"id": "121", "label": "EnsureLiveKitBinary", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.9, "font": {"size": 12, "color": "#ffffff"}, "title": "EnsureLiveKitBinary", "community": 121, "community_name": "EnsureLiveKitBinary", "source_file": "", "file_type": "", "degree": 9}, {"id": "122", "label": "clientip_test.go", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.6, "font": {"size": 12, "color": "#ffffff"}, "title": "clientip_test.go", "community": 122, "community_name": "clientip_test.go", "source_file": "", "file_type": "", "degree": 10}, {"id": "123", "label": "AudioElements", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.7, "font": {"size": 12, "color": "#ffffff"}, "title": "AudioElements", "community": 123, "community_name": "AudioElements", "source_file": "", "file_type": "", "degree": 4}, {"id": "124", "label": "buildErrorMsg", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.7, "font": {"size": 12, "color": "#ffffff"}, "title": "buildErrorMsg", "community": 124, "community_name": "buildErrorMsg", "source_file": "", "file_type": "", "degree": 17}, {"id": "125", "label": "gif_handler_test.go", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.2, "font": {"size": 12, "color": "#ffffff"}, "title": "gif_handler_test.go", "community": 125, "community_name": "gif_handler_test.go", "source_file": "", "file_type": "", "degree": 6}, {"id": "126", "label": "navigateToMainPage", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 12, "color": "#ffffff"}, "title": "navigateToMainPage", "community": 126, "community_name": "navigateToMainPage", "source_file": "", "file_type": "", "degree": 9}, {"id": "127", "label": "messages.sql.go", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 12, "color": "#ffffff"}, "title": "messages.sql.go", "community": 127, "community_name": "messages.sql.go", "source_file": "", "file_type": "", "degree": 2}, {"id": "128", "label": "Channel Endpoints", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Channel Endpoints", "community": 128, "community_name": "Channel Endpoints", "source_file": "", "file_type": "", "degree": 1}, {"id": "129", "label": "newSignedTestUpdater", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.6, "font": {"size": 12, "color": "#ffffff"}, "title": "newSignedTestUpdater", "community": 129, "community_name": "newSignedTestUpdater", "source_file": "", "file_type": "", "degree": 2}, {"id": "130", "label": "host_http_test.go", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "host_http_test.go", "community": 130, "community_name": "host_http_test.go", "source_file": "", "file_type": "", "degree": 4}, {"id": "131", "label": "Topic", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Topic", "community": 131, "community_name": "Topic", "source_file": "", "file_type": "", "degree": 13}, {"id": "132", "label": "DB", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.1, "font": {"size": 12, "color": "#ffffff"}, "title": "DB", "community": 132, "community_name": "DB", "source_file": "", "file_type": "", "degree": 9}, {"id": "133", "label": "users", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 12, "color": "#ffffff"}, "title": "users", "community": 133, "community_name": "users", "source_file": "", "file_type": "", "degree": 0}, {"id": "134", "label": "Client", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Client", "community": 134, "community_name": "Client", "source_file": "", "file_type": "", "degree": 7}, {"id": "135", "label": "identity.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.7, "font": {"size": 12, "color": "#ffffff"}, "title": "identity.ts", "community": 135, "community_name": "identity.ts", "source_file": "", "file_type": "", "degree": 7}, {"id": "136", "label": "Queries", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Queries", "community": 136, "community_name": "Queries", "source_file": "", "file_type": "", "degree": 2}, {"id": "137", "label": "Queries", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Queries", "community": 137, "community_name": "Queries", "source_file": "", "file_type": "", "degree": 1}, {"id": "138", "label": "Queries", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Queries", "community": 138, "community_name": "Queries", "source_file": "", "file_type": "", "degree": 2}, {"id": "139", "label": "middleware_and_spawn_test.go", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "middleware_and_spawn_test.go", "community": 139, "community_name": "middleware_and_spawn_test.go", "source_file": "", "file_type": "", "degree": 13}, {"id": "140", "label": "password_test.go", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "password_test.go", "community": 140, "community_name": "password_test.go", "source_file": "", "file_type": "", "degree": 7}, {"id": "141", "label": "newPurgeService", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "newPurgeService", "community": 141, "community_name": "newPurgeService", "source_file": "", "file_type": "", "degree": 6}, {"id": "142", "label": "handleVoiceTokenRefreshV2", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "handleVoiceTokenRefreshV2", "community": 142, "community_name": "handleVoiceTokenRefreshV2", "source_file": "", "file_type": "", "degree": 10}, {"id": "143", "label": "pubsub_test.go", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "pubsub_test.go", "community": 143, "community_name": "pubsub_test.go", "source_file": "", "file_type": "", "degree": 4}, {"id": "144", "label": "newChannelTestAPI", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.2, "font": {"size": 12, "color": "#ffffff"}, "title": "newChannelTestAPI", "community": 144, "community_name": "newChannelTestAPI", "source_file": "", "file_type": "", "degree": 6}, {"id": "145", "label": "handleLogStream", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.7, "font": {"size": 12, "color": "#ffffff"}, "title": "handleLogStream", "community": 145, "community_name": "handleLogStream", "source_file": "", "file_type": "", "degree": 15}, {"id": "146", "label": "handleSetup", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.2, "font": {"size": 12, "color": "#ffffff"}, "title": "handleSetup", "community": 146, "community_name": "handleSetup", "source_file": "", "file_type": "", "degree": 12}, {"id": "147", "label": "log/slog.Value", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 12, "color": "#ffffff"}, "title": "log/slog.Value", "community": 147, "community_name": "log/slog.Value", "source_file": "", "file_type": "", "degree": 2}, {"id": "148", "label": "Updater", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Updater", "community": 148, "community_name": "Updater", "source_file": "", "file_type": "", "degree": 15}, {"id": "149", "label": "Credential storage", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Credential storage", "community": 149, "community_name": "Credential storage", "source_file": "", "file_type": "", "degree": 1}, {"id": "150", "label": "dependencies", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 12, "color": "#ffffff"}, "title": "dependencies", "community": 150, "community_name": "dependencies", "source_file": "", "file_type": "", "degree": 1}, {"id": "151", "label": "newHarvestVoiceDB", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.7, "font": {"size": 12, "color": "#ffffff"}, "title": "newHarvestVoiceDB", "community": 151, "community_name": "newHarvestVoiceDB", "source_file": "", "file_type": "", "degree": 12}, {"id": "152", "label": "Config Key Reference", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Config Key Reference", "community": 152, "community_name": "Config Key Reference", "source_file": "", "file_type": "", "degree": 1}, {"id": "153", "label": "newTestPermService", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 12, "color": "#ffffff"}, "title": "newTestPermService", "community": 153, "community_name": "newTestPermService", "source_file": "", "file_type": "", "degree": 8}, {"id": "154", "label": "markdown.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.1, "font": {"size": 12, "color": "#ffffff"}, "title": "markdown.ts", "community": 154, "community_name": "markdown.ts", "source_file": "", "file_type": "", "degree": 1}, {"id": "155", "label": "VideoGrid.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 16.5, "font": {"size": 12, "color": "#ffffff"}, "title": "VideoGrid.ts", "community": 155, "community_name": "VideoGrid.ts", "source_file": "", "file_type": "", "degree": 7}, {"id": "156", "label": "Manifest", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Manifest", "community": 156, "community_name": "Manifest", "source_file": "", "file_type": "", "degree": 4}, {"id": "157", "label": "rate-limiter.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.1, "font": {"size": 12, "color": "#ffffff"}, "title": "rate-limiter.ts", "community": 157, "community_name": "rate-limiter.ts", "source_file": "", "file_type": "", "degree": 2}, {"id": "158", "label": "e2e/helpers.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.1, "font": {"size": 12, "color": "#ffffff"}, "title": "e2e/helpers.ts", "community": 158, "community_name": "e2e/helpers.ts", "source_file": "", "file_type": "", "degree": 9}, {"id": "159", "label": "main.test.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.2, "font": {"size": 12, "color": "#ffffff"}, "title": "main.test.ts", "community": 159, "community_name": "main.test.ts", "source_file": "", "file_type": "", "degree": 6}, {"id": "160", "label": "testing.M", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.1, "font": {"size": 12, "color": "#ffffff"}, "title": "testing.M", "community": 160, "community_name": "testing.M", "source_file": "", "file_type": "", "degree": 1}, {"id": "161", "label": "newMockDB", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.1, "font": {"size": 12, "color": "#ffffff"}, "title": "newMockDB", "community": 161, "community_name": "newMockDB", "source_file": "", "file_type": "", "degree": 4}, {"id": "162", "label": "OwnCord", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.1, "font": {"size": 12, "color": "#ffffff"}, "title": "OwnCord", "community": 162, "community_name": "OwnCord", "source_file": "", "file_type": "", "degree": 1}, {"id": "163", "label": "bughunt-fix.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.0, "font": {"size": 12, "color": "#ffffff"}, "title": "bughunt-fix.js", "community": 163, "community_name": "bughunt-fix.js", "source_file": "", "file_type": "", "degree": 0}, {"id": "164", "label": "buildTauriMockScript", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.0, "font": {"size": 12, "color": "#ffffff"}, "title": "buildTauriMockScript", "community": 164, "community_name": "buildTauriMockScript", "source_file": "", "file_type": "", "degree": 7}, {"id": "165", "label": "OwnCord Introspection MCP Server", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.6, "font": {"size": 12, "color": "#ffffff"}, "title": "OwnCord Introspection MCP Server", "community": 165, "community_name": "OwnCord Introspection MCP Server", "source_file": "", "file_type": "", "degree": 1}, {"id": "166", "label": "Bug-detection improvements \u2014 design", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Bug-detection improvements \u2014 design", "community": 166, "community_name": "Bug-detection improvements \u2014 design", "source_file": "", "file_type": "", "degree": 0}, {"id": "167", "label": "ptt.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.6, "font": {"size": 12, "color": "#ffffff"}, "title": "ptt.ts", "community": 167, "community_name": "ptt.ts", "source_file": "", "file_type": "", "degree": 7}, {"id": "168", "label": "eslint-rules.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.9, "font": {"size": 12, "color": "#ffffff"}, "title": "eslint-rules.js", "community": 168, "community_name": "eslint-rules.js", "source_file": "", "file_type": "", "degree": 0}, {"id": "169", "label": "DB", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.9, "font": {"size": 12, "color": "#ffffff"}, "title": "DB", "community": 169, "community_name": "DB", "source_file": "", "file_type": "", "degree": 2}, {"id": "170", "label": "OwnCord \u2014 Security Review", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 12, "color": "#ffffff"}, "title": "OwnCord \u2014 Security Review", "community": 170, "community_name": "OwnCord \u2014 Security Review", "source_file": "", "file_type": "", "degree": 1}, {"id": "171", "label": "Plan: Slash command dispatcher in WS", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Plan: Slash command dispatcher in WS", "community": 171, "community_name": "Plan: Slash command dispatcher in WS", "source_file": "", "file_type": "", "degree": 0}, {"id": "172", "label": "net/http.Request", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 12, "color": "#ffffff"}, "title": "net/http.Request", "community": 172, "community_name": "net/http.Request", "source_file": "", "file_type": "", "degree": 15}, {"id": "173", "label": "ChannelTopic", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 12, "color": "#ffffff"}, "title": "ChannelTopic", "community": 173, "community_name": "ChannelTopic", "source_file": "", "file_type": "", "degree": 13}, {"id": "174", "label": "UserService", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 12, "color": "#ffffff"}, "title": "UserService", "community": 174, "community_name": "UserService", "source_file": "", "file_type": "", "degree": 18}, {"id": "175", "label": "Blocked \u2014 fix attempted, revert-proof failed", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Blocked \u2014 fix attempted, revert-proof failed", "community": 175, "community_name": "Blocked \u2014 fix attempted, revert-proof failed", "source_file": "", "file_type": "", "degree": 1}, {"id": "176", "label": "handlers_backup.go", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 12, "color": "#ffffff"}, "title": "handlers_backup.go", "community": 176, "community_name": "handlers_backup.go", "source_file": "", "file_type": "", "degree": 7}, {"id": "177", "label": "logger.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.5, "font": {"size": 12, "color": "#ffffff"}, "title": "logger.ts", "community": 177, "community_name": "logger.ts", "source_file": "", "file_type": "", "degree": 22}, {"id": "178", "label": "fallback_crypto.rs", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.8, "font": {"size": 12, "color": "#ffffff"}, "title": "fallback_crypto.rs", "community": 178, "community_name": "fallback_crypto.rs", "source_file": "", "file_type": "", "degree": 0}, {"id": "179", "label": "Direct Messages", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Direct Messages", "community": 179, "community_name": "Direct Messages", "source_file": "", "file_type": "", "degree": 1}, {"id": "180", "label": "WebSocket Protocol Reference", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 12, "color": "#ffffff"}, "title": "WebSocket Protocol Reference", "community": 180, "community_name": "WebSocket Protocol Reference", "source_file": "", "file_type": "", "degree": 16}, {"id": "181", "label": "command.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.8, "font": {"size": 12, "color": "#ffffff"}, "title": "command.go", "community": 181, "community_name": "command.go", "source_file": "", "file_type": "", "degree": 25}, {"id": "182", "label": "NewRingBuffer", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.8, "font": {"size": 12, "color": "#ffffff"}, "title": "NewRingBuffer", "community": 182, "community_name": "NewRingBuffer", "source_file": "", "file_type": "", "degree": 7}, {"id": "183", "label": "ws-load.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.8, "font": {"size": 12, "color": "#ffffff"}, "title": "ws-load.js", "community": 183, "community_name": "ws-load.js", "source_file": "", "file_type": "", "degree": 0}, {"id": "184", "label": "NewMessageService", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.0, "font": {"size": 12, "color": "#ffffff"}, "title": "NewMessageService", "community": 184, "community_name": "NewMessageService", "source_file": "", "file_type": "", "degree": 13}, {"id": "185", "label": "handler", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.7, "font": {"size": 12, "color": "#ffffff"}, "title": "handler", "community": 185, "community_name": "handler", "source_file": "", "file_type": "", "degree": 14}, {"id": "186", "label": "tauri-client/package.json", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "tauri-client/package.json", "community": 186, "community_name": "tauri-client/package.json", "source_file": "", "file_type": "", "degree": 4}, {"id": "187", "label": "screen-share-tracks.test.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 12, "color": "#ffffff"}, "title": "screen-share-tracks.test.ts", "community": 187, "community_name": "screen-share-tracks.test.ts", "source_file": "", "file_type": "", "degree": 2}, {"id": "188", "label": "LoginFormApi", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 12, "color": "#ffffff"}, "title": "LoginFormApi", "community": 188, "community_name": "LoginFormApi", "source_file": "", "file_type": "", "degree": 1}, {"id": "189", "label": "social.parity.spec.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 12, "color": "#ffffff"}, "title": "social.parity.spec.ts", "community": 189, "community_name": "social.parity.spec.ts", "source_file": "", "file_type": "", "degree": 6}, {"id": "190", "label": "fakeDirInfo", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 12, "color": "#ffffff"}, "title": "fakeDirInfo", "community": 190, "community_name": "fakeDirInfo", "source_file": "", "file_type": "", "degree": 3}, {"id": "191", "label": "Role Management", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Role Management", "community": 191, "community_name": "Role Management", "source_file": "", "file_type": "", "degree": 1}, {"id": "192", "label": "User Profile & Sessions", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 12, "color": "#ffffff"}, "title": "User Profile & Sessions", "community": 192, "community_name": "User Profile & Sessions", "source_file": "", "file_type": "", "degree": 1}, {"id": "193", "label": "F3 \u2014 Voice E2EE identity keys + TOFU (the remaining work)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 12, "color": "#ffffff"}, "title": "F3 \u2014 Voice E2EE identity keys + TOFU (the remaining work)", "community": 193, "community_name": "F3 \u2014 Voice E2EE identity keys + TOFU (the remaining work)", "source_file": "", "file_type": "", "degree": 0}, {"id": "194", "label": "run", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.2, "font": {"size": 12, "color": "#ffffff"}, "title": "run", "community": 194, "community_name": "run", "source_file": "", "file_type": "", "degree": 20}, {"id": "195", "label": "newWazeroTestRegistry", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 12, "color": "#ffffff"}, "title": "newWazeroTestRegistry", "community": 195, "community_name": "newWazeroTestRegistry", "source_file": "", "file_type": "", "degree": 3}, {"id": "196", "label": "newUserSvc", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 12, "color": "#ffffff"}, "title": "newUserSvc", "community": 196, "community_name": "newUserSvc", "source_file": "", "file_type": "", "degree": 8}, {"id": "197", "label": "plugins_handler_test.go", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 12, "color": "#ffffff"}, "title": "plugins_handler_test.go", "community": 197, "community_name": "plugins_handler_test.go", "source_file": "", "file_type": "", "degree": 9}, {"id": "198", "label": "badDirFile", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "badDirFile", "community": 198, "community_name": "badDirFile", "source_file": "", "file_type": "", "degree": 5}, {"id": "199", "label": "Contributing", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Contributing", "community": 199, "community_name": "Contributing", "source_file": "", "file_type": "", "degree": 1}, {"id": "200", "label": ".handleFreshConnect", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": ".handleFreshConnect", "community": 200, "community_name": ".handleFreshConnect", "source_file": "", "file_type": "", "degree": 17}, {"id": "201", "label": "mcp-introspect/package.json", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "mcp-introspect/package.json", "community": 201, "community_name": "mcp-introspect/package.json", "source_file": "", "file_type": "", "degree": 0}, {"id": "202", "label": "v1.2.0-alpha.1 \u2014 Discord feature parity", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.8, "font": {"size": 12, "color": "#ffffff"}, "title": "v1.2.0-alpha.1 \u2014 Discord feature parity", "community": 202, "community_name": "v1.2.0-alpha.1 \u2014 Discord feature parity", "source_file": "", "file_type": "", "degree": 1}, {"id": "203", "label": "Task Observer \u2014 Continuous Skill Discovery & Improvement", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Task Observer \u2014 Continuous Skill Discovery & Improvement", "community": 203, "community_name": "Task Observer \u2014 Continuous Skill Discovery & Improvement", "source_file": "", "file_type": "", "degree": 0}, {"id": "204", "label": "scanPluginDirectory", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 12, "color": "#ffffff"}, "title": "scanPluginDirectory", "community": 204, "community_name": "scanPluginDirectory", "source_file": "", "file_type": "", "degree": 3}, {"id": "205", "label": "loadPref", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.2, "font": {"size": 12, "color": "#ffffff"}, "title": "loadPref", "community": 205, "community_name": "loadPref", "source_file": "", "file_type": "", "degree": 12}, {"id": "206", "label": "1. Channel sidebar", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 12, "color": "#ffffff"}, "title": "1. Channel sidebar", "community": 206, "community_name": "1. Channel sidebar", "source_file": "", "file_type": "", "degree": 1}, {"id": "207", "label": "Voice, Video & E2EE \u2014 target UX", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Voice, Video & E2EE \u2014 target UX", "community": 207, "community_name": "Voice, Video & E2EE \u2014 target UX", "source_file": "", "file_type": "", "degree": 5}, {"id": "208", "label": "Updater", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Updater", "community": 208, "community_name": "Updater", "source_file": "", "file_type": "", "degree": 8}, {"id": "209", "label": "LiveKitClient", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.2, "font": {"size": 12, "color": "#ffffff"}, "title": "LiveKitClient", "community": 209, "community_name": "LiveKitClient", "source_file": "", "file_type": "", "degree": 6}, {"id": "210", "label": "migrate.go", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 12, "color": "#ffffff"}, "title": "migrate.go", "community": 210, "community_name": "migrate.go", "source_file": "", "file_type": "", "degree": 4}, {"id": "211", "label": "Queries", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Queries", "community": 211, "community_name": "Queries", "source_file": "", "file_type": "", "degree": 1}, {"id": "212", "label": "Messaging \u2014 target UX", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Messaging \u2014 target UX", "community": 212, "community_name": "Messaging \u2014 target UX", "source_file": "", "file_type": "", "degree": 1}, {"id": "213", "label": "Registry", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Registry", "community": 213, "community_name": "Registry", "source_file": "", "file_type": "", "degree": 16}, {"id": "214", "label": "handleChannelFocusV2", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 12, "color": "#ffffff"}, "title": "handleChannelFocusV2", "community": 214, "community_name": "handleChannelFocusV2", "source_file": "", "file_type": "", "degree": 7}, {"id": "215", "label": "handlers_channel_perms_test.go", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 12, "color": "#ffffff"}, "title": "handlers_channel_perms_test.go", "community": 215, "community_name": "handlers_channel_perms_test.go", "source_file": "", "file_type": "", "degree": 5}, {"id": "216", "label": "knip.json", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 12, "color": "#ffffff"}, "title": "knip.json", "community": 216, "community_name": "knip.json", "source_file": "", "file_type": "", "degree": 0}, {"id": "217", "label": "RNNoiseProcessor", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 12, "color": "#ffffff"}, "title": "RNNoiseProcessor", "community": 217, "community_name": "RNNoiseProcessor", "source_file": "", "file_type": "", "degree": 0}, {"id": "218", "label": "DeviceManager", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.9, "font": {"size": 12, "color": "#ffffff"}, "title": "DeviceManager", "community": 218, "community_name": "DeviceManager", "source_file": "", "file_type": "", "degree": 6}, {"id": "219", "label": "finish", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 12, "color": "#ffffff"}, "title": "finish", "community": 219, "community_name": "finish", "source_file": "", "file_type": "", "degree": 0}, {"id": "220", "label": "TestHarness", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 12, "color": "#ffffff"}, "title": "TestHarness", "community": 220, "community_name": "TestHarness", "source_file": "", "file_type": "", "degree": 0}, {"id": "221", "label": "Connection & Authentication \u2014 target UX", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Connection & Authentication \u2014 target UX", "community": 221, "community_name": "Connection & Authentication \u2014 target UX", "source_file": "", "file_type": "", "degree": 1}, {"id": "222", "label": "Settings & Admin \u2014 target UX", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Settings & Admin \u2014 target UX", "community": 222, "community_name": "Settings & Admin \u2014 target UX", "source_file": "", "file_type": "", "degree": 1}, {"id": "223", "label": "buildClientUpdateRouter", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 12, "color": "#ffffff"}, "title": "buildClientUpdateRouter", "community": 223, "community_name": "buildClientUpdateRouter", "source_file": "", "file_type": "", "degree": 5}, {"id": "224", "label": "logPersistence.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 12, "color": "#ffffff"}, "title": "logPersistence.ts", "community": 224, "community_name": "logPersistence.ts", "source_file": "", "file_type": "", "degree": 5}, {"id": "225", "label": "newTestRoleService", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 12, "color": "#ffffff"}, "title": "newTestRoleService", "community": 225, "community_name": "newTestRoleService", "source_file": "", "file_type": "", "degree": 4}, {"id": "226", "label": "event.go", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 12, "color": "#ffffff"}, "title": "event.go", "community": 226, "community_name": "event.go", "source_file": "", "file_type": "", "degree": 24}, {"id": "227", "label": "NewTopicRateLimiter", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 12, "color": "#ffffff"}, "title": "NewTopicRateLimiter", "community": 227, "community_name": "NewTopicRateLimiter", "source_file": "", "file_type": "", "degree": 8}, {"id": "228", "label": "Skill Authoring \u2014 taxonomy, licensing, confidentiality, editing rules", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Skill Authoring \u2014 taxonomy, licensing, confidentiality, editing rules", "community": 228, "community_name": "Skill Authoring \u2014 taxonomy, licensing, confidentiality, editing rules", "source_file": "", "file_type": "", "degree": 0}, {"id": "229", "label": ".oxlintrc.json", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 12, "color": "#ffffff"}, "title": ".oxlintrc.json", "community": 229, "community_name": ".oxlintrc.json", "source_file": "", "file_type": "", "degree": 0}, {"id": "230", "label": "message.go", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 12, "color": "#ffffff"}, "title": "message.go", "community": 230, "community_name": "message.go", "source_file": "", "file_type": "", "degree": 15}, {"id": "231", "label": "e2e/dm-system.spec.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 12, "color": "#ffffff"}, "title": "e2e/dm-system.spec.ts", "community": 231, "community_name": "e2e/dm-system.spec.ts", "source_file": "", "file_type": "", "degree": 5}, {"id": "232", "label": "Queries", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Queries", "community": 232, "community_name": "Queries", "source_file": "", "file_type": "", "degree": 1}, {"id": "233", "label": "emoji.sql.go", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 12, "color": "#ffffff"}, "title": "emoji.sql.go", "community": 233, "community_name": "emoji.sql.go", "source_file": "", "file_type": "", "degree": 2}, {"id": "234", "label": "OwnCord \u2014 Architectural Audit & Spec-Conformance Review", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 12, "color": "#ffffff"}, "title": "OwnCord \u2014 Architectural Audit & Spec-Conformance Review", "community": 234, "community_name": "OwnCord \u2014 Architectural Audit & Spec-Conformance Review", "source_file": "", "file_type": "", "degree": 1}, {"id": "235", "label": "LiveKit Setup Guide", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 12, "color": "#ffffff"}, "title": "LiveKit Setup Guide", "community": 235, "community_name": "LiveKit Setup Guide", "source_file": "", "file_type": "", "degree": 1}, {"id": "236", "label": "Voice Signaling", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Voice Signaling", "community": 236, "community_name": "Voice Signaling", "source_file": "", "file_type": "", "degree": 1}, {"id": "237", "label": "Quick Start Guide", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Quick Start Guide", "community": 237, "community_name": "Quick Start Guide", "source_file": "", "file_type": "", "degree": 1}, {"id": "238", "label": "readPump", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 12, "color": "#ffffff"}, "title": "readPump", "community": 238, "community_name": "readPump", "source_file": "", "file_type": "", "degree": 8}, {"id": "239", "label": "mockTauriFullSessionWithVoice", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 12, "color": "#ffffff"}, "title": "mockTauriFullSessionWithVoice", "community": 239, "community_name": "mockTauriFullSessionWithVoice", "source_file": "", "file_type": "", "degree": 5}, {"id": "240", "label": "index.mjs", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 12, "color": "#ffffff"}, "title": "index.mjs", "community": 240, "community_name": "index.mjs", "source_file": "", "file_type": "", "degree": 0}, {"id": "241", "label": "countingReadStateStore", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 12, "color": "#ffffff"}, "title": "countingReadStateStore", "community": 241, "community_name": "countingReadStateStore", "source_file": "", "file_type": "", "degree": 7}, {"id": "242", "label": "bughunt.harness.mjs", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 12, "color": "#ffffff"}, "title": "bughunt.harness.mjs", "community": 242, "community_name": "bughunt.harness.mjs", "source_file": "", "file_type": "", "degree": 0}, {"id": "243", "label": "voice-audio-tab.test.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 12, "color": "#ffffff"}, "title": "voice-audio-tab.test.ts", "community": 243, "community_name": "voice-audio-tab.test.ts", "source_file": "", "file_type": "", "degree": 1}, {"id": "244", "label": "reactions.sql.go", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 12, "color": "#ffffff"}, "title": "reactions.sql.go", "community": 244, "community_name": "reactions.sql.go", "source_file": "", "file_type": "", "degree": 2}, {"id": "245", "label": "Channel Permission Overrides", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Channel Permission Overrides", "community": 245, "community_name": "Channel Permission Overrides", "source_file": "", "file_type": "", "degree": 1}, {"id": "246", "label": "Server Stats & User Administration", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Server Stats & User Administration", "community": 246, "community_name": "Server Stats & User Administration", "source_file": "", "file_type": "", "degree": 1}, {"id": "247", "label": "deep-link.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 12, "color": "#ffffff"}, "title": "deep-link.ts", "community": 247, "community_name": "deep-link.ts", "source_file": "", "file_type": "", "degree": 5}, {"id": "248", "label": "EventSink", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.5, "font": {"size": 12, "color": "#ffffff"}, "title": "EventSink", "community": 248, "community_name": "EventSink", "source_file": "", "file_type": "", "degree": 8}, {"id": "249", "label": "handleChatCommandV2", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "handleChatCommandV2", "community": 249, "community_name": "handleChatCommandV2", "source_file": "", "file_type": "", "degree": 9}, {"id": "250", "label": "slashFS", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 12, "color": "#ffffff"}, "title": "slashFS", "community": 250, "community_name": "slashFS", "source_file": "", "file_type": "", "degree": 5}, {"id": "251", "label": "Running the bughunt pipeline", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Running the bughunt pipeline", "community": 251, "community_name": "Running the bughunt pipeline", "source_file": "", "file_type": "", "degree": 0}, {"id": "252", "label": "OverlayManagers.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.9, "font": {"size": 12, "color": "#ffffff"}, "title": "OverlayManagers.ts", "community": 252, "community_name": "OverlayManagers.ts", "source_file": "", "file_type": "", "degree": 10}, {"id": "253", "label": "reconnectAfterCertAccept", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 12, "color": "#ffffff"}, "title": "reconnectAfterCertAccept", "community": 253, "community_name": "reconnectAfterCertAccept", "source_file": "", "file_type": "", "degree": 1}, {"id": "254", "label": "VoiceTopic", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.5, "font": {"size": 12, "color": "#ffffff"}, "title": "VoiceTopic", "community": 254, "community_name": "VoiceTopic", "source_file": "", "file_type": "", "degree": 13}, {"id": "255", "label": "emoji-voicemod.parity.spec.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.1, "font": {"size": 12, "color": "#ffffff"}, "title": "emoji-voicemod.parity.spec.ts", "community": 255, "community_name": "emoji-voicemod.parity.spec.ts", "source_file": "", "file_type": "", "degree": 7}, {"id": "256", "label": "voice-e2ee-verify.spec.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 12, "color": "#ffffff"}, "title": "voice-e2ee-verify.spec.ts", "community": 256, "community_name": "voice-e2ee-verify.spec.ts", "source_file": "", "file_type": "", "degree": 6}, {"id": "257", "label": "include", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.1, "font": {"size": 12, "color": "#ffffff"}, "title": "include", "community": 257, "community_name": "include", "source_file": "", "file_type": "", "degree": 0}, {"id": "258", "label": "Queries", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Queries", "community": 258, "community_name": "Queries", "source_file": "", "file_type": "", "degree": 2}, {"id": "259", "label": "Custom Emoji", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Custom Emoji", "community": 259, "community_name": "Custom Emoji", "source_file": "", "file_type": "", "degree": 1}, {"id": "260", "label": "OwnCord \u2014 Test-Coverage Audit", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 12, "color": "#ffffff"}, "title": "OwnCord \u2014 Test-Coverage Audit", "community": 260, "community_name": "OwnCord \u2014 Test-Coverage Audit", "source_file": "", "file_type": "", "degree": 1}, {"id": "261", "label": "OriginAcceptOptions", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 12, "color": "#ffffff"}, "title": "OriginAcceptOptions", "community": 261, "community_name": "OriginAcceptOptions", "source_file": "", "file_type": "", "degree": 2}, {"id": "262", "label": "EventRingBuffer", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.9, "font": {"size": 12, "color": "#ffffff"}, "title": "EventRingBuffer", "community": 262, "community_name": "EventRingBuffer", "source_file": "", "file_type": "", "degree": 5}, {"id": "263", "label": "IsUniqueConstraintError", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 12, "color": "#ffffff"}, "title": "IsUniqueConstraintError", "community": 263, "community_name": "IsUniqueConstraintError", "source_file": "", "file_type": "", "degree": 5}, {"id": "264", "label": "newTokenTestDB", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 12, "color": "#ffffff"}, "title": "newTokenTestDB", "community": 264, "community_name": "newTokenTestDB", "source_file": "", "file_type": "", "degree": 3}, {"id": "265", "label": "scripts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.0, "font": {"size": 12, "color": "#ffffff"}, "title": "scripts", "community": 265, "community_name": "scripts", "source_file": "", "file_type": "", "degree": 0}, {"id": "266", "label": "bughunt-fix.harness.mjs", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 12, "color": "#ffffff"}, "title": "bughunt-fix.harness.mjs", "community": 266, "community_name": "bughunt-fix.harness.mjs", "source_file": "", "file_type": "", "degree": 0}, {"id": "267", "label": "router.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 12, "color": "#ffffff"}, "title": "router.ts", "community": 267, "community_name": "router.ts", "source_file": "", "file_type": "", "degree": 1}, {"id": "268", "label": "E2E Test Status \u2014 2026-08-05", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.0, "font": {"size": 12, "color": "#ffffff"}, "title": "E2E Test Status \u2014 2026-08-05", "community": 268, "community_name": "E2E Test Status \u2014 2026-08-05", "source_file": "", "file_type": "", "degree": 0}, {"id": "269", "label": "render-ledger.mjs", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "render-ledger.mjs", "community": 269, "community_name": "render-ledger.mjs", "source_file": "", "file_type": "", "degree": 1}, {"id": "270", "label": "MountGIFRoutes", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 12, "color": "#ffffff"}, "title": "MountGIFRoutes", "community": 270, "community_name": "MountGIFRoutes", "source_file": "", "file_type": "", "degree": 12}, {"id": "271", "label": "TestMigrate_UpgradeFromMigration019PreservesData", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 12, "color": "#ffffff"}, "title": "TestMigrate_UpgradeFromMigration019PreservesData", "community": 271, "community_name": "TestMigrate_UpgradeFromMigration019PreservesData", "source_file": "", "file_type": "", "degree": 7}, {"id": "272", "label": "Queries", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Queries", "community": 272, "community_name": "Queries", "source_file": "", "file_type": "", "degree": 1}, {"id": "273", "label": "TestChannelVisibility_RESTWSAgreement", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "TestChannelVisibility_RESTWSAgreement", "community": 273, "community_name": "TestChannelVisibility_RESTWSAgreement", "source_file": "", "file_type": "", "degree": 5}, {"id": "274", "label": "seed.go", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 12, "color": "#ffffff"}, "title": "seed.go", "community": 274, "community_name": "seed.go", "source_file": "", "file_type": "", "degree": 4}, {"id": "275", "label": "Finish the V2 Dispatch Migration (backlog item 11) \u2014 Design", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Finish the V2 Dispatch Migration (backlog item 11) \u2014 Design", "community": 275, "community_name": "Finish the V2 Dispatch Migration (backlog item 11) \u2014 Design", "source_file": "", "file_type": "", "degree": 1}, {"id": "276", "label": "Port Forwarding Guide", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Port Forwarding Guide", "community": 276, "community_name": "Port Forwarding Guide", "source_file": "", "file_type": "", "degree": 1}, {"id": "277", "label": "Chat Messages", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Chat Messages", "community": 277, "community_name": "Chat Messages", "source_file": "", "file_type": "", "degree": 1}, {"id": "278", "label": "hello/main.go", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.0, "font": {"size": 12, "color": "#ffffff"}, "title": "hello/main.go", "community": 278, "community_name": "hello/main.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "279", "label": "DMChannelInfo", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.1, "font": {"size": 12, "color": "#ffffff"}, "title": "DMChannelInfo", "community": 279, "community_name": "DMChannelInfo", "source_file": "", "file_type": "", "degree": 8}, {"id": "280", "label": "RingBuffer", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 12, "color": "#ffffff"}, "title": "RingBuffer", "community": 280, "community_name": "RingBuffer", "source_file": "", "file_type": "", "degree": 11}, {"id": "281", "label": "Client HTTP TOFU Proxy (D5) \u2014 Design", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Client HTTP TOFU Proxy (D5) \u2014 Design", "community": 281, "community_name": "Client HTTP TOFU Proxy (D5) \u2014 Design", "source_file": "", "file_type": "", "degree": 1}, {"id": "282", "label": "create_tray", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "create_tray", "community": 282, "community_name": "create_tray", "source_file": "", "file_type": "", "degree": 0}, {"id": "283", "label": "API Tokens", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "API Tokens", "community": 283, "community_name": "API Tokens", "source_file": "", "file_type": "", "degree": 1}, {"id": "284", "label": "Backups", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Backups", "community": 284, "community_name": "Backups", "source_file": "", "file_type": "", "degree": 1}, {"id": "285", "label": "Plugin Administration", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Plugin Administration", "community": 285, "community_name": "Plugin Administration", "source_file": "", "file_type": "", "degree": 1}, {"id": "286", "label": "Invite Endpoints", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Invite Endpoints", "community": 286, "community_name": "Invite Endpoints", "source_file": "", "file_type": "", "degree": 1}, {"id": "287", "label": "2. Code Quality", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "2. Code Quality", "community": 287, "community_name": "2. Code Quality", "source_file": "", "file_type": "", "degree": 1}, {"id": "288", "label": "Infrastructure roadmap \u2014 design", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Infrastructure roadmap \u2014 design", "community": 288, "community_name": "Infrastructure roadmap \u2014 design", "source_file": "", "file_type": "", "degree": 0}, {"id": "289", "label": "Member Updates", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Member Updates", "community": 289, "community_name": "Member Updates", "source_file": "", "file_type": "", "degree": 1}, {"id": "290", "label": "genprotocol/main.go", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "genprotocol/main.go", "community": 290, "community_name": "genprotocol/main.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "291", "label": "Hub", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Hub", "community": 291, "community_name": "Hub", "source_file": "", "file_type": "", "degree": 2}, {"id": "292", "label": ".finishVoiceLeave", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": ".finishVoiceLeave", "community": 292, "community_name": ".finishVoiceLeave", "source_file": "", "file_type": "", "degree": 5}, {"id": "293", "label": "ChatSendCmd", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "ChatSendCmd", "community": 293, "community_name": "ChatSendCmd", "source_file": "", "file_type": "", "degree": 1}, {"id": "294", "label": "Environments, Activation Setup, and Handoff-Doc Mode", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Environments, Activation Setup, and Handoff-Doc Mode", "community": 294, "community_name": "Environments, Activation Setup, and Handoff-Doc Mode", "source_file": "", "file_type": "", "degree": 0}, {"id": "295", "label": "handlePingV2", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "handlePingV2", "community": 295, "community_name": "handlePingV2", "source_file": "", "file_type": "", "degree": 6}, {"id": "296", "label": "capabilities-scope.test.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "capabilities-scope.test.ts", "community": 296, "community_name": "capabilities-scope.test.ts", "source_file": "", "file_type": "", "degree": 0}, {"id": "297", "label": "savePref", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.1, "font": {"size": 12, "color": "#ffffff"}, "title": "savePref", "community": 297, "community_name": "savePref", "source_file": "", "file_type": "", "degree": 13}, {"id": "298", "label": "GET /admin/api/updates", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "GET /admin/api/updates", "community": 298, "community_name": "GET /admin/api/updates", "source_file": "", "file_type": "", "degree": 1}, {"id": "299", "label": "Channel-Visibility Unification (backlog item 3) \u2014 Design", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Channel-Visibility Unification (backlog item 3) \u2014 Design", "community": 299, "community_name": "Channel-Visibility Unification (backlog item 3) \u2014 Design", "source_file": "", "file_type": "", "degree": 1}, {"id": "300", "label": "sqlc Adoption (D2) \u2014 Progress & Plan", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "sqlc Adoption (D2) \u2014 Progress & Plan", "community": 300, "community_name": "sqlc Adoption (D2) \u2014 Progress & Plan", "source_file": "", "file_type": "", "degree": 1}, {"id": "301", "label": "Authentication Flow", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Authentication Flow", "community": 301, "community_name": "Authentication Flow", "source_file": "", "file_type": "", "degree": 1}, {"id": "302", "label": "Voice Moderation", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Voice Moderation", "community": 302, "community_name": "Voice Moderation", "source_file": "", "file_type": "", "degree": 1}, {"id": "303", "label": "bug_report.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "bug_report.md", "community": 303, "community_name": "bug_report.md", "source_file": "", "file_type": "", "degree": 0}, {"id": "304", "label": "Pull Request", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Pull Request", "community": 304, "community_name": "Pull Request", "source_file": "", "file_type": "", "degree": 0}, {"id": "305", "label": "prettier", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "prettier", "community": 305, "community_name": "prettier", "source_file": "", "file_type": "", "degree": 1}, {"id": "306", "label": "openFileDB", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "openFileDB", "community": 306, "community_name": "openFileDB", "source_file": "", "file_type": "", "degree": 3}, {"id": "307", "label": "hello plugin", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "hello plugin", "community": 307, "community_name": "hello plugin", "source_file": "", "file_type": "", "degree": 0}, {"id": "308", "label": "TestAdminAPI_PatchChannel_ArchiveCleansVoice", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "TestAdminAPI_PatchChannel_ArchiveCleansVoice", "community": 308, "community_name": "TestAdminAPI_PatchChannel_ArchiveCleansVoice", "source_file": "", "file_type": "", "degree": 5}, {"id": "309", "label": "window-state.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.1, "font": {"size": 12, "color": "#ffffff"}, "title": "window-state.ts", "community": 309, "community_name": "window-state.ts", "source_file": "", "file_type": "", "degree": 3}, {"id": "310", "label": "Tauri HTTP Capability Narrowing \u2014 Design", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Tauri HTTP Capability Narrowing \u2014 Design", "community": 310, "community_name": "Tauri HTTP Capability Narrowing \u2014 Design", "source_file": "", "file_type": "", "degree": 1}, {"id": "311", "label": "protocol_contract_test.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "protocol_contract_test.go", "community": 311, "community_name": "protocol_contract_test.go", "source_file": "", "file_type": "", "degree": 1}, {"id": "312", "label": "ChatCommandCmd", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "ChatCommandCmd", "community": 312, "community_name": "ChatCommandCmd", "source_file": "", "file_type": "", "degree": 1}, {"id": "313", "label": "ci-check", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "ci-check", "community": 313, "community_name": "ci-check", "source_file": "", "file_type": "", "degree": 0}, {"id": "314", "label": "Comprehensive Review (scheduled or fallback)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Comprehensive Review (scheduled or fallback)", "community": 314, "community_name": "Comprehensive Review (scheduled or fallback)", "source_file": "", "file_type": "", "degree": 0}, {"id": "315", "label": "VoiceWidgetOptions", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "VoiceWidgetOptions", "community": 315, "community_name": "VoiceWidgetOptions", "source_file": "", "file_type": "", "degree": 1}, {"id": "316", "label": "LiveKitProcess", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 12, "color": "#ffffff"}, "title": "LiveKitProcess", "community": 316, "community_name": "LiveKitProcess", "source_file": "", "file_type": "", "degree": 8}, {"id": "317", "label": "cert-tofu.spec.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "cert-tofu.spec.ts", "community": 317, "community_name": "cert-tofu.spec.ts", "source_file": "", "file_type": "", "degree": 2}, {"id": "318", "label": "updater.spec.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "updater.spec.ts", "community": 318, "community_name": "updater.spec.ts", "source_file": "", "file_type": "", "degree": 2}, {"id": "319", "label": "message_reactions_test.go", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "message_reactions_test.go", "community": 319, "community_name": "message_reactions_test.go", "source_file": "", "file_type": "", "degree": 4}, {"id": "320", "label": "tsconfig.build.json", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "tsconfig.build.json", "community": 320, "community_name": "tsconfig.build.json", "source_file": "", "file_type": "", "degree": 0}, {"id": "321", "label": "User Blocks", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "User Blocks", "community": 321, "community_name": "User Blocks", "source_file": "", "file_type": "", "degree": 1}, {"id": "322", "label": "PATCH /admin/api/settings", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "PATCH /admin/api/settings", "community": 322, "community_name": "PATCH /admin/api/settings", "source_file": "", "file_type": "", "degree": 1}, {"id": "323", "label": "GET /api/v1/gif/search", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "GET /api/v1/gif/search", "community": 323, "community_name": "GET /api/v1/gif/search", "source_file": "", "file_type": "", "degree": 1}, {"id": "324", "label": "First-Run Setup", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "First-Run Setup", "community": 324, "community_name": "First-Run Setup", "source_file": "", "file_type": "", "degree": 1}, {"id": "325", "label": "LiveKit Endpoints", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "LiveKit Endpoints", "community": 325, "community_name": "LiveKit Endpoints", "source_file": "", "file_type": "", "degree": 1}, {"id": "326", "label": "types.go", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "types.go", "community": 326, "community_name": "types.go", "source_file": "", "file_type": "", "degree": 5}, {"id": "327", "label": "Tailscale Guide (Zero-Config Remote Access)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Tailscale Guide (Zero-Config Remote Access)", "community": 327, "community_name": "Tailscale Guide (Zero-Config Remote Access)", "source_file": "", "file_type": "", "degree": 1}, {"id": "328", "label": "LiveKitProcess", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "LiveKitProcess", "community": 328, "community_name": "LiveKitProcess", "source_file": "", "file_type": "", "degree": 0}, {"id": "329", "label": "DB", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "DB", "community": 329, "community_name": "DB", "source_file": "", "file_type": "", "degree": 1}, {"id": "330", "label": "ChatEditCmd", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "ChatEditCmd", "community": 330, "community_name": "ChatEditCmd", "source_file": "", "file_type": "", "degree": 1}, {"id": "331", "label": "VoiceE2EEOfferCmd", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "VoiceE2EEOfferCmd", "community": 331, "community_name": "VoiceE2EEOfferCmd", "source_file": "", "file_type": "", "degree": 1}, {"id": "332", "label": "VoiceModDeafenCmd", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "VoiceModDeafenCmd", "community": 332, "community_name": "VoiceModDeafenCmd", "source_file": "", "file_type": "", "degree": 1}, {"id": "333", "label": "VoiceModMuteCmd", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "VoiceModMuteCmd", "community": 333, "community_name": "VoiceModMuteCmd", "source_file": "", "file_type": "", "degree": 1}, {"id": "334", "label": "TestHandlePresenceUpdate_BareStatusReadFailureAbortsBeforeCommit", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "TestHandlePresenceUpdate_BareStatusReadFailureAbortsBeforeCommit", "community": 334, "community_name": "TestHandlePresenceUpdate_BareStatusReadFailureAbortsBeforeCommit", "source_file": "", "file_type": "", "degree": 4}, {"id": "335", "label": "New", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "New", "community": 335, "community_name": "New", "source_file": "", "file_type": "", "degree": 22}, {"id": "336", "label": "GET /api/v1/client-update/{target}/{current_version}", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "GET /api/v1/client-update/{target}/{current_version}", "community": 336, "community_name": "GET /api/v1/client-update/{target}/{current_version}", "source_file": "", "file_type": "", "degree": 1}, {"id": "337", "label": "OwnCord Architecture Blueprints", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "OwnCord Architecture Blueprints", "community": 337, "community_name": "OwnCord Architecture Blueprints", "source_file": "", "file_type": "", "degree": 1}, {"id": "338", "label": "Voice End-to-End Encryption", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Voice End-to-End Encryption", "community": 338, "community_name": "Voice End-to-End Encryption", "source_file": "", "file_type": "", "degree": 1}, {"id": "339", "label": "feature_request.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "feature_request.md", "community": 339, "community_name": "feature_request.md", "source_file": "", "file_type": "", "degree": 0}, {"id": "340", "label": "volume-menu.test.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "volume-menu.test.ts", "community": 340, "community_name": "volume-menu.test.ts", "source_file": "", "file_type": "", "degree": 1}, {"id": "341", "label": "buildMetricsRouter", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "buildMetricsRouter", "community": 341, "community_name": "buildMetricsRouter", "source_file": "", "file_type": "", "degree": 3}, {"id": "342", "label": "RunningInContainer", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "RunningInContainer", "community": 342, "community_name": "RunningInContainer", "source_file": "", "file_type": "", "degree": 2}, {"id": "343", "label": "ChatDeleteCmd", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "ChatDeleteCmd", "community": 343, "community_name": "ChatDeleteCmd", "source_file": "", "file_type": "", "degree": 1}, {"id": "344", "label": "Permission-Middleware Consolidation (audit finding A-2026-07-16) \u2014 Design", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Permission-Middleware Consolidation (audit finding A-2026-07-16) \u2014 Design", "community": 344, "community_name": "Permission-Middleware Consolidation (audit finding A-2026-07-16) \u2014 Design", "source_file": "", "file_type": "", "degree": 1}, {"id": "345", "label": "MessageDeletedDMEvent", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "MessageDeletedDMEvent", "community": 345, "community_name": "MessageDeletedDMEvent", "source_file": "", "file_type": "", "degree": 1}, {"id": "346", "label": "MessageEditedDMEvent", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "MessageEditedDMEvent", "community": 346, "community_name": "MessageEditedDMEvent", "source_file": "", "file_type": "", "degree": 1}, {"id": "347", "label": "MessageSentDMEvent", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "MessageSentDMEvent", "community": 347, "community_name": "MessageSentDMEvent", "source_file": "", "file_type": "", "degree": 1}, {"id": "348", "label": "PresenceUpdateCmd", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "PresenceUpdateCmd", "community": 348, "community_name": "PresenceUpdateCmd", "source_file": "", "file_type": "", "degree": 1}, {"id": "349", "label": "ReactionAddCmd", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "ReactionAddCmd", "community": 349, "community_name": "ReactionAddCmd", "source_file": "", "file_type": "", "degree": 1}, {"id": "350", "label": "PresenceOthersEvent", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "PresenceOthersEvent", "community": 350, "community_name": "PresenceOthersEvent", "source_file": "", "file_type": "", "degree": 1}, {"id": "351", "label": "ReactionRemoveCmd", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "ReactionRemoveCmd", "community": 351, "community_name": "ReactionRemoveCmd", "source_file": "", "file_type": "", "degree": 1}, {"id": "352", "label": "stubExcludeSenderEvent", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "stubExcludeSenderEvent", "community": 352, "community_name": "stubExcludeSenderEvent", "source_file": "", "file_type": "", "degree": 1}, {"id": "353", "label": "stubSequencedDMEvent", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "stubSequencedDMEvent", "community": 353, "community_name": "stubSequencedDMEvent", "source_file": "", "file_type": "", "degree": 1}, {"id": "354", "label": "stubVoiceChannelEvent", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "stubVoiceChannelEvent", "community": 354, "community_name": "stubVoiceChannelEvent", "source_file": "", "file_type": "", "degree": 1}, {"id": "355", "label": "stubVoiceChannelGuardedEvent", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "stubVoiceChannelGuardedEvent", "community": 355, "community_name": "stubVoiceChannelGuardedEvent", "source_file": "", "file_type": "", "degree": 1}, {"id": "356", "label": "ReactionDMEvent", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "ReactionDMEvent", "community": 356, "community_name": "ReactionDMEvent", "source_file": "", "file_type": "", "degree": 1}, {"id": "357", "label": "VoiceE2EEAnnounceCmd", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "VoiceE2EEAnnounceCmd", "community": 357, "community_name": "VoiceE2EEAnnounceCmd", "source_file": "", "file_type": "", "degree": 1}, {"id": "358", "label": "TypingChannelEvent", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "TypingChannelEvent", "community": 358, "community_name": "TypingChannelEvent", "source_file": "", "file_type": "", "degree": 1}, {"id": "359", "label": "VoiceE2EEAnnounceEvent", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "VoiceE2EEAnnounceEvent", "community": 359, "community_name": "VoiceE2EEAnnounceEvent", "source_file": "", "file_type": "", "degree": 1}, {"id": "360", "label": "VoiceModMoveCmd", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "VoiceModMoveCmd", "community": 360, "community_name": "VoiceModMoveCmd", "source_file": "", "file_type": "", "degree": 1}, {"id": "361", "label": "OwnCord", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "OwnCord", "community": 361, "community_name": "OwnCord", "source_file": "", "file_type": "", "degree": 0}, {"id": "362", "label": "OwnCord Client (Tauri v2)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "OwnCord Client (Tauri v2)", "community": 362, "community_name": "OwnCord Client (Tauri v2)", "source_file": "", "file_type": "", "degree": 0}, {"id": "363", "label": "VadProcessor", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "VadProcessor", "community": 363, "community_name": "VadProcessor", "source_file": "", "file_type": "", "degree": 0}, {"id": "364", "label": "log_level_from_env", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "log_level_from_env", "community": 364, "community_name": "log_level_from_env", "source_file": "", "file_type": "", "degree": 0}, {"id": "365", "label": "TestHandleVoiceCameraV2_RefusedWhenScreenshareSlotFull", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "TestHandleVoiceCameraV2_RefusedWhenScreenshareSlotFull", "community": 365, "community_name": "TestHandleVoiceCameraV2_RefusedWhenScreenshareSlotFull", "source_file": "", "file_type": "", "degree": 5}, {"id": "366", "label": "VoiceE2EEOfferGuardedEvent", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "VoiceE2EEOfferGuardedEvent", "community": 366, "community_name": "VoiceE2EEOfferGuardedEvent", "source_file": "", "file_type": "", "degree": 1}, {"id": "367", "label": "File Upload and Serving", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "File Upload and Serving", "community": 367, "community_name": "File Upload and Serving", "source_file": "", "file_type": "", "degree": 1}, {"id": "368", "label": "Server Logs (SSE)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Server Logs (SSE)", "community": 368, "community_name": "Server Logs (SSE)", "source_file": "", "file_type": "", "degree": 1}, {"id": "369", "label": "D5 \u2014 Entity-relationship overview", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "D5 \u2014 Entity-relationship overview", "community": 369, "community_name": "D5 \u2014 Entity-relationship overview", "source_file": "", "file_type": "", "degree": 1}, {"id": "370", "label": "CallSignalEvent", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "CallSignalEvent", "community": 370, "community_name": "CallSignalEvent", "source_file": "", "file_type": "", "degree": 1}, {"id": "371", "label": "DMChannelOpenEvent", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "DMChannelOpenEvent", "community": 371, "community_name": "DMChannelOpenEvent", "source_file": "", "file_type": "", "degree": 1}, {"id": "372", "label": "MessageDeletedChannelEvent", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "MessageDeletedChannelEvent", "community": 372, "community_name": "MessageDeletedChannelEvent", "source_file": "", "file_type": "", "degree": 1}, {"id": "373", "label": "DM Calls", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "DM Calls", "community": 373, "community_name": "DM Calls", "source_file": "", "file_type": "", "degree": 1}, {"id": "374", "label": "Channel Updates", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Channel Updates", "community": 374, "community_name": "Channel Updates", "source_file": "", "file_type": "", "degree": 1}, {"id": "375", "label": "Heartbeat and Connection Liveness", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Heartbeat and Connection Liveness", "community": 375, "community_name": "Heartbeat and Connection Liveness", "source_file": "", "file_type": "", "degree": 1}, {"id": "376", "label": "Message Type Reference Table", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Message Type Reference Table", "community": 376, "community_name": "Message Type Reference Table", "source_file": "", "file_type": "", "degree": 1}, {"id": "377", "label": "Direct Messages", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Direct Messages", "community": 377, "community_name": "Direct Messages", "source_file": "", "file_type": "", "degree": 1}, {"id": "378", "label": "OwnCord Server (Go)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "OwnCord Server (Go)", "community": 378, "community_name": "OwnCord Server (Go)", "source_file": "", "file_type": "", "degree": 0}, {"id": "379", "label": "MessageEditedChannelEvent", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "MessageEditedChannelEvent", "community": 379, "community_name": "MessageEditedChannelEvent", "source_file": "", "file_type": "", "degree": 1}, {"id": "380", "label": "CallDeclineCmd", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "CallDeclineCmd", "community": 380, "community_name": "CallDeclineCmd", "source_file": "", "file_type": "", "degree": 1}, {"id": "381", "label": "CallRingCmd", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "CallRingCmd", "community": 381, "community_name": "CallRingCmd", "source_file": "", "file_type": "", "degree": 1}, {"id": "382", "label": "MessageSentChannelEvent", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "MessageSentChannelEvent", "community": 382, "community_name": "MessageSentChannelEvent", "source_file": "", "file_type": "", "degree": 1}, {"id": "383", "label": "ChannelFocusCmd", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "ChannelFocusCmd", "community": 383, "community_name": "ChannelFocusCmd", "source_file": "", "file_type": "", "degree": 1}, {"id": "384", "label": "PluginBroadcastEvent", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "PluginBroadcastEvent", "community": 384, "community_name": "PluginBroadcastEvent", "source_file": "", "file_type": "", "degree": 1}, {"id": "385", "label": "MarkReadCmd", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "MarkReadCmd", "community": 385, "community_name": "MarkReadCmd", "source_file": "", "file_type": "", "degree": 1}, {"id": "386", "label": "PresenceSelfEvent", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "PresenceSelfEvent", "community": 386, "community_name": "PresenceSelfEvent", "source_file": "", "file_type": "", "degree": 1}, {"id": "387", "label": "ReactionChannelEvent", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "ReactionChannelEvent", "community": 387, "community_name": "ReactionChannelEvent", "source_file": "", "file_type": "", "degree": 1}, {"id": "388", "label": "TypingDMEvent", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "TypingDMEvent", "community": 388, "community_name": "TypingDMEvent", "source_file": "", "file_type": "", "degree": 1}, {"id": "389", "label": "VoiceStateEvent", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "VoiceStateEvent", "community": 389, "community_name": "VoiceStateEvent", "source_file": "", "file_type": "", "degree": 1}, {"id": "390", "label": "TestDeleteExpiredSessions_SargableFormat", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "TestDeleteExpiredSessions_SargableFormat", "community": 390, "community_name": "TestDeleteExpiredSessions_SargableFormat", "source_file": "", "file_type": "", "degree": 2}, {"id": "391", "label": ".EmitEvents", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": ".EmitEvents", "community": 391, "community_name": ".EmitEvents", "source_file": "", "file_type": "", "degree": 1}, {"id": "392", "label": "stubChannelEvent", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "stubChannelEvent", "community": 392, "community_name": "stubChannelEvent", "source_file": "", "file_type": "", "degree": 1}, {"id": "393", "label": "stubUserTargetedEvent", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "stubUserTargetedEvent", "community": 393, "community_name": "stubUserTargetedEvent", "source_file": "", "file_type": "", "degree": 1}, {"id": "394", "label": "TestPresenceEvents_InvisibleBlanksCustomStatusForOthers", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "TestPresenceEvents_InvisibleBlanksCustomStatusForOthers", "community": 394, "community_name": "TestPresenceEvents_InvisibleBlanksCustomStatusForOthers", "source_file": "", "file_type": "", "degree": 2}, {"id": "395", "label": "TypingStartCmd", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "TypingStartCmd", "community": 395, "community_name": "TypingStartCmd", "source_file": "", "file_type": "", "degree": 1}, {"id": "396", "label": "VoiceCameraCmd", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "VoiceCameraCmd", "community": 396, "community_name": "VoiceCameraCmd", "source_file": "", "file_type": "", "degree": 1}, {"id": "397", "label": "VoiceDeafenCmd", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "VoiceDeafenCmd", "community": 397, "community_name": "VoiceDeafenCmd", "source_file": "", "file_type": "", "degree": 1}, {"id": "398", "label": "VoiceJoinCmd", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "VoiceJoinCmd", "community": 398, "community_name": "VoiceJoinCmd", "source_file": "", "file_type": "", "degree": 1}, {"id": "399", "label": "VoiceMuteCmd", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "VoiceMuteCmd", "community": 399, "community_name": "VoiceMuteCmd", "source_file": "", "file_type": "", "degree": 1}, {"id": "400", "label": "VoiceScreenshareCmd", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "VoiceScreenshareCmd", "community": 400, "community_name": "VoiceScreenshareCmd", "source_file": "", "file_type": "", "degree": 1}, {"id": "401", "label": "PresenceEvent", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "PresenceEvent", "community": 401, "community_name": "PresenceEvent", "source_file": "", "file_type": "", "degree": 1}, {"id": "402", "label": "errDMChannelIDsStore", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "errDMChannelIDsStore", "community": 402, "community_name": "errDMChannelIDsStore", "source_file": "", "file_type": "", "degree": 3}, {"id": "403", "label": "db-change", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "db-change", "community": 403, "community_name": "db-change", "source_file": "", "file_type": "", "degree": 0}, {"id": "404", "label": "enable_media_capture", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "enable_media_capture", "community": 404, "community_name": "enable_media_capture", "source_file": "", "file_type": "", "degree": 0}, {"id": "405", "label": "admin-panel.spec.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "admin-panel.spec.ts", "community": 405, "community_name": "admin-panel.spec.ts", "source_file": "", "file_type": "", "degree": 0}, {"id": "406", "label": "start-server.sh", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "start-server.sh", "community": 406, "community_name": "start-server.sh", "source_file": "", "file_type": "", "degree": 0}, {"id": "407", "label": "Channel Focus and Read State", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Channel Focus and Read State", "community": 407, "community_name": "Channel Focus and Read State", "source_file": "", "file_type": "", "degree": 1}, {"id": "408", "label": "Error Handling", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Error Handling", "community": 408, "community_name": "Error Handling", "source_file": "", "file_type": "", "degree": 1}, {"id": "409", "label": "Presence", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Presence", "community": 409, "community_name": "Presence", "source_file": "", "file_type": "", "degree": 1}, {"id": "410", "label": "Transport Layer", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Transport Layer", "community": 410, "community_name": "Transport Layer", "source_file": "", "file_type": "", "degree": 1}, {"id": "411", "label": "pre-commit", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "pre-commit", "community": 411, "community_name": "pre-commit", "source_file": "", "file_type": "", "degree": 0}, {"id": "412", "label": "pre-push", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "pre-push", "community": 412, "community_name": "pre-push", "source_file": "", "file_type": "", "degree": 0}, {"id": "413", "label": "stubBroadcastAllEvent", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "stubBroadcastAllEvent", "community": 413, "community_name": "stubBroadcastAllEvent", "source_file": "", "file_type": "", "degree": 1}, {"id": "416", "label": "015_plugins.sql", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "015_plugins.sql", "community": 416, "community_name": "015_plugins.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "417", "label": "tryLoadPluginTOML", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "tryLoadPluginTOML", "community": 417, "community_name": "tryLoadPluginTOML", "source_file": "", "file_type": "", "degree": 0}, {"id": "418", "label": "tryLoadPluginTOML", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "tryLoadPluginTOML", "community": 418, "community_name": "tryLoadPluginTOML", "source_file": "", "file_type": "", "degree": 0}, {"id": "424", "label": "protocol-change/SKILL.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "protocol-change/SKILL.md", "community": 424, "community_name": "protocol-change/SKILL.md", "source_file": "", "file_type": "", "degree": 0}, {"id": "425", "label": "strip-appimage-bundled-libs.sh", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "strip-appimage-bundled-libs.sh", "community": 425, "community_name": "strip-appimage-bundled-libs.sh", "source_file": "", "file_type": "", "degree": 0}, {"id": "426", "label": "build.rs", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "build.rs", "community": 426, "community_name": "build.rs", "source_file": "", "file_type": "", "degree": 0}, {"id": "427", "label": "main.rs", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "main.rs", "community": 427, "community_name": "main.rs", "source_file": "", "file_type": "", "degree": 0}, {"id": "428", "label": "jitsi-rnnoise.d.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "jitsi-rnnoise.d.ts", "community": 428, "community_name": "jitsi-rnnoise.d.ts", "source_file": "", "file_type": "", "degree": 0}, {"id": "429", "label": "stryker.config.mjs", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "stryker.config.mjs", "community": 429, "community_name": "stryker.config.mjs", "source_file": "", "file_type": "", "degree": 0}, {"id": "430", "label": "setup.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "setup.ts", "community": 430, "community_name": "setup.ts", "source_file": "", "file_type": "", "degree": 0}, {"id": "431", "label": "appearance-high-contrast.test.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "appearance-high-contrast.test.ts", "community": 431, "community_name": "appearance-high-contrast.test.ts", "source_file": "", "file_type": "", "degree": 0}, {"id": "432", "label": "base-font-size-css.test.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "base-font-size-css.test.ts", "community": 432, "community_name": "base-font-size-css.test.ts", "source_file": "", "file_type": "", "degree": 0}, {"id": "433", "label": "vite.config.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "vite.config.ts", "community": 433, "community_name": "vite.config.ts", "source_file": "", "file_type": "", "degree": 0}, {"id": "434", "label": "Querier", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Querier", "community": 434, "community_name": "Querier", "source_file": "", "file_type": "", "degree": 0}, {"id": "435", "label": ".serialize", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": ".serialize", "community": 435, "community_name": ".serialize", "source_file": "", "file_type": "", "degree": 0}, {"id": "436", "label": "lockfile_other.go", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "lockfile_other.go", "community": 436, "community_name": "lockfile_other.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "437", "label": "lockfile_unix.go", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "lockfile_unix.go", "community": 437, "community_name": "lockfile_unix.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "438", "label": "lockfile_windows.go", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "lockfile_windows.go", "community": 438, "community_name": "lockfile_windows.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "439", "label": "free_other.go", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "free_other.go", "community": 439, "community_name": "free_other.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "440", "label": "free_unix.go", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "free_unix.go", "community": 440, "community_name": "free_unix.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "441", "label": "free_windows.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "free_windows.go", "community": 441, "community_name": "free_windows.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "442", "label": "003_audit_log.sql", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "003_audit_log.sql", "community": 442, "community_name": "003_audit_log.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "443", "label": "011_rate_lockouts.sql", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "011_rate_lockouts.sql", "community": 443, "community_name": "011_rate_lockouts.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "444", "label": "014_events_table.sql", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "014_events_table.sql", "community": 444, "community_name": "014_events_table.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "445", "label": "chaos-test.sh", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "chaos-test.sh", "community": 445, "community_name": "chaos-test.sh", "source_file": "", "file_type": "", "degree": 0}, {"id": "446", "label": "voice-test.sh", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "voice-test.sh", "community": 446, "community_name": "voice-test.sh", "source_file": "", "file_type": "", "degree": 0}, {"id": "447", "label": "proc_spawner_nix.go", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "proc_spawner_nix.go", "community": 447, "community_name": "proc_spawner_nix.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "448", "label": "proc_spawner_win.go", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "proc_spawner_win.go", "community": 448, "community_name": "proc_spawner_win.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "449", "label": "RateLimiter", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.1, "font": {"size": 12, "color": "#ffffff"}, "title": "RateLimiter", "community": 449, "community_name": "RateLimiter", "source_file": "", "file_type": "", "degree": 37}, {"id": "450", "label": "playwright.config.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "playwright.config.ts", "community": 450, "community_name": "playwright.config.ts", "source_file": "", "file_type": "", "degree": 0}, {"id": "451", "label": "playwright.config.admin.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "playwright.config.admin.ts", "community": 451, "community_name": "playwright.config.admin.ts", "source_file": "", "file_type": "", "degree": 0}, {"id": "452", "label": "playwright.config.native.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "playwright.config.native.ts", "community": 452, "community_name": "playwright.config.native.ts", "source_file": "", "file_type": "", "degree": 0}, {"id": "453", "label": "playwright.config.prod.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "playwright.config.prod.ts", "community": 453, "community_name": "playwright.config.prod.ts", "source_file": "", "file_type": "", "degree": 0}, {"id": "454", "label": "constants.rs", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "constants.rs", "community": 454, "community_name": "constants.rs", "source_file": "", "file_type": "", "degree": 0}, {"id": "455", "label": "vite-env.d.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "vite-env.d.ts", "community": 455, "community_name": "vite-env.d.ts", "source_file": "", "file_type": "", "degree": 0}, {"id": "456", "label": "smoke.test.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "smoke.test.ts", "community": 456, "community_name": "smoke.test.ts", "source_file": "", "file_type": "", "degree": 0}, {"id": "457", "label": ".addEventListener", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": ".addEventListener", "community": 457, "community_name": ".addEventListener", "source_file": "", "file_type": "", "degree": 0}, {"id": "458", "label": "tauri-conf-webview2-args.test.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "tauri-conf-webview2-args.test.ts", "community": 458, "community_name": "tauri-conf-webview2-args.test.ts", "source_file": "", "file_type": "", "degree": 0}, {"id": "459", "label": "video-grid-track-muted-css.test.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "video-grid-track-muted-css.test.ts", "community": 459, "community_name": "video-grid-track-muted-css.test.ts", "source_file": "", "file_type": "", "degree": 0}, {"id": "460", "label": "vitest.config.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "vitest.config.ts", "community": 460, "community_name": "vitest.config.ts", "source_file": "", "file_type": "", "degree": 0}, {"id": "461", "label": "vitest.config.browser.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "vitest.config.browser.ts", "community": 461, "community_name": "vitest.config.browser.ts", "source_file": "", "file_type": "", "degree": 0}, {"id": "462", "label": "github.com/owncord/server", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "github.com/owncord/server", "community": 462, "community_name": "github.com/owncord/server", "source_file": "", "file_type": "", "degree": 0}, {"id": "463", "label": "owncord-client", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "owncord-client", "community": 463, "community_name": "owncord-client", "source_file": "", "file_type": "", "degree": 0}, {"id": "464", "label": "auth.go", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "auth.go", "community": 464, "community_name": "auth.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "465", "label": "auth/constants.go", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "auth/constants.go", "community": 465, "community_name": "auth/constants.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "466", "label": "config/constants.go", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "config/constants.go", "community": 466, "community_name": "config/constants.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "467", "label": "apitoken_queries.go", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "apitoken_queries.go", "community": 467, "community_name": "apitoken_queries.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "468", "label": "block_queries.go", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "block_queries.go", "community": 468, "community_name": "block_queries.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "469", "label": "emoji_queries.go", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "emoji_queries.go", "community": 469, "community_name": "emoji_queries.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "470", "label": "invite_queries.go", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "invite_queries.go", "community": 470, "community_name": "invite_queries.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "471", "label": "lockout_queries.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "lockout_queries.go", "community": 471, "community_name": "lockout_queries.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "472", "label": "db/logvalue.go", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "db/logvalue.go", "community": 472, "community_name": "db/logvalue.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "473", "label": "profile_queries.go", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "profile_queries.go", "community": 473, "community_name": "profile_queries.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "474", "label": "admin.sql", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "admin.sql", "community": 474, "community_name": "admin.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "475", "label": "apitokens.sql", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "apitokens.sql", "community": 475, "community_name": "apitokens.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "476", "label": "attachments.sql", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "attachments.sql", "community": 476, "community_name": "attachments.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "477", "label": "blocks.sql", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "blocks.sql", "community": 477, "community_name": "blocks.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "478", "label": "channels.sql", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "channels.sql", "community": 478, "community_name": "channels.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "479", "label": "dm.sql", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "dm.sql", "community": 479, "community_name": "dm.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "480", "label": "emoji.sql", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "emoji.sql", "community": 480, "community_name": "emoji.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "481", "label": "events.sql", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "events.sql", "community": 481, "community_name": "events.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "482", "label": "invites.sql", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "invites.sql", "community": 482, "community_name": "invites.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "483", "label": "lockouts.sql", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "lockouts.sql", "community": 483, "community_name": "lockouts.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "484", "label": "messages.sql", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "messages.sql", "community": 484, "community_name": "messages.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "485", "label": "plugins.sql", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "plugins.sql", "community": 485, "community_name": "plugins.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "486", "label": "profile.sql", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "profile.sql", "community": 486, "community_name": "profile.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "487", "label": "reactions.sql", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "reactions.sql", "community": 487, "community_name": "reactions.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "488", "label": "roles.sql", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "roles.sql", "community": 488, "community_name": "roles.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "489", "label": "sessions.sql", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "sessions.sql", "community": 489, "community_name": "sessions.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "490", "label": "users.sql", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "users.sql", "community": 490, "community_name": "users.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "491", "label": "voice.sql", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "voice.sql", "community": 491, "community_name": "voice.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "492", "label": "diskutil.go", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "diskutil.go", "community": 492, "community_name": "diskutil.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "493", "label": "004_voice_optimization.sql", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "004_voice_optimization.sql", "community": 493, "community_name": "004_voice_optimization.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "494", "label": "005_fix_member_permissions.sql", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "005_fix_member_permissions.sql", "community": 494, "community_name": "005_fix_member_permissions.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "495", "label": "006_channel_overrides_index.sql", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "006_channel_overrides_index.sql", "community": 495, "community_name": "006_channel_overrides_index.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "496", "label": "007_member_video_permissions.sql", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "007_member_video_permissions.sql", "community": 496, "community_name": "007_member_video_permissions.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "497", "label": "008_attachment_dimensions.sql", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "008_attachment_dimensions.sql", "community": 497, "community_name": "008_attachment_dimensions.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "498", "label": "attachments", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "attachments", "community": 498, "community_name": "attachments", "source_file": "", "file_type": "", "degree": 0}, {"id": "499", "label": "010_attachment_uploader.sql", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "010_attachment_uploader.sql", "community": 499, "community_name": "010_attachment_uploader.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "500", "label": "attachments", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "attachments", "community": 500, "community_name": "attachments", "source_file": "", "file_type": "", "degree": 0}, {"id": "501", "label": "013_channel_type_constraint.sql", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "013_channel_type_constraint.sql", "community": 501, "community_name": "013_channel_type_constraint.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "502", "label": "016_announcement_channel_type.sql", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "016_announcement_channel_type.sql", "community": 502, "community_name": "016_announcement_channel_type.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "503", "label": "017_user_identity_key.sql", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "017_user_identity_key.sql", "community": 503, "community_name": "017_user_identity_key.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "504", "label": "019_perf_indexes.sql", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "019_perf_indexes.sql", "community": 504, "community_name": "019_perf_indexes.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "505", "label": "020_drop_redundant_indexes.sql", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "020_drop_redundant_indexes.sql", "community": 505, "community_name": "020_drop_redundant_indexes.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "506", "label": "021_voice_server_moderation.sql", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "021_voice_server_moderation.sql", "community": 506, "community_name": "021_voice_server_moderation.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "507", "label": "023_role_management.sql", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "023_role_management.sql", "community": 507, "community_name": "023_role_management.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "508", "label": "025_channel_nsfw.sql", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "025_channel_nsfw.sql", "community": 508, "community_name": "025_channel_nsfw.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "509", "label": "026_emoji_mime.sql", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "026_emoji_mime.sql", "community": 509, "community_name": "026_emoji_mime.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "510", "label": "emoji", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "emoji", "community": 510, "community_name": "emoji", "source_file": "", "file_type": "", "degree": 0}, {"id": "511", "label": "027_user_profile_fields.sql", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "027_user_profile_fields.sql", "community": 511, "community_name": "027_user_profile_fields.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "512", "label": "028_group_dms.sql", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "028_group_dms.sql", "community": 512, "community_name": "028_group_dms.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "513", "label": "029_drop_sounds_table.sql", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "029_drop_sounds_table.sql", "community": 513, "community_name": "029_drop_sounds_table.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "514", "label": "031_sessions_expiry_index.sql", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "031_sessions_expiry_index.sql", "community": 514, "community_name": "031_sessions_expiry_index.sql", "source_file": "", "file_type": "", "degree": 0}, {"id": "515", "label": "migrations.go", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "migrations.go", "community": 515, "community_name": "migrations.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "516", "label": "plugin/errors.go", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "plugin/errors.go", "community": 516, "community_name": "plugin/errors.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "517", "label": "host_storage.go", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "host_storage.go", "community": 517, "community_name": "host_storage.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "518", "label": "host_ui.go", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "host_ui.go", "community": 518, "community_name": "host_ui.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "519", "label": "message_crud.go", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "message_crud.go", "community": 519, "community_name": "message_crud.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "520", "label": "message_purge.go", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "message_purge.go", "community": 520, "community_name": "message_purge.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "521", "label": "mutex.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "mutex.go", "community": 521, "community_name": "mutex.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "522", "label": "mutex_deadlock.go", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "mutex_deadlock.go", "community": 522, "community_name": "mutex_deadlock.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "523", "label": "mutex_prod.go", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "mutex_prod.go", "community": 523, "community_name": "mutex_prod.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "524", "label": "emit.go", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "emit.go", "community": 524, "community_name": "emit.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "525", "label": "ws/errors.go", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "ws/errors.go", "community": 525, "community_name": "ws/errors.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "526", "label": "handlers.go", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "handlers.go", "community": 526, "community_name": "handlers.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "527", "label": "hub_livekit.go", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "hub_livekit.go", "community": 527, "community_name": "hub_livekit.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "528", "label": "hub_sweep.go", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "hub_sweep.go", "community": 528, "community_name": "hub_sweep.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "529", "label": "message_types.go", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "message_types.go", "community": 529, "community_name": "message_types.go", "source_file": "", "file_type": "", "degree": 0}, {"id": "530", "label": ".RoundTrip", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": ".RoundTrip", "community": 530, "community_name": ".RoundTrip", "source_file": "", "file_type": "", "degree": 2}, {"id": "531", "label": "docker-smoke.sh", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "docker-smoke.sh", "community": 531, "community_name": "docker-smoke.sh", "source_file": "", "file_type": "", "degree": 0}, {"id": "532", "label": "TestRegisterNow_ReplacementNeverLosesAConcurrentGlobalBroadcast", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "TestRegisterNow_ReplacementNeverLosesAConcurrentGlobalBroadcast", "community": 532, "community_name": "TestRegisterNow_ReplacementNeverLosesAConcurrentGlobalBroadcast", "source_file": "", "file_type": "", "degree": 4}, {"id": "533", "label": "prettier", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "prettier", "community": 533, "community_name": "prettier", "source_file": "", "file_type": "", "degree": 1}, {"id": "534", "label": "@vitest/browser", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "@vitest/browser", "community": 534, "community_name": "@vitest/browser", "source_file": "", "file_type": "", "degree": 1}, {"id": "535", "label": "@vitest/coverage-v8", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "@vitest/coverage-v8", "community": 535, "community_name": "@vitest/coverage-v8", "source_file": "", "file_type": "", "degree": 1}];
|
|
const RAW_EDGES = [{"from": "0", "to": "12", "label": "11 cross-community edges", "title": "11 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "0", "to": "3", "label": "15 cross-community edges", "title": "15 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "0", "to": "4", "label": "41 cross-community edges", "title": "41 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "0", "to": "44", "label": "25 cross-community edges", "title": "25 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "0", "to": "32", "label": "33 cross-community edges", "title": "33 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "0", "to": "1", "label": "39 cross-community edges", "title": "39 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "0", "to": "16", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "0", "to": "37", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "0", "to": "8", "label": "14 cross-community edges", "title": "14 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "0", "to": "36", "label": "28 cross-community edges", "title": "28 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "0", "to": "20", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "0", "to": "155", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "1", "to": "16", "label": "37 cross-community edges", "title": "37 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "1", "to": "32", "label": "136 cross-community edges", "title": "136 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "1", "to": "252", "label": "43 cross-community edges", "title": "43 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "1", "to": "44", "label": "94 cross-community edges", "title": "94 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "1", "to": "37", "label": "51 cross-community edges", "title": "51 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "1", "to": "3", "label": "28 cross-community edges", "title": "28 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "1", "to": "8", "label": "54 cross-community edges", "title": "54 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "1", "to": "36", "label": "62 cross-community edges", "title": "62 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "1", "to": "54", "label": "17 cross-community edges", "title": "17 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "1", "to": "155", "label": "24 cross-community edges", "title": "24 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "1", "to": "4", "label": "28 cross-community edges", "title": "28 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "1", "to": "12", "label": "11 cross-community edges", "title": "11 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "1", "to": "177", "label": "14 cross-community edges", "title": "14 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "1", "to": "188", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "1", "to": "159", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "1", "to": "20", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "1", "to": "9", "label": "57 cross-community edges", "title": "57 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "1", "to": "205", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "1", "to": "297", "label": "12 cross-community edges", "title": "12 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "1", "to": "269", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "1", "to": "89", "label": "14 cross-community edges", "title": "14 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "1", "to": "167", "label": "10 cross-community edges", "title": "10 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "1", "to": "247", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "10", "label": "19 cross-community edges", "title": "19 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "101", "label": "15 cross-community edges", "title": "15 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "103", "label": "27 cross-community edges", "title": "27 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "390", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "104", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "107", "label": "14 cross-community edges", "title": "14 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "108", "label": "23 cross-community edges", "title": "23 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "11", "label": "115 cross-community edges", "title": "115 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "29", "label": "20 cross-community edges", "title": "20 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "18", "label": "78 cross-community edges", "title": "78 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "112", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "113", "label": "20 cross-community edges", "title": "20 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "114", "label": "20 cross-community edges", "title": "20 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "116", "label": "18 cross-community edges", "title": "18 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "151", "label": "18 cross-community edges", "title": "18 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "118", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "42", "label": "45 cross-community edges", "title": "45 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "119", "label": "24 cross-community edges", "title": "24 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "57", "label": "43 cross-community edges", "title": "43 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "121", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "122", "label": "21 cross-community edges", "title": "21 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "39", "label": "11 cross-community edges", "title": "11 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "98", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "125", "label": "17 cross-community edges", "title": "17 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "129", "label": "19 cross-community edges", "title": "19 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "13", "label": "104 cross-community edges", "title": "104 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "130", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "131", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "254", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "139", "label": "16 cross-community edges", "title": "16 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "140", "label": "15 cross-community edges", "title": "15 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "141", "label": "19 cross-community edges", "title": "19 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "142", "label": "12 cross-community edges", "title": "12 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "143", "label": "18 cross-community edges", "title": "18 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "144", "label": "19 cross-community edges", "title": "19 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "145", "label": "7 cross-community edges", "title": "7 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "146", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "148", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "15", "label": "46 cross-community edges", "title": "46 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "153", "label": "15 cross-community edges", "title": "15 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "156", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "161", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "185", "label": "10 cross-community edges", "title": "10 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "17", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "270", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "172", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "173", "label": "13 cross-community edges", "title": "13 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "279", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "132", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "176", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "248", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "182", "label": "21 cross-community edges", "title": "21 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "184", "label": "11 cross-community edges", "title": "11 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "19", "label": "75 cross-community edges", "title": "75 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "58", "label": "34 cross-community edges", "title": "34 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "194", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "195", "label": "12 cross-community edges", "title": "12 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "196", "label": "10 cross-community edges", "title": "10 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "197", "label": "14 cross-community edges", "title": "14 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "97", "label": "32 cross-community edges", "title": "32 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "78", "label": "32 cross-community edges", "title": "32 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "88", "label": "25 cross-community edges", "title": "25 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "99", "label": "25 cross-community edges", "title": "25 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "308", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "215", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "67", "label": "36 cross-community edges", "title": "36 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "51", "label": "48 cross-community edges", "title": "48 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "24", "label": "76 cross-community edges", "title": "76 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "59", "label": "43 cross-community edges", "title": "43 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "31", "label": "55 cross-community edges", "title": "55 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "22", "label": "65 cross-community edges", "title": "65 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "7", "label": "133 cross-community edges", "title": "133 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "223", "label": "11 cross-community edges", "title": "11 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "50", "label": "16 cross-community edges", "title": "16 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "74", "label": "38 cross-community edges", "title": "38 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "341", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "43", "label": "45 cross-community edges", "title": "45 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "92", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "35", "label": "44 cross-community edges", "title": "44 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "86", "label": "31 cross-community edges", "title": "31 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "83", "label": "21 cross-community edges", "title": "21 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "68", "label": "35 cross-community edges", "title": "35 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "52", "label": "25 cross-community edges", "title": "25 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "105", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "27", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "5", "label": "188 cross-community edges", "title": "188 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "34", "label": "58 cross-community edges", "title": "58 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "264", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "53", "label": "79 cross-community edges", "title": "79 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "25", "label": "71 cross-community edges", "title": "71 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "61", "label": "44 cross-community edges", "title": "44 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "263", "label": "10 cross-community edges", "title": "10 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "79", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "271", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "306", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "45", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "6", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "204", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "38", "label": "25 cross-community edges", "title": "25 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "213", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "334", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "335", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "75", "label": "18 cross-community edges", "title": "18 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "81", "label": "31 cross-community edges", "title": "31 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "91", "label": "29 cross-community edges", "title": "29 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "225", "label": "12 cross-community edges", "title": "12 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "230", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "85", "label": "42 cross-community edges", "title": "42 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "342", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "90", "label": "45 cross-community edges", "title": "45 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "208", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "124", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "273", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "41", "label": "44 cross-community edges", "title": "44 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "87", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "394", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "26", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "93", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "214", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "249", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "295", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "47", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "238", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "532", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "209", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "21", "label": "69 cross-community edges", "title": "69 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "62", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "365", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "261", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "311", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "96", "label": "7 cross-community edges", "title": "7 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "95", "label": "17 cross-community edges", "title": "17 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "55", "label": "44 cross-community edges", "title": "44 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "227", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "33", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "40", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "2", "to": "449", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "3", "to": "123", "label": "15 cross-community edges", "title": "15 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "3", "to": "12", "label": "10 cross-community edges", "title": "10 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "3", "to": "37", "label": "20 cross-community edges", "title": "20 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "3", "to": "205", "label": "17 cross-community edges", "title": "17 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "3", "to": "218", "label": "7 cross-community edges", "title": "7 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "3", "to": "84", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "3", "to": "4", "label": "67 cross-community edges", "title": "67 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "3", "to": "315", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "3", "to": "32", "label": "62 cross-community edges", "title": "62 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "3", "to": "44", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "3", "to": "16", "label": "7 cross-community edges", "title": "7 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "3", "to": "297", "label": "7 cross-community edges", "title": "7 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "3", "to": "20", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "3", "to": "135", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "3", "to": "243", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "3", "to": "54", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "3", "to": "167", "label": "12 cross-community edges", "title": "12 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "3", "to": "177", "label": "10 cross-community edges", "title": "10 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "3", "to": "155", "label": "13 cross-community edges", "title": "13 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "3", "to": "187", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "3", "to": "100", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "32", "label": "139 cross-community edges", "title": "139 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "12", "label": "35 cross-community edges", "title": "35 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "37", "label": "15 cross-community edges", "title": "15 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "16", "label": "24 cross-community edges", "title": "24 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "159", "label": "16 cross-community edges", "title": "16 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "44", "label": "31 cross-community edges", "title": "31 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "20", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "252", "label": "20 cross-community edges", "title": "20 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "187", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "9", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "36", "label": "63 cross-community edges", "title": "63 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "8", "label": "31 cross-community edges", "title": "31 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "54", "label": "13 cross-community edges", "title": "13 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "135", "label": "7 cross-community edges", "title": "7 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "177", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "5", "to": "34", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "5", "to": "25", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "5", "to": "39", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "5", "to": "86", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "5", "to": "61", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "10", "label": "24 cross-community edges", "title": "24 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "112", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "26", "label": "46 cross-community edges", "title": "46 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "45", "label": "40 cross-community edges", "title": "40 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "63", "label": "15 cross-community edges", "title": "15 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "114", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "120", "label": "7 cross-community edges", "title": "7 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "121", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "124", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "127", "label": "10 cross-community edges", "title": "10 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "130", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "132", "label": "19 cross-community edges", "title": "19 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "134", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "136", "label": "13 cross-community edges", "title": "13 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "137", "label": "12 cross-community edges", "title": "12 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "138", "label": "12 cross-community edges", "title": "12 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "142", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "145", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "146", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "148", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "153", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "161", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "169", "label": "12 cross-community edges", "title": "12 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "17", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "39", "label": "17 cross-community edges", "title": "17 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "74", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "279", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "33", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "62", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "174", "label": "7 cross-community edges", "title": "7 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "176", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "184", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "185", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "194", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "196", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "263", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "53", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "326", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "200", "label": "7 cross-community edges", "title": "7 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "87", "label": "10 cross-community edges", "title": "10 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "209", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "41", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "316", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "34", "label": "7 cross-community edges", "title": "7 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "83", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "40", "label": "14 cross-community edges", "title": "14 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "248", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "71", "label": "26 cross-community edges", "title": "26 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "227", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "46", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "214", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "22", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "232", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "233", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "238", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "241", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "244", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "30", "label": "43 cross-community edges", "title": "43 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "249", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "25", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "258", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "272", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "29", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "292", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "295", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "319", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "230", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "213", "label": "10 cross-community edges", "title": "10 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "402", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "334", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "449", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "47", "label": "30 cross-community edges", "title": "30 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "50", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "51", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "79", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "329", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "211", "label": "12 cross-community edges", "title": "12 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "72", "label": "18 cross-community edges", "title": "18 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "88", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "98", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "69", "label": "14 cross-community edges", "title": "14 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "75", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "82", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "208", "label": "7 cross-community edges", "title": "7 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "93", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "15", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "391", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "57", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "7", "to": "103", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "7", "to": "22", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "7", "to": "335", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "7", "to": "24", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "7", "to": "59", "label": "7 cross-community edges", "title": "7 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "7", "to": "33", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "7", "to": "35", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "7", "to": "51", "label": "26 cross-community edges", "title": "26 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "7", "to": "39", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "8", "to": "32", "label": "10 cross-community edges", "title": "10 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "8", "to": "37", "label": "11 cross-community edges", "title": "11 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "8", "to": "12", "label": "12 cross-community edges", "title": "12 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "8", "to": "252", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "8", "to": "36", "label": "12 cross-community edges", "title": "12 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "8", "to": "44", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "8", "to": "9", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "9", "to": "32", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "9", "to": "44", "label": "19 cross-community edges", "title": "19 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "9", "to": "12", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "9", "to": "36", "label": "38 cross-community edges", "title": "38 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "9", "to": "297", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "9", "to": "54", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "9", "to": "205", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "9", "to": "224", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "9", "to": "177", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "10", "to": "33", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "10", "to": "45", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "10", "to": "335", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "10", "to": "69", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "10", "to": "230", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "10", "to": "71", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "10", "to": "174", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "10", "to": "87", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "10", "to": "93", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "10", "to": "200", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "10", "to": "124", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "10", "to": "51", "label": "7 cross-community edges", "title": "7 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "10", "to": "26", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "10", "to": "279", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "10", "to": "96", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "10", "to": "82", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "10", "to": "29", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "10", "to": "68", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "10", "to": "27", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "11", "to": "103", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "11", "to": "108", "label": "39 cross-community edges", "title": "39 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "11", "to": "29", "label": "43 cross-community edges", "title": "43 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "11", "to": "18", "label": "73 cross-community edges", "title": "73 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "11", "to": "19", "label": "137 cross-community edges", "title": "137 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "11", "to": "21", "label": "122 cross-community edges", "title": "122 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "11", "to": "449", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "11", "to": "39", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "11", "to": "335", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "11", "to": "87", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "11", "to": "35", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "11", "to": "41", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "11", "to": "292", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "11", "to": "58", "label": "63 cross-community edges", "title": "63 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "11", "to": "151", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "11", "to": "116", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "11", "to": "55", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "11", "to": "134", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "12", "to": "32", "label": "20 cross-community edges", "title": "20 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "12", "to": "44", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "12", "to": "54", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "12", "to": "252", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "12", "to": "37", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "12", "to": "36", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "12", "to": "16", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "12", "to": "177", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "13", "to": "112", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "13", "to": "99", "label": "119 cross-community edges", "title": "119 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "13", "to": "78", "label": "166 cross-community edges", "title": "166 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "13", "to": "182", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "13", "to": "35", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "13", "to": "67", "label": "121 cross-community edges", "title": "121 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "13", "to": "88", "label": "72 cross-community edges", "title": "72 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "13", "to": "17", "label": "32 cross-community edges", "title": "32 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "13", "to": "51", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "13", "to": "39", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "13", "to": "176", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "13", "to": "280", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "13", "to": "145", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "13", "to": "139", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "13", "to": "146", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "13", "to": "71", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "13", "to": "148", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "13", "to": "308", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "13", "to": "215", "label": "36 cross-community edges", "title": "36 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "13", "to": "144", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "13", "to": "449", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "13", "to": "82", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "13", "to": "42", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "13", "to": "90", "label": "7 cross-community edges", "title": "7 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "14", "to": "175", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "15", "to": "114", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "15", "to": "142", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "15", "to": "62", "label": "27 cross-community edges", "title": "27 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "15", "to": "200", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "15", "to": "82", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "15", "to": "93", "label": "11 cross-community edges", "title": "11 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "15", "to": "47", "label": "7 cross-community edges", "title": "7 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "15", "to": "29", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "15", "to": "132", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "15", "to": "96", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "15", "to": "295", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "15", "to": "57", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "15", "to": "124", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "15", "to": "75", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "15", "to": "71", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "15", "to": "39", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "15", "to": "120", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "16", "to": "64", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "16", "to": "159", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "16", "to": "247", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "16", "to": "36", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "16", "to": "252", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "16", "to": "32", "label": "26 cross-community edges", "title": "26 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "16", "to": "309", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "16", "to": "44", "label": "7 cross-community edges", "title": "7 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "16", "to": "89", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "16", "to": "177", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "16", "to": "224", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "16", "to": "253", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "16", "to": "267", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "16", "to": "54", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "16", "to": "167", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "17", "to": "118", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "17", "to": "139", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "17", "to": "145", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "17", "to": "146", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "17", "to": "148", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "17", "to": "78", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "17", "to": "176", "label": "7 cross-community edges", "title": "7 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "17", "to": "326", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "17", "to": "71", "label": "11 cross-community edges", "title": "11 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "17", "to": "39", "label": "54 cross-community edges", "title": "54 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "17", "to": "33", "label": "25 cross-community edges", "title": "25 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "17", "to": "50", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "17", "to": "98", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "17", "to": "74", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "17", "to": "270", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "17", "to": "46", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "17", "to": "35", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "17", "to": "51", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "17", "to": "172", "label": "18 cross-community edges", "title": "18 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "17", "to": "82", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "17", "to": "29", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "17", "to": "57", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "17", "to": "280", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "17", "to": "342", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "103", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "107", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "108", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "29", "label": "14 cross-community edges", "title": "14 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "449", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "19", "label": "35 cross-community edges", "title": "35 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "151", "label": "11 cross-community edges", "title": "11 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "173", "label": "11 cross-community edges", "title": "11 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "532", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "21", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "35", "label": "10 cross-community edges", "title": "10 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "238", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "55", "label": "12 cross-community edges", "title": "12 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "116", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "254", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "248", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "58", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "87", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "185", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "39", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "335", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "26", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "19", "to": "103", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "19", "to": "108", "label": "17 cross-community edges", "title": "17 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "19", "to": "39", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "19", "to": "21", "label": "24 cross-community edges", "title": "24 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "19", "to": "58", "label": "87 cross-community edges", "title": "87 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "19", "to": "29", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "19", "to": "335", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "19", "to": "87", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "19", "to": "35", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "19", "to": "449", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "19", "to": "241", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "20", "to": "84", "label": "25 cross-community edges", "title": "25 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "20", "to": "37", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "20", "to": "135", "label": "24 cross-community edges", "title": "24 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "20", "to": "54", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "20", "to": "44", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "20", "to": "177", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "21", "to": "103", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "21", "to": "108", "label": "29 cross-community edges", "title": "29 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "21", "to": "58", "label": "18 cross-community edges", "title": "18 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "21", "to": "29", "label": "13 cross-community edges", "title": "13 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "21", "to": "209", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "21", "to": "449", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "21", "to": "41", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "21", "to": "39", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "21", "to": "87", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "21", "to": "35", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "22", "to": "103", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "22", "to": "279", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "22", "to": "87", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "22", "to": "39", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "22", "to": "51", "label": "14 cross-community edges", "title": "14 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "22", "to": "33", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "22", "to": "42", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "22", "to": "335", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "22", "to": "35", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "23", "to": "60", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "23", "to": "48", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "23", "to": "76", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "24", "to": "103", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "24", "to": "125", "label": "13 cross-community edges", "title": "13 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "24", "to": "140", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "24", "to": "146", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "24", "to": "39", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "24", "to": "35", "label": "39 cross-community edges", "title": "39 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "24", "to": "51", "label": "53 cross-community edges", "title": "53 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "24", "to": "59", "label": "90 cross-community edges", "title": "90 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "24", "to": "449", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "24", "to": "31", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "24", "to": "33", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "24", "to": "92", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "24", "to": "274", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "25", "to": "39", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "25", "to": "86", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "26", "to": "71", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "26", "to": "134", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "26", "to": "148", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "26", "to": "39", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "26", "to": "190", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "26", "to": "194", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "26", "to": "227", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "26", "to": "59", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "26", "to": "87", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "26", "to": "449", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "26", "to": "280", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "26", "to": "29", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "26", "to": "122", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "26", "to": "43", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "26", "to": "52", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "26", "to": "63", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "26", "to": "208", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "27", "to": "105", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "27", "to": "113", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "27", "to": "270", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "27", "to": "146", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "27", "to": "194", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "27", "to": "316", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "27", "to": "101", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "27", "to": "78", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "27", "to": "50", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "27", "to": "41", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "108", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "112", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "254", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "131", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "134", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "173", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "174", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "58", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "196", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "326", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "39", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "33", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "68", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "45", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "42", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "273", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "62", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "200", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "55", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "334", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "71", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "230", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "46", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "185", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "35", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "47", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "41", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "449", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "30", "to": "112", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "30", "to": "127", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "30", "to": "136", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "30", "to": "233", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "30", "to": "244", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "30", "to": "258", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "30", "to": "39", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "30", "to": "79", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "30", "to": "72", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "30", "to": "63", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "31", "to": "103", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "31", "to": "71", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "31", "to": "121", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "31", "to": "145", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "31", "to": "335", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "31", "to": "62", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "31", "to": "51", "label": "12 cross-community edges", "title": "12 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "31", "to": "33", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "31", "to": "98", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "31", "to": "39", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "31", "to": "85", "label": "10 cross-community edges", "title": "10 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "31", "to": "449", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "31", "to": "42", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "31", "to": "35", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "31", "to": "46", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "31", "to": "97", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "32", "to": "37", "label": "62 cross-community edges", "title": "62 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "32", "to": "36", "label": "44 cross-community edges", "title": "44 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "32", "to": "44", "label": "53 cross-community edges", "title": "53 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "32", "to": "155", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "32", "to": "252", "label": "33 cross-community edges", "title": "33 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "32", "to": "157", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "32", "to": "64", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "32", "to": "54", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "32", "to": "123", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "32", "to": "89", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "32", "to": "177", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "33", "to": "71", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "33", "to": "122", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "33", "to": "98", "label": "24 cross-community edges", "title": "24 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "33", "to": "140", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "33", "to": "148", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "33", "to": "172", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "33", "to": "270", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "33", "to": "74", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "33", "to": "279", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "33", "to": "174", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "33", "to": "335", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "33", "to": "43", "label": "10 cross-community edges", "title": "10 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "33", "to": "449", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "33", "to": "39", "label": "17 cross-community edges", "title": "17 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "33", "to": "50", "label": "10 cross-community edges", "title": "10 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "33", "to": "51", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "33", "to": "59", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "33", "to": "68", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "33", "to": "230", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "33", "to": "46", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "33", "to": "69", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "33", "to": "75", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "33", "to": "35", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "34", "to": "103", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "34", "to": "39", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "34", "to": "194", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "34", "to": "87", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "34", "to": "449", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "103", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "108", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "131", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "139", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "145", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "146", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "173", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "185", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "194", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "200", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "335", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "227", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "238", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "59", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "261", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "273", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "92", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "50", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "86", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "39", "label": "11 cross-community edges", "title": "11 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "43", "label": "27 cross-community edges", "title": "27 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "51", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "78", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "88", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "99", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "67", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "97", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "74", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "151", "label": "11 cross-community edges", "title": "11 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "87", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "449", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "42", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "96", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "120", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "47", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "95", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "55", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "36", "to": "154", "label": "16 cross-community edges", "title": "16 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "36", "to": "252", "label": "10 cross-community edges", "title": "10 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "36", "to": "44", "label": "22 cross-community edges", "title": "22 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "36", "to": "37", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "36", "to": "54", "label": "7 cross-community edges", "title": "7 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "36", "to": "247", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "36", "to": "205", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "36", "to": "297", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "36", "to": "177", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "37", "to": "155", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "37", "to": "44", "label": "10 cross-community edges", "title": "10 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "37", "to": "297", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "37", "to": "54", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "37", "to": "205", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "37", "to": "177", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "38", "to": "107", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "38", "to": "213", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "103", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "104", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "107", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "108", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "113", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "114", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "119", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "120", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "122", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "86", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "47", "label": "14 cross-community edges", "title": "14 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "270", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "125", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "139", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "140", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "141", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "142", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "144", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "145", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "146", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "153", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "42", "label": "7 cross-community edges", "title": "7 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "176", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "51", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "75", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "71", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "174", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "200", "label": "7 cross-community edges", "title": "7 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "88", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "194", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "449", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "184", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "58", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "196", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "197", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "53", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "263", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "326", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "87", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "214", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "225", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "59", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "241", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "249", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "264", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "271", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "273", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "295", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "306", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "319", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "365", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "50", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "68", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "52", "label": "13 cross-community edges", "title": "13 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "230", "label": "7 cross-community edges", "title": "7 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "43", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "98", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "69", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "62", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "402", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "151", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "55", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "61", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "67", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "78", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "79", "label": "17 cross-community edges", "title": "17 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "97", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "99", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "274", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "81", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "91", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "82", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "40", "to": "130", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "40", "to": "248", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "40", "to": "213", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "40", "to": "51", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "41", "to": "108", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "41", "to": "113", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "41", "to": "185", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "41", "to": "209", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "41", "to": "316", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "41", "to": "46", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "41", "to": "101", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "41", "to": "151", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "41", "to": "74", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "41", "to": "50", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "42", "to": "104", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "42", "to": "71", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "42", "to": "119", "label": "11 cross-community edges", "title": "11 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "42", "to": "120", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "42", "to": "141", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "42", "to": "142", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "42", "to": "91", "label": "34 cross-community edges", "title": "34 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "42", "to": "153", "label": "33 cross-community edges", "title": "33 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "42", "to": "81", "label": "15 cross-community edges", "title": "15 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "42", "to": "184", "label": "29 cross-community edges", "title": "29 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "42", "to": "161", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "42", "to": "196", "label": "12 cross-community edges", "title": "12 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "42", "to": "335", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "42", "to": "225", "label": "12 cross-community edges", "title": "12 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "42", "to": "241", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "42", "to": "449", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "42", "to": "365", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "42", "to": "402", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "42", "to": "151", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "42", "to": "78", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "42", "to": "334", "label": "12 cross-community edges", "title": "12 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "42", "to": "75", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "42", "to": "69", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "42", "to": "319", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "42", "to": "86", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "42", "to": "82", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "43", "to": "103", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "43", "to": "112", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "43", "to": "122", "label": "12 cross-community edges", "title": "12 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "43", "to": "98", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "43", "to": "270", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "43", "to": "145", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "43", "to": "172", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "43", "to": "341", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "43", "to": "51", "label": "7 cross-community edges", "title": "7 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "43", "to": "50", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "43", "to": "68", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "43", "to": "449", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "43", "to": "57", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "43", "to": "97", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "43", "to": "88", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "44", "to": "157", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "44", "to": "205", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "44", "to": "297", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "44", "to": "54", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "44", "to": "159", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "44", "to": "177", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "44", "to": "135", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "45", "to": "112", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "45", "to": "148", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "45", "to": "184", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "45", "to": "326", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "45", "to": "316", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "45", "to": "208", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "45", "to": "46", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "45", "to": "230", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "45", "to": "79", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "45", "to": "63", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "45", "to": "82", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "45", "to": "75", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "45", "to": "69", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "45", "to": "71", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "45", "to": "47", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "46", "to": "254", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "46", "to": "140", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "46", "to": "156", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "46", "to": "50", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "46", "to": "185", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "46", "to": "124", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "46", "to": "292", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "46", "to": "98", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "46", "to": "86", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "46", "to": "85", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "46", "to": "57", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "46", "to": "230", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "46", "to": "68", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "46", "to": "75", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "46", "to": "81", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "47", "to": "114", "label": "7 cross-community edges", "title": "7 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "47", "to": "120", "label": "11 cross-community edges", "title": "11 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "47", "to": "71", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "47", "to": "142", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "47", "to": "279", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "47", "to": "181", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "47", "to": "209", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "47", "to": "214", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "47", "to": "226", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "47", "to": "249", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "47", "to": "295", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "47", "to": "365", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "47", "to": "151", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "47", "to": "449", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "47", "to": "96", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "47", "to": "62", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "47", "to": "57", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "47", "to": "50", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "50", "to": "122", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "50", "to": "270", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "50", "to": "139", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "50", "to": "148", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "50", "to": "172", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "50", "to": "194", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "50", "to": "197", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "50", "to": "83", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "50", "to": "335", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "50", "to": "280", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "50", "to": "85", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "50", "to": "92", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "50", "to": "213", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "50", "to": "51", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "50", "to": "449", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "50", "to": "87", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "50", "to": "74", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "50", "to": "78", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "50", "to": "98", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "50", "to": "90", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "50", "to": "86", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "51", "to": "101", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "51", "to": "125", "label": "15 cross-community edges", "title": "15 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "51", "to": "139", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "51", "to": "144", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "51", "to": "176", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "51", "to": "197", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "51", "to": "83", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "51", "to": "223", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "51", "to": "335", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "51", "to": "59", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "51", "to": "341", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "51", "to": "97", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "51", "to": "78", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "51", "to": "99", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "51", "to": "67", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "51", "to": "74", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "51", "to": "122", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "52", "to": "174", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "52", "to": "59", "label": "11 cross-community edges", "title": "11 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "52", "to": "449", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "53", "to": "103", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "53", "to": "132", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "54", "to": "100", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "54", "to": "247", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "54", "to": "218", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "54", "to": "135", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "54", "to": "177", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "54", "to": "224", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "54", "to": "252", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "54", "to": "167", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "54", "to": "309", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "55", "to": "58", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "55", "to": "87", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "55", "to": "71", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "55", "to": "62", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "56", "to": "65", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "56", "to": "287", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "57", "to": "120", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "57", "to": "124", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "57", "to": "161", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "57", "to": "132", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "57", "to": "139", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "57", "to": "145", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "57", "to": "200", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "57", "to": "71", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "57", "to": "75", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "57", "to": "98", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "57", "to": "69", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "57", "to": "62", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "58", "to": "108", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "58", "to": "449", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "59", "to": "335", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "59", "to": "449", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "61", "to": "103", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "62", "to": "114", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "62", "to": "254", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "62", "to": "142", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "62", "to": "279", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "62", "to": "181", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "62", "to": "249", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "62", "to": "82", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "62", "to": "75", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "62", "to": "124", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "62", "to": "93", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "62", "to": "69", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "62", "to": "120", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "62", "to": "71", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "63", "to": "138", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "63", "to": "169", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "65", "to": "106", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "65", "to": "110", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "65", "to": "149", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "65", "to": "152", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "65", "to": "162", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "65", "to": "165", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "65", "to": "170", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "65", "to": "180", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "65", "to": "199", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "65", "to": "202", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "65", "to": "207", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "65", "to": "234", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "65", "to": "235", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "65", "to": "237", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "65", "to": "260", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "65", "to": "275", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "65", "to": "276", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "65", "to": "281", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "65", "to": "310", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "65", "to": "299", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "65", "to": "300", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "65", "to": "73", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "65", "to": "70", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "65", "to": "327", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "65", "to": "337", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "65", "to": "369", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "65", "to": "344", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "65", "to": "80", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "66", "to": "186", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "66", "to": "533", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "66", "to": "534", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "66", "to": "535", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "67", "to": "139", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "67", "to": "215", "label": "10 cross-community edges", "title": "10 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "67", "to": "308", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "67", "to": "78", "label": "30 cross-community edges", "title": "30 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "67", "to": "99", "label": "34 cross-community edges", "title": "34 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "67", "to": "82", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "68", "to": "112", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "68", "to": "124", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "68", "to": "139", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "68", "to": "145", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "68", "to": "146", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "68", "to": "172", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "68", "to": "200", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "69", "to": "104", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "69", "to": "120", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "69", "to": "71", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "69", "to": "142", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "69", "to": "174", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "69", "to": "230", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "69", "to": "449", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "69", "to": "81", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "69", "to": "82", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "69", "to": "96", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "71", "to": "104", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "71", "to": "112", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "71", "to": "119", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "71", "to": "213", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "71", "to": "87", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "71", "to": "131", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "71", "to": "120", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "71", "to": "98", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "71", "to": "75", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "71", "to": "184", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "71", "to": "153", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "71", "to": "225", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "71", "to": "335", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "71", "to": "241", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "71", "to": "93", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "71", "to": "82", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "71", "to": "99", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "71", "to": "78", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "74", "to": "98", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "74", "to": "172", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "74", "to": "270", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "74", "to": "200", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "74", "to": "185", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "74", "to": "87", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "75", "to": "263", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "75", "to": "335", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "75", "to": "97", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "75", "to": "98", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "75", "to": "91", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "75", "to": "93", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "78", "to": "103", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "78", "to": "113", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "78", "to": "144", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "78", "to": "148", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "78", "to": "215", "label": "10 cross-community edges", "title": "10 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "78", "to": "241", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "78", "to": "280", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "78", "to": "308", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "78", "to": "88", "label": "22 cross-community edges", "title": "22 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "78", "to": "90", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "78", "to": "99", "label": "40 cross-community edges", "title": "40 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "79", "to": "194", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "79", "to": "86", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "79", "to": "274", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "81", "to": "132", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "81", "to": "141", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "81", "to": "153", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "81", "to": "230", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "81", "to": "184", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "82", "to": "139", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "82", "to": "173", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "82", "to": "184", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "82", "to": "230", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "82", "to": "319", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "82", "to": "99", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "82", "to": "120", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "82", "to": "93", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "83", "to": "172", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "84", "to": "135", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "85", "to": "194", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "85", "to": "97", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "86", "to": "103", "label": "31 cross-community edges", "title": "31 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "86", "to": "107", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "86", "to": "142", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "86", "to": "145", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "86", "to": "173", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "86", "to": "190", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "86", "to": "194", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "86", "to": "197", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "86", "to": "198", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "86", "to": "210", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "86", "to": "214", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "86", "to": "238", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "86", "to": "250", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "86", "to": "87", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "86", "to": "264", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "86", "to": "271", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "86", "to": "306", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "86", "to": "92", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "86", "to": "365", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "86", "to": "151", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "86", "to": "274", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "86", "to": "97", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "87", "to": "108", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "87", "to": "120", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "87", "to": "124", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "87", "to": "131", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "87", "to": "174", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "87", "to": "194", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "87", "to": "449", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "87", "to": "209", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "87", "to": "92", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "87", "to": "262", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "87", "to": "248", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "87", "to": "213", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "87", "to": "96", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "87", "to": "93", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "87", "to": "95", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "88", "to": "194", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "88", "to": "449", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "88", "to": "99", "label": "18 cross-community edges", "title": "18 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "89", "to": "297", "label": "12 cross-community edges", "title": "12 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "89", "to": "205", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "90", "to": "118", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "90", "to": "121", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "90", "to": "129", "label": "17 cross-community edges", "title": "17 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "90", "to": "148", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "90", "to": "223", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "90", "to": "530", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "90", "to": "208", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "90", "to": "92", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "91", "to": "141", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "91", "to": "184", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "92", "to": "121", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "92", "to": "200", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "92", "to": "223", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "92", "to": "241", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "93", "to": "131", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "93", "to": "173", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "93", "to": "132", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "93", "to": "200", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "93", "to": "226", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "93", "to": "262", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "93", "to": "124", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "95", "to": "116", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "95", "to": "262", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "96", "to": "214", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "96", "to": "249", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "96", "to": "295", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "96", "to": "449", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "96", "to": "120", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "97", "to": "145", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "97", "to": "335", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "97", "to": "98", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "98", "to": "148", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "98", "to": "316", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "98", "to": "125", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "98", "to": "172", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "98", "to": "174", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "98", "to": "196", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "98", "to": "449", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "99", "to": "144", "label": "12 cross-community edges", "title": "12 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "99", "to": "182", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "99", "to": "215", "label": "10 cross-community edges", "title": "10 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "99", "to": "308", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "100", "to": "205", "label": "7 cross-community edges", "title": "7 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "100", "to": "297", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "100", "to": "177", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "100", "to": "218", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "101", "to": "194", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "101", "to": "316", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "102", "to": "106", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "103", "to": "139", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "103", "to": "210", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "103", "to": "271", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "103", "to": "390", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "103", "to": "108", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "103", "to": "198", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "103", "to": "250", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "104", "to": "153", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "105", "to": "113", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "105", "to": "146", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "106", "to": "283", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "106", "to": "284", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "106", "to": "128", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "106", "to": "245", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "106", "to": "336", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "106", "to": "259", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "106", "to": "179", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "106", "to": "367", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "106", "to": "324", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "106", "to": "323", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "106", "to": "286", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "106", "to": "325", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "106", "to": "285", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "106", "to": "191", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "106", "to": "368", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "106", "to": "322", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "106", "to": "246", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "106", "to": "298", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "106", "to": "321", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "106", "to": "192", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "107", "to": "248", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "107", "to": "195", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "107", "to": "213", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "107", "to": "204", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "107", "to": "156", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "107", "to": "197", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "107", "to": "194", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "107", "to": "130", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "108", "to": "134", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "111", "to": "186", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "112", "to": "145", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "112", "to": "139", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "112", "to": "174", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "113", "to": "194", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "114", "to": "291", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "116", "to": "413", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "116", "to": "392", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "116", "to": "352", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "116", "to": "353", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "116", "to": "393", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "116", "to": "354", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "116", "to": "355", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "116", "to": "449", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "116", "to": "173", "label": "14 cross-community edges", "title": "14 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "116", "to": "131", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "116", "to": "227", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "116", "to": "532", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "116", "to": "151", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "116", "to": "254", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "116", "to": "124", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "118", "to": "148", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "118", "to": "121", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "118", "to": "208", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "120", "to": "230", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "120", "to": "449", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "120", "to": "184", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "120", "to": "249", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "120", "to": "142", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "120", "to": "213", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "120", "to": "200", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "120", "to": "124", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "121", "to": "197", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "121", "to": "208", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "121", "to": "316", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "122", "to": "172", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "122", "to": "270", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "122", "to": "449", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "123", "to": "297", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "123", "to": "205", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "124", "to": "254", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "124", "to": "173", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "124", "to": "200", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "124", "to": "249", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "124", "to": "292", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "125", "to": "270", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "126", "to": "158", "label": "33 cross-community edges", "title": "33 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "126", "to": "231", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "126", "to": "189", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "126", "to": "255", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "126", "to": "256", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "126", "to": "239", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "126", "to": "317", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "126", "to": "164", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "126", "to": "318", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "131", "to": "226", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "131", "to": "173", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "131", "to": "254", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "131", "to": "185", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "131", "to": "143", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "131", "to": "227", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "132", "to": "226", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "132", "to": "200", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "134", "to": "174", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "134", "to": "200", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "135", "to": "177", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "140", "to": "160", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "140", "to": "146", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "141", "to": "153", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "143", "to": "254", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "143", "to": "173", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "145", "to": "182", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "145", "to": "280", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "146", "to": "449", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "147", "to": "185", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "147", "to": "280", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "148", "to": "223", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "148", "to": "174", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "148", "to": "208", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "150", "to": "186", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "151", "to": "254", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "151", "to": "238", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "155", "to": "252", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "155", "to": "340", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "156", "to": "213", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "158", "to": "317", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "158", "to": "164", "label": "17 cross-community edges", "title": "17 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "158", "to": "255", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "158", "to": "189", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "158", "to": "231", "label": "10 cross-community edges", "title": "10 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "158", "to": "318", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "158", "to": "256", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "158", "to": "239", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "159", "to": "177", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "159", "to": "224", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "164", "to": "231", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "164", "to": "255", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "164", "to": "189", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "164", "to": "239", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "164", "to": "256", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "167", "to": "297", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "167", "to": "205", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "167", "to": "177", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "172", "to": "213", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "172", "to": "270", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "172", "to": "530", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "172", "to": "200", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "172", "to": "197", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "173", "to": "238", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "173", "to": "254", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "174", "to": "280", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "174", "to": "449", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "174", "to": "316", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "174", "to": "196", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "174", "to": "230", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "174", "to": "263", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "176", "to": "194", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "177", "to": "224", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "177", "to": "297", "label": "7 cross-community edges", "title": "7 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "177", "to": "247", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "177", "to": "309", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "177", "to": "218", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "177", "to": "252", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "180", "to": "301", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "180", "to": "407", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "180", "to": "374", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "180", "to": "277", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "180", "to": "377", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "180", "to": "373", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "180", "to": "408", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "180", "to": "375", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "180", "to": "289", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "180", "to": "376", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "180", "to": "409", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "180", "to": "410", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "180", "to": "338", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "180", "to": "302", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "180", "to": "236", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "181", "to": "249", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "181", "to": "380", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "181", "to": "381", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "181", "to": "383", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "181", "to": "312", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "181", "to": "343", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "181", "to": "330", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "181", "to": "293", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "181", "to": "385", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "181", "to": "348", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "181", "to": "349", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "181", "to": "351", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "181", "to": "395", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "181", "to": "396", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "181", "to": "397", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "181", "to": "357", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "181", "to": "331", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "181", "to": "398", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "181", "to": "332", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "181", "to": "360", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "181", "to": "333", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "181", "to": "399", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "181", "to": "400", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "182", "to": "280", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "182", "to": "194", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "182", "to": "185", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "184", "to": "335", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "184", "to": "230", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "184", "to": "449", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "185", "to": "194", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "185", "to": "280", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "185", "to": "227", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "186", "to": "305", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "189", "to": "231", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "189", "to": "255", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "189", "to": "256", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "190", "to": "198", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "194", "to": "280", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "195", "to": "213", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "196", "to": "335", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "197", "to": "213", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "198", "to": "250", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "198", "to": "271", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "200", "to": "238", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "204", "to": "213", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "205", "to": "297", "label": "7 cross-community edges", "title": "7 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "205", "to": "218", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "206", "to": "207", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "207", "to": "212", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "207", "to": "221", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "207", "to": "222", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "210", "to": "250", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "210", "to": "271", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "213", "to": "248", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "213", "to": "262", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "214", "to": "335", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "218", "to": "297", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "226", "to": "370", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "226", "to": "371", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "226", "to": "372", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "226", "to": "345", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "226", "to": "379", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "226", "to": "346", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "226", "to": "382", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "226", "to": "347", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "226", "to": "384", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "226", "to": "401", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "226", "to": "350", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "226", "to": "386", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "226", "to": "387", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "226", "to": "356", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "226", "to": "358", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "226", "to": "388", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "226", "to": "359", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "226", "to": "366", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "226", "to": "389", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "226", "to": "394", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "227", "to": "449", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "230", "to": "279", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "231", "to": "255", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "239", "to": "256", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "239", "to": "255", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "248", "to": "262", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "250", "to": "271", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "254", "to": "292", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "254", "to": "291", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "255", "to": "256", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "270", "to": "449", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "273", "to": "335", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "335", "to": "449", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "449", "to": "532", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}];
|
|
const LEGEND = [{"cid": 0, "color": "#4E79A7", "label": "members.store.ts", "count": 106}, {"cid": 1, "color": "#F28E2B", "label": "createElement", "count": 255}, {"cid": 2, "color": "#E15759", "label": "testing.T", "count": 191}, {"cid": 3, "color": "#76B7B2", "label": "livekitSession.ts", "count": 281}, {"cid": 4, "color": "#59A14F", "label": "dispatcher.ts", "count": 198}, {"cid": 5, "color": "#EDC948", "label": "openMigratedMemory", "count": 194}, {"cid": 6, "color": "#B07AA1", "label": "context.Context", "count": 194}, {"cid": 7, "color": "#FF9DA7", "label": "buildChannelRouter", "count": 146}, {"cid": 8, "color": "#9C755F", "label": "MessageInput.ts", "count": 110}, {"cid": 9, "color": "#BAB0AC", "label": "attachments.ts", "count": 141}, {"cid": 10, "color": "#4E79A7", "label": "telemetry.go", "count": 130}, {"cid": 11, "color": "#F28E2B", "label": "waitRegistered", "count": 134}, {"cid": 12, "color": "#E15759", "label": "types.ts", "count": 123}, {"cid": 13, "color": "#76B7B2", "label": "NewAdminAPI", "count": 112}, {"cid": 14, "color": "#59A14F", "label": "Fixed", "count": 141}, {"cid": 15, "color": "#EDC948", "label": "messages_test.go", "count": 72}, {"cid": 16, "color": "#B07AA1", "label": "main.ts", "count": 114}, {"cid": 17, "color": "#FF9DA7", "label": "net/http.HandlerFunc", "count": 74}, {"cid": 18, "color": "#9C755F", "label": "NewTestClient", "count": 90}, {"cid": 19, "color": "#BAB0AC", "label": "newHandlerHub", "count": 96}, {"cid": 20, "color": "#4E79A7", "label": "livekitE2EE.ts", "count": 38}, {"cid": 21, "color": "#F28E2B", "label": "drainChanTimeout", "count": 91}, {"cid": 22, "color": "#E15759", "label": "buildDMRouter", "count": 87}, {"cid": 23, "color": "#76B7B2", "label": "tofu.rs", "count": 86}, {"cid": 24, "color": "#59A14F", "label": "newAuthTestDB", "count": 85}, {"cid": 25, "color": "#EDC948", "label": "newMigratedTestDB", "count": 79}, {"cid": 26, "color": "#B07AA1", "label": "time.Time", "count": 73}, {"cid": 27, "color": "#FF9DA7", "label": "Config", "count": 26}, {"cid": 28, "color": "#9C755F", "label": "secret_store.rs", "count": 73}, {"cid": 29, "color": "#BAB0AC", "label": "User", "count": 63}, {"cid": 30, "color": "#4E79A7", "label": "database/sql.Result", "count": 81}, {"cid": 31, "color": "#F28E2B", "label": "newUploadTestDB", "count": 72}, {"cid": 32, "color": "#E15759", "label": "MainPage.ts", "count": 204}, {"cid": 33, "color": "#76B7B2", "label": "writeJSON", "count": 70}, {"cid": 34, "color": "#59A14F", "label": "newAdminTestDB", "count": 69}, {"cid": 35, "color": "#EDC948", "label": "HashToken", "count": 58}, {"cid": 36, "color": "#B07AA1", "label": "content-parser.ts", "count": 202}, {"cid": 37, "color": "#FF9DA7", "label": "ChannelSidebar.ts", "count": 116}, {"cid": 38, "color": "#9C755F", "label": "plugin/registry_test.go", "count": 29}, {"cid": 39, "color": "#BAB0AC", "label": "DB", "count": 75}, {"cid": 40, "color": "#4E79A7", "label": "Instance", "count": 32}, {"cid": 41, "color": "#F28E2B", "label": "livekit_test.go", "count": 55}, {"cid": 42, "color": "#E15759", "label": "NewChecker", "count": 50}, {"cid": 43, "color": "#76B7B2", "label": "middleware_test.go", "count": 51}, {"cid": 44, "color": "#59A14F", "label": "authStore", "count": 138}, {"cid": 45, "color": "#EDC948", "label": "DB", "count": 65}, {"cid": 46, "color": "#B07AA1", "label": "testing.F", "count": 34}, {"cid": 47, "color": "#FF9DA7", "label": "Result", "count": 56}, {"cid": 48, "color": "#9C755F", "label": "livekit_proxy.rs", "count": 56}, {"cid": 49, "color": "#BAB0AC", "label": "native/helpers.ts", "count": 52}, {"cid": 50, "color": "#4E79A7", "label": "NewRouter", "count": 53}, {"cid": 51, "color": "#F28E2B", "label": "net/http.Handler", "count": 53}, {"cid": 52, "color": "#E15759", "label": "totp_test.go", "count": 50}, {"cid": 53, "color": "#76B7B2", "label": "newTestDB", "count": 83}, {"cid": 54, "color": "#59A14F", "label": "createLogger", "count": 49}, {"cid": 55, "color": "#EDC948", "label": "newServeHub", "count": 49}, {"cid": 56, "color": "#B07AA1", "label": "OwnCord \u2014 Comprehensive Project Audit", "count": 48}, {"cid": 57, "color": "#FF9DA7", "label": "permissions_test.go", "count": 58}, {"cid": 58, "color": "#9C755F", "label": "seedMemberUser", "count": 49}, {"cid": 59, "color": "#BAB0AC", "label": "postJSONWithToken", "count": 48}, {"cid": 60, "color": "#4E79A7", "label": "http_proxy.rs", "count": 45}, {"cid": 61, "color": "#F28E2B", "label": "newVoiceTestDB", "count": 45}, {"cid": 62, "color": "#E15759", "label": "messages.go", "count": 56}, {"cid": 63, "color": "#76B7B2", "label": "dbgen/models.go", "count": 43}, {"cid": 64, "color": "#59A14F", "label": "ProfileManager", "count": 15}, {"cid": 65, "color": "#EDC948", "label": "README.md", "count": 47}, {"cid": 66, "color": "#B07AA1", "label": "devDependencies", "count": 35}, {"cid": 67, "color": "#FF9DA7", "label": "itoa", "count": 41}, {"cid": 68, "color": "#9C755F", "label": "helpers_test.go", "count": 41}, {"cid": 69, "color": "#BAB0AC", "label": "ChannelService", "count": 27}, {"cid": 70, "color": "#4E79A7", "label": "Security Policy", "count": 14}, {"cid": 71, "color": "#F28E2B", "label": "Role", "count": 53}, {"cid": 72, "color": "#E15759", "label": "channels.sql.go", "count": 39}, {"cid": 73, "color": "#76B7B2", "label": "Deployment Guide", "count": 39}, {"cid": 74, "color": "#59A14F", "label": "livekit_proxy_test.go", "count": 48}, {"cid": 75, "color": "#EDC948", "label": "newEmojiService", "count": 38}, {"cid": 76, "color": "#B07AA1", "label": "ws_proxy.rs", "count": 38}, {"cid": 77, "color": "#FF9DA7", "label": "bughunt.js", "count": 38}, {"cid": 78, "color": "#9C755F", "label": "openAdminTestDB", "count": 38}, {"cid": 79, "color": "#BAB0AC", "label": "db/db.go", "count": 44}, {"cid": 80, "color": "#4E79A7", "label": "Tables", "count": 37}, {"cid": 81, "color": "#F28E2B", "label": "newMentionFixture", "count": 37}, {"cid": 82, "color": "#E15759", "label": "Channel", "count": 36}, {"cid": 83, "color": "#76B7B2", "label": "NewWAFMiddlewareCRS", "count": 39}, {"cid": 84, "color": "#59A14F", "label": "E2EEManager", "count": 30}, {"cid": 85, "color": "#EDC948", "label": "storage_test.go", "count": 50}, {"cid": 86, "color": "#B07AA1", "label": "Migrate", "count": 35}, {"cid": 87, "color": "#FF9DA7", "label": "Hub", "count": 70}, {"cid": 88, "color": "#9C755F", "label": "chdirTemp", "count": 35}, {"cid": 89, "color": "#BAB0AC", "label": "AppearanceTab.ts", "count": 29}, {"cid": 90, "color": "#4E79A7", "label": "updater_test.go", "count": 55}, {"cid": 91, "color": "#F28E2B", "label": "newTestMessageService", "count": 34}, {"cid": 92, "color": "#E15759", "label": "textAssetServer", "count": 13}, {"cid": 93, "color": "#76B7B2", "label": "Hub", "count": 41}, {"cid": 94, "color": "#59A14F", "label": "compilerOptions", "count": 33}, {"cid": 95, "color": "#EDC948", "label": "NewEventRingBuffer", "count": 19}, {"cid": 96, "color": "#B07AA1", "label": "HandlerRegistry", "count": 27}, {"cid": 97, "color": "#FF9DA7", "label": "emoji_handler_test.go", "count": 35}, {"cid": 98, "color": "#9C755F", "label": "handleCreateEmoji", "count": 39}, {"cid": 99, "color": "#BAB0AC", "label": "doRequest", "count": 29}, {"cid": 100, "color": "#4E79A7", "label": "audioPipeline.ts", "count": 24}, {"cid": 101, "color": "#F28E2B", "label": "LoadOrGenerate", "count": 27}, {"cid": 102, "color": "#E15759", "label": "Auth Endpoints", "count": 30}, {"cid": 103, "color": "#76B7B2", "label": "MigrateFS", "count": 30}, {"cid": 104, "color": "#59A14F", "label": "newOverrideFixture", "count": 7}, {"cid": 105, "color": "#EDC948", "label": "Save", "count": 24}, {"cid": 106, "color": "#B07AA1", "label": "REST API Reference", "count": 29}, {"cid": 107, "color": "#FF9DA7", "label": "NewRegistry", "count": 20}, {"cid": 108, "color": "#9C755F", "label": "voice_moderation_test.go", "count": 29}, {"cid": 109, "color": "#BAB0AC", "label": "ptt.rs", "count": 28}, {"cid": 110, "color": "#4E79A7", "label": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", "count": 28}, {"cid": 111, "color": "#F28E2B", "label": "scripts", "count": 27}, {"cid": 112, "color": "#E15759", "label": "ResolveTokenHash", "count": 17}, {"cid": 113, "color": "#76B7B2", "label": "Load", "count": 23}, {"cid": 114, "color": "#59A14F", "label": "handleVoiceE2EEOfferV2", "count": 27}, {"cid": 115, "color": "#EDC948", "label": "commands.rs", "count": 26}, {"cid": 116, "color": "#B07AA1", "label": "newEmitTestHub", "count": 24}, {"cid": 117, "color": "#FF9DA7", "label": "Plan: Remediate security-hardening review regressions", "count": 25}, {"cid": 118, "color": "#9C755F", "label": "verify.go", "count": 25}, {"cid": 119, "color": "#BAB0AC", "label": "newRoleCRUDService", "count": 25}, {"cid": 120, "color": "#4E79A7", "label": "Checker", "count": 27}, {"cid": 121, "color": "#F28E2B", "label": "EnsureLiveKitBinary", "count": 27}, {"cid": 122, "color": "#E15759", "label": "clientip_test.go", "count": 34}, {"cid": 123, "color": "#76B7B2", "label": "AudioElements", "count": 25}, {"cid": 124, "color": "#59A14F", "label": "buildErrorMsg", "count": 25}, {"cid": 125, "color": "#EDC948", "label": "gif_handler_test.go", "count": 21}, {"cid": 126, "color": "#B07AA1", "label": "navigateToMainPage", "count": 23}, {"cid": 127, "color": "#FF9DA7", "label": "messages.sql.go", "count": 23}, {"cid": 128, "color": "#9C755F", "label": "Channel Endpoints", "count": 23}, {"cid": 129, "color": "#BAB0AC", "label": "newSignedTestUpdater", "count": 24}, {"cid": 130, "color": "#4E79A7", "label": "host_http_test.go", "count": 22}, {"cid": 131, "color": "#F28E2B", "label": "Topic", "count": 23}, {"cid": 132, "color": "#E15759", "label": "DB", "count": 29}, {"cid": 133, "color": "#76B7B2", "label": "users", "count": 23}, {"cid": 134, "color": "#59A14F", "label": "Client", "count": 24}, {"cid": 135, "color": "#EDC948", "label": "identity.ts", "count": 25}, {"cid": 136, "color": "#B07AA1", "label": "Queries", "count": 22}, {"cid": 137, "color": "#FF9DA7", "label": "Queries", "count": 22}, {"cid": 138, "color": "#9C755F", "label": "Queries", "count": 22}, {"cid": 139, "color": "#BAB0AC", "label": "middleware_and_spawn_test.go", "count": 22}, {"cid": 140, "color": "#4E79A7", "label": "password_test.go", "count": 22}, {"cid": 141, "color": "#F28E2B", "label": "newPurgeService", "count": 22}, {"cid": 142, "color": "#E15759", "label": "handleVoiceTokenRefreshV2", "count": 22}, {"cid": 143, "color": "#76B7B2", "label": "pubsub_test.go", "count": 22}, {"cid": 144, "color": "#59A14F", "label": "newChannelTestAPI", "count": 21}, {"cid": 145, "color": "#EDC948", "label": "handleLogStream", "count": 25}, {"cid": 146, "color": "#B07AA1", "label": "handleSetup", "count": 21}, {"cid": 147, "color": "#FF9DA7", "label": "log/slog.Value", "count": 16}, {"cid": 148, "color": "#9C755F", "label": "Updater", "count": 21}, {"cid": 149, "color": "#BAB0AC", "label": "Credential storage", "count": 8}, {"cid": 150, "color": "#4E79A7", "label": "dependencies", "count": 23}, {"cid": 151, "color": "#F28E2B", "label": "newHarvestVoiceDB", "count": 25}, {"cid": 152, "color": "#E15759", "label": "Config Key Reference", "count": 21}, {"cid": 153, "color": "#76B7B2", "label": "newTestPermService", "count": 18}, {"cid": 154, "color": "#59A14F", "label": "markdown.ts", "count": 20}, {"cid": 155, "color": "#EDC948", "label": "VideoGrid.ts", "count": 61}, {"cid": 156, "color": "#B07AA1", "label": "Manifest", "count": 15}, {"cid": 157, "color": "#FF9DA7", "label": "rate-limiter.ts", "count": 20}, {"cid": 158, "color": "#9C755F", "label": "e2e/helpers.ts", "count": 20}, {"cid": 159, "color": "#BAB0AC", "label": "main.test.ts", "count": 21}, {"cid": 160, "color": "#4E79A7", "label": "testing.M", "count": 20}, {"cid": 161, "color": "#F28E2B", "label": "newMockDB", "count": 20}, {"cid": 162, "color": "#E15759", "label": "OwnCord", "count": 20}, {"cid": 163, "color": "#76B7B2", "label": "bughunt-fix.js", "count": 19}, {"cid": 164, "color": "#59A14F", "label": "buildTauriMockScript", "count": 19}, {"cid": 165, "color": "#EDC948", "label": "OwnCord Introspection MCP Server", "count": 24}, {"cid": 166, "color": "#B07AA1", "label": "Bug-detection improvements \u2014 design", "count": 19}, {"cid": 167, "color": "#FF9DA7", "label": "ptt.ts", "count": 24}, {"cid": 168, "color": "#9C755F", "label": "eslint-rules.js", "count": 18}, {"cid": 169, "color": "#BAB0AC", "label": "DB", "count": 18}, {"cid": 170, "color": "#4E79A7", "label": "OwnCord \u2014 Security Review", "count": 18}, {"cid": 171, "color": "#F28E2B", "label": "Plan: Slash command dispatcher in WS", "count": 18}, {"cid": 172, "color": "#E15759", "label": "net/http.Request", "count": 17}, {"cid": 173, "color": "#76B7B2", "label": "ChannelTopic", "count": 18}, {"cid": 174, "color": "#59A14F", "label": "UserService", "count": 18}, {"cid": 175, "color": "#EDC948", "label": "Blocked \u2014 fix attempted, revert-proof failed", "count": 14}, {"cid": 176, "color": "#B07AA1", "label": "handlers_backup.go", "count": 11}, {"cid": 177, "color": "#FF9DA7", "label": "logger.ts", "count": 33}, {"cid": 178, "color": "#9C755F", "label": "fallback_crypto.rs", "count": 17}, {"cid": 179, "color": "#BAB0AC", "label": "Direct Messages", "count": 17}, {"cid": 180, "color": "#4E79A7", "label": "WebSocket Protocol Reference", "count": 17}, {"cid": 181, "color": "#F28E2B", "label": "command.go", "count": 17}, {"cid": 182, "color": "#E15759", "label": "NewRingBuffer", "count": 26}, {"cid": 183, "color": "#76B7B2", "label": "ws-load.js", "count": 17}, {"cid": 184, "color": "#59A14F", "label": "NewMessageService", "count": 19}, {"cid": 185, "color": "#EDC948", "label": "handler", "count": 35}, {"cid": 186, "color": "#B07AA1", "label": "tauri-client/package.json", "count": 8}, {"cid": 187, "color": "#FF9DA7", "label": "screen-share-tracks.test.ts", "count": 14}, {"cid": 188, "color": "#9C755F", "label": "LoginFormApi", "count": 16}, {"cid": 189, "color": "#BAB0AC", "label": "social.parity.spec.ts", "count": 16}, {"cid": 190, "color": "#4E79A7", "label": "fakeDirInfo", "count": 16}, {"cid": 191, "color": "#F28E2B", "label": "Role Management", "count": 16}, {"cid": 192, "color": "#E15759", "label": "User Profile & Sessions", "count": 16}, {"cid": 193, "color": "#76B7B2", "label": "F3 \u2014 Voice E2EE identity keys + TOFU (the remaining work)", "count": 16}, {"cid": 194, "color": "#59A14F", "label": "run", "count": 21}, {"cid": 195, "color": "#EDC948", "label": "newWazeroTestRegistry", "count": 14}, {"cid": 196, "color": "#B07AA1", "label": "newUserSvc", "count": 16}, {"cid": 197, "color": "#FF9DA7", "label": "plugins_handler_test.go", "count": 16}, {"cid": 198, "color": "#9C755F", "label": "badDirFile", "count": 15}, {"cid": 199, "color": "#BAB0AC", "label": "Contributing", "count": 15}, {"cid": 200, "color": "#4E79A7", "label": ".handleFreshConnect", "count": 15}, {"cid": 201, "color": "#F28E2B", "label": "mcp-introspect/package.json", "count": 15}, {"cid": 202, "color": "#E15759", "label": "v1.2.0-alpha.1 \u2014 Discord feature parity", "count": 26}, {"cid": 203, "color": "#76B7B2", "label": "Task Observer \u2014 Continuous Skill Discovery & Improvement", "count": 14}, {"cid": 204, "color": "#59A14F", "label": "scanPluginDirectory", "count": 12}, {"cid": 205, "color": "#EDC948", "label": "loadPref", "count": 21}, {"cid": 206, "color": "#B07AA1", "label": "1. Channel sidebar", "count": 14}, {"cid": 207, "color": "#FF9DA7", "label": "Voice, Video & E2EE \u2014 target UX", "count": 25}, {"cid": 208, "color": "#9C755F", "label": "Updater", "count": 21}, {"cid": 209, "color": "#BAB0AC", "label": "LiveKitClient", "count": 21}, {"cid": 210, "color": "#4E79A7", "label": "migrate.go", "count": 14}, {"cid": 211, "color": "#F28E2B", "label": "Queries", "count": 20}, {"cid": 212, "color": "#E15759", "label": "Messaging \u2014 target UX", "count": 14}, {"cid": 213, "color": "#76B7B2", "label": "Registry", "count": 19}, {"cid": 214, "color": "#59A14F", "label": "handleChannelFocusV2", "count": 11}, {"cid": 215, "color": "#EDC948", "label": "handlers_channel_perms_test.go", "count": 13}, {"cid": 216, "color": "#B07AA1", "label": "knip.json", "count": 13}, {"cid": 217, "color": "#FF9DA7", "label": "RNNoiseProcessor", "count": 13}, {"cid": 218, "color": "#9C755F", "label": "DeviceManager", "count": 18}, {"cid": 219, "color": "#BAB0AC", "label": "finish", "count": 13}, {"cid": 220, "color": "#4E79A7", "label": "TestHarness", "count": 13}, {"cid": 221, "color": "#F28E2B", "label": "Connection & Authentication \u2014 target UX", "count": 13}, {"cid": 222, "color": "#E15759", "label": "Settings & Admin \u2014 target UX", "count": 13}, {"cid": 223, "color": "#76B7B2", "label": "buildClientUpdateRouter", "count": 13}, {"cid": 224, "color": "#59A14F", "label": "logPersistence.ts", "count": 18}, {"cid": 225, "color": "#EDC948", "label": "newTestRoleService", "count": 13}, {"cid": 226, "color": "#B07AA1", "label": "event.go", "count": 13}, {"cid": 227, "color": "#FF9DA7", "label": "NewTopicRateLimiter", "count": 13}, {"cid": 228, "color": "#9C755F", "label": "Skill Authoring \u2014 taxonomy, licensing, confidentiality, editing rules", "count": 12}, {"cid": 229, "color": "#BAB0AC", "label": ".oxlintrc.json", "count": 12}, {"cid": 230, "color": "#4E79A7", "label": "message.go", "count": 17}, {"cid": 231, "color": "#F28E2B", "label": "e2e/dm-system.spec.ts", "count": 12}, {"cid": 232, "color": "#E15759", "label": "Queries", "count": 12}, {"cid": 233, "color": "#76B7B2", "label": "emoji.sql.go", "count": 12}, {"cid": 234, "color": "#59A14F", "label": "OwnCord \u2014 Architectural Audit & Spec-Conformance Review", "count": 12}, {"cid": 235, "color": "#EDC948", "label": "LiveKit Setup Guide", "count": 12}, {"cid": 236, "color": "#B07AA1", "label": "Voice Signaling", "count": 12}, {"cid": 237, "color": "#FF9DA7", "label": "Quick Start Guide", "count": 12}, {"cid": 238, "color": "#9C755F", "label": "readPump", "count": 10}, {"cid": 239, "color": "#BAB0AC", "label": "mockTauriFullSessionWithVoice", "count": 9}, {"cid": 240, "color": "#4E79A7", "label": "index.mjs", "count": 12}, {"cid": 241, "color": "#F28E2B", "label": "countingReadStateStore", "count": 11}, {"cid": 242, "color": "#E15759", "label": "bughunt.harness.mjs", "count": 11}, {"cid": 243, "color": "#76B7B2", "label": "voice-audio-tab.test.ts", "count": 11}, {"cid": 244, "color": "#59A14F", "label": "reactions.sql.go", "count": 11}, {"cid": 245, "color": "#EDC948", "label": "Channel Permission Overrides", "count": 11}, {"cid": 246, "color": "#B07AA1", "label": "Server Stats & User Administration", "count": 11}, {"cid": 247, "color": "#FF9DA7", "label": "deep-link.ts", "count": 14}, {"cid": 248, "color": "#9C755F", "label": "EventSink", "count": 14}, {"cid": 249, "color": "#BAB0AC", "label": "handleChatCommandV2", "count": 15}, {"cid": 250, "color": "#4E79A7", "label": "slashFS", "count": 10}, {"cid": 251, "color": "#F28E2B", "label": "Running the bughunt pipeline", "count": 10}, {"cid": 252, "color": "#E15759", "label": "OverlayManagers.ts", "count": 55}, {"cid": 253, "color": "#76B7B2", "label": "reconnectAfterCertAccept", "count": 10}, {"cid": 254, "color": "#59A14F", "label": "VoiceTopic", "count": 14}, {"cid": 255, "color": "#EDC948", "label": "emoji-voicemod.parity.spec.ts", "count": 10}, {"cid": 256, "color": "#B07AA1", "label": "voice-e2ee-verify.spec.ts", "count": 10}, {"cid": 257, "color": "#FF9DA7", "label": "include", "count": 10}, {"cid": 258, "color": "#9C755F", "label": "Queries", "count": 10}, {"cid": 259, "color": "#BAB0AC", "label": "Custom Emoji", "count": 10}, {"cid": 260, "color": "#4E79A7", "label": "OwnCord \u2014 Test-Coverage Audit", "count": 11}, {"cid": 261, "color": "#F28E2B", "label": "OriginAcceptOptions", "count": 10}, {"cid": 262, "color": "#E15759", "label": "EventRingBuffer", "count": 18}, {"cid": 263, "color": "#76B7B2", "label": "IsUniqueConstraintError", "count": 13}, {"cid": 264, "color": "#59A14F", "label": "newTokenTestDB", "count": 10}, {"cid": 265, "color": "#EDC948", "label": "scripts", "count": 9}, {"cid": 266, "color": "#B07AA1", "label": "bughunt-fix.harness.mjs", "count": 9}, {"cid": 267, "color": "#FF9DA7", "label": "router.ts", "count": 9}, {"cid": 268, "color": "#9C755F", "label": "E2E Test Status \u2014 2026-08-05", "count": 9}, {"cid": 269, "color": "#BAB0AC", "label": "render-ledger.mjs", "count": 7}, {"cid": 270, "color": "#4E79A7", "label": "MountGIFRoutes", "count": 12}, {"cid": 271, "color": "#F28E2B", "label": "TestMigrate_UpgradeFromMigration019PreservesData", "count": 9}, {"cid": 272, "color": "#E15759", "label": "Queries", "count": 9}, {"cid": 273, "color": "#76B7B2", "label": "TestChannelVisibility_RESTWSAgreement", "count": 7}, {"cid": 274, "color": "#59A14F", "label": "seed.go", "count": 12}, {"cid": 275, "color": "#EDC948", "label": "Finish the V2 Dispatch Migration (backlog item 11) \u2014 Design", "count": 9}, {"cid": 276, "color": "#B07AA1", "label": "Port Forwarding Guide", "count": 9}, {"cid": 277, "color": "#FF9DA7", "label": "Chat Messages", "count": 9}, {"cid": 278, "color": "#9C755F", "label": "hello/main.go", "count": 9}, {"cid": 279, "color": "#BAB0AC", "label": "DMChannelInfo", "count": 10}, {"cid": 280, "color": "#4E79A7", "label": "RingBuffer", "count": 13}, {"cid": 281, "color": "#F28E2B", "label": "Client HTTP TOFU Proxy (D5) \u2014 Design", "count": 9}, {"cid": 282, "color": "#E15759", "label": "create_tray", "count": 8}, {"cid": 283, "color": "#76B7B2", "label": "API Tokens", "count": 8}, {"cid": 284, "color": "#59A14F", "label": "Backups", "count": 8}, {"cid": 285, "color": "#EDC948", "label": "Plugin Administration", "count": 8}, {"cid": 286, "color": "#B07AA1", "label": "Invite Endpoints", "count": 8}, {"cid": 287, "color": "#FF9DA7", "label": "2. Code Quality", "count": 8}, {"cid": 288, "color": "#9C755F", "label": "Infrastructure roadmap \u2014 design", "count": 8}, {"cid": 289, "color": "#BAB0AC", "label": "Member Updates", "count": 8}, {"cid": 290, "color": "#4E79A7", "label": "genprotocol/main.go", "count": 8}, {"cid": 291, "color": "#F28E2B", "label": "Hub", "count": 8}, {"cid": 292, "color": "#E15759", "label": ".finishVoiceLeave", "count": 8}, {"cid": 293, "color": "#76B7B2", "label": "ChatSendCmd", "count": 8}, {"cid": 294, "color": "#59A14F", "label": "Environments, Activation Setup, and Handoff-Doc Mode", "count": 7}, {"cid": 295, "color": "#EDC948", "label": "handlePingV2", "count": 5}, {"cid": 296, "color": "#B07AA1", "label": "capabilities-scope.test.ts", "count": 7}, {"cid": 297, "color": "#FF9DA7", "label": "savePref", "count": 10}, {"cid": 298, "color": "#9C755F", "label": "GET /admin/api/updates", "count": 7}, {"cid": 299, "color": "#BAB0AC", "label": "Channel-Visibility Unification (backlog item 3) \u2014 Design", "count": 7}, {"cid": 300, "color": "#4E79A7", "label": "sqlc Adoption (D2) \u2014 Progress & Plan", "count": 7}, {"cid": 301, "color": "#F28E2B", "label": "Authentication Flow", "count": 7}, {"cid": 302, "color": "#E15759", "label": "Voice Moderation", "count": 7}, {"cid": 303, "color": "#76B7B2", "label": "bug_report.md", "count": 7}, {"cid": 304, "color": "#59A14F", "label": "Pull Request", "count": 7}, {"cid": 305, "color": "#EDC948", "label": "prettier", "count": 8}, {"cid": 306, "color": "#B07AA1", "label": "openFileDB", "count": 7}, {"cid": 307, "color": "#FF9DA7", "label": "hello plugin", "count": 7}, {"cid": 308, "color": "#9C755F", "label": "TestAdminAPI_PatchChannel_ArchiveCleansVoice", "count": 3}, {"cid": 309, "color": "#BAB0AC", "label": "window-state.ts", "count": 10}, {"cid": 310, "color": "#4E79A7", "label": "Tauri HTTP Capability Narrowing \u2014 Design", "count": 9}, {"cid": 311, "color": "#F28E2B", "label": "protocol_contract_test.go", "count": 7}, {"cid": 312, "color": "#E15759", "label": "ChatCommandCmd", "count": 7}, {"cid": 313, "color": "#76B7B2", "label": "ci-check", "count": 6}, {"cid": 314, "color": "#59A14F", "label": "Comprehensive Review (scheduled or fallback)", "count": 6}, {"cid": 315, "color": "#EDC948", "label": "VoiceWidgetOptions", "count": 6}, {"cid": 316, "color": "#B07AA1", "label": "LiveKitProcess", "count": 9}, {"cid": 317, "color": "#FF9DA7", "label": "cert-tofu.spec.ts", "count": 6}, {"cid": 318, "color": "#9C755F", "label": "updater.spec.ts", "count": 6}, {"cid": 319, "color": "#BAB0AC", "label": "message_reactions_test.go", "count": 3}, {"cid": 320, "color": "#4E79A7", "label": "tsconfig.build.json", "count": 6}, {"cid": 321, "color": "#F28E2B", "label": "User Blocks", "count": 6}, {"cid": 322, "color": "#E15759", "label": "PATCH /admin/api/settings", "count": 6}, {"cid": 323, "color": "#76B7B2", "label": "GET /api/v1/gif/search", "count": 6}, {"cid": 324, "color": "#59A14F", "label": "First-Run Setup", "count": 6}, {"cid": 325, "color": "#EDC948", "label": "LiveKit Endpoints", "count": 6}, {"cid": 326, "color": "#B07AA1", "label": "types.go", "count": 7}, {"cid": 327, "color": "#FF9DA7", "label": "Tailscale Guide (Zero-Config Remote Access)", "count": 15}, {"cid": 328, "color": "#9C755F", "label": "LiveKitProcess", "count": 6}, {"cid": 329, "color": "#BAB0AC", "label": "DB", "count": 7}, {"cid": 330, "color": "#4E79A7", "label": "ChatEditCmd", "count": 6}, {"cid": 331, "color": "#F28E2B", "label": "VoiceE2EEOfferCmd", "count": 6}, {"cid": 332, "color": "#E15759", "label": "VoiceModDeafenCmd", "count": 6}, {"cid": 333, "color": "#76B7B2", "label": "VoiceModMuteCmd", "count": 6}, {"cid": 334, "color": "#59A14F", "label": "TestHandlePresenceUpdate_BareStatusReadFailureAbortsBeforeCommit", "count": 7}, {"cid": 335, "color": "#EDC948", "label": "New", "count": 7}, {"cid": 336, "color": "#B07AA1", "label": "GET /api/v1/client-update/{target}/{current_version}", "count": 5}, {"cid": 337, "color": "#FF9DA7", "label": "OwnCord Architecture Blueprints", "count": 5}, {"cid": 338, "color": "#9C755F", "label": "Voice End-to-End Encryption", "count": 5}, {"cid": 339, "color": "#BAB0AC", "label": "feature_request.md", "count": 5}, {"cid": 340, "color": "#4E79A7", "label": "volume-menu.test.ts", "count": 6}, {"cid": 341, "color": "#F28E2B", "label": "buildMetricsRouter", "count": 6}, {"cid": 342, "color": "#E15759", "label": "RunningInContainer", "count": 5}, {"cid": 343, "color": "#76B7B2", "label": "ChatDeleteCmd", "count": 5}, {"cid": 344, "color": "#59A14F", "label": "Permission-Middleware Consolidation (audit finding A-2026-07-16) \u2014 Design", "count": 6}, {"cid": 345, "color": "#EDC948", "label": "MessageDeletedDMEvent", "count": 5}, {"cid": 346, "color": "#B07AA1", "label": "MessageEditedDMEvent", "count": 5}, {"cid": 347, "color": "#FF9DA7", "label": "MessageSentDMEvent", "count": 5}, {"cid": 348, "color": "#9C755F", "label": "PresenceUpdateCmd", "count": 5}, {"cid": 349, "color": "#BAB0AC", "label": "ReactionAddCmd", "count": 5}, {"cid": 350, "color": "#4E79A7", "label": "PresenceOthersEvent", "count": 5}, {"cid": 351, "color": "#F28E2B", "label": "ReactionRemoveCmd", "count": 5}, {"cid": 352, "color": "#E15759", "label": "stubExcludeSenderEvent", "count": 5}, {"cid": 353, "color": "#76B7B2", "label": "stubSequencedDMEvent", "count": 5}, {"cid": 354, "color": "#59A14F", "label": "stubVoiceChannelEvent", "count": 5}, {"cid": 355, "color": "#EDC948", "label": "stubVoiceChannelGuardedEvent", "count": 5}, {"cid": 356, "color": "#B07AA1", "label": "ReactionDMEvent", "count": 5}, {"cid": 357, "color": "#FF9DA7", "label": "VoiceE2EEAnnounceCmd", "count": 5}, {"cid": 358, "color": "#9C755F", "label": "TypingChannelEvent", "count": 5}, {"cid": 359, "color": "#BAB0AC", "label": "VoiceE2EEAnnounceEvent", "count": 5}, {"cid": 360, "color": "#4E79A7", "label": "VoiceModMoveCmd", "count": 5}, {"cid": 361, "color": "#F28E2B", "label": "OwnCord", "count": 6}, {"cid": 362, "color": "#E15759", "label": "OwnCord Client (Tauri v2)", "count": 4}, {"cid": 363, "color": "#76B7B2", "label": "VadProcessor", "count": 4}, {"cid": 364, "color": "#59A14F", "label": "log_level_from_env", "count": 4}, {"cid": 365, "color": "#EDC948", "label": "TestHandleVoiceCameraV2_RefusedWhenScreenshareSlotFull", "count": 6}, {"cid": 366, "color": "#B07AA1", "label": "VoiceE2EEOfferGuardedEvent", "count": 5}, {"cid": 367, "color": "#FF9DA7", "label": "File Upload and Serving", "count": 4}, {"cid": 368, "color": "#9C755F", "label": "Server Logs (SSE)", "count": 4}, {"cid": 369, "color": "#BAB0AC", "label": "D5 \u2014 Entity-relationship overview", "count": 4}, {"cid": 370, "color": "#4E79A7", "label": "CallSignalEvent", "count": 4}, {"cid": 371, "color": "#F28E2B", "label": "DMChannelOpenEvent", "count": 4}, {"cid": 372, "color": "#E15759", "label": "MessageDeletedChannelEvent", "count": 4}, {"cid": 373, "color": "#76B7B2", "label": "DM Calls", "count": 4}, {"cid": 374, "color": "#59A14F", "label": "Channel Updates", "count": 4}, {"cid": 375, "color": "#EDC948", "label": "Heartbeat and Connection Liveness", "count": 4}, {"cid": 376, "color": "#B07AA1", "label": "Message Type Reference Table", "count": 4}, {"cid": 377, "color": "#FF9DA7", "label": "Direct Messages", "count": 4}, {"cid": 378, "color": "#9C755F", "label": "OwnCord Server (Go)", "count": 4}, {"cid": 379, "color": "#BAB0AC", "label": "MessageEditedChannelEvent", "count": 4}, {"cid": 380, "color": "#4E79A7", "label": "CallDeclineCmd", "count": 4}, {"cid": 381, "color": "#F28E2B", "label": "CallRingCmd", "count": 4}, {"cid": 382, "color": "#E15759", "label": "MessageSentChannelEvent", "count": 4}, {"cid": 383, "color": "#76B7B2", "label": "ChannelFocusCmd", "count": 4}, {"cid": 384, "color": "#59A14F", "label": "PluginBroadcastEvent", "count": 4}, {"cid": 385, "color": "#EDC948", "label": "MarkReadCmd", "count": 4}, {"cid": 386, "color": "#B07AA1", "label": "PresenceSelfEvent", "count": 4}, {"cid": 387, "color": "#FF9DA7", "label": "ReactionChannelEvent", "count": 4}, {"cid": 388, "color": "#9C755F", "label": "TypingDMEvent", "count": 4}, {"cid": 389, "color": "#BAB0AC", "label": "VoiceStateEvent", "count": 4}, {"cid": 390, "color": "#4E79A7", "label": "TestDeleteExpiredSessions_SargableFormat", "count": 3}, {"cid": 391, "color": "#F28E2B", "label": ".EmitEvents", "count": 3}, {"cid": 392, "color": "#E15759", "label": "stubChannelEvent", "count": 4}, {"cid": 393, "color": "#76B7B2", "label": "stubUserTargetedEvent", "count": 4}, {"cid": 394, "color": "#59A14F", "label": "TestPresenceEvents_InvisibleBlanksCustomStatusForOthers", "count": 3}, {"cid": 395, "color": "#EDC948", "label": "TypingStartCmd", "count": 4}, {"cid": 396, "color": "#B07AA1", "label": "VoiceCameraCmd", "count": 4}, {"cid": 397, "color": "#FF9DA7", "label": "VoiceDeafenCmd", "count": 4}, {"cid": 398, "color": "#9C755F", "label": "VoiceJoinCmd", "count": 4}, {"cid": 399, "color": "#BAB0AC", "label": "VoiceMuteCmd", "count": 4}, {"cid": 400, "color": "#4E79A7", "label": "VoiceScreenshareCmd", "count": 4}, {"cid": 401, "color": "#F28E2B", "label": "PresenceEvent", "count": 3}, {"cid": 402, "color": "#E15759", "label": "errDMChannelIDsStore", "count": 3}, {"cid": 403, "color": "#76B7B2", "label": "db-change", "count": 3}, {"cid": 404, "color": "#59A14F", "label": "enable_media_capture", "count": 3}, {"cid": 405, "color": "#EDC948", "label": "admin-panel.spec.ts", "count": 3}, {"cid": 406, "color": "#B07AA1", "label": "start-server.sh", "count": 3}, {"cid": 407, "color": "#FF9DA7", "label": "Channel Focus and Read State", "count": 3}, {"cid": 408, "color": "#9C755F", "label": "Error Handling", "count": 3}, {"cid": 409, "color": "#BAB0AC", "label": "Presence", "count": 3}, {"cid": 410, "color": "#4E79A7", "label": "Transport Layer", "count": 3}, {"cid": 411, "color": "#F28E2B", "label": "pre-commit", "count": 3}, {"cid": 412, "color": "#E15759", "label": "pre-push", "count": 3}, {"cid": 413, "color": "#76B7B2", "label": "stubBroadcastAllEvent", "count": 3}, {"cid": 416, "color": "#B07AA1", "label": "015_plugins.sql", "count": 3}, {"cid": 417, "color": "#FF9DA7", "label": "tryLoadPluginTOML", "count": 3}, {"cid": 418, "color": "#9C755F", "label": "tryLoadPluginTOML", "count": 3}, {"cid": 424, "color": "#59A14F", "label": "protocol-change/SKILL.md", "count": 2}, {"cid": 425, "color": "#EDC948", "label": "strip-appimage-bundled-libs.sh", "count": 2}, {"cid": 426, "color": "#B07AA1", "label": "build.rs", "count": 2}, {"cid": 427, "color": "#FF9DA7", "label": "main.rs", "count": 2}, {"cid": 428, "color": "#9C755F", "label": "jitsi-rnnoise.d.ts", "count": 2}, {"cid": 429, "color": "#BAB0AC", "label": "stryker.config.mjs", "count": 2}, {"cid": 430, "color": "#4E79A7", "label": "setup.ts", "count": 2}, {"cid": 431, "color": "#F28E2B", "label": "appearance-high-contrast.test.ts", "count": 2}, {"cid": 432, "color": "#E15759", "label": "base-font-size-css.test.ts", "count": 2}, {"cid": 433, "color": "#76B7B2", "label": "vite.config.ts", "count": 2}, {"cid": 434, "color": "#59A14F", "label": "Querier", "count": 2}, {"cid": 435, "color": "#EDC948", "label": ".serialize", "count": 2}, {"cid": 436, "color": "#B07AA1", "label": "lockfile_other.go", "count": 2}, {"cid": 437, "color": "#FF9DA7", "label": "lockfile_unix.go", "count": 2}, {"cid": 438, "color": "#9C755F", "label": "lockfile_windows.go", "count": 2}, {"cid": 439, "color": "#BAB0AC", "label": "free_other.go", "count": 2}, {"cid": 440, "color": "#4E79A7", "label": "free_unix.go", "count": 2}, {"cid": 441, "color": "#F28E2B", "label": "free_windows.go", "count": 2}, {"cid": 442, "color": "#E15759", "label": "003_audit_log.sql", "count": 2}, {"cid": 443, "color": "#76B7B2", "label": "011_rate_lockouts.sql", "count": 2}, {"cid": 444, "color": "#59A14F", "label": "014_events_table.sql", "count": 2}, {"cid": 445, "color": "#EDC948", "label": "chaos-test.sh", "count": 2}, {"cid": 446, "color": "#B07AA1", "label": "voice-test.sh", "count": 2}, {"cid": 447, "color": "#FF9DA7", "label": "proc_spawner_nix.go", "count": 2}, {"cid": 448, "color": "#9C755F", "label": "proc_spawner_win.go", "count": 2}, {"cid": 449, "color": "#BAB0AC", "label": "RateLimiter", "count": 20}, {"cid": 450, "color": "#4E79A7", "label": "playwright.config.ts", "count": 1}, {"cid": 451, "color": "#F28E2B", "label": "playwright.config.admin.ts", "count": 1}, {"cid": 452, "color": "#E15759", "label": "playwright.config.native.ts", "count": 1}, {"cid": 453, "color": "#76B7B2", "label": "playwright.config.prod.ts", "count": 1}, {"cid": 454, "color": "#59A14F", "label": "constants.rs", "count": 1}, {"cid": 455, "color": "#EDC948", "label": "vite-env.d.ts", "count": 1}, {"cid": 456, "color": "#B07AA1", "label": "smoke.test.ts", "count": 1}, {"cid": 457, "color": "#FF9DA7", "label": ".addEventListener", "count": 1}, {"cid": 458, "color": "#9C755F", "label": "tauri-conf-webview2-args.test.ts", "count": 1}, {"cid": 459, "color": "#BAB0AC", "label": "video-grid-track-muted-css.test.ts", "count": 1}, {"cid": 460, "color": "#4E79A7", "label": "vitest.config.ts", "count": 1}, {"cid": 461, "color": "#F28E2B", "label": "vitest.config.browser.ts", "count": 1}, {"cid": 462, "color": "#E15759", "label": "github.com/owncord/server", "count": 1}, {"cid": 463, "color": "#76B7B2", "label": "owncord-client", "count": 1}, {"cid": 464, "color": "#59A14F", "label": "auth.go", "count": 1}, {"cid": 465, "color": "#EDC948", "label": "auth/constants.go", "count": 1}, {"cid": 466, "color": "#B07AA1", "label": "config/constants.go", "count": 1}, {"cid": 467, "color": "#FF9DA7", "label": "apitoken_queries.go", "count": 1}, {"cid": 468, "color": "#9C755F", "label": "block_queries.go", "count": 1}, {"cid": 469, "color": "#BAB0AC", "label": "emoji_queries.go", "count": 1}, {"cid": 470, "color": "#4E79A7", "label": "invite_queries.go", "count": 1}, {"cid": 471, "color": "#F28E2B", "label": "lockout_queries.go", "count": 1}, {"cid": 472, "color": "#E15759", "label": "db/logvalue.go", "count": 1}, {"cid": 473, "color": "#76B7B2", "label": "profile_queries.go", "count": 1}, {"cid": 474, "color": "#59A14F", "label": "admin.sql", "count": 1}, {"cid": 475, "color": "#EDC948", "label": "apitokens.sql", "count": 1}, {"cid": 476, "color": "#B07AA1", "label": "attachments.sql", "count": 1}, {"cid": 477, "color": "#FF9DA7", "label": "blocks.sql", "count": 1}, {"cid": 478, "color": "#9C755F", "label": "channels.sql", "count": 1}, {"cid": 479, "color": "#BAB0AC", "label": "dm.sql", "count": 1}, {"cid": 480, "color": "#4E79A7", "label": "emoji.sql", "count": 1}, {"cid": 481, "color": "#F28E2B", "label": "events.sql", "count": 1}, {"cid": 482, "color": "#E15759", "label": "invites.sql", "count": 1}, {"cid": 483, "color": "#76B7B2", "label": "lockouts.sql", "count": 1}, {"cid": 484, "color": "#59A14F", "label": "messages.sql", "count": 1}, {"cid": 485, "color": "#EDC948", "label": "plugins.sql", "count": 1}, {"cid": 486, "color": "#B07AA1", "label": "profile.sql", "count": 1}, {"cid": 487, "color": "#FF9DA7", "label": "reactions.sql", "count": 1}, {"cid": 488, "color": "#9C755F", "label": "roles.sql", "count": 1}, {"cid": 489, "color": "#BAB0AC", "label": "sessions.sql", "count": 1}, {"cid": 490, "color": "#4E79A7", "label": "users.sql", "count": 1}, {"cid": 491, "color": "#F28E2B", "label": "voice.sql", "count": 1}, {"cid": 492, "color": "#E15759", "label": "diskutil.go", "count": 1}, {"cid": 493, "color": "#76B7B2", "label": "004_voice_optimization.sql", "count": 1}, {"cid": 494, "color": "#59A14F", "label": "005_fix_member_permissions.sql", "count": 1}, {"cid": 495, "color": "#EDC948", "label": "006_channel_overrides_index.sql", "count": 1}, {"cid": 496, "color": "#B07AA1", "label": "007_member_video_permissions.sql", "count": 1}, {"cid": 497, "color": "#FF9DA7", "label": "008_attachment_dimensions.sql", "count": 1}, {"cid": 498, "color": "#9C755F", "label": "attachments", "count": 1}, {"cid": 499, "color": "#BAB0AC", "label": "010_attachment_uploader.sql", "count": 1}, {"cid": 500, "color": "#4E79A7", "label": "attachments", "count": 1}, {"cid": 501, "color": "#F28E2B", "label": "013_channel_type_constraint.sql", "count": 1}, {"cid": 502, "color": "#E15759", "label": "016_announcement_channel_type.sql", "count": 1}, {"cid": 503, "color": "#76B7B2", "label": "017_user_identity_key.sql", "count": 1}, {"cid": 504, "color": "#59A14F", "label": "019_perf_indexes.sql", "count": 1}, {"cid": 505, "color": "#EDC948", "label": "020_drop_redundant_indexes.sql", "count": 1}, {"cid": 506, "color": "#B07AA1", "label": "021_voice_server_moderation.sql", "count": 1}, {"cid": 507, "color": "#FF9DA7", "label": "023_role_management.sql", "count": 1}, {"cid": 508, "color": "#9C755F", "label": "025_channel_nsfw.sql", "count": 1}, {"cid": 509, "color": "#BAB0AC", "label": "026_emoji_mime.sql", "count": 1}, {"cid": 510, "color": "#4E79A7", "label": "emoji", "count": 1}, {"cid": 511, "color": "#F28E2B", "label": "027_user_profile_fields.sql", "count": 1}, {"cid": 512, "color": "#E15759", "label": "028_group_dms.sql", "count": 1}, {"cid": 513, "color": "#76B7B2", "label": "029_drop_sounds_table.sql", "count": 1}, {"cid": 514, "color": "#59A14F", "label": "031_sessions_expiry_index.sql", "count": 1}, {"cid": 515, "color": "#EDC948", "label": "migrations.go", "count": 1}, {"cid": 516, "color": "#B07AA1", "label": "plugin/errors.go", "count": 1}, {"cid": 517, "color": "#FF9DA7", "label": "host_storage.go", "count": 1}, {"cid": 518, "color": "#9C755F", "label": "host_ui.go", "count": 1}, {"cid": 519, "color": "#BAB0AC", "label": "message_crud.go", "count": 1}, {"cid": 520, "color": "#4E79A7", "label": "message_purge.go", "count": 1}, {"cid": 521, "color": "#F28E2B", "label": "mutex.go", "count": 1}, {"cid": 522, "color": "#E15759", "label": "mutex_deadlock.go", "count": 1}, {"cid": 523, "color": "#76B7B2", "label": "mutex_prod.go", "count": 1}, {"cid": 524, "color": "#59A14F", "label": "emit.go", "count": 1}, {"cid": 525, "color": "#EDC948", "label": "ws/errors.go", "count": 1}, {"cid": 526, "color": "#B07AA1", "label": "handlers.go", "count": 1}, {"cid": 527, "color": "#FF9DA7", "label": "hub_livekit.go", "count": 1}, {"cid": 528, "color": "#9C755F", "label": "hub_sweep.go", "count": 1}, {"cid": 529, "color": "#BAB0AC", "label": "message_types.go", "count": 1}, {"cid": 530, "color": "#4E79A7", "label": ".RoundTrip", "count": 3}, {"cid": 531, "color": "#F28E2B", "label": "docker-smoke.sh", "count": 3}, {"cid": 532, "color": "#E15759", "label": "TestRegisterNow_ReplacementNeverLosesAConcurrentGlobalBroadcast", "count": 3}, {"cid": 533, "color": "#76B7B2", "label": "prettier", "count": 2}, {"cid": 534, "color": "#59A14F", "label": "@vitest/browser", "count": 2}, {"cid": 535, "color": "#EDC948", "label": "@vitest/coverage-v8", "count": 2}];
|
|
|
|
// HTML-escape helper — prevents XSS when injecting graph data into innerHTML
|
|
function esc(s) {
|
|
return String(s).replace(/&/g,'&').replace(/</g,'<').replace(/>/g,'>').replace(/"/g,'"').replace(/'/g,''');
|
|
}
|
|
|
|
// Build vis datasets
|
|
const nodesDS = new vis.DataSet(RAW_NODES.map(n => ({
|
|
id: n.id, label: n.label, color: n.color, size: n.size,
|
|
font: n.font, title: n.title,
|
|
_community: n.community, _community_name: n.community_name,
|
|
_source_file: n.source_file, _file_type: n.file_type, _degree: n.degree,
|
|
})));
|
|
|
|
const edgesDS = new vis.DataSet(RAW_EDGES.map((e, i) => ({
|
|
id: i, from: e.from, to: e.to,
|
|
label: '',
|
|
title: e.title,
|
|
dashes: e.dashes,
|
|
width: e.width,
|
|
color: e.color,
|
|
arrows: { to: { enabled: true, scaleFactor: 0.5 } },
|
|
})));
|
|
|
|
const container = document.getElementById('graph');
|
|
const network = new vis.Network(container, { nodes: nodesDS, edges: edgesDS }, {
|
|
physics: {
|
|
enabled: true,
|
|
solver: 'forceAtlas2Based',
|
|
forceAtlas2Based: {
|
|
gravitationalConstant: -60,
|
|
centralGravity: 0.005,
|
|
springLength: 120,
|
|
springConstant: 0.08,
|
|
damping: 0.4,
|
|
avoidOverlap: 0.8,
|
|
},
|
|
stabilization: { iterations: 200, fit: true },
|
|
},
|
|
interaction: {
|
|
hover: true,
|
|
tooltipDelay: 100,
|
|
hideEdgesOnDrag: true,
|
|
navigationButtons: false,
|
|
keyboard: false,
|
|
},
|
|
nodes: { shape: 'dot', borderWidth: 1.5 },
|
|
edges: { smooth: { type: 'continuous', roundness: 0.2 }, selectionWidth: 3 },
|
|
});
|
|
|
|
network.once('stabilizationIterationsDone', () => {
|
|
network.setOptions({ physics: { enabled: false } });
|
|
});
|
|
|
|
function showInfo(nodeId) {
|
|
const n = nodesDS.get(nodeId);
|
|
if (!n) return;
|
|
const neighborIds = network.getConnectedNodes(nodeId);
|
|
const neighborItems = neighborIds.map(nid => {
|
|
const nb = nodesDS.get(nid);
|
|
const color = nb ? nb.color.background : '#555';
|
|
return `<span class="neighbor-link" style="border-left-color:${esc(color)}" data-nid="${esc(nid)}">${esc(nb ? nb.label : nid)}</span>`;
|
|
}).join('');
|
|
document.getElementById('info-content').innerHTML = `
|
|
<div class="field"><b>${esc(n.label)}</b></div>
|
|
<div class="field">Type: ${esc(n._file_type || 'unknown')}</div>
|
|
<div class="field">Community: ${esc(n._community_name)}</div>
|
|
<div class="field">Source: ${esc(n._source_file || '-')}</div>
|
|
<div class="field">Degree: ${n._degree}</div>
|
|
${neighborIds.length ? `<div class="field" style="margin-top:8px;color:#aaa;font-size:11px">Neighbors (${neighborIds.length})</div><div id="neighbors-list">${neighborItems}</div>` : ''}
|
|
`;
|
|
}
|
|
|
|
function focusNode(nodeId) {
|
|
network.focus(nodeId, { scale: 1.4, animation: true });
|
|
network.selectNodes([nodeId]);
|
|
showInfo(nodeId);
|
|
}
|
|
|
|
// Neighbor links use a data attribute + one delegated listener rather than an
|
|
// inline onclick. A node id/label sourced from a document or a scraped URL
|
|
// (graphify add) can contain a double-quote; dropping the stringified id
|
|
// unescaped into a quoted onclick both broke every link and allowed a hostile
|
|
// source to inject an event handler into the local report (stored XSS, #1838).
|
|
// esc() on data-nid keeps the value inside the attribute; the listener reads it
|
|
// back verbatim. Bound to document so it survives the innerHTML rebuild that
|
|
// recreates #neighbors-list on each showInfo().
|
|
document.addEventListener('click', e => {
|
|
const el = e.target.closest('.neighbor-link');
|
|
if (el && el.dataset.nid !== undefined) focusNode(el.dataset.nid);
|
|
});
|
|
|
|
// Track hovered node — hover detection is more reliable than click params
|
|
let hoveredNodeId = null;
|
|
network.on('hoverNode', params => {
|
|
hoveredNodeId = params.node;
|
|
container.style.cursor = 'pointer';
|
|
});
|
|
network.on('blurNode', () => {
|
|
hoveredNodeId = null;
|
|
container.style.cursor = 'default';
|
|
});
|
|
container.addEventListener('click', () => {
|
|
if (hoveredNodeId !== null) {
|
|
showInfo(hoveredNodeId);
|
|
network.selectNodes([hoveredNodeId]);
|
|
}
|
|
});
|
|
network.on('click', params => {
|
|
if (params.nodes.length > 0) {
|
|
showInfo(params.nodes[0]);
|
|
} else if (hoveredNodeId === null) {
|
|
document.getElementById('info-content').innerHTML = '<span class="empty">Click a node to inspect it</span>';
|
|
}
|
|
});
|
|
|
|
const searchInput = document.getElementById('search');
|
|
const searchResults = document.getElementById('search-results');
|
|
searchInput.addEventListener('input', () => {
|
|
const q = searchInput.value.toLowerCase().trim();
|
|
searchResults.innerHTML = '';
|
|
if (!q) { searchResults.style.display = 'none'; return; }
|
|
const matches = RAW_NODES.filter(n => n.label.toLowerCase().includes(q)).slice(0, 20);
|
|
if (!matches.length) { searchResults.style.display = 'none'; return; }
|
|
searchResults.style.display = 'block';
|
|
matches.forEach(n => {
|
|
const el = document.createElement('div');
|
|
el.className = 'search-item';
|
|
el.textContent = n.label;
|
|
el.style.borderLeft = `3px solid ${n.color.background}`;
|
|
el.style.paddingLeft = '8px';
|
|
el.onclick = () => {
|
|
network.focus(n.id, { scale: 1.5, animation: true });
|
|
network.selectNodes([n.id]);
|
|
showInfo(n.id);
|
|
searchResults.style.display = 'none';
|
|
searchInput.value = '';
|
|
};
|
|
searchResults.appendChild(el);
|
|
});
|
|
});
|
|
document.addEventListener('click', e => {
|
|
if (!searchResults.contains(e.target) && e.target !== searchInput)
|
|
searchResults.style.display = 'none';
|
|
});
|
|
|
|
const hiddenCommunities = new Set();
|
|
|
|
const selectAllCb = document.getElementById('select-all-cb');
|
|
|
|
function updateSelectAllState() {
|
|
const total = LEGEND.length;
|
|
const hidden = hiddenCommunities.size;
|
|
selectAllCb.checked = hidden === 0;
|
|
selectAllCb.indeterminate = hidden > 0 && hidden < total;
|
|
}
|
|
|
|
function toggleAllCommunities(hide) {
|
|
document.querySelectorAll('.legend-item').forEach(item => {
|
|
hide ? item.classList.add('dimmed') : item.classList.remove('dimmed');
|
|
});
|
|
document.querySelectorAll('.legend-cb').forEach(cb => {
|
|
cb.checked = !hide;
|
|
});
|
|
LEGEND.forEach(c => {
|
|
if (hide) hiddenCommunities.add(c.cid); else hiddenCommunities.delete(c.cid);
|
|
});
|
|
const updates = RAW_NODES.map(n => ({ id: n.id, hidden: hide }));
|
|
nodesDS.update(updates);
|
|
updateSelectAllState();
|
|
}
|
|
|
|
const legendEl = document.getElementById('legend');
|
|
LEGEND.forEach(c => {
|
|
const item = document.createElement('div');
|
|
item.className = 'legend-item';
|
|
const cb = document.createElement('input');
|
|
cb.type = 'checkbox';
|
|
cb.className = 'legend-cb';
|
|
cb.checked = true;
|
|
cb.addEventListener('change', (e) => {
|
|
e.stopPropagation();
|
|
if (cb.checked) {
|
|
hiddenCommunities.delete(c.cid);
|
|
item.classList.remove('dimmed');
|
|
} else {
|
|
hiddenCommunities.add(c.cid);
|
|
item.classList.add('dimmed');
|
|
}
|
|
const updates = RAW_NODES
|
|
.filter(n => n.community === c.cid)
|
|
.map(n => ({ id: n.id, hidden: !cb.checked }));
|
|
nodesDS.update(updates);
|
|
updateSelectAllState();
|
|
});
|
|
item.innerHTML = `<div class="legend-dot" style="background:${c.color}"></div>
|
|
<span class="legend-label">${c.label}</span>
|
|
<span class="legend-count">${c.count}</span>`;
|
|
item.prepend(cb);
|
|
item.onclick = (e) => {
|
|
if (e.target === cb) return;
|
|
cb.checked = !cb.checked;
|
|
cb.dispatchEvent(new Event('change'));
|
|
};
|
|
legendEl.appendChild(item);
|
|
});
|
|
</script>
|
|
<script>
|
|
// Render hyperedges as shaded regions
|
|
const hyperedges = [];
|
|
// afterDrawing passes ctx already transformed to network coordinate space.
|
|
// Draw node positions raw — no manual pan/zoom/DPR math needed.
|
|
network.on('afterDrawing', function(ctx) {
|
|
hyperedges.forEach(h => {
|
|
const positions = h.nodes
|
|
.map(nid => network.getPositions([nid])[nid])
|
|
.filter(p => p !== undefined);
|
|
if (positions.length < 2) return;
|
|
ctx.save();
|
|
ctx.globalAlpha = 0.12;
|
|
ctx.fillStyle = '#6366f1';
|
|
ctx.strokeStyle = '#6366f1';
|
|
ctx.lineWidth = 2;
|
|
ctx.beginPath();
|
|
// Centroid and expanded hull in network coordinates
|
|
const cx = positions.reduce((s, p) => s + p.x, 0) / positions.length;
|
|
const cy = positions.reduce((s, p) => s + p.y, 0) / positions.length;
|
|
const expanded = positions.map(p => ({
|
|
x: cx + (p.x - cx) * 1.15,
|
|
y: cy + (p.y - cy) * 1.15
|
|
}));
|
|
ctx.moveTo(expanded[0].x, expanded[0].y);
|
|
expanded.slice(1).forEach(p => ctx.lineTo(p.x, p.y));
|
|
ctx.closePath();
|
|
ctx.fill();
|
|
ctx.globalAlpha = 0.4;
|
|
ctx.stroke();
|
|
// Label
|
|
ctx.globalAlpha = 0.8;
|
|
ctx.fillStyle = '#4f46e5';
|
|
ctx.font = 'bold 11px sans-serif';
|
|
ctx.textAlign = 'center';
|
|
ctx.fillText(h.label, cx, cy - 5);
|
|
ctx.restore();
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |