OSINT / artifacts /osint_dashboard.html
ritishshrirao's picture
Updated OpenEnv server
b366696
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>OSINT Environment Dashboard</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&family=IBM+Plex+Mono:wght@400;600&display=swap" rel="stylesheet" />
<link href="https://unpkg.com/vis-network@9.1.9/styles/vis-network.min.css" rel="stylesheet" />
<script src="https://unpkg.com/vis-network@9.1.9/standalone/umd/vis-network.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js@4.4.3/dist/chart.umd.min.js"></script>
<style>
:root {
--ink: #1d232f;
--muted: #5f6d7a;
--line: #d5dfe8;
--bg: #f5f8fb;
--card: #ffffff;
--brand: #0f766e;
--brand-soft: #d4f4ef;
--accent: #d97706;
--accent-soft: #ffe7c2;
--ok: #15803d;
--danger: #b91c1c;
}
* { box-sizing: border-box; }
body {
margin: 0;
color: var(--ink);
font-family: "Space Grotesk", "Segoe UI", sans-serif;
background:
radial-gradient(1200px 500px at -5% -20%, #d8efe9, transparent 70%),
radial-gradient(900px 500px at 110% -10%, #ffe9cf, transparent 65%),
var(--bg);
}
.wrap { max-width: 1500px; margin: 0 auto; padding: 20px; }
.card {
background: var(--card);
border: 1px solid var(--line);
border-radius: 18px;
padding: 16px;
box-shadow: 0 10px 24px rgba(24, 39, 59, 0.06);
}
.hero {
display: grid;
grid-template-columns: 2.1fr 1fr;
gap: 14px;
margin-bottom: 14px;
}
.hero-main {
background: linear-gradient(145deg, #f7fffd, #fff8ef);
border: 1px solid #e6efe8;
}
h1 { margin: 0 0 8px; font-size: 30px; letter-spacing: -0.02em; }
h2 { margin: 0 0 10px; font-size: 18px; letter-spacing: -0.01em; }
.muted { color: var(--muted); }
.pill-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.pill {
border: 1px solid #dce8e6;
background: #fbfffe;
border-radius: 999px;
padding: 4px 10px;
font-size: 12px;
color: #214742;
}
.stats { display: grid; grid-template-columns: repeat(3, minmax(120px, 1fr)); gap: 10px; margin-top: 10px; }
.stat {
border: 1px dashed #cde2df;
background: linear-gradient(180deg, #fcfffe, #f6fffc);
border-radius: 12px;
padding: 10px;
}
.stat .k { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.stat .v { font-size: 22px; font-weight: 700; }
.layout { display: grid; grid-template-columns: 1.2fr 3fr 1.2fr; gap: 14px; margin-bottom: 14px; }
.control-col { display: flex; flex-direction: column; gap: 14px; }
.control-grid { display: grid; gap: 8px; }
.graph-wrap { position: relative; overflow: hidden; }
.graph { height: 540px; border: 1px solid var(--line); border-radius: 14px; background: #fbfdff; }
.graph-banner {
position: absolute;
top: 10px;
left: 10px;
background: rgba(255,255,255,0.93);
border: 1px solid var(--line);
border-radius: 12px;
padding: 6px 10px;
font-size: 12px;
z-index: 2;
backdrop-filter: blur(4px);
}
.legend { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; font-size: 12px; }
.dot { width: 9px; height: 9px; border-radius: 999px; display: inline-block; margin-right: 4px; }
.mono { font-family: "IBM Plex Mono", monospace; font-size: 12px; }
.mono-box { font-family: "IBM Plex Mono", monospace; font-size: 12px; line-height: 1.4; }
.answer-ok { color: var(--ok); font-weight: 600; }
.answer-bad { color: var(--danger); font-weight: 600; }
.inline { display: flex; gap: 8px; align-items: center; }
.split { display: grid; grid-template-columns: 2fr 1.3fr; gap: 14px; margin-bottom: 14px; }
.db-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.tab {
border: 1px solid var(--line);
border-radius: 9px;
padding: 5px 10px;
background: #fff;
cursor: pointer;
font-size: 12px;
}
.tab.active { background: var(--brand-soft); border-color: #b5e7de; color: #08554e; }
.table-wrap { max-height: 320px; overflow: auto; border: 1px solid var(--line); border-radius: 12px; }
table { width: 100%; border-collapse: collapse; font-size: 12.5px; }
th, td { padding: 8px; border-bottom: 1px solid #edf2f7; text-align: left; vertical-align: top; }
th { position: sticky; top: 0; background: #f7fbff; z-index: 1; }
tr:hover td { background: #f9fcff; }
.json-view {
height: 320px;
overflow: auto;
border: 1px solid var(--line);
border-radius: 12px;
background: #0f172a;
color: #d2f8ee;
padding: 10px;
margin: 0;
}
.charts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.chart-box { height: 300px; }
select, input[type="search"], button {
border: 1px solid var(--line);
border-radius: 9px;
padding: 8px;
font: inherit;
background: #fff;
color: var(--ink);
}
button { cursor: pointer; background: #fff; }
button.primary { background: var(--brand); border-color: #0e6f68; color: #fff; }
.subtle { background: #f7fafc; }
@media (max-width: 1100px) {
.hero, .layout, .split, .charts { grid-template-columns: 1fr; }
.graph { height: 440px; }
}
</style>
</head>
<body>
<div class="wrap">
<div class="hero">
<section class="card hero-main">
<h1>OSINT Benchmark Dashboard</h1>
<p class="muted">Interactive explorer for canonical knowledge graph, episode traces, source platform records, and benchmark ranking.</p>
<div class="pill-row" id="hero-pills"></div>
<div class="stats" id="stats"></div>
</section>
<section class="card">
<h2>Episode Explorer</h2>
<div class="inline" style="margin-bottom:8px">
<label class="mono" for="episode-select">Episode</label>
<select id="episode-select" style="flex:1"></select>
</div>
<div class="inline" style="gap:6px; margin-bottom:8px">
<button id="episode-prev">Prev</button>
<button id="episode-next">Next</button>
</div>
<div><strong>Task ID:</strong> <span id="task-id"></span></div>
<div><strong>Task Type:</strong> <span id="task-type"></span></div>
<div style="margin-top:8px"><strong>Question</strong></div>
<div id="task-question" class="muted mono-box"></div>
<div style="margin-top:8px"><strong>Ground Truth Answer</strong>: <span id="task-answer"></span></div>
<div style="margin-top:8px"><strong>Agent Answer</strong>: <span id="agent-answer"></span></div>
<div style="margin-top:8px"><strong>Correct</strong>: <span id="answer-correct"></span></div>
</section>
</div>
<div class="layout">
<section class="card control-col">
<div>
<h2>Graph Controls</h2>
<div class="control-grid">
<label class="mono" for="graph-mode">Graph Layer</label>
<select id="graph-mode">
<option value="canonical">Canonical Graph</option>
<option value="episode">Episode Graph</option>
</select>
<label class="mono" for="graph-search">Node Search</label>
<input id="graph-search" type="search" placeholder="Type node id or label..." />
<label class="mono" for="relation-filter">Relation Filter</label>
<input id="relation-filter" type="search" placeholder="Filter edge labels..." />
<button id="fit-graph" class="primary">Fit Graph</button>
</div>
</div>
<div>
<h2>Node Types</h2>
<div id="type-filters" class="control-grid mono"></div>
</div>
</section>
<section class="card">
<h2>Graph Explorer</h2>
<div class="graph-wrap">
<div class="graph-banner" id="graph-banner">Layer: Canonical Graph</div>
<div id="graph-canvas" class="graph"></div>
</div>
<div class="legend">
<span><span class="dot" style="background:#16a34a"></span>matched edge</span>
<span><span class="dot" style="background:#2563eb"></span>predicted only</span>
<span><span class="dot" style="background:#f59e0b"></span>truth only</span>
</div>
</section>
<section class="card control-col">
<div>
<h2>Node Inspector</h2>
<pre id="node-detail" class="json-view">Click a node to inspect attributes and neighbors.</pre>
</div>
<div>
<h2>Edge Inspector</h2>
<pre id="edge-detail" class="json-view">Click an edge to inspect relation details.</pre>
</div>
</section>
</div>
<div class="split">
<section class="card">
<h2>Original Database Explorer</h2>
<div class="db-tabs" id="db-tabs"></div>
<div class="inline" style="margin-bottom:8px">
<input id="db-search" type="search" placeholder="Search records..." style="flex:1" />
<select id="db-limit">
<option value="200">200</option>
<option value="500">500</option>
<option value="1000">1000</option>
</select>
</div>
<div class="table-wrap"><table id="db-table"></table></div>
</section>
<section class="card">
<h2>Selected Source Record</h2>
<pre id="db-detail" class="json-view">Click a row in the database table to inspect full JSON.</pre>
</section>
</div>
<div class="charts">
<section class="card">
<h2>Benchmark Summary Radar</h2>
<div class="chart-box"><canvas id="summary-chart"></canvas></div>
</section>
<section class="card">
<h2>Episode Reward and Graph F1</h2>
<div class="chart-box"><canvas id="trace-chart"></canvas></div>
</section>
</div>
<section class="card">
<h2>Benchmark Leaderboard</h2>
<div class="inline" style="margin-bottom:8px">
<label class="mono" for="leader-sort">Sort by</label>
<select id="leader-sort" class="subtle">
<option value="leaderboard_score">leaderboard_score</option>
<option value="task_success_rate">task_success_rate</option>
<option value="avg_graph_f1">avg_graph_f1</option>
<option value="retrieval_signal">retrieval_signal</option>
<option value="structural_signal">structural_signal</option>
<option value="spawn_signal">spawn_signal</option>
<option value="avg_reward">avg_reward</option>
</select>
</div>
<div class="table-wrap"><table id="leaderboard-table"></table></div>
</section>
</div>
<script>
const payload = {"summary": {"task_success_rate": 1.0, "tool_efficiency": 0.5, "avg_graph_f1": 0.8492063492063492, "avg_steps_to_solution": 9.0, "deanonymization_accuracy": 1.0, "avg_reward": 4.201760569277529, "avg_knowledge_carrier_reward": 0.5, "avg_knowledge_indexing_reward": 0.012000000000000002, "avg_connectivity_reward": 0.16999999999999998, "avg_format_reward": 0.14999999999999997, "avg_relation_informativeness_reward": 0.05935837081627929, "avg_entity_informativeness_reward": -0.0181244777358718, "avg_diversity_reward": 0.1157777777777778, "avg_soft_shaping_reward": 0.24999999999999994, "avg_connectivity_gain_reward": 0.16666666666666666, "avg_compactness_reward": 0.0, "avg_spawn_count": 4.0, "spawn_completion_rate": 1.0, "avg_spawn_critical_steps": 6.0, "spawn_signal": 0.6666666666666666, "retrieval_signal": 0.6792, "structural_signal": 0.5847801119494148, "leaderboard_score": 0.8534887252258901}, "episodes": [{"task_id": "seed_task_0", "task_type": "identity_resolution", "question": "Which canonical user owns alias alias_orchidfox?", "task_answer": "user_ivy", "agent_answer": "user_ivy", "graph_f1": 1.0, "reward": 3.4829783926897018, "steps": 9, "tool_calls": 4, "success": 1, "reward_components": {"tool_novelty": -0.30000000000000004, "tool_relevance": 0.0, "invalid_tool_penalty": 0.0, "total": 3.9048929863338495, "global_accuracy": 0.85, "soft_shaping": 0.15, "efficiency": 0.06333333333333334, "diversity": 0.08, "relation_informativeness": 0.018862904699080172, "entity_informativeness": -0.007303251698563446, "connectivity_gain": 0.1, "duplicate_edge_penalty": -0.44999999999999996, "format_reward": 0.15, "correctness": 1.15, "knowledge_carrier": 0.5, "knowledge_indexing": 0.0, "connectivity": 0.3, "graph_f1": 0.55, "compactness": 0.0, "repetition_penalty": 0.0, "spawn_auxiliary": 0.32808540635585226, "spawn_count": 4.0, "spawn_finished_subtasks": 4.0, "spawn_critical_steps": 6.0, "spawn_depth": 2.0, "spawn_breadth": 2.0}, "spawn_count": 4, "spawn_critical_steps": 6, "pred_edges": [{"src": "alias_orchidfox", "rel": "alias_of", "dst": "user_ivy", "confidence": 1.0}], "truth_edges": [{"src": "alias_orchidfox", "rel": "alias_of", "dst": "user_ivy", "confidence": 1.0}]}, {"task_id": "seed_task_1", "task_type": "entity_lookup", "question": "Which organization does user_bharat work at?", "task_answer": "org_northbridge_logistics", "agent_answer": "org_northbridge_logistics", "graph_f1": 1.0, "reward": 3.423516462279751, "steps": 9, "tool_calls": 4, "success": 1, "reward_components": {"tool_novelty": -0.30000000000000004, "tool_relevance": 0.0, "invalid_tool_penalty": 0.0, "total": 3.845431055923899, "global_accuracy": 0.85, "soft_shaping": 0.15, "efficiency": 0.06333333333333334, "diversity": 0.08, "relation_informativeness": -0.020136891830263206, "entity_informativeness": -0.027765385579171083, "connectivity_gain": 0.1, "duplicate_edge_penalty": -0.44999999999999996, "format_reward": 0.15, "correctness": 1.15, "knowledge_carrier": 0.5, "knowledge_indexing": 0.0, "connectivity": 0.3, "graph_f1": 0.55, "compactness": 0.0, "repetition_penalty": 0.0, "spawn_auxiliary": 0.32808540635585226, "spawn_count": 4.0, "spawn_finished_subtasks": 4.0, "spawn_critical_steps": 6.0, "spawn_depth": 2.0, "spawn_breadth": 2.0}, "spawn_count": 4, "spawn_critical_steps": 6, "pred_edges": [{"src": "user_bharat", "rel": "works_at", "dst": "org_northbridge_logistics", "confidence": 1.0}], "truth_edges": [{"src": "user_bharat", "rel": "works_at", "dst": "org_northbridge_logistics", "confidence": 1.0}]}, {"task_id": "seed_task_2", "task_type": "network_discovery", "question": "Who is directly connected to user_ivy in the logistics chain?", "task_answer": "user_bharat", "agent_answer": "user_bharat", "graph_f1": 1.0, "reward": 3.417063284209357, "steps": 9, "tool_calls": 4, "success": 1, "reward_components": {"tool_novelty": -0.30000000000000004, "tool_relevance": 0.0, "invalid_tool_penalty": 0.0, "total": 3.8389778778535044, "global_accuracy": 0.85, "soft_shaping": 0.15, "efficiency": 0.06333333333333334, "diversity": 0.08, "relation_informativeness": -0.007763142004801362, "entity_informativeness": -0.046592313475026584, "connectivity_gain": 0.1, "duplicate_edge_penalty": -0.44999999999999996, "format_reward": 0.15, "correctness": 1.15, "knowledge_carrier": 0.5, "knowledge_indexing": 0.0, "connectivity": 0.3, "graph_f1": 0.55, "compactness": 0.0, "repetition_penalty": 0.0, "spawn_auxiliary": 0.32808540635585226, "spawn_count": 4.0, "spawn_finished_subtasks": 4.0, "spawn_critical_steps": 6.0, "spawn_depth": 2.0, "spawn_breadth": 2.0}, "spawn_count": 4, "spawn_critical_steps": 6, "pred_edges": [{"src": "user_ivy", "rel": "connected_to", "dst": "user_bharat", "confidence": 1.0}], "truth_edges": [{"src": "user_ivy", "rel": "connected_to", "dst": "user_bharat", "confidence": 1.0}]}, {"task_id": "seed_task_3", "task_type": "event_tracing", "question": "Which event is discussed in thread thr_supply_leak?", "task_answer": "event_project_lantern", "agent_answer": "event_project_lantern", "graph_f1": 1.0, "reward": 3.5504339577400814, "steps": 9, "tool_calls": 4, "success": 1, "reward_components": {"tool_novelty": -0.30000000000000004, "tool_relevance": 0.0, "invalid_tool_penalty": 0.0, "total": 3.972348551384229, "global_accuracy": 0.85, "soft_shaping": 0.15, "efficiency": 0.06333333333333334, "diversity": 0.08, "relation_informativeness": 0.1025601791313388, "entity_informativeness": -0.023544961080442527, "connectivity_gain": 0.1, "duplicate_edge_penalty": -0.44999999999999996, "format_reward": 0.15, "correctness": 1.15, "knowledge_carrier": 0.5, "knowledge_indexing": 0.0, "connectivity": 0.3, "graph_f1": 0.55, "compactness": 0.0, "repetition_penalty": 0.0, "spawn_auxiliary": 0.32808540635585226, "spawn_count": 4.0, "spawn_finished_subtasks": 4.0, "spawn_critical_steps": 6.0, "spawn_depth": 2.0, "spawn_breadth": 2.0}, "spawn_count": 4, "spawn_critical_steps": 6, "pred_edges": [{"src": "thr_supply_leak", "rel": "discusses", "dst": "event_project_lantern", "confidence": 1.0}], "truth_edges": [{"src": "thr_supply_leak", "rel": "discusses", "dst": "event_project_lantern", "confidence": 1.0}]}, {"task_id": "seed_task_4", "task_type": "location_trace", "question": "Which location is referenced by post post_shift_roster?", "task_answer": "loc_dockyard17", "agent_answer": "loc_dockyard17", "graph_f1": 1.0, "reward": 3.5309459517564683, "steps": 9, "tool_calls": 4, "success": 1, "reward_components": {"tool_novelty": -0.30000000000000004, "tool_relevance": 0.0, "invalid_tool_penalty": 0.0, "total": 3.952860545400616, "global_accuracy": 0.85, "soft_shaping": 0.15, "efficiency": 0.06333333333333334, "diversity": 0.08, "relation_informativeness": 0.05530678756855461, "entity_informativeness": 0.004220424498728583, "connectivity_gain": 0.1, "duplicate_edge_penalty": -0.44999999999999996, "format_reward": 0.15, "correctness": 1.15, "knowledge_carrier": 0.5, "knowledge_indexing": 0.0, "connectivity": 0.3, "graph_f1": 0.55, "compactness": 0.0, "repetition_penalty": 0.0, "spawn_auxiliary": 0.32808540635585226, "spawn_count": 4.0, "spawn_finished_subtasks": 4.0, "spawn_critical_steps": 6.0, "spawn_depth": 2.0, "spawn_breadth": 2.0}, "spawn_count": 4, "spawn_critical_steps": 6, "pred_edges": [{"src": "post_shift_roster", "rel": "references", "dst": "loc_dockyard17", "confidence": 1.0}], "truth_edges": [{"src": "post_shift_roster", "rel": "references", "dst": "loc_dockyard17", "confidence": 1.0}]}, {"task_id": "seed_task_5", "task_type": "identity_resolution", "question": "Alias alias_monsoonbyte belongs to which user and where does that user work? Return only the organization node id.", "task_answer": "org_blueharbor_media", "agent_answer": "org_blueharbor_media", "graph_f1": 1.0, "reward": 5.0327885648681026, "steps": 9, "tool_calls": 4, "success": 1, "reward_components": {"tool_novelty": -0.30000000000000004, "tool_relevance": 0.064, "invalid_tool_penalty": 0.0, "total": 5.240703158512251, "global_accuracy": 1.7, "soft_shaping": 0.3, "efficiency": 0.08833333333333335, "diversity": 0.15000000000000002, "relation_informativeness": -0.0009554903483872754, "entity_informativeness": -0.02667468447269475, "connectivity_gain": 0.2, "duplicate_edge_penalty": -0.3, "format_reward": 0.15, "correctness": 1.15, "knowledge_carrier": 0.5, "knowledge_indexing": 0.18000000000000002, "connectivity": 0.3, "graph_f1": 0.55, "compactness": 0.0, "repetition_penalty": 0.0, "spawn_auxiliary": 0.3280854063558518, "spawn_count": 4.0, "spawn_finished_subtasks": 4.0, "spawn_critical_steps": 6.0, "spawn_depth": 2.0, "spawn_breadth": 2.0}, "spawn_count": 4, "spawn_critical_steps": 6, "pred_edges": [{"src": "alias_monsoonbyte", "rel": "alias_of", "dst": "user_diya", "confidence": 1.0}, {"src": "user_diya", "rel": "works_at", "dst": "org_blueharbor_media", "confidence": 1.0}], "truth_edges": [{"src": "alias_monsoonbyte", "rel": "alias_of", "dst": "user_diya", "confidence": 1.0}, {"src": "user_diya", "rel": "works_at", "dst": "org_blueharbor_media", "confidence": 1.0}]}, {"task_id": "seed_task_6", "task_type": "event_tracing", "question": "Which user both authored thread thr_supply_leak and investigates event_project_lantern?", "task_answer": "user_diya", "agent_answer": "user_diya", "graph_f1": 1.0, "reward": 4.887245669359377, "steps": 9, "tool_calls": 4, "success": 1, "reward_components": {"tool_novelty": -0.30000000000000004, "tool_relevance": 0.0, "invalid_tool_penalty": 0.0, "total": 5.159160263003525, "global_accuracy": 1.7, "soft_shaping": 0.3, "efficiency": 0.08833333333333335, "diversity": 0.12666666666666665, "relation_informativeness": 0.1538402686970082, "entity_informativeness": -0.05968000569348237, "connectivity_gain": 0.2, "duplicate_edge_penalty": -0.3, "format_reward": 0.15, "correctness": 1.15, "knowledge_carrier": 0.5, "knowledge_indexing": 0.0, "connectivity": 0.3, "graph_f1": 0.55, "compactness": 0.0, "repetition_penalty": 0.0, "spawn_auxiliary": 0.3280854063558518, "spawn_count": 4.0, "spawn_finished_subtasks": 4.0, "spawn_critical_steps": 6.0, "spawn_depth": 2.0, "spawn_breadth": 2.0}, "spawn_count": 4, "spawn_critical_steps": 6, "pred_edges": [{"src": "user_diya", "rel": "authored_thread", "dst": "thr_supply_leak", "confidence": 1.0}, {"src": "user_diya", "rel": "investigates", "dst": "event_project_lantern", "confidence": 1.0}], "truth_edges": [{"src": "user_diya", "rel": "authored_thread", "dst": "thr_supply_leak", "confidence": 1.0}, {"src": "user_diya", "rel": "investigates", "dst": "event_project_lantern", "confidence": 1.0}]}, {"task_id": "seed_task_7", "task_type": "cross_platform_linking", "question": "Which organization operates in the location referenced by post_midnight_manifest?", "task_answer": "org_northbridge_logistics", "agent_answer": "org_northbridge_logistics", "graph_f1": 1.0, "reward": 4.866493998418333, "steps": 9, "tool_calls": 4, "success": 1, "reward_components": {"tool_novelty": -0.30000000000000004, "tool_relevance": 0.0, "invalid_tool_penalty": 0.0, "total": 5.138408592062481, "global_accuracy": 1.7, "soft_shaping": 0.3, "efficiency": 0.08833333333333335, "diversity": 0.12666666666666665, "relation_informativeness": 0.09106731287281425, "entity_informativeness": -0.017658720810331874, "connectivity_gain": 0.2, "duplicate_edge_penalty": -0.3, "format_reward": 0.15, "correctness": 1.15, "knowledge_carrier": 0.5, "knowledge_indexing": 0.0, "connectivity": 0.3, "graph_f1": 0.55, "compactness": 0.0, "repetition_penalty": 0.0, "spawn_auxiliary": 0.3280854063558518, "spawn_count": 4.0, "spawn_finished_subtasks": 4.0, "spawn_critical_steps": 6.0, "spawn_depth": 2.0, "spawn_breadth": 2.0}, "spawn_count": 4, "spawn_critical_steps": 6, "pred_edges": [{"src": "post_midnight_manifest", "rel": "references", "dst": "loc_dockyard17", "confidence": 1.0}, {"src": "org_northbridge_logistics", "rel": "operates_in", "dst": "loc_dockyard17", "confidence": 1.0}], "truth_edges": [{"src": "post_midnight_manifest", "rel": "references", "dst": "loc_dockyard17", "confidence": 1.0}, {"src": "org_northbridge_logistics", "rel": "operates_in", "dst": "loc_dockyard17", "confidence": 1.0}]}, {"task_id": "seed_task_8", "task_type": "network_discovery", "question": "user_ivy is directly connected to which collaborator on event_project_lantern?", "task_answer": "user_bharat", "agent_answer": "user_bharat", "graph_f1": 1.0, "reward": 4.768396011079182, "steps": 9, "tool_calls": 4, "success": 1, "reward_components": {"tool_novelty": -0.30000000000000004, "tool_relevance": 0.0, "invalid_tool_penalty": 0.0, "total": 5.04031060472333, "global_accuracy": 1.7, "soft_shaping": 0.3, "efficiency": 0.08833333333333335, "diversity": 0.12666666666666665, "relation_informativeness": 0.04873759982431083, "entity_informativeness": -0.07342699510098014, "connectivity_gain": 0.2, "duplicate_edge_penalty": -0.3, "format_reward": 0.15, "correctness": 1.15, "knowledge_carrier": 0.5, "knowledge_indexing": 0.0, "connectivity": 0.3, "graph_f1": 0.55, "compactness": 0.0, "repetition_penalty": 0.0, "spawn_auxiliary": 0.3280854063558518, "spawn_count": 4.0, "spawn_finished_subtasks": 4.0, "spawn_critical_steps": 6.0, "spawn_depth": 2.0, "spawn_breadth": 2.0}, "spawn_count": 4, "spawn_critical_steps": 6, "pred_edges": [{"src": "user_ivy", "rel": "connected_to", "dst": "user_bharat", "confidence": 1.0}, {"src": "user_bharat", "rel": "collaborates_on", "dst": "event_project_lantern", "confidence": 1.0}], "truth_edges": [{"src": "user_ivy", "rel": "connected_to", "dst": "user_bharat", "confidence": 1.0}, {"src": "user_bharat", "rel": "collaborates_on", "dst": "event_project_lantern", "confidence": 1.0}]}, {"task_id": "seed_task_9", "task_type": "deanonymization", "question": "Which canonical user is behind alias_docksparrow and collaborates on event_project_lantern?", "task_answer": "user_hiro", "agent_answer": "user_hiro", "graph_f1": 1.0, "reward": 4.8491889730762745, "steps": 9, "tool_calls": 4, "success": 1, "reward_components": {"tool_novelty": -0.30000000000000004, "tool_relevance": 0.0, "invalid_tool_penalty": 0.0, "total": 5.121103566720422, "global_accuracy": 1.7, "soft_shaping": 0.3, "efficiency": 0.08833333333333335, "diversity": 0.15000000000000002, "relation_informativeness": 0.06870713485222198, "entity_informativeness": -0.035936901465132676, "connectivity_gain": 0.2, "duplicate_edge_penalty": -0.3, "format_reward": 0.15, "correctness": 1.15, "knowledge_carrier": 0.5, "knowledge_indexing": 0.0, "connectivity": 0.3, "graph_f1": 0.55, "compactness": 0.0, "repetition_penalty": 0.0, "spawn_auxiliary": 0.3280854063558518, "spawn_count": 4.0, "spawn_finished_subtasks": 4.0, "spawn_critical_steps": 6.0, "spawn_depth": 2.0, "spawn_breadth": 2.0}, "spawn_count": 4, "spawn_critical_steps": 6, "pred_edges": [{"src": "alias_docksparrow", "rel": "alias_of", "dst": "user_hiro", "confidence": 1.0}, {"src": "user_hiro", "rel": "collaborates_on", "dst": "event_project_lantern", "confidence": 1.0}], "truth_edges": [{"src": "alias_docksparrow", "rel": "alias_of", "dst": "user_hiro", "confidence": 1.0}, {"src": "user_hiro", "rel": "collaborates_on", "dst": "event_project_lantern", "confidence": 1.0}]}, {"task_id": "seed_task_10", "task_type": "convoluted_trace", "question": "An alias authored post_midnight_manifest referencing loc_dockyard17; through a direct connection from that alias owner, which user collaborates on event_project_lantern?", "task_answer": "user_bharat", "agent_answer": "user_bharat", "graph_f1": 0.5714285714285715, "reward": 4.035947417130322, "steps": 9, "tool_calls": 4, "success": 1, "reward_components": {"tool_novelty": -0.30000000000000004, "tool_relevance": 0.0, "invalid_tool_penalty": 0.0, "total": 4.307862010774469, "global_accuracy": 1.7, "soft_shaping": 0.3, "efficiency": 0.08833333333333335, "diversity": 0.12666666666666665, "relation_informativeness": 0.06870713485222198, "entity_informativeness": 0.009869161636533142, "connectivity_gain": 0.2, "duplicate_edge_penalty": -0.3, "format_reward": 0.15, "correctness": 1.15, "knowledge_carrier": 0.5, "knowledge_indexing": 0.0, "connectivity": -0.3, "graph_f1": 0.31428571428571433, "compactness": 0.0, "repetition_penalty": 0.0, "spawn_auxiliary": 0.32808540635585226, "spawn_count": 4.0, "spawn_finished_subtasks": 4.0, "spawn_critical_steps": 6.0, "spawn_depth": 2.0, "spawn_breadth": 2.0}, "spawn_count": 4, "spawn_critical_steps": 6, "pred_edges": [{"src": "alias_orchidfox", "rel": "alias_of", "dst": "user_ivy", "confidence": 1.0}, {"src": "alias_orchidfox", "rel": "authored_post", "dst": "post_midnight_manifest", "confidence": 1.0}], "truth_edges": [{"src": "alias_orchidfox", "rel": "alias_of", "dst": "user_ivy", "confidence": 1.0}, {"src": "alias_orchidfox", "rel": "authored_post", "dst": "post_midnight_manifest", "confidence": 1.0}, {"src": "post_midnight_manifest", "rel": "references", "dst": "loc_dockyard17", "confidence": 1.0}, {"src": "user_ivy", "rel": "connected_to", "dst": "user_bharat", "confidence": 1.0}, {"src": "user_bharat", "rel": "collaborates_on", "dst": "event_project_lantern", "confidence": 1.0}]}, {"task_id": "seed_task_11", "task_type": "convoluted_trace", "question": "Thread thr_supply_leak references org_northbridge_logistics. Identify the canonical user behind alias_docksparrow who works there and collaborates on event_project_lantern.", "task_answer": "user_hiro", "agent_answer": "user_hiro", "graph_f1": 0.6666666666666666, "reward": 4.237246885434406, "steps": 9, "tool_calls": 4, "success": 1, "reward_components": {"tool_novelty": -0.30000000000000004, "tool_relevance": 0.0, "invalid_tool_penalty": 0.0, "total": 4.5091614790785535, "global_accuracy": 1.7, "soft_shaping": 0.3, "efficiency": 0.08833333333333335, "diversity": 0.15000000000000002, "relation_informativeness": 0.055627269200726095, "entity_informativeness": -0.0014657901221725345, "connectivity_gain": 0.2, "duplicate_edge_penalty": -0.3, "format_reward": 0.15, "correctness": 1.15, "knowledge_carrier": 0.5, "knowledge_indexing": 0.0, "connectivity": -0.15, "graph_f1": 0.3666666666666667, "compactness": 0.0, "repetition_penalty": 0.0, "spawn_auxiliary": 0.32808540635585226, "spawn_count": 4.0, "spawn_finished_subtasks": 4.0, "spawn_critical_steps": 6.0, "spawn_depth": 2.0, "spawn_breadth": 2.0}, "spawn_count": 4, "spawn_critical_steps": 6, "pred_edges": [{"src": "thr_supply_leak", "rel": "references", "dst": "org_northbridge_logistics", "confidence": 1.0}, {"src": "alias_docksparrow", "rel": "alias_of", "dst": "user_hiro", "confidence": 1.0}], "truth_edges": [{"src": "thr_supply_leak", "rel": "references", "dst": "org_northbridge_logistics", "confidence": 1.0}, {"src": "alias_docksparrow", "rel": "alias_of", "dst": "user_hiro", "confidence": 1.0}, {"src": "user_hiro", "rel": "works_at", "dst": "org_northbridge_logistics", "confidence": 1.0}, {"src": "user_hiro", "rel": "collaborates_on", "dst": "event_project_lantern", "confidence": 1.0}]}, {"task_id": "seed_task_12", "task_type": "convoluted_trace", "question": "Cross-platform Black Kite linkage: alias_monsoonbyte authored post_drone_parts referencing event_black_kite. Which canonical user behind that alias is directly connected to the Kestrel Works collaborator on the same event?", "task_answer": "user_diya", "agent_answer": "user_diya", "graph_f1": 0.5, "reward": 4.401765935104136, "steps": 9, "tool_calls": 4, "success": 1, "reward_components": {"tool_novelty": -0.30000000000000004, "tool_relevance": 0.0, "invalid_tool_penalty": 0.0, "total": 4.673680528748283, "global_accuracy": 1.7, "soft_shaping": 0.3, "efficiency": 0.08833333333333335, "diversity": 0.12666666666666665, "relation_informativeness": 0.06870713485222198, "entity_informativeness": 0.0149733938960619, "connectivity_gain": 0.2, "duplicate_edge_penalty": -0.3, "format_reward": 0.15, "correctness": 1.15, "knowledge_carrier": 0.5, "knowledge_indexing": 0.0, "connectivity": 0.09999999999999998, "graph_f1": 0.275, "compactness": 0.0, "repetition_penalty": 0.0, "spawn_auxiliary": 0.3280854063558518, "spawn_count": 4.0, "spawn_finished_subtasks": 4.0, "spawn_critical_steps": 6.0, "spawn_depth": 2.0, "spawn_breadth": 2.0}, "spawn_count": 4, "spawn_critical_steps": 6, "pred_edges": [{"src": "alias_monsoonbyte", "rel": "alias_of", "dst": "user_diya", "confidence": 1.0}, {"src": "alias_monsoonbyte", "rel": "authored_post", "dst": "post_drone_parts", "confidence": 1.0}], "truth_edges": [{"src": "alias_monsoonbyte", "rel": "alias_of", "dst": "user_diya", "confidence": 1.0}, {"src": "alias_monsoonbyte", "rel": "authored_post", "dst": "post_drone_parts", "confidence": 1.0}, {"src": "post_drone_parts", "rel": "references", "dst": "event_black_kite", "confidence": 1.0}, {"src": "user_ivy", "rel": "works_at", "dst": "org_kestrel_works", "confidence": 1.0}, {"src": "user_ivy", "rel": "collaborates_on", "dst": "event_black_kite", "confidence": 1.0}, {"src": "user_diya", "rel": "connected_to", "dst": "user_ivy", "confidence": 1.0}]}, {"task_id": "seed_task_13", "task_type": "convoluted_trace", "question": "A sat-phone ping alias references loc_rivergate. Which canonical user behind alias_nightrelay works at an organization operating there and collaborates on event_project_lantern?", "task_answer": "user_faris", "agent_answer": "user_faris", "graph_f1": 0.5, "reward": 4.209316108644326, "steps": 9, "tool_calls": 4, "success": 1, "reward_components": {"tool_novelty": -0.30000000000000004, "tool_relevance": 0.0, "invalid_tool_penalty": 0.0, "total": 4.4812307022884745, "global_accuracy": 1.7, "soft_shaping": 0.3, "efficiency": 0.08833333333333335, "diversity": 0.12666666666666665, "relation_informativeness": 0.06870713485222198, "entity_informativeness": 0.022523567436252216, "connectivity_gain": 0.2, "duplicate_edge_penalty": -0.3, "format_reward": 0.15, "correctness": 1.15, "knowledge_carrier": 0.5, "knowledge_indexing": 0.0, "connectivity": -0.1, "graph_f1": 0.275, "compactness": 0.0, "repetition_penalty": 0.0, "spawn_auxiliary": 0.32808540635585226, "spawn_count": 4.0, "spawn_finished_subtasks": 4.0, "spawn_critical_steps": 6.0, "spawn_depth": 2.0, "spawn_breadth": 2.0}, "spawn_count": 4, "spawn_critical_steps": 6, "pred_edges": [{"src": "alias_nightrelay", "rel": "alias_of", "dst": "user_faris", "confidence": 1.0}, {"src": "alias_nightrelay", "rel": "authored_post", "dst": "post_sat_phone_ping", "confidence": 1.0}], "truth_edges": [{"src": "alias_nightrelay", "rel": "alias_of", "dst": "user_faris", "confidence": 1.0}, {"src": "alias_nightrelay", "rel": "authored_post", "dst": "post_sat_phone_ping", "confidence": 1.0}, {"src": "post_sat_phone_ping", "rel": "references", "dst": "loc_rivergate", "confidence": 1.0}, {"src": "user_faris", "rel": "works_at", "dst": "org_tidewatch_ops", "confidence": 1.0}, {"src": "org_tidewatch_ops", "rel": "operates_in", "dst": "loc_rivergate", "confidence": 1.0}, {"src": "user_faris", "rel": "collaborates_on", "dst": "event_project_lantern", "confidence": 1.0}]}, {"task_id": "seed_task_14", "task_type": "convoluted_trace", "question": "From thread thr_port_audit discussing event_black_kite and referencing org_kestrel_works, identify the canonical user whose alias authored post_midnight_manifest and who collaborates on event_black_kite.", "task_answer": "user_ivy", "agent_answer": "user_ivy", "graph_f1": 0.5, "reward": 4.333080927373117, "steps": 9, "tool_calls": 4, "success": 1, "reward_components": {"tool_novelty": -0.30000000000000004, "tool_relevance": 0.0, "invalid_tool_penalty": 0.0, "total": 4.6049955210172655, "global_accuracy": 1.7, "soft_shaping": 0.3, "efficiency": 0.08833333333333335, "diversity": 0.12666666666666665, "relation_informativeness": 0.11840022502492006, "entity_informativeness": -0.003404704007654851, "connectivity_gain": 0.2, "duplicate_edge_penalty": -0.3, "format_reward": 0.15, "correctness": 1.15, "knowledge_carrier": 0.5, "knowledge_indexing": 0.0, "connectivity": 0.0, "graph_f1": 0.275, "compactness": 0.0, "repetition_penalty": 0.0, "spawn_auxiliary": 0.3280854063558518, "spawn_count": 4.0, "spawn_finished_subtasks": 4.0, "spawn_critical_steps": 6.0, "spawn_depth": 2.0, "spawn_breadth": 2.0}, "spawn_count": 4, "spawn_critical_steps": 6, "pred_edges": [{"src": "thr_port_audit", "rel": "discusses", "dst": "event_black_kite", "confidence": 1.0}, {"src": "thr_port_audit", "rel": "references", "dst": "org_kestrel_works", "confidence": 1.0}], "truth_edges": [{"src": "thr_port_audit", "rel": "discusses", "dst": "event_black_kite", "confidence": 1.0}, {"src": "thr_port_audit", "rel": "references", "dst": "org_kestrel_works", "confidence": 1.0}, {"src": "alias_orchidfox", "rel": "alias_of", "dst": "user_ivy", "confidence": 1.0}, {"src": "alias_orchidfox", "rel": "authored_post", "dst": "post_midnight_manifest", "confidence": 1.0}, {"src": "user_ivy", "rel": "works_at", "dst": "org_kestrel_works", "confidence": 1.0}, {"src": "user_ivy", "rel": "collaborates_on", "dst": "event_black_kite", "confidence": 1.0}]}], "leaderboard": [{"config": {"max_agents": 3, "max_breadth": 2, "max_depth": 2, "max_steps": 18, "max_width": 2, "seed": 7, "seeded_questions": 1, "swarm_enabled": true}, "created_at": "2026-04-01T17:29:12+00:00", "episodes": 1, "metrics": {"avg_compactness_reward": 0.0, "avg_connectivity_gain_reward": 0.1, "avg_connectivity_reward": 0.3, "avg_diversity_reward": 0.08, "avg_entity_informativeness_reward": 0.06128386989162576, "avg_format_reward": 0.15, "avg_graph_f1": 1.0, "avg_knowledge_carrier_reward": 0.5, "avg_knowledge_indexing_reward": 0.3, "avg_relation_informativeness_reward": 0.12, "avg_reward": 4.059369276247478, "avg_soft_shaping_reward": 0.15, "avg_spawn_count": 4.0, "avg_spawn_critical_steps": 6.0, "avg_steps_to_solution": 9.0, "deanonymization_accuracy": 1.0, "leaderboard_score": 0.9020114237119466, "retrieval_signal": 0.78, "spawn_completion_rate": 1.0, "spawn_signal": 0.6666666666666666, "structural_signal": 0.6332567739783251, "task_success_rate": 1.0, "tool_efficiency": 0.5}, "run_id": "run_0005", "run_name": "ollama_qwen_smoke2"}, {"config": {"max_agents": 3, "max_breadth": 2, "max_depth": 2, "max_steps": 18, "max_width": 2, "seed": 7, "seeded_questions": 15, "swarm_enabled": true}, "created_at": "2026-04-01T19:19:34+00:00", "episodes": 3, "metrics": {"avg_compactness_reward": 0.0, "avg_connectivity_gain_reward": 0.10000000000000002, "avg_connectivity_reward": 0.3, "avg_diversity_reward": 0.08, "avg_entity_informativeness_reward": -0.024861029515896544, "avg_format_reward": 0.15, "avg_graph_f1": 1.0, "avg_knowledge_carrier_reward": 0.5, "avg_knowledge_indexing_reward": 0.0, "avg_relation_informativeness_reward": -0.0024320085090966614, "avg_reward": 3.4441257016641917, "avg_soft_shaping_reward": 0.15, "avg_spawn_count": 4.0, "avg_spawn_critical_steps": 6.0, "avg_steps_to_solution": 9.0, "deanonymization_accuracy": 1.0, "leaderboard_score": 0.8828581656226586, "retrieval_signal": 0.675, "spawn_completion_rate": 1.0, "spawn_signal": 0.6666666666666666, "structural_signal": 0.5915413923950014, "task_success_rate": 1.0, "tool_efficiency": 0.5}, "run_id": "run_0009", "run_name": "qwen_episode_fix"}, {"config": {"max_agents": 3, "max_breadth": 2, "max_depth": 2, "max_steps": 18, "max_width": 2, "seed": 7, "seeded_questions": 15, "swarm_enabled": true}, "created_at": "2026-04-01T19:11:44+00:00", "episodes": 3, "metrics": {"avg_compactness_reward": 0.0, "avg_connectivity_gain_reward": 0.10000000000000002, "avg_connectivity_reward": 0.3, "avg_diversity_reward": 0.08, "avg_entity_informativeness_reward": -0.02722031691758704, "avg_format_reward": 0.15, "avg_graph_f1": 1.0, "avg_knowledge_carrier_reward": 0.5, "avg_knowledge_indexing_reward": 0.0, "avg_relation_informativeness_reward": -0.00011920119799207429, "avg_reward": 3.444079221573606, "avg_soft_shaping_reward": 0.15, "avg_spawn_count": 4.0, "avg_spawn_critical_steps": 6.0, "avg_steps_to_solution": 9.0, "deanonymization_accuracy": 1.0, "leaderboard_score": 0.8828572592896698, "retrieval_signal": 0.675, "spawn_completion_rate": 1.0, "spawn_signal": 0.6666666666666666, "structural_signal": 0.5915320963768841, "task_success_rate": 1.0, "tool_efficiency": 0.5}, "run_id": "run_0008", "run_name": "qwen_rerun"}, {"config": {"max_agents": 3, "max_breadth": 2, "max_depth": 2, "max_steps": 18, "max_width": 2, "seed": 7, "seeded_questions": 15, "swarm_enabled": true}, "created_at": "2026-04-01T19:24:37+00:00", "episodes": 3, "metrics": {"avg_compactness_reward": 0.0, "avg_connectivity_gain_reward": 0.10000000000000002, "avg_connectivity_reward": 0.3, "avg_diversity_reward": 0.08, "avg_entity_informativeness_reward": -0.02722031691758704, "avg_format_reward": 0.15, "avg_graph_f1": 1.0, "avg_knowledge_carrier_reward": 0.5, "avg_knowledge_indexing_reward": 0.0, "avg_relation_informativeness_reward": -0.0030604289114462002, "avg_reward": 3.4411379938601514, "avg_soft_shaping_reward": 0.15, "avg_spawn_count": 4.0, "avg_spawn_critical_steps": 6.0, "avg_steps_to_solution": 9.0, "deanonymization_accuracy": 1.0, "leaderboard_score": 0.8827999009847504, "retrieval_signal": 0.675, "spawn_completion_rate": 1.0, "spawn_signal": 0.6666666666666666, "structural_signal": 0.5909438508341933, "task_success_rate": 1.0, "tool_efficiency": 0.5}, "run_id": "run_0010", "run_name": "qwen_rerun_graph_fix"}, {"config": {"max_agents": 3, "max_breadth": 2, "max_depth": 2, "max_steps": 18, "max_width": 2, "seed": 7, "seeded_questions": 1, "swarm_enabled": true}, "created_at": "2026-04-01T17:27:30+00:00", "episodes": 1, "metrics": {"avg_compactness_reward": 0.0, "avg_connectivity_gain_reward": 0.1, "avg_connectivity_reward": 0.3, "avg_diversity_reward": 0.08, "avg_entity_informativeness_reward": 0.06128386989162576, "avg_format_reward": 0.15, "avg_graph_f1": 1.0, "avg_knowledge_carrier_reward": 0.5, "avg_knowledge_indexing_reward": 0.3, "avg_relation_informativeness_reward": 0.12, "avg_reward": 3.916035942914144, "avg_soft_shaping_reward": 0.15, "avg_spawn_count": 4.0, "avg_spawn_critical_steps": 6.0, "avg_steps_to_solution": 9.0, "deanonymization_accuracy": 1.0, "leaderboard_score": 0.8718832338515622, "retrieval_signal": 0.78, "spawn_completion_rate": 1.0, "spawn_signal": 0.6666666666666666, "structural_signal": 0.6332567739783251, "task_success_rate": 1.0, "tool_efficiency": 0.25}, "run_id": "run_0004", "run_name": "ollama_qwen_smoke"}, {"config": {"max_agents": 3, "max_breadth": 2, "max_depth": 2, "max_steps": 18, "max_width": 2, "seed": 7, "seeded_questions": 1, "swarm_enabled": true}, "created_at": "2026-04-01T12:03:13+00:00", "episodes": 2, "metrics": {"avg_compactness_reward": 0.0, "avg_connectivity_gain_reward": 0.1, "avg_connectivity_reward": 0.3, "avg_diversity_reward": 0.08, "avg_entity_informativeness_reward": 0.024705877237863647, "avg_format_reward": 0.15, "avg_graph_f1": 1.0, "avg_knowledge_carrier_reward": 0.5, "avg_knowledge_indexing_reward": 0.15, "avg_relation_informativeness_reward": 0.03137141693971891, "avg_reward": 3.534162700533434, "avg_soft_shaping_reward": 0.15, "avg_spawn_count": 4.0, "avg_spawn_critical_steps": 6.0, "avg_steps_to_solution": 9.0, "deanonymization_accuracy": 1.0, "leaderboard_score": 0.8618382743087459, "retrieval_signal": 0.7275, "spawn_completion_rate": 1.0, "spawn_signal": 0.6666666666666666, "structural_signal": 0.6082154588355165, "task_success_rate": 1.0, "tool_efficiency": 0.25}, "run_id": "run_0001", "run_name": "swarm_seed_smoke"}, {"config": {"max_agents": 3, "max_breadth": 2, "max_depth": 2, "max_steps": 18, "max_width": 2, "seed": 7, "seeded_questions": 1, "swarm_enabled": true}, "created_at": "2026-04-01T12:16:28+00:00", "episodes": 2, "metrics": {"avg_compactness_reward": 0.0, "avg_connectivity_gain_reward": 0.1, "avg_connectivity_reward": 0.3, "avg_diversity_reward": 0.08, "avg_entity_informativeness_reward": 0.024705877237863647, "avg_format_reward": 0.15, "avg_graph_f1": 1.0, "avg_knowledge_carrier_reward": 0.5, "avg_knowledge_indexing_reward": 0.15, "avg_relation_informativeness_reward": 0.03137141693971891, "avg_reward": 3.534162700533434, "avg_soft_shaping_reward": 0.15, "avg_spawn_count": 4.0, "avg_spawn_critical_steps": 6.0, "avg_steps_to_solution": 9.0, "deanonymization_accuracy": 1.0, "leaderboard_score": 0.8618382743087459, "retrieval_signal": 0.7275, "spawn_completion_rate": 1.0, "spawn_signal": 0.6666666666666666, "structural_signal": 0.6082154588355165, "task_success_rate": 1.0, "tool_efficiency": 0.25}, "run_id": "run_0002", "run_name": "swarm_seed_smoke"}, {"config": {"max_agents": 3, "max_breadth": 2, "max_depth": 2, "max_steps": 18, "max_width": 2, "seed": 7, "seeded_questions": 0, "swarm_enabled": true}, "created_at": "2026-04-01T12:25:15+00:00", "episodes": 20, "metrics": {"avg_compactness_reward": 0.0, "avg_connectivity_gain_reward": 0.10000000000000002, "avg_connectivity_reward": 0.23999999999999994, "avg_diversity_reward": 0.08000000000000002, "avg_entity_informativeness_reward": -0.00983642442912193, "avg_format_reward": 0.14999999999999997, "avg_graph_f1": 1.0, "avg_knowledge_carrier_reward": 0.5, "avg_knowledge_indexing_reward": 0.1125, "avg_relation_informativeness_reward": 0.007185245326892638, "avg_reward": 3.351267560586956, "avg_soft_shaping_reward": 0.14999999999999997, "avg_spawn_count": 4.0, "avg_spawn_critical_steps": 6.0, "avg_steps_to_solution": 9.0, "deanonymization_accuracy": 1.0, "leaderboard_score": 0.8573187614039594, "retrieval_signal": 0.7143750000000001, "spawn_completion_rate": 1.0, "spawn_signal": 0.6666666666666666, "structural_signal": 0.5814697641795541, "task_success_rate": 1.0, "tool_efficiency": 0.25}, "run_id": "run_0003", "run_name": "baseline_swarm"}, {"config": {"max_agents": 3, "max_breadth": 2, "max_depth": 2, "max_steps": 18, "max_width": 2, "seed": 7, "seeded_questions": 15, "swarm_enabled": true}, "created_at": "2026-04-01T19:31:54+00:00", "episodes": 15, "metrics": {"avg_compactness_reward": 0.0, "avg_connectivity_gain_reward": 0.16666666666666666, "avg_connectivity_reward": 0.16999999999999998, "avg_diversity_reward": 0.1157777777777778, "avg_entity_informativeness_reward": -0.0181244777358718, "avg_format_reward": 0.14999999999999997, "avg_graph_f1": 0.8492063492063492, "avg_knowledge_carrier_reward": 0.5, "avg_knowledge_indexing_reward": 0.012000000000000002, "avg_relation_informativeness_reward": 0.05935837081627929, "avg_reward": 4.201760569277529, "avg_soft_shaping_reward": 0.24999999999999994, "avg_spawn_count": 4.0, "avg_spawn_critical_steps": 6.0, "avg_steps_to_solution": 9.0, "deanonymization_accuracy": 1.0, "leaderboard_score": 0.8534887252258901, "retrieval_signal": 0.6792, "spawn_completion_rate": 1.0, "spawn_signal": 0.6666666666666666, "structural_signal": 0.5847801119494148, "task_success_rate": 1.0, "tool_efficiency": 0.5}, "run_id": "run_0011", "run_name": "qwen_rerun_graph_fix"}, {"config": {"max_agents": 3, "max_breadth": 2, "max_depth": 2, "max_steps": 18, "max_width": 2, "seed": 7, "seeded_questions": 0, "swarm_enabled": true}, "created_at": "2026-04-01T18:57:40+00:00", "episodes": 3, "metrics": {"avg_compactness_reward": 0.0, "avg_connectivity_gain_reward": 0.13333333333333333, "avg_connectivity_reward": 0.09999999999999999, "avg_diversity_reward": 0.056666666666666664, "avg_entity_informativeness_reward": -0.020478979694240708, "avg_format_reward": 0.15, "avg_graph_f1": 0.8148148148148149, "avg_knowledge_carrier_reward": 0.5, "avg_knowledge_indexing_reward": 0.27, "avg_relation_informativeness_reward": 0.07174291752145656, "avg_reward": 4.0269419367756605, "avg_soft_shaping_reward": 0.19999999999999998, "avg_spawn_count": 4.0, "avg_spawn_critical_steps": 6.0, "avg_steps_to_solution": 9.0, "deanonymization_accuracy": 0.0, "leaderboard_score": 0.7366215569569294, "retrieval_signal": 0.7695000000000001, "spawn_completion_rate": 1.0, "spawn_signal": 0.6666666666666666, "structural_signal": 0.5570861208987765, "task_success_rate": 1.0, "tool_efficiency": 0.5}, "run_id": "run_0007", "run_name": "episode_selector_check"}, {"config": {"max_agents": 3, "max_breadth": 2, "max_depth": 2, "max_steps": 18, "max_width": 2, "seed": 7, "seeded_questions": 0, "swarm_enabled": true}, "created_at": "2026-04-01T17:39:15+00:00", "episodes": 2, "metrics": {"avg_compactness_reward": 0.0, "avg_connectivity_gain_reward": 0.2, "avg_connectivity_reward": 0.0, "avg_diversity_reward": 0.0683333333333333, "avg_entity_informativeness_reward": -0.07397348480982455, "avg_format_reward": 0.15, "avg_graph_f1": 0.6666666666666667, "avg_knowledge_carrier_reward": 0.5, "avg_knowledge_indexing_reward": 0.14884615384615385, "avg_relation_informativeness_reward": -0.00860389783205907, "avg_reward": 4.351764433970379, "avg_soft_shaping_reward": 0.3, "avg_spawn_count": 4.0, "avg_spawn_critical_steps": 6.0, "avg_steps_to_solution": 9.0, "deanonymization_accuracy": 0.0, "leaderboard_score": 0.6973935600514568, "retrieval_signal": 0.7270961538461539, "spawn_completion_rate": 1.0, "spawn_signal": 0.6666666666666666, "structural_signal": 0.5137345234716233, "task_success_rate": 1.0, "tool_efficiency": 0.5}, "run_id": "run_0006", "run_name": "high_timeout_shared_ctx"}], "canonical_graph": {"nodes": [{"id": "user_0", "label": "Person 0", "group": "user", "title": "name: Person 0\\norg: Helios Labs\\nlocation: Pune", "attrs": {"name": "Person 0", "org": "Helios Labs", "location": "Pune"}}, {"id": "org_helios_labs", "label": "Helios Labs", "group": "org", "title": "name: Helios Labs", "attrs": {"name": "Helios Labs"}}, {"id": "loc_pune", "label": "Pune", "group": "location", "title": "name: Pune", "attrs": {"name": "Pune"}}, {"id": "user_1", "label": "Person 1", "group": "user", "title": "name: Person 1\\norg: Apex Dynamics\\nlocation: Bengaluru", "attrs": {"name": "Person 1", "org": "Apex Dynamics", "location": "Bengaluru"}}, {"id": "org_apex_dynamics", "label": "Apex Dynamics", "group": "org", "title": "name: Apex Dynamics", "attrs": {"name": "Apex Dynamics"}}, {"id": "loc_bengaluru", "label": "Bengaluru", "group": "location", "title": "name: Bengaluru", "attrs": {"name": "Bengaluru"}}, {"id": "user_2", "label": "Person 2", "group": "user", "title": "name: Person 2\\norg: Apex Dynamics\\nlocation: Hyderabad", "attrs": {"name": "Person 2", "org": "Apex Dynamics", "location": "Hyderabad"}}, {"id": "loc_hyderabad", "label": "Hyderabad", "group": "location", "title": "name: Hyderabad", "attrs": {"name": "Hyderabad"}}, {"id": "user_3", "label": "Person 3", "group": "user", "title": "name: Person 3\\norg: Northbridge\\nlocation: Pune", "attrs": {"name": "Person 3", "org": "Northbridge", "location": "Pune"}}, {"id": "org_northbridge", "label": "Northbridge", "group": "org", "title": "name: Northbridge", "attrs": {"name": "Northbridge"}}, {"id": "alias_3_544", "label": "@alias_3_544", "group": "alias", "title": "handle: @alias_3_544", "attrs": {"handle": "@alias_3_544"}}, {"id": "user_4", "label": "Person 4", "group": "user", "title": "name: Person 4\\norg: Helios Labs\\nlocation: Bengaluru", "attrs": {"name": "Person 4", "org": "Helios Labs", "location": "Bengaluru"}}, {"id": "alias_4_664", "label": "@alias_4_664", "group": "alias", "title": "handle: @alias_4_664", "attrs": {"handle": "@alias_4_664"}}, {"id": "user_5", "label": "Person 5", "group": "user", "title": "name: Person 5\\norg: Helios Labs\\nlocation: Bengaluru", "attrs": {"name": "Person 5", "org": "Helios Labs", "location": "Bengaluru"}}, {"id": "user_6", "label": "Person 6", "group": "user", "title": "name: Person 6\\norg: Apex Dynamics\\nlocation: Pune", "attrs": {"name": "Person 6", "org": "Apex Dynamics", "location": "Pune"}}, {"id": "user_7", "label": "Person 7", "group": "user", "title": "name: Person 7\\norg: Northbridge\\nlocation: Bengaluru", "attrs": {"name": "Person 7", "org": "Northbridge", "location": "Bengaluru"}}, {"id": "user_8", "label": "Person 8", "group": "user", "title": "name: Person 8\\norg: Helios Labs\\nlocation: Bengaluru", "attrs": {"name": "Person 8", "org": "Helios Labs", "location": "Bengaluru"}}, {"id": "user_9", "label": "Person 9", "group": "user", "title": "name: Person 9\\norg: Apex Dynamics\\nlocation: Pune", "attrs": {"name": "Person 9", "org": "Apex Dynamics", "location": "Pune"}}, {"id": "alias_9_247", "label": "@alias_9_247", "group": "alias", "title": "handle: @alias_9_247", "attrs": {"handle": "@alias_9_247"}}, {"id": "user_10", "label": "Person 10", "group": "user", "title": "name: Person 10\\norg: Northbridge\\nlocation: Bengaluru", "attrs": {"name": "Person 10", "org": "Northbridge", "location": "Bengaluru"}}, {"id": "user_11", "label": "Person 11", "group": "user", "title": "name: Person 11\\norg: Northbridge\\nlocation: Pune", "attrs": {"name": "Person 11", "org": "Northbridge", "location": "Pune"}}, {"id": "alias_11_684", "label": "@alias_11_684", "group": "alias", "title": "handle: @alias_11_684", "attrs": {"handle": "@alias_11_684"}}, {"id": "user_12", "label": "Person 12", "group": "user", "title": "name: Person 12\\norg: Northbridge\\nlocation: Pune", "attrs": {"name": "Person 12", "org": "Northbridge", "location": "Pune"}}, {"id": "user_13", "label": "Person 13", "group": "user", "title": "name: Person 13\\norg: Northbridge\\nlocation: Bengaluru", "attrs": {"name": "Person 13", "org": "Northbridge", "location": "Bengaluru"}}, {"id": "user_14", "label": "Person 14", "group": "user", "title": "name: Person 14\\norg: Northbridge\\nlocation: Pune", "attrs": {"name": "Person 14", "org": "Northbridge", "location": "Pune"}}, {"id": "user_15", "label": "Person 15", "group": "user", "title": "name: Person 15\\norg: Northbridge\\nlocation: Delhi", "attrs": {"name": "Person 15", "org": "Northbridge", "location": "Delhi"}}, {"id": "loc_delhi", "label": "Delhi", "group": "location", "title": "name: Delhi", "attrs": {"name": "Delhi"}}, {"id": "user_16", "label": "Person 16", "group": "user", "title": "name: Person 16\\norg: Helios Labs\\nlocation: Delhi", "attrs": {"name": "Person 16", "org": "Helios Labs", "location": "Delhi"}}, {"id": "user_17", "label": "Person 17", "group": "user", "title": "name: Person 17\\norg: Apex Dynamics\\nlocation: Pune", "attrs": {"name": "Person 17", "org": "Apex Dynamics", "location": "Pune"}}, {"id": "user_18", "label": "Person 18", "group": "user", "title": "name: Person 18\\norg: Apex Dynamics\\nlocation: Bengaluru", "attrs": {"name": "Person 18", "org": "Apex Dynamics", "location": "Bengaluru"}}, {"id": "user_19", "label": "Person 19", "group": "user", "title": "name: Person 19\\norg: Northbridge\\nlocation: Delhi", "attrs": {"name": "Person 19", "org": "Northbridge", "location": "Delhi"}}, {"id": "user_20", "label": "Person 20", "group": "user", "title": "name: Person 20\\norg: Northbridge\\nlocation: Delhi", "attrs": {"name": "Person 20", "org": "Northbridge", "location": "Delhi"}}, {"id": "alias_20_174", "label": "@alias_20_174", "group": "alias", "title": "handle: @alias_20_174", "attrs": {"handle": "@alias_20_174"}}, {"id": "user_21", "label": "Person 21", "group": "user", "title": "name: Person 21\\norg: Apex Dynamics\\nlocation: Delhi", "attrs": {"name": "Person 21", "org": "Apex Dynamics", "location": "Delhi"}}, {"id": "alias_21_450", "label": "@alias_21_450", "group": "alias", "title": "handle: @alias_21_450", "attrs": {"handle": "@alias_21_450"}}, {"id": "user_22", "label": "Person 22", "group": "user", "title": "name: Person 22\\norg: Apex Dynamics\\nlocation: Delhi", "attrs": {"name": "Person 22", "org": "Apex Dynamics", "location": "Delhi"}}, {"id": "user_23", "label": "Person 23", "group": "user", "title": "name: Person 23\\norg: Northbridge\\nlocation: Bengaluru", "attrs": {"name": "Person 23", "org": "Northbridge", "location": "Bengaluru"}}, {"id": "user_24", "label": "Person 24", "group": "user", "title": "name: Person 24\\norg: Northbridge\\nlocation: Hyderabad", "attrs": {"name": "Person 24", "org": "Northbridge", "location": "Hyderabad"}}, {"id": "alias_24_458", "label": "@alias_24_458", "group": "alias", "title": "handle: @alias_24_458", "attrs": {"handle": "@alias_24_458"}}, {"id": "user_25", "label": "Person 25", "group": "user", "title": "name: Person 25\\norg: Northbridge\\nlocation: Delhi", "attrs": {"name": "Person 25", "org": "Northbridge", "location": "Delhi"}}, {"id": "user_26", "label": "Person 26", "group": "user", "title": "name: Person 26\\norg: Helios Labs\\nlocation: Bengaluru", "attrs": {"name": "Person 26", "org": "Helios Labs", "location": "Bengaluru"}}, {"id": "user_27", "label": "Person 27", "group": "user", "title": "name: Person 27\\norg: Helios Labs\\nlocation: Delhi", "attrs": {"name": "Person 27", "org": "Helios Labs", "location": "Delhi"}}, {"id": "user_28", "label": "Person 28", "group": "user", "title": "name: Person 28\\norg: Apex Dynamics\\nlocation: Bengaluru", "attrs": {"name": "Person 28", "org": "Apex Dynamics", "location": "Bengaluru"}}, {"id": "user_29", "label": "Person 29", "group": "user", "title": "name: Person 29\\norg: Helios Labs\\nlocation: Delhi", "attrs": {"name": "Person 29", "org": "Helios Labs", "location": "Delhi"}}, {"id": "alias_29_495", "label": "@alias_29_495", "group": "alias", "title": "handle: @alias_29_495", "attrs": {"handle": "@alias_29_495"}}, {"id": "user_30", "label": "Person 30", "group": "user", "title": "name: Person 30\\norg: Northbridge\\nlocation: Hyderabad", "attrs": {"name": "Person 30", "org": "Northbridge", "location": "Hyderabad"}}, {"id": "alias_30_572", "label": "@alias_30_572", "group": "alias", "title": "handle: @alias_30_572", "attrs": {"handle": "@alias_30_572"}}, {"id": "user_31", "label": "Person 31", "group": "user", "title": "name: Person 31\\norg: Helios Labs\\nlocation: Pune", "attrs": {"name": "Person 31", "org": "Helios Labs", "location": "Pune"}}, {"id": "user_32", "label": "Person 32", "group": "user", "title": "name: Person 32\\norg: Helios Labs\\nlocation: Bengaluru", "attrs": {"name": "Person 32", "org": "Helios Labs", "location": "Bengaluru"}}, {"id": "alias_32_394", "label": "@alias_32_394", "group": "alias", "title": "handle: @alias_32_394", "attrs": {"handle": "@alias_32_394"}}, {"id": "user_33", "label": "Person 33", "group": "user", "title": "name: Person 33\\norg: Apex Dynamics\\nlocation: Pune", "attrs": {"name": "Person 33", "org": "Apex Dynamics", "location": "Pune"}}, {"id": "user_34", "label": "Person 34", "group": "user", "title": "name: Person 34\\norg: Helios Labs\\nlocation: Bengaluru", "attrs": {"name": "Person 34", "org": "Helios Labs", "location": "Bengaluru"}}, {"id": "alias_34_511", "label": "@alias_34_511", "group": "alias", "title": "handle: @alias_34_511", "attrs": {"handle": "@alias_34_511"}}, {"id": "user_35", "label": "Person 35", "group": "user", "title": "name: Person 35\\norg: Northbridge\\nlocation: Hyderabad", "attrs": {"name": "Person 35", "org": "Northbridge", "location": "Hyderabad"}}, {"id": "user_36", "label": "Person 36", "group": "user", "title": "name: Person 36\\norg: Helios Labs\\nlocation: Hyderabad", "attrs": {"name": "Person 36", "org": "Helios Labs", "location": "Hyderabad"}}, {"id": "user_37", "label": "Person 37", "group": "user", "title": "name: Person 37\\norg: Helios Labs\\nlocation: Delhi", "attrs": {"name": "Person 37", "org": "Helios Labs", "location": "Delhi"}}, {"id": "user_38", "label": "Person 38", "group": "user", "title": "name: Person 38\\norg: Apex Dynamics\\nlocation: Bengaluru", "attrs": {"name": "Person 38", "org": "Apex Dynamics", "location": "Bengaluru"}}, {"id": "alias_38_337", "label": "@alias_38_337", "group": "alias", "title": "handle: @alias_38_337", "attrs": {"handle": "@alias_38_337"}}, {"id": "user_39", "label": "Person 39", "group": "user", "title": "name: Person 39\\norg: Northbridge\\nlocation: Pune", "attrs": {"name": "Person 39", "org": "Northbridge", "location": "Pune"}}, {"id": "alias_39_951", "label": "@alias_39_951", "group": "alias", "title": "handle: @alias_39_951", "attrs": {"handle": "@alias_39_951"}}, {"id": "user_aria", "label": "Aria Sen", "group": "user", "title": "name: Aria Sen\\norg: Helios Labs\\nlocation: Sector 9", "attrs": {"name": "Aria Sen", "org": "Helios Labs", "location": "Sector 9"}}, {"id": "user_bharat", "label": "Bharat Kulkarni", "group": "user", "title": "name: Bharat Kulkarni\\norg: Northbridge Logistics\\nlocation: Dockyard 17", "attrs": {"name": "Bharat Kulkarni", "org": "Northbridge Logistics", "location": "Dockyard 17"}}, {"id": "user_cyrus", "label": "Cyrus Mehta", "group": "user", "title": "name: Cyrus Mehta\\norg: Apex Dynamics\\nlocation: Old Town", "attrs": {"name": "Cyrus Mehta", "org": "Apex Dynamics", "location": "Old Town"}}, {"id": "user_diya", "label": "Diya Roy", "group": "user", "title": "name: Diya Roy\\norg: Blueharbor Media\\nlocation: Old Town", "attrs": {"name": "Diya Roy", "org": "Blueharbor Media", "location": "Old Town"}}, {"id": "user_elin", "label": "Elin Das", "group": "user", "title": "name: Elin Das\\norg: Helios Labs\\nlocation: Sector 9", "attrs": {"name": "Elin Das", "org": "Helios Labs", "location": "Sector 9"}}, {"id": "user_faris", "label": "Faris Noor", "group": "user", "title": "name: Faris Noor\\norg: Tidewatch Ops\\nlocation: Rivergate", "attrs": {"name": "Faris Noor", "org": "Tidewatch Ops", "location": "Rivergate"}}, {"id": "user_gita", "label": "Gita Pradhan", "group": "user", "title": "name: Gita Pradhan\\norg: Apex Dynamics\\nlocation: Old Town", "attrs": {"name": "Gita Pradhan", "org": "Apex Dynamics", "location": "Old Town"}}, {"id": "user_hiro", "label": "Hiro Tan", "group": "user", "title": "name: Hiro Tan\\norg: Northbridge Logistics\\nlocation: Dockyard 17", "attrs": {"name": "Hiro Tan", "org": "Northbridge Logistics", "location": "Dockyard 17"}}, {"id": "user_ivy", "label": "Ivy Kapoor", "group": "user", "title": "name: Ivy Kapoor\\norg: Kestrel Works\\nlocation: Rivergate", "attrs": {"name": "Ivy Kapoor", "org": "Kestrel Works", "location": "Rivergate"}}, {"id": "user_jules", "label": "Jules Banerjee", "group": "user", "title": "name: Jules Banerjee\\norg: Blueharbor Media\\nlocation: Old Town", "attrs": {"name": "Jules Banerjee", "org": "Blueharbor Media", "location": "Old Town"}}, {"id": "alias_orchidfox", "label": "@orchidfox", "group": "alias", "title": "handle: @orchidfox", "attrs": {"handle": "@orchidfox"}}, {"id": "alias_steelquill", "label": "@steelquill", "group": "alias", "title": "handle: @steelquill", "attrs": {"handle": "@steelquill"}}, {"id": "alias_monsoonbyte", "label": "@monsoonbyte", "group": "alias", "title": "handle: @monsoonbyte", "attrs": {"handle": "@monsoonbyte"}}, {"id": "alias_nightrelay", "label": "@nightrelay", "group": "alias", "title": "handle: @nightrelay", "attrs": {"handle": "@nightrelay"}}, {"id": "alias_mapleghost", "label": "@mapleghost", "group": "alias", "title": "handle: @mapleghost", "attrs": {"handle": "@mapleghost"}}, {"id": "alias_docksparrow", "label": "@docksparrow", "group": "alias", "title": "handle: @docksparrow", "attrs": {"handle": "@docksparrow"}}, {"id": "alias_quartzlotus", "label": "@quartzlotus", "group": "alias", "title": "handle: @quartzlotus", "attrs": {"handle": "@quartzlotus"}}, {"id": "org_northbridge_logistics", "label": "Northbridge Logistics", "group": "org", "title": "name: Northbridge Logistics", "attrs": {"name": "Northbridge Logistics"}}, {"id": "org_blueharbor_media", "label": "Blueharbor Media", "group": "org", "title": "name: Blueharbor Media", "attrs": {"name": "Blueharbor Media"}}, {"id": "org_tidewatch_ops", "label": "Tidewatch Ops", "group": "org", "title": "name: Tidewatch Ops", "attrs": {"name": "Tidewatch Ops"}}, {"id": "org_kestrel_works", "label": "Kestrel Works", "group": "org", "title": "name: Kestrel Works", "attrs": {"name": "Kestrel Works"}}, {"id": "loc_dockyard17", "label": "Dockyard 17", "group": "location", "title": "name: Dockyard 17", "attrs": {"name": "Dockyard 17"}}, {"id": "loc_sector9", "label": "Sector 9", "group": "location", "title": "name: Sector 9", "attrs": {"name": "Sector 9"}}, {"id": "loc_old_town", "label": "Old Town", "group": "location", "title": "name: Old Town", "attrs": {"name": "Old Town"}}, {"id": "loc_rivergate", "label": "Rivergate", "group": "location", "title": "name: Rivergate", "attrs": {"name": "Rivergate"}}, {"id": "event_project_lantern", "label": "Project Lantern", "group": "event", "title": "name: Project Lantern", "attrs": {"name": "Project Lantern"}}, {"id": "event_black_kite", "label": "Black Kite", "group": "event", "title": "name: Black Kite", "attrs": {"name": "Black Kite"}}, {"id": "event_silent_current", "label": "Silent Current", "group": "event", "title": "name: Silent Current", "attrs": {"name": "Silent Current"}}, {"id": "thr_supply_leak", "label": "thr_supply_leak", "group": "thread", "title": "topic: supply_chain", "attrs": {"topic": "supply_chain"}}, {"id": "thr_port_audit", "label": "thr_port_audit", "group": "thread", "title": "topic: port_audit", "attrs": {"topic": "port_audit"}}, {"id": "post_shift_roster", "label": "post_shift_roster", "group": "post", "title": "channel: microblog", "attrs": {"channel": "microblog"}}, {"id": "post_midnight_manifest", "label": "post_midnight_manifest", "group": "post", "title": "channel: microblog", "attrs": {"channel": "microblog"}}, {"id": "post_sat_phone_ping", "label": "post_sat_phone_ping", "group": "post", "title": "channel: microblog", "attrs": {"channel": "microblog"}}, {"id": "post_drone_parts", "label": "post_drone_parts", "group": "post", "title": "channel: microblog", "attrs": {"channel": "microblog"}}, {"id": "post_relay_schedule", "label": "post_relay_schedule", "group": "post", "title": "channel: microblog", "attrs": {"channel": "microblog"}}], "edges": [{"id": "c_0", "from": "user_0", "to": "org_helios_labs", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_1", "from": "user_0", "to": "loc_pune", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_2", "from": "user_1", "to": "org_apex_dynamics", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_3", "from": "user_1", "to": "loc_bengaluru", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_4", "from": "user_2", "to": "org_apex_dynamics", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_5", "from": "user_2", "to": "loc_hyderabad", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_6", "from": "user_3", "to": "org_northbridge", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_7", "from": "user_3", "to": "loc_pune", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_8", "from": "alias_3_544", "to": "user_3", "label": "alias_of", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_9", "from": "user_4", "to": "org_helios_labs", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_10", "from": "user_4", "to": "loc_bengaluru", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_11", "from": "alias_4_664", "to": "user_4", "label": "alias_of", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_12", "from": "user_5", "to": "org_helios_labs", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_13", "from": "user_5", "to": "loc_bengaluru", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_14", "from": "user_6", "to": "org_apex_dynamics", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_15", "from": "user_6", "to": "loc_pune", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_16", "from": "user_7", "to": "org_northbridge", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_17", "from": "user_7", "to": "loc_bengaluru", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_18", "from": "user_8", "to": "org_helios_labs", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_19", "from": "user_8", "to": "loc_bengaluru", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_20", "from": "user_9", "to": "org_apex_dynamics", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_21", "from": "user_9", "to": "loc_pune", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_22", "from": "alias_9_247", "to": "user_9", "label": "alias_of", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_23", "from": "user_10", "to": "org_northbridge", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_24", "from": "user_10", "to": "loc_bengaluru", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_25", "from": "user_11", "to": "org_northbridge", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_26", "from": "user_11", "to": "loc_pune", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_27", "from": "alias_11_684", "to": "user_11", "label": "alias_of", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_28", "from": "user_12", "to": "org_northbridge", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_29", "from": "user_12", "to": "loc_pune", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_30", "from": "user_13", "to": "org_northbridge", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_31", "from": "user_13", "to": "loc_bengaluru", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_32", "from": "user_14", "to": "org_northbridge", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_33", "from": "user_14", "to": "loc_pune", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_34", "from": "user_15", "to": "org_northbridge", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_35", "from": "user_15", "to": "loc_delhi", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_36", "from": "user_16", "to": "org_helios_labs", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_37", "from": "user_16", "to": "loc_delhi", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_38", "from": "user_17", "to": "org_apex_dynamics", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_39", "from": "user_17", "to": "loc_pune", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_40", "from": "user_18", "to": "org_apex_dynamics", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_41", "from": "user_18", "to": "loc_bengaluru", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_42", "from": "user_19", "to": "org_northbridge", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_43", "from": "user_19", "to": "loc_delhi", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_44", "from": "user_20", "to": "org_northbridge", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_45", "from": "user_20", "to": "loc_delhi", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_46", "from": "alias_20_174", "to": "user_20", "label": "alias_of", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_47", "from": "user_21", "to": "org_apex_dynamics", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_48", "from": "user_21", "to": "loc_delhi", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_49", "from": "alias_21_450", "to": "user_21", "label": "alias_of", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_50", "from": "user_22", "to": "org_apex_dynamics", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_51", "from": "user_22", "to": "loc_delhi", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_52", "from": "user_23", "to": "org_northbridge", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_53", "from": "user_23", "to": "loc_bengaluru", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_54", "from": "user_24", "to": "org_northbridge", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_55", "from": "user_24", "to": "loc_hyderabad", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_56", "from": "alias_24_458", "to": "user_24", "label": "alias_of", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_57", "from": "user_25", "to": "org_northbridge", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_58", "from": "user_25", "to": "loc_delhi", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_59", "from": "user_26", "to": "org_helios_labs", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_60", "from": "user_26", "to": "loc_bengaluru", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_61", "from": "user_27", "to": "org_helios_labs", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_62", "from": "user_27", "to": "loc_delhi", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_63", "from": "user_28", "to": "org_apex_dynamics", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_64", "from": "user_28", "to": "loc_bengaluru", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_65", "from": "user_29", "to": "org_helios_labs", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_66", "from": "user_29", "to": "loc_delhi", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_67", "from": "alias_29_495", "to": "user_29", "label": "alias_of", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_68", "from": "user_30", "to": "org_northbridge", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_69", "from": "user_30", "to": "loc_hyderabad", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_70", "from": "alias_30_572", "to": "user_30", "label": "alias_of", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_71", "from": "user_31", "to": "org_helios_labs", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_72", "from": "user_31", "to": "loc_pune", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_73", "from": "user_32", "to": "org_helios_labs", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_74", "from": "user_32", "to": "loc_bengaluru", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_75", "from": "alias_32_394", "to": "user_32", "label": "alias_of", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_76", "from": "user_33", "to": "org_apex_dynamics", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_77", "from": "user_33", "to": "loc_pune", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_78", "from": "user_34", "to": "org_helios_labs", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_79", "from": "user_34", "to": "loc_bengaluru", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_80", "from": "alias_34_511", "to": "user_34", "label": "alias_of", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_81", "from": "user_35", "to": "org_northbridge", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_82", "from": "user_35", "to": "loc_hyderabad", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_83", "from": "user_36", "to": "org_helios_labs", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_84", "from": "user_36", "to": "loc_hyderabad", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_85", "from": "user_37", "to": "org_helios_labs", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_86", "from": "user_37", "to": "loc_delhi", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_87", "from": "user_38", "to": "org_apex_dynamics", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_88", "from": "user_38", "to": "loc_bengaluru", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_89", "from": "alias_38_337", "to": "user_38", "label": "alias_of", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_90", "from": "user_39", "to": "org_northbridge", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_91", "from": "user_39", "to": "loc_pune", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_92", "from": "alias_39_951", "to": "user_39", "label": "alias_of", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_93", "from": "user_37", "to": "user_11", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.8, "status": "canonical"}, {"id": "c_94", "from": "user_16", "to": "user_18", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.8, "status": "canonical"}, {"id": "c_95", "from": "user_0", "to": "user_9", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.8, "status": "canonical"}, {"id": "c_96", "from": "user_26", "to": "user_34", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.8, "status": "canonical"}, {"id": "c_97", "from": "user_23", "to": "user_39", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.8, "status": "canonical"}, {"id": "c_98", "from": "user_36", "to": "user_20", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.8, "status": "canonical"}, {"id": "c_99", "from": "user_8", "to": "user_32", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.8, "status": "canonical"}, {"id": "c_100", "from": "user_39", "to": "user_3", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.8, "status": "canonical"}, {"id": "c_101", "from": "user_29", "to": "user_35", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.8, "status": "canonical"}, {"id": "c_102", "from": "user_25", "to": "user_6", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.8, "status": "canonical"}, {"id": "c_103", "from": "user_30", "to": "user_25", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.8, "status": "canonical"}, {"id": "c_104", "from": "user_3", "to": "user_12", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.8, "status": "canonical"}, {"id": "c_105", "from": "user_4", "to": "user_13", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.8, "status": "canonical"}, {"id": "c_106", "from": "user_28", "to": "user_10", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.8, "status": "canonical"}, {"id": "c_107", "from": "user_7", "to": "user_21", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.8, "status": "canonical"}, {"id": "c_108", "from": "user_38", "to": "user_3", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.8, "status": "canonical"}, {"id": "c_109", "from": "user_6", "to": "user_0", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.8, "status": "canonical"}, {"id": "c_110", "from": "user_36", "to": "user_9", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.8, "status": "canonical"}, {"id": "c_111", "from": "user_34", "to": "user_6", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.8, "status": "canonical"}, {"id": "c_112", "from": "user_23", "to": "user_39", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.8, "status": "canonical"}, {"id": "c_113", "from": "alias_orchidfox", "to": "user_ivy", "label": "alias_of", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_114", "from": "alias_steelquill", "to": "user_bharat", "label": "alias_of", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_115", "from": "alias_monsoonbyte", "to": "user_diya", "label": "alias_of", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_116", "from": "alias_nightrelay", "to": "user_faris", "label": "alias_of", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_117", "from": "alias_mapleghost", "to": "user_elin", "label": "alias_of", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_118", "from": "alias_docksparrow", "to": "user_hiro", "label": "alias_of", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_119", "from": "alias_quartzlotus", "to": "user_cyrus", "label": "alias_of", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_120", "from": "user_aria", "to": "org_helios_labs", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_121", "from": "user_bharat", "to": "org_northbridge_logistics", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_122", "from": "user_cyrus", "to": "org_apex_dynamics", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_123", "from": "user_diya", "to": "org_blueharbor_media", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_124", "from": "user_elin", "to": "org_helios_labs", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_125", "from": "user_faris", "to": "org_tidewatch_ops", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_126", "from": "user_gita", "to": "org_apex_dynamics", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_127", "from": "user_hiro", "to": "org_northbridge_logistics", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_128", "from": "user_ivy", "to": "org_kestrel_works", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_129", "from": "user_jules", "to": "org_blueharbor_media", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_130", "from": "user_aria", "to": "loc_sector9", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_131", "from": "user_bharat", "to": "loc_dockyard17", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_132", "from": "user_cyrus", "to": "loc_old_town", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_133", "from": "user_diya", "to": "loc_old_town", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_134", "from": "user_elin", "to": "loc_sector9", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_135", "from": "user_faris", "to": "loc_rivergate", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_136", "from": "user_gita", "to": "loc_old_town", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_137", "from": "user_hiro", "to": "loc_dockyard17", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_138", "from": "user_ivy", "to": "loc_rivergate", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_139", "from": "user_jules", "to": "loc_old_town", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_140", "from": "org_helios_labs", "to": "loc_sector9", "label": "operates_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_141", "from": "org_northbridge_logistics", "to": "loc_dockyard17", "label": "operates_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_142", "from": "org_apex_dynamics", "to": "loc_old_town", "label": "operates_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_143", "from": "org_blueharbor_media", "to": "loc_old_town", "label": "operates_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_144", "from": "org_tidewatch_ops", "to": "loc_rivergate", "label": "operates_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_145", "from": "org_kestrel_works", "to": "loc_rivergate", "label": "operates_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_146", "from": "user_ivy", "to": "user_bharat", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.95, "status": "canonical"}, {"id": "c_147", "from": "user_bharat", "to": "user_hiro", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.95, "status": "canonical"}, {"id": "c_148", "from": "user_hiro", "to": "user_faris", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.9, "status": "canonical"}, {"id": "c_149", "from": "user_faris", "to": "user_diya", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.9, "status": "canonical"}, {"id": "c_150", "from": "user_diya", "to": "user_elin", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.88, "status": "canonical"}, {"id": "c_151", "from": "user_elin", "to": "user_aria", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.85, "status": "canonical"}, {"id": "c_152", "from": "user_aria", "to": "user_cyrus", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.82, "status": "canonical"}, {"id": "c_153", "from": "user_cyrus", "to": "user_gita", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.82, "status": "canonical"}, {"id": "c_154", "from": "user_gita", "to": "user_jules", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.8, "status": "canonical"}, {"id": "c_155", "from": "user_jules", "to": "user_bharat", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.8, "status": "canonical"}, {"id": "c_156", "from": "user_diya", "to": "user_ivy", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.9, "status": "canonical"}, {"id": "c_157", "from": "user_ivy", "to": "user_elin", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.86, "status": "canonical"}, {"id": "c_158", "from": "alias_orchidfox", "to": "post_midnight_manifest", "label": "authored_post", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_159", "from": "alias_docksparrow", "to": "post_shift_roster", "label": "authored_post", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_160", "from": "alias_nightrelay", "to": "post_sat_phone_ping", "label": "authored_post", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_161", "from": "alias_monsoonbyte", "to": "post_drone_parts", "label": "authored_post", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_162", "from": "alias_steelquill", "to": "post_relay_schedule", "label": "authored_post", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_163", "from": "post_midnight_manifest", "to": "loc_dockyard17", "label": "references", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_164", "from": "post_midnight_manifest", "to": "event_project_lantern", "label": "references", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_165", "from": "post_shift_roster", "to": "loc_dockyard17", "label": "references", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_166", "from": "post_sat_phone_ping", "to": "loc_rivergate", "label": "references", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_167", "from": "post_drone_parts", "to": "event_black_kite", "label": "references", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_168", "from": "post_relay_schedule", "to": "event_project_lantern", "label": "references", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_169", "from": "user_diya", "to": "thr_supply_leak", "label": "authored_thread", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_170", "from": "user_jules", "to": "thr_port_audit", "label": "authored_thread", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_171", "from": "thr_supply_leak", "to": "event_project_lantern", "label": "discusses", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_172", "from": "thr_supply_leak", "to": "org_northbridge_logistics", "label": "references", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_173", "from": "thr_port_audit", "to": "event_black_kite", "label": "discusses", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_174", "from": "thr_port_audit", "to": "org_kestrel_works", "label": "references", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 1.0, "status": "canonical"}, {"id": "c_175", "from": "user_bharat", "to": "event_project_lantern", "label": "collaborates_on", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.95, "status": "canonical"}, {"id": "c_176", "from": "user_hiro", "to": "event_project_lantern", "label": "collaborates_on", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.95, "status": "canonical"}, {"id": "c_177", "from": "user_faris", "to": "event_project_lantern", "label": "collaborates_on", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.9, "status": "canonical"}, {"id": "c_178", "from": "user_diya", "to": "event_project_lantern", "label": "investigates", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.9, "status": "canonical"}, {"id": "c_179", "from": "user_ivy", "to": "event_black_kite", "label": "collaborates_on", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.94, "status": "canonical"}, {"id": "c_180", "from": "user_cyrus", "to": "event_black_kite", "label": "collaborates_on", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.9, "status": "canonical"}, {"id": "c_181", "from": "user_elin", "to": "event_black_kite", "label": "investigates", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.88, "status": "canonical"}, {"id": "c_182", "from": "user_gita", "to": "event_silent_current", "label": "monitors", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.86, "status": "canonical"}, {"id": "c_183", "from": "user_jules", "to": "event_silent_current", "label": "reports_on", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.86, "status": "canonical"}, {"id": "c_184", "from": "event_black_kite", "to": "loc_bengaluru", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.8, "status": "canonical"}, {"id": "c_185", "from": "event_project_lantern", "to": "loc_delhi", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.8, "status": "canonical"}, {"id": "c_186", "from": "event_silent_current", "to": "loc_hyderabad", "label": "located_in", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.8, "status": "canonical"}, {"id": "c_187", "from": "loc_bengaluru", "to": "org_apex_dynamics", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.9, "status": "canonical"}, {"id": "c_188", "from": "loc_pune", "to": "org_helios_labs", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.9, "status": "canonical"}, {"id": "c_189", "from": "loc_hyderabad", "to": "org_apex_dynamics", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.9, "status": "canonical"}, {"id": "c_190", "from": "loc_delhi", "to": "org_northbridge", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.9, "status": "canonical"}, {"id": "c_191", "from": "loc_bengaluru", "to": "org_northbridge", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.9, "status": "canonical"}, {"id": "c_192", "from": "loc_delhi", "to": "org_helios_labs", "label": "connected_to", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.9, "status": "canonical"}, {"id": "c_193", "from": "user_9", "to": "org_northbridge", "label": "works_at", "arrows": "to", "color": "#1f2937", "width": 1, "confidence": 0.9, "status": "canonical"}]}, "episode_graphs": [{"nodes": [{"id": "alias_orchidfox", "label": "@orchidfox", "group": "alias", "attrs": {"handle": "@orchidfox"}}, {"id": "user_ivy", "label": "Ivy Kapoor", "group": "user", "attrs": {"name": "Ivy Kapoor", "org": "Kestrel Works", "location": "Rivergate"}}], "edges": [{"id": "e_0", "from": "alias_orchidfox", "to": "user_ivy", "label": "alias_of", "arrows": "to", "color": "#16a34a", "dashes": false, "width": 2, "status": "matched", "confidence": 1.0}]}, {"nodes": [{"id": "org_northbridge_logistics", "label": "Northbridge Logistics", "group": "org", "attrs": {"name": "Northbridge Logistics"}}, {"id": "user_bharat", "label": "Bharat Kulkarni", "group": "user", "attrs": {"name": "Bharat Kulkarni", "org": "Northbridge Logistics", "location": "Dockyard 17"}}], "edges": [{"id": "e_0", "from": "user_bharat", "to": "org_northbridge_logistics", "label": "works_at", "arrows": "to", "color": "#16a34a", "dashes": false, "width": 2, "status": "matched", "confidence": 1.0}]}, {"nodes": [{"id": "user_bharat", "label": "Bharat Kulkarni", "group": "user", "attrs": {"name": "Bharat Kulkarni", "org": "Northbridge Logistics", "location": "Dockyard 17"}}, {"id": "user_ivy", "label": "Ivy Kapoor", "group": "user", "attrs": {"name": "Ivy Kapoor", "org": "Kestrel Works", "location": "Rivergate"}}], "edges": [{"id": "e_0", "from": "user_ivy", "to": "user_bharat", "label": "connected_to", "arrows": "to", "color": "#16a34a", "dashes": false, "width": 2, "status": "matched", "confidence": 1.0}]}, {"nodes": [{"id": "event_project_lantern", "label": "Project Lantern", "group": "event", "attrs": {"name": "Project Lantern"}}, {"id": "thr_supply_leak", "label": "thr_supply_leak", "group": "thread", "attrs": {"topic": "supply_chain"}}], "edges": [{"id": "e_0", "from": "thr_supply_leak", "to": "event_project_lantern", "label": "discusses", "arrows": "to", "color": "#16a34a", "dashes": false, "width": 2, "status": "matched", "confidence": 1.0}]}, {"nodes": [{"id": "loc_dockyard17", "label": "Dockyard 17", "group": "location", "attrs": {"name": "Dockyard 17"}}, {"id": "post_shift_roster", "label": "post_shift_roster", "group": "post", "attrs": {"channel": "microblog"}}], "edges": [{"id": "e_0", "from": "post_shift_roster", "to": "loc_dockyard17", "label": "references", "arrows": "to", "color": "#16a34a", "dashes": false, "width": 2, "status": "matched", "confidence": 1.0}]}, {"nodes": [{"id": "alias_monsoonbyte", "label": "@monsoonbyte", "group": "alias", "attrs": {"handle": "@monsoonbyte"}}, {"id": "org_blueharbor_media", "label": "Blueharbor Media", "group": "org", "attrs": {"name": "Blueharbor Media"}}, {"id": "user_diya", "label": "Diya Roy", "group": "user", "attrs": {"name": "Diya Roy", "org": "Blueharbor Media", "location": "Old Town"}}], "edges": [{"id": "e_0", "from": "alias_monsoonbyte", "to": "user_diya", "label": "alias_of", "arrows": "to", "color": "#16a34a", "dashes": false, "width": 2, "status": "matched", "confidence": 1.0}, {"id": "e_1", "from": "user_diya", "to": "org_blueharbor_media", "label": "works_at", "arrows": "to", "color": "#16a34a", "dashes": false, "width": 2, "status": "matched", "confidence": 1.0}]}, {"nodes": [{"id": "event_project_lantern", "label": "Project Lantern", "group": "event", "attrs": {"name": "Project Lantern"}}, {"id": "thr_supply_leak", "label": "thr_supply_leak", "group": "thread", "attrs": {"topic": "supply_chain"}}, {"id": "user_diya", "label": "Diya Roy", "group": "user", "attrs": {"name": "Diya Roy", "org": "Blueharbor Media", "location": "Old Town"}}], "edges": [{"id": "e_0", "from": "user_diya", "to": "thr_supply_leak", "label": "authored_thread", "arrows": "to", "color": "#16a34a", "dashes": false, "width": 2, "status": "matched", "confidence": 1.0}, {"id": "e_1", "from": "user_diya", "to": "event_project_lantern", "label": "investigates", "arrows": "to", "color": "#16a34a", "dashes": false, "width": 2, "status": "matched", "confidence": 1.0}]}, {"nodes": [{"id": "loc_dockyard17", "label": "Dockyard 17", "group": "location", "attrs": {"name": "Dockyard 17"}}, {"id": "org_northbridge_logistics", "label": "Northbridge Logistics", "group": "org", "attrs": {"name": "Northbridge Logistics"}}, {"id": "post_midnight_manifest", "label": "post_midnight_manifest", "group": "post", "attrs": {"channel": "microblog"}}], "edges": [{"id": "e_0", "from": "org_northbridge_logistics", "to": "loc_dockyard17", "label": "operates_in", "arrows": "to", "color": "#16a34a", "dashes": false, "width": 2, "status": "matched", "confidence": 1.0}, {"id": "e_1", "from": "post_midnight_manifest", "to": "loc_dockyard17", "label": "references", "arrows": "to", "color": "#16a34a", "dashes": false, "width": 2, "status": "matched", "confidence": 1.0}]}, {"nodes": [{"id": "event_project_lantern", "label": "Project Lantern", "group": "event", "attrs": {"name": "Project Lantern"}}, {"id": "user_bharat", "label": "Bharat Kulkarni", "group": "user", "attrs": {"name": "Bharat Kulkarni", "org": "Northbridge Logistics", "location": "Dockyard 17"}}, {"id": "user_ivy", "label": "Ivy Kapoor", "group": "user", "attrs": {"name": "Ivy Kapoor", "org": "Kestrel Works", "location": "Rivergate"}}], "edges": [{"id": "e_0", "from": "user_bharat", "to": "event_project_lantern", "label": "collaborates_on", "arrows": "to", "color": "#16a34a", "dashes": false, "width": 2, "status": "matched", "confidence": 1.0}, {"id": "e_1", "from": "user_ivy", "to": "user_bharat", "label": "connected_to", "arrows": "to", "color": "#16a34a", "dashes": false, "width": 2, "status": "matched", "confidence": 1.0}]}, {"nodes": [{"id": "alias_docksparrow", "label": "@docksparrow", "group": "alias", "attrs": {"handle": "@docksparrow"}}, {"id": "event_project_lantern", "label": "Project Lantern", "group": "event", "attrs": {"name": "Project Lantern"}}, {"id": "user_hiro", "label": "Hiro Tan", "group": "user", "attrs": {"name": "Hiro Tan", "org": "Northbridge Logistics", "location": "Dockyard 17"}}], "edges": [{"id": "e_0", "from": "alias_docksparrow", "to": "user_hiro", "label": "alias_of", "arrows": "to", "color": "#16a34a", "dashes": false, "width": 2, "status": "matched", "confidence": 1.0}, {"id": "e_1", "from": "user_hiro", "to": "event_project_lantern", "label": "collaborates_on", "arrows": "to", "color": "#16a34a", "dashes": false, "width": 2, "status": "matched", "confidence": 1.0}]}, {"nodes": [{"id": "alias_orchidfox", "label": "@orchidfox", "group": "alias", "attrs": {"handle": "@orchidfox"}}, {"id": "event_project_lantern", "label": "Project Lantern", "group": "event", "attrs": {"name": "Project Lantern"}}, {"id": "loc_dockyard17", "label": "Dockyard 17", "group": "location", "attrs": {"name": "Dockyard 17"}}, {"id": "post_midnight_manifest", "label": "post_midnight_manifest", "group": "post", "attrs": {"channel": "microblog"}}, {"id": "user_bharat", "label": "Bharat Kulkarni", "group": "user", "attrs": {"name": "Bharat Kulkarni", "org": "Northbridge Logistics", "location": "Dockyard 17"}}, {"id": "user_ivy", "label": "Ivy Kapoor", "group": "user", "attrs": {"name": "Ivy Kapoor", "org": "Kestrel Works", "location": "Rivergate"}}], "edges": [{"id": "e_0", "from": "alias_orchidfox", "to": "user_ivy", "label": "alias_of", "arrows": "to", "color": "#16a34a", "dashes": false, "width": 2, "status": "matched", "confidence": 1.0}, {"id": "e_1", "from": "alias_orchidfox", "to": "post_midnight_manifest", "label": "authored_post", "arrows": "to", "color": "#16a34a", "dashes": false, "width": 2, "status": "matched", "confidence": 1.0}, {"id": "e_2", "from": "post_midnight_manifest", "to": "loc_dockyard17", "label": "references", "arrows": "to", "color": "#f59e0b", "dashes": true, "width": 2, "status": "truth_only", "confidence": 1.0}, {"id": "e_3", "from": "user_bharat", "to": "event_project_lantern", "label": "collaborates_on", "arrows": "to", "color": "#f59e0b", "dashes": true, "width": 2, "status": "truth_only", "confidence": 1.0}, {"id": "e_4", "from": "user_ivy", "to": "user_bharat", "label": "connected_to", "arrows": "to", "color": "#f59e0b", "dashes": true, "width": 2, "status": "truth_only", "confidence": 1.0}]}, {"nodes": [{"id": "alias_docksparrow", "label": "@docksparrow", "group": "alias", "attrs": {"handle": "@docksparrow"}}, {"id": "event_project_lantern", "label": "Project Lantern", "group": "event", "attrs": {"name": "Project Lantern"}}, {"id": "org_northbridge_logistics", "label": "Northbridge Logistics", "group": "org", "attrs": {"name": "Northbridge Logistics"}}, {"id": "thr_supply_leak", "label": "thr_supply_leak", "group": "thread", "attrs": {"topic": "supply_chain"}}, {"id": "user_hiro", "label": "Hiro Tan", "group": "user", "attrs": {"name": "Hiro Tan", "org": "Northbridge Logistics", "location": "Dockyard 17"}}], "edges": [{"id": "e_0", "from": "alias_docksparrow", "to": "user_hiro", "label": "alias_of", "arrows": "to", "color": "#16a34a", "dashes": false, "width": 2, "status": "matched", "confidence": 1.0}, {"id": "e_1", "from": "thr_supply_leak", "to": "org_northbridge_logistics", "label": "references", "arrows": "to", "color": "#16a34a", "dashes": false, "width": 2, "status": "matched", "confidence": 1.0}, {"id": "e_2", "from": "user_hiro", "to": "event_project_lantern", "label": "collaborates_on", "arrows": "to", "color": "#f59e0b", "dashes": true, "width": 2, "status": "truth_only", "confidence": 1.0}, {"id": "e_3", "from": "user_hiro", "to": "org_northbridge_logistics", "label": "works_at", "arrows": "to", "color": "#f59e0b", "dashes": true, "width": 2, "status": "truth_only", "confidence": 1.0}]}, {"nodes": [{"id": "alias_monsoonbyte", "label": "@monsoonbyte", "group": "alias", "attrs": {"handle": "@monsoonbyte"}}, {"id": "event_black_kite", "label": "Black Kite", "group": "event", "attrs": {"name": "Black Kite"}}, {"id": "org_kestrel_works", "label": "Kestrel Works", "group": "org", "attrs": {"name": "Kestrel Works"}}, {"id": "post_drone_parts", "label": "post_drone_parts", "group": "post", "attrs": {"channel": "microblog"}}, {"id": "user_diya", "label": "Diya Roy", "group": "user", "attrs": {"name": "Diya Roy", "org": "Blueharbor Media", "location": "Old Town"}}, {"id": "user_ivy", "label": "Ivy Kapoor", "group": "user", "attrs": {"name": "Ivy Kapoor", "org": "Kestrel Works", "location": "Rivergate"}}], "edges": [{"id": "e_0", "from": "alias_monsoonbyte", "to": "user_diya", "label": "alias_of", "arrows": "to", "color": "#16a34a", "dashes": false, "width": 2, "status": "matched", "confidence": 1.0}, {"id": "e_1", "from": "alias_monsoonbyte", "to": "post_drone_parts", "label": "authored_post", "arrows": "to", "color": "#16a34a", "dashes": false, "width": 2, "status": "matched", "confidence": 1.0}, {"id": "e_2", "from": "post_drone_parts", "to": "event_black_kite", "label": "references", "arrows": "to", "color": "#f59e0b", "dashes": true, "width": 2, "status": "truth_only", "confidence": 1.0}, {"id": "e_3", "from": "user_diya", "to": "user_ivy", "label": "connected_to", "arrows": "to", "color": "#f59e0b", "dashes": true, "width": 2, "status": "truth_only", "confidence": 1.0}, {"id": "e_4", "from": "user_ivy", "to": "event_black_kite", "label": "collaborates_on", "arrows": "to", "color": "#f59e0b", "dashes": true, "width": 2, "status": "truth_only", "confidence": 1.0}, {"id": "e_5", "from": "user_ivy", "to": "org_kestrel_works", "label": "works_at", "arrows": "to", "color": "#f59e0b", "dashes": true, "width": 2, "status": "truth_only", "confidence": 1.0}]}, {"nodes": [{"id": "alias_nightrelay", "label": "@nightrelay", "group": "alias", "attrs": {"handle": "@nightrelay"}}, {"id": "event_project_lantern", "label": "Project Lantern", "group": "event", "attrs": {"name": "Project Lantern"}}, {"id": "loc_rivergate", "label": "Rivergate", "group": "location", "attrs": {"name": "Rivergate"}}, {"id": "org_tidewatch_ops", "label": "Tidewatch Ops", "group": "org", "attrs": {"name": "Tidewatch Ops"}}, {"id": "post_sat_phone_ping", "label": "post_sat_phone_ping", "group": "post", "attrs": {"channel": "microblog"}}, {"id": "user_faris", "label": "Faris Noor", "group": "user", "attrs": {"name": "Faris Noor", "org": "Tidewatch Ops", "location": "Rivergate"}}], "edges": [{"id": "e_0", "from": "alias_nightrelay", "to": "user_faris", "label": "alias_of", "arrows": "to", "color": "#16a34a", "dashes": false, "width": 2, "status": "matched", "confidence": 1.0}, {"id": "e_1", "from": "alias_nightrelay", "to": "post_sat_phone_ping", "label": "authored_post", "arrows": "to", "color": "#16a34a", "dashes": false, "width": 2, "status": "matched", "confidence": 1.0}, {"id": "e_2", "from": "org_tidewatch_ops", "to": "loc_rivergate", "label": "operates_in", "arrows": "to", "color": "#f59e0b", "dashes": true, "width": 2, "status": "truth_only", "confidence": 1.0}, {"id": "e_3", "from": "post_sat_phone_ping", "to": "loc_rivergate", "label": "references", "arrows": "to", "color": "#f59e0b", "dashes": true, "width": 2, "status": "truth_only", "confidence": 1.0}, {"id": "e_4", "from": "user_faris", "to": "event_project_lantern", "label": "collaborates_on", "arrows": "to", "color": "#f59e0b", "dashes": true, "width": 2, "status": "truth_only", "confidence": 1.0}, {"id": "e_5", "from": "user_faris", "to": "org_tidewatch_ops", "label": "works_at", "arrows": "to", "color": "#f59e0b", "dashes": true, "width": 2, "status": "truth_only", "confidence": 1.0}]}, {"nodes": [{"id": "alias_orchidfox", "label": "@orchidfox", "group": "alias", "attrs": {"handle": "@orchidfox"}}, {"id": "event_black_kite", "label": "Black Kite", "group": "event", "attrs": {"name": "Black Kite"}}, {"id": "org_kestrel_works", "label": "Kestrel Works", "group": "org", "attrs": {"name": "Kestrel Works"}}, {"id": "post_midnight_manifest", "label": "post_midnight_manifest", "group": "post", "attrs": {"channel": "microblog"}}, {"id": "thr_port_audit", "label": "thr_port_audit", "group": "thread", "attrs": {"topic": "port_audit"}}, {"id": "user_ivy", "label": "Ivy Kapoor", "group": "user", "attrs": {"name": "Ivy Kapoor", "org": "Kestrel Works", "location": "Rivergate"}}], "edges": [{"id": "e_0", "from": "alias_orchidfox", "to": "user_ivy", "label": "alias_of", "arrows": "to", "color": "#f59e0b", "dashes": true, "width": 2, "status": "truth_only", "confidence": 1.0}, {"id": "e_1", "from": "alias_orchidfox", "to": "post_midnight_manifest", "label": "authored_post", "arrows": "to", "color": "#f59e0b", "dashes": true, "width": 2, "status": "truth_only", "confidence": 1.0}, {"id": "e_2", "from": "thr_port_audit", "to": "event_black_kite", "label": "discusses", "arrows": "to", "color": "#16a34a", "dashes": false, "width": 2, "status": "matched", "confidence": 1.0}, {"id": "e_3", "from": "thr_port_audit", "to": "org_kestrel_works", "label": "references", "arrows": "to", "color": "#16a34a", "dashes": false, "width": 2, "status": "matched", "confidence": 1.0}, {"id": "e_4", "from": "user_ivy", "to": "event_black_kite", "label": "collaborates_on", "arrows": "to", "color": "#f59e0b", "dashes": true, "width": 2, "status": "truth_only", "confidence": 1.0}, {"id": "e_5", "from": "user_ivy", "to": "org_kestrel_works", "label": "works_at", "arrows": "to", "color": "#f59e0b", "dashes": true, "width": 2, "status": "truth_only", "confidence": 1.0}]}], "episode_graph": {"nodes": [{"id": "alias_orchidfox", "label": "@orchidfox", "group": "alias", "attrs": {"handle": "@orchidfox"}}, {"id": "event_black_kite", "label": "Black Kite", "group": "event", "attrs": {"name": "Black Kite"}}, {"id": "org_kestrel_works", "label": "Kestrel Works", "group": "org", "attrs": {"name": "Kestrel Works"}}, {"id": "post_midnight_manifest", "label": "post_midnight_manifest", "group": "post", "attrs": {"channel": "microblog"}}, {"id": "thr_port_audit", "label": "thr_port_audit", "group": "thread", "attrs": {"topic": "port_audit"}}, {"id": "user_ivy", "label": "Ivy Kapoor", "group": "user", "attrs": {"name": "Ivy Kapoor", "org": "Kestrel Works", "location": "Rivergate"}}], "edges": [{"id": "e_0", "from": "alias_orchidfox", "to": "user_ivy", "label": "alias_of", "arrows": "to", "color": "#f59e0b", "dashes": true, "width": 2, "status": "truth_only", "confidence": 1.0}, {"id": "e_1", "from": "alias_orchidfox", "to": "post_midnight_manifest", "label": "authored_post", "arrows": "to", "color": "#f59e0b", "dashes": true, "width": 2, "status": "truth_only", "confidence": 1.0}, {"id": "e_2", "from": "thr_port_audit", "to": "event_black_kite", "label": "discusses", "arrows": "to", "color": "#16a34a", "dashes": false, "width": 2, "status": "matched", "confidence": 1.0}, {"id": "e_3", "from": "thr_port_audit", "to": "org_kestrel_works", "label": "references", "arrows": "to", "color": "#16a34a", "dashes": false, "width": 2, "status": "matched", "confidence": 1.0}, {"id": "e_4", "from": "user_ivy", "to": "event_black_kite", "label": "collaborates_on", "arrows": "to", "color": "#f59e0b", "dashes": true, "width": 2, "status": "truth_only", "confidence": 1.0}, {"id": "e_5", "from": "user_ivy", "to": "org_kestrel_works", "label": "works_at", "arrows": "to", "color": "#f59e0b", "dashes": true, "width": 2, "status": "truth_only", "confidence": 1.0}]}, "views": {"microblog_posts": [{"post_id": "post_0", "user_id": "alias_24_458", "canonical_user": "user_24", "text": "Update 0 from Helios Labs #pune", "mentions": ["user_9"], "timestamp": 1000}, {"post_id": "post_1", "user_id": "user_1", "canonical_user": "user_1", "text": "Update 1 from Apex Dynamics #bengaluru", "mentions": ["user_38"], "timestamp": 1001}, {"post_id": "post_2", "user_id": "alias_11_684", "canonical_user": "user_11", "text": "Rumor: Update 2 from Apex Dynamics #hyderabad maybe fake", "mentions": ["user_31"], "timestamp": 1002}, {"post_id": "post_3", "user_id": "user_3", "canonical_user": "user_3", "text": "Update 3 from Northbridge #pune", "mentions": ["user_30"], "timestamp": 1003}, {"post_id": "post_4", "user_id": "alias_20_174", "canonical_user": "user_20", "text": "Rumor: Update 4 from Helios Labs #bengaluru maybe fake", "mentions": ["user_21"], "timestamp": 1004}, {"post_id": "post_5", "user_id": "user_5", "canonical_user": "user_5", "text": "Update 5 from Helios Labs #bengaluru", "mentions": ["user_10"], "timestamp": 1005}, {"post_id": "post_6", "user_id": "user_6", "canonical_user": "user_6", "text": "Update 6 from Apex Dynamics #pune", "mentions": ["user_33"], "timestamp": 1006}, {"post_id": "post_7", "user_id": "alias_mapleghost", "canonical_user": "user_elin", "text": "Update 7 from Northbridge #bengaluru", "mentions": ["user_33"], "timestamp": 1007}, {"post_id": "post_8", "user_id": "alias_9_247", "canonical_user": "user_9", "text": "Update 8 from Helios Labs #bengaluru", "mentions": ["user_16"], "timestamp": 1008}, {"post_id": "post_9", "user_id": "user_9", "canonical_user": "user_9", "text": "Update 9 from Apex Dynamics #pune", "mentions": ["user_22"], "timestamp": 1009}, {"post_id": "post_10", "user_id": "user_10", "canonical_user": "user_10", "text": "Update 10 from Northbridge #bengaluru", "mentions": ["user_32"], "timestamp": 1010}, {"post_id": "post_11", "user_id": "alias_29_495", "canonical_user": "user_29", "text": "Update 11 from Northbridge #pune", "mentions": ["user_12"], "timestamp": 1011}, {"post_id": "post_12", "user_id": "user_12", "canonical_user": "user_12", "text": "Update 12 from Northbridge #pune", "mentions": ["user_14"], "timestamp": 1012}, {"post_id": "post_13", "user_id": "alias_monsoonbyte", "canonical_user": "user_diya", "text": "Update 13 from Northbridge #bengaluru", "mentions": ["user_1"], "timestamp": 1013}, {"post_id": "post_14", "user_id": "user_14", "canonical_user": "user_14", "text": "Update 14 from Northbridge #pune", "mentions": ["user_30"], "timestamp": 1014}, {"post_id": "post_15", "user_id": "alias_quartzlotus", "canonical_user": "user_cyrus", "text": "Update 15 from Northbridge #delhi", "mentions": ["user_28"], "timestamp": 1015}, {"post_id": "post_16", "user_id": "user_16", "canonical_user": "user_16", "text": "Update 16 from Helios Labs #delhi", "mentions": ["user_22"], "timestamp": 1016}, {"post_id": "post_17", "user_id": "user_17", "canonical_user": "user_17", "text": "Update 17 from Apex Dynamics #pune", "mentions": ["user_14"], "timestamp": 1017}, {"post_id": "post_18", "user_id": "alias_monsoonbyte", "canonical_user": "user_diya", "text": "Update 18 from Apex Dynamics #bengaluru", "mentions": ["user_13"], "timestamp": 1018}, {"post_id": "post_19", "user_id": "user_19", "canonical_user": "user_19", "text": "Update 19 from Northbridge #delhi", "mentions": ["user_39"], "timestamp": 1019}, {"post_id": "post_20", "user_id": "user_20", "canonical_user": "user_20", "text": "Update 20 from Northbridge #delhi", "mentions": ["user_22"], "timestamp": 1020}, {"post_id": "post_21", "user_id": "user_21", "canonical_user": "user_21", "text": "Rumor: Update 21 from Apex Dynamics #delhi maybe fake", "mentions": ["user_7"], "timestamp": 1021}, {"post_id": "post_22", "user_id": "user_22", "canonical_user": "user_22", "text": "Update 22 from Apex Dynamics #delhi", "mentions": ["user_12"], "timestamp": 1022}, {"post_id": "post_23", "user_id": "user_23", "canonical_user": "user_23", "text": "Update 23 from Northbridge #bengaluru", "mentions": ["user_21"], "timestamp": 1023}, {"post_id": "post_24", "user_id": "alias_39_951", "canonical_user": "user_39", "text": "Update 24 from Northbridge #hyderabad", "mentions": ["user_5"], "timestamp": 1024}, {"post_id": "post_25", "user_id": "user_25", "canonical_user": "user_25", "text": "Update 25 from Northbridge #delhi", "mentions": ["user_8"], "timestamp": 1025}, {"post_id": "post_26", "user_id": "alias_docksparrow", "canonical_user": "user_hiro", "text": "Update 26 from Helios Labs #bengaluru", "mentions": ["user_9"], "timestamp": 1026}, {"post_id": "post_27", "user_id": "user_27", "canonical_user": "user_27", "text": "Update 27 from Helios Labs #delhi", "mentions": ["user_30"], "timestamp": 1027}, {"post_id": "post_28", "user_id": "user_28", "canonical_user": "user_28", "text": "Update 28 from Apex Dynamics #bengaluru", "mentions": ["user_35"], "timestamp": 1028}, {"post_id": "post_29", "user_id": "user_29", "canonical_user": "user_29", "text": "Rumor: Update 29 from Helios Labs #delhi maybe fake", "mentions": ["user_6"], "timestamp": 1029}, {"post_id": "post_30", "user_id": "user_30", "canonical_user": "user_30", "text": "Update 30 from Northbridge #hyderabad", "mentions": ["user_27"], "timestamp": 1030}, {"post_id": "post_31", "user_id": "user_31", "canonical_user": "user_31", "text": "Update 31 from Helios Labs #pune", "mentions": ["user_13"], "timestamp": 1031}, {"post_id": "post_32", "user_id": "alias_24_458", "canonical_user": "user_24", "text": "Update 32 from Helios Labs #bengaluru", "mentions": ["user_15"], "timestamp": 1032}, {"post_id": "post_33", "user_id": "user_33", "canonical_user": "user_33", "text": "Update 33 from Apex Dynamics #pune", "mentions": ["user_34"], "timestamp": 1033}, {"post_id": "post_34", "user_id": "alias_20_174", "canonical_user": "user_20", "text": "Rumor: Update 34 from Helios Labs #bengaluru maybe fake", "mentions": ["user_22"], "timestamp": 1034}, {"post_id": "post_35", "user_id": "user_35", "canonical_user": "user_35", "text": "Update 35 from Northbridge #hyderabad", "mentions": ["user_33"], "timestamp": 1035}, {"post_id": "post_36", "user_id": "alias_nightrelay", "canonical_user": "user_faris", "text": "Rumor: Update 36 from Helios Labs #hyderabad maybe fake", "mentions": ["user_9"], "timestamp": 1036}, {"post_id": "post_37", "user_id": "user_37", "canonical_user": "user_37", "text": "Rumor: Update 37 from Helios Labs #delhi maybe fake", "mentions": ["user_28"], "timestamp": 1037}, {"post_id": "post_38", "user_id": "user_38", "canonical_user": "user_38", "text": "Update 38 from Apex Dynamics #bengaluru", "mentions": ["user_9"], "timestamp": 1038}, {"post_id": "post_39", "user_id": "alias_monsoonbyte", "canonical_user": "user_diya", "text": "Update 39 from Northbridge #pune", "mentions": ["user_7"], "timestamp": 1039}, {"post_id": "post_40", "user_id": "user_aria", "canonical_user": "user_aria", "text": "Update 40 from Helios Labs #sector 9", "mentions": ["user_33"], "timestamp": 1040}, {"post_id": "post_41", "user_id": "user_bharat", "canonical_user": "user_bharat", "text": "Update 41 from Northbridge Logistics #dockyard 17", "mentions": ["user_6"], "timestamp": 1041}, {"post_id": "post_42", "user_id": "user_cyrus", "canonical_user": "user_cyrus", "text": "Rumor: Update 42 from Apex Dynamics #old town maybe fake", "mentions": ["user_12"], "timestamp": 1042}, {"post_id": "post_43", "user_id": "alias_11_684", "canonical_user": "user_11", "text": "Update 43 from Blueharbor Media #old town", "mentions": ["user_35"], "timestamp": 1043}, {"post_id": "post_44", "user_id": "alias_9_247", "canonical_user": "user_9", "text": "Update 44 from Helios Labs #sector 9", "mentions": ["user_39"], "timestamp": 1044}, {"post_id": "post_45", "user_id": "user_faris", "canonical_user": "user_faris", "text": "Update 45 from Tidewatch Ops #rivergate", "mentions": ["user_12"], "timestamp": 1045}, {"post_id": "post_46", "user_id": "user_gita", "canonical_user": "user_gita", "text": "Update 46 from Apex Dynamics #old town", "mentions": ["user_34"], "timestamp": 1046}, {"post_id": "post_47", "user_id": "user_hiro", "canonical_user": "user_hiro", "text": "Update 47 from Northbridge Logistics #dockyard 17", "mentions": ["user_15"], "timestamp": 1047}, {"post_id": "post_48", "user_id": "user_ivy", "canonical_user": "user_ivy", "text": "Update 48 from Kestrel Works #rivergate", "mentions": ["user_16"], "timestamp": 1048}, {"post_id": "post_49", "user_id": "user_jules", "canonical_user": "user_jules", "text": "Update 49 from Blueharbor Media #old town", "mentions": ["user_12"], "timestamp": 1049}], "forum_threads": [{"thread_id": "thr_0", "topic": "startup", "author_id": "user_28", "comments": [{"user_id": "user_26", "text": "Following this."}, {"user_id": "user_7", "text": "Interesting link."}]}, {"thread_id": "thr_1", "topic": "infra", "author_id": "user_25", "comments": [{"user_id": "user_20", "text": "Following this."}, {"user_id": "user_4", "text": "Interesting link."}]}, {"thread_id": "thr_2", "topic": "startup", "author_id": "user_cyrus", "comments": [{"user_id": "user_27", "text": "Following this."}, {"user_id": "user_4", "text": "Interesting link."}]}, {"thread_id": "thr_3", "topic": "ai", "author_id": "user_13", "comments": [{"user_id": "user_7", "text": "Following this."}, {"user_id": "user_jules", "text": "Interesting link."}]}, {"thread_id": "thr_4", "topic": "ai", "author_id": "user_9", "comments": [{"user_id": "user_9", "text": "Following this."}, {"user_id": "user_16", "text": "Interesting link."}]}, {"thread_id": "thr_5", "topic": "infra", "author_id": "user_8", "comments": [{"user_id": "user_14", "text": "Following this."}, {"user_id": "user_hiro", "text": "Interesting link."}]}, {"thread_id": "thr_6", "topic": "infra", "author_id": "user_6", "comments": [{"user_id": "user_31", "text": "Following this."}, {"user_id": "user_10", "text": "Interesting link."}]}, {"thread_id": "thr_7", "topic": "startup", "author_id": "user_cyrus", "comments": [{"user_id": "user_10", "text": "Following this."}, {"user_id": "user_faris", "text": "Interesting link."}]}, {"thread_id": "thr_8", "topic": "infra", "author_id": "user_27", "comments": [{"user_id": "user_21", "text": "Following this."}, {"user_id": "user_26", "text": "Interesting link."}]}, {"thread_id": "thr_9", "topic": "ai", "author_id": "user_12", "comments": [{"user_id": "user_20", "text": "Following this."}, {"user_id": "user_5", "text": "Interesting link."}]}, {"thread_id": "thr_10", "topic": "ai", "author_id": "user_gita", "comments": [{"user_id": "user_1", "text": "Following this."}, {"user_id": "user_21", "text": "Interesting link."}]}, {"thread_id": "thr_11", "topic": "infra", "author_id": "user_35", "comments": [{"user_id": "user_28", "text": "Following this."}, {"user_id": "user_faris", "text": "Interesting link."}]}, {"thread_id": "thr_12", "topic": "infra", "author_id": "user_1", "comments": [{"user_id": "user_21", "text": "Following this."}, {"user_id": "user_33", "text": "Interesting link."}]}], "profiles": [{"user_id": "user_0", "name": "Person 0", "org": "Helios Labs", "location": "Pune", "connections": ["user_9"], "work_history": ["Helios Labs"]}, {"user_id": "user_1", "name": "Person 1", "org": "Apex Dynamics", "location": "Bengaluru", "connections": [], "work_history": ["Apex Dynamics"]}, {"user_id": "user_2", "name": "Person 2", "org": "Apex Dynamics", "location": "Hyderabad", "connections": [], "work_history": ["Apex Dynamics"]}, {"user_id": "user_3", "name": "Person 3", "org": "Northbridge", "location": "Pune", "connections": ["user_12"], "work_history": ["Northbridge"]}, {"user_id": "user_4", "name": "Person 4", "org": "Helios Labs", "location": "Bengaluru", "connections": ["user_13"], "work_history": ["Helios Labs"]}, {"user_id": "user_5", "name": "Person 5", "org": "Helios Labs", "location": "Bengaluru", "connections": [], "work_history": ["Helios Labs"]}, {"user_id": "user_6", "name": "Person 6", "org": "Apex Dynamics", "location": "Pune", "connections": ["user_0"], "work_history": ["Apex Dynamics"]}, {"user_id": "user_7", "name": "Person 7", "org": "Northbridge", "location": "Bengaluru", "connections": ["user_21"], "work_history": ["Northbridge"]}, {"user_id": "user_8", "name": "Person 8", "org": "Helios Labs", "location": "Bengaluru", "connections": ["user_32"], "work_history": ["Helios Labs"]}, {"user_id": "user_9", "name": "Person 9", "org": "Apex Dynamics", "location": "Pune", "connections": [], "work_history": ["Apex Dynamics"]}, {"user_id": "user_10", "name": "Person 10", "org": "Northbridge", "location": "Bengaluru", "connections": [], "work_history": ["Northbridge"]}, {"user_id": "user_11", "name": "Person 11", "org": "Northbridge", "location": "Pune", "connections": [], "work_history": ["Northbridge"]}, {"user_id": "user_12", "name": "Person 12", "org": "Northbridge", "location": "Pune", "connections": [], "work_history": ["Northbridge"]}, {"user_id": "user_13", "name": "Person 13", "org": "Northbridge", "location": "Bengaluru", "connections": [], "work_history": ["Northbridge"]}, {"user_id": "user_14", "name": "Person 14", "org": "Northbridge", "location": "Pune", "connections": [], "work_history": ["Northbridge"]}, {"user_id": "user_15", "name": "Person 15", "org": "Northbridge", "location": "Delhi", "connections": [], "work_history": ["Northbridge"]}, {"user_id": "user_16", "name": "Person 16", "org": "Helios Labs", "location": "Delhi", "connections": ["user_18"], "work_history": ["Helios Labs"]}, {"user_id": "user_17", "name": "Person 17", "org": "Apex Dynamics", "location": "Pune", "connections": [], "work_history": ["Apex Dynamics"]}, {"user_id": "user_18", "name": "Person 18", "org": "Apex Dynamics", "location": "Bengaluru", "connections": [], "work_history": ["Apex Dynamics"]}, {"user_id": "user_19", "name": "Person 19", "org": "Northbridge", "location": "Delhi", "connections": [], "work_history": ["Northbridge"]}, {"user_id": "user_20", "name": "Person 20", "org": "Northbridge", "location": "Delhi", "connections": [], "work_history": ["Northbridge"]}, {"user_id": "user_21", "name": "Person 21", "org": "Apex Dynamics", "location": "Delhi", "connections": [], "work_history": ["Apex Dynamics"]}, {"user_id": "user_22", "name": "Person 22", "org": "Apex Dynamics", "location": "Delhi", "connections": [], "work_history": ["Apex Dynamics"]}, {"user_id": "user_23", "name": "Person 23", "org": "Northbridge", "location": "Bengaluru", "connections": ["user_39", "user_39"], "work_history": ["Northbridge"]}, {"user_id": "user_24", "name": "Person 24", "org": "Northbridge", "location": "Hyderabad", "connections": [], "work_history": ["Northbridge"]}, {"user_id": "user_25", "name": "Person 25", "org": "Northbridge", "location": "Delhi", "connections": ["user_6"], "work_history": ["Northbridge"]}, {"user_id": "user_26", "name": "Person 26", "org": "Helios Labs", "location": "Bengaluru", "connections": ["user_34"], "work_history": ["Helios Labs"]}, {"user_id": "user_27", "name": "Person 27", "org": "Helios Labs", "location": "Delhi", "connections": [], "work_history": ["Helios Labs"]}, {"user_id": "user_28", "name": "Person 28", "org": "Apex Dynamics", "location": "Bengaluru", "connections": ["user_10"], "work_history": ["Apex Dynamics"]}, {"user_id": "user_29", "name": "Person 29", "org": "Helios Labs", "location": "Delhi", "connections": ["user_35"], "work_history": ["Helios Labs"]}, {"user_id": "user_30", "name": "Person 30", "org": "Northbridge", "location": "Hyderabad", "connections": ["user_25"], "work_history": ["Northbridge"]}, {"user_id": "user_31", "name": "Person 31", "org": "Helios Labs", "location": "Pune", "connections": [], "work_history": ["Helios Labs"]}, {"user_id": "user_32", "name": "Person 32", "org": "Helios Labs", "location": "Bengaluru", "connections": [], "work_history": ["Helios Labs"]}, {"user_id": "user_33", "name": "Person 33", "org": "Apex Dynamics", "location": "Pune", "connections": [], "work_history": ["Apex Dynamics"]}, {"user_id": "user_34", "name": "Person 34", "org": "Helios Labs", "location": "Bengaluru", "connections": ["user_6"], "work_history": ["Helios Labs"]}, {"user_id": "user_35", "name": "Person 35", "org": "Northbridge", "location": "Hyderabad", "connections": [], "work_history": ["Northbridge"]}, {"user_id": "user_36", "name": "Person 36", "org": "Helios Labs", "location": "Hyderabad", "connections": ["user_20", "user_9"], "work_history": ["Helios Labs"]}, {"user_id": "user_37", "name": "Person 37", "org": "Helios Labs", "location": "Delhi", "connections": ["user_11"], "work_history": ["Helios Labs"]}, {"user_id": "user_38", "name": "Person 38", "org": "Apex Dynamics", "location": "Bengaluru", "connections": ["user_3"], "work_history": ["Apex Dynamics"]}, {"user_id": "user_39", "name": "Person 39", "org": "Northbridge", "location": "Pune", "connections": ["user_3"], "work_history": ["Northbridge"]}, {"user_id": "user_aria", "name": "Aria Sen", "org": "Helios Labs", "location": "Sector 9", "connections": ["user_cyrus"], "work_history": ["Helios Labs"]}, {"user_id": "user_bharat", "name": "Bharat Kulkarni", "org": "Northbridge Logistics", "location": "Dockyard 17", "connections": ["user_hiro"], "work_history": ["Northbridge Logistics"]}, {"user_id": "user_cyrus", "name": "Cyrus Mehta", "org": "Apex Dynamics", "location": "Old Town", "connections": ["user_gita"], "work_history": ["Apex Dynamics"]}, {"user_id": "user_diya", "name": "Diya Roy", "org": "Blueharbor Media", "location": "Old Town", "connections": ["user_elin", "user_ivy"], "work_history": ["Blueharbor Media"]}, {"user_id": "user_elin", "name": "Elin Das", "org": "Helios Labs", "location": "Sector 9", "connections": ["user_aria"], "work_history": ["Helios Labs"]}, {"user_id": "user_faris", "name": "Faris Noor", "org": "Tidewatch Ops", "location": "Rivergate", "connections": ["user_diya"], "work_history": ["Tidewatch Ops"]}, {"user_id": "user_gita", "name": "Gita Pradhan", "org": "Apex Dynamics", "location": "Old Town", "connections": ["user_jules"], "work_history": ["Apex Dynamics"]}, {"user_id": "user_hiro", "name": "Hiro Tan", "org": "Northbridge Logistics", "location": "Dockyard 17", "connections": ["user_faris"], "work_history": ["Northbridge Logistics"]}, {"user_id": "user_ivy", "name": "Ivy Kapoor", "org": "Kestrel Works", "location": "Rivergate", "connections": ["user_bharat", "user_elin"], "work_history": ["Kestrel Works"]}, {"user_id": "user_jules", "name": "Jules Banerjee", "org": "Blueharbor Media", "location": "Old Town", "connections": ["user_bharat"], "work_history": ["Blueharbor Media"]}, {"user_id": "noise_0", "name": "P738", "org": "Unknown Ventures", "location": "Remote", "connections": [], "work_history": []}, {"user_id": "noise_1", "name": "P215", "org": "Stealth Co", "location": "Remote", "connections": [], "work_history": []}, {"user_id": "noise_2", "name": "P186", "org": "Unknown Ventures", "location": "Unknown", "connections": [], "work_history": []}, {"user_id": "noise_3", "name": "P140", "org": "Stealth Co", "location": "Unknown", "connections": [], "work_history": []}, {"user_id": "noise_4", "name": "P873", "org": "Stealth Co", "location": "Unknown", "connections": [], "work_history": []}]}, "task": {"task_id": "seed_task_14", "task_type": "convoluted_trace", "question": "From thread thr_port_audit discussing event_black_kite and referencing org_kestrel_works, identify the canonical user whose alias authored post_midnight_manifest and who collaborates on event_black_kite.", "answer": "user_ivy"}};
function metricCards(summary) {
const selected = [
["leaderboard_score", summary.leaderboard_score || 0],
["task_success_rate", summary.task_success_rate || 0],
["avg_graph_f1", summary.avg_graph_f1 || 0],
["retrieval_signal", summary.retrieval_signal || 0],
["structural_signal", summary.structural_signal || 0],
["tool_efficiency", summary.tool_efficiency || 0],
["avg_reward", summary.avg_reward || 0]
];
const root = document.getElementById("stats");
root.innerHTML = "";
selected.forEach(([k, v]) => {
const div = document.createElement("div");
div.className = "stat";
div.innerHTML = `<div class="k">${k}</div><div class="v">${Number(v).toFixed(3)}</div>`;
root.appendChild(div);
});
const pillRow = document.getElementById("hero-pills");
pillRow.innerHTML = "";
[
`deanonymization: ${Number(summary.deanonymization_accuracy || 0).toFixed(3)}`,
`avg steps: ${Number(summary.avg_steps_to_solution || 0).toFixed(2)}`,
`episodes: ${(payload.episodes || []).length}`
].forEach((text) => {
const span = document.createElement("span");
span.className = "pill";
span.textContent = text;
pillRow.appendChild(span);
});
}
function buildTypeFilters(allGroups) {
const root = document.getElementById("type-filters");
root.innerHTML = "";
allGroups.forEach((group) => {
const id = `type_${group}`;
const row = document.createElement("label");
row.className = "inline";
row.innerHTML = `<input type="checkbox" id="${id}" value="${group}" checked /> <span>${group}</span>`;
root.appendChild(row);
});
}
function createNetworkController() {
const container = document.getElementById("graph-canvas");
const banner = document.getElementById("graph-banner");
const modeSelect = document.getElementById("graph-mode");
const nodeSearch = document.getElementById("graph-search");
const relFilter = document.getElementById("relation-filter");
const fitBtn = document.getElementById("fit-graph");
const rawLayers = {
canonical: payload.canonical_graph || { nodes: [], edges: [] },
episode: payload.episode_graph || { nodes: [], edges: [] }
};
const episodeLayers = payload.episode_graphs || [];
const groupSet = new Set();
(rawLayers.canonical.nodes || []).forEach((n) => groupSet.add(n.group || "unknown"));
(episodeLayers || []).forEach((layer) => {
(layer.nodes || []).forEach((n) => groupSet.add(n.group || "unknown"));
});
const allGroups = Array.from(groupSet).sort();
buildTypeFilters(allGroups);
const state = {
mode: "canonical",
relationQuery: "",
nodeQuery: "",
selectedEpisode: Math.max(0, (payload.episodes || []).length - 1),
};
function currentEpisodeLayer() {
if (!episodeLayers.length) {
return rawLayers.episode;
}
const idx = Math.max(0, Math.min(episodeLayers.length - 1, Number(state.selectedEpisode || 0)));
return episodeLayers[idx] || rawLayers.episode;
}
const nodesDS = new vis.DataSet([]);
const edgesDS = new vis.DataSet([]);
const network = new vis.Network(container, { nodes: nodesDS, edges: edgesDS }, {
interaction: { hover: true, navigationButtons: true, keyboard: true },
physics: { stabilization: false, barnesHut: { springLength: 130 } },
edges: { smooth: true, font: { size: 10 } },
nodes: { shape: "dot", size: 11, font: { size: 10 } }
});
function activeGroups() {
const checked = Array.from(document.querySelectorAll('#type-filters input[type="checkbox"]:checked'));
return new Set(checked.map(x => x.value));
}
function styleNode(node, query) {
const text = `${node.id} ${node.label || ""}`.toLowerCase();
const hit = query && text.includes(query);
return {
...node,
color: hit ? "#f59e0b" : undefined,
size: hit ? 18 : 11,
};
}
function refresh() {
const raw = state.mode === "episode" ? currentEpisodeLayer() : rawLayers.canonical;
const groups = activeGroups();
const relQ = state.relationQuery.toLowerCase();
const nodeQ = state.nodeQuery.toLowerCase();
const nodes = (raw.nodes || []).filter(n => groups.has(n.group || "unknown")).map(n => styleNode(n, nodeQ));
const nodeIds = new Set(nodes.map(n => n.id));
const edges = (raw.edges || []).filter(e => nodeIds.has(e.from) && nodeIds.has(e.to)).filter(e => !relQ || String(e.label || "").toLowerCase().includes(relQ));
nodesDS.clear();
edgesDS.clear();
nodesDS.add(nodes);
edgesDS.add(edges);
banner.textContent = state.mode === "canonical" ? "Layer: Canonical Graph" : "Layer: Episode Graph";
}
modeSelect.addEventListener("change", () => {
state.mode = modeSelect.value;
refresh();
});
document.addEventListener("osint-episode-change", (event) => {
state.selectedEpisode = Number(event.detail?.index || 0);
if (state.mode === "episode") {
refresh();
}
});
relFilter.addEventListener("input", () => {
state.relationQuery = relFilter.value || "";
refresh();
});
nodeSearch.addEventListener("input", () => {
state.nodeQuery = nodeSearch.value || "";
refresh();
});
fitBtn.addEventListener("click", () => network.fit({ animation: true }));
document.getElementById("type-filters").addEventListener("change", refresh);
network.on("click", (params) => {
if (params.nodes && params.nodes.length) {
const node = nodesDS.get(params.nodes[0]);
const connected = network.getConnectedNodes(node.id) || [];
document.getElementById("node-detail").textContent = JSON.stringify({
node,
connected_nodes: connected
}, null, 2);
}
if (params.edges && params.edges.length) {
const edge = edgesDS.get(params.edges[0]);
document.getElementById("edge-detail").textContent = JSON.stringify(edge, null, 2);
}
});
refresh();
}
function buildRows(views) {
const rows = [];
(views.microblog_posts || []).forEach((x) => rows.push({ source: "microblog", id: x.post_id || "post", text: JSON.stringify(x), raw: x }));
(views.forum_threads || []).forEach((x) => rows.push({ source: "forum", id: x.thread_id || "thread", text: JSON.stringify(x), raw: x }));
(views.profiles || []).forEach((x) => rows.push({ source: "profile", id: x.user_id || "profile", text: JSON.stringify(x), raw: x }));
return rows;
}
function initDatabaseExplorer() {
const rows = buildRows(payload.views || {});
const tabs = document.getElementById("db-tabs");
const search = document.getElementById("db-search");
const limit = document.getElementById("db-limit");
const table = document.getElementById("db-table");
const detail = document.getElementById("db-detail");
const sources = ["all", "microblog", "forum", "profile"];
const state = { source: "all", query: "", limit: 200 };
tabs.innerHTML = "";
sources.forEach((src) => {
const btn = document.createElement("button");
btn.className = `tab ${src === state.source ? "active" : ""}`;
btn.textContent = src;
btn.addEventListener("click", () => {
state.source = src;
Array.from(tabs.children).forEach((child) => child.classList.remove("active"));
btn.classList.add("active");
render();
});
tabs.appendChild(btn);
});
function filtered() {
const q = state.query.toLowerCase();
return rows
.filter((row) => state.source === "all" || row.source === state.source)
.filter((row) => !q || row.text.toLowerCase().includes(q) || row.id.toLowerCase().includes(q));
}
function render() {
const show = filtered().slice(0, state.limit);
table.innerHTML = "<thead><tr><th>source</th><th>id</th><th>preview</th></tr></thead>";
const body = document.createElement("tbody");
show.forEach((row) => {
const tr = document.createElement("tr");
const preview = row.text.length > 120 ? `${row.text.slice(0, 120)}...` : row.text;
tr.innerHTML = `<td>${row.source}</td><td class="mono">${row.id}</td><td>${preview}</td>`;
tr.addEventListener("click", () => {
detail.textContent = JSON.stringify(row.raw, null, 2);
});
body.appendChild(tr);
});
table.appendChild(body);
}
search.addEventListener("input", () => { state.query = search.value || ""; render(); });
limit.addEventListener("change", () => { state.limit = Number(limit.value || 200); render(); });
render();
}
function renderLeaderboard(records, sortBy = "leaderboard_score") {
const sorted = [...records].sort((a, b) => (b.metrics?.[sortBy] || 0) - (a.metrics?.[sortBy] || 0));
const table = document.getElementById("leaderboard-table");
table.innerHTML = "<thead><tr><th>rank</th><th>run</th><th>score</th><th>success</th><th>graph_f1</th><th>retrieval</th><th>structural</th><th>spawn</th><th>reward</th></tr></thead>";
const body = document.createElement("tbody");
sorted.forEach((rec, i) => {
const m = rec.metrics || {};
const tr = document.createElement("tr");
tr.innerHTML = `<td>${i + 1}</td><td>${rec.run_name || rec.run_id || "run"}</td><td>${(m.leaderboard_score || 0).toFixed(4)}</td><td>${(m.task_success_rate || 0).toFixed(3)}</td><td>${(m.avg_graph_f1 || 0).toFixed(3)}</td><td>${(m.retrieval_signal || 0).toFixed(3)}</td><td>${(m.structural_signal || 0).toFixed(3)}</td><td>${(m.spawn_signal || 0).toFixed(3)}</td><td>${(m.avg_reward || 0).toFixed(3)}</td>`;
body.appendChild(tr);
});
table.appendChild(body);
}
function drawSummaryChart(summary) {
const labels = ["success", "graph_f1", "tool_eff", "deanon", "retrieval", "structural", "score"];
const values = [
summary.task_success_rate || 0,
summary.avg_graph_f1 || 0,
summary.tool_efficiency || 0,
summary.deanonymization_accuracy || 0,
summary.retrieval_signal || 0,
summary.structural_signal || 0,
summary.leaderboard_score || 0,
];
new Chart(document.getElementById("summary-chart"), {
type: "radar",
data: {
labels,
datasets: [{
label: "normalized metrics",
data: values,
backgroundColor: "rgba(15,118,110,0.2)",
borderColor: "#0f766e",
pointBackgroundColor: "#d97706",
pointRadius: 3
}]
},
options: { responsive: true, maintainAspectRatio: false, scales: { r: { min: 0, max: 1 } } }
});
}
function drawTraceChart(episodes) {
const labels = episodes.map((_, i) => `ep_${i + 1}`);
const rewards = episodes.map(e => e.reward || 0);
const f1 = episodes.map(e => e.graph_f1 || 0);
new Chart(document.getElementById("trace-chart"), {
type: "line",
data: {
labels,
datasets: [
{ label: "reward", data: rewards, borderColor: "#0f766e", yAxisID: "y", tension: 0.2 },
{ label: "graph_f1", data: f1, borderColor: "#d97706", yAxisID: "y1", tension: 0.2 }
]
},
options: {
responsive: true,
maintainAspectRatio: false,
scales: {
y: { position: "left" },
y1: { position: "right", min: 0, max: 1, grid: { drawOnChartArea: false } }
}
}
});
}
function initEpisodeExplorer() {
const episodes = payload.episodes || [];
const select = document.getElementById("episode-select");
const prevBtn = document.getElementById("episode-prev");
const nextBtn = document.getElementById("episode-next");
function fillFromEpisode(ep) {
const fallback = payload.task || {};
const taskId = ep?.task_id || fallback.task_id || "n/a";
const taskType = ep?.task_type || fallback.task_type || "n/a";
const question = ep?.question || fallback.question || "n/a";
const truth = ep?.task_answer ?? fallback.answer ?? "n/a";
const agent = ep?.agent_answer ?? "";
const isCorrect = String(agent) === String(truth);
document.getElementById("task-id").textContent = taskId;
document.getElementById("task-type").textContent = taskType;
document.getElementById("task-question").textContent = question;
document.getElementById("task-answer").textContent = truth;
document.getElementById("agent-answer").textContent = agent || "(no answer)";
const correctEl = document.getElementById("answer-correct");
correctEl.textContent = isCorrect ? "yes" : "no";
correctEl.className = isCorrect ? "answer-ok" : "answer-bad";
}
if (!episodes.length) {
select.innerHTML = "<option value='-1'>latest</option>";
fillFromEpisode(null);
prevBtn.disabled = true;
nextBtn.disabled = true;
return;
}
select.innerHTML = episodes
.map((ep, idx) => `<option value="${idx}">ep_${idx + 1} | ${ep.task_type || "task"} | reward=${Number(ep.reward || 0).toFixed(3)}</option>`)
.join("");
select.value = String(Math.max(0, episodes.length - 1));
function sync(delta = 0) {
const current = Math.max(0, Math.min(episodes.length - 1, Number(select.value || 0) + delta));
select.value = String(current);
fillFromEpisode(episodes[current]);
document.dispatchEvent(new CustomEvent("osint-episode-change", { detail: { index: current } }));
}
select.addEventListener("change", () => sync(0));
prevBtn.addEventListener("click", () => sync(-1));
nextBtn.addEventListener("click", () => sync(1));
sync(0);
}
const summary = payload.summary || {};
metricCards(summary);
initEpisodeExplorer();
createNetworkController();
initDatabaseExplorer();
const leaderboard = payload.leaderboard || [];
const leaderSort = document.getElementById("leader-sort");
renderLeaderboard(leaderboard, leaderSort.value);
leaderSort.addEventListener("change", () => renderLeaderboard(leaderboard, leaderSort.value));
drawSummaryChart(summary);
drawTraceChart(payload.episodes || []);
</script>
</body>
</html>