320 lines
2.6 MiB
320 lines
2.6 MiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>graphify - graphify-out/graph.html</title>
|
|
<script src="https://unpkg.com/vis-network@9.1.6/standalone/umd/vis-network.min.js"
|
|
integrity="sha384-Ux6phic9PEHJ38YtrijhkzyJ8yQlH8i/+buBR8s3mAZOJrP1gwyvAcIYl3GWtpX1"
|
|
crossorigin="anonymous"></script>
|
|
<style>
|
|
* { box-sizing: border-box; margin: 0; padding: 0; }
|
|
body { background: #0f0f1a; color: #e0e0e0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; display: flex; height: 100vh; overflow: hidden; }
|
|
#graph { flex: 1; }
|
|
#sidebar { width: 280px; background: #1a1a2e; border-left: 1px solid #2a2a4e; display: flex; flex-direction: column; overflow: hidden; }
|
|
#search-wrap { padding: 12px; border-bottom: 1px solid #2a2a4e; }
|
|
#search { width: 100%; background: #0f0f1a; border: 1px solid #3a3a5e; color: #e0e0e0; padding: 7px 10px; border-radius: 6px; font-size: 13px; outline: none; }
|
|
#search:focus { border-color: #4E79A7; }
|
|
#search-results { max-height: 140px; overflow-y: auto; padding: 4px 12px; border-bottom: 1px solid #2a2a4e; display: none; }
|
|
.search-item { padding: 4px 6px; cursor: pointer; border-radius: 4px; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
|
.search-item:hover { background: #2a2a4e; }
|
|
#info-panel { padding: 14px; border-bottom: 1px solid #2a2a4e; min-height: 140px; }
|
|
#info-panel h3 { font-size: 13px; color: #aaa; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
|
|
#info-content { font-size: 13px; color: #ccc; line-height: 1.6; }
|
|
#info-content .field { margin-bottom: 5px; }
|
|
#info-content .field b { color: #e0e0e0; }
|
|
#info-content .empty { color: #555; font-style: italic; }
|
|
.neighbor-link { display: block; padding: 2px 6px; margin: 2px 0; border-radius: 3px; cursor: pointer; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; border-left: 3px solid #333; }
|
|
.neighbor-link:hover { background: #2a2a4e; }
|
|
#neighbors-list { max-height: 160px; overflow-y: auto; margin-top: 4px; }
|
|
#legend-wrap { flex: 1; overflow-y: auto; padding: 12px; }
|
|
#legend-wrap h3 { font-size: 13px; color: #aaa; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
|
|
.legend-item { display: flex; align-items: center; gap: 8px; padding: 4px 0; cursor: pointer; border-radius: 4px; font-size: 12px; }
|
|
.legend-item:hover { background: #2a2a4e; padding-left: 4px; }
|
|
.legend-item.dimmed { opacity: 0.35; }
|
|
.legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
|
|
.legend-label { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
.legend-count { color: #666; font-size: 11px; }
|
|
#stats { padding: 10px 14px; border-top: 1px solid #2a2a4e; font-size: 11px; color: #555; }
|
|
#legend-controls { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; padding: 4px 0; }
|
|
#legend-controls label { display: flex; align-items: center; gap: 6px; cursor: pointer; font-size: 12px; color: #aaa; user-select: none; }
|
|
#legend-controls label:hover { color: #e0e0e0; }
|
|
.legend-cb, #select-all-cb { appearance: none; -webkit-appearance: none; width: 14px; height: 14px; border: 1.5px solid #3a3a5e; border-radius: 3px; background: #0f0f1a; cursor: pointer; position: relative; flex-shrink: 0; }
|
|
.legend-cb:checked, #select-all-cb:checked { background: #4E79A7; border-color: #4E79A7; }
|
|
.legend-cb:checked::after, #select-all-cb:checked::after { content: ''; position: absolute; left: 3.5px; top: 1px; width: 4px; height: 7px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
|
|
#select-all-cb:indeterminate { background: #4E79A7; border-color: #4E79A7; }
|
|
#select-all-cb:indeterminate::after { content: ''; position: absolute; left: 2px; top: 5px; width: 8px; height: 2px; background: #fff; border: none; transform: none; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="graph"></div>
|
|
<div id="sidebar">
|
|
<div id="search-wrap">
|
|
<input id="search" type="text" placeholder="Search nodes..." autocomplete="off">
|
|
<div id="search-results"></div>
|
|
</div>
|
|
<div id="info-panel">
|
|
<h3>Node Info</h3>
|
|
<div id="info-content"><span class="empty">Click a node to inspect it</span></div>
|
|
</div>
|
|
<div id="legend-wrap">
|
|
<h3>Communities</h3>
|
|
<div id="legend-controls">
|
|
<label><input type="checkbox" id="select-all-cb" checked onchange="toggleAllCommunities(!this.checked)">Select All</label>
|
|
</div>
|
|
<div id="legend"></div>
|
|
</div>
|
|
<div id="stats">2556 nodes · 5763 edges · 123 communities</div>
|
|
</div>
|
|
<script>
|
|
const RAW_NODES = [{"id": "contracts_meshnet_contracts_init", "label": "meshnet_contracts/__init__.py", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet_contracts/__init__.py", "community": 71, "community_name": "Community 71", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 16}, {"id": "contracts_meshnet_contracts_init_registrywallet", "label": "RegistryWallet", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "RegistryWallet", "community": 45, "community_name": "Community 45", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 14}, {"id": "contracts_meshnet_contracts_init_registrywallet_routing_multiplier", "label": ".routing_multiplier()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".routing_multiplier()", "community": 103, "community_name": "Community 103", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 2}, {"id": "contracts_meshnet_contracts_init_registryeventlog", "label": "RegistryEventLog", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "RegistryEventLog", "community": 82, "community_name": "Community 82", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 12}, {"id": "contracts_meshnet_contracts_init_registryeventlog_init", "label": ".__init__()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 82, "community_name": "Community 82", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 3}, {"id": "contracts_meshnet_contracts_init_registryeventlog_events_since", "label": ".events_since()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".events_since()", "community": 82, "community_name": "Community 82", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 1}, {"id": "contracts_meshnet_contracts_init_registryeventlog_apply_events", "label": ".apply_events()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".apply_events()", "community": 82, "community_name": "Community 82", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 2}, {"id": "contracts_meshnet_contracts_init_registryeventlog_record", "label": ".record()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": ".record()", "community": 45, "community_name": "Community 45", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 11}, {"id": "contracts_meshnet_contracts_init_registryeventlog_apply_locked", "label": "._apply_locked()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "._apply_locked()", "community": 82, "community_name": "Community 82", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 6}, {"id": "contracts_meshnet_contracts_init_registryeventlog_init_db", "label": "._init_db()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._init_db()", "community": 82, "community_name": "Community 82", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 2}, {"id": "contracts_meshnet_contracts_init_registryeventlog_load_from_db", "label": "._load_from_db()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._load_from_db()", "community": 82, "community_name": "Community 82", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 3}, {"id": "contracts_meshnet_contracts_init_registryeventlog_save_to_db", "label": ".save_to_db()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".save_to_db()", "community": 82, "community_name": "Community 82", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 1}, {"id": "contracts_meshnet_contracts_init_registry_wallet_with", "label": "_registry_wallet_with()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_registry_wallet_with()", "community": 82, "community_name": "Community 82", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 3}, {"id": "contracts_meshnet_contracts_init_apikeybalance", "label": "ApiKeyBalance", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiKeyBalance", "community": 72, "community_name": "Community 72", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 5}, {"id": "contracts_meshnet_contracts_init_computeattribution", "label": "ComputeAttribution", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ComputeAttribution", "community": 72, "community_name": "Community 72", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 7}, {"id": "contracts_meshnet_contracts_init_computeattribution_layer_count", "label": ".layer_count()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".layer_count()", "community": 72, "community_name": "Community 72", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 1}, {"id": "contracts_meshnet_contracts_init_computeattribution_work_units", "label": ".work_units()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".work_units()", "community": 72, "community_name": "Community 72", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 1}, {"id": "contracts_meshnet_contracts_init_validationevent", "label": "ValidationEvent", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ValidationEvent", "community": 71, "community_name": "Community 71", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 4}, {"id": "contracts_meshnet_contracts_init_slashreceipt", "label": "SlashReceipt", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "SlashReceipt", "community": 71, "community_name": "Community 71", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 4}, {"id": "contracts_meshnet_contracts_init_settlementresult", "label": "SettlementResult", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "SettlementResult", "community": 85, "community_name": "Community 85", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 3}, {"id": "contracts_meshnet_contracts_init_localcontractstate", "label": "_LocalContractState", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_LocalContractState", "community": 93, "community_name": "Community 93", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 6}, {"id": "contracts_meshnet_contracts_init_registrycontract", "label": "RegistryContract", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "RegistryContract", "community": 45, "community_name": "Community 45", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 20}, {"id": "contracts_meshnet_contracts_init_registrycontract_init", "label": ".__init__()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 93, "community_name": "Community 93", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 3}, {"id": "contracts_meshnet_contracts_init_registrycontract_submit_stake", "label": ".submit_stake()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".submit_stake()", "community": 45, "community_name": "Community 45", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 2}, {"id": "contracts_meshnet_contracts_init_registrycontract_get_wallet", "label": ".get_wallet()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_wallet()", "community": 45, "community_name": "Community 45", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 12}, {"id": "contracts_meshnet_contracts_init_registrycontract_record_strike", "label": ".record_strike()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".record_strike()", "community": 45, "community_name": "Community 45", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 2}, {"id": "contracts_meshnet_contracts_init_registrycontract_submit_slash_proof", "label": ".submit_slash_proof()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".submit_slash_proof()", "community": 71, "community_name": "Community 71", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 5}, {"id": "contracts_meshnet_contracts_init_registrycontract_ban_wallet", "label": ".ban_wallet()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".ban_wallet()", "community": 45, "community_name": "Community 45", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 2}, {"id": "contracts_meshnet_contracts_init_registrycontract_has_minimum_stake", "label": ".has_minimum_stake()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".has_minimum_stake()", "community": 45, "community_name": "Community 45", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 2}, {"id": "contracts_meshnet_contracts_init_registrycontract_list_wallets", "label": ".list_wallets()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".list_wallets()", "community": 45, "community_name": "Community 45", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 3}, {"id": "contracts_meshnet_contracts_init_registrycontract_record_completed_job", "label": ".record_completed_job()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".record_completed_job()", "community": 45, "community_name": "Community 45", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 4}, {"id": "contracts_meshnet_contracts_init_registrycontract_record_completed_jobs", "label": ".record_completed_jobs()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".record_completed_jobs()", "community": 45, "community_name": "Community 45", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 6}, {"id": "contracts_meshnet_contracts_init_registrycontract_set_reputation", "label": ".set_reputation()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".set_reputation()", "community": 45, "community_name": "Community 45", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 4}, {"id": "contracts_meshnet_contracts_init_registrycontract_record_audit", "label": ".record_audit()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".record_audit()", "community": 45, "community_name": "Community 45", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 4}, {"id": "contracts_meshnet_contracts_init_registrycontract_probationary_jobs_remaining", "label": ".probationary_jobs_remaining()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".probationary_jobs_remaining()", "community": 45, "community_name": "Community 45", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 2}, {"id": "contracts_meshnet_contracts_init_registrycontract_record_audit_outcome", "label": ".record_audit_outcome()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".record_audit_outcome()", "community": 45, "community_name": "Community 45", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 5}, {"id": "contracts_meshnet_contracts_init_registrycontract_routing_multiplier", "label": ".routing_multiplier()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".routing_multiplier()", "community": 45, "community_name": "Community 45", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 3}, {"id": "contracts_meshnet_contracts_init_registrycontract_apply_inactivity_decay", "label": ".apply_inactivity_decay()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".apply_inactivity_decay()", "community": 45, "community_name": "Community 45", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 5}, {"id": "contracts_meshnet_contracts_init_validationcontract", "label": "ValidationContract", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ValidationContract", "community": 71, "community_name": "Community 71", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 6}, {"id": "contracts_meshnet_contracts_init_validationcontract_init", "label": ".__init__()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 71, "community_name": "Community 71", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 2}, {"id": "contracts_meshnet_contracts_init_validationcontract_record_completed_inference", "label": ".record_completed_inference()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".record_completed_inference()", "community": 71, "community_name": "Community 71", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 2}, {"id": "contracts_meshnet_contracts_init_validationcontract_list_completed_inferences", "label": ".list_completed_inferences()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".list_completed_inferences()", "community": 71, "community_name": "Community 71", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 2}, {"id": "contracts_meshnet_contracts_init_paymentcontract", "label": "PaymentContract", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PaymentContract", "community": 72, "community_name": "Community 72", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 8}, {"id": "contracts_meshnet_contracts_init_paymentcontract_init", "label": ".__init__()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 72, "community_name": "Community 72", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 2}, {"id": "contracts_meshnet_contracts_init_paymentcontract_fund_api_key", "label": ".fund_api_key()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".fund_api_key()", "community": 72, "community_name": "Community 72", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 3}, {"id": "contracts_meshnet_contracts_init_paymentcontract_get_balance", "label": ".get_balance()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_balance()", "community": 72, "community_name": "Community 72", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 3}, {"id": "contracts_meshnet_contracts_init_paymentcontract_record_attribution", "label": ".record_attribution()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".record_attribution()", "community": 72, "community_name": "Community 72", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 2}, {"id": "contracts_meshnet_contracts_init_paymentcontract_list_attributions", "label": ".list_attributions()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".list_attributions()", "community": 72, "community_name": "Community 72", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 2}, {"id": "contracts_meshnet_contracts_init_settlementcontract", "label": "SettlementContract", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "SettlementContract", "community": 85, "community_name": "Community 85", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 8}, {"id": "contracts_meshnet_contracts_init_settlementcontract_init", "label": ".__init__()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 93, "community_name": "Community 93", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 3}, {"id": "contracts_meshnet_contracts_init_settlementcontract_settle_epoch", "label": ".settle_epoch()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".settle_epoch()", "community": 85, "community_name": "Community 85", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 6}, {"id": "contracts_meshnet_contracts_init_settlementcontract_get_token_balance", "label": ".get_token_balance()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_token_balance()", "community": 85, "community_name": "Community 85", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 1}, {"id": "contracts_meshnet_contracts_init_settlementcontract_record_completed_jobs", "label": "._record_completed_jobs()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._record_completed_jobs()", "community": 85, "community_name": "Community 85", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 3}, {"id": "contracts_meshnet_contracts_init_settlementcontract_deployment_plan", "label": ".deployment_plan()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".deployment_plan()", "community": 85, "community_name": "Community 85", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 2}, {"id": "contracts_meshnet_contracts_init_localsolanacontracts", "label": "LocalSolanaContracts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "LocalSolanaContracts", "community": 93, "community_name": "Community 93", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 5}, {"id": "contracts_meshnet_contracts_init_localsolanacontracts_init", "label": ".__init__()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 93, "community_name": "Community 93", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 7}, {"id": "contracts_meshnet_contracts_init_localsolanacontracts_save_to_db", "label": ".save_to_db()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".save_to_db()", "community": 93, "community_name": "Community 93", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 1}, {"id": "contracts_meshnet_contracts_init_notify_slash", "label": "_notify_slash()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_notify_slash()", "community": 71, "community_name": "Community 71", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "code", "degree": 3}, {"id": "contracts_meshnet_contracts_init_rationale_1", "label": "Solana contract boundary for the Distributed Inference Network. The prototype\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Solana contract boundary for the Distributed Inference Network. The prototype\u2026", "community": 71, "community_name": "Community 71", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "contracts_meshnet_contracts_init_rationale_33", "label": "Stake, strike, and ban state for a node operator wallet.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Stake, strike, and ban state for a node operator wallet.", "community": 45, "community_name": "Community 45", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "contracts_meshnet_contracts_init_rationale_45", "label": "ADR-0018 \u00a76: \u00d70.8 routing/payout weight decay per strike.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-0018 \u00a76: \u00d70.8 routing/payout weight decay per strike.", "community": 103, "community_name": "Community 103", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "contracts_meshnet_contracts_init_rationale_50", "label": "Thread-safe registry wallet event log with SQLite persistence.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Thread-safe registry wallet event log with SQLite persistence.", "community": 82, "community_name": "Community 82", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "contracts_meshnet_contracts_init_rationale_206", "label": "Client API key payment account balance.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Client API key payment account balance.", "community": 72, "community_name": "Community 72", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "contracts_meshnet_contracts_init_rationale_214", "label": "On-chain work attribution recorded by the gateway after inference.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "On-chain work attribution recorded by the gateway after inference.", "community": 72, "community_name": "Community 72", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "contracts_meshnet_contracts_init_rationale_236", "label": "Completed inference data consumed by fraud validators.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Completed inference data consumed by fraud validators.", "community": 71, "community_name": "Community 71", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "contracts_meshnet_contracts_init_rationale_249", "label": "Local slash transaction receipt.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Local slash transaction receipt.", "community": 71, "community_name": "Community 71", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "contracts_meshnet_contracts_init_rationale_264", "label": "Summary returned by an epoch settlement transaction.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Summary returned by an epoch settlement transaction.", "community": 85, "community_name": "Community 85", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "contracts_meshnet_contracts_init_rationale_284", "label": "Registry wrapper for node stake, strikes, and bans.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Registry wrapper for node stake, strikes, and bans.", "community": 45, "community_name": "Community 45", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "contracts_meshnet_contracts_init_rationale_373", "label": "Snapshot of all known wallets (dashboard / monitoring).", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Snapshot of all known wallets (dashboard / monitoring).", "community": 45, "community_name": "Community 45", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "contracts_meshnet_contracts_init_rationale_417", "label": "ADR-0018 \u00a76: the only reputation signal \u2014 clean audits build score slowly, a\u2026", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-0018 \u00a76: the only reputation signal \u2014 clean audits build score slowly, a\u2026", "community": 45, "community_name": "Community 45", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "contracts_meshnet_contracts_init_rationale_431", "label": "ADR-0018 \u00a76: \u00d70.8 routing/payout weight per strike, separate from the\u2026", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-0018 \u00a76: \u00d70.8 routing/payout weight per strike, separate from the\u2026", "community": 45, "community_name": "Community 45", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "contracts_meshnet_contracts_init_rationale_442", "label": "ADR-0018 \u00a76: reputation decays for wallets with no completed job in\u2026", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-0018 \u00a76: reputation decays for wallets with no completed job in\u2026", "community": 45, "community_name": "Community 45", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "contracts_meshnet_contracts_init_rationale_464", "label": "Validation event log consumed by the optimistic fraud detector.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Validation event log consumed by the optimistic fraud detector.", "community": 71, "community_name": "Community 71", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "contracts_meshnet_contracts_init_rationale_509", "label": "Payment wrapper for funded API keys and compute attribution.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Payment wrapper for funded API keys and compute attribution.", "community": 72, "community_name": "Community 72", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "contracts_meshnet_contracts_init_rationale_579", "label": "Settlement wrapper that debits clients and credits token rewards.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Settlement wrapper that debits clients and credits token rewards.", "community": 85, "community_name": "Community 85", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "contracts_meshnet_contracts_init_rationale_683", "label": "Return the configured manual testnet deployment targets.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return the configured manual testnet deployment targets.", "community": 85, "community_name": "Community 85", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "contracts_meshnet_contracts_init_rationale_691", "label": "Facade that exposes all three contract wrappers over local validator state.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Facade that exposes all three contract wrappers over local validator state.", "community": 93, "community_name": "Community 93", "source_file": "contracts/meshnet_contracts/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "contracts_meshnet_contracts_solana_adapter", "label": "solana_adapter.py", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "solana_adapter.py", "community": 26, "community_name": "Community 26", "source_file": "contracts/meshnet_contracts/solana_adapter.py", "file_type": "code", "degree": 5}, {"id": "contracts_meshnet_contracts_solana_adapter_deposit", "label": "Deposit", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Deposit", "community": 26, "community_name": "Community 26", "source_file": "contracts/meshnet_contracts/solana_adapter.py", "file_type": "code", "degree": 4}, {"id": "contracts_meshnet_contracts_solana_adapter_load_keypair", "label": "load_keypair()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "load_keypair()", "community": 26, "community_name": "Community 26", "source_file": "contracts/meshnet_contracts/solana_adapter.py", "file_type": "code", "degree": 4}, {"id": "keypair", "label": "Keypair", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Keypair", "community": 26, "community_name": "Community 26", "source_file": "", "file_type": "code", "degree": 3}, {"id": "contracts_meshnet_contracts_solana_adapter_rpcclient", "label": "RpcClient", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "RpcClient", "community": 26, "community_name": "Community 26", "source_file": "contracts/meshnet_contracts/solana_adapter.py", "file_type": "code", "degree": 5}, {"id": "contracts_meshnet_contracts_solana_adapter_rpcclient_init", "label": ".__init__()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 26, "community_name": "Community 26", "source_file": "contracts/meshnet_contracts/solana_adapter.py", "file_type": "code", "degree": 1}, {"id": "contracts_meshnet_contracts_solana_adapter_rpcclient_call", "label": ".call()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".call()", "community": 26, "community_name": "Community 26", "source_file": "contracts/meshnet_contracts/solana_adapter.py", "file_type": "code", "degree": 8}, {"id": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury", "label": "SolanaCustodialTreasury", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "SolanaCustodialTreasury", "community": 26, "community_name": "Community 26", "source_file": "contracts/meshnet_contracts/solana_adapter.py", "file_type": "code", "degree": 16}, {"id": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_init", "label": ".__init__()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 26, "community_name": "Community 26", "source_file": "contracts/meshnet_contracts/solana_adapter.py", "file_type": "code", "degree": 4}, {"id": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_treasury_wallet", "label": ".treasury_wallet()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".treasury_wallet()", "community": 26, "community_name": "Community 26", "source_file": "contracts/meshnet_contracts/solana_adapter.py", "file_type": "code", "degree": 1}, {"id": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_treasury_token_account", "label": ".treasury_token_account()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".treasury_token_account()", "community": 26, "community_name": "Community 26", "source_file": "contracts/meshnet_contracts/solana_adapter.py", "file_type": "code", "degree": 1}, {"id": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_list_new_deposits", "label": ".list_new_deposits()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".list_new_deposits()", "community": 26, "community_name": "Community 26", "source_file": "contracts/meshnet_contracts/solana_adapter.py", "file_type": "code", "degree": 5}, {"id": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_parse_deposit", "label": "._parse_deposit()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._parse_deposit()", "community": 26, "community_name": "Community 26", "source_file": "contracts/meshnet_contracts/solana_adapter.py", "file_type": "code", "degree": 4}, {"id": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_send_payouts", "label": ".send_payouts()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".send_payouts()", "community": 26, "community_name": "Community 26", "source_file": "contracts/meshnet_contracts/solana_adapter.py", "file_type": "code", "degree": 4}, {"id": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_account_exists", "label": "._account_exists()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._account_exists()", "community": 26, "community_name": "Community 26", "source_file": "contracts/meshnet_contracts/solana_adapter.py", "file_type": "code", "degree": 5}, {"id": "pubkey", "label": "Pubkey", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Pubkey", "community": 26, "community_name": "Community 26", "source_file": "", "file_type": "code", "degree": 1}, {"id": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_send_instructions", "label": ".send_instructions()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".send_instructions()", "community": 26, "community_name": "Community 26", "source_file": "contracts/meshnet_contracts/solana_adapter.py", "file_type": "code", "degree": 6}, {"id": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_get_sol_balance", "label": ".get_sol_balance()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_sol_balance()", "community": 26, "community_name": "Community 26", "source_file": "contracts/meshnet_contracts/solana_adapter.py", "file_type": "code", "degree": 2}, {"id": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_request_airdrop", "label": ".request_airdrop()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".request_airdrop()", "community": 26, "community_name": "Community 26", "source_file": "contracts/meshnet_contracts/solana_adapter.py", "file_type": "code", "degree": 2}, {"id": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_create_mock_usdt_mint", "label": ".create_mock_usdt_mint()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".create_mock_usdt_mint()", "community": 26, "community_name": "Community 26", "source_file": "contracts/meshnet_contracts/solana_adapter.py", "file_type": "code", "degree": 5}, {"id": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_ensure_token_account", "label": ".ensure_token_account()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".ensure_token_account()", "community": 26, "community_name": "Community 26", "source_file": "contracts/meshnet_contracts/solana_adapter.py", "file_type": "code", "degree": 4}, {"id": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_mint_mock_usdt", "label": ".mint_mock_usdt()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".mint_mock_usdt()", "community": 26, "community_name": "Community 26", "source_file": "contracts/meshnet_contracts/solana_adapter.py", "file_type": "code", "degree": 4}, {"id": "contracts_meshnet_contracts_solana_adapter_rationale_1", "label": "Custodial Solana treasury adapter (ADR-0015, US-032/US-033). The entire on-\u2026", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Custodial Solana treasury adapter (ADR-0015, US-032/US-033). The entire on-\u2026", "community": 26, "community_name": "Community 26", "source_file": "contracts/meshnet_contracts/solana_adapter.py", "file_type": "rationale", "degree": 1}, {"id": "contracts_meshnet_contracts_solana_adapter_rationale_48", "label": "A confirmed incoming USDT transfer into the treasury token account.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "A confirmed incoming USDT transfer into the treasury token account.", "community": 26, "community_name": "Community 26", "source_file": "contracts/meshnet_contracts/solana_adapter.py", "file_type": "rationale", "degree": 1}, {"id": "contracts_meshnet_contracts_solana_adapter_rationale_56", "label": "Load a keypair from a solana-cli style JSON byte-array file.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Load a keypair from a solana-cli style JSON byte-array file.", "community": 26, "community_name": "Community 26", "source_file": "contracts/meshnet_contracts/solana_adapter.py", "file_type": "rationale", "degree": 1}, {"id": "contracts_meshnet_contracts_solana_adapter_rationale_63", "label": "Minimal synchronous Solana JSON-RPC client.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Minimal synchronous Solana JSON-RPC client.", "community": 26, "community_name": "Community 26", "source_file": "contracts/meshnet_contracts/solana_adapter.py", "file_type": "rationale", "degree": 1}, {"id": "contracts_meshnet_contracts_solana_adapter_rationale_92", "label": "Read deposits into / send payouts from the custodial treasury wallet.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Read deposits into / send payouts from the custodial treasury wallet.", "community": 26, "community_name": "Community 26", "source_file": "contracts/meshnet_contracts/solana_adapter.py", "file_type": "rationale", "degree": 1}, {"id": "contracts_meshnet_contracts_solana_adapter_rationale_125", "label": "Confirmed incoming USDT transfers whose signature is not yet seen.\u2026", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Confirmed incoming USDT transfers whose signature is not yet seen.\u2026", "community": 26, "community_name": "Community 26", "source_file": "contracts/meshnet_contracts/solana_adapter.py", "file_type": "rationale", "degree": 1}, {"id": "contracts_meshnet_contracts_solana_adapter_rationale_187", "label": "Send one batched transaction of USDT transfers treasury \u2192 wallets. Creates the\u2026", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Send one batched transaction of USDT transfers treasury \u2192 wallets. Creates the\u2026", "community": 26, "community_name": "Community 26", "source_file": "contracts/meshnet_contracts/solana_adapter.py", "file_type": "rationale", "degree": 1}, {"id": "contracts_meshnet_contracts_solana_adapter_rationale_246", "label": "Create a fresh 6-decimal mock-USDT mint (treasury = mint authority). Returns a\u2026", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Create a fresh 6-decimal mock-USDT mint (treasury = mint authority). Returns a\u2026", "community": 26, "community_name": "Community 26", "source_file": "contracts/meshnet_contracts/solana_adapter.py", "file_type": "rationale", "degree": 1}, {"id": "contracts_meshnet_contracts_solana_adapter_rationale_289", "label": "Mint mock USDT to a wallet (devnet only \u2014 treasury is mint authority).", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Mint mock USDT to a wallet (devnet only \u2014 treasury is mint authority).", "community": 26, "community_name": "Community 26", "source_file": "contracts/meshnet_contracts/solana_adapter.py", "file_type": "rationale", "degree": 1}, {"id": "pkg_meshnet_contracts", "label": "meshnet-contracts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet-contracts", "community": 116, "community_name": "Community 116", "source_file": "contracts/pyproject.toml", "file_type": "code", "degree": 0}, {"id": "gateway_meshnet_gateway_init", "label": "meshnet_gateway/__init__.py", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet_gateway/__init__.py", "community": 104, "community_name": "Community 104", "source_file": "gateway/meshnet_gateway/__init__.py", "file_type": "code", "degree": 1}, {"id": "gateway_meshnet_gateway_init_rationale_1", "label": "meshnet_gateway \u2014 Distributed Inference Network HTTP gateway.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet_gateway \u2014 Distributed Inference Network HTTP gateway.", "community": 104, "community_name": "Community 104", "source_file": "gateway/meshnet_gateway/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "gateway_meshnet_gateway_cli", "label": "meshnet_gateway/cli.py", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet_gateway/cli.py", "community": 60, "community_name": "Community 60", "source_file": "gateway/meshnet_gateway/cli.py", "file_type": "code", "degree": 3}, {"id": "gateway_meshnet_gateway_cli_main", "label": "main()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 60, "community_name": "Community 60", "source_file": "gateway/meshnet_gateway/cli.py", "file_type": "code", "degree": 2}, {"id": "gateway_meshnet_gateway_cli_rationale_1", "label": "meshnet-gateway CLI entry point.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet-gateway CLI entry point.", "community": 60, "community_name": "Community 60", "source_file": "gateway/meshnet_gateway/cli.py", "file_type": "rationale", "degree": 1}, {"id": "gateway_meshnet_gateway_prefill_backpressure", "label": "prefill_backpressure.py", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "prefill_backpressure.py", "community": 77, "community_name": "Community 77", "source_file": "gateway/meshnet_gateway/prefill_backpressure.py", "file_type": "code", "degree": 5}, {"id": "gateway_meshnet_gateway_prefill_backpressure_prefilltransferlimits", "label": "PrefillTransferLimits", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PrefillTransferLimits", "community": 77, "community_name": "Community 77", "source_file": "gateway/meshnet_gateway/prefill_backpressure.py", "file_type": "code", "degree": 13}, {"id": "gateway_meshnet_gateway_prefill_backpressure_prefilltransferlimits_effective_in_flight", "label": ".effective_in_flight()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".effective_in_flight()", "community": 77, "community_name": "Community 77", "source_file": "gateway/meshnet_gateway/prefill_backpressure.py", "file_type": "code", "degree": 2}, {"id": "gateway_meshnet_gateway_prefill_backpressure_prefilltransferlimits_max_buffered_bytes", "label": ".max_buffered_bytes()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".max_buffered_bytes()", "community": 77, "community_name": "Community 77", "source_file": "gateway/meshnet_gateway/prefill_backpressure.py", "file_type": "code", "degree": 2}, {"id": "gateway_meshnet_gateway_prefill_backpressure_prefilltransferlimits_from_env", "label": ".from_env()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".from_env()", "community": 77, "community_name": "Community 77", "source_file": "gateway/meshnet_gateway/prefill_backpressure.py", "file_type": "code", "degree": 4}, {"id": "gateway_meshnet_gateway_prefill_backpressure_boundedprefillsender", "label": "BoundedPrefillSender", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BoundedPrefillSender", "community": 83, "community_name": "Community 83", "source_file": "gateway/meshnet_gateway/prefill_backpressure.py", "file_type": "code", "degree": 13}, {"id": "gateway_meshnet_gateway_prefill_backpressure_boundedprefillsender_init", "label": ".__init__()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 83, "community_name": "Community 83", "source_file": "gateway/meshnet_gateway/prefill_backpressure.py", "file_type": "code", "degree": 2}, {"id": "gateway_meshnet_gateway_prefill_backpressure_boundedprefillsender_send", "label": ".send()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".send()", "community": 83, "community_name": "Community 83", "source_file": "gateway/meshnet_gateway/prefill_backpressure.py", "file_type": "code", "degree": 6}, {"id": "t", "label": "T", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "T", "community": 83, "community_name": "Community 83", "source_file": "", "file_type": "code", "degree": 1}, {"id": "r", "label": "R", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "R", "community": 83, "community_name": "Community 83", "source_file": "", "file_type": "code", "degree": 1}, {"id": "gateway_meshnet_gateway_prefill_backpressure_py_event", "label": "Event", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Event", "community": 83, "community_name": "Community 83", "source_file": "", "file_type": "code", "degree": 1}, {"id": "gateway_meshnet_gateway_prefill_backpressure_boundedprefillsender_close", "label": ".close()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".close()", "community": 83, "community_name": "Community 83", "source_file": "gateway/meshnet_gateway/prefill_backpressure.py", "file_type": "code", "degree": 3}, {"id": "gateway_meshnet_gateway_prefill_backpressure_positive_env", "label": "_positive_env()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_positive_env()", "community": 77, "community_name": "Community 77", "source_file": "gateway/meshnet_gateway/prefill_backpressure.py", "file_type": "code", "degree": 2}, {"id": "gateway_meshnet_gateway_prefill_backpressure_rationale_1", "label": "Bounded, ordered prefill transfer primitives. Prefill chunks mutate the\u2026", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Bounded, ordered prefill transfer primitives. Prefill chunks mutate the\u2026", "community": 77, "community_name": "Community 77", "source_file": "gateway/meshnet_gateway/prefill_backpressure.py", "file_type": "rationale", "degree": 1}, {"id": "gateway_meshnet_gateway_prefill_backpressure_rationale_28", "label": "Configuration for one ordered prefill seam.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Configuration for one ordered prefill seam.", "community": 77, "community_name": "Community 77", "source_file": "gateway/meshnet_gateway/prefill_backpressure.py", "file_type": "rationale", "degree": 1}, {"id": "gateway_meshnet_gateway_prefill_backpressure_rationale_36", "label": "Current peers require ordered session-cache mutation, hence one ack.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Current peers require ordered session-cache mutation, hence one ack.", "community": 77, "community_name": "Community 77", "source_file": "gateway/meshnet_gateway/prefill_backpressure.py", "file_type": "rationale", "degree": 1}, {"id": "gateway_meshnet_gateway_prefill_backpressure_rationale_41", "label": "Hard accounting bound, including any future wider ack window.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Hard accounting bound, including any future wider ack window.", "community": 77, "community_name": "Community 77", "source_file": "gateway/meshnet_gateway/prefill_backpressure.py", "file_type": "rationale", "degree": 1}, {"id": "gateway_meshnet_gateway_prefill_backpressure_rationale_63", "label": "Send lazily-produced chunks with bounded ownership and ordered acks.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Send lazily-produced chunks with bounded ownership and ordered acks.", "community": 83, "community_name": "Community 83", "source_file": "gateway/meshnet_gateway/prefill_backpressure.py", "file_type": "rationale", "degree": 1}, {"id": "gateway_meshnet_gateway_prefill_backpressure_rationale_81", "label": "Forward chunks in source order, releasing each body after its ack. ``forward``\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Forward chunks in source order, releasing each body after its ack. ``forward``\u2026", "community": 83, "community_name": "Community 83", "source_file": "gateway/meshnet_gateway/prefill_backpressure.py", "file_type": "rationale", "degree": 1}, {"id": "gateway_meshnet_gateway_prefill_backpressure_rationale_115", "label": "Release accounting after cancellation or route failure. The sender deliberately\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Release accounting after cancellation or route failure. The sender deliberately\u2026", "community": 83, "community_name": "Community 83", "source_file": "gateway/meshnet_gateway/prefill_backpressure.py", "file_type": "rationale", "degree": 1}, {"id": "gateway_meshnet_gateway_server", "label": "meshnet_gateway/server.py", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 16.4, "font": {"size": 12, "color": "#ffffff"}, "title": "meshnet_gateway/server.py", "community": 34, "community_name": "Community 34", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 36}, {"id": "gateway_meshnet_gateway_server_binaryactivation", "label": "_BinaryActivation", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_BinaryActivation", "community": 34, "community_name": "Community 34", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 8}, {"id": "gateway_meshnet_gateway_server_gatewayhttpserver", "label": "_GatewayHTTPServer", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_GatewayHTTPServer", "community": 60, "community_name": "Community 60", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 6}, {"id": "gateway_meshnet_gateway_server_gatewayhttpserver_init", "label": ".__init__()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 60, "community_name": "Community 60", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 3}, {"id": "gateway_meshnet_gateway_server_py_any", "label": "Any", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Any", "community": 60, "community_name": "Community 60", "source_file": "", "file_type": "code", "degree": 3}, {"id": "gateway_meshnet_gateway_server_gatewayhandler", "label": "_GatewayHandler", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "_GatewayHandler", "community": 50, "community_name": "Community 50", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 24}, {"id": "gateway_meshnet_gateway_server_gatewayhandler_log_message", "label": ".log_message()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".log_message()", "community": 50, "community_name": "Community 50", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 1}, {"id": "gateway_meshnet_gateway_server_gatewayhandler_do_get", "label": ".do_GET()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".do_GET()", "community": 50, "community_name": "Community 50", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 6}, {"id": "gateway_meshnet_gateway_server_gatewayhandler_do_post", "label": ".do_POST()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".do_POST()", "community": 50, "community_name": "Community 50", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 4}, {"id": "gateway_meshnet_gateway_server_gatewayhandler_send_json", "label": "._send_json()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "._send_json()", "community": 50, "community_name": "Community 50", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 11}, {"id": "gateway_meshnet_gateway_server_gatewayhandler_send_json_error", "label": "._send_json_error()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "._send_json_error()", "community": 50, "community_name": "Community 50", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 11}, {"id": "gateway_meshnet_gateway_server_gatewayhandler_send_openai_error", "label": "._send_openai_error()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._send_openai_error()", "community": 50, "community_name": "Community 50", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 4}, {"id": "gateway_meshnet_gateway_server_gatewayhandler_read_json_body", "label": "._read_json_body()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._read_json_body()", "community": 50, "community_name": "Community 50", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 4}, {"id": "gateway_meshnet_gateway_server_gatewayhandler_handle_health", "label": "._handle_health()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_health()", "community": 50, "community_name": "Community 50", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 3}, {"id": "gateway_meshnet_gateway_server_gatewayhandler_handle_models", "label": "._handle_models()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_models()", "community": 50, "community_name": "Community 50", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 5}, {"id": "gateway_meshnet_gateway_server_gatewayhandler_handle_available_models", "label": "._handle_available_models()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_available_models()", "community": 50, "community_name": "Community 50", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 5}, {"id": "gateway_meshnet_gateway_server_gatewayhandler_handle_wallet_balance", "label": "._handle_wallet_balance()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_wallet_balance()", "community": 50, "community_name": "Community 50", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 6}, {"id": "gateway_meshnet_gateway_server_gatewayhandler_handle_wallet_top_up", "label": "._handle_wallet_top_up()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_wallet_top_up()", "community": 50, "community_name": "Community 50", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 7}, {"id": "gateway_meshnet_gateway_server_gatewayhandler_handle_estimate_cost", "label": "._handle_estimate_cost()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_estimate_cost()", "community": 50, "community_name": "Community 50", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 6}, {"id": "gateway_meshnet_gateway_server_py_parseresult", "label": "ParseResult", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ParseResult", "community": 50, "community_name": "Community 50", "source_file": "", "file_type": "code", "degree": 1}, {"id": "gateway_meshnet_gateway_server_gatewayhandler_handle_chat_completions", "label": "._handle_chat_completions()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_chat_completions()", "community": 50, "community_name": "Community 50", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 9}, {"id": "gateway_meshnet_gateway_server_gatewayhandler_proxy_to_head_worker", "label": "._proxy_to_head_worker()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._proxy_to_head_worker()", "community": 50, "community_name": "Community 50", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 4}, {"id": "gateway_meshnet_gateway_server_gatewayhandler_handle_meshnet_request", "label": "._handle_meshnet_request()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_meshnet_request()", "community": 50, "community_name": "Community 50", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 9}, {"id": "gateway_meshnet_gateway_server_gatewayhandler_build_completion", "label": "._build_completion()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "._build_completion()", "community": 34, "community_name": "Community 34", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 10}, {"id": "gateway_meshnet_gateway_server_gatewayhandler_resolve_route", "label": "._resolve_route()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "._resolve_route()", "community": 86, "community_name": "Community 86", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 9}, {"id": "gateway_meshnet_gateway_server_gatewayhandler_resolve_routes", "label": "._resolve_routes()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "._resolve_routes()", "community": 86, "community_name": "Community 86", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 9}, {"id": "gateway_meshnet_gateway_server_gatewayhandler_record_inference", "label": "._record_inference()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._record_inference()", "community": 34, "community_name": "Community 34", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 4}, {"id": "gateway_meshnet_gateway_server_gatewayhandler_send_sse_response", "label": "._send_sse_response()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._send_sse_response()", "community": 50, "community_name": "Community 50", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 2}, {"id": "gateway_meshnet_gateway_server_safe_error_body", "label": "_safe_error_body()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_safe_error_body()", "community": 86, "community_name": "Community 86", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 4}, {"id": "gateway_meshnet_gateway_server_py_httperror", "label": "HTTPError", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "HTTPError", "community": 86, "community_name": "Community 86", "source_file": "", "file_type": "code", "degree": 1}, {"id": "gateway_meshnet_gateway_server_valid_route_nodes", "label": "_valid_route_nodes()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_valid_route_nodes()", "community": 34, "community_name": "Community 34", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 2}, {"id": "gateway_meshnet_gateway_server_validate_route_payload", "label": "_validate_route_payload()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_validate_route_payload()", "community": 34, "community_name": "Community 34", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 4}, {"id": "gateway_meshnet_gateway_server_banned_route_wallet", "label": "_banned_route_wallet()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_banned_route_wallet()", "community": 86, "community_name": "Community 86", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 4}, {"id": "gateway_meshnet_gateway_server_api_key_from_authorization", "label": "_api_key_from_authorization()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_api_key_from_authorization()", "community": 34, "community_name": "Community 34", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 4}, {"id": "gateway_meshnet_gateway_server_estimate_token_count", "label": "_estimate_token_count()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_estimate_token_count()", "community": 34, "community_name": "Community 34", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 3}, {"id": "gateway_meshnet_gateway_server_lamports_to_sol", "label": "_lamports_to_sol()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_lamports_to_sol()", "community": 50, "community_name": "Community 50", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 3}, {"id": "gateway_meshnet_gateway_server_payment_address_for_api_key", "label": "_payment_address_for_api_key()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_payment_address_for_api_key()", "community": 34, "community_name": "Community 34", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 2}, {"id": "gateway_meshnet_gateway_server_completion_response", "label": "_completion_response()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_completion_response()", "community": 34, "community_name": "Community 34", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 2}, {"id": "gateway_meshnet_gateway_server_majority_response", "label": "_majority_response()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_majority_response()", "community": 34, "community_name": "Community 34", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 2}, {"id": "gateway_meshnet_gateway_server_modelunavailable", "label": "_ModelUnavailable", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_ModelUnavailable", "community": 86, "community_name": "Community 86", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 7}, {"id": "gateway_meshnet_gateway_server_py_exception", "label": "Exception", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Exception", "community": 86, "community_name": "Community 86", "source_file": "", "file_type": "code", "degree": 2}, {"id": "gateway_meshnet_gateway_server_modelunavailable_init", "label": ".__init__()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 60, "community_name": "Community 60", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 2}, {"id": "gateway_meshnet_gateway_server_trackerunavailable", "label": "_TrackerUnavailable", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_TrackerUnavailable", "community": 86, "community_name": "Community 86", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 6}, {"id": "gateway_meshnet_gateway_server_post_json", "label": "_post_json()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_post_json()", "community": 34, "community_name": "Community 34", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 1}, {"id": "gateway_meshnet_gateway_server_last_message_content", "label": "_last_message_content()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_last_message_content()", "community": 34, "community_name": "Community 34", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 2}, {"id": "gateway_meshnet_gateway_server_run_binary_pipeline", "label": "_run_binary_pipeline()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_run_binary_pipeline()", "community": 34, "community_name": "Community 34", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 6}, {"id": "gateway_meshnet_gateway_server_chunk_token_count", "label": "_chunk_token_count()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_chunk_token_count()", "community": 77, "community_name": "Community 77", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 2}, {"id": "gateway_meshnet_gateway_server_prompt_token_count", "label": "_prompt_token_count()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_prompt_token_count()", "community": 34, "community_name": "Community 34", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 2}, {"id": "gateway_meshnet_gateway_server_preferred_binary_encoding", "label": "_preferred_binary_encoding()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_preferred_binary_encoding()", "community": 34, "community_name": "Community 34", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 1}, {"id": "gateway_meshnet_gateway_server_make_stub_binary_activation", "label": "_make_stub_binary_activation()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_make_stub_binary_activation()", "community": 34, "community_name": "Community 34", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 2}, {"id": "gateway_meshnet_gateway_server_post_binary_forward", "label": "_post_binary_forward()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_post_binary_forward()", "community": 34, "community_name": "Community 34", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 6}, {"id": "gateway_meshnet_gateway_server_reassemble_binary_responses", "label": "_reassemble_binary_responses()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_reassemble_binary_responses()", "community": 34, "community_name": "Community 34", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 4}, {"id": "gateway_meshnet_gateway_server_compress_body", "label": "_compress_body()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_compress_body()", "community": 34, "community_name": "Community 34", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 2}, {"id": "gateway_meshnet_gateway_server_decompress_body", "label": "_decompress_body()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_decompress_body()", "community": 34, "community_name": "Community 34", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 2}, {"id": "gateway_meshnet_gateway_server_parse_shape", "label": "_parse_shape()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_parse_shape()", "community": 34, "community_name": "Community 34", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 2}, {"id": "gateway_meshnet_gateway_server_validate_activation_body", "label": "_validate_activation_body()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_validate_activation_body()", "community": 34, "community_name": "Community 34", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 3}, {"id": "gateway_meshnet_gateway_server_stub_response_prefix", "label": "_stub_response_prefix()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_stub_response_prefix()", "community": 34, "community_name": "Community 34", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 3}, {"id": "gateway_meshnet_gateway_server_get_json", "label": "_get_json()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_get_json()", "community": 86, "community_name": "Community 86", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 6}, {"id": "gateway_meshnet_gateway_server_get_head_workers", "label": "_get_head_workers()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_get_head_workers()", "community": 60, "community_name": "Community 60", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 5}, {"id": "gateway_meshnet_gateway_server_gatewayserver", "label": "GatewayServer", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "GatewayServer", "community": 60, "community_name": "Community 60", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 10}, {"id": "gateway_meshnet_gateway_server_gatewayserver_init", "label": ".__init__()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 60, "community_name": "Community 60", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 4}, {"id": "gateway_meshnet_gateway_server_gatewayserver_last_binary_chunk_responses", "label": ".last_binary_chunk_responses()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".last_binary_chunk_responses()", "community": 60, "community_name": "Community 60", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 3}, {"id": "gateway_meshnet_gateway_server_gatewayserver_start", "label": ".start()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".start()", "community": 60, "community_name": "Community 60", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 2}, {"id": "gateway_meshnet_gateway_server_gatewayserver_stop", "label": ".stop()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".stop()", "community": 60, "community_name": "Community 60", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "code", "degree": 1}, {"id": "gateway_meshnet_gateway_server_rationale_1", "label": "Gateway HTTP server \u2014 accepts OpenAI-format requests and routes to inference\u2026", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Gateway HTTP server \u2014 accepts OpenAI-format requests and routes to inference\u2026", "community": 34, "community_name": "Community 34", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "rationale", "degree": 1}, {"id": "gateway_meshnet_gateway_server_rationale_290", "label": "Forward a raw request body to a head worker and relay SSE without buffering.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Forward a raw request body to a head worker and relay SSE without buffering.", "community": 50, "community_name": "Community 50", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "rationale", "degree": 1}, {"id": "gateway_meshnet_gateway_server_rationale_574", "label": "Request-token placeholder until shard nodes return tokenizer usage.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Request-token placeholder until shard nodes return tokenizer usage.", "community": 34, "community_name": "Community 34", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "rationale", "degree": 1}, {"id": "gateway_meshnet_gateway_server_rationale_779", "label": "Validate and concatenate final route chunk responses into one activation body.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Validate and concatenate final route chunk responses into one activation body.", "community": 34, "community_name": "Community 34", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "rationale", "degree": 1}, {"id": "gateway_meshnet_gateway_server_rationale_848", "label": "Return head-worker endpoint URLs for this model, or empty list on failure.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return head-worker endpoint URLs for this model, or empty list on failure.", "community": 60, "community_name": "Community 60", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "rationale", "degree": 1}, {"id": "gateway_meshnet_gateway_server_rationale_859", "label": "HTTP gateway that routes /v1/chat/completions through an ordered inference\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "HTTP gateway that routes /v1/chat/completions through an ordered inference\u2026", "community": 60, "community_name": "Community 60", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "rationale", "degree": 1}, {"id": "gateway_meshnet_gateway_server_rationale_908", "label": "Most recent binary chunk responses returned by the final route node.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Most recent binary chunk responses returned by the final route node.", "community": 60, "community_name": "Community 60", "source_file": "gateway/meshnet_gateway/server.py", "file_type": "rationale", "degree": 1}, {"id": "pkg_meshnet_gateway", "label": "meshnet-gateway", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet-gateway", "community": 117, "community_name": "Community 117", "source_file": "gateway/pyproject.toml", "file_type": "code", "degree": 0}, {"id": "node_meshnet_node_init", "label": "meshnet_node/__init__.py", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet_node/__init__.py", "community": 107, "community_name": "Community 107", "source_file": "node/meshnet_node/__init__.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_init_rationale_1", "label": "meshnet_node \u2014 Distributed Inference Network node client.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet_node \u2014 Distributed Inference Network node client.", "community": 107, "community_name": "Community 107", "source_file": "node/meshnet_node/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_activation_compression", "label": "activation_compression.py", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "activation_compression.py", "community": 27, "community_name": "Community 27", "source_file": "node/meshnet_node/activation_compression.py", "file_type": "code", "degree": 13}, {"id": "node_meshnet_node_activation_compression_compressionpolicy", "label": "CompressionPolicy", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "CompressionPolicy", "community": 27, "community_name": "Community 27", "source_file": "node/meshnet_node/activation_compression.py", "file_type": "code", "degree": 17}, {"id": "node_meshnet_node_activation_compression_compressionresult", "label": "CompressionResult", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CompressionResult", "community": 27, "community_name": "Community 27", "source_file": "node/meshnet_node/activation_compression.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_activation_compression_compressionresult_compressed", "label": ".compressed()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".compressed()", "community": 27, "community_name": "Community 27", "source_file": "node/meshnet_node/activation_compression.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_activation_compression_compressionpolicies", "label": "CompressionPolicies", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "CompressionPolicies", "community": 27, "community_name": "Community 27", "source_file": "node/meshnet_node/activation_compression.py", "file_type": "code", "degree": 17}, {"id": "node_meshnet_node_activation_compression_compressionpolicies_init", "label": ".__init__()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 27, "community_name": "Community 27", "source_file": "node/meshnet_node/activation_compression.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_activation_compression_compressionpolicies_for_condition", "label": ".for_condition()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".for_condition()", "community": 27, "community_name": "Community 27", "source_file": "node/meshnet_node/activation_compression.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_activation_compression_compress_activation", "label": "compress_activation()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "compress_activation()", "community": 27, "community_name": "Community 27", "source_file": "node/meshnet_node/activation_compression.py", "file_type": "code", "degree": 13}, {"id": "node_meshnet_node_activation_compression_decompress_activation", "label": "decompress_activation()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "decompress_activation()", "community": 27, "community_name": "Community 27", "source_file": "node/meshnet_node/activation_compression.py", "file_type": "code", "degree": 10}, {"id": "node_meshnet_node_activation_compression_raw", "label": "_raw()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_raw()", "community": 27, "community_name": "Community 27", "source_file": "node/meshnet_node/activation_compression.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_activation_compression_env_int", "label": "_env_int()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_env_int()", "community": 27, "community_name": "Community 27", "source_file": "node/meshnet_node/activation_compression.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_activation_compression_env_float", "label": "_env_float()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_env_float()", "community": 27, "community_name": "Community 27", "source_file": "node/meshnet_node/activation_compression.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_activation_compression_env_bool", "label": "_env_bool()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_env_bool()", "community": 27, "community_name": "Community 27", "source_file": "node/meshnet_node/activation_compression.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_activation_compression_rationale_1", "label": "Policy-driven zstd compression for activation seam bodies. Policies are\u2026", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Policy-driven zstd compression for activation seam bodies. Policies are\u2026", "community": 27, "community_name": "Community 27", "source_file": "node/meshnet_node/activation_compression.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_activation_compression_rationale_17", "label": "The measurable conditions required before an activation is compressed.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The measurable conditions required before an activation is compressed.", "community": 27, "community_name": "Community 27", "source_file": "node/meshnet_node/activation_compression.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_activation_compression_rationale_53", "label": "Explicit policies for LAN, relay, and benchmark prefill/decode seams. Set\u2026", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Explicit policies for LAN, relay, and benchmark prefill/decode seams. Set\u2026", "community": 27, "community_name": "Community 27", "source_file": "node/meshnet_node/activation_compression.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_activation_compression_rationale_81", "label": "Compress only when zstd clears both configured savings thresholds.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Compress only when zstd clears both configured savings thresholds.", "community": 27, "community_name": "Community 27", "source_file": "node/meshnet_node/activation_compression.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_activation_compression_rationale_108", "label": "Decode a modern zstd body or preserve a legacy raw body with metrics.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Decode a modern zstd body or preserve a legacy raw body with metrics.", "community": 27, "community_name": "Community 27", "source_file": "node/meshnet_node/activation_compression.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_admission", "label": "admission.py", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "admission.py", "community": 68, "community_name": "Community 68", "source_file": "node/meshnet_node/admission.py", "file_type": "code", "degree": 18}, {"id": "node_meshnet_node_admission_capabilityadmissionerror", "label": "CapabilityAdmissionError", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "CapabilityAdmissionError", "community": 68, "community_name": "Community 68", "source_file": "node/meshnet_node/admission.py", "file_type": "code", "degree": 10}, {"id": "node_meshnet_node_admission_py_runtimeerror", "label": "RuntimeError", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "RuntimeError", "community": 68, "community_name": "Community 68", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_admission_capabilityadmissionerror_init", "label": ".__init__()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 68, "community_name": "Community 68", "source_file": "node/meshnet_node/admission.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_admission_capabilitycontext", "label": "CapabilityContext", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "CapabilityContext", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/admission.py", "file_type": "code", "degree": 14}, {"id": "node_meshnet_node_admission_admissionrequirement", "label": "AdmissionRequirement", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "AdmissionRequirement", "community": 68, "community_name": "Community 68", "source_file": "node/meshnet_node/admission.py", "file_type": "code", "degree": 11}, {"id": "node_meshnet_node_admission_admissionrequirement_for_context", "label": ".for_context()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".for_context()", "community": 68, "community_name": "Community 68", "source_file": "node/meshnet_node/admission.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_admission_admissionrequirement_shard_label", "label": ".shard_label()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".shard_label()", "community": 68, "community_name": "Community 68", "source_file": "node/meshnet_node/admission.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_admission_admit", "label": "admit()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "admit()", "community": 68, "community_name": "Community 68", "source_file": "node/meshnet_node/admission.py", "file_type": "code", "degree": 9}, {"id": "node_meshnet_node_admission_mismatch", "label": "_mismatch()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_mismatch()", "community": 68, "community_name": "Community 68", "source_file": "node/meshnet_node/admission.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_admission_diagnostics_suffix", "label": "_diagnostics_suffix()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_diagnostics_suffix()", "community": 68, "community_name": "Community 68", "source_file": "node/meshnet_node/admission.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_admission_probe_capability", "label": "probe_capability()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "probe_capability()", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/admission.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_admission_rationale_1", "label": "Fail-closed admission: no routable registration without a fresh matching proof.\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Fail-closed admission: no routable registration without a fresh matching proof.\u2026", "community": 68, "community_name": "Community 68", "source_file": "node/meshnet_node/admission.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_admission_rationale_45", "label": "This node may not advertise the selection: the proof does not cover it.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "This node may not advertise the selection: the proof does not cover it.", "community": 68, "community_name": "Community 68", "source_file": "node/meshnet_node/admission.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_admission_rationale_54", "label": "What is about to be advertised, and the loaded backend that would serve it.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "What is about to be advertised, and the loaded backend that would serve it.", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/admission.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_admission_rationale_71", "label": "The one capability a report must prove for this node to register.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The one capability a report must prove for this node to register.", "community": 68, "community_name": "Community 68", "source_file": "node/meshnet_node/admission.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_admission_rationale_111", "label": "Return `report` if it admits `requirement`; otherwise refuse to register.\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return `report` if it admits `requirement`; otherwise refuse to register.\u2026", "community": 68, "community_name": "Community 68", "source_file": "node/meshnet_node/admission.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_admission_rationale_217", "label": "Production validator: one bounded real forward through the loaded shard.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Production validator: one bounded real forward through the loaded shard.", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/admission.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_architecture_boundary", "label": "architecture_boundary.py", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "architecture_boundary.py", "community": 41, "community_name": "Community 41", "source_file": "node/meshnet_node/architecture_boundary.py", "file_type": "code", "degree": 15}, {"id": "node_meshnet_node_architecture_boundary_architecture", "label": "Architecture", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Architecture", "community": 41, "community_name": "Community 41", "source_file": "node/meshnet_node/architecture_boundary.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_architecture_boundary_py_str", "label": "str", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "str", "community": 41, "community_name": "Community 41", "source_file": "", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_architecture_boundary_py_enum", "label": "Enum", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Enum", "community": 41, "community_name": "Community 41", "source_file": "", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_architecture_boundary_boundarystage", "label": "BoundaryStage", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "BoundaryStage", "community": 41, "community_name": "Community 41", "source_file": "node/meshnet_node/architecture_boundary.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_architecture_boundary_protocolidentity", "label": "ProtocolIdentity", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ProtocolIdentity", "community": 41, "community_name": "Community 41", "source_file": "node/meshnet_node/architecture_boundary.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_architecture_boundary_samplingparameters", "label": "SamplingParameters", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "SamplingParameters", "community": 41, "community_name": "Community 41", "source_file": "node/meshnet_node/architecture_boundary.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_architecture_boundary_tailoutput", "label": "TailOutput", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "TailOutput", "community": 41, "community_name": "Community 41", "source_file": "node/meshnet_node/architecture_boundary.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_architecture_boundary_tailoutput_sampled_token", "label": ".sampled_token()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".sampled_token()", "community": 41, "community_name": "Community 41", "source_file": "node/meshnet_node/architecture_boundary.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_architecture_boundary_typedtailresult", "label": "TypedTailResult", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "TypedTailResult", "community": 41, "community_name": "Community 41", "source_file": "node/meshnet_node/architecture_boundary.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_architecture_boundary_typedtailresult_sampled_token_id", "label": ".sampled_token_id()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".sampled_token_id()", "community": 41, "community_name": "Community 41", "source_file": "node/meshnet_node/architecture_boundary.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_architecture_boundary_architectureboundaryadapter", "label": "ArchitectureBoundaryAdapter", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ArchitectureBoundaryAdapter", "community": 41, "community_name": "Community 41", "source_file": "node/meshnet_node/architecture_boundary.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_architecture_boundary_architectureboundaryadapter_protocol_architecture", "label": ".protocol_architecture()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".protocol_architecture()", "community": 41, "community_name": "Community 41", "source_file": "node/meshnet_node/architecture_boundary.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_architecture_boundary_architectureboundaryadapter_bundle_from_token_ids", "label": ".bundle_from_token_ids()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".bundle_from_token_ids()", "community": 41, "community_name": "Community 41", "source_file": "node/meshnet_node/architecture_boundary.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_architecture_boundary_architectureboundaryadapter_bundle_from_named_payloads", "label": ".bundle_from_named_payloads()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".bundle_from_named_payloads()", "community": 41, "community_name": "Community 41", "source_file": "node/meshnet_node/architecture_boundary.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_architecture_boundary_architectureboundaryadapter_input_for", "label": ".input_for()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".input_for()", "community": 41, "community_name": "Community 41", "source_file": "node/meshnet_node/architecture_boundary.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_architecture_boundary_architectureboundaryadapter_tail_result", "label": ".tail_result()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".tail_result()", "community": 41, "community_name": "Community 41", "source_file": "node/meshnet_node/architecture_boundary.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_architecture_boundary_adapter_for", "label": "adapter_for()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "adapter_for()", "community": 41, "community_name": "Community 41", "source_file": "node/meshnet_node/architecture_boundary.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_architecture_boundary_rationale_1", "label": "Certified architecture adapters for the public TensorBundle boundary. The\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Certified architecture adapters for the public TensorBundle boundary. The\u2026", "community": 41, "community_name": "Community 41", "source_file": "node/meshnet_node/architecture_boundary.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_architecture_boundary_rationale_97", "label": "Head-only embedding entry point; middle/tail never receive IDs.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Head-only embedding entry point; middle/tail never receive IDs.", "community": 41, "community_name": "Community 41", "source_file": "node/meshnet_node/architecture_boundary.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_architecture_boundary_rationale_128", "label": "Accept architecture state only after the head embedding boundary.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Accept architecture state only after the head embedding boundary.", "community": 41, "community_name": "Community 41", "source_file": "node/meshnet_node/architecture_boundary.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_capability", "label": "meshnet_node/capability.py", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet_node/capability.py", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 24}, {"id": "node_meshnet_node_capability_capabilityreporterror", "label": "CapabilityReportError", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CapabilityReportError", "community": 51, "community_name": "Community 51", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 16}, {"id": "node_meshnet_node_capability_py_valueerror", "label": "ValueError", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ValueError", "community": 51, "community_name": "Community 51", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_capability_secret_env_values", "label": "_secret_env_values()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_secret_env_values()", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_capability_sanitize_diagnostic", "label": "sanitize_diagnostic()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "sanitize_diagnostic()", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_capability_sanitize_diagnostics", "label": "sanitize_diagnostics()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "sanitize_diagnostics()", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_capability_py_any", "label": "Any", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Any", "community": 51, "community_name": "Community 51", "source_file": "", "file_type": "code", "degree": 12}, {"id": "node_meshnet_node_capability_config_fingerprint", "label": "config_fingerprint()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "config_fingerprint()", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_capability_sha256", "label": "_sha256()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_sha256()", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_capability_require_text", "label": "_require_text()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "_require_text()", "community": 51, "community_name": "Community 51", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 11}, {"id": "node_meshnet_node_capability_optional_text", "label": "_optional_text()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_optional_text()", "community": 51, "community_name": "Community 51", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_capability_require_int", "label": "_require_int()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_require_int()", "community": 51, "community_name": "Community 51", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_capability_modelidentity", "label": "ModelIdentity", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ModelIdentity", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_capability_modelidentity_post_init", "label": ".__post_init__()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".__post_init__()", "community": 51, "community_name": "Community 51", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_capability_modelidentity_to_dict", "label": ".to_dict()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_capability_modelidentity_from_dict", "label": ".from_dict()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".from_dict()", "community": 51, "community_name": "Community 51", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_capability_shardrange", "label": "ShardRange", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ShardRange", "community": 51, "community_name": "Community 51", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_capability_shardrange_post_init", "label": ".__post_init__()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".__post_init__()", "community": 51, "community_name": "Community 51", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_capability_shardrange_to_dict", "label": ".to_dict()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 51, "community_name": "Community 51", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_capability_shardrange_from_dict", "label": ".from_dict()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".from_dict()", "community": 51, "community_name": "Community 51", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_capability_recipeidentity", "label": "RecipeIdentity", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "RecipeIdentity", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_capability_recipeidentity_post_init", "label": ".__post_init__()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__post_init__()", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_capability_recipeidentity_to_dict", "label": ".to_dict()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_capability_recipeidentity_from_dict", "label": ".from_dict()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".from_dict()", "community": 51, "community_name": "Community 51", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_capability_backendidentity", "label": "BackendIdentity", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "BackendIdentity", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_capability_backendidentity_post_init", "label": ".__post_init__()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".__post_init__()", "community": 51, "community_name": "Community 51", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_capability_backendidentity_to_dict", "label": ".to_dict()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_capability_backendidentity_from_dict", "label": ".from_dict()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".from_dict()", "community": 51, "community_name": "Community 51", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_capability_as_mapping", "label": "_as_mapping()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_as_mapping()", "community": 51, "community_name": "Community 51", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_capability_capabilityreport", "label": "CapabilityReport", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "CapabilityReport", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 35}, {"id": "node_meshnet_node_capability_capabilityreport_post_init", "label": ".__post_init__()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".__post_init__()", "community": 51, "community_name": "Community 51", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_capability_capabilityreport_passed", "label": ".passed()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".passed()", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_capability_capabilityreport_fingerprint", "label": ".fingerprint()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".fingerprint()", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_capability_capabilityreport_identity_key", "label": ".identity_key()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".identity_key()", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_capability_capabilityreport_age_seconds", "label": ".age_seconds()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".age_seconds()", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_capability_capabilityreport_to_dict", "label": ".to_dict()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_capability_capabilityreport_to_json", "label": ".to_json()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_json()", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_capability_capabilityreport_from_dict", "label": ".from_dict()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".from_dict()", "community": 51, "community_name": "Community 51", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 13}, {"id": "node_meshnet_node_capability_capabilityreport_from_json", "label": ".from_json()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".from_json()", "community": 51, "community_name": "Community 51", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_capability_build_capability_report", "label": "build_capability_report()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "build_capability_report()", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/capability.py", "file_type": "code", "degree": 15}, {"id": "node_meshnet_node_capability_rationale_1", "label": "Model-agnostic node capability report. A capability report is the node's local\u2026", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Model-agnostic node capability report. A capability report is the node's local\u2026", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/capability.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_capability_rationale_64", "label": "Raised when report input is malformed. Messages name the offending field and\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Raised when report input is malformed. Messages name the offending field and\u2026", "community": 51, "community_name": "Community 51", "source_file": "node/meshnet_node/capability.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_capability_rationale_88", "label": "Return `text` with credentials and host identity stripped, clipped to length.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return `text` with credentials and host identity stripped, clipped to length.", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/capability.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_capability_rationale_110", "label": "Sanitize and bound a diagnostics sequence.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Sanitize and bound a diagnostics sequence.", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/capability.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_capability_rationale_140", "label": "Return a stable content hash of a model config mapping. Two nodes that loaded\u2026", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return a stable content hash of a model config mapping. Two nodes that loaded\u2026", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/capability.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_capability_rationale_187", "label": "Which artifact was validated. `model_id` is opaque and preserved verbatim.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Which artifact was validated. `model_id` is opaque and preserved verbatim.", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/capability.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_capability_rationale_219", "label": "Inclusive layer range, matching the CLI and backend convention.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Inclusive layer range, matching the CLI and backend convention.", "community": 51, "community_name": "Community 51", "source_file": "node/meshnet_node/capability.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_capability_rationale_246", "label": "Which recipe, from which catalogue, was exercised.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Which recipe, from which catalogue, was exercised.", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/capability.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_capability_rationale_280", "label": "Which execution stack ran it. All fields are opaque labels, never branches.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Which execution stack ran it. All fields are opaque labels, never branches.", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/capability.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_capability_rationale_335", "label": "One node's validated (or failed) model/shard/recipe/backend combination.\u2026", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "One node's validated (or failed) model/shard/recipe/backend combination.\u2026", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/capability.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_capability_rationale_377", "label": "The exact compatibility fingerprint, when this node declares one.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The exact compatibility fingerprint, when this node declares one.", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/capability.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_capability_rationale_381", "label": "The tuple a consumer must match to reuse this proof. Startup and the tracker\u2026", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The tuple a consumer must match to reuse this proof. Startup and the tracker\u2026", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/capability.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_capability_rationale_490", "label": "Assemble a report from flat validation results. `model_config` may be the\u2026", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Assemble a report from flat validation results. `model_config` may be the\u2026", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/capability.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_cli", "label": "meshnet_node/cli.py", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.4, "font": {"size": 12, "color": "#ffffff"}, "title": "meshnet_node/cli.py", "community": 29, "community_name": "Community 29", "source_file": "node/meshnet_node/cli.py", "file_type": "code", "degree": 30}, {"id": "node_meshnet_node_cli_load_env_file", "label": "_load_env_file()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_load_env_file()", "community": 29, "community_name": "Community 29", "source_file": "node/meshnet_node/cli.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_cli_py_path", "label": "Path", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Path", "community": 29, "community_name": "Community 29", "source_file": "", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_cli_apply_relay_concurrency_flag", "label": "_apply_relay_concurrency_flag()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_apply_relay_concurrency_flag()", "community": 29, "community_name": "Community 29", "source_file": "node/meshnet_node/cli.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_cli_load_env_defaults", "label": "_load_env_defaults()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_load_env_defaults()", "community": 29, "community_name": "Community 29", "source_file": "node/meshnet_node/cli.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_cli_run_node", "label": "_run_node()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_run_node()", "community": 29, "community_name": "Community 29", "source_file": "node/meshnet_node/cli.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_cli_resolve_model_flags", "label": "_resolve_model_flags()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_resolve_model_flags()", "community": 29, "community_name": "Community 29", "source_file": "node/meshnet_node/cli.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_cli_first_available_port", "label": "_first_available_port()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_first_available_port()", "community": 29, "community_name": "Community 29", "source_file": "node/meshnet_node/cli.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_cli_cmd_default", "label": "_cmd_default()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "_cmd_default()", "community": 29, "community_name": "Community 29", "source_file": "node/meshnet_node/cli.py", "file_type": "code", "degree": 10}, {"id": "node_meshnet_node_cli_cmd_models", "label": "_cmd_models()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_cmd_models()", "community": 29, "community_name": "Community 29", "source_file": "node/meshnet_node/cli.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_cli_cmd_config", "label": "_cmd_config()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_cmd_config()", "community": 78, "community_name": "Community 78", "source_file": "node/meshnet_node/cli.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_cli_doctor_overrides", "label": "_doctor_overrides()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_doctor_overrides()", "community": 29, "community_name": "Community 29", "source_file": "node/meshnet_node/cli.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_cli_cmd_doctor", "label": "_cmd_doctor()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_cmd_doctor()", "community": 29, "community_name": "Community 29", "source_file": "node/meshnet_node/cli.py", "file_type": "code", "degree": 12}, {"id": "node_meshnet_node_cli_cmd_start", "label": "_cmd_start()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "_cmd_start()", "community": 29, "community_name": "Community 29", "source_file": "node/meshnet_node/cli.py", "file_type": "code", "degree": 9}, {"id": "node_meshnet_node_cli_main", "label": "main()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 29, "community_name": "Community 29", "source_file": "node/meshnet_node/cli.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_cli_rationale_1", "label": "meshnet-node CLI entry point \u2014 mining-style UX.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet-node CLI entry point \u2014 mining-style UX.", "community": 29, "community_name": "Community 29", "source_file": "node/meshnet_node/cli.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_cli_rationale_14", "label": "Load simple KEY=VALUE pairs from an env file without overriding env vars.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Load simple KEY=VALUE pairs from an env file without overriding env vars.", "community": 29, "community_name": "Community 29", "source_file": "node/meshnet_node/cli.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_cli_rationale_40", "label": "Expose relay bridge worker cap via CLI (env MESHNET_RELAY_CONCURRENCY).", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Expose relay bridge worker cap via CLI (env MESHNET_RELAY_CONCURRENCY).", "community": 29, "community_name": "Community 29", "source_file": "node/meshnet_node/cli.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_cli_rationale_46", "label": "Load machine-specific, local, and user-level node env defaults.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Load machine-specific, local, and user-level node env defaults.", "community": 29, "community_name": "Community 29", "source_file": "node/meshnet_node/cli.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_cli_rationale_58", "label": "Start the node and hand off to the live dashboard. Blocks until Ctrl-C.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Start the node and hand off to the live dashboard. Blocks until Ctrl-C.", "community": 29, "community_name": "Community 29", "source_file": "node/meshnet_node/cli.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_cli_rationale_111", "label": "Return (model_name, hf_repo_or_none) from --model / --model-id flags.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return (model_name, hf_repo_or_none) from --model / --model-id flags.", "community": 29, "community_name": "Community 29", "source_file": "node/meshnet_node/cli.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_cli_rationale_126", "label": "Return the first TCP port bindable on host, starting at start.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return the first TCP port bindable on host, starting at start.", "community": 29, "community_name": "Community 29", "source_file": "node/meshnet_node/cli.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_cli_rationale_139", "label": "No subcommand: wizard if no config, else start with saved config.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "No subcommand: wizard if no config, else start with saved config.", "community": 29, "community_name": "Community 29", "source_file": "node/meshnet_node/cli.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_cli_rationale_208", "label": "List curated models (with optional HF Hub browse).", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "List curated models (with optional HF Hub browse).", "community": 29, "community_name": "Community 29", "source_file": "node/meshnet_node/cli.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_cli_rationale_235", "label": "Print current config.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Print current config.", "community": 78, "community_name": "Community 78", "source_file": "node/meshnet_node/cli.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_cli_rationale_249", "label": "CLI flags that change *what* doctor validates, applied on top of config.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CLI flags that change *what* doctor validates, applied on top of config.", "community": 29, "community_name": "Community 29", "source_file": "node/meshnet_node/cli.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_cli_rationale_272", "label": "Validate the selected model/shard with a bounded real forward.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Validate the selected model/shard with a bounded real forward.", "community": 29, "community_name": "Community 29", "source_file": "node/meshnet_node/cli.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_cli_rationale_328", "label": "Legacy `start` subcommand \u2014 preserves backward compatibility with existing\u2026", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Legacy `start` subcommand \u2014 preserves backward compatibility with existing\u2026", "community": 29, "community_name": "Community 29", "source_file": "node/meshnet_node/cli.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_config", "label": "config.py", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "config.py", "community": 78, "community_name": "Community 78", "source_file": "node/meshnet_node/config.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_config_config_path", "label": "config_path()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "config_path()", "community": 78, "community_name": "Community 78", "source_file": "node/meshnet_node/config.py", "file_type": "code", "degree": 9}, {"id": "node_meshnet_node_config_py_path", "label": "Path", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Path", "community": 78, "community_name": "Community 78", "source_file": "", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_config_load_config", "label": "load_config()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "load_config()", "community": 78, "community_name": "Community 78", "source_file": "node/meshnet_node/config.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_config_save_config", "label": "save_config()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "save_config()", "community": 78, "community_name": "Community 78", "source_file": "node/meshnet_node/config.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_config_delete_config", "label": "delete_config()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "delete_config()", "community": 78, "community_name": "Community 78", "source_file": "node/meshnet_node/config.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_config_merge_cli_overrides", "label": "merge_cli_overrides()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "merge_cli_overrides()", "community": 29, "community_name": "Community 29", "source_file": "node/meshnet_node/config.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_config_rationale_1", "label": "Persistent node configuration \u2014 stored in ~/.config/meshnet/config.json.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Persistent node configuration \u2014 stored in ~/.config/meshnet/config.json.", "community": 78, "community_name": "Community 78", "source_file": "node/meshnet_node/config.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_config_rationale_44", "label": "Return parsed config dict, or None if no config file exists.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return parsed config dict, or None if no config file exists.", "community": 78, "community_name": "Community 78", "source_file": "node/meshnet_node/config.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_config_rationale_58", "label": "Write config to disk with restricted permissions (0o600).", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Write config to disk with restricted permissions (0o600).", "community": 78, "community_name": "Community 78", "source_file": "node/meshnet_node/config.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_config_rationale_75", "label": "Return a copy of cfg with any non-None CLI values applied on top.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return a copy of cfg with any non-None CLI values applied on top.", "community": 29, "community_name": "Community 29", "source_file": "node/meshnet_node/config.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_dashboard", "label": "dashboard.py", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "dashboard.py", "community": 37, "community_name": "Community 37", "source_file": "node/meshnet_node/dashboard.py", "file_type": "code", "degree": 12}, {"id": "node_meshnet_node_dashboard_is_interactive_tty", "label": "is_interactive_tty()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "is_interactive_tty()", "community": 37, "community_name": "Community 37", "source_file": "node/meshnet_node/dashboard.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_dashboard_format_uptime", "label": "_format_uptime()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_format_uptime()", "community": 37, "community_name": "Community 37", "source_file": "node/meshnet_node/dashboard.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_dashboard_gpu_stats", "label": "_gpu_stats()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_gpu_stats()", "community": 37, "community_name": "Community 37", "source_file": "node/meshnet_node/dashboard.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_dashboard_nvml_gpu_util", "label": "_nvml_gpu_util()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_nvml_gpu_util()", "community": 37, "community_name": "Community 37", "source_file": "node/meshnet_node/dashboard.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_dashboard_ema", "label": "_EMA", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_EMA", "community": 37, "community_name": "Community 37", "source_file": "node/meshnet_node/dashboard.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_dashboard_ema_init", "label": ".__init__()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 37, "community_name": "Community 37", "source_file": "node/meshnet_node/dashboard.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_dashboard_ema_update", "label": ".update()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 37, "community_name": "Community 37", "source_file": "node/meshnet_node/dashboard.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_dashboard_ema_value", "label": ".value()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".value()", "community": 37, "community_name": "Community 37", "source_file": "node/meshnet_node/dashboard.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_dashboard_make_bar", "label": "_make_bar()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_make_bar()", "community": 37, "community_name": "Community 37", "source_file": "node/meshnet_node/dashboard.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_dashboard_node_stats", "label": "_node_stats()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_node_stats()", "community": 37, "community_name": "Community 37", "source_file": "node/meshnet_node/dashboard.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_dashboard_run_dashboard", "label": "run_dashboard()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "run_dashboard()", "community": 37, "community_name": "Community 37", "source_file": "node/meshnet_node/dashboard.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_dashboard_build_rich_renderable", "label": "_build_rich_renderable()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_build_rich_renderable()", "community": 37, "community_name": "Community 37", "source_file": "node/meshnet_node/dashboard.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_dashboard_run_rich_dashboard", "label": "_run_rich_dashboard()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_run_rich_dashboard()", "community": 37, "community_name": "Community 37", "source_file": "node/meshnet_node/dashboard.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_dashboard_run_plain_loop", "label": "_run_plain_loop()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_run_plain_loop()", "community": 37, "community_name": "Community 37", "source_file": "node/meshnet_node/dashboard.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_dashboard_rationale_1", "label": "Live node status dashboard \u2014 rich TUI with plain-text fallback.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Live node status dashboard \u2014 rich TUI with plain-text fallback.", "community": 37, "community_name": "Community 37", "source_file": "node/meshnet_node/dashboard.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_dashboard_rationale_15", "label": "Return True when stdout is a real terminal (not CI / redirected / WSL2 dumb).", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return True when stdout is a real terminal (not CI / redirected / WSL2 dumb).", "community": 37, "community_name": "Community 37", "source_file": "node/meshnet_node/dashboard.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_dashboard_rationale_32", "label": "Return per-GPU utilization and VRAM stats, or empty list on CPU.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return per-GPU utilization and VRAM stats, or empty list on CPU.", "community": 37, "community_name": "Community 37", "source_file": "node/meshnet_node/dashboard.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_dashboard_rationale_60", "label": "Return GPU utilization % via pynvml, or None if unavailable.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return GPU utilization % via pynvml, or None if unavailable.", "community": 37, "community_name": "Community 37", "source_file": "node/meshnet_node/dashboard.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_dashboard_rationale_73", "label": "Exponential moving average for tokens/sec.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Exponential moving average for tokens/sec.", "community": 37, "community_name": "Community 37", "source_file": "node/meshnet_node/dashboard.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_dashboard_rationale_110", "label": "Start the live dashboard. Blocks until Ctrl-C. Returns cleanly.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Start the live dashboard. Blocks until Ctrl-C. Returns cleanly.", "community": 37, "community_name": "Community 37", "source_file": "node/meshnet_node/dashboard.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_doctor", "label": "doctor.py", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 18.6, "font": {"size": 12, "color": "#ffffff"}, "title": "doctor.py", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 48}, {"id": "node_meshnet_node_doctor_doctorerror", "label": "DoctorError", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DoctorError", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 20}, {"id": "node_meshnet_node_doctor_py_runtimeerror", "label": "RuntimeError", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "RuntimeError", "community": 11, "community_name": "Node Diagnostics", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_doctor_doctorerror_init", "label": ".__init__()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_doctor_doctorerror_hint", "label": ".hint()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".hint()", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_doctor_doctorselection", "label": "DoctorSelection", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.5, "font": {"size": 0, "color": "#ffffff"}, "title": "DoctorSelection", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 25}, {"id": "node_meshnet_node_doctor_doctorselection_shard_label", "label": ".shard_label()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".shard_label()", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_doctor_reciperesult", "label": "RecipeResult", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "RecipeResult", "community": 23, "community_name": "Community 23", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 15}, {"id": "node_meshnet_node_doctor_reciperesult_passed", "label": ".passed()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".passed()", "community": 23, "community_name": "Community 23", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_doctor_reciperesult_hint", "label": ".hint()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".hint()", "community": 23, "community_name": "Community 23", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_doctor_doctorresult", "label": "DoctorResult", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "DoctorResult", "community": 79, "community_name": "Community 79", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 16}, {"id": "node_meshnet_node_doctor_doctorresult_passed", "label": ".passed()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".passed()", "community": 79, "community_name": "Community 79", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_doctor_doctorresult_reports", "label": ".reports()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".reports()", "community": 79, "community_name": "Community 79", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_doctor_doctorresult_exit_code", "label": ".exit_code()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".exit_code()", "community": 79, "community_name": "Community 79", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_doctor_resolve_selection", "label": "resolve_selection()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "resolve_selection()", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 9}, {"id": "node_meshnet_node_doctor_py_any", "label": "Any", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Any", "community": 11, "community_name": "Node Diagnostics", "source_file": "", "file_type": "code", "degree": 10}, {"id": "node_meshnet_node_doctor_py_path", "label": "Path", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Path", "community": 79, "community_name": "Community 79", "source_file": "", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_doctor_selected_model_id", "label": "_selected_model_id()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_selected_model_id()", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_doctor_detect_layers", "label": "_detect_layers()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_detect_layers()", "community": 79, "community_name": "Community 79", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_doctor_probeinput", "label": "ProbeInput", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ProbeInput", "community": 23, "community_name": "Community 23", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 12}, {"id": "node_meshnet_node_doctor_int64_header", "label": "_int64_header()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_int64_header()", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_doctor_build_probe_input", "label": "build_probe_input()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "build_probe_input()", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_doctor_probe_forward", "label": "probe_forward()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "probe_forward()", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_doctor_describe_output", "label": "_describe_output()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_describe_output()", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_doctor_default_load_backend", "label": "default_load_backend()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "default_load_backend()", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_doctor_select_recipes", "label": "select_recipes()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "select_recipes()", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_doctor_run_doctor", "label": "run_doctor()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "run_doctor()", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 12}, {"id": "node_meshnet_node_doctor_validate_loaded_backend", "label": "validate_loaded_backend()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "validate_loaded_backend()", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 10}, {"id": "node_meshnet_node_doctor_validate_recipe", "label": "_validate_recipe()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_validate_recipe()", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 16}, {"id": "node_meshnet_node_doctor_classify_failure", "label": "classify_failure()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "classify_failure()", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_doctor_py_baseexception", "label": "BaseException", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "BaseException", "community": 11, "community_name": "Node Diagnostics", "source_file": "", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_doctor_describe", "label": "_describe()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_describe()", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_doctor_backend_device", "label": "_backend_device()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_backend_device()", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_doctor_backend_device_name", "label": "_backend_device_name()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_backend_device_name()", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_doctor_model_config", "label": "_model_config()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_model_config()", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_doctor_runtime_versions", "label": "_runtime_versions()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_runtime_versions()", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_doctor_default_report_path", "label": "default_report_path()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "default_report_path()", "community": 29, "community_name": "Community 29", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_doctor_write_reports", "label": "write_reports()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "write_reports()", "community": 79, "community_name": "Community 79", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_doctor_render_result", "label": "render_result()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "render_result()", "community": 79, "community_name": "Community 79", "source_file": "node/meshnet_node/doctor.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_doctor_rationale_1", "label": "`meshnet-node doctor` \u2014 prove the selected shard actually runs. The doctor\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "`meshnet-node doctor` \u2014 prove the selected shard actually runs. The doctor\u2026", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_doctor_rationale_100", "label": "A validation failure with an operator-facing category and hint.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "A validation failure with an operator-facing category and hint.", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_doctor_rationale_113", "label": "The one model/shard/config combination startup would load.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The one model/shard/config combination startup would load.", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_doctor_rationale_129", "label": "One recipe's validation outcome, with the report it produced.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "One recipe's validation outcome, with the report it produced.", "community": 23, "community_name": "Community 23", "source_file": "node/meshnet_node/doctor.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_doctor_rationale_147", "label": "The outcome of a doctor run over one or more recipes.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The outcome of a doctor run over one or more recipes.", "community": 79, "community_name": "Community 79", "source_file": "node/meshnet_node/doctor.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_doctor_rationale_173", "label": "Resolve config + flags into the selection startup would load. This mirrors\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Resolve config + flags into the selection startup would load. This mirrors\u2026", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_doctor_rationale_222", "label": "The HF repo startup would load, resolving a catalog alias if needed.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The HF repo startup would load, resolving a catalog alias if needed.", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_doctor_rationale_248", "label": "A synthetic hidden-state payload in the same wire format peers send.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "A synthetic hidden-state payload in the same wire format peers send.", "community": 23, "community_name": "Community 23", "source_file": "node/meshnet_node/doctor.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_doctor_rationale_257", "label": "Encode an int64 tensor as `shape:base64`, matching the backend's format.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Encode an int64 tensor as `shape:base64`, matching the backend's format.", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_doctor_rationale_265", "label": "Build a bounded mid-shard probe: `tokens` positions of bfloat16 zeros. Zeros\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Build a bounded mid-shard probe: `tokens` positions of bfloat16 zeros. Zeros\u2026", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_doctor_rationale_287", "label": "Run one bounded real forward through the shard `backend` holds. Returns a small\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Run one bounded real forward through the shard `backend` holds. Returns a small\u2026", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_doctor_rationale_330", "label": "Validate the forward produced real output, and summarize it.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Validate the forward produced real output, and summarize it.", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_doctor_rationale_357", "label": "Load the shard through the exact path startup uses.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Load the shard through the exact path startup uses.", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_doctor_rationale_377", "label": "The recipes to validate: the selected one, or every one on request. `--all-\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The recipes to validate: the selected one, or every one on request. `--all-\u2026", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_doctor_rationale_404", "label": "Validate the selection, one bounded real forward per recipe. Never raises for a\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Validate the selection, one bounded real forward per recipe. Never raises for a\u2026", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_doctor_rationale_430", "label": "Validate a shard that is already loaded, without loading it a second time.\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Validate a shard that is already loaded, without loading it a second time.\u2026", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_doctor_rationale_517", "label": "Map a backend exception to an operator-facing category. Matches on the\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Map a backend exception to an operator-facing category. Matches on the\u2026", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_doctor_rationale_544", "label": "A one-line, traceback-free description. Sanitized by the report.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "A one-line, traceback-free description. Sanitized by the report.", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_doctor_rationale_558", "label": "The accelerator's name, when the shard actually landed on one.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The accelerator's name, when the shard actually landed on one.", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_doctor_rationale_570", "label": "The loaded model's config, for the report's fingerprint.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The loaded model's config, for the report's fingerprint.", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_doctor_rationale_582", "label": "Versions of the stack that ran the forward \u2014 opaque labels, never branches.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Versions of the stack that ran the forward \u2014 opaque labels, never branches.", "community": 11, "community_name": "Node Diagnostics", "source_file": "node/meshnet_node/doctor.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_doctor_rationale_607", "label": "Write the capability report(s) as JSON. A failed run writes too.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Write the capability report(s) as JSON. A failed run writes too.", "community": 79, "community_name": "Community 79", "source_file": "node/meshnet_node/doctor.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_doctor_rationale_622", "label": "The human summary: what was validated, what to do if it failed.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The human summary: what was validated, what to do if it failed.", "community": 79, "community_name": "Community 79", "source_file": "node/meshnet_node/doctor.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_downloader", "label": "downloader.py", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "downloader.py", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "code", "degree": 23}, {"id": "node_meshnet_node_downloader_compute_shard_checksum", "label": "compute_shard_checksum()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "compute_shard_checksum()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_downloader_py_path", "label": "Path", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Path", "community": 3, "community_name": "Shard Artifact Download", "source_file": "", "file_type": "code", "degree": 15}, {"id": "node_meshnet_node_downloader_write_shard_archive", "label": "write_shard_archive()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "write_shard_archive()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_downloader_py_any", "label": "Any", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Any", "community": 3, "community_name": "Shard Artifact Download", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_downloader_safe_extract_shard", "label": "_safe_extract_shard()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_safe_extract_shard()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_downloader_peer_download_url", "label": "_peer_download_url()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_peer_download_url()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_downloader_download_shard_from_peer", "label": "_download_shard_from_peer()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_download_shard_from_peer()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_downloader_taronlysource", "label": "_TarOnlySource", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_TarOnlySource", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_downloader_py_exception", "label": "Exception", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Exception", "community": 3, "community_name": "Shard Artifact Download", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_downloader_fetch_source_file", "label": "_fetch_source_file()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_fetch_source_file()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_downloader_sourceprogress", "label": "_SourceProgress", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "_SourceProgress", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "code", "degree": 9}, {"id": "node_meshnet_node_downloader_sourceprogress_init", "label": ".__init__()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_downloader_sourceprogress_add_bytes", "label": ".add_bytes()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".add_bytes()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_downloader_sourceprogress_rewind", "label": ".rewind()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".rewind()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_downloader_sourceprogress_file_done", "label": ".file_done()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".file_done()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_downloader_sourceprogress_message", "label": ".message()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".message()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_downloader_sourceprogress_close", "label": ".close()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".close()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_downloader_reuse_local_file", "label": "_reuse_local_file()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_reuse_local_file()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_downloader_valid_source_rel_files", "label": "_valid_source_rel_files()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_valid_source_rel_files()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_downloader_source_files_cached", "label": "_source_files_cached()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_source_files_cached()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_downloader_merge_tree", "label": "_merge_tree()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_merge_tree()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_downloader_download_source_files", "label": "_download_source_files()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_download_source_files()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "code", "degree": 14}, {"id": "node_meshnet_node_downloader_download_model_source", "label": "_download_model_source()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_download_model_source()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_downloader_download_huggingface_subset", "label": "_download_huggingface_subset()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_download_huggingface_subset()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_downloader_allow_patterns_from_sources", "label": "_allow_patterns_from_sources()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_allow_patterns_from_sources()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_downloader_allow_patterns_from_remote_index", "label": "_allow_patterns_from_remote_index()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_allow_patterns_from_remote_index()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_downloader_download_shard", "label": "download_shard()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "download_shard()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "code", "degree": 11}, {"id": "node_meshnet_node_downloader_rationale_1", "label": "Shard downloader \u2014 fetches model files from peers, tracker sources, or\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Shard downloader \u2014 fetches model files from peers, tracker sources, or\u2026", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_downloader_rationale_32", "label": "Return a stable SHA256 checksum for all regular files in a shard.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return a stable SHA256 checksum for all regular files in a shard.", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_downloader_rationale_46", "label": "Write a tar archive for *shard_dir* to a binary file-like object.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Write a tar archive for *shard_dir* to a binary file-like object.", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_downloader_rationale_116", "label": "The server ignored ?file= and streamed a tar \u2014 no single-file support.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The server ignored ?file= and streamed a tar \u2014 no single-file support.", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_downloader_rationale_125", "label": "Download one file; skip if *dest* already matches the remote size. Returns the\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Download one file; skip if *dest* already matches the remote size. Returns the\u2026", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_downloader_rationale_156", "label": "tqdm bar over the whole per-file download (total / speed / ETA), falling back\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "tqdm bar over the whole per-file download (total / speed / ETA), falling back\u2026", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_downloader_rationale_182", "label": "Roll the bar back after a failed attempt so retries don't double-count.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Roll the bar back after a failed attempt so retries don't double-count.", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_downloader_rationale_206", "label": "Reuse an already-complete copy of a file instead of re-downloading.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Reuse an already-complete copy of a file instead of re-downloading.", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_downloader_rationale_257", "label": "Per-file download from a model source \u2014 retries and resumes per file. Far more\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Per-file download from a model source \u2014 retries and resumes per file. Far more\u2026", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_downloader_rationale_408", "label": "Fetch just the SafeTensors index + config (a few KB) from HF and compute which\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Fetch just the SafeTensors index + config (a few KB) from HF and compute which\u2026", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_downloader_rationale_454", "label": "Ensure the shard is present in *cache_dir* and return its local path. When\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Ensure the shard is present in *cache_dir* and return its local path. When\u2026", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/downloader.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_init", "label": "glm_alpha/__init__.py", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "glm_alpha/__init__.py", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/__init__.py", "file_type": "code", "degree": 32}, {"id": "node_meshnet_node_glm_alpha_init_load_locked_target", "label": "load_locked_target()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "load_locked_target()", "community": 35, "community_name": "Community 35", "source_file": "node/meshnet_node/glm_alpha/__init__.py", "file_type": "code", "degree": 11}, {"id": "node_meshnet_node_glm_alpha_init_rationale_1", "label": "The locked GLM-5.2 Max alpha target: identity, resource plan, and acceptance\u2026", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The locked GLM-5.2 Max alpha target: identity, resource plan, and acceptance\u2026", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_init_rationale_71", "label": "Load and cross-bind the packaged alpha contract, manifest, and snapshot.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Load and cross-bind the packaged alpha contract, manifest, and snapshot.", "community": 35, "community_name": "Community 35", "source_file": "node/meshnet_node/glm_alpha/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_contract", "label": "contract.py", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "contract.py", "community": 35, "community_name": "Community 35", "source_file": "node/meshnet_node/glm_alpha/contract.py", "file_type": "code", "degree": 17}, {"id": "node_meshnet_node_glm_alpha_contract_alphacontracterror", "label": "AlphaContractError", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "AlphaContractError", "community": 35, "community_name": "Community 35", "source_file": "node/meshnet_node/glm_alpha/contract.py", "file_type": "code", "degree": 11}, {"id": "node_meshnet_node_glm_alpha_contract_contract_signing_payload", "label": "contract_signing_payload()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "contract_signing_payload()", "community": 35, "community_name": "Community 35", "source_file": "node/meshnet_node/glm_alpha/contract.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_glm_alpha_contract_py_any", "label": "Any", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Any", "community": 35, "community_name": "Community 35", "source_file": "", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_glm_alpha_contract_compute_contract_digest", "label": "compute_contract_digest()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "compute_contract_digest()", "community": 35, "community_name": "Community 35", "source_file": "node/meshnet_node/glm_alpha/contract.py", "file_type": "code", "degree": 9}, {"id": "node_meshnet_node_glm_alpha_contract_freeze_json", "label": "_freeze_json()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_freeze_json()", "community": 35, "community_name": "Community 35", "source_file": "node/meshnet_node/glm_alpha/contract.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_glm_alpha_contract_thaw_json", "label": "_thaw_json()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_thaw_json()", "community": 35, "community_name": "Community 35", "source_file": "node/meshnet_node/glm_alpha/contract.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_glm_alpha_contract_alphacontract", "label": "AlphaContract", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AlphaContract", "community": 35, "community_name": "Community 35", "source_file": "node/meshnet_node/glm_alpha/contract.py", "file_type": "code", "degree": 13}, {"id": "node_meshnet_node_glm_alpha_contract_alphacontract_section", "label": ".section()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".section()", "community": 35, "community_name": "Community 35", "source_file": "node/meshnet_node/glm_alpha/contract.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_glm_alpha_contract_alphacontract_threshold", "label": ".threshold()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".threshold()", "community": 35, "community_name": "Community 35", "source_file": "node/meshnet_node/glm_alpha/contract.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_glm_alpha_contract_alphacontract_to_dict", "label": ".to_dict()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 35, "community_name": "Community 35", "source_file": "node/meshnet_node/glm_alpha/contract.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_glm_alpha_contract_parse_alpha_contract", "label": "parse_alpha_contract()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "parse_alpha_contract()", "community": 35, "community_name": "Community 35", "source_file": "node/meshnet_node/glm_alpha/contract.py", "file_type": "code", "degree": 9}, {"id": "node_meshnet_node_glm_alpha_contract_require_contract_target", "label": "require_contract_target()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "require_contract_target()", "community": 35, "community_name": "Community 35", "source_file": "node/meshnet_node/glm_alpha/contract.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_glm_alpha_contract_load_alpha_contract", "label": "load_alpha_contract()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "load_alpha_contract()", "community": 35, "community_name": "Community 35", "source_file": "node/meshnet_node/glm_alpha/contract.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_glm_alpha_contract_py_path", "label": "Path", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Path", "community": 35, "community_name": "Community 35", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_contract_seal_contract", "label": "seal_contract()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "seal_contract()", "community": 35, "community_name": "Community 35", "source_file": "node/meshnet_node/glm_alpha/contract.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_glm_alpha_contract_rationale_1", "label": "The immutable GLM-5.2 Max alpha acceptance contract. The contract exists to\u2026", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The immutable GLM-5.2 Max alpha acceptance contract. The contract exists to\u2026", "community": 35, "community_name": "Community 35", "source_file": "node/meshnet_node/glm_alpha/contract.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_contract_rationale_64", "label": "Raised when the alpha contract is missing, malformed, or has been mutated.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Raised when the alpha contract is missing, malformed, or has been mutated.", "community": 35, "community_name": "Community 35", "source_file": "node/meshnet_node/glm_alpha/contract.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_contract_rationale_68", "label": "The contract content the digest covers: everything except the digest itself.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The contract content the digest covers: everything except the digest itself.", "community": 35, "community_name": "Community 35", "source_file": "node/meshnet_node/glm_alpha/contract.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_contract_rationale_75", "label": "SHA-256 over the canonical contract content.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SHA-256 over the canonical contract content.", "community": 35, "community_name": "Community 35", "source_file": "node/meshnet_node/glm_alpha/contract.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_contract_rationale_97", "label": "A locked, digest-bound alpha acceptance contract.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "A locked, digest-bound alpha acceptance contract.", "community": 35, "community_name": "Community 35", "source_file": "node/meshnet_node/glm_alpha/contract.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_contract_rationale_131", "label": "Validate a contract document and verify it has not been mutated since locking.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Validate a contract document and verify it has not been mutated since locking.", "community": 35, "community_name": "Community 35", "source_file": "node/meshnet_node/glm_alpha/contract.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_contract_rationale_280", "label": "Bind the sealed contract to the exact manifest and architecture snapshot.\u2026", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Bind the sealed contract to the exact manifest and architecture snapshot.\u2026", "community": 35, "community_name": "Community 35", "source_file": "node/meshnet_node/glm_alpha/contract.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_contract_rationale_320", "label": "Load the packaged alpha contract, or one at ``path``.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Load the packaged alpha contract, or one at ``path``.", "community": 35, "community_name": "Community 35", "source_file": "node/meshnet_node/glm_alpha/contract.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_contract_rationale_351", "label": "Return the document with a freshly computed digest. This is the only supported\u2026", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return the document with a freshly computed digest. This is the only supported\u2026", "community": 35, "community_name": "Community 35", "source_file": "node/meshnet_node/glm_alpha/contract.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_manifest", "label": "manifest.py", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "manifest.py", "community": 42, "community_name": "Community 42", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "code", "degree": 22}, {"id": "node_meshnet_node_glm_alpha_manifest_glmtargeterror", "label": "GlmTargetError", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "GlmTargetError", "community": 42, "community_name": "Community 42", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "code", "degree": 21}, {"id": "node_meshnet_node_glm_alpha_manifest_py_valueerror", "label": "ValueError", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ValueError", "community": 42, "community_name": "Community 42", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_manifest_canonical_sha256", "label": "canonical_sha256()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "canonical_sha256()", "community": 97, "community_name": "Community 97", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_glm_alpha_manifest_py_any", "label": "Any", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Any", "community": 42, "community_name": "Community 42", "source_file": "", "file_type": "code", "degree": 11}, {"id": "node_meshnet_node_glm_alpha_manifest_require_mapping", "label": "_require_mapping()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_require_mapping()", "community": 42, "community_name": "Community 42", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_glm_alpha_manifest_require_text", "label": "_require_text()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_require_text()", "community": 42, "community_name": "Community 42", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_glm_alpha_manifest_require_int", "label": "_require_int()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_require_int()", "community": 42, "community_name": "Community 42", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_glm_alpha_manifest_require_sha256", "label": "_require_sha256()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_require_sha256()", "community": 42, "community_name": "Community 42", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_glm_alpha_manifest_require_revision", "label": "_require_revision()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_require_revision()", "community": 42, "community_name": "Community 42", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_glm_alpha_manifest_shard", "label": "Shard", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Shard", "community": 80, "community_name": "Community 80", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_glm_alpha_manifest_shard_to_dict", "label": ".to_dict()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 80, "community_name": "Community 80", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_manifest_targetmanifest", "label": "TargetManifest", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.5, "font": {"size": 0, "color": "#ffffff"}, "title": "TargetManifest", "community": 80, "community_name": "Community 80", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "code", "degree": 25}, {"id": "node_meshnet_node_glm_alpha_manifest_targetmanifest_total_gib", "label": ".total_gib()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".total_gib()", "community": 80, "community_name": "Community 80", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_manifest_targetmanifest_total_gb", "label": ".total_gb()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".total_gb()", "community": 80, "community_name": "Community 80", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_manifest_targetmanifest_shard", "label": ".shard()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".shard()", "community": 80, "community_name": "Community 80", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_glm_alpha_manifest_targetmanifest_digest", "label": ".digest()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".digest()", "community": 97, "community_name": "Community 97", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_glm_alpha_manifest_targetmanifest_to_dict", "label": ".to_dict()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 80, "community_name": "Community 80", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_manifest_parse_shards", "label": "_parse_shards()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "_parse_shards()", "community": 42, "community_name": "Community 42", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "code", "degree": 9}, {"id": "node_meshnet_node_glm_alpha_manifest_parse_target_manifest", "label": "parse_target_manifest()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "parse_target_manifest()", "community": 42, "community_name": "Community 42", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "code", "degree": 12}, {"id": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot", "label": "ArchitectureSnapshot", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.6, "font": {"size": 12, "color": "#ffffff"}, "title": "ArchitectureSnapshot", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "code", "degree": 26}, {"id": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot_getitem", "label": ".__getitem__()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".__getitem__()", "community": 42, "community_name": "Community 42", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot_digest", "label": ".digest()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".digest()", "community": 97, "community_name": "Community 97", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot_file_sha256", "label": ".file_sha256()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".file_sha256()", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot_to_dict", "label": ".to_dict()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_manifest_parse_architecture_snapshot", "label": "parse_architecture_snapshot()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "parse_architecture_snapshot()", "community": 42, "community_name": "Community 42", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "code", "degree": 12}, {"id": "node_meshnet_node_glm_alpha_manifest_read_resource", "label": "_read_resource()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_read_resource()", "community": 42, "community_name": "Community 42", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_glm_alpha_manifest_py_path", "label": "Path", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Path", "community": 42, "community_name": "Community 42", "source_file": "", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_glm_alpha_manifest_load_json", "label": "_load_json()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_load_json()", "community": 42, "community_name": "Community 42", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_glm_alpha_manifest_load_target_manifest", "label": "load_target_manifest()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "load_target_manifest()", "community": 42, "community_name": "Community 42", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_glm_alpha_manifest_load_architecture_snapshot", "label": "load_architecture_snapshot()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "load_architecture_snapshot()", "community": 42, "community_name": "Community 42", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_glm_alpha_manifest_require_pinned_target", "label": "require_pinned_target()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "require_pinned_target()", "community": 80, "community_name": "Community 80", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_glm_alpha_manifest_rationale_1", "label": "The pinned GLM-5.2 Max target manifest and architecture snapshot. This module\u2026", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The pinned GLM-5.2 Max target manifest and architecture snapshot. This module\u2026", "community": 42, "community_name": "Community 42", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_manifest_rationale_47", "label": "Raised when the target manifest or architecture snapshot is not the pinned\u2026", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Raised when the target manifest or architecture snapshot is not the pinned\u2026", "community": 42, "community_name": "Community 42", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_manifest_rationale_51", "label": "SHA-256 over canonical JSON \u2014 the repository's digest convention.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SHA-256 over canonical JSON \u2014 the repository's digest convention.", "community": 97, "community_name": "Community 97", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_manifest_rationale_95", "label": "One GGUF shard of the alpha artifact.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "One GGUF shard of the alpha artifact.", "community": 80, "community_name": "Community 80", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_manifest_rationale_115", "label": "The pinned, self-consistent GLM-5.2 ``UD-IQ1_S`` target.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The pinned, self-consistent GLM-5.2 ``UD-IQ1_S`` target.", "community": 80, "community_name": "Community 80", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_manifest_rationale_148", "label": "Stable identity of this manifest, for the DGR-003 runtime recipe.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Stable identity of this manifest, for the DGR-003 runtime recipe.", "community": 97, "community_name": "Community 97", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_manifest_rationale_212", "label": "Validate an already-decoded target manifest, failing closed.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Validate an already-decoded target manifest, failing closed.", "community": 42, "community_name": "Community 42", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_manifest_rationale_270", "label": "Architecture-critical metadata derived from the pinned ``config.json``.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Architecture-critical metadata derived from the pinned ``config.json``.", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_manifest_rationale_327", "label": "Validate an architecture snapshot and its internal arithmetic.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Validate an architecture snapshot and its internal arithmetic.", "community": 42, "community_name": "Community 42", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_manifest_rationale_452", "label": "Load the packaged target manifest, or one at ``path``.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Load the packaged target manifest, or one at ``path``.", "community": 42, "community_name": "Community 42", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_manifest_rationale_458", "label": "Load the packaged architecture snapshot, or one at ``path``.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Load the packaged architecture snapshot, or one at ``path``.", "community": 42, "community_name": "Community 42", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_manifest_rationale_470", "label": "Reject any target whose revisions are not the ones alpha was locked against.\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Reject any target whose revisions are not the ones alpha was locked against.\u2026", "community": 80, "community_name": "Community 80", "source_file": "node/meshnet_node/glm_alpha/manifest.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_planner", "label": "planner.py", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "planner.py", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "code", "degree": 15}, {"id": "node_meshnet_node_glm_alpha_planner_resourceplanerror", "label": "ResourcePlanError", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ResourcePlanError", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "code", "degree": 12}, {"id": "node_meshnet_node_glm_alpha_planner_py_valueerror", "label": "ValueError", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ValueError", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_planner_nodememory", "label": "NodeMemory", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "NodeMemory", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "code", "degree": 11}, {"id": "node_meshnet_node_glm_alpha_planner_nodememory_post_init", "label": ".__post_init__()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__post_init__()", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_glm_alpha_planner_nodememory_from_host", "label": ".from_host()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".from_host()", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_glm_alpha_planner_nodememory_reserve_gib", "label": ".reserve_gib()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".reserve_gib()", "community": 105, "community_name": "Community 105", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_glm_alpha_planner_nodememory_placement_budget_gib", "label": ".placement_budget_gib()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".placement_budget_gib()", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_glm_alpha_planner_kv_bytes", "label": "kv_bytes()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "kv_bytes()", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "code", "degree": 8}, {"id": "indexerlayout", "label": "IndexerLayout", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "IndexerLayout", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_glm_alpha_planner_topologyplan", "label": "TopologyPlan", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TopologyPlan", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "code", "degree": 9}, {"id": "node_meshnet_node_glm_alpha_planner_topologyplan_is_arithmetic_minimum_topology", "label": ".is_arithmetic_minimum_topology()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".is_arithmetic_minimum_topology()", "community": 106, "community_name": "Community 106", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_glm_alpha_planner_topologyplan_to_dict", "label": ".to_dict()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_planner_plan_topology", "label": "plan_topology()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "plan_topology()", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "code", "degree": 11}, {"id": "node_meshnet_node_glm_alpha_planner_routefit", "label": "RouteFit", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "RouteFit", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_glm_alpha_planner_routefit_to_dict", "label": ".to_dict()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_planner_plan_route", "label": "plan_route()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "plan_route()", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "code", "degree": 10}, {"id": "node_meshnet_node_glm_alpha_planner_seamplan", "label": "SeamPlan", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SeamPlan", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_glm_alpha_planner_seamplan_to_dict", "label": ".to_dict()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_planner_plan_seams", "label": "plan_seams()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "plan_seams()", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_glm_alpha_planner_plan_all_tiers", "label": "plan_all_tiers()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "plan_all_tiers()", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_glm_alpha_planner_rationale_1", "label": "Deterministic memory, KV, and network planner for the GLM-5.2 Max alpha route.\u2026", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Deterministic memory, KV, and network planner for the GLM-5.2 Max alpha route.\u2026", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_planner_rationale_81", "label": "Raised when a node or route cannot be accounted for honestly.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Raised when a node or route cannot be accounted for honestly.", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_planner_rationale_86", "label": "One node's physically usable memory, counted once. ``physical_usable_gib`` is\u2026", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "One node's physically usable memory, counted once. ``physical_usable_gib`` is\u2026", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_planner_rationale_119", "label": "Build a node from a host's reported RAM and GPU memory. On a unified machine\u2026", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Build a node from a host's reported RAM and GPU memory. On a unified machine\u2026", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_planner_rationale_159", "label": "``max(20% of physically usable memory, 8 GiB)``.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "``max(20% of physically usable memory, 8 GiB)``.", "community": 105, "community_name": "Community 105", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_planner_rationale_164", "label": "What remains for weights plus KV after the reserve.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "What remains for weights plus KV after the reserve.", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_planner_rationale_177", "label": "Bytes of MLA (and DSA indexer) KV cache for the whole model. ``indexer_layout``\u2026", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Bytes of MLA (and DSA indexer) KV cache for the whole model. ``indexer_layout``\u2026", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_planner_rationale_219", "label": "The node count a homogeneous tier needs, and how it was reached.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The node count a homogeneous tier needs, and how it was reached.", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_planner_rationale_233", "label": "True when the recommendation offers no imbalance headroom at all.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "True when the recommendation offers no imbalance headroom at all.", "community": 106, "community_name": "Community 106", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_planner_rationale_261", "label": "Minimum and recommended node count for a homogeneous tier of this size.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Minimum and recommended node count for a homogeneous tier of this size.", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_planner_rationale_313", "label": "Whether a concrete, possibly heterogeneous set of nodes can hold the target.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Whether a concrete, possibly heterogeneous set of nodes can hold the target.", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_planner_rationale_349", "label": "Evaluate a concrete route. Every node's memory is already counted once.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Evaluate a concrete route. Every node's memory is already counted once.", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_planner_rationale_413", "label": "Bytes and latency across the activation seams of a route. Bandwidth and latency\u2026", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Bytes and latency across the activation seams of a route. Bandwidth and latency\u2026", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_planner_rationale_466", "label": "Model seam bytes, wire serialization, and serial per-hop latency separately.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Model seam bytes, wire serialization, and serial per-hop latency separately.", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_glm_alpha_planner_rationale_518", "label": "The alpha tier table, recomputed from the pinned artifact and architecture.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The alpha tier table, recomputed from the pinned artifact and architecture.", "community": 17, "community_name": "GLM Alpha Planning", "source_file": "node/meshnet_node/glm_alpha/planner.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_hardware", "label": "hardware.py", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "hardware.py", "community": 46, "community_name": "Community 46", "source_file": "node/meshnet_node/hardware.py", "file_type": "code", "degree": 14}, {"id": "node_meshnet_node_hardware_detect_ram_mb", "label": "_detect_ram_mb()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_detect_ram_mb()", "community": 46, "community_name": "Community 46", "source_file": "node/meshnet_node/hardware.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_hardware_detect_windows_ram_mb", "label": "_detect_windows_ram_mb()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_detect_windows_ram_mb()", "community": 46, "community_name": "Community 46", "source_file": "node/meshnet_node/hardware.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_hardware_detect_windows_gpu_memory", "label": "_detect_windows_gpu_memory()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_detect_windows_gpu_memory()", "community": 46, "community_name": "Community 46", "source_file": "node/meshnet_node/hardware.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_hardware_detect_nvidia_smi_gpu_memory", "label": "_detect_nvidia_smi_gpu_memory()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_detect_nvidia_smi_gpu_memory()", "community": 46, "community_name": "Community 46", "source_file": "node/meshnet_node/hardware.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_hardware_detect_torch_cuda_inventory", "label": "_detect_torch_cuda_inventory()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_detect_torch_cuda_inventory()", "community": 46, "community_name": "Community 46", "source_file": "node/meshnet_node/hardware.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_hardware_torch_cuda_is_executable", "label": "_torch_cuda_is_executable()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_torch_cuda_is_executable()", "community": 46, "community_name": "Community 46", "source_file": "node/meshnet_node/hardware.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_hardware_gpu_inventory_profile", "label": "_gpu_inventory_profile()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_gpu_inventory_profile()", "community": 46, "community_name": "Community 46", "source_file": "node/meshnet_node/hardware.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_hardware_with_forced_cpu", "label": "with_forced_cpu()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "with_forced_cpu()", "community": 24, "community_name": "Community 24", "source_file": "node/meshnet_node/hardware.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_hardware_with_model_drive", "label": "_with_model_drive()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_with_model_drive()", "community": 46, "community_name": "Community 46", "source_file": "node/meshnet_node/hardware.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_hardware_detect_hardware", "label": "detect_hardware()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "detect_hardware()", "community": 46, "community_name": "Community 46", "source_file": "node/meshnet_node/hardware.py", "file_type": "code", "degree": 13}, {"id": "node_meshnet_node_hardware_benchmark_throughput_checked", "label": "benchmark_throughput_checked()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "benchmark_throughput_checked()", "community": 46, "community_name": "Community 46", "source_file": "node/meshnet_node/hardware.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_hardware_benchmark_throughput", "label": "benchmark_throughput()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "benchmark_throughput()", "community": 46, "community_name": "Community 46", "source_file": "node/meshnet_node/hardware.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_hardware_rationale_1", "label": "GPU hardware detection with graceful CPU fallback.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "GPU hardware detection with graceful CPU fallback.", "community": 46, "community_name": "Community 46", "source_file": "node/meshnet_node/hardware.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_hardware_rationale_11", "label": "Return host physical RAM in MB, or 0 if unavailable.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return host physical RAM in MB, or 0 if unavailable.", "community": 46, "community_name": "Community 46", "source_file": "node/meshnet_node/hardware.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_hardware_rationale_22", "label": "Return Windows physical RAM in MB, or 0.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return Windows physical RAM in MB, or 0.", "community": 46, "community_name": "Community 46", "source_file": "node/meshnet_node/hardware.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_hardware_rationale_66", "label": "Return Windows GPU memory metadata from Win32_VideoController, if available.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return Windows GPU memory metadata from Win32_VideoController, if available.", "community": 46, "community_name": "Community 46", "source_file": "node/meshnet_node/hardware.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_hardware_rationale_110", "label": "Return NVIDIA GPU memory metadata from nvidia-smi, if available.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return NVIDIA GPU memory metadata from nvidia-smi, if available.", "community": 46, "community_name": "Community 46", "source_file": "node/meshnet_node/hardware.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_hardware_rationale_128", "label": "Return torch-visible CUDA/HIP GPU metadata without running kernels.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return torch-visible CUDA/HIP GPU metadata without running kernels.", "community": 46, "community_name": "Community 46", "source_file": "node/meshnet_node/hardware.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_hardware_rationale_146", "label": "Return True only if this Python process can execute a CUDA tensor op.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return True only if this Python process can execute a CUDA tensor op.", "community": 46, "community_name": "Community 46", "source_file": "node/meshnet_node/hardware.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_hardware_rationale_176", "label": "Return a hardware profile forced to CPU execution. Keeps detected GPU metadata\u2026", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return a hardware profile forced to CPU execution. Keeps detected GPU metadata\u2026", "community": 24, "community_name": "Community 24", "source_file": "node/meshnet_node/hardware.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_hardware_rationale_188", "label": "Attach free space for the default model cache drive to tracker diagnostics.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Attach free space for the default model cache drive to tracker diagnostics.", "community": 46, "community_name": "Community 46", "source_file": "node/meshnet_node/hardware.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_hardware_rationale_199", "label": "Detect GPU model and available VRAM. Returns hardware profile dict.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Detect GPU model and available VRAM. Returns hardware profile dict.", "community": 46, "community_name": "Community 46", "source_file": "node/meshnet_node/hardware.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_hardware_rationale_251", "label": "Estimate compute throughput via a synthetic transformer GEMM benchmark. Runs\u2026", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Estimate compute throughput via a synthetic transformer GEMM benchmark. Runs\u2026", "community": 46, "community_name": "Community 46", "source_file": "node/meshnet_node/hardware.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_hardware_rationale_298", "label": "Return only the numeric throughput index, preserving the legacy API.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return only the numeric throughput index, preserving the legacy API.", "community": 46, "community_name": "Community 46", "source_file": "node/meshnet_node/hardware.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_backend", "label": "model_backend.py", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 18.8, "font": {"size": 12, "color": "#ffffff"}, "title": "model_backend.py", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 49}, {"id": "node_meshnet_node_model_backend_modelbackenderror", "label": "ModelBackendError", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ModelBackendError", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 17}, {"id": "node_meshnet_node_model_backend_py_runtimeerror", "label": "RuntimeError", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "RuntimeError", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_model_backend_unsupportedrecipeparam", "label": "UnsupportedRecipeParam", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "UnsupportedRecipeParam", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 11}, {"id": "node_meshnet_node_model_backend_missingmodeldependencyerror", "label": "MissingModelDependencyError", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "MissingModelDependencyError", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 21}, {"id": "node_meshnet_node_model_backend_insufficientvramerror", "label": "InsufficientVRAMError", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "InsufficientVRAMError", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 20}, {"id": "node_meshnet_node_model_backend_partialmodelloadunsupported", "label": "PartialModelLoadUnsupported", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "PartialModelLoadUnsupported", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 11}, {"id": "node_meshnet_node_model_backend_kvcachemiss", "label": "KVCacheMiss", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "KVCacheMiss", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 16}, {"id": "node_meshnet_node_model_backend_torch_cuda_is_executable", "label": "_torch_cuda_is_executable()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_torch_cuda_is_executable()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_model_backend_py_any", "label": "Any", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 17.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Any", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "", "file_type": "code", "degree": 39}, {"id": "node_meshnet_node_model_backend_tensorpayload", "label": "TensorPayload", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TensorPayload", "community": 87, "community_name": "Community 87", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 13}, {"id": "node_meshnet_node_model_backend_tensorpayload_to_envelope", "label": ".to_envelope()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_envelope()", "community": 87, "community_name": "Community 87", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_model_backend_tensorpayload_from_envelope", "label": ".from_envelope()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".from_envelope()", "community": 87, "community_name": "Community 87", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_model_backend_tailtokenresult", "label": "TailTokenResult", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "TailTokenResult", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 14}, {"id": "node_meshnet_node_model_backend_sessioncacheentry", "label": "SessionCacheEntry", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "SessionCacheEntry", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_model_backend_sessioncachestore", "label": "SessionCacheStore", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "SessionCacheStore", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 10}, {"id": "node_meshnet_node_model_backend_sessioncachestore_init", "label": ".__init__()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_model_backend_sessioncachestore_len", "label": ".__len__()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".__len__()", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_model_backend_sessioncachestore_store", "label": ".store()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".store()", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_model_backend_sessioncachestore_lookup", "label": ".lookup()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".lookup()", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_model_backend_sessioncachestore_drop", "label": ".drop()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".drop()", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_model_backend_sessioncachestore_evict_locked", "label": "._evict_locked()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._evict_locked()", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_model_backend_validate_quantization", "label": "validate_quantization()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "validate_quantization()", "community": 32, "community_name": "Community 32", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 4}, {"id": "quantization", "label": "Quantization", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Quantization", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_model_backend_build_quantization_config", "label": "build_quantization_config()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "build_quantization_config()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_model_backend_torchmodelshard", "label": "TorchModelShard", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 17.3, "font": {"size": 12, "color": "#ffffff"}, "title": "TorchModelShard", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 41}, {"id": "node_meshnet_node_model_backend_torchmodelshard_init", "label": ".__init__()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 18}, {"id": "node_meshnet_node_model_backend_py_path", "label": "Path", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Path", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_model_backend_torchmodelshard_encode_prompt", "label": ".encode_prompt()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".encode_prompt()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_model_backend_torchmodelshard_encode_next_token", "label": ".encode_next_token()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".encode_next_token()", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 12}, {"id": "node_meshnet_node_model_backend_torchmodelshard_forward_bytes", "label": ".forward_bytes()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".forward_bytes()", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_model_backend_torchmodelshard_decode_tail", "label": ".decode_tail()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".decode_tail()", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_model_backend_torchmodelshard_decode_tail_token", "label": ".decode_tail_token()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".decode_tail_token()", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_model_backend_torchmodelshard_eos_token_ids", "label": ".eos_token_ids()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".eos_token_ids()", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_model_backend_torchmodelshard_release_session", "label": ".release_session()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".release_session()", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_model_backend_torchmodelshard_generate_text", "label": ".generate_text()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".generate_text()", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_model_backend_torchmodelshard_generate_text_streaming", "label": ".generate_text_streaming()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".generate_text_streaming()", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_model_backend_torchmodelshard_count_prompt_tokens", "label": ".count_prompt_tokens()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".count_prompt_tokens()", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_model_backend_torchmodelshard_count_text_tokens", "label": ".count_text_tokens()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".count_text_tokens()", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_model_backend_torchmodelshard_encode_messages", "label": "._encode_messages()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._encode_messages()", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_model_backend_torchmodelshard_effective_start", "label": "._effective_start()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._effective_start()", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_model_backend_torchmodelshard_new_session_cache", "label": "._new_session_cache()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._new_session_cache()", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_model_backend_torchmodelshard_run_layers_session", "label": "._run_layers_session()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "._run_layers_session()", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 12}, {"id": "node_meshnet_node_model_backend_torchmodelshard_run_layers", "label": "._run_layers()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._run_layers()", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_model_backend_torchmodelshard_payload", "label": "._payload()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "._payload()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_model_backend_validate_recipe_params", "label": "validate_recipe_params()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "validate_recipe_params()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_model_backend_load_torch_shard", "label": "load_torch_shard()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "load_torch_shard()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_model_backend_total_layers_for_local_snapshot", "label": "_total_layers_for_local_snapshot()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_total_layers_for_local_snapshot()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_model_backend_should_partial_materialize_shard", "label": "_should_partial_materialize_shard()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_should_partial_materialize_shard()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_model_backend_load_partial_model_from_snapshot", "label": "_load_partial_model_from_snapshot()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "_load_partial_model_from_snapshot()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 11}, {"id": "node_meshnet_node_model_backend_finalize_active_shard_modules_on_device", "label": "_finalize_active_shard_modules_on_device()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_finalize_active_shard_modules_on_device()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_model_backend_model_load_plan", "label": "_model_load_plan()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "_model_load_plan()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 9}, {"id": "node_meshnet_node_model_backend_config_candidates", "label": "_config_candidates()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_config_candidates()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_model_backend_native_quantization_config", "label": "_native_quantization_config()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_native_quantization_config()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_model_backend_native_torch_dtype", "label": "_native_torch_dtype()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_native_torch_dtype()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_model_backend_causal_lm_config", "label": "_causal_lm_config()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_causal_lm_config()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_model_backend_model_state_dict_keys", "label": "_model_state_dict_keys()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_model_state_dict_keys()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_model_backend_checkpoint_tensor_name_for_model", "label": "_checkpoint_tensor_name_for_model()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_checkpoint_tensor_name_for_model()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_model_backend_transformer_backbone", "label": "_transformer_backbone()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_transformer_backbone()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_model_backend_model_layers", "label": "_model_layers()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_model_layers()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_model_backend_embed_tokens", "label": "_embed_tokens()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_embed_tokens()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_model_backend_position_embeddings", "label": "_position_embeddings()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_position_embeddings()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_model_backend_rotary_embedding_module", "label": "_rotary_embedding_module()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_rotary_embedding_module()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_model_backend_active_modules_for_shard", "label": "_active_modules_for_shard()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_active_modules_for_shard()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_model_backend_final_norm", "label": "_final_norm()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_final_norm()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_model_backend_position_ids", "label": "_position_ids()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_position_ids()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_model_backend_decoder_attention_mask", "label": "_decoder_attention_mask()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_decoder_attention_mask()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_model_backend_rotary_position_embeddings", "label": "_rotary_position_embeddings()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_rotary_position_embeddings()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_model_backend_call_layer", "label": "_call_layer()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_call_layer()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_model_backend_tensor_to_bytes", "label": "_tensor_to_bytes()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_tensor_to_bytes()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_model_backend_tensor_from_bfloat16_bytes", "label": "_tensor_from_bfloat16_bytes()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_tensor_from_bfloat16_bytes()", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_model_backend_int_tensor_header", "label": "_int_tensor_header()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_int_tensor_header()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_model_backend_tensor_from_int64_header", "label": "_tensor_from_int64_header()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_tensor_from_int64_header()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_model_backend_looks_like_oom", "label": "_looks_like_oom()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_looks_like_oom()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_model_backend_py_baseexception", "label": "BaseException", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "BaseException", "community": 14, "community_name": "KV Session Cache", "source_file": "", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_model_backend_cache_unsupported_for_shard", "label": "_cache_unsupported_for_shard()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_cache_unsupported_for_shard()", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_model_backend_rationale_1", "label": "HuggingFace/PyTorch shard backend for real node inference.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "HuggingFace/PyTorch shard backend for real node inference.", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_backend_rationale_25", "label": "Base class for real model backend startup and execution failures.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Base class for real model backend startup and execution failures.", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_backend_rationale_29", "label": "Raised when a recipe asks for an execution param this backend cannot apply.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Raised when a recipe asks for an execution param this backend cannot apply.", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_backend_rationale_33", "label": "Raised when optional model dependencies are not installed.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Raised when optional model dependencies are not installed.", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/model_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_backend_rationale_37", "label": "Raised when a requested shard cannot fit in available CUDA memory.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Raised when a requested shard cannot fit in available CUDA memory.", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_backend_rationale_41", "label": "Raised when a shard cannot be materialized from a local snapshot subset.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Raised when a shard cannot be materialized from a local snapshot subset.", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_backend_rationale_45", "label": "Raised when a decode step references session state this node no longer holds.\u2026", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Raised when a decode step references session state this node no longer holds.\u2026", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_backend_rationale_53", "label": "Return True only when this process can actually execute a CUDA/HIP op. On ROCm,\u2026", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return True only when this process can actually execute a CUDA/HIP op. On ROCm,\u2026", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_backend_rationale_74", "label": "An immutable, request-owned binary activation payload. ``body`` is always the\u2026", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "An immutable, request-owned binary activation payload. ``body`` is always the\u2026", "community": 87, "community_name": "Community 87", "source_file": "node/meshnet_node/model_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_backend_rationale_145", "label": "Tail-shard decode result: decoded text plus the raw token id. The token id lets\u2026", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Tail-shard decode result: decoded text plus the raw token id. The token id lets\u2026", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/model_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_backend_rationale_157", "label": "Per-session cached state for one shard's layer range. `cache` is whatever\u2026", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Per-session cached state for one shard's layer range. `cache` is whatever\u2026", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_backend_rationale_172", "label": "TTL + LRU bounded map of session_id \u2192 SessionCacheEntry. Each node caches state\u2026", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "TTL + LRU bounded map of session_id \u2192 SessionCacheEntry. Each node caches state\u2026", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_backend_rationale_256", "label": "Return a transformers BitsAndBytesConfig for quantized weights.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return a transformers BitsAndBytesConfig for quantized weights.", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_backend_rationale_277", "label": "Executable subset of a HuggingFace causal language model.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Executable subset of a HuggingFace causal language model.", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_backend_rationale_420", "label": "Decode step: embed one new token against this head's cached session. Raises\u2026", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Decode step: embed one new token against this head's cached session. Raises\u2026", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_backend_rationale_495", "label": "All token ids that should terminate generation (tokenizer + generation config).", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "All token ids that should terminate generation (tokenizer + generation config).", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_backend_rationale_519", "label": "Autoregressive generation using HF generate() \u2014 single-node (head+tail) mode.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Autoregressive generation using HF generate() \u2014 single-node (head+tail) mode.", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_backend_rationale_549", "label": "Yield decoded token strings one at a time using HF TextIteratorStreamer.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Yield decoded token strings one at a time using HF TextIteratorStreamer.", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_backend_rationale_585", "label": "Return tokenizer-backed prompt token count for OpenAI usage metadata.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return tokenizer-backed prompt token count for OpenAI usage metadata.", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_backend_rationale_591", "label": "Return tokenizer-backed completion token count for OpenAI usage metadata.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return tokenizer-backed completion token count for OpenAI usage metadata.", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_backend_rationale_603", "label": "Format messages with chat template (if available) and tokenize.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Format messages with chat template (if available) and tokenize.", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_backend_rationale_632", "label": "Build the model-appropriate cache object for one session.\u2026", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Build the model-appropriate cache object for one session.\u2026", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_backend_rationale_658", "label": "Run this shard's layers, keying cached state by session when requested.\u2026", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Run this shard's layers, keying cached state by session when requested.\u2026", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_backend_rationale_771", "label": "Return recipe params this backend can honour, or raise naming the bad key.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return recipe params this backend can honour, or raise naming the bad key.", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_backend_rationale_962", "label": "Place active shard modules on device without copying unmaterialized meta\u2026", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Place active shard modules on device without copying unmaterialized meta\u2026", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_backend_rationale_997", "label": "Return (explicit quant config, dtype, uses quantized weights).", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return (explicit quant config, dtype, uses quantized weights).", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_backend_rationale_1050", "label": "Use the text decoder config for composite VLM/MoE presets.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Use the text decoder config for composite VLM/MoE presets.", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_backend_rationale_1064", "label": "Expected parameter/buffer names, or None when the model can't report them.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Expected parameter/buffer names, or None when the model can't report them.", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_backend_rationale_1075", "label": "Map multimodal checkpoint keys onto text-only CausalLM modules when needed.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Map multimodal checkpoint keys onto text-only CausalLM modules when needed.", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_backend_rationale_1168", "label": "Build a causal additive mask for decoder layers called outside model.forward.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Build a causal additive mask for decoder layers called outside model.forward.", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_backend_rationale_1194", "label": "Return model-level rotary embeddings required by newer HF decoder layers.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return model-level rotary embeddings required by newer HF decoder layers.", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_backend_rationale_1307", "label": "True when a layer failure means session cache is unsupported, not fatal.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "True when a layer failure means session cache is unsupported, not fatal.", "community": 14, "community_name": "KV Session Cache", "source_file": "node/meshnet_node/model_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_catalog", "label": "model_catalog.py", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "model_catalog.py", "community": 63, "community_name": "Community 63", "source_file": "node/meshnet_node/model_catalog.py", "file_type": "code", "degree": 11}, {"id": "node_meshnet_node_model_catalog_modelpreset", "label": "ModelPreset", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ModelPreset", "community": 63, "community_name": "Community 63", "source_file": "node/meshnet_node/model_catalog.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_model_catalog_modelpreset_vram_for_quant", "label": ".vram_for_quant()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".vram_for_quant()", "community": 63, "community_name": "Community 63", "source_file": "node/meshnet_node/model_catalog.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_model_catalog_modelpreset_fits_vram", "label": ".fits_vram()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".fits_vram()", "community": 63, "community_name": "Community 63", "source_file": "node/meshnet_node/model_catalog.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_model_catalog_modelpreset_recommended_quant", "label": ".recommended_quant()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".recommended_quant()", "community": 63, "community_name": "Community 63", "source_file": "node/meshnet_node/model_catalog.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_model_catalog_load_model_metadata", "label": "_load_model_metadata()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_load_model_metadata()", "community": 63, "community_name": "Community 63", "source_file": "node/meshnet_node/model_catalog.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_model_catalog_local_model_path", "label": "_local_model_path()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_local_model_path()", "community": 63, "community_name": "Community 63", "source_file": "node/meshnet_node/model_catalog.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_model_catalog_py_path", "label": "Path", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path", "community": 63, "community_name": "Community 63", "source_file": "", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_model_catalog_resolve_model_alias", "label": "resolve_model_alias()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "resolve_model_alias()", "community": 63, "community_name": "Community 63", "source_file": "node/meshnet_node/model_catalog.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_model_catalog_layers_from_config", "label": "layers_from_config()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "layers_from_config()", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_catalog.py", "file_type": "code", "degree": 9}, {"id": "node_meshnet_node_model_catalog_detect_num_layers", "label": "detect_num_layers()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "detect_num_layers()", "community": 38, "community_name": "Community 38", "source_file": "node/meshnet_node/model_catalog.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_model_catalog_model_metadata_for", "label": "model_metadata_for()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "model_metadata_for()", "community": 63, "community_name": "Community 63", "source_file": "node/meshnet_node/model_catalog.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_model_catalog_browse_hf_hub", "label": "browse_hf_hub()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "browse_hf_hub()", "community": 38, "community_name": "Community 38", "source_file": "node/meshnet_node/model_catalog.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_model_catalog_rationale_1", "label": "Curated list of models supported by the network with VRAM requirements.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Curated list of models supported by the network with VRAM requirements.", "community": 63, "community_name": "Community 63", "source_file": "node/meshnet_node/model_catalog.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_catalog_rationale_25", "label": "Return VRAM requirement in GB for the given quantization.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return VRAM requirement in GB for the given quantization.", "community": 63, "community_name": "Community 63", "source_file": "node/meshnet_node/model_catalog.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_catalog_rationale_39", "label": "Return the highest-quality quantization that fits available VRAM, or None.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return the highest-quality quantization that fits available VRAM, or None.", "community": 63, "community_name": "Community 63", "source_file": "node/meshnet_node/model_catalog.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_catalog_rationale_185", "label": "Resolve a curated name, repository, or alias case-insensitively.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Resolve a curated name, repository, or alias case-insensitively.", "community": 63, "community_name": "Community 63", "source_file": "node/meshnet_node/model_catalog.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_catalog_rationale_195", "label": "Extract the transformer layer count from a HuggingFace config object. Composite\u2026", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Extract the transformer layer count from a HuggingFace config object. Composite\u2026", "community": 4, "community_name": "PyTorch Shard Execution", "source_file": "node/meshnet_node/model_catalog.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_catalog_rationale_219", "label": "Return num_hidden_layers from HuggingFace config.json (downloads ~1 KB only).", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return num_hidden_layers from HuggingFace config.json (downloads ~1 KB only).", "community": 38, "community_name": "Community 38", "source_file": "node/meshnet_node/model_catalog.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_catalog_rationale_237", "label": "Return operator-facing model metadata for a HuggingFace repo.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return operator-facing model metadata for a HuggingFace repo.", "community": 63, "community_name": "Community 63", "source_file": "node/meshnet_node/model_catalog.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_model_catalog_rationale_281", "label": "Fetch top downloaded text-generation models from HuggingFace Hub.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Fetch top downloaded text-generation models from HuggingFace Hub.", "community": 38, "community_name": "Community 38", "source_file": "node/meshnet_node/model_catalog.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_backend", "label": "native_backend.py", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.4, "font": {"size": 0, "color": "#ffffff"}, "title": "native_backend.py", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/native_backend.py", "file_type": "code", "degree": 19}, {"id": "node_meshnet_node_native_backend_nativeloadedartifactreport", "label": "NativeLoadedArtifactReport", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NativeLoadedArtifactReport", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/native_backend.py", "file_type": "code", "degree": 9}, {"id": "node_meshnet_node_native_backend_nativeloadedartifactreport_post_init", "label": ".__post_init__()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__post_init__()", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/native_backend.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_native_backend_immutableartifactpin", "label": "ImmutableArtifactPin", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ImmutableArtifactPin", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/native_backend.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_native_backend_nativenumericalrecipe", "label": "NativeNumericalRecipe", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "NativeNumericalRecipe", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/native_backend.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_native_backend_nativeidentityinputs", "label": "NativeIdentityInputs", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NativeIdentityInputs", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/native_backend.py", "file_type": "code", "degree": 9}, {"id": "node_meshnet_node_native_backend_shard_identity_from_native_report", "label": "shard_identity_from_native_report()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "shard_identity_from_native_report()", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/native_backend.py", "file_type": "code", "degree": 10}, {"id": "node_meshnet_node_native_backend_nativesessionrejected", "label": "NativeSessionRejected", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "NativeSessionRejected", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/native_backend.py", "file_type": "code", "degree": 10}, {"id": "recipeidentityerror", "label": "RecipeIdentityError", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "RecipeIdentityError", "community": 13, "community_name": "Native Worker Adapter", "source_file": "", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_native_backend_nativesessionrejected_init", "label": ".__init__()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/native_backend.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_native_backend_nativeworkerbackendadapter", "label": "NativeWorkerBackendAdapter", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "NativeWorkerBackendAdapter", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/native_backend.py", "file_type": "code", "degree": 17}, {"id": "node_meshnet_node_native_backend_nativeworkerbackendadapter_init", "label": ".__init__()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/native_backend.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_native_backend_nativeworkerbackendadapter_loaded_artifact_report", "label": ".loaded_artifact_report()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".loaded_artifact_report()", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/native_backend.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_native_backend_nativeworkerbackendadapter_check_session_open", "label": ".check_session_open()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".check_session_open()", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/native_backend.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_native_backend_nativeworkerbackendadapter_on_session_open", "label": ".on_session_open()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".on_session_open()", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/native_backend.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_native_backend_rationale_1", "label": "Authoritative identity boundary for a native GGUF Shard backend. The native\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Authoritative identity boundary for a native GGUF Shard backend. The native\u2026", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/native_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_backend_rationale_29", "label": "Immutable GGUF facts returned by the loaded native model. The report is copied\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Immutable GGUF facts returned by the loaded native model. The report is copied\u2026", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/native_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_backend_rationale_57", "label": "Deployment-supplied immutable bytes pin, never inferred from a model name.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Deployment-supplied immutable bytes pin, never inferred from a model name.", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/native_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_backend_rationale_67", "label": "Immutable numerical inputs selected for this native worker instance.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Immutable numerical inputs selected for this native worker instance.", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/native_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_backend_rationale_85", "label": "Everything a native backend needs to emit one exact identity.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Everything a native backend needs to emit one exact identity.", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/native_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_backend_rationale_94", "label": "Derive identity only from the native report and immutable pinned inputs.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Derive identity only from the native report and immutable pinned inputs.", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/native_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_backend_rationale_136", "label": "A native worker refused a ``SessionOpen`` before allocating session state.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "A native worker refused a ``SessionOpen`` before allocating session state.", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/native_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_backend_rationale_144", "label": "Small backend-facing adapter around the native loaded-artifact seam.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Small backend-facing adapter around the native loaded-artifact seam.", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/native_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_backend_rationale_161", "label": "Reject incompatible/stale opens at the native worker boundary.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Reject incompatible/stale opens at the native worker boundary.", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/native_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_backend_rationale_179", "label": "The native worker's SessionOpen boundary, before session allocation.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The native worker's SessionOpen boundary, before session allocation.", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/native_backend.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_protocol_init", "label": "native_protocol/__init__.py", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "native_protocol/__init__.py", "community": 33, "community_name": "Community 33", "source_file": "node/meshnet_node/native_protocol/__init__.py", "file_type": "code", "degree": 22}, {"id": "node_meshnet_node_native_protocol_init_rationale_1", "label": "The native Shard protocol: Protobuf over gRPC/HTTP2 (ADR-0020).\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The native Shard protocol: Protobuf over gRPC/HTTP2 (ADR-0020).\u2026", "community": 33, "community_name": "Community 33", "source_file": "node/meshnet_node/native_protocol/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_protocol_codec", "label": "codec.py", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.6, "font": {"size": 12, "color": "#ffffff"}, "title": "codec.py", "community": 33, "community_name": "Community 33", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "code", "degree": 26}, {"id": "node_meshnet_node_native_protocol_codec_protocolerror", "label": "ProtocolError", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ProtocolError", "community": 33, "community_name": "Community 33", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "code", "degree": 22}, {"id": "node_meshnet_node_native_protocol_codec_py_exception", "label": "Exception", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Exception", "community": 33, "community_name": "Community 33", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_native_protocol_codec_payloadcorrupt", "label": "PayloadCorrupt", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "PayloadCorrupt", "community": 33, "community_name": "Community 33", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_native_protocol_codec_itemsize", "label": "itemsize()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "itemsize()", "community": 33, "community_name": "Community 33", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_native_protocol_codec_expected_bytes", "label": "expected_bytes()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "expected_bytes()", "community": 33, "community_name": "Community 33", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_native_protocol_codec_crc32c", "label": "crc32c()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "crc32c()", "community": 33, "community_name": "Community 33", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_native_protocol_codec_checksum_of", "label": "checksum_of()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "checksum_of()", "community": 33, "community_name": "Community 33", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "code", "degree": 5}, {"id": "checksum", "label": "Checksum", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Checksum", "community": 33, "community_name": "Community 33", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_native_protocol_codec_encode_tensor", "label": "encode_tensor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "encode_tensor()", "community": 33, "community_name": "Community 33", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "code", "degree": 13}, {"id": "node_meshnet_node_native_protocol_codec_decode_tensor", "label": "decode_tensor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "decode_tensor()", "community": 33, "community_name": "Community 33", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "code", "degree": 10}, {"id": "node_meshnet_node_native_protocol_codec_encode_bundle", "label": "encode_bundle()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "encode_bundle()", "community": 73, "community_name": "Community 73", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "code", "degree": 10}, {"id": "tensorbundle", "label": "TensorBundle", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "TensorBundle", "community": 73, "community_name": "Community 73", "source_file": "", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_native_protocol_codec_decode_bundle", "label": "decode_bundle()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "decode_bundle()", "community": 33, "community_name": "Community 33", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "code", "degree": 9}, {"id": "node_meshnet_node_native_protocol_codec_encode_decode_step", "label": "encode_decode_step()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "encode_decode_step()", "community": 73, "community_name": "Community 73", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "code", "degree": 5}, {"id": "decodestep", "label": "DecodeStep", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "DecodeStep", "community": 73, "community_name": "Community 73", "source_file": "", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_native_protocol_codec_validate_tail_result", "label": "validate_tail_result()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "validate_tail_result()", "community": 41, "community_name": "Community 41", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "code", "degree": 7}, {"id": "tailresult", "label": "TailResult", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "TailResult", "community": 41, "community_name": "Community 41", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_native_protocol_codec_decode_step_bundle", "label": "decode_step_bundle()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "decode_step_bundle()", "community": 33, "community_name": "Community 33", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_native_protocol_codec_validate_session_message_size", "label": "validate_session_message_size()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "validate_session_message_size()", "community": 73, "community_name": "Community 73", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "code", "degree": 6}, {"id": "sessionresponse", "label": "SessionResponse", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SessionResponse", "community": 73, "community_name": "Community 73", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_native_protocol_codec_prefillchunk", "label": "PrefillChunk", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "PrefillChunk", "community": 92, "community_name": "Community 92", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_native_protocol_codec_prefillchunk_final_chunk", "label": ".final_chunk()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".final_chunk()", "community": 92, "community_name": "Community 92", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_native_protocol_codec_prefillchunk_chunk_info", "label": ".chunk_info()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".chunk_info()", "community": 92, "community_name": "Community 92", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "code", "degree": 2}, {"id": "chunkinfo", "label": "ChunkInfo", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ChunkInfo", "community": 92, "community_name": "Community 92", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_native_protocol_codec_prefillchunk_position", "label": ".position()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".position()", "community": 92, "community_name": "Community 92", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "code", "degree": 2}, {"id": "positionspan", "label": "PositionSpan", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "PositionSpan", "community": 92, "community_name": "Community 92", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_native_protocol_codec_plan_prefill_chunks", "label": "plan_prefill_chunks()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "plan_prefill_chunks()", "community": 33, "community_name": "Community 33", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_native_protocol_codec_default_flow_control", "label": "default_flow_control()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "default_flow_control()", "community": 84, "community_name": "Community 84", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_native_protocol_codec_negotiate_flow_control", "label": "negotiate_flow_control()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "negotiate_flow_control()", "community": 33, "community_name": "Community 33", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_native_protocol_codec_rationale_1", "label": "Encode and decode the native Shard protocol's named-tensor bundles. The\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Encode and decode the native Shard protocol's named-tensor bundles. The\u2026", "community": 33, "community_name": "Community 33", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_protocol_codec_rationale_72", "label": "A peer sent something this build cannot safely interpret.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "A peer sent something this build cannot safely interpret.", "community": 33, "community_name": "Community 33", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_protocol_codec_rationale_76", "label": "A tensor payload failed validation: size, coverage, or checksum.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "A tensor payload failed validation: size, coverage, or checksum.", "community": 33, "community_name": "Community 33", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_protocol_codec_rationale_94", "label": "Byte count a tensor of `shape` and `dtype` must occupy.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Byte count a tensor of `shape` and `dtype` must occupy.", "community": 33, "community_name": "Community 33", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_protocol_codec_rationale_161", "label": "Build a NamedTensor, compressing and fragmenting as needed. `data` is the\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Build a NamedTensor, compressing and fragmenting as needed. `data` is the\u2026", "community": 33, "community_name": "Community 33", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_protocol_codec_rationale_228", "label": "Reassemble, decompress and validate a NamedTensor's payload. Raises\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Reassemble, decompress and validate a NamedTensor's payload. Raises\u2026", "community": 33, "community_name": "Community 33", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_protocol_codec_rationale_365", "label": "Validate every tensor in a bundle and return name -> payload.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Validate every tensor in a bundle and return name -> payload.", "community": 33, "community_name": "Community 33", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_protocol_codec_rationale_412", "label": "Encode a decode boundary, retaining the deliberate compact fallback.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Encode a decode boundary, retaining the deliberate compact fallback.", "community": 73, "community_name": "Community 73", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_protocol_codec_rationale_428", "label": "Fail closed unless a tail completion is bound to its exact recipe.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Fail closed unless a tail completion is bound to its exact recipe.", "community": 41, "community_name": "Community 41", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_protocol_codec_rationale_451", "label": "Decode a fast-path boundary with the DGR-006 compatibility rule. `bundle` is\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Decode a fast-path boundary with the DGR-006 compatibility rule. `bundle` is\u2026", "community": 33, "community_name": "Community 33", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_protocol_codec_rationale_481", "label": "Reject an oversized complete stream frame, including protobuf overhead. Bundle\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Reject an oversized complete stream frame, including protobuf overhead. Bundle\u2026", "community": 73, "community_name": "Community 73", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_protocol_codec_rationale_506", "label": "One token-aligned slice of a prefill.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "One token-aligned slice of a prefill.", "community": 92, "community_name": "Community 92", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_protocol_codec_rationale_536", "label": "Split a prefill into bounded, token-aligned chunks. Splits fall on token\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Split a prefill into bounded, token-aligned chunks. Splits fall on token\u2026", "community": 33, "community_name": "Community 33", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_protocol_codec_rationale_573", "label": "Settle a stream's limits: the strictest bound of either peer wins. Taking the\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Settle a stream's limits: the strictest bound of either peer wins. Taking the\u2026", "community": 33, "community_name": "Community 33", "source_file": "node/meshnet_node/native_protocol/codec.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_protocol_conformance", "label": "conformance.py", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "conformance.py", "community": 84, "community_name": "Community 84", "source_file": "node/meshnet_node/native_protocol/conformance.py", "file_type": "code", "degree": 9}, {"id": "node_meshnet_node_native_protocol_conformance_canonical_payload", "label": "canonical_payload()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "canonical_payload()", "community": 84, "community_name": "Community 84", "source_file": "node/meshnet_node/native_protocol/conformance.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_native_protocol_conformance_canonical_session_request", "label": "canonical_session_request()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "canonical_session_request()", "community": 73, "community_name": "Community 73", "source_file": "node/meshnet_node/native_protocol/conformance.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_native_protocol_conformance_canonical_capability_report", "label": "canonical_capability_report()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "canonical_capability_report()", "community": 84, "community_name": "Community 84", "source_file": "node/meshnet_node/native_protocol/conformance.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_native_protocol_conformance_canonical_decode_step", "label": "canonical_decode_step()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "canonical_decode_step()", "community": 73, "community_name": "Community 73", "source_file": "node/meshnet_node/native_protocol/conformance.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_native_protocol_conformance_serialize", "label": "serialize()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "serialize()", "community": 84, "community_name": "Community 84", "source_file": "node/meshnet_node/native_protocol/conformance.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_native_protocol_conformance_rationale_1", "label": "Canonical conformance vectors for the native Shard protocol. Two independently-\u2026", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Canonical conformance vectors for the native Shard protocol. Two independently-\u2026", "community": 84, "community_name": "Community 84", "source_file": "node/meshnet_node/native_protocol/conformance.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_protocol_conformance_rationale_63", "label": "Deterministic bfloat16-sized payload for the canonical tensor.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Deterministic bfloat16-sized payload for the canonical tensor.", "community": 84, "community_name": "Community 84", "source_file": "node/meshnet_node/native_protocol/conformance.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_protocol_conformance_rationale_69", "label": "The canonical prefill chunk carried on a session stream.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The canonical prefill chunk carried on a session stream.", "community": 73, "community_name": "Community 73", "source_file": "node/meshnet_node/native_protocol/conformance.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_protocol_conformance_rationale_113", "label": "The canonical capability report a worker answers admission with.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The canonical capability report a worker answers admission with.", "community": 84, "community_name": "Community 84", "source_file": "node/meshnet_node/native_protocol/conformance.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_protocol_conformance_rationale_141", "label": "The DGR-006 multi-tensor decode boundary vector.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The DGR-006 multi-tensor decode boundary vector.", "community": 73, "community_name": "Community 73", "source_file": "node/meshnet_node/native_protocol/conformance.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_protocol_conformance_rationale_165", "label": "Serialize deterministically, so committed golden bytes are stable.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Serialize deterministically, so committed golden bytes are stable.", "community": 84, "community_name": "Community 84", "source_file": "node/meshnet_node/native_protocol/conformance.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_protocol_generated_init", "label": "generated/__init__.py", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "generated/__init__.py", "community": 39, "community_name": "Community 39", "source_file": "node/meshnet_node/native_protocol/generated/__init__.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2", "label": "shard_runtime_pb2.py", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "shard_runtime_pb2.py", "community": 84, "community_name": "Community 84", "source_file": "node/meshnet_node/native_protocol/generated/shard_runtime_pb2.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc", "label": "shard_runtime_pb2_grpc.py", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "shard_runtime_pb2_grpc.py", "community": 39, "community_name": "Community 39", "source_file": "node/meshnet_node/native_protocol/generated/shard_runtime_pb2_grpc.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntimestub", "label": "ShardRuntimeStub", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ShardRuntimeStub", "community": 39, "community_name": "Community 39", "source_file": "node/meshnet_node/native_protocol/generated/shard_runtime_pb2_grpc.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntimestub_init", "label": ".__init__()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 39, "community_name": "Community 39", "source_file": "node/meshnet_node/native_protocol/generated/shard_runtime_pb2_grpc.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntimeservicer", "label": "ShardRuntimeServicer", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ShardRuntimeServicer", "community": 39, "community_name": "Community 39", "source_file": "node/meshnet_node/native_protocol/generated/shard_runtime_pb2_grpc.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntimeservicer_getcapability", "label": ".GetCapability()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetCapability()", "community": 39, "community_name": "Community 39", "source_file": "node/meshnet_node/native_protocol/generated/shard_runtime_pb2_grpc.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntimeservicer_health", "label": ".Health()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".Health()", "community": 39, "community_name": "Community 39", "source_file": "node/meshnet_node/native_protocol/generated/shard_runtime_pb2_grpc.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntimeservicer_session", "label": ".Session()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".Session()", "community": 39, "community_name": "Community 39", "source_file": "node/meshnet_node/native_protocol/generated/shard_runtime_pb2_grpc.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntimeservicer_release", "label": ".Release()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".Release()", "community": 39, "community_name": "Community 39", "source_file": "node/meshnet_node/native_protocol/generated/shard_runtime_pb2_grpc.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntimeservicer_cancel", "label": ".Cancel()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".Cancel()", "community": 39, "community_name": "Community 39", "source_file": "node/meshnet_node/native_protocol/generated/shard_runtime_pb2_grpc.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_add_shardruntimeservicer_to_server", "label": "add_ShardRuntimeServicer_to_server()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "add_ShardRuntimeServicer_to_server()", "community": 39, "community_name": "Community 39", "source_file": "node/meshnet_node/native_protocol/generated/shard_runtime_pb2_grpc.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntime", "label": "ShardRuntime", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ShardRuntime", "community": 39, "community_name": "Community 39", "source_file": "node/meshnet_node/native_protocol/generated/shard_runtime_pb2_grpc.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntime_getcapability", "label": ".GetCapability()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetCapability()", "community": 39, "community_name": "Community 39", "source_file": "node/meshnet_node/native_protocol/generated/shard_runtime_pb2_grpc.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntime_health", "label": ".Health()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".Health()", "community": 39, "community_name": "Community 39", "source_file": "node/meshnet_node/native_protocol/generated/shard_runtime_pb2_grpc.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntime_session", "label": ".Session()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".Session()", "community": 39, "community_name": "Community 39", "source_file": "node/meshnet_node/native_protocol/generated/shard_runtime_pb2_grpc.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntime_release", "label": ".Release()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".Release()", "community": 39, "community_name": "Community 39", "source_file": "node/meshnet_node/native_protocol/generated/shard_runtime_pb2_grpc.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntime_cancel", "label": ".Cancel()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".Cancel()", "community": 39, "community_name": "Community 39", "source_file": "node/meshnet_node/native_protocol/generated/shard_runtime_pb2_grpc.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_rationale_29", "label": "---------------------------------------------------------------------------\u2026", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "---------------------------------------------------------------------------\u2026", "community": 39, "community_name": "Community 39", "source_file": "node/meshnet_node/native_protocol/generated/shard_runtime_pb2_grpc.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_rationale_36", "label": "Constructor. Args: channel: A grpc.Channel.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Constructor. Args: channel: A grpc.Channel.", "community": 39, "community_name": "Community 39", "source_file": "node/meshnet_node/native_protocol/generated/shard_runtime_pb2_grpc.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_rationale_69", "label": "---------------------------------------------------------------------------\u2026", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "---------------------------------------------------------------------------\u2026", "community": 39, "community_name": "Community 39", "source_file": "node/meshnet_node/native_protocol/generated/shard_runtime_pb2_grpc.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_rationale_76", "label": "What this worker can execute. Read before a route is built.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "What this worker can execute. Read before a route is built.", "community": 39, "community_name": "Community 39", "source_file": "node/meshnet_node/native_protocol/generated/shard_runtime_pb2_grpc.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_rationale_83", "label": "Live load and serving state.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Live load and serving state.", "community": 39, "community_name": "Community 39", "source_file": "node/meshnet_node/native_protocol/generated/shard_runtime_pb2_grpc.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_rationale_90", "label": "One long-lived bidirectional stream per Route Session Activation Seam. The\u2026", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "One long-lived bidirectional stream per Route Session Activation Seam. The\u2026", "community": 39, "community_name": "Community 39", "source_file": "node/meshnet_node/native_protocol/generated/shard_runtime_pb2_grpc.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_rationale_102", "label": "Drop session state out of band. Idempotent.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Drop session state out of band. Idempotent.", "community": 39, "community_name": "Community 39", "source_file": "node/meshnet_node/native_protocol/generated/shard_runtime_pb2_grpc.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_rationale_109", "label": "Cancel out of band, on a fresh call. In-band CancelSignal is preferred, but a\u2026", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Cancel out of band, on a fresh call. In-band CancelSignal is preferred, but a\u2026", "community": 39, "community_name": "Community 39", "source_file": "node/meshnet_node/native_protocol/generated/shard_runtime_pb2_grpc.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_rationale_156", "label": "---------------------------------------------------------------------------\u2026", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "---------------------------------------------------------------------------\u2026", "community": 39, "community_name": "Community 39", "source_file": "node/meshnet_node/native_protocol/generated/shard_runtime_pb2_grpc.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_performance_contract", "label": "performance_contract.py", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "performance_contract.py", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "code", "degree": 23}, {"id": "node_meshnet_node_performance_contract_performancecontracterror", "label": "PerformanceContractError", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "PerformanceContractError", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "code", "degree": 11}, {"id": "node_meshnet_node_performance_contract_py_valueerror", "label": "ValueError", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ValueError", "community": 15, "community_name": "Performance Contracts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_performance_contract_contractthresholds", "label": "ContractThresholds", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ContractThresholds", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_performance_contract_contractthresholds_to_dict", "label": ".to_dict()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_performance_contract_performancecontract", "label": "PerformanceContract", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PerformanceContract", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "code", "degree": 9}, {"id": "node_meshnet_node_performance_contract_performancecontract_to_dict", "label": ".to_dict()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_performance_contract_recipe_entries", "label": "_recipe_entries()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_recipe_entries()", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_performance_contract_py_any", "label": "Any", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Any", "community": 15, "community_name": "Performance Contracts", "source_file": "", "file_type": "code", "degree": 12}, {"id": "node_meshnet_node_performance_contract_cell", "label": "_cell()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_cell()", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_performance_contract_resident_bytes", "label": "_resident_bytes()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_resident_bytes()", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_performance_contract_ratio", "label": "_ratio()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_ratio()", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_performance_contract_canonical_sha256", "label": "_canonical_sha256()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_canonical_sha256()", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_performance_contract_report_signing_payload", "label": "report_signing_payload()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "report_signing_payload()", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_performance_contract_decode_base64", "label": "_decode_base64()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_decode_base64()", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_performance_contract_verify_real_provenance", "label": "_verify_real_provenance()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_verify_real_provenance()", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_performance_contract_validate_report", "label": "_validate_report()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_validate_report()", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_performance_contract_recipeevaluation", "label": "RecipeEvaluation", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "RecipeEvaluation", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_performance_contract_recipeevaluation_to_dict", "label": ".to_dict()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_performance_contract_contractevaluation", "label": "ContractEvaluation", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ContractEvaluation", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_performance_contract_contractevaluation_to_dict", "label": ".to_dict()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_performance_contract_evaluate_recipe", "label": "_evaluate_recipe()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_evaluate_recipe()", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_performance_contract_evaluate_contract", "label": "evaluate_contract()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "evaluate_contract()", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "code", "degree": 9}, {"id": "node_meshnet_node_performance_contract_parse_contract", "label": "parse_contract()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "parse_contract()", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_performance_contract_load_contract", "label": "load_contract()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "load_contract()", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_performance_contract_py_path", "label": "Path", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Path", "community": 15, "community_name": "Performance Contracts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_performance_contract_baseline_from_report", "label": "baseline_from_report()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "baseline_from_report()", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_performance_contract_rationale_1", "label": "The versioned safetensors-versus-GGUF performance contract. The contract is the\u2026", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The versioned safetensors-versus-GGUF performance contract. The contract is the\u2026", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_performance_contract_rationale_53", "label": "Raised when a contract is missing, malformed, or of an unsupported version.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Raised when a contract is missing, malformed, or of an unsupported version.", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_performance_contract_rationale_58", "label": "The locked decision thresholds. Every value is a ratio of a GGUF recipe's\u2026", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The locked decision thresholds. Every value is a ratio of a GGUF recipe's\u2026", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_performance_contract_rationale_95", "label": "A locked, versioned contract plus the baseline it was locked against.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "A locked, versioned contract plus the baseline it was locked against.", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_performance_contract_rationale_146", "label": "Ratio guarded against a zero reference, which means \"not measured\".", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Ratio guarded against a zero reference, which means "not measured".", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_performance_contract_rationale_158", "label": "Canonical report bytes covered by the Ed25519 signature.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Canonical report bytes covered by the Ed25519 signature.", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_performance_contract_rationale_218", "label": "Fail closed when a report is not the experiment the contract locked.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Fail closed when a report is not the experiment the contract locked.", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_performance_contract_rationale_473", "label": "How one GGUF recipe fared against the reference under the contract.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "How one GGUF recipe fared against the reference under the contract.", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_performance_contract_rationale_495", "label": "The release-gate answer: a verdict plus every reason behind it.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The release-gate answer: a verdict plus every reason behind it.", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_performance_contract_rationale_681", "label": "Judge a benchmark report against the locked contract. Only performance-fit\u2026", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Judge a benchmark report against the locked contract. Only performance-fit\u2026", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_performance_contract_rationale_776", "label": "Validate an already-decoded contract document.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Validate an already-decoded contract document.", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_performance_contract_rationale_831", "label": "Load and validate the contract at ``path``.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Load and validate the contract at ``path``.", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_performance_contract_rationale_848", "label": "Distil the reference numbers a later gate needs to compare against.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Distil the reference numbers a later gate needs to compare against.", "community": 15, "community_name": "Performance Contracts", "source_file": "node/meshnet_node/performance_contract.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_protocol", "label": "protocol.py", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "protocol.py", "community": 43, "community_name": "Community 43", "source_file": "node/meshnet_node/protocol.py", "file_type": "code", "degree": 9}, {"id": "node_meshnet_node_protocol_canonical_json", "label": "_canonical_json()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_canonical_json()", "community": 43, "community_name": "Community 43", "source_file": "node/meshnet_node/protocol.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_protocol_py_any", "label": "Any", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Any", "community": 43, "community_name": "Community 43", "source_file": "", "file_type": "code", "degree": 10}, {"id": "node_meshnet_node_protocol_sha256_hex", "label": "_sha256_hex()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_sha256_hex()", "community": 43, "community_name": "Community 43", "source_file": "node/meshnet_node/protocol.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_protocol_normalize_shape", "label": "_normalize_shape()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_normalize_shape()", "community": 43, "community_name": "Community 43", "source_file": "node/meshnet_node/protocol.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_protocol_fragment_bytes", "label": "_fragment_bytes()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_fragment_bytes()", "community": 43, "community_name": "Community 43", "source_file": "node/meshnet_node/protocol.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_protocol_tensorfragment", "label": "TensorFragment", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "TensorFragment", "community": 43, "community_name": "Community 43", "source_file": "node/meshnet_node/protocol.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_protocol_tensorfragment_from_bytes", "label": ".from_bytes()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".from_bytes()", "community": 43, "community_name": "Community 43", "source_file": "node/meshnet_node/protocol.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_protocol_tensorfragment_to_dict", "label": ".to_dict()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 43, "community_name": "Community 43", "source_file": "node/meshnet_node/protocol.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_protocol_tensorfragment_from_dict", "label": ".from_dict()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".from_dict()", "community": 43, "community_name": "Community 43", "source_file": "node/meshnet_node/protocol.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_protocol_tensorfragment_validate", "label": ".validate()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".validate()", "community": 43, "community_name": "Community 43", "source_file": "node/meshnet_node/protocol.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_protocol_namedtensor", "label": "NamedTensor", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "NamedTensor", "community": 43, "community_name": "Community 43", "source_file": "node/meshnet_node/protocol.py", "file_type": "code", "degree": 12}, {"id": "node_meshnet_node_protocol_namedtensor_from_bytes", "label": ".from_bytes()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".from_bytes()", "community": 43, "community_name": "Community 43", "source_file": "node/meshnet_node/protocol.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_protocol_namedtensor_body", "label": ".body()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".body()", "community": 43, "community_name": "Community 43", "source_file": "node/meshnet_node/protocol.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_protocol_namedtensor_validate", "label": ".validate()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".validate()", "community": 43, "community_name": "Community 43", "source_file": "node/meshnet_node/protocol.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_protocol_namedtensor_to_dict", "label": ".to_dict()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 43, "community_name": "Community 43", "source_file": "node/meshnet_node/protocol.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_protocol_namedtensor_from_dict", "label": ".from_dict()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".from_dict()", "community": 43, "community_name": "Community 43", "source_file": "node/meshnet_node/protocol.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_protocol_activationenvelope", "label": "ActivationEnvelope", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ActivationEnvelope", "community": 87, "community_name": "Community 87", "source_file": "node/meshnet_node/protocol.py", "file_type": "code", "degree": 21}, {"id": "node_meshnet_node_protocol_activationenvelope_from_tensor_payload", "label": ".from_tensor_payload()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".from_tensor_payload()", "community": 87, "community_name": "Community 87", "source_file": "node/meshnet_node/protocol.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_protocol_activationenvelope_to_tensor_payload", "label": ".to_tensor_payload()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_tensor_payload()", "community": 87, "community_name": "Community 87", "source_file": "node/meshnet_node/protocol.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_protocol_activationenvelope_tensor", "label": ".tensor()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".tensor()", "community": 87, "community_name": "Community 87", "source_file": "node/meshnet_node/protocol.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_protocol_activationenvelope_to_dict", "label": ".to_dict()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 43, "community_name": "Community 43", "source_file": "node/meshnet_node/protocol.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_protocol_activationenvelope_to_bytes", "label": ".to_bytes()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_bytes()", "community": 43, "community_name": "Community 43", "source_file": "node/meshnet_node/protocol.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_protocol_activationenvelope_from_bytes", "label": ".from_bytes()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".from_bytes()", "community": 43, "community_name": "Community 43", "source_file": "node/meshnet_node/protocol.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_protocol_activationenvelope_validate", "label": ".validate()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".validate()", "community": 43, "community_name": "Community 43", "source_file": "node/meshnet_node/protocol.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_protocol_rationale_1", "label": "Versioned activation-stream envelope for shard hops. The transport still moves\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Versioned activation-stream envelope for shard hops. The transport still moves\u2026", "community": 43, "community_name": "Community 43", "source_file": "node/meshnet_node/protocol.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_protocol_rationale_46", "label": "One bounded chunk of a named tensor.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "One bounded chunk of a named tensor.", "community": 43, "community_name": "Community 43", "source_file": "node/meshnet_node/protocol.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_protocol_rationale_104", "label": "A tensor named within a versioned activation envelope.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "A tensor named within a versioned activation envelope.", "community": 43, "community_name": "Community 43", "source_file": "node/meshnet_node/protocol.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_protocol_rationale_197", "label": "Versioned envelope for shard activation traffic.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Versioned envelope for shard activation traffic.", "community": 87, "community_name": "Community 87", "source_file": "node/meshnet_node/protocol.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark", "label": "recipe_benchmark.py", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.4, "font": {"size": 12, "color": "#ffffff"}, "title": "recipe_benchmark.py", "community": 52, "community_name": "Community 52", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 30}, {"id": "node_meshnet_node_recipe_benchmark_lane", "label": "Lane", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Lane", "community": 52, "community_name": "Community 52", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 14}, {"id": "node_meshnet_node_recipe_benchmark_py_str", "label": "str", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "str", "community": 52, "community_name": "Community 52", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_py_enum", "label": "Enum", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Enum", "community": 52, "community_name": "Community 52", "source_file": "", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_recipe_benchmark_benchmarkerror", "label": "BenchmarkError", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BenchmarkError", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 22}, {"id": "node_meshnet_node_recipe_benchmark_py_runtimeerror", "label": "RuntimeError", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "RuntimeError", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_samplingpolicy", "label": "SamplingPolicy", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "SamplingPolicy", "community": 58, "community_name": "Community 58", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 12}, {"id": "node_meshnet_node_recipe_benchmark_samplingpolicy_to_dict", "label": ".to_dict()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 58, "community_name": "Community 58", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_promptspec", "label": "PromptSpec", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PromptSpec", "community": 58, "community_name": "Community 58", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_recipe_benchmark_promptspec_to_dict", "label": ".to_dict()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 58, "community_name": "Community 58", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_benchmarkplan", "label": "BenchmarkPlan", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "BenchmarkPlan", "community": 53, "community_name": "Community 53", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 11}, {"id": "node_meshnet_node_recipe_benchmark_benchmarkplan_post_init", "label": ".__post_init__()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__post_init__()", "community": 53, "community_name": "Community 53", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_recipe_benchmark_benchmarkplan_to_dict", "label": ".to_dict()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 53, "community_name": "Community 53", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_recipe_benchmark_recipespec", "label": "RecipeSpec", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "RecipeSpec", "community": 47, "community_name": "Community 47", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 9}, {"id": "node_meshnet_node_recipe_benchmark_recipespec_to_dict", "label": ".to_dict()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 47, "community_name": "Community 47", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_loadstats", "label": "LoadStats", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "LoadStats", "community": 59, "community_name": "Community 59", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 10}, {"id": "node_meshnet_node_recipe_benchmark_loadstats_to_dict", "label": ".to_dict()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 59, "community_name": "Community 59", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_generationsample", "label": "GenerationSample", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GenerationSample", "community": 58, "community_name": "Community 58", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_recipe_benchmark_recipedriver", "label": "RecipeDriver", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "RecipeDriver", "community": 47, "community_name": "Community 47", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 10}, {"id": "protocol", "label": "Protocol", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Protocol", "community": 47, "community_name": "Community 47", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_recipedriver_load", "label": ".load()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".load()", "community": 47, "community_name": "Community 47", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_recipe_benchmark_recipedriver_generate", "label": ".generate()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".generate()", "community": 47, "community_name": "Community 47", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_recipe_benchmark_recipedriver_memory_probe", "label": ".memory_probe()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".memory_probe()", "community": 47, "community_name": "Community 47", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_recipe_benchmark_recipedriver_close", "label": ".close()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".close()", "community": 47, "community_name": "Community 47", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_recipe_benchmark_requestoutcome", "label": "RequestOutcome", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "RequestOutcome", "community": 52, "community_name": "Community 52", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_recipe_benchmark_requestoutcome_to_dict", "label": ".to_dict()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 52, "community_name": "Community 52", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_percentile", "label": "_percentile()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_percentile()", "community": 52, "community_name": "Community 52", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_recipe_benchmark_mean", "label": "_mean()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_mean()", "community": 52, "community_name": "Community 52", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_recipe_benchmark_concurrencymetrics", "label": "ConcurrencyMetrics", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ConcurrencyMetrics", "community": 52, "community_name": "Community 52", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_recipe_benchmark_concurrencymetrics_to_dict", "label": ".to_dict()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 52, "community_name": "Community 52", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_summarize_concurrency", "label": "summarize_concurrency()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "summarize_concurrency()", "community": 52, "community_name": "Community 52", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_recipe_benchmark_recipemeasurement", "label": "RecipeMeasurement", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "RecipeMeasurement", "community": 53, "community_name": "Community 53", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 12}, {"id": "node_meshnet_node_recipe_benchmark_recipemeasurement_available", "label": ".available()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".available()", "community": 53, "community_name": "Community 53", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_recipemeasurement_outputs_by_prompt", "label": ".outputs_by_prompt()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".outputs_by_prompt()", "community": 53, "community_name": "Community 53", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_recipe_benchmark_recipemeasurement_to_dict", "label": ".to_dict()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 53, "community_name": "Community 53", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_recipe_benchmark_driftreport", "label": "DriftReport", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "DriftReport", "community": 53, "community_name": "Community 53", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_recipe_benchmark_driftreport_to_dict", "label": ".to_dict()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 53, "community_name": "Community 53", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_recipe_benchmark_first_divergence", "label": "_first_divergence()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_first_divergence()", "community": 53, "community_name": "Community 53", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_recipe_benchmark_compute_drift", "label": "compute_drift()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "compute_drift()", "community": 53, "community_name": "Community 53", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_recipe_benchmark_peakmemory", "label": "_PeakMemory", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_PeakMemory", "community": 47, "community_name": "Community 47", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_recipe_benchmark_peakmemory_init", "label": ".__init__()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 47, "community_name": "Community 47", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_recipe_benchmark_peakmemory_sample", "label": ".sample()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".sample()", "community": 47, "community_name": "Community 47", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_recipe_benchmark_peakmemory_sample_until", "label": ".sample_until()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".sample_until()", "community": 47, "community_name": "Community 47", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_recipe_benchmark_py_event", "label": "Event", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Event", "community": 47, "community_name": "Community 47", "source_file": "", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_recipe_benchmark_run_request", "label": "_run_request()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "_run_request()", "community": 47, "community_name": "Community 47", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 10}, {"id": "node_meshnet_node_recipe_benchmark_measure_recipe", "label": "measure_recipe()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "measure_recipe()", "community": 47, "community_name": "Community 47", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 16}, {"id": "node_meshnet_node_recipe_benchmark_build_report", "label": "build_report()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "build_report()", "community": 53, "community_name": "Community 53", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 10}, {"id": "node_meshnet_node_recipe_benchmark_py_any", "label": "Any", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Any", "community": 53, "community_name": "Community 53", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_format_summary", "label": "format_summary()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "format_summary()", "community": 52, "community_name": "Community 52", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_recipe_benchmark_main", "label": "main()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 52, "community_name": "Community 52", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_recipe_benchmark_rationale_1", "label": "Controlled safetensors-versus-GGUF recipe benchmark. This is a *model recipe*\u2026", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Controlled safetensors-versus-GGUF recipe benchmark. This is a *model recipe*\u2026", "community": 52, "community_name": "Community 52", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_rationale_45", "label": "Why a recipe is being measured at all. ``QUALITY`` recipes carry near-lossless\u2026", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Why a recipe is being measured at all. ``QUALITY`` recipes carry near-lossless\u2026", "community": 52, "community_name": "Community 52", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_rationale_59", "label": "Raised when a benchmark cannot be run as specified.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Raised when a benchmark cannot be run as specified.", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_rationale_64", "label": "The sampling policy every recipe must be given, identically. Greedy by default:\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The sampling policy every recipe must be given, identically. Greedy by default:\u2026", "community": 58, "community_name": "Community 58", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_rationale_83", "label": "One fixed prompt, tagged with the context length it is meant to exercise.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "One fixed prompt, tagged with the context length it is meant to exercise.", "community": 58, "community_name": "Community 58", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_rationale_95", "label": "The controlled variables: identical for every recipe in a report. A plan is the\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The controlled variables: identical for every recipe in a report. A plan is the\u2026", "community": 53, "community_name": "Community 53", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_rationale_137", "label": "One runtime recipe under test. ``is_reference`` marks the single recipe every\u2026", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "One runtime recipe under test. ``is_reference`` marks the single recipe every\u2026", "community": 47, "community_name": "Community 47", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_rationale_165", "label": "What loading the recipe cost, before any token is generated.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "What loading the recipe cost, before any token is generated.", "community": 59, "community_name": "Community 59", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_rationale_179", "label": "One completed generation as reported by a driver. ``prefill_ms``/``decode_ms``\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "One completed generation as reported by a driver. ``prefill_ms``/``decode_ms``\u2026", "community": 58, "community_name": "Community 58", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_rationale_199", "label": "The seam every runtime implements; the measurement core knows nothing else.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The seam every runtime implements; the measurement core knows nothing else.", "community": 47, "community_name": "Community 47", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_rationale_202", "label": "Load the artifact and return its cost.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Load the artifact and return its cost.", "community": 47, "community_name": "Community 47", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_rationale_205", "label": "Run one complete generation under the given sampling policy.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Run one complete generation under the given sampling policy.", "community": 47, "community_name": "Community 47", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_rationale_208", "label": "Return ``(rss_bytes, vram_bytes)`` observed right now.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return ``(rss_bytes, vram_bytes)`` observed right now.", "community": 47, "community_name": "Community 47", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_rationale_216", "label": "One request attempt, successful or not. A failure is a first-class result, not\u2026", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "One request attempt, successful or not. A failure is a first-class result, not\u2026", "community": 52, "community_name": "Community 52", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_rationale_243", "label": "Nearest-rank percentile; 0.0 for an empty sample.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Nearest-rank percentile; 0.0 for an empty sample.", "community": 52, "community_name": "Community 52", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_rationale_257", "label": "Aggregate metrics for one recipe at one concurrency level.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Aggregate metrics for one recipe at one concurrency level.", "community": 52, "community_name": "Community 52", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_rationale_288", "label": "Aggregate one recipe/concurrency cell. Per-request rates are averaged over\u2026", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Aggregate one recipe/concurrency cell. Per-request rates are averaged over\u2026", "community": 52, "community_name": "Community 52", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_rationale_328", "label": "Everything measured for one recipe across every concurrency level.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Everything measured for one recipe across every concurrency level.", "community": 53, "community_name": "Community 53", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_rationale_341", "label": "First successful output per prompt, at the lowest concurrency measured. Drift\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "First successful output per prompt, at the lowest concurrency measured. Drift\u2026", "community": 53, "community_name": "Community 53", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_rationale_370", "label": "Output drift of one recipe against the reference recipe. ``advisory`` is true\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Output drift of one recipe against the reference recipe. ``advisory`` is true\u2026", "community": 53, "community_name": "Community 53", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_rationale_400", "label": "Index of the first differing character, or -1 when the strings agree.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Index of the first differing character, or -1 when the strings agree.", "community": 53, "community_name": "Community 53", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_rationale_411", "label": "Compare one recipe's greedy outputs with the reference recipe's.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Compare one recipe's greedy outputs with the reference recipe's.", "community": 53, "community_name": "Community 53", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_rationale_447", "label": "Continuously sample a driver's memory while requests are in flight.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Continuously sample a driver's memory while requests are in flight.", "community": 47, "community_name": "Community 47", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_rationale_463", "label": "Sample until ``stop`` is set, including one final post-request probe.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Sample until ``stop`` is set, including one final post-request probe.", "community": 47, "community_name": "Community 47", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_rationale_516", "label": "Load one recipe and run the whole plan against it. The driver is closed exactly\u2026", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Load one recipe and run the whole plan against it. The driver is closed exactly\u2026", "community": 47, "community_name": "Community 47", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_rationale_586", "label": "Assemble the machine-readable benchmark document. ``evidence_class`` is one of\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Assemble the machine-readable benchmark document. ``evidence_class`` is one of\u2026", "community": 53, "community_name": "Community 53", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_benchmark_rationale_626", "label": "Render the human-readable companion to the JSON artifact.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Render the human-readable companion to the JSON artifact.", "community": 52, "community_name": "Community 52", "source_file": "node/meshnet_node/recipe_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_drivers", "label": "recipe_drivers.py", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 16.8, "font": {"size": 12, "color": "#ffffff"}, "title": "recipe_drivers.py", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 38}, {"id": "node_meshnet_node_recipe_drivers_real_inference_enabled", "label": "real_inference_enabled()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "real_inference_enabled()", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_recipe_drivers_require_real_inference", "label": "require_real_inference()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "require_real_inference()", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_recipe_drivers_load_evidence_signing_key", "label": "_load_evidence_signing_key()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_load_evidence_signing_key()", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 5}, {"id": "ed25519privatekey", "label": "Ed25519PrivateKey", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Ed25519PrivateKey", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_recipe_drivers_utc_now", "label": "_utc_now()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_utc_now()", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_recipe_drivers_sign_report", "label": "_sign_report()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_sign_report()", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_recipe_drivers_py_any", "label": "Any", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Any", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "", "file_type": "code", "degree": 10}, {"id": "node_meshnet_node_recipe_drivers_process_rss", "label": "_process_rss()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_process_rss()", "community": 59, "community_name": "Community 59", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_recipe_drivers_directory_bytes", "label": "_directory_bytes()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_directory_bytes()", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_recipe_drivers_py_path", "label": "Path", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Path", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_recipe_drivers_artifact_sha256", "label": "_artifact_sha256()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_artifact_sha256()", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_recipe_drivers_host_manifest", "label": "_host_manifest()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_host_manifest()", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_recipe_drivers_validate_config", "label": "_validate_config()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_validate_config()", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_recipe_drivers_transformersdriver", "label": "TransformersDriver", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.4, "font": {"size": 0, "color": "#ffffff"}, "title": "TransformersDriver", "community": 58, "community_name": "Community 58", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 19}, {"id": "node_meshnet_node_recipe_drivers_transformersdriver_init", "label": ".__init__()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 58, "community_name": "Community 58", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_recipe_drivers_transformersdriver_load", "label": ".load()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".load()", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_recipe_drivers_transformersdriver_vram_bytes", "label": "._vram_bytes()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._vram_bytes()", "community": 58, "community_name": "Community 58", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_recipe_drivers_transformersdriver_generate", "label": ".generate()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".generate()", "community": 58, "community_name": "Community 58", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_recipe_drivers_transformersdriver_select", "label": "._select()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._select()", "community": 58, "community_name": "Community 58", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_recipe_drivers_transformersdriver_memory_probe", "label": ".memory_probe()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".memory_probe()", "community": 58, "community_name": "Community 58", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_recipe_drivers_transformersdriver_close", "label": ".close()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".close()", "community": 58, "community_name": "Community 58", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_recipe_drivers_free_port", "label": "_free_port()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_free_port()", "community": 59, "community_name": "Community 59", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_recipe_drivers_gpu_offload_evidence", "label": "_gpu_offload_evidence()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_gpu_offload_evidence()", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_recipe_drivers_gpu_layer_config_detail", "label": "_gpu_layer_config_detail()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_gpu_layer_config_detail()", "community": 59, "community_name": "Community 59", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_recipe_drivers_llamacppserverdriver", "label": "LlamaCppServerDriver", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "LlamaCppServerDriver", "community": 59, "community_name": "Community 59", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 21}, {"id": "node_meshnet_node_recipe_drivers_llamacppserverdriver_init", "label": ".__init__()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 59, "community_name": "Community 59", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_recipe_drivers_llamacppserverdriver_url", "label": "._url()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "._url()", "community": 59, "community_name": "Community 59", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_recipe_drivers_llamacppserverdriver_log_text", "label": "._log_text()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._log_text()", "community": 59, "community_name": "Community 59", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_recipe_drivers_llamacppserverdriver_log_excerpt", "label": "._log_excerpt()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._log_excerpt()", "community": 59, "community_name": "Community 59", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_recipe_drivers_llamacppserverdriver_load", "label": ".load()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".load()", "community": 59, "community_name": "Community 59", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 10}, {"id": "node_meshnet_node_recipe_drivers_llamacppserverdriver_await_health", "label": "._await_health()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._await_health()", "community": 59, "community_name": "Community 59", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_recipe_drivers_llamacppserverdriver_generate", "label": ".generate()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".generate()", "community": 58, "community_name": "Community 58", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_recipe_drivers_llamacppserverdriver_memory_probe", "label": ".memory_probe()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".memory_probe()", "community": 59, "community_name": "Community 59", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_recipe_drivers_llamacppserverdriver_close", "label": ".close()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".close()", "community": 59, "community_name": "Community 59", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_recipe_drivers_build_driver", "label": "build_driver()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "build_driver()", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 9}, {"id": "recipedriverbundle", "label": "RecipeDriverBundle", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "RecipeDriverBundle", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_recipe_drivers_plan_from_config", "label": "_plan_from_config()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_plan_from_config()", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_recipe_drivers_recipe_from_config", "label": "_recipe_from_config()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_recipe_from_config()", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_recipe_drivers_run_configured_benchmark", "label": "run_configured_benchmark()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "run_configured_benchmark()", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_recipe_drivers_run_configured_gpu_diagnostic", "label": "run_configured_gpu_diagnostic()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "run_configured_gpu_diagnostic()", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_recipe_drivers_producer_for_profile", "label": "_producer_for_profile()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_producer_for_profile()", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_recipe_drivers_run_profiled_benchmark", "label": "_run_profiled_benchmark()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_run_profiled_benchmark()", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "code", "degree": 22}, {"id": "node_meshnet_node_recipe_drivers_rationale_1", "label": "Real runtime drivers for the recipe benchmark. This module is the only place\u2026", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Real runtime drivers for the recipe benchmark. This module is the only place\u2026", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_drivers_rationale_73", "label": "Real runtimes stay off unless the operator opts in explicitly.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Real runtimes stay off unless the operator opts in explicitly.", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_drivers_rationale_116", "label": "Resident bytes for a process and its children, or 0 when unobservable.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Resident bytes for a process and its children, or 0 when unobservable.", "community": 59, "community_name": "Community 59", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_drivers_rationale_141", "label": "Hash an artifact file or a deterministic directory content manifest. A file\u2026", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Hash an artifact file or a deterministic directory content manifest. A file\u2026", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_drivers_rationale_172", "label": "Capture non-secret host facts with the report rather than trusting prose.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Capture non-secret host facts with the report rather than trusting prose.", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_drivers_rationale_223", "label": "Reject comparisons that mix models, artifacts, devices, or budgets.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Reject comparisons that mix models, artifacts, devices, or budgets.", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_drivers_rationale_336", "label": "The current Transformers/safetensors recipe: the correctness reference.\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The current Transformers/safetensors recipe: the correctness reference.\u2026", "community": 58, "community_name": "Community 58", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_drivers_rationale_488", "label": "Extract measured ROCm device and layer placement from llama-server logs.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Extract measured ROCm device and layer placement from llama-server logs.", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_drivers_rationale_521", "label": "The whole-model llama.cpp/GGUF recipe, driven through ``llama-server``.\u2026", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The whole-model llama.cpp/GGUF recipe, driven through ``llama-server``.\u2026", "community": 59, "community_name": "Community 59", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_drivers_rationale_742", "label": "Construct the driver named by a recipe's ``driver`` block.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Construct the driver named by a recipe's ``driver`` block.", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_drivers_rationale_789", "label": "Run contract-v1 evidence through the CPU-only, fail-closed profile.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Run contract-v1 evidence through the CPU-only, fail-closed profile.", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_drivers_rationale_794", "label": "Run signed ROCm diagnostics that are intentionally ineligible for v1.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Run signed ROCm diagnostics that are intentionally ineligible for v1.", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_drivers_rationale_807", "label": "Validate a closed profile and derive its producer before measurement.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Validate a closed profile and derive its producer before measurement.", "community": 19, "community_name": "Benchmark Recipe Drivers", "source_file": "node/meshnet_node/recipe_drivers.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_manifest", "label": "recipe_manifest.py", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "recipe_manifest.py", "community": 23, "community_name": "Community 23", "source_file": "node/meshnet_node/recipe_manifest.py", "file_type": "code", "degree": 12}, {"id": "node_meshnet_node_recipe_manifest_recipemanifesterror", "label": "RecipeManifestError", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "RecipeManifestError", "community": 23, "community_name": "Community 23", "source_file": "node/meshnet_node/recipe_manifest.py", "file_type": "code", "degree": 15}, {"id": "node_meshnet_node_recipe_manifest_py_valueerror", "label": "ValueError", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ValueError", "community": 23, "community_name": "Community 23", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_recipe_manifest_recipe", "label": "Recipe", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Recipe", "community": 23, "community_name": "Community 23", "source_file": "node/meshnet_node/recipe_manifest.py", "file_type": "code", "degree": 25}, {"id": "node_meshnet_node_recipe_manifest_recipe_to_dict", "label": ".to_dict()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 23, "community_name": "Community 23", "source_file": "node/meshnet_node/recipe_manifest.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_recipe_manifest_recipemanifest", "label": "RecipeManifest", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.6, "font": {"size": 12, "color": "#ffffff"}, "title": "RecipeManifest", "community": 23, "community_name": "Community 23", "source_file": "node/meshnet_node/recipe_manifest.py", "file_type": "code", "degree": 26}, {"id": "node_meshnet_node_recipe_manifest_recipemanifest_get", "label": ".get()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".get()", "community": 23, "community_name": "Community 23", "source_file": "node/meshnet_node/recipe_manifest.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_recipe_manifest_recipemanifest_require", "label": ".require()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".require()", "community": 23, "community_name": "Community 23", "source_file": "node/meshnet_node/recipe_manifest.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_recipe_manifest_recipemanifest_ids", "label": ".ids()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".ids()", "community": 23, "community_name": "Community 23", "source_file": "node/meshnet_node/recipe_manifest.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_recipe_manifest_recipemanifest_to_dict", "label": ".to_dict()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 23, "community_name": "Community 23", "source_file": "node/meshnet_node/recipe_manifest.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_recipe_manifest_require_mapping", "label": "_require_mapping()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_require_mapping()", "community": 23, "community_name": "Community 23", "source_file": "node/meshnet_node/recipe_manifest.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_recipe_manifest_py_any", "label": "Any", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Any", "community": 23, "community_name": "Community 23", "source_file": "", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_recipe_manifest_require_text", "label": "_require_text()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_require_text()", "community": 23, "community_name": "Community 23", "source_file": "node/meshnet_node/recipe_manifest.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_recipe_manifest_parse_recipe", "label": "_parse_recipe()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_parse_recipe()", "community": 23, "community_name": "Community 23", "source_file": "node/meshnet_node/recipe_manifest.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_recipe_manifest_parse_recipe_manifest", "label": "parse_recipe_manifest()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "parse_recipe_manifest()", "community": 23, "community_name": "Community 23", "source_file": "node/meshnet_node/recipe_manifest.py", "file_type": "code", "degree": 10}, {"id": "node_meshnet_node_recipe_manifest_load_recipe_manifest", "label": "load_recipe_manifest()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "load_recipe_manifest()", "community": 23, "community_name": "Community 23", "source_file": "node/meshnet_node/recipe_manifest.py", "file_type": "code", "degree": 10}, {"id": "node_meshnet_node_recipe_manifest_py_path", "label": "Path", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Path", "community": 23, "community_name": "Community 23", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_recipe_manifest_rationale_1", "label": "Local, versioned recipe manifest. A recipe is *data*: a named, versioned set of\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Local, versioned recipe manifest. A recipe is *data*: a named, versioned set of\u2026", "community": 23, "community_name": "Community 23", "source_file": "node/meshnet_node/recipe_manifest.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_manifest_rationale_30", "label": "Raised when a recipe manifest is missing, malformed, or unsupported. The\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Raised when a recipe manifest is missing, malformed, or unsupported. The\u2026", "community": 23, "community_name": "Community 23", "source_file": "node/meshnet_node/recipe_manifest.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_manifest_rationale_40", "label": "One named, versioned execution recipe.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "One named, versioned execution recipe.", "community": 23, "community_name": "Community 23", "source_file": "node/meshnet_node/recipe_manifest.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_manifest_rationale_60", "label": "A parsed, validated recipe catalogue.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "A parsed, validated recipe catalogue.", "community": 23, "community_name": "Community 23", "source_file": "node/meshnet_node/recipe_manifest.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_manifest_rationale_74", "label": "Return the named recipe, or raise listing what this catalogue offers.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return the named recipe, or raise listing what this catalogue offers.", "community": 23, "community_name": "Community 23", "source_file": "node/meshnet_node/recipe_manifest.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_manifest_rationale_140", "label": "Validate an already-decoded manifest document.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Validate an already-decoded manifest document.", "community": 23, "community_name": "Community 23", "source_file": "node/meshnet_node/recipe_manifest.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_recipe_manifest_rationale_191", "label": "Load the packaged manifest, or one at ``path``. No network access and no remote\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Load the packaged manifest, or one at ``path``. No network access and no remote\u2026", "community": 23, "community_name": "Community 23", "source_file": "node/meshnet_node/recipe_manifest.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_relay_bridge", "label": "relay_bridge.py", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "relay_bridge.py", "community": 30, "community_name": "Community 30", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "code", "degree": 12}, {"id": "node_meshnet_node_relay_bridge_ws_max_size", "label": "ws_max_size()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ws_max_size()", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_relay_bridge_encode_binary_frame", "label": "encode_binary_frame()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "encode_binary_frame()", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_relay_bridge_decode_binary_frame", "label": "decode_binary_frame()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "decode_binary_frame()", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_relay_bridge_relaybridgeinfo", "label": "RelayBridgeInfo", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "RelayBridgeInfo", "community": 30, "community_name": "Community 30", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_relay_bridge_make_envelope", "label": "_make_envelope()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_make_envelope()", "community": 30, "community_name": "Community 30", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_relay_bridge_max_concurrency_from_env", "label": "_max_concurrency_from_env()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_max_concurrency_from_env()", "community": 30, "community_name": "Community 30", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_relay_bridge_loopbackhttpclientpool", "label": "_LoopbackHttpClientPool", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_LoopbackHttpClientPool", "community": 30, "community_name": "Community 30", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_relay_bridge_loopbackhttpclientpool_init", "label": ".__init__()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 30, "community_name": "Community 30", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_relay_bridge_loopbackhttpclientpool_connection", "label": "._connection()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._connection()", "community": 30, "community_name": "Community 30", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_relay_bridge_py_httpconnection", "label": "HTTPConnection", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "HTTPConnection", "community": 30, "community_name": "Community 30", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_relay_bridge_loopbackhttpclientpool_request", "label": ".request()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".request()", "community": 30, "community_name": "Community 30", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_relay_bridge_loopbackhttpclientpool_discard", "label": ".discard()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".discard()", "community": 30, "community_name": "Community 30", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_relay_bridge_loopbackhttpclientpool_close", "label": ".close()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".close()", "community": 30, "community_name": "Community 30", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_relay_bridge_relayhttpbridge", "label": "RelayHttpBridge", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "RelayHttpBridge", "community": 30, "community_name": "Community 30", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "code", "degree": 15}, {"id": "node_meshnet_node_relay_bridge_relayhttpbridge_init", "label": ".__init__()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 30, "community_name": "Community 30", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_relay_bridge_relayhttpbridge_relay_addr", "label": ".relay_addr()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".relay_addr()", "community": 30, "community_name": "Community 30", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_relay_bridge_relayhttpbridge_start", "label": ".start()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".start()", "community": 30, "community_name": "Community 30", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_relay_bridge_relayhttpbridge_wait_connected", "label": ".wait_connected()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".wait_connected()", "community": 30, "community_name": "Community 30", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_relay_bridge_relayhttpbridge_stop", "label": ".stop()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".stop()", "community": 30, "community_name": "Community 30", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_relay_bridge_relayhttpbridge_run", "label": "._run()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._run()", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_relay_bridge_relayhttpbridge_send_response_frame", "label": "._send_response_frame()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._send_response_frame()", "community": 30, "community_name": "Community 30", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_relay_bridge_relayhttpbridge_send_binary_response_frame", "label": "._send_binary_response_frame()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._send_binary_response_frame()", "community": 30, "community_name": "Community 30", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_relay_bridge_relayhttpbridge_process_request", "label": "._process_request()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "._process_request()", "community": 30, "community_name": "Community 30", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_relay_bridge_relayhttpbridge_stream_response", "label": "._stream_response()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._stream_response()", "community": 30, "community_name": "Community 30", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_relay_bridge_peer_id_suffix", "label": "_peer_id_suffix()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_peer_id_suffix()", "community": 30, "community_name": "Community 30", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_relay_bridge_peer_id_from_wallet", "label": "peer_id_from_wallet()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "peer_id_from_wallet()", "community": 24, "community_name": "Community 24", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_relay_bridge_rationale_1", "label": "Outbound relay bridge for NAT-safe node HTTP requests.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Outbound relay bridge for NAT-safe node HTTP requests.", "community": 30, "community_name": "Community 30", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_relay_bridge_rationale_27", "label": "Max inbound WebSocket frame size; MESHNET_WS_MAX_BYTES<=0 means unlimited.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Max inbound WebSocket frame size; MESHNET_WS_MAX_BYTES<=0 means unlimited.", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_relay_bridge_rationale_46", "label": "Build one request-owned binary frame without base64 expansion. ``join`` makes\u2026", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Build one request-owned binary frame without base64 expansion. ``join`` makes\u2026", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_relay_bridge_rationale_93", "label": "Bounded worker-local HTTP/1.1 clients for relay loopback forwarding.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Bounded worker-local HTTP/1.1 clients for relay loopback forwarding.", "community": 30, "community_name": "Community 30", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_relay_bridge_rationale_149", "label": "Connect outbound to a relay and proxy relay HTTP requests to localhost.\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Connect outbound to a relay and proxy relay HTTP requests to localhost.\u2026", "community": 30, "community_name": "Community 30", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_relay_bridge_rationale_262", "label": "Send one relay-http-response frame; False if the socket is gone. The lock is\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Send one relay-http-response frame; False if the socket is gone. The lock is\u2026", "community": 30, "community_name": "Community 30", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_relay_bridge_rationale_280", "label": "Send one binary response frame; False if the socket is gone.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Send one binary response frame; False if the socket is gone.", "community": 30, "community_name": "Community 30", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_relay_bridge_rationale_377", "label": "Forward an SSE response as chunk frames, one per complete SSE event. Frame\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Forward an SSE response as chunk frames, one per complete SSE event. Frame\u2026", "community": 30, "community_name": "Community 30", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_relay_bridge_rationale_423", "label": "Return a relay-safe suffix for a human node name or numeric instance id.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return a relay-safe suffix for a human node name or numeric instance id.", "community": 30, "community_name": "Community 30", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_relay_bridge_rationale_434", "label": "Build a per-node relay peer id from the wallet plus node identity. Multiple\u2026", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Build a per-node relay peer id from the wallet plus node identity. Multiple\u2026", "community": 24, "community_name": "Community 24", "source_file": "node/meshnet_node/relay_bridge.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_route_session_benchmark", "label": "route_session_benchmark.py", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "route_session_benchmark.py", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "code", "degree": 17}, {"id": "node_meshnet_node_route_session_benchmark_benchmarkscenario", "label": "BenchmarkScenario", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BenchmarkScenario", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_route_session_benchmark_seamsample", "label": "SeamSample", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "SeamSample", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_route_session_benchmark_benchmarkrun", "label": "BenchmarkRun", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "BenchmarkRun", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_route_session_benchmark_benchmarkrun_to_dict", "label": ".to_dict()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_route_session_benchmark_percentile", "label": "_percentile()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_percentile()", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_route_session_benchmark_summary", "label": "_summary()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_summary()", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_route_session_benchmark_summaries_by", "label": "_summaries_by()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_summaries_by()", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_route_session_benchmark_stubtransport", "label": "_StubTransport", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_StubTransport", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_route_session_benchmark_stubtransport_init", "label": ".__init__()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "code", "degree": 4}, {"id": "transportmode", "label": "TransportMode", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "TransportMode", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "", "file_type": "code", "degree": 2}, {"id": "cachemode", "label": "CacheMode", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "CacheMode", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_route_session_benchmark_stubtransport_transfer", "label": ".transfer()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".transfer()", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_route_session_benchmark_stubtransport_close", "label": ".close()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".close()", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_route_session_benchmark_activation", "label": "_activation()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_activation()", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_route_session_benchmark_run_route_session_benchmark", "label": "run_route_session_benchmark()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "run_route_session_benchmark()", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "code", "degree": 10}, {"id": "node_meshnet_node_route_session_benchmark_run_benchmark_matrix", "label": "run_benchmark_matrix()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "run_benchmark_matrix()", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_route_session_benchmark_assert_benchmark", "label": "assert_benchmark()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "assert_benchmark()", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_route_session_benchmark_performancethresholds", "label": "PerformanceThresholds", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "PerformanceThresholds", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_route_session_benchmark_assert_performance_gate", "label": "assert_performance_gate()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "assert_performance_gate()", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_route_session_benchmark_run_real_model_lan_benchmark", "label": "run_real_model_lan_benchmark()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "run_real_model_lan_benchmark()", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_route_session_benchmark_format_summary", "label": "format_summary()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "format_summary()", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_route_session_benchmark_main", "label": "main()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_route_session_benchmark_rationale_1", "label": "Deterministic, stub-backed Route Session transport benchmark. This is\u2026", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Deterministic, stub-backed Route Session transport benchmark. This is\u2026", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_route_session_benchmark_rationale_26", "label": "Fixed input and expected output for one reproducible Route Session.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Fixed input and expected output for one reproducible Route Session.", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_route_session_benchmark_rationale_36", "label": "One head-to-tail activation transfer, with all durations in milliseconds.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "One head-to-tail activation transfer, with all durations in milliseconds.", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_route_session_benchmark_rationale_67", "label": "JSON-safe result for one mode/cache-mode scenario.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "JSON-safe result for one mode/cache-mode scenario.", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_route_session_benchmark_rationale_141", "label": "A deterministic two-node seam with explicit connection ownership.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "A deterministic two-node seam with explicit connection ownership.", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_route_session_benchmark_rationale_204", "label": "Close all deterministic owners and expose a CI-checkable snapshot.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Close all deterministic owners and expose a CI-checkable snapshot.", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_route_session_benchmark_rationale_216", "label": "Return a compressible but phase-distinguishable activation body.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return a compressible but phase-distinguishable activation body.", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_route_session_benchmark_rationale_226", "label": "Run one fixed two-node prefill + decode Route Session scenario.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Run one fixed two-node prefill + decode Route Session scenario.", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_route_session_benchmark_rationale_237", "label": "Run direct/relay and cached/stateless baselines suitable for CI artifacts.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Run direct/relay and cached/stateless baselines suitable for CI artifacts.", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_route_session_benchmark_rationale_252", "label": "Assertion seam for regression tests and future performance gates.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Assertion seam for regression tests and future performance gates.", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_route_session_benchmark_rationale_262", "label": "Stable gate limits. A cached decode must retain at least a 20%\u2026", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Stable gate limits. A cached decode must retain at least a 20%\u2026", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_route_session_benchmark_rationale_281", "label": "Fail CI on a material transport regression, not ordinary host variation. The\u2026", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Fail CI on a material transport regression, not ordinary host variation. The\u2026", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_route_session_benchmark_rationale_317", "label": "Opt-in client-side LAN capture using the same report schema as CI. This\u2026", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Opt-in client-side LAN capture using the same report schema as CI. This\u2026", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_route_session_benchmark_rationale_360", "label": "Render the compact, human-readable companion to the JSON artifact.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Render the compact, human-readable companion to the JSON artifact.", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/route_session_benchmark.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_pin", "label": "runtime_pin.py", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "runtime_pin.py", "community": 57, "community_name": "Community 57", "source_file": "node/meshnet_node/runtime_pin.py", "file_type": "code", "degree": 9}, {"id": "node_meshnet_node_runtime_pin_runtimepinerror", "label": "RuntimePinError", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "RuntimePinError", "community": 57, "community_name": "Community 57", "source_file": "node/meshnet_node/runtime_pin.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_runtime_pin_py_valueerror", "label": "ValueError", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ValueError", "community": 57, "community_name": "Community 57", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_runtime_pin_canonical_sha256", "label": "_canonical_sha256()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_canonical_sha256()", "community": 57, "community_name": "Community 57", "source_file": "node/meshnet_node/runtime_pin.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_runtime_pin_runtimepin", "label": "RuntimePin", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "RuntimePin", "community": 57, "community_name": "Community 57", "source_file": "node/meshnet_node/runtime_pin.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_runtime_pin_runtimepin_patch_stack_digest", "label": ".patch_stack_digest()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".patch_stack_digest()", "community": 57, "community_name": "Community 57", "source_file": "node/meshnet_node/runtime_pin.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_runtime_pin_runtimepin_runtime_version", "label": ".runtime_version()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".runtime_version()", "community": 57, "community_name": "Community 57", "source_file": "node/meshnet_node/runtime_pin.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_runtime_pin_read_text", "label": "_read_text()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_read_text()", "community": 57, "community_name": "Community 57", "source_file": "node/meshnet_node/runtime_pin.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_runtime_pin_py_path", "label": "Path", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Path", "community": 57, "community_name": "Community 57", "source_file": "", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_runtime_pin_read_series_file", "label": "_read_series_file()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_read_series_file()", "community": 57, "community_name": "Community 57", "source_file": "node/meshnet_node/runtime_pin.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_runtime_pin_read_sums_file", "label": "_read_sums_file()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_read_sums_file()", "community": 57, "community_name": "Community 57", "source_file": "node/meshnet_node/runtime_pin.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_runtime_pin_load_runtime_pin", "label": "load_runtime_pin()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "load_runtime_pin()", "community": 57, "community_name": "Community 57", "source_file": "node/meshnet_node/runtime_pin.py", "file_type": "code", "degree": 10}, {"id": "node_meshnet_node_runtime_pin_rationale_1", "label": "Canonical runtime pin identity for the recipe fingerprint (DGR-025). The recipe\u2026", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Canonical runtime pin identity for the recipe fingerprint (DGR-025). The recipe\u2026", "community": 57, "community_name": "Community 57", "source_file": "node/meshnet_node/runtime_pin.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_pin_rationale_51", "label": "The lock workspace is missing, malformed, or internally inconsistent.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The lock workspace is missing, malformed, or internally inconsistent.", "community": 57, "community_name": "Community 57", "source_file": "node/meshnet_node/runtime_pin.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_pin_rationale_63", "label": "One exact runtime: a name, an upstream commit, and an ordered patch stack.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "One exact runtime: a name, an upstream commit, and an ordered patch stack.", "community": 57, "community_name": "Community 57", "source_file": "node/meshnet_node/runtime_pin.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_pin_rationale_72", "label": "A digest over the ordered (name, bytes-digest) stack. Order is digested\u2026", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "A digest over the ordered (name, bytes-digest) stack. Order is digested\u2026", "community": 57, "community_name": "Community 57", "source_file": "node/meshnet_node/runtime_pin.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_pin_rationale_92", "label": "The exact ``runtime_version`` recipe axis value for this pin.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The exact ``runtime_version`` recipe axis value for this pin.", "community": 57, "community_name": "Community 57", "source_file": "node/meshnet_node/runtime_pin.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_pin_rationale_130", "label": "Derive the exact runtime pin from a DGR-027 lock workspace, or refuse. Refuses\u2026", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Derive the exact runtime pin from a DGR-027 lock workspace, or refuse. Refuses\u2026", "community": 57, "community_name": "Community 57", "source_file": "node/meshnet_node/runtime_pin.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe", "label": "runtime_recipe.py", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "runtime_recipe.py", "community": 40, "community_name": "Community 40", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 28}, {"id": "node_meshnet_node_runtime_recipe_recipeidentityerror", "label": "RecipeIdentityError", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "RecipeIdentityError", "community": 48, "community_name": "Community 48", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 23}, {"id": "node_meshnet_node_runtime_recipe_py_valueerror", "label": "ValueError", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ValueError", "community": 48, "community_name": "Community 48", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_routeincompatible", "label": "RouteIncompatible", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "RouteIncompatible", "community": 40, "community_name": "Community 40", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_runtime_recipe_routeincompatible_init", "label": ".__init__()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 40, "community_name": "Community 40", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_runtime_recipe_canonical_sha256", "label": "canonical_sha256()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "canonical_sha256()", "community": 88, "community_name": "Community 88", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_runtime_recipe_py_any", "label": "Any", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Any", "community": 48, "community_name": "Community 48", "source_file": "", "file_type": "code", "degree": 14}, {"id": "node_meshnet_node_runtime_recipe_digest", "label": "_digest()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_digest()", "community": 88, "community_name": "Community 88", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_runtime_recipe_require_text", "label": "_require_text()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_require_text()", "community": 48, "community_name": "Community 48", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 12}, {"id": "node_meshnet_node_runtime_recipe_require_hex64", "label": "_require_hex64()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "_require_hex64()", "community": 48, "community_name": "Community 48", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 11}, {"id": "node_meshnet_node_runtime_recipe_require_int", "label": "_require_int()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "_require_int()", "community": 48, "community_name": "Community 48", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 11}, {"id": "node_meshnet_node_runtime_recipe_require_pin", "label": "_require_pin()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "_require_pin()", "community": 48, "community_name": "Community 48", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 9}, {"id": "node_meshnet_node_runtime_recipe_require_runtime_pin", "label": "_require_runtime_pin()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_require_runtime_pin()", "community": 48, "community_name": "Community 48", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_runtime_recipe_as_mapping", "label": "_as_mapping()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_as_mapping()", "community": 48, "community_name": "Community 48", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_runtime_recipe_derivativebinding", "label": "DerivativeBinding", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "DerivativeBinding", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 14}, {"id": "node_meshnet_node_runtime_recipe_derivativebinding_post_init", "label": ".__post_init__()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".__post_init__()", "community": 48, "community_name": "Community 48", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_runtime_recipe_derivativebinding_covers", "label": ".covers()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".covers()", "community": 48, "community_name": "Community 48", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_runtime_recipe_derivativebinding_to_dict", "label": ".to_dict()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_derivativebinding_from_dict", "label": ".from_dict()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".from_dict()", "community": 48, "community_name": "Community 48", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_runtime_recipe_artifactidentity", "label": "ArtifactIdentity", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ArtifactIdentity", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 17}, {"id": "node_meshnet_node_runtime_recipe_artifactidentity_post_init", "label": ".__post_init__()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".__post_init__()", "community": 48, "community_name": "Community 48", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_runtime_recipe_artifactidentity_is_derivative", "label": ".is_derivative()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".is_derivative()", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_artifactidentity_source_digest", "label": ".source_digest()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".source_digest()", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_runtime_recipe_artifactidentity_model_artifact_digest", "label": ".model_artifact_digest()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".model_artifact_digest()", "community": 88, "community_name": "Community 88", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_runtime_recipe_artifactidentity_to_dict", "label": ".to_dict()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_runtime_recipe_artifactidentity_from_dict", "label": ".from_dict()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".from_dict()", "community": 48, "community_name": "Community 48", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 9}, {"id": "node_meshnet_node_runtime_recipe_runtimerecipe", "label": "RuntimeRecipe", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "RuntimeRecipe", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 15}, {"id": "node_meshnet_node_runtime_recipe_runtimerecipe_post_init", "label": ".__post_init__()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".__post_init__()", "community": 48, "community_name": "Community 48", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_runtime_recipe_runtimerecipe_axes", "label": ".axes()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".axes()", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_runtime_recipe_runtimerecipe_runtime_recipe_digest", "label": ".runtime_recipe_digest()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".runtime_recipe_digest()", "community": 88, "community_name": "Community 88", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_runtime_recipe_runtimerecipe_to_dict", "label": ".to_dict()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_runtimerecipe_from_dict", "label": ".from_dict()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".from_dict()", "community": 48, "community_name": "Community 48", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_runtime_recipe_compatibilityfingerprint", "label": "CompatibilityFingerprint", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.4, "font": {"size": 0, "color": "#ffffff"}, "title": "CompatibilityFingerprint", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 19}, {"id": "node_meshnet_node_runtime_recipe_compatibilityfingerprint_post_init", "label": ".__post_init__()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__post_init__()", "community": 48, "community_name": "Community 48", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_runtime_recipe_compatibilityfingerprint_key", "label": ".key()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".key()", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_runtime_recipe_compatibilityfingerprint_matches", "label": ".matches()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".matches()", "community": 40, "community_name": "Community 40", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_runtime_recipe_compatibilityfingerprint_to_dict", "label": ".to_dict()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_compatibilityfingerprint_from_dict", "label": ".from_dict()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".from_dict()", "community": 48, "community_name": "Community 48", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_runtime_recipe_compatibilityfingerprint_to_proto", "label": ".to_proto()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_proto()", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_runtime_recipe_compatibilityfingerprint_from_proto", "label": ".from_proto()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".from_proto()", "community": 40, "community_name": "Community 40", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_runtime_recipe_routemismatch", "label": "RouteMismatch", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "RouteMismatch", "community": 40, "community_name": "Community 40", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 10}, {"id": "node_meshnet_node_runtime_recipe_routemismatch_describe", "label": ".describe()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".describe()", "community": 40, "community_name": "Community 40", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_runtime_recipe_routemismatch_to_dict", "label": ".to_dict()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 40, "community_name": "Community 40", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_shardidentity", "label": "ShardIdentity", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "ShardIdentity", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 28}, {"id": "node_meshnet_node_runtime_recipe_shardidentity_post_init", "label": ".__post_init__()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".__post_init__()", "community": 48, "community_name": "Community 48", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_runtime_recipe_shardidentity_fingerprint", "label": ".fingerprint()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".fingerprint()", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_runtime_recipe_shardidentity_shard_binding_digest", "label": ".shard_binding_digest()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".shard_binding_digest()", "community": 88, "community_name": "Community 88", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_runtime_recipe_shardidentity_to_dict", "label": ".to_dict()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_runtime_recipe_shardidentity_from_dict", "label": ".from_dict()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".from_dict()", "community": 48, "community_name": "Community 48", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 13}, {"id": "node_meshnet_node_runtime_recipe_explain_mismatch", "label": "explain_mismatch()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "explain_mismatch()", "community": 40, "community_name": "Community 40", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_runtime_recipe_coverage_gap", "label": "_coverage_gap()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_coverage_gap()", "community": 40, "community_name": "Community 40", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_runtime_recipe_check_route", "label": "check_route()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "check_route()", "community": 40, "community_name": "Community 40", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_runtime_recipe_require_route", "label": "require_route()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "require_route()", "community": 40, "community_name": "Community 40", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_runtime_recipe_glm_alpha_artifact", "label": "glm_alpha_artifact()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "glm_alpha_artifact()", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_runtime_recipe_check_handshake", "label": "check_handshake()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "check_handshake()", "community": 40, "community_name": "Community 40", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_runtime_recipe_check_session_open", "label": "check_session_open()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "check_session_open()", "community": 40, "community_name": "Community 40", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_runtime_recipe_handshake_error", "label": "handshake_error()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "handshake_error()", "community": 40, "community_name": "Community 40", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_runtime_recipe_rationale_1", "label": "Exact Model Artifact and runtime recipe identity (DGR-003). A route is a chain\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Exact Model Artifact and runtime recipe identity (DGR-003). A route is a chain\u2026", "community": 40, "community_name": "Community 40", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_rationale_139", "label": "Malformed identity input. Messages name the field, never echo a payload.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Malformed identity input. Messages name the field, never echo a payload.", "community": 48, "community_name": "Community 48", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_rationale_143", "label": "Two Shards cannot form an Inference Route. Carries the structured reasons, so a\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Two Shards cannot form an Inference Route. Carries the structured reasons, so a\u2026", "community": 40, "community_name": "Community 40", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_rationale_155", "label": "SHA-256 over canonical JSON \u2014 the repository's digest convention.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SHA-256 over canonical JSON \u2014 the repository's digest convention.", "community": 88, "community_name": "Community 88", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_rationale_190", "label": "A revision must identify one immutable thing, not a ref that moves.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "A revision must identify one immutable thing, not a ref that moves.", "community": 48, "community_name": "Community 48", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_rationale_222", "label": "A split or derived artifact, bound to the exact artifact it was cut from.\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "A split or derived artifact, bound to the exact artifact it was cut from.\u2026", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_rationale_277", "label": "Exactly which weights, config and architecture a Shard loaded. `content_digest`\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Exactly which weights, config and architecture a Shard loaded. `content_digest`\u2026", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_rationale_323", "label": "The whole-model artifact this Shard descends from \u2014 what a route compares.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The whole-model artifact this Shard descends from \u2014 what a route compares.", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_rationale_330", "label": "The artifact half of the compatibility fingerprint. Commits to the source\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The artifact half of the compatibility fingerprint. Commits to the source\u2026", "community": 88, "community_name": "Community 88", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_rationale_385", "label": "How a Shard executes the artifact \u2014 one field per numerically live axis. Weight\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "How a Shard executes the artifact \u2014 one field per numerically live axis. Weight\u2026", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_rationale_430", "label": "The digested fields, and only those.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The digested fields, and only those.", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_rationale_435", "label": "The recipe half of the compatibility fingerprint.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The recipe half of the compatibility fingerprint.", "community": 88, "community_name": "Community 88", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_rationale_480", "label": "The stable identity two peers actually compare. This is the Python face of the\u2026", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The stable identity two peers actually compare. This is the Python face of the\u2026", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_rationale_502", "label": "What equality means: the digests, never the labels.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "What equality means: the digests, never the labels.", "community": 16, "community_name": "Route Session Benchmarks", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_rationale_537", "label": "Populate the DGR-002 ``Fingerprint`` message for the gRPC handshake.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Populate the DGR-002 ``Fingerprint`` message for the gRPC handshake.", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_rationale_567", "label": "One structured, fail-closed reason two identities do not compose.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "One structured, fail-closed reason two identities do not compose.", "community": 40, "community_name": "Community 40", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_rationale_587", "label": "What one Shard is: an artifact, a recipe, and the layers it owns. The owned\u2026", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "What one Shard is: an artifact, a recipe, and the layers it owns. The owned\u2026", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_rationale_623", "label": "The derived identity. Never stored, never trusted from the wire \u2014 derived.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The derived identity. Never stored, never trusted from the wire \u2014 derived.", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_rationale_634", "label": "This Shard's own bytes and exact range, bound to the source artifact. The\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "This Shard's own bytes and exact range, bound to the source artifact. The\u2026", "community": 88, "community_name": "Community 88", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_rationale_677", "label": "Parse an identity block, re-deriving \u2014 never trusting \u2014 its fingerprint. A\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Parse an identity block, re-deriving \u2014 never trusting \u2014 its fingerprint. A\u2026", "community": 48, "community_name": "Community 48", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_rationale_723", "label": "Name every axis on which two Shards disagree. The fingerprint comparison\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Name every axis on which two Shards disagree. The fingerprint comparison\u2026", "community": 40, "community_name": "Community 40", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_rationale_797", "label": "Return why `ranges` fail to tile ``[0, layer_count)``, or None if they do.\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return why `ranges` fail to tile ``[0, layer_count)``, or None if they do.\u2026", "community": 40, "community_name": "Community 40", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_rationale_829", "label": "Why these Shards may not form one Inference Route; empty when they may. This\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Why these Shards may not form one Inference Route; empty when they may. This\u2026", "community": 40, "community_name": "Community 40", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_rationale_866", "label": "`check_route`, raising the structured reasons instead of returning them.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "`check_route`, raising the structured reasons instead of returning them.", "community": 40, "community_name": "Community 40", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_rationale_883", "label": "Artifact identity for the pinned GLM-5.2 ``UD-IQ1_S`` alpha target. Reads the\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Artifact identity for the pinned GLM-5.2 ``UD-IQ1_S`` alpha target. Reads the\u2026", "community": 13, "community_name": "Native Worker Adapter", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_rationale_921", "label": "Compare the fingerprint a peer opened the stream with against our own. An\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Compare the fingerprint a peer opened the stream with against our own. An\u2026", "community": 40, "community_name": "Community 40", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_rationale_970", "label": "Fail closed on the complete immutable portion of a ``SessionOpen``.\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Fail closed on the complete immutable portion of a ``SessionOpen``.\u2026", "community": 40, "community_name": "Community 40", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_runtime_recipe_rationale_1045", "label": "The protocol status a rejected handshake closes the stream with. Each rejection\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The protocol status a rejected handshake closes the stream with. Each rejection\u2026", "community": 40, "community_name": "Community 40", "source_file": "node/meshnet_node/runtime_recipe.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_safetensors_selection", "label": "safetensors_selection.py", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "safetensors_selection.py", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/safetensors_selection.py", "file_type": "code", "degree": 12}, {"id": "node_meshnet_node_safetensors_selection_select_safetensors_files_for_layers", "label": "select_safetensors_files_for_layers()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "select_safetensors_files_for_layers()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/safetensors_selection.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_safetensors_selection_py_path", "label": "Path", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Path", "community": 3, "community_name": "Shard Artifact Download", "source_file": "", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_safetensors_selection_select_files_for_layers_from_index", "label": "select_files_for_layers_from_index()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "select_files_for_layers_from_index()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/safetensors_selection.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_safetensors_selection_select_tensor_names_for_layers_from_index", "label": "select_tensor_names_for_layers_from_index()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "select_tensor_names_for_layers_from_index()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/safetensors_selection.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_safetensors_selection_tensor_belongs_to_range", "label": "_tensor_belongs_to_range()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_tensor_belongs_to_range()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/safetensors_selection.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_safetensors_selection_layer_index", "label": "_layer_index()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_layer_index()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/safetensors_selection.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_safetensors_selection_is_head_tensor", "label": "_is_head_tensor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_is_head_tensor()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/safetensors_selection.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_safetensors_selection_is_tail_tensor", "label": "_is_tail_tensor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_is_tail_tensor()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/safetensors_selection.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_safetensors_selection_metadata_files", "label": "_metadata_files()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_metadata_files()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/safetensors_selection.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_safetensors_selection_read_total_layers", "label": "_read_total_layers()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_read_total_layers()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/safetensors_selection.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_safetensors_selection_layers_from_config_dict", "label": "layers_from_config_dict()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "layers_from_config_dict()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/safetensors_selection.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_safetensors_selection_py_any", "label": "Any", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Any", "community": 3, "community_name": "Shard Artifact Download", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_safetensors_selection_normalise_relative_file", "label": "_normalise_relative_file()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_normalise_relative_file()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/safetensors_selection.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_safetensors_selection_rationale_1", "label": "Layer-aware SafeTensors snapshot file selection.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Layer-aware SafeTensors snapshot file selection.", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/safetensors_selection.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_safetensors_selection_rationale_68", "label": "Return relative snapshot files needed for an inclusive layer range. The\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return relative snapshot files needed for an inclusive layer range. The\u2026", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/safetensors_selection.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_safetensors_selection_rationale_106", "label": "Pure variant of the weight-file selection: takes an already-parsed\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Pure variant of the weight-file selection: takes an already-parsed\u2026", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/safetensors_selection.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_safetensors_selection_rationale_128", "label": "Pure variant that returns checkpoint tensor names instead of file paths.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Pure variant that returns checkpoint tensor names instead of file paths.", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/safetensors_selection.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_seam_telemetry", "label": "seam_telemetry.py", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "seam_telemetry.py", "community": 64, "community_name": "Community 64", "source_file": "node/meshnet_node/seam_telemetry.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_seam_telemetry_seamaggregate", "label": "_SeamAggregate", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_SeamAggregate", "community": 64, "community_name": "Community 64", "source_file": "node/meshnet_node/seam_telemetry.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_seam_telemetry_generationtelemetry", "label": "GenerationTelemetry", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "GenerationTelemetry", "community": 64, "community_name": "Community 64", "source_file": "node/meshnet_node/seam_telemetry.py", "file_type": "code", "degree": 21}, {"id": "node_meshnet_node_seam_telemetry_generationtelemetry_init", "label": ".__init__()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 64, "community_name": "Community 64", "source_file": "node/meshnet_node/seam_telemetry.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_seam_telemetry_generationtelemetry_record_seam", "label": ".record_seam()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".record_seam()", "community": 64, "community_name": "Community 64", "source_file": "node/meshnet_node/seam_telemetry.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_seam_telemetry_generationtelemetry_report_due", "label": ".report_due()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".report_due()", "community": 64, "community_name": "Community 64", "source_file": "node/meshnet_node/seam_telemetry.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_seam_telemetry_generationtelemetry_note_tokens", "label": ".note_tokens()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".note_tokens()", "community": 64, "community_name": "Community 64", "source_file": "node/meshnet_node/seam_telemetry.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_seam_telemetry_generationtelemetry_record_compression", "label": ".record_compression()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".record_compression()", "community": 64, "community_name": "Community 64", "source_file": "node/meshnet_node/seam_telemetry.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_seam_telemetry_generationtelemetry_snapshot", "label": ".snapshot()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".snapshot()", "community": 64, "community_name": "Community 64", "source_file": "node/meshnet_node/seam_telemetry.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_seam_telemetry_generationtelemetry_mark_reported", "label": ".mark_reported()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".mark_reported()", "community": 64, "community_name": "Community 64", "source_file": "node/meshnet_node/seam_telemetry.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_seam_telemetry_generationtelemetry_close", "label": ".close()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".close()", "community": 64, "community_name": "Community 64", "source_file": "node/meshnet_node/seam_telemetry.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_seam_telemetry_rationale_1", "label": "Bounded, in-process telemetry for distributed activation seams. The generation\u2026", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Bounded, in-process telemetry for distributed activation seams. The generation\u2026", "community": 64, "community_name": "Community 64", "source_file": "node/meshnet_node/seam_telemetry.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_seam_telemetry_rationale_34", "label": "Aggregate activation measurements for one stable Route Session.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Aggregate activation measurements for one stable Route Session.", "community": 64, "community_name": "Community 64", "source_file": "node/meshnet_node/seam_telemetry.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_seam_telemetry_rationale_67", "label": "Record one activation locally and say whether a summary is due.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Record one activation locally and say whether a summary is due.", "community": 64, "community_name": "Community 64", "source_file": "node/meshnet_node/seam_telemetry.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_seam_telemetry_rationale_102", "label": "Attach compression work to the same bounded seam aggregate.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Attach compression work to the same bounded seam aggregate.", "community": 64, "community_name": "Community 64", "source_file": "node/meshnet_node/seam_telemetry.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_server", "label": "meshnet_node/server.py", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet_node/server.py", "community": 27, "community_name": "Community 27", "source_file": "node/meshnet_node/server.py", "file_type": "code", "degree": 18}, {"id": "node_meshnet_node_server_make_stub_binary_activation", "label": "_make_stub_binary_activation()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_make_stub_binary_activation()", "community": 27, "community_name": "Community 27", "source_file": "node/meshnet_node/server.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_server_parse_shape", "label": "_parse_shape()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_parse_shape()", "community": 27, "community_name": "Community 27", "source_file": "node/meshnet_node/server.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_server_decompress_body", "label": "_decompress_body()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_decompress_body()", "community": 27, "community_name": "Community 27", "source_file": "node/meshnet_node/server.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_server_compress_body", "label": "_compress_body()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_compress_body()", "community": 27, "community_name": "Community 27", "source_file": "node/meshnet_node/server.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_server_validate_activation_body", "label": "_validate_activation_body()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_validate_activation_body()", "community": 27, "community_name": "Community 27", "source_file": "node/meshnet_node/server.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_server_stubhttpserver", "label": "_StubHTTPServer", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_StubHTTPServer", "community": 74, "community_name": "Community 74", "source_file": "node/meshnet_node/server.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_server_stubhttpserver_init", "label": ".__init__()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 74, "community_name": "Community 74", "source_file": "node/meshnet_node/server.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_server_py_path", "label": "Path", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path", "community": 74, "community_name": "Community 74", "source_file": "", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_server_stubhandler", "label": "_StubHandler", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "_StubHandler", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/server.py", "file_type": "code", "degree": 11}, {"id": "node_meshnet_node_server_stubhandler_log_message", "label": ".log_message()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".log_message()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/server.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_server_stubhandler_do_post", "label": ".do_POST()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".do_POST()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/server.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_server_stubhandler_do_get", "label": ".do_GET()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".do_GET()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/server.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_server_stubhandler_send_json", "label": "._send_json()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._send_json()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/server.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_server_stubhandler_handle_chat_completions", "label": "._handle_chat_completions()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_chat_completions()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/server.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_server_stubhandler_send_sse_response", "label": "._send_sse_response()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._send_sse_response()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/server.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_server_stubhandler_handle_shard_download", "label": "._handle_shard_download()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_shard_download()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/server.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_server_py_parseresult", "label": "ParseResult", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ParseResult", "community": 3, "community_name": "Shard Artifact Download", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_server_stubhandler_handle_infer", "label": "._handle_infer()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_infer()", "community": 3, "community_name": "Shard Artifact Download", "source_file": "node/meshnet_node/server.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_server_stubhandler_handle_forward", "label": "._handle_forward()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_forward()", "community": 27, "community_name": "Community 27", "source_file": "node/meshnet_node/server.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_server_stubnodeserver", "label": "StubNodeServer", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "StubNodeServer", "community": 74, "community_name": "Community 74", "source_file": "node/meshnet_node/server.py", "file_type": "code", "degree": 12}, {"id": "node_meshnet_node_server_stubnodeserver_init", "label": ".__init__()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 74, "community_name": "Community 74", "source_file": "node/meshnet_node/server.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_server_stubnodeserver_received_activations", "label": ".received_activations()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".received_activations()", "community": 74, "community_name": "Community 74", "source_file": "node/meshnet_node/server.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_server_stubnodeserver_forward_chunk_count", "label": ".forward_chunk_count()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".forward_chunk_count()", "community": 74, "community_name": "Community 74", "source_file": "node/meshnet_node/server.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_server_stubnodeserver_chat_completion_count", "label": ".chat_completion_count()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".chat_completion_count()", "community": 37, "community_name": "Community 37", "source_file": "node/meshnet_node/server.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_server_stubnodeserver_start", "label": ".start()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".start()", "community": 74, "community_name": "Community 74", "source_file": "node/meshnet_node/server.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_server_stubnodeserver_stop", "label": ".stop()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".stop()", "community": 74, "community_name": "Community 74", "source_file": "node/meshnet_node/server.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_server_rationale_1", "label": "Stub node HTTP server for the Distributed Inference Network.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Stub node HTTP server for the Distributed Inference Network.", "community": 27, "community_name": "Community 27", "source_file": "node/meshnet_node/server.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_server_rationale_29", "label": "Return a zeroed stub tensor body for the requested shape and dtype.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return a zeroed stub tensor body for the requested shape and dtype.", "community": 27, "community_name": "Community 27", "source_file": "node/meshnet_node/server.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_server_rationale_329", "label": "Single-process stub node that returns fixed inference responses. shard_start /\u2026", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Single-process stub node that returns fixed inference responses. shard_start /\u2026", "community": 74, "community_name": "Community 74", "source_file": "node/meshnet_node/server.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_server_rationale_368", "label": "True if this node received an activation tensor since it was started.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "True if this node received an activation tensor since it was started.", "community": 74, "community_name": "Community 74", "source_file": "node/meshnet_node/server.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_server_rationale_373", "label": "Number of binary /forward chunks handled since this node was started.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Number of binary /forward chunks handled since this node was started.", "community": 74, "community_name": "Community 74", "source_file": "node/meshnet_node/server.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_server_rationale_378", "label": "Number of /v1/chat/completions requests handled since this node was started.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Number of /v1/chat/completions requests handled since this node was started.", "community": 37, "community_name": "Community 37", "source_file": "node/meshnet_node/server.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_shard_lifecycle", "label": "shard_lifecycle.py", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "shard_lifecycle.py", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 28}, {"id": "node_meshnet_node_shard_lifecycle_rpcname", "label": "RpcName", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "RpcName", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_shard_lifecycle_py_str", "label": "str", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "str", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_shard_lifecycle_py_enum", "label": "Enum", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Enum", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_shard_lifecycle_statuscode", "label": "StatusCode", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "StatusCode", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_shard_lifecycle_lifecyclestate", "label": "LifecycleState", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "LifecycleState", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_shard_lifecycle_cacheexpectation", "label": "CacheExpectation", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "CacheExpectation", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_shard_lifecycle_cacheresult", "label": "CacheResult", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "CacheResult", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_shard_lifecycle_sessionphase", "label": "SessionPhase", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "SessionPhase", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_shard_lifecycle_lifecyclecontracterror", "label": "LifecycleContractError", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "LifecycleContractError", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 12}, {"id": "node_meshnet_node_shard_lifecycle_py_valueerror", "label": "ValueError", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ValueError", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_shard_lifecycle_lifecyclecontracterror_init", "label": ".__init__()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_shard_lifecycle_structuredstatus", "label": "StructuredStatus", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "StructuredStatus", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 13}, {"id": "node_meshnet_node_shard_lifecycle_structuredstatus_to_dict", "label": ".to_dict()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_shard_lifecycle_py_any", "label": "Any", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Any", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_shard_lifecycle_structuredstatus_from_dict", "label": ".from_dict()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".from_dict()", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_shard_lifecycle_deadlinepolicy", "label": "DeadlinePolicy", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "DeadlinePolicy", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_shard_lifecycle_deadlinepolicy_post_init", "label": ".__post_init__()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__post_init__()", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_shard_lifecycle_tlsauthhooks", "label": "TlsAuthHooks", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "TlsAuthHooks", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_shard_lifecycle_tlsauthhooks_validate", "label": ".validate()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".validate()", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_shard_lifecycle_flowcontrollimits", "label": "FlowControlLimits", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "FlowControlLimits", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_shard_lifecycle_flowcontrollimits_post_init", "label": ".__post_init__()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__post_init__()", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_shard_lifecycle_flowcontrol", "label": "FlowControl", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "FlowControl", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_shard_lifecycle_flowcontrol_init", "label": ".__init__()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_shard_lifecycle_flowcontrol_outstanding", "label": ".outstanding()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".outstanding()", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_shard_lifecycle_flowcontrol_acquire", "label": ".acquire()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".acquire()", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_shard_lifecycle_flowcontrol_release", "label": ".release()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".release()", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_shard_lifecycle_cancellationtoken", "label": "CancellationToken", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "CancellationToken", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_shard_lifecycle_cancellationtoken_init", "label": ".__init__()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_shard_lifecycle_cancellationtoken_cancelled", "label": ".cancelled()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".cancelled()", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_shard_lifecycle_cancellationtoken_cancel", "label": ".cancel()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".cancel()", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_shard_lifecycle_capabilityrequest", "label": "CapabilityRequest", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CapabilityRequest", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_shard_lifecycle_capabilityresponse", "label": "CapabilityResponse", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "CapabilityResponse", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_shard_lifecycle_capabilityresponse_validate", "label": ".validate()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".validate()", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_shard_lifecycle_healthrequest", "label": "HealthRequest", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "HealthRequest", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_shard_lifecycle_healthresponse", "label": "HealthResponse", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "HealthResponse", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_shard_lifecycle_sessionrequest", "label": "SessionRequest", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "SessionRequest", "community": 73, "community_name": "Community 73", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_shard_lifecycle_sessionrequest_validate", "label": ".validate()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".validate()", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_shard_lifecycle_sessionframe", "label": "SessionFrame", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "SessionFrame", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_shard_lifecycle_sessionframe_validate", "label": ".validate()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".validate()", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_shard_lifecycle_sessionresult", "label": "SessionResult", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SessionResult", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_shard_lifecycle_cancelrequest", "label": "CancelRequest", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CancelRequest", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_shard_lifecycle_releaserequest", "label": "ReleaseRequest", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ReleaseRequest", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_shard_lifecycle_metricsrequest", "label": "MetricsRequest", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "MetricsRequest", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_shard_lifecycle_metricsresponse", "label": "MetricsResponse", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "MetricsResponse", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_shard_lifecycle_sessionlifecycle", "label": "SessionLifecycle", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "SessionLifecycle", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_shard_lifecycle_sessionlifecycle_transition", "label": "._transition()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "._transition()", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_shard_lifecycle_sessionlifecycle_apply", "label": ".apply()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".apply()", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_shard_lifecycle_sessionlifecycle_cancel", "label": ".cancel()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".cancel()", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_shard_lifecycle_sessionlifecycle_release", "label": ".release()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".release()", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_shard_lifecycle_shardrpccontract", "label": "ShardRpcContract", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ShardRpcContract", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_shard_lifecycle_shardrpccontract_validate", "label": ".validate()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".validate()", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_shard_lifecycle_shardrpccontract_to_bytes", "label": ".to_bytes()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_bytes()", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_shard_lifecycle_shardrpccontract_from_bytes", "label": ".from_bytes()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".from_bytes()", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_shard_lifecycle_rationale_1", "label": "Versioned Shard lifecycle and structured status contract. This module defines\u2026", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Versioned Shard lifecycle and structured status contract. This module defines\u2026", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_shard_lifecycle_rationale_82", "label": "A protocol violation represented by a structured status.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "A protocol violation represented by a structured status.", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_shard_lifecycle_rationale_131", "label": "Transport hooks only; Meshnet remains the identity and billing authority.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Transport hooks only; Meshnet remains the identity and billing authority.", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_shard_lifecycle_rationale_156", "label": "Bounded sender window; callers block or fail instead of growing unbounded.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Bounded sender window; callers block or fail instead of growing unbounded.", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_shard_lifecycle_rationale_357", "label": "Fail-closed state machine for one Route Session Activation Seam.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Fail-closed state machine for one Route Session Activation Seam.", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_shard_lifecycle_rationale_423", "label": "Service/method and operational rules for generated gRPC bindings.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Service/method and operational rules for generated gRPC bindings.", "community": 5, "community_name": "Native Shard Lifecycle", "source_file": "node/meshnet_node/shard_lifecycle.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_startup", "label": "startup.py", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 21.8, "font": {"size": 12, "color": "#ffffff"}, "title": "startup.py", "community": 24, "community_name": "Community 24", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 66}, {"id": "node_meshnet_node_startup_downloaded_model_inventory", "label": "_downloaded_model_inventory()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_downloaded_model_inventory()", "community": 89, "community_name": "Community 89", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_startup_py_path", "label": "Path", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Path", "community": 89, "community_name": "Community 89", "source_file": "", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_startup_registration_shard_checksum", "label": "_registration_shard_checksum()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_registration_shard_checksum()", "community": 89, "community_name": "Community 89", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_startup_model_cache_path", "label": "_model_cache_path()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_model_cache_path()", "community": 89, "community_name": "Community 89", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_startup_memory_budget", "label": "_memory_budget()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_memory_budget()", "community": 24, "community_name": "Community 24", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_startup_full_model_sources", "label": "_full_model_sources()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_full_model_sources()", "community": 24, "community_name": "Community 24", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_startup_hardware_label", "label": "_hardware_label()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_hardware_label()", "community": 24, "community_name": "Community 24", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_startup_relay_ready_line", "label": "_relay_ready_line()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_relay_ready_line()", "community": 24, "community_name": "Community 24", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_startup_positive_int", "label": "_positive_int()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_positive_int()", "community": 24, "community_name": "Community 24", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_startup_configure_torch_threads", "label": "_configure_torch_threads()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_configure_torch_threads()", "community": 24, "community_name": "Community 24", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_startup_max_assignable_layers", "label": "_max_assignable_layers()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_max_assignable_layers()", "community": 24, "community_name": "Community 24", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_startup_runtime_shard_safety_fraction", "label": "_runtime_shard_safety_fraction()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_runtime_shard_safety_fraction()", "community": 24, "community_name": "Community 24", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_startup_cap_auto_assigned_shard", "label": "_cap_auto_assigned_shard()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_cap_auto_assigned_shard()", "community": 24, "community_name": "Community 24", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_startup_format_shard_label", "label": "_format_shard_label()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_format_shard_label()", "community": 24, "community_name": "Community 24", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_startup_shard_budget_line", "label": "_shard_budget_line()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_shard_budget_line()", "community": 24, "community_name": "Community 24", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_startup_assignment_bytes_per_layer", "label": "_assignment_bytes_per_layer()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_assignment_bytes_per_layer()", "community": 24, "community_name": "Community 24", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_startup_post_json", "label": "_post_json()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_post_json()", "community": 61, "community_name": "Community 61", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_startup_get_json", "label": "_get_json()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_get_json()", "community": 24, "community_name": "Community 24", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_startup_infer_relay_url_from_tracker", "label": "_infer_relay_url_from_tracker()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_infer_relay_url_from_tracker()", "community": 24, "community_name": "Community 24", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_startup_discover_relay_url", "label": "_discover_relay_url()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_discover_relay_url()", "community": 24, "community_name": "Community 24", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_startup_start_relay_bridge_if_available", "label": "_start_relay_bridge_if_available()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_start_relay_bridge_if_available()", "community": 24, "community_name": "Community 24", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_startup_attach_relay_bridge", "label": "_attach_relay_bridge()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_attach_relay_bridge()", "community": 74, "community_name": "Community 74", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_startup_start_heartbeat", "label": "_start_heartbeat()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_start_heartbeat()", "community": 61, "community_name": "Community 61", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_startup_py_any", "label": "Any", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Any", "community": 61, "community_name": "Community 61", "source_file": "", "file_type": "code", "degree": 7}, {"id": "thread", "label": "Thread", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Thread", "community": 61, "community_name": "Community 61", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_startup_register_with_tracker", "label": "_register_with_tracker()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_register_with_tracker()", "community": 61, "community_name": "Community 61", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_startup_warn_virtual_network_ip", "label": "_warn_virtual_network_ip()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_warn_virtual_network_ip()", "community": 24, "community_name": "Community 24", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_startup_registration_display_fields", "label": "_registration_display_fields()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_registration_display_fields()", "community": 24, "community_name": "Community 24", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_startup_tracker_http_error_message", "label": "_tracker_http_error_message()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_tracker_http_error_message()", "community": 100, "community_name": "Community 100", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_startup_py_httperror", "label": "HTTPError", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "HTTPError", "community": 100, "community_name": "Community 100", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_startup_resolve_recipe", "label": "_resolve_recipe()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_resolve_recipe()", "community": 23, "community_name": "Community 23", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_startup_capability_device", "label": "_capability_device()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_capability_device()", "community": 61, "community_name": "Community 61", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_startup_admit_capability", "label": "_admit_capability()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_admit_capability()", "community": 61, "community_name": "Community 61", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 15}, {"id": "node_meshnet_node_startup_py_capabilityvalidator", "label": "CapabilityValidator", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "CapabilityValidator", "community": 61, "community_name": "Community 61", "source_file": "", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_startup_capability_refresher", "label": "_capability_refresher()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "_capability_refresher()", "community": 61, "community_name": "Community 61", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 10}, {"id": "node_meshnet_node_startup_run_startup", "label": "run_startup()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 18.2, "font": {"size": 12, "color": "#ffffff"}, "title": "run_startup()", "community": 24, "community_name": "Community 24", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 46}, {"id": "node_meshnet_node_startup_detect_num_layers", "label": "_detect_num_layers()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_detect_num_layers()", "community": 89, "community_name": "Community 89", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_startup_probationary_status_line", "label": "_probationary_status_line()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_probationary_status_line()", "community": 61, "community_name": "Community 61", "source_file": "node/meshnet_node/startup.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_startup_rationale_1", "label": "Full node startup sequence \u2014 self-configuring, non-interactive.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Full node startup sequence \u2014 self-configuring, non-interactive.", "community": 24, "community_name": "Community 24", "source_file": "node/meshnet_node/startup.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_startup_rationale_47", "label": "Return a cheap local inventory record without reading model file contents.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return a cheap local inventory record without reading model file contents.", "community": 89, "community_name": "Community 89", "source_file": "node/meshnet_node/startup.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_startup_rationale_102", "label": "Only checksum tiny stub shards; real model folders are too large to hash at\u2026", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Only checksum tiny stub shards; real model folders are too large to hash at\u2026", "community": 89, "community_name": "Community 89", "source_file": "node/meshnet_node/startup.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_startup_rationale_120", "label": "Return the capacity budget in MB and whether it came from VRAM or RAM.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return the capacity budget in MB and whether it came from VRAM or RAM.", "community": 24, "community_name": "Community 24", "source_file": "node/meshnet_node/startup.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_startup_rationale_129", "label": "Use tracker full-snapshot URLs for real HF model loading.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Use tracker full-snapshot URLs for real HF model loading.", "community": 24, "community_name": "Community 24", "source_file": "node/meshnet_node/startup.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_startup_rationale_176", "label": "Apply PyTorch CPU thread settings before model load/benchmark.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Apply PyTorch CPU thread settings before model load/benchmark.", "community": 24, "community_name": "Community 24", "source_file": "node/meshnet_node/startup.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_startup_rationale_228", "label": "CPU partial loads need room for model skeletons, tokenizer, and allocator peaks.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CPU partial loads need room for model skeletons, tokenizer, and allocator peaks.", "community": 24, "community_name": "Community 24", "source_file": "node/meshnet_node/startup.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_startup_rationale_333", "label": "Infer relay WebSocket URL from a public HTTPS tracker origin. Public\u2026", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Infer relay WebSocket URL from a public HTTPS tracker origin. Public\u2026", "community": 24, "community_name": "Community 24", "source_file": "node/meshnet_node/startup.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_startup_rationale_424", "label": "Daemon thread: sends heartbeats and re-registers automatically after tracker\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Daemon thread: sends heartbeats and re-registers automatically after tracker\u2026", "community": 61, "community_name": "Community 61", "source_file": "node/meshnet_node/startup.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_startup_rationale_615", "label": "Register with the tracker, or start background retries when it is unreachable.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Register with the tracker, or start background retries when it is unreachable.", "community": 61, "community_name": "Community 61", "source_file": "node/meshnet_node/startup.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_startup_rationale_646", "label": "Print a warning when the auto-detected advertise IP is in a known virtual-\u2026", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Print a warning when the auto-detected advertise IP is in a known virtual-\u2026", "community": 24, "community_name": "Community 24", "source_file": "node/meshnet_node/startup.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_startup_rationale_685", "label": "Describe an HTTP rejection from the tracker, including its JSON error.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Describe an HTTP rejection from the tracker, including its JSON error.", "community": 100, "community_name": "Community 100", "source_file": "node/meshnet_node/startup.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_startup_rationale_700", "label": "The recipe this node will serve with \u2014 resolved before any weights load.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The recipe this node will serve with \u2014 resolved before any weights load.", "community": 23, "community_name": "Community 23", "source_file": "node/meshnet_node/startup.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_startup_rationale_706", "label": "The device the shard actually landed on, or the one this node detected.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The device the shard actually landed on, or the one this node detected.", "community": 61, "community_name": "Community 61", "source_file": "node/meshnet_node/startup.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_startup_rationale_727", "label": "Prove this node can serve the selection, or refuse to advertise it. Runs on the\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Prove this node can serve the selection, or refuse to advertise it. Runs on the\u2026", "community": 61, "community_name": "Community 61", "source_file": "node/meshnet_node/startup.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_startup_rationale_771", "label": "A fresh proof for what the node serves *now*, run at re-registration time. The\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "A fresh proof for what the node serves *now*, run at re-registration time. The\u2026", "community": 61, "community_name": "Community 61", "source_file": "node/meshnet_node/startup.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_startup_rationale_834", "label": "Execute the full startup sequence and return a running node server. Steps (all\u2026", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Execute the full startup sequence and return a running node server. Steps (all\u2026", "community": 24, "community_name": "Community 24", "source_file": "node/meshnet_node/startup.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_startup_rationale_1641", "label": "Fetch num_hidden_layers from HuggingFace model config (downloads ~1 KB\u2026", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Fetch num_hidden_layers from HuggingFace model config (downloads ~1 KB\u2026", "community": 89, "community_name": "Community 89", "source_file": "node/meshnet_node/startup.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_testing", "label": "testing.py", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "testing.py", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/testing.py", "file_type": "code", "degree": 9}, {"id": "node_meshnet_node_testing_capability_report_for", "label": "capability_report_for()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "capability_report_for()", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/testing.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_testing_py_any", "label": "Any", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Any", "community": 7, "community_name": "Node Capability Reports", "source_file": "", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_testing_assume_capability", "label": "assume_capability()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "assume_capability()", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/testing.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_testing_capability_stub", "label": "capability_stub()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "capability_stub()", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/testing.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_testing_py_capabilityvalidator", "label": "CapabilityValidator", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CapabilityValidator", "community": 7, "community_name": "Node Capability Reports", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_testing_rationale_1", "label": "Test-only seams. Nothing in the production code path may import this module.\u2026", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Test-only seams. Nothing in the production code path may import this module.\u2026", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/testing.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_testing_rationale_38", "label": "A report describing `context`, with any field bent away from the truth.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "A report describing `context`, with any field bent away from the truth.", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/testing.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_testing_rationale_60", "label": "Assert the selection works, without proving it. Tests only.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Assert the selection works, without proving it. Tests only.", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/testing.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_testing_rationale_65", "label": "A validator producing a report that deviates from `context` as named.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "A validator producing a report that deviates from `context` as named.", "community": 7, "community_name": "Node Capability Reports", "source_file": "node/meshnet_node/testing.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_torch_server", "label": "torch_server.py", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 18.2, "font": {"size": 12, "color": "#ffffff"}, "title": "torch_server.py", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 46}, {"id": "node_meshnet_node_torch_server_pipelinecachemiss", "label": "_PipelineCacheMiss", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_PipelineCacheMiss", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 12}, {"id": "node_meshnet_node_torch_server_py_exception", "label": "Exception", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Exception", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_torch_server_relayrequestuncertainerror", "label": "_RelayRequestUncertainError", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_RelayRequestUncertainError", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 12}, {"id": "connectionerror", "label": "ConnectionError", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ConnectionError", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_torch_server_directrequestuncertainerror", "label": "_DirectRequestUncertainError", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_DirectRequestUncertainError", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 12}, {"id": "node_meshnet_node_torch_server_endpoint_key", "label": "_endpoint_key()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_endpoint_key()", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_torch_server_own_endpoint_key", "label": "_own_endpoint_key()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_own_endpoint_key()", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_torch_server_clamp_downstream_hops", "label": "_clamp_downstream_hops()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_clamp_downstream_hops()", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_torch_server_format_downstream_route", "label": "_format_downstream_route()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_format_downstream_route()", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_torch_server_write_progress_line", "label": "_write_progress_line()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_write_progress_line()", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_torch_server_relayhopclient", "label": "_RelayHopClient", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_RelayHopClient", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 15}, {"id": "node_meshnet_node_torch_server_relayhopclient_init", "label": ".__init__()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_torch_server_relayhopclient_request", "label": ".request()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".request()", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_torch_server_relayhopclient_close", "label": ".close()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".close()", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_torch_server_directhopclient", "label": "_DirectHopClient", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_DirectHopClient", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 15}, {"id": "node_meshnet_node_torch_server_directhopclient_init", "label": ".__init__()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_torch_server_directhopclient_connect", "label": "._connect()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._connect()", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_torch_server_py_httpconnection", "label": "HTTPConnection", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "HTTPConnection", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_torch_server_directhopclient_request", "label": ".request()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".request()", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_torch_server_directhopclient_close", "label": ".close()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".close()", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_torch_server_relay_hop", "label": "_relay_hop()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_relay_hop()", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_torch_server_maybe_compress_activation", "label": "_maybe_compress_activation()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_maybe_compress_activation()", "community": 27, "community_name": "Community 27", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_torch_server_is_cache_miss_body", "label": "_is_cache_miss_body()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_is_cache_miss_body()", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_torch_server_response_error_snippet", "label": "_response_error_snippet()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_response_error_snippet()", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_torch_server_torchhttpserver", "label": "_TorchHTTPServer", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_TorchHTTPServer", "community": 32, "community_name": "Community 32", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 16}, {"id": "node_meshnet_node_torch_server_torchhttpserver_init", "label": ".__init__()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 32, "community_name": "Community 32", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_torch_server_torchhttpserver_note_decode_step", "label": ".note_decode_step()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".note_decode_step()", "community": 32, "community_name": "Community 32", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_torch_server_torchhttpserver_snapshot_current_requests", "label": ".snapshot_current_requests()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".snapshot_current_requests()", "community": 32, "community_name": "Community 32", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_torch_server_py_any", "label": "Any", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Any", "community": 32, "community_name": "Community 32", "source_file": "", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_torch_server_torchhttpserver_resolve_backend", "label": ".resolve_backend()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".resolve_backend()", "community": 32, "community_name": "Community 32", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_torch_server_torchhttpserver_chat_enabled", "label": ".chat_enabled()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".chat_enabled()", "community": 32, "community_name": "Community 32", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_torch_server_torchhandler", "label": "_TorchHandler", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.5, "font": {"size": 12, "color": "#ffffff"}, "title": "_TorchHandler", "community": 49, "community_name": "Community 49", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 31}, {"id": "node_meshnet_node_torch_server_torchhandler_log_message", "label": ".log_message()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".log_message()", "community": 49, "community_name": "Community 49", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_torch_server_torchhandler_request_id", "label": "._request_id()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._request_id()", "community": 49, "community_name": "Community 49", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_torch_server_torchhandler_request_log_suffix", "label": "._request_log_suffix()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._request_log_suffix()", "community": 49, "community_name": "Community 49", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_torch_server_torchhandler_track_request_begin", "label": "._track_request_begin()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._track_request_begin()", "community": 49, "community_name": "Community 49", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_torch_server_torchhandler_track_request_progress", "label": "._track_request_progress()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._track_request_progress()", "community": 49, "community_name": "Community 49", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_torch_server_torchhandler_track_request_end", "label": "._track_request_end()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._track_request_end()", "community": 49, "community_name": "Community 49", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_torch_server_torchhandler_do_post", "label": ".do_POST()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".do_POST()", "community": 49, "community_name": "Community 49", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_torch_server_torchhandler_handle_infer", "label": "._handle_infer()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_infer()", "community": 49, "community_name": "Community 49", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_torch_server_torchhandler_handle_forward", "label": "._handle_forward()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_forward()", "community": 49, "community_name": "Community 49", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_torch_server_torchhandler_handle_prompt_forward", "label": "._handle_prompt_forward()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_prompt_forward()", "community": 49, "community_name": "Community 49", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_torch_server_torchhandler_handle_binary_forward", "label": "._handle_binary_forward()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_binary_forward()", "community": 27, "community_name": "Community 27", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 9}, {"id": "node_meshnet_node_torch_server_torchhandler_send_activation", "label": "._send_activation()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._send_activation()", "community": 49, "community_name": "Community 49", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_torch_server_torchhandler_read_json_body", "label": "._read_json_body()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._read_json_body()", "community": 49, "community_name": "Community 49", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_torch_server_torchhandler_send_json", "label": "._send_json()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "._send_json()", "community": 49, "community_name": "Community 49", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_torch_server_torchhandler_handle_chat_completions", "label": "._handle_chat_completions()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_chat_completions()", "community": 49, "community_name": "Community 49", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_torch_server_torchhandler_record_failed_request", "label": "._record_failed_request()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._record_failed_request()", "community": 49, "community_name": "Community 49", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_torch_server_torchhandler_do_chat_completions", "label": "._do_chat_completions()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "._do_chat_completions()", "community": 49, "community_name": "Community 49", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 18}, {"id": "node_meshnet_node_torch_server_torchhandler_get_remaining_route", "label": "._get_remaining_route()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._get_remaining_route()", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 8}, {"id": "node_meshnet_node_torch_server_torchhandler_run_downstream_pipeline", "label": "._run_downstream_pipeline()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "._run_downstream_pipeline()", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 17}, {"id": "node_meshnet_node_torch_server_torchhandler_stream_openai_response", "label": "._stream_openai_response()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._stream_openai_response()", "community": 49, "community_name": "Community 49", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_torch_server_torchhandler_start_openai_stream", "label": "._start_openai_stream()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._start_openai_stream()", "community": 49, "community_name": "Community 49", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_torch_server_torchhandler_send_openai_response", "label": "._send_openai_response()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._send_openai_response()", "community": 49, "community_name": "Community 49", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_torch_server_usage_for_response", "label": "_usage_for_response()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_usage_for_response()", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_torch_server_backend_token_count", "label": "_backend_token_count()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_backend_token_count()", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_torch_server_fallback_message_token_count", "label": "_fallback_message_token_count()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_fallback_message_token_count()", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_torch_server_fallback_text_token_count", "label": "_fallback_text_token_count()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_fallback_text_token_count()", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_torch_server_torchnodeserver", "label": "TorchNodeServer", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "TorchNodeServer", "community": 32, "community_name": "Community 32", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 28}, {"id": "node_meshnet_node_torch_server_torchnodeserver_init", "label": ".__init__()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 32, "community_name": "Community 32", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_torch_server_py_path", "label": "Path", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path", "community": 32, "community_name": "Community 32", "source_file": "", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_torch_server_torchnodeserver_route_timeout", "label": ".route_timeout()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".route_timeout()", "community": 32, "community_name": "Community 32", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_torch_server_torchnodeserver_backend", "label": ".backend()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".backend()", "community": 61, "community_name": "Community 61", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_torch_server_torchnodeserver_received_activations", "label": ".received_activations()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".received_activations()", "community": 32, "community_name": "Community 32", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_torch_server_torchnodeserver_forward_chunk_count", "label": ".forward_chunk_count()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".forward_chunk_count()", "community": 32, "community_name": "Community 32", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_torch_server_torchnodeserver_total_requests", "label": ".total_requests()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".total_requests()", "community": 37, "community_name": "Community 37", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_torch_server_torchnodeserver_failed_requests", "label": ".failed_requests()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".failed_requests()", "community": 37, "community_name": "Community 37", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_torch_server_torchnodeserver_queue_depth", "label": ".queue_depth()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".queue_depth()", "community": 37, "community_name": "Community 37", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_torch_server_torchnodeserver_current_requests", "label": ".current_requests()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".current_requests()", "community": 32, "community_name": "Community 32", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_torch_server_torchnodeserver_loaded_model_ids", "label": ".loaded_model_ids()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".loaded_model_ids()", "community": 32, "community_name": "Community 32", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_torch_server_torchnodeserver_backend_for", "label": ".backend_for()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".backend_for()", "community": 32, "community_name": "Community 32", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_torch_server_torchnodeserver_apply_tracker_directives", "label": ".apply_tracker_directives()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".apply_tracker_directives()", "community": 32, "community_name": "Community 32", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_torch_server_torchnodeserver_start", "label": ".start()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".start()", "community": 32, "community_name": "Community 32", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_torch_server_torchnodeserver_set_advertised_endpoint", "label": ".set_advertised_endpoint()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".set_advertised_endpoint()", "community": 32, "community_name": "Community 32", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_torch_server_torchnodeserver_stop", "label": ".stop()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".stop()", "community": 32, "community_name": "Community 32", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_torch_server_load_backend", "label": "_load_backend()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "_load_backend()", "community": 32, "community_name": "Community 32", "source_file": "node/meshnet_node/torch_server.py", "file_type": "code", "degree": 10}, {"id": "node_meshnet_node_torch_server_rationale_1", "label": "HTTP server for real PyTorch-backed shard nodes.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "HTTP server for real PyTorch-backed shard nodes.", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_torch_server_rationale_38", "label": "A downstream hop reported 409 cache_miss \u2014 head must re-prefill.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "A downstream hop reported 409 cache_miss \u2014 head must re-prefill.", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_torch_server_rationale_42", "label": "A relay request may have reached the peer but produced no response.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "A relay request may have reached the peer but produced no response.", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_torch_server_rationale_46", "label": "A direct request may have reached the downstream node but did not finish.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "A direct request may have reached the downstream node but did not finish.", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_torch_server_rationale_57", "label": "Normalize http(s) endpoints for host:port comparison.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Normalize http(s) endpoints for host:port comparison.", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_torch_server_rationale_80", "label": "Ensure downstream start_layer continues after this shard's layers.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Ensure downstream start_layer continues after this shard's layers.", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_torch_server_rationale_103", "label": "Rewrite one in-place progress line (\\\\r) or finish with a newline.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Rewrite one in-place progress line (\\\\r) or finish with a newline.", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_torch_server_rationale_120", "label": "Persistent relay connection scoped to one generation handler.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Persistent relay connection scoped to one generation handler.", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_torch_server_rationale_198", "label": "One serialized HTTP/1.1 connection to one downstream hop. Generation handlers\u2026", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "One serialized HTTP/1.1 connection to one downstream hop. Generation handlers\u2026", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_torch_server_rationale_257", "label": "Send one request through a short-lived relay client (compatibility API).\u2026", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Send one request through a short-lived relay client (compatibility API).\u2026", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_torch_server_rationale_278", "label": "Compatibility wrapper for callers that only need wire body and encoding.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Compatibility wrapper for callers that only need wire body and encoding.", "community": 27, "community_name": "Community 27", "source_file": "node/meshnet_node/torch_server.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_torch_server_rationale_291", "label": "Return a compact error string from a downstream JSON/text response body.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return a compact error string from a downstream JSON/text response body.", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_torch_server_rationale_335", "label": "Count one decode forward; return the cumulative step count when a log line is\u2026", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Count one decode forward; return the cumulative step count when a log line is\u2026", "community": 32, "community_name": "Community 32", "source_file": "node/meshnet_node/torch_server.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_torch_server_rationale_361", "label": "In-flight request snapshots for tracker heartbeats.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "In-flight request snapshots for tracker heartbeats.", "community": 32, "community_name": "Community 32", "source_file": "node/meshnet_node/torch_server.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_torch_server_rationale_975", "label": "Return downstream hops as dicts with endpoint, start_layer, and optional\u2026", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return downstream hops as dicts with endpoint, start_layer, and optional\u2026", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_torch_server_rationale_1062", "label": "Forward an activation through the downstream route. Returns (token_text,\u2026", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Forward an activation through the downstream route. Returns (token_text,\u2026", "community": 9, "community_name": "Activation Transport & Binary Frames", "source_file": "node/meshnet_node/torch_server.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_torch_server_rationale_1291", "label": "Stream tokens from an iterator as SSE chunks.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Stream tokens from an iterator as SSE chunks.", "community": 49, "community_name": "Community 49", "source_file": "node/meshnet_node/torch_server.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_torch_server_rationale_1300", "label": "Open an OpenAI-compatible SSE response and return a token emitter.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Open an OpenAI-compatible SSE response and return a token emitter.", "community": 49, "community_name": "Community 49", "source_file": "node/meshnet_node/torch_server.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_torch_server_rationale_1465", "label": "HTTP server backed by a HuggingFace causal language model shard.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "HTTP server backed by a HuggingFace causal language model shard.", "community": 32, "community_name": "Community 32", "source_file": "node/meshnet_node/torch_server.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_torch_server_rationale_1547", "label": "The loaded backend serving `model_id` \u2014 full repo id or short name.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The loaded backend serving `model_id` \u2014 full repo id or short name.", "community": 32, "community_name": "Community 32", "source_file": "node/meshnet_node/torch_server.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_torch_server_rationale_1558", "label": "Apply tracker shard directives (LOAD_SHARD replace, ADD_SHARD load-more).", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Apply tracker shard directives (LOAD_SHARD replace, ADD_SHARD load-more).", "community": 32, "community_name": "Community 32", "source_file": "node/meshnet_node/torch_server.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_torch_server_rationale_1676", "label": "Set the LAN-facing endpoint used for route self-detection.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Set the LAN-facing endpoint used for route self-detection.", "community": 32, "community_name": "Community 32", "source_file": "node/meshnet_node/torch_server.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_wallet", "label": "wallet.py", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "wallet.py", "community": 95, "community_name": "Community 95", "source_file": "node/meshnet_node/wallet.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_wallet_b58encode", "label": "_b58encode()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_b58encode()", "community": 95, "community_name": "Community 95", "source_file": "node/meshnet_node/wallet.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_wallet_load_or_create_wallet", "label": "load_or_create_wallet()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "load_or_create_wallet()", "community": 95, "community_name": "Community 95", "source_file": "node/meshnet_node/wallet.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_wallet_py_path", "label": "Path", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Path", "community": 95, "community_name": "Community 95", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_meshnet_node_wallet_rationale_1", "label": "Solana wallet management \u2014 load or generate an Ed25519 keypair. Solana keypair\u2026", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Solana wallet management \u2014 load or generate an Ed25519 keypair. Solana keypair\u2026", "community": 95, "community_name": "Community 95", "source_file": "node/meshnet_node/wallet.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_wallet_rationale_35", "label": "Return (secret_32, public_32, address_base58). Loads from *path* if it exists;\u2026", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return (secret_32, public_32, address_base58). Loads from *path* if it exists;\u2026", "community": 95, "community_name": "Community 95", "source_file": "node/meshnet_node/wallet.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_wizard", "label": "wizard.py", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "wizard.py", "community": 38, "community_name": "Community 38", "source_file": "node/meshnet_node/wizard.py", "file_type": "code", "degree": 20}, {"id": "node_meshnet_node_wizard_ask", "label": "_ask()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_ask()", "community": 38, "community_name": "Community 38", "source_file": "node/meshnet_node/wizard.py", "file_type": "code", "degree": 6}, {"id": "node_meshnet_node_wizard_ask_int", "label": "_ask_int()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_ask_int()", "community": 38, "community_name": "Community 38", "source_file": "node/meshnet_node/wizard.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_wizard_ask_yn", "label": "_ask_yn()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_ask_yn()", "community": 38, "community_name": "Community 38", "source_file": "node/meshnet_node/wizard.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_wizard_detect_gpus", "label": "_detect_gpus()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_detect_gpus()", "community": 38, "community_name": "Community 38", "source_file": "node/meshnet_node/wizard.py", "file_type": "code", "degree": 4}, {"id": "node_meshnet_node_wizard_total_vram_gb", "label": "_total_vram_gb()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_total_vram_gb()", "community": 38, "community_name": "Community 38", "source_file": "node/meshnet_node/wizard.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_wizard_print_gpus", "label": "_print_gpus()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_print_gpus()", "community": 38, "community_name": "Community 38", "source_file": "node/meshnet_node/wizard.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_wizard_print_model_table", "label": "_print_model_table()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_print_model_table()", "community": 38, "community_name": "Community 38", "source_file": "node/meshnet_node/wizard.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_wizard_browse_hf_interactive", "label": "_browse_hf_interactive()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_browse_hf_interactive()", "community": 38, "community_name": "Community 38", "source_file": "node/meshnet_node/wizard.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_wizard_ask_quant", "label": "_ask_quant()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_ask_quant()", "community": 38, "community_name": "Community 38", "source_file": "node/meshnet_node/wizard.py", "file_type": "code", "degree": 5}, {"id": "node_meshnet_node_wizard_validate_dir", "label": "_validate_dir()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_validate_dir()", "community": 38, "community_name": "Community 38", "source_file": "node/meshnet_node/wizard.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_wizard_validate_tracker", "label": "_validate_tracker()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_validate_tracker()", "community": 38, "community_name": "Community 38", "source_file": "node/meshnet_node/wizard.py", "file_type": "code", "degree": 2}, {"id": "node_meshnet_node_wizard_ping_tracker", "label": "_ping_tracker()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_ping_tracker()", "community": 38, "community_name": "Community 38", "source_file": "node/meshnet_node/wizard.py", "file_type": "code", "degree": 3}, {"id": "node_meshnet_node_wizard_run_wizard", "label": "run_wizard()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "run_wizard()", "community": 38, "community_name": "Community 38", "source_file": "node/meshnet_node/wizard.py", "file_type": "code", "degree": 17}, {"id": "node_meshnet_node_wizard_print_models_table", "label": "print_models_table()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "print_models_table()", "community": 38, "community_name": "Community 38", "source_file": "node/meshnet_node/wizard.py", "file_type": "code", "degree": 7}, {"id": "node_meshnet_node_wizard_rationale_1", "label": "Interactive first-run setup wizard \u2014 mining-client style.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Interactive first-run setup wizard \u2014 mining-client style.", "community": 38, "community_name": "Community 38", "source_file": "node/meshnet_node/wizard.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_wizard_rationale_27", "label": "Prompt user and return answer. Returns default on empty input or EOF.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Prompt user and return answer. Returns default on empty input or EOF.", "community": 38, "community_name": "Community 38", "source_file": "node/meshnet_node/wizard.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_wizard_rationale_72", "label": "Return list of detected GPU dicts with name and vram_gb.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return list of detected GPU dicts with name and vram_gb.", "community": 38, "community_name": "Community 38", "source_file": "node/meshnet_node/wizard.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_wizard_rationale_126", "label": "Show HF Hub top-20 and let user enter a repo ID. Returns repo ID or None to go\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Show HF Hub top-20 and let user enter a repo ID. Returns repo ID or None to go\u2026", "community": 38, "community_name": "Community 38", "source_file": "node/meshnet_node/wizard.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_wizard_rationale_206", "label": "Return True if tracker responds to /health.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return True if tracker responds to /health.", "community": 38, "community_name": "Community 38", "source_file": "node/meshnet_node/wizard.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_wizard_rationale_215", "label": "Run the interactive setup wizard and return a config dict. Raises\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Run the interactive setup wizard and return a config dict. Raises\u2026", "community": 38, "community_name": "Community 38", "source_file": "node/meshnet_node/wizard.py", "file_type": "rationale", "degree": 1}, {"id": "node_meshnet_node_wizard_rationale_312", "label": "Print curated model table for `meshnet-node models`.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Print curated model table for `meshnet-node models`.", "community": 38, "community_name": "Community 38", "source_file": "node/meshnet_node/wizard.py", "file_type": "rationale", "degree": 1}, {"id": "node_native_llama_meshnet_range_loader", "label": "meshnet-range-loader.cpp", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet-range-loader.cpp", "community": 108, "community_name": "Community 108", "source_file": "node/native/llama/meshnet-range-loader.cpp", "file_type": "code", "degree": 1}, {"id": "node_native_llama_meshnet_range_loader_main", "label": "main()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 108, "community_name": "Community 108", "source_file": "node/native/llama/meshnet-range-loader.cpp", "file_type": "code", "degree": 1}, {"id": "node_native_tests_test_shard_protocol_conformance", "label": "test_shard_protocol_conformance.cpp", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "test_shard_protocol_conformance.cpp", "community": 62, "community_name": "Community 62", "source_file": "node/native/tests/test_shard_protocol_conformance.cpp", "file_type": "code", "degree": 12}, {"id": "node_native_tests_test_shard_protocol_conformance_crc32c", "label": "Crc32c()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Crc32c()", "community": 62, "community_name": "Community 62", "source_file": "node/native/tests/test_shard_protocol_conformance.cpp", "file_type": "code", "degree": 3}, {"id": "string", "label": "string", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "string", "community": 62, "community_name": "Community 62", "source_file": "", "file_type": "code", "degree": 11}, {"id": "node_native_tests_test_shard_protocol_conformance_readfile", "label": "ReadFile()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ReadFile()", "community": 62, "community_name": "Community 62", "source_file": "node/native/tests/test_shard_protocol_conformance.cpp", "file_type": "code", "degree": 4}, {"id": "node_native_tests_test_shard_protocol_conformance_cpp_path", "label": "path", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "path", "community": 62, "community_name": "Community 62", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_native_tests_test_shard_protocol_conformance_reassembleuncompressed", "label": "ReassembleUncompressed()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ReassembleUncompressed()", "community": 62, "community_name": "Community 62", "source_file": "node/native/tests/test_shard_protocol_conformance.cpp", "file_type": "code", "degree": 3}, {"id": "node_native_tests_test_shard_protocol_conformance_checkfingerprint", "label": "CheckFingerprint()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CheckFingerprint()", "community": 62, "community_name": "Community 62", "source_file": "node/native/tests/test_shard_protocol_conformance.cpp", "file_type": "code", "degree": 5}, {"id": "fingerprint", "label": "Fingerprint", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Fingerprint", "community": 62, "community_name": "Community 62", "source_file": "", "file_type": "code", "degree": 1}, {"id": "node_native_tests_test_shard_protocol_conformance_testsessionrequestvector", "label": "TestSessionRequestVector()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "TestSessionRequestVector()", "community": 62, "community_name": "Community 62", "source_file": "node/native/tests/test_shard_protocol_conformance.cpp", "file_type": "code", "degree": 6}, {"id": "node_native_tests_test_shard_protocol_conformance_testcapabilityreportvector", "label": "TestCapabilityReportVector()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "TestCapabilityReportVector()", "community": 62, "community_name": "Community 62", "source_file": "node/native/tests/test_shard_protocol_conformance.cpp", "file_type": "code", "degree": 4}, {"id": "node_native_tests_test_shard_protocol_conformance_testunknownfieldsarepreserved", "label": "TestUnknownFieldsArePreserved()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "TestUnknownFieldsArePreserved()", "community": 62, "community_name": "Community 62", "source_file": "node/native/tests/test_shard_protocol_conformance.cpp", "file_type": "code", "degree": 3}, {"id": "node_native_tests_test_shard_protocol_conformance_testsparsemessageparses", "label": "TestSparseMessageParses()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "TestSparseMessageParses()", "community": 62, "community_name": "Community 62", "source_file": "node/native/tests/test_shard_protocol_conformance.cpp", "file_type": "code", "degree": 3}, {"id": "node_native_tests_test_shard_protocol_conformance_testdecodefastpathissmall", "label": "TestDecodeFastPathIsSmall()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "TestDecodeFastPathIsSmall()", "community": 62, "community_name": "Community 62", "source_file": "node/native/tests/test_shard_protocol_conformance.cpp", "file_type": "code", "degree": 3}, {"id": "node_native_tests_test_shard_protocol_conformance_testdecodebundlevector", "label": "TestDecodeBundleVector()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "TestDecodeBundleVector()", "community": 62, "community_name": "Community 62", "source_file": "node/native/tests/test_shard_protocol_conformance.cpp", "file_type": "code", "degree": 3}, {"id": "node_native_tests_test_shard_protocol_conformance_main", "label": "main()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 62, "community_name": "Community 62", "source_file": "node/native/tests/test_shard_protocol_conformance.cpp", "file_type": "code", "degree": 8}, {"id": "pkg_meshnet_node", "label": "meshnet-node", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet-node", "community": 118, "community_name": "Community 118", "source_file": "node/pyproject.toml", "file_type": "code", "degree": 0}, {"id": "p2p_meshnet_p2p_init", "label": "meshnet_p2p/__init__.py", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet_p2p/__init__.py", "community": 109, "community_name": "Community 109", "source_file": "p2p/meshnet_p2p/__init__.py", "file_type": "code", "degree": 1}, {"id": "p2p_meshnet_p2p_init_rationale_1", "label": "meshnet_p2p \u2014 Gossip protocol and shard swarm for the Distributed Inference\u2026", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet_p2p \u2014 Gossip protocol and shard swarm for the Distributed Inference\u2026", "community": 109, "community_name": "Community 109", "source_file": "p2p/meshnet_p2p/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "p2p_meshnet_p2p_gossip", "label": "meshnet_p2p/gossip.py", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet_p2p/gossip.py", "community": 54, "community_name": "Community 54", "source_file": "p2p/meshnet_p2p/gossip.py", "file_type": "code", "degree": 3}, {"id": "p2p_meshnet_p2p_gossip_make_envelope", "label": "_make_envelope()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_make_envelope()", "community": 54, "community_name": "Community 54", "source_file": "p2p/meshnet_p2p/gossip.py", "file_type": "code", "degree": 3}, {"id": "p2p_meshnet_p2p_gossip_gossipclient", "label": "GossipClient", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "GossipClient", "community": 54, "community_name": "Community 54", "source_file": "p2p/meshnet_p2p/gossip.py", "file_type": "code", "degree": 12}, {"id": "p2p_meshnet_p2p_gossip_gossipclient_init", "label": ".__init__()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 54, "community_name": "Community 54", "source_file": "p2p/meshnet_p2p/gossip.py", "file_type": "code", "degree": 1}, {"id": "p2p_meshnet_p2p_gossip_gossipclient_subscribe", "label": ".subscribe()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".subscribe()", "community": 54, "community_name": "Community 54", "source_file": "p2p/meshnet_p2p/gossip.py", "file_type": "code", "degree": 2}, {"id": "p2p_meshnet_p2p_gossip_gossipclient_publish", "label": ".publish()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".publish()", "community": 54, "community_name": "Community 54", "source_file": "p2p/meshnet_p2p/gossip.py", "file_type": "code", "degree": 4}, {"id": "p2p_meshnet_p2p_gossip_gossipclient_start", "label": ".start()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".start()", "community": 54, "community_name": "Community 54", "source_file": "p2p/meshnet_p2p/gossip.py", "file_type": "code", "degree": 2}, {"id": "p2p_meshnet_p2p_gossip_gossipclient_wait_connected", "label": ".wait_connected()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".wait_connected()", "community": 54, "community_name": "Community 54", "source_file": "p2p/meshnet_p2p/gossip.py", "file_type": "code", "degree": 2}, {"id": "p2p_meshnet_p2p_gossip_gossipclient_stop", "label": ".stop()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".stop()", "community": 54, "community_name": "Community 54", "source_file": "p2p/meshnet_p2p/gossip.py", "file_type": "code", "degree": 2}, {"id": "p2p_meshnet_p2p_gossip_gossipclient_run_loop", "label": "._run_loop()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._run_loop()", "community": 54, "community_name": "Community 54", "source_file": "p2p/meshnet_p2p/gossip.py", "file_type": "code", "degree": 2}, {"id": "p2p_meshnet_p2p_gossip_gossipclient_connect_loop", "label": "._connect_loop()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._connect_loop()", "community": 54, "community_name": "Community 54", "source_file": "p2p/meshnet_p2p/gossip.py", "file_type": "code", "degree": 4}, {"id": "p2p_meshnet_p2p_gossip_gossipclient_receive_loop", "label": "._receive_loop()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._receive_loop()", "community": 54, "community_name": "Community 54", "source_file": "p2p/meshnet_p2p/gossip.py", "file_type": "code", "degree": 2}, {"id": "p2p_meshnet_p2p_gossip_gossipclient_send", "label": "._send()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._send()", "community": 54, "community_name": "Community 54", "source_file": "p2p/meshnet_p2p/gossip.py", "file_type": "code", "degree": 2}, {"id": "p2p_meshnet_p2p_gossip_rationale_1", "label": "WebSocket gossip client \u2014 connects to relay, publish/subscribe to topics.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "WebSocket gossip client \u2014 connects to relay, publish/subscribe to topics.", "community": 54, "community_name": "Community 54", "source_file": "p2p/meshnet_p2p/gossip.py", "file_type": "rationale", "degree": 1}, {"id": "p2p_meshnet_p2p_gossip_rationale_40", "label": "Thread-safe WebSocket gossip client. Usage:: client =\u2026", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Thread-safe WebSocket gossip client. Usage:: client =\u2026", "community": 54, "community_name": "Community 54", "source_file": "p2p/meshnet_p2p/gossip.py", "file_type": "rationale", "degree": 1}, {"id": "p2p_meshnet_p2p_gossip_rationale_67", "label": "Register a sync callback for messages on topic.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Register a sync callback for messages on topic.", "community": 54, "community_name": "Community 54", "source_file": "p2p/meshnet_p2p/gossip.py", "file_type": "rationale", "degree": 1}, {"id": "p2p_meshnet_p2p_gossip_rationale_71", "label": "Send a gossip message to all peers via the relay. Thread-safe.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Send a gossip message to all peers via the relay. Thread-safe.", "community": 54, "community_name": "Community 54", "source_file": "p2p/meshnet_p2p/gossip.py", "file_type": "rationale", "degree": 1}, {"id": "p2p_meshnet_p2p_gossip_rationale_77", "label": "Start the gossip client in a background thread.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Start the gossip client in a background thread.", "community": 54, "community_name": "Community 54", "source_file": "p2p/meshnet_p2p/gossip.py", "file_type": "rationale", "degree": 1}, {"id": "p2p_meshnet_p2p_gossip_rationale_84", "label": "Block until connected to relay or timeout. Returns True if connected.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Block until connected to relay or timeout. Returns True if connected.", "community": 54, "community_name": "Community 54", "source_file": "p2p/meshnet_p2p/gossip.py", "file_type": "rationale", "degree": 1}, {"id": "p2p_meshnet_p2p_gossip_rationale_88", "label": "Stop the gossip client and clean up.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Stop the gossip client and clean up.", "community": 54, "community_name": "Community 54", "source_file": "p2p/meshnet_p2p/gossip.py", "file_type": "rationale", "degree": 1}, {"id": "p2p_meshnet_p2p_identity", "label": "identity.py", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "identity.py", "community": 90, "community_name": "Community 90", "source_file": "p2p/meshnet_p2p/identity.py", "file_type": "code", "degree": 4}, {"id": "p2p_meshnet_p2p_identity_generate_keypair", "label": "_generate_keypair()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_generate_keypair()", "community": 90, "community_name": "Community 90", "source_file": "p2p/meshnet_p2p/identity.py", "file_type": "code", "degree": 3}, {"id": "p2p_meshnet_p2p_identity_peer_id_from_pubkey", "label": "_peer_id_from_pubkey()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_peer_id_from_pubkey()", "community": 90, "community_name": "Community 90", "source_file": "p2p/meshnet_p2p/identity.py", "file_type": "code", "degree": 2}, {"id": "p2p_meshnet_p2p_identity_load_or_create_identity", "label": "load_or_create_identity()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "load_or_create_identity()", "community": 90, "community_name": "Community 90", "source_file": "p2p/meshnet_p2p/identity.py", "file_type": "code", "degree": 5}, {"id": "p2p_meshnet_p2p_identity_py_path", "label": "Path", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Path", "community": 90, "community_name": "Community 90", "source_file": "", "file_type": "code", "degree": 1}, {"id": "p2p_meshnet_p2p_identity_rationale_1", "label": "Peer identity \u2014 stable peer_id and RSA keypair, persisted to disk.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Peer identity \u2014 stable peer_id and RSA keypair, persisted to disk.", "community": 90, "community_name": "Community 90", "source_file": "p2p/meshnet_p2p/identity.py", "file_type": "rationale", "degree": 1}, {"id": "p2p_meshnet_p2p_identity_rationale_15", "label": "Return (private_key_pem, public_key_pem) for a new RSA-2048 keypair.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return (private_key_pem, public_key_pem) for a new RSA-2048 keypair.", "community": 90, "community_name": "Community 90", "source_file": "p2p/meshnet_p2p/identity.py", "file_type": "rationale", "degree": 1}, {"id": "p2p_meshnet_p2p_identity_rationale_37", "label": "Return identity dict with peer_id, private_key_pem, public_key_pem. Creates and\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return identity dict with peer_id, private_key_pem, public_key_pem. Creates and\u2026", "community": 90, "community_name": "Community 90", "source_file": "p2p/meshnet_p2p/identity.py", "file_type": "rationale", "degree": 1}, {"id": "p2p_meshnet_p2p_mdns", "label": "mdns.py", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "mdns.py", "community": 65, "community_name": "Community 65", "source_file": "p2p/meshnet_p2p/mdns.py", "file_type": "code", "degree": 4}, {"id": "p2p_meshnet_p2p_mdns_local_ip", "label": "_local_ip()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_local_ip()", "community": 65, "community_name": "Community 65", "source_file": "p2p/meshnet_p2p/mdns.py", "file_type": "code", "degree": 2}, {"id": "p2p_meshnet_p2p_mdns_mdnsdiscovery", "label": "MdnsDiscovery", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "MdnsDiscovery", "community": 65, "community_name": "Community 65", "source_file": "p2p/meshnet_p2p/mdns.py", "file_type": "code", "degree": 7}, {"id": "p2p_meshnet_p2p_mdns_mdnsdiscovery_init", "label": ".__init__()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 65, "community_name": "Community 65", "source_file": "p2p/meshnet_p2p/mdns.py", "file_type": "code", "degree": 1}, {"id": "p2p_meshnet_p2p_mdns_mdnsdiscovery_is_available", "label": ".is_available()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".is_available()", "community": 65, "community_name": "Community 65", "source_file": "p2p/meshnet_p2p/mdns.py", "file_type": "code", "degree": 1}, {"id": "p2p_meshnet_p2p_mdns_mdnsdiscovery_start", "label": ".start()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".start()", "community": 65, "community_name": "Community 65", "source_file": "p2p/meshnet_p2p/mdns.py", "file_type": "code", "degree": 3}, {"id": "p2p_meshnet_p2p_mdns_mdnsdiscovery_stop", "label": ".stop()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".stop()", "community": 65, "community_name": "Community 65", "source_file": "p2p/meshnet_p2p/mdns.py", "file_type": "code", "degree": 1}, {"id": "p2p_meshnet_p2p_mdns_listener", "label": "_Listener", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_Listener", "community": 65, "community_name": "Community 65", "source_file": "p2p/meshnet_p2p/mdns.py", "file_type": "code", "degree": 7}, {"id": "p2p_meshnet_p2p_mdns_listener_init", "label": ".__init__()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 65, "community_name": "Community 65", "source_file": "p2p/meshnet_p2p/mdns.py", "file_type": "code", "degree": 2}, {"id": "p2p_meshnet_p2p_mdns_listener_add_service", "label": ".add_service()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".add_service()", "community": 65, "community_name": "Community 65", "source_file": "p2p/meshnet_p2p/mdns.py", "file_type": "code", "degree": 1}, {"id": "p2p_meshnet_p2p_mdns_listener_remove_service", "label": ".remove_service()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove_service()", "community": 65, "community_name": "Community 65", "source_file": "p2p/meshnet_p2p/mdns.py", "file_type": "code", "degree": 1}, {"id": "p2p_meshnet_p2p_mdns_listener_update_service", "label": ".update_service()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".update_service()", "community": 65, "community_name": "Community 65", "source_file": "p2p/meshnet_p2p/mdns.py", "file_type": "code", "degree": 1}, {"id": "p2p_meshnet_p2p_mdns_rationale_1", "label": "mDNS peer discovery using zeroconf (optional dependency). Falls back gracefully\u2026", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "mDNS peer discovery using zeroconf (optional dependency). Falls back gracefully\u2026", "community": 65, "community_name": "Community 65", "source_file": "p2p/meshnet_p2p/mdns.py", "file_type": "rationale", "degree": 1}, {"id": "p2p_meshnet_p2p_mdns_rationale_36", "label": "Announce this node on mDNS and discover peers on the same LAN. If `zeroconf` is\u2026", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Announce this node on mDNS and discover peers on the same LAN. If `zeroconf` is\u2026", "community": 65, "community_name": "Community 65", "source_file": "p2p/meshnet_p2p/mdns.py", "file_type": "rationale", "degree": 1}, {"id": "p2p_meshnet_p2p_mdns_rationale_106", "label": "Internal zeroconf service listener.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Internal zeroconf service listener.", "community": 65, "community_name": "Community 65", "source_file": "p2p/meshnet_p2p/mdns.py", "file_type": "rationale", "degree": 1}, {"id": "p2p_meshnet_p2p_tls", "label": "tls.py", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "tls.py", "community": 75, "community_name": "Community 75", "source_file": "p2p/meshnet_p2p/tls.py", "file_type": "code", "degree": 5}, {"id": "p2p_meshnet_p2p_tls_generate_self_signed_cert", "label": "generate_self_signed_cert()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "generate_self_signed_cert()", "community": 75, "community_name": "Community 75", "source_file": "p2p/meshnet_p2p/tls.py", "file_type": "code", "degree": 3}, {"id": "p2p_meshnet_p2p_tls_py_path", "label": "Path", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Path", "community": 75, "community_name": "Community 75", "source_file": "", "file_type": "code", "degree": 3}, {"id": "p2p_meshnet_p2p_tls_cert_fingerprint", "label": "cert_fingerprint()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "cert_fingerprint()", "community": 75, "community_name": "Community 75", "source_file": "p2p/meshnet_p2p/tls.py", "file_type": "code", "degree": 3}, {"id": "p2p_meshnet_p2p_tls_make_server_ssl_context", "label": "make_server_ssl_context()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "make_server_ssl_context()", "community": 75, "community_name": "Community 75", "source_file": "p2p/meshnet_p2p/tls.py", "file_type": "code", "degree": 4}, {"id": "sslcontext", "label": "SSLContext", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "SSLContext", "community": 75, "community_name": "Community 75", "source_file": "", "file_type": "code", "degree": 2}, {"id": "p2p_meshnet_p2p_tls_make_client_ssl_context", "label": "make_client_ssl_context()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "make_client_ssl_context()", "community": 75, "community_name": "Community 75", "source_file": "p2p/meshnet_p2p/tls.py", "file_type": "code", "degree": 3}, {"id": "p2p_meshnet_p2p_tls_rationale_1", "label": "TLS certificate generation and fingerprint helpers for node-to-node comms.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "TLS certificate generation and fingerprint helpers for node-to-node comms.", "community": 75, "community_name": "Community 75", "source_file": "p2p/meshnet_p2p/tls.py", "file_type": "rationale", "degree": 1}, {"id": "p2p_meshnet_p2p_tls_rationale_22", "label": "Generate a self-signed RSA-2048 cert valid for 10 years. Returns (cert_path,\u2026", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Generate a self-signed RSA-2048 cert valid for 10 years. Returns (cert_path,\u2026", "community": 75, "community_name": "Community 75", "source_file": "p2p/meshnet_p2p/tls.py", "file_type": "rationale", "degree": 1}, {"id": "p2p_meshnet_p2p_tls_rationale_84", "label": "Return sha256 fingerprint of the cert as 'sha256:<hex>'.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return sha256 fingerprint of the cert as 'sha256:<hex>'.", "community": 75, "community_name": "Community 75", "source_file": "p2p/meshnet_p2p/tls.py", "file_type": "rationale", "degree": 1}, {"id": "p2p_meshnet_p2p_tls_rationale_98", "label": "Return an ssl.SSLContext for a server using our self-signed cert.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return an ssl.SSLContext for a server using our self-signed cert.", "community": 75, "community_name": "Community 75", "source_file": "p2p/meshnet_p2p/tls.py", "file_type": "rationale", "degree": 1}, {"id": "p2p_meshnet_p2p_tls_rationale_107", "label": "Return a client SSLContext. verify=False for self-signed TOFU connections.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return a client SSLContext. verify=False for self-signed TOFU connections.", "community": 75, "community_name": "Community 75", "source_file": "p2p/meshnet_p2p/tls.py", "file_type": "rationale", "degree": 1}, {"id": "pkg_meshnet_p2p", "label": "meshnet-p2p", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet-p2p", "community": 119, "community_name": "Community 119", "source_file": "p2p/pyproject.toml", "file_type": "code", "degree": 0}, {"id": "relay_meshnet_relay_init", "label": "meshnet_relay/__init__.py", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet_relay/__init__.py", "community": 110, "community_name": "Community 110", "source_file": "relay/meshnet_relay/__init__.py", "file_type": "code", "degree": 1}, {"id": "relay_meshnet_relay_init_rationale_1", "label": "meshnet-relay \u2014 NAT-traversal relay and gossip hub.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet-relay \u2014 NAT-traversal relay and gossip hub.", "community": 110, "community_name": "Community 110", "source_file": "relay/meshnet_relay/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "relay_meshnet_relay_cli", "label": "meshnet_relay/cli.py", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet_relay/cli.py", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/cli.py", "file_type": "code", "degree": 3}, {"id": "relay_meshnet_relay_cli_main", "label": "main()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/cli.py", "file_type": "code", "degree": 2}, {"id": "relay_meshnet_relay_cli_rationale_1", "label": "meshnet-relay CLI entry point.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet-relay CLI entry point.", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/cli.py", "file_type": "rationale", "degree": 1}, {"id": "relay_meshnet_relay_peer_registry", "label": "peer_registry.py", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "peer_registry.py", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/peer_registry.py", "file_type": "code", "degree": 4}, {"id": "relay_meshnet_relay_peer_registry_peerentry", "label": "PeerEntry", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "PeerEntry", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/peer_registry.py", "file_type": "code", "degree": 4}, {"id": "relay_meshnet_relay_peer_registry_peerregistry", "label": "PeerRegistry", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PeerRegistry", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/peer_registry.py", "file_type": "code", "degree": 13}, {"id": "relay_meshnet_relay_peer_registry_peerregistry_init", "label": ".__init__()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/peer_registry.py", "file_type": "code", "degree": 1}, {"id": "relay_meshnet_relay_peer_registry_peerregistry_register", "label": ".register()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".register()", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/peer_registry.py", "file_type": "code", "degree": 2}, {"id": "relay_meshnet_relay_peer_registry_peerregistry_unregister", "label": ".unregister()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".unregister()", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/peer_registry.py", "file_type": "code", "degree": 1}, {"id": "relay_meshnet_relay_peer_registry_peerregistry_touch", "label": ".touch()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".touch()", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/peer_registry.py", "file_type": "code", "degree": 1}, {"id": "relay_meshnet_relay_peer_registry_peerregistry_get", "label": ".get()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".get()", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/peer_registry.py", "file_type": "code", "degree": 2}, {"id": "relay_meshnet_relay_peer_registry_peerregistry_all_except", "label": ".all_except()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".all_except()", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/peer_registry.py", "file_type": "code", "degree": 2}, {"id": "relay_meshnet_relay_peer_registry_peerregistry_list_peers", "label": ".list_peers()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".list_peers()", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/peer_registry.py", "file_type": "code", "degree": 1}, {"id": "relay_meshnet_relay_peer_registry_peerregistry_len", "label": ".__len__()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".__len__()", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/peer_registry.py", "file_type": "code", "degree": 1}, {"id": "relay_meshnet_relay_peer_registry_rationale_1", "label": "In-memory registry of connected gossip peers.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "In-memory registry of connected gossip peers.", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/peer_registry.py", "file_type": "rationale", "degree": 1}, {"id": "relay_meshnet_relay_server", "label": "meshnet_relay/server.py", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet_relay/server.py", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/server.py", "file_type": "code", "degree": 9}, {"id": "relay_meshnet_relay_server_ws_max_size", "label": "ws_max_size()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ws_max_size()", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/server.py", "file_type": "code", "degree": 3}, {"id": "relay_meshnet_relay_server_encode_binary_frame", "label": "encode_binary_frame()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "encode_binary_frame()", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/server.py", "file_type": "code", "degree": 2}, {"id": "relay_meshnet_relay_server_decode_binary_frame", "label": "decode_binary_frame()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "decode_binary_frame()", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/server.py", "file_type": "code", "degree": 3}, {"id": "relay_meshnet_relay_server_relayserver", "label": "RelayServer", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "RelayServer", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/server.py", "file_type": "code", "degree": 17}, {"id": "relay_meshnet_relay_server_relayserver_init", "label": ".__init__()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/server.py", "file_type": "code", "degree": 3}, {"id": "relay_meshnet_relay_server_py_path", "label": "Path", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Path", "community": 12, "community_name": "Relay Peer Registry", "source_file": "", "file_type": "code", "degree": 1}, {"id": "relay_meshnet_relay_server_relayserver_registry", "label": ".registry()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".registry()", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/server.py", "file_type": "code", "degree": 2}, {"id": "relay_meshnet_relay_server_relayserver_start", "label": ".start()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".start()", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/server.py", "file_type": "code", "degree": 2}, {"id": "relay_meshnet_relay_server_relayserver_stop", "label": ".stop()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".stop()", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/server.py", "file_type": "code", "degree": 1}, {"id": "relay_meshnet_relay_server_relayserver_fail_pending_for_peer", "label": "._fail_pending_for_peer()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._fail_pending_for_peer()", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/server.py", "file_type": "code", "degree": 3}, {"id": "relay_meshnet_relay_server_relayserver_run", "label": "._run()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._run()", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/server.py", "file_type": "code", "degree": 2}, {"id": "relay_meshnet_relay_server_relayserver_serve", "label": "._serve()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._serve()", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/server.py", "file_type": "code", "degree": 3}, {"id": "relay_meshnet_relay_server_relayserver_handle_connection", "label": "._handle_connection()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_connection()", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/server.py", "file_type": "code", "degree": 5}, {"id": "relay_meshnet_relay_server_relayserver_handle_gossip", "label": "._handle_gossip()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_gossip()", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/server.py", "file_type": "code", "degree": 6}, {"id": "relay_meshnet_relay_server_relayserver_handle_circuit_relay", "label": "._handle_circuit_relay()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_circuit_relay()", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/server.py", "file_type": "code", "degree": 3}, {"id": "relay_meshnet_relay_server_relayserver_handle_rpc", "label": "._handle_rpc()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_rpc()", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/server.py", "file_type": "code", "degree": 6}, {"id": "relay_meshnet_relay_server_broadcast", "label": "_broadcast()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_broadcast()", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/server.py", "file_type": "code", "degree": 4}, {"id": "relay_meshnet_relay_server_safe_send", "label": "_safe_send()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_safe_send()", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/server.py", "file_type": "code", "degree": 2}, {"id": "relay_meshnet_relay_server_rationale_1", "label": "Relay server \u2014 WebSocket gossip hub + circuit relay proxy. HTTP API (served via\u2026", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Relay server \u2014 WebSocket gossip hub + circuit relay proxy. HTTP API (served via\u2026", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/server.py", "file_type": "rationale", "degree": 1}, {"id": "relay_meshnet_relay_server_rationale_33", "label": "Max inbound WebSocket frame size; MESHNET_WS_MAX_BYTES<=0 means unlimited.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Max inbound WebSocket frame size; MESHNET_WS_MAX_BYTES<=0 means unlimited.", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/server.py", "file_type": "rationale", "degree": 1}, {"id": "relay_meshnet_relay_server_rationale_66", "label": "Async WebSocket relay server that runs in a background thread. Usage:: server =\u2026", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Async WebSocket relay server that runs in a background thread. Usage:: server =\u2026", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/server.py", "file_type": "rationale", "degree": 1}, {"id": "relay_meshnet_relay_server_rationale_112", "label": "Start server in background thread. Returns actual bound port.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Start server in background thread. Returns actual bound port.", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/server.py", "file_type": "rationale", "degree": 1}, {"id": "relay_meshnet_relay_server_rationale_128", "label": "Wake requesters immediately when their selected bridge disconnects.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Wake requesters immediately when their selected bridge disconnects.", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/server.py", "file_type": "rationale", "degree": 1}, {"id": "relay_meshnet_relay_server_rationale_172", "label": "Dispatch incoming WebSocket to gossip hub or circuit relay.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Dispatch incoming WebSocket to gossip hub or circuit relay.", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/server.py", "file_type": "rationale", "degree": 1}, {"id": "relay_meshnet_relay_server_rationale_194", "label": "Accept a gossip peer connection, register it, and fan out messages.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Accept a gossip peer connection, register it, and fan out messages.", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/server.py", "file_type": "rationale", "degree": 1}, {"id": "relay_meshnet_relay_server_rationale_263", "label": "Proxy WebSocket traffic between ws_requester and target_peer_id's ws.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Proxy WebSocket traffic between ws_requester and target_peer_id's ws.", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/server.py", "file_type": "rationale", "degree": 1}, {"id": "relay_meshnet_relay_server_rationale_291", "label": "Relay sequential HTTP-shaped requests over one requester connection.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Relay sequential HTTP-shaped requests over one requester connection.", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/server.py", "file_type": "rationale", "degree": 1}, {"id": "relay_meshnet_relay_server_rationale_391", "label": "Send raw message to all peers; ignore individual send failures.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Send raw message to all peers; ignore individual send failures.", "community": 12, "community_name": "Relay Peer Registry", "source_file": "relay/meshnet_relay/server.py", "file_type": "rationale", "degree": 1}, {"id": "pkg_meshnet_relay", "label": "meshnet-relay", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet-relay", "community": 120, "community_name": "Community 120", "source_file": "relay/pyproject.toml", "file_type": "code", "degree": 0}, {"id": "sdk_meshnet_init", "label": "meshnet/__init__.py", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet/__init__.py", "community": 25, "community_name": "Community 25", "source_file": "sdk/meshnet/__init__.py", "file_type": "code", "degree": 7}, {"id": "sdk_meshnet_init_rationale_1", "label": "meshnet \u2014 Distributed Inference Network Python SDK.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet \u2014 Distributed Inference Network Python SDK.", "community": 25, "community_name": "Community 25", "source_file": "sdk/meshnet/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "sdk_meshnet_client", "label": "client.py", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "client.py", "community": 25, "community_name": "Community 25", "source_file": "sdk/meshnet/client.py", "file_type": "code", "degree": 11}, {"id": "sdk_meshnet_client_walletbalance", "label": "WalletBalance", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "WalletBalance", "community": 25, "community_name": "Community 25", "source_file": "sdk/meshnet/client.py", "file_type": "code", "degree": 4}, {"id": "sdk_meshnet_client_topupquote", "label": "TopUpQuote", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "TopUpQuote", "community": 25, "community_name": "Community 25", "source_file": "sdk/meshnet/client.py", "file_type": "code", "degree": 4}, {"id": "sdk_meshnet_client_costestimate", "label": "CostEstimate", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "CostEstimate", "community": 25, "community_name": "Community 25", "source_file": "sdk/meshnet/client.py", "file_type": "code", "degree": 4}, {"id": "sdk_meshnet_client_redundantrequestresult", "label": "RedundantRequestResult", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "RedundantRequestResult", "community": 25, "community_name": "Community 25", "source_file": "sdk/meshnet/client.py", "file_type": "code", "degree": 4}, {"id": "sdk_meshnet_client_client", "label": "Client", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Client", "community": 25, "community_name": "Community 25", "source_file": "sdk/meshnet/client.py", "file_type": "code", "degree": 11}, {"id": "sdk_meshnet_client_client_init", "label": ".__init__()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 25, "community_name": "Community 25", "source_file": "sdk/meshnet/client.py", "file_type": "code", "degree": 4}, {"id": "sdk_meshnet_client_client_estimate_cost", "label": ".estimate_cost()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".estimate_cost()", "community": 25, "community_name": "Community 25", "source_file": "sdk/meshnet/client.py", "file_type": "code", "degree": 3}, {"id": "sdk_meshnet_client_client_request", "label": ".request()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".request()", "community": 25, "community_name": "Community 25", "source_file": "sdk/meshnet/client.py", "file_type": "code", "degree": 5}, {"id": "sdk_meshnet_client_py_any", "label": "Any", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Any", "community": 25, "community_name": "Community 25", "source_file": "", "file_type": "code", "degree": 4}, {"id": "sdk_meshnet_client_client_get_json", "label": "._get_json()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "._get_json()", "community": 25, "community_name": "Community 25", "source_file": "sdk/meshnet/client.py", "file_type": "code", "degree": 6}, {"id": "sdk_meshnet_client_client_post_json", "label": "._post_json()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._post_json()", "community": 25, "community_name": "Community 25", "source_file": "sdk/meshnet/client.py", "file_type": "code", "degree": 5}, {"id": "sdk_meshnet_client_client_headers", "label": "._headers()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._headers()", "community": 25, "community_name": "Community 25", "source_file": "sdk/meshnet/client.py", "file_type": "code", "degree": 3}, {"id": "sdk_meshnet_client_walletclient", "label": "_WalletClient", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_WalletClient", "community": 25, "community_name": "Community 25", "source_file": "sdk/meshnet/client.py", "file_type": "code", "degree": 5}, {"id": "sdk_meshnet_client_walletclient_init", "label": ".__init__()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 25, "community_name": "Community 25", "source_file": "sdk/meshnet/client.py", "file_type": "code", "degree": 2}, {"id": "sdk_meshnet_client_walletclient_balance", "label": ".balance()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".balance()", "community": 25, "community_name": "Community 25", "source_file": "sdk/meshnet/client.py", "file_type": "code", "degree": 3}, {"id": "sdk_meshnet_client_walletclient_top_up", "label": ".top_up()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".top_up()", "community": 25, "community_name": "Community 25", "source_file": "sdk/meshnet/client.py", "file_type": "code", "degree": 3}, {"id": "sdk_meshnet_client_modelsclient", "label": "_ModelsClient", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_ModelsClient", "community": 25, "community_name": "Community 25", "source_file": "sdk/meshnet/client.py", "file_type": "code", "degree": 4}, {"id": "sdk_meshnet_client_modelsclient_init", "label": ".__init__()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 25, "community_name": "Community 25", "source_file": "sdk/meshnet/client.py", "file_type": "code", "degree": 2}, {"id": "sdk_meshnet_client_modelsclient_available", "label": ".available()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".available()", "community": 25, "community_name": "Community 25", "source_file": "sdk/meshnet/client.py", "file_type": "code", "degree": 2}, {"id": "sdk_meshnet_client_openai_base_url", "label": "_openai_base_url()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_openai_base_url()", "community": 25, "community_name": "Community 25", "source_file": "sdk/meshnet/client.py", "file_type": "code", "degree": 2}, {"id": "sdk_meshnet_client_chat_completion", "label": "_chat_completion()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_chat_completion()", "community": 25, "community_name": "Community 25", "source_file": "sdk/meshnet/client.py", "file_type": "code", "degree": 4}, {"id": "chatcompletion", "label": "ChatCompletion", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ChatCompletion", "community": 25, "community_name": "Community 25", "source_file": "", "file_type": "code", "degree": 1}, {"id": "sdk_meshnet_client_rationale_1", "label": "Typed Python SDK for the meshnet OpenAI-compatible gateway.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Typed Python SDK for the meshnet OpenAI-compatible gateway.", "community": 25, "community_name": "Community 25", "source_file": "sdk/meshnet/client.py", "file_type": "rationale", "degree": 1}, {"id": "sdk_meshnet_client_rationale_17", "label": "API-key balance in client-facing currencies.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "API-key balance in client-facing currencies.", "community": 25, "community_name": "Community 25", "source_file": "sdk/meshnet/client.py", "file_type": "rationale", "degree": 1}, {"id": "sdk_meshnet_client_rationale_25", "label": "Payment details for funding an API key account.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Payment details for funding an API key account.", "community": 25, "community_name": "Community 25", "source_file": "sdk/meshnet/client.py", "file_type": "rationale", "degree": 1}, {"id": "sdk_meshnet_client_rationale_35", "label": "Preflight cost estimate for a request.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Preflight cost estimate for a request.", "community": 25, "community_name": "Community 25", "source_file": "sdk/meshnet/client.py", "file_type": "rationale", "degree": 1}, {"id": "sdk_meshnet_client_rationale_45", "label": "Result of sending a prompt through multiple independent routes.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Result of sending a prompt through multiple independent routes.", "community": 25, "community_name": "Community 25", "source_file": "sdk/meshnet/client.py", "file_type": "rationale", "degree": 1}, {"id": "sdk_meshnet_client_rationale_53", "label": "meshnet SDK client. ``chat`` is the official OpenAI SDK chat resource,\u2026", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet SDK client. ``chat`` is the official OpenAI SDK chat resource,\u2026", "community": 25, "community_name": "Community 25", "source_file": "sdk/meshnet/client.py", "file_type": "rationale", "degree": 1}, {"id": "pkg_meshnet", "label": "meshnet", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet", "community": 115, "community_name": "Community 115", "source_file": "sdk/pyproject.toml", "file_type": "code", "degree": 0}, {"id": "tracker_meshnet_tracker_init", "label": "meshnet_tracker/__init__.py", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet_tracker/__init__.py", "community": 114, "community_name": "Community 114", "source_file": "tracker/meshnet_tracker/__init__.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_init_rationale_1", "label": "meshnet_tracker \u2014 Distributed Inference Network node registry and route\u2026", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet_tracker \u2014 Distributed Inference Network node registry and route\u2026", "community": 114, "community_name": "Community 114", "source_file": "tracker/meshnet_tracker/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_accounts", "label": "accounts.py", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "accounts.py", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_accounts_normalize_nickname", "label": "_normalize_nickname()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_normalize_nickname()", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_accounts_hash_password", "label": "_hash_password()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_hash_password()", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_accounts_accountstore", "label": "AccountStore", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 16.6, "font": {"size": 12, "color": "#ffffff"}, "title": "AccountStore", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "code", "degree": 37}, {"id": "tracker_meshnet_tracker_accounts_accountstore_init", "label": ".__init__()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_accounts_accountstore_register", "label": ".register()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".register()", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_accounts_accountstore_update_profile", "label": ".update_profile()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".update_profile()", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_accounts_accountstore_verify_login", "label": ".verify_login()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".verify_login()", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_accounts_accountstore_create_session", "label": ".create_session()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".create_session()", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_accounts_accountstore_session_account", "label": ".session_account()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".session_account()", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_accounts_accountstore_destroy_session", "label": ".destroy_session()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".destroy_session()", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_accounts_accountstore_create_api_key", "label": ".create_api_key()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".create_api_key()", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_accounts_accountstore_revoke_api_key", "label": ".revoke_api_key()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".revoke_api_key()", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_accounts_accountstore_keys_for", "label": ".keys_for()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".keys_for()", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_accounts_accountstore_is_key_revoked", "label": ".is_key_revoked()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".is_key_revoked()", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_accounts_accountstore_is_active_key", "label": ".is_active_key()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".is_active_key()", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_accounts_accountstore_owner_of_key", "label": ".owner_of_key()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".owner_of_key()", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_accounts_accountstore_public_view", "label": "._public_view()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "._public_view()", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_accounts_accountstore_get_account", "label": ".get_account()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_account()", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_accounts_accountstore_list_accounts", "label": ".list_accounts()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".list_accounts()", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_accounts_accountstore_account_count", "label": ".account_count()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".account_count()", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_accounts_accountstore_events_since", "label": ".events_since()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".events_since()", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_accounts_accountstore_apply_events", "label": ".apply_events()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".apply_events()", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_accounts_accountstore_apply_locked", "label": "._apply_locked()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "._apply_locked()", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_accounts_accountstore_init_db", "label": "._init_db()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._init_db()", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_accounts_accountstore_load_from_db", "label": "._load_from_db()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._load_from_db()", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_accounts_accountstore_save_to_db", "label": ".save_to_db()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".save_to_db()", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_accounts_rationale_1", "label": "Tracker user accounts: registration, login, API-key management. Accounts are\u2026", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Tracker user accounts: registration, login, API-key management. Accounts are\u2026", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_accounts_rationale_57", "label": "Thread-safe account/API-key store with SQLite persistence and event replication.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Thread-safe account/API-key store with SQLite persistence and event replication.", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_accounts_rationale_84", "label": "Create an account. The first account becomes the admin. Raises ValueError with\u2026", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Create an account. The first account becomes the admin. Raises ValueError with\u2026", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_accounts_rationale_118", "label": "Update display fields for an account. Pass nickname=None to clear.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Update display fields for an account. Pass nickname=None to clear.", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_accounts_rationale_136", "label": "Return the public account view when credentials match, else None.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return the public account view when credentials match, else None.", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_accounts_rationale_197", "label": "Revoke a key owned by ``account_id``. Returns False if not owned.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Revoke a key owned by ``account_id``. Returns False if not owned.", "community": 22, "community_name": "Community 22", "source_file": "tracker/meshnet_tracker/accounts.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_auth", "label": "auth.py", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "auth.py", "community": 81, "community_name": "Community 81", "source_file": "tracker/meshnet_tracker/auth.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_auth_hive_digest", "label": "_hive_digest()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_hive_digest()", "community": 81, "community_name": "Community 81", "source_file": "tracker/meshnet_tracker/auth.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_auth_sign_hive_request", "label": "sign_hive_request()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "sign_hive_request()", "community": 81, "community_name": "Community 81", "source_file": "tracker/meshnet_tracker/auth.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_auth_verify_hive_request", "label": "verify_hive_request()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "verify_hive_request()", "community": 81, "community_name": "Community 81", "source_file": "tracker/meshnet_tracker/auth.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_auth_is_validator_token", "label": "is_validator_token()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "is_validator_token()", "community": 81, "community_name": "Community 81", "source_file": "tracker/meshnet_tracker/auth.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_auth_rationale_1", "label": "Unified tracker auth primitives (ADR-0017, alpha issues 01/02/20). Two\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Unified tracker auth primitives (ADR-0017, alpha issues 01/02/20). Two\u2026", "community": 81, "community_name": "Community 81", "source_file": "tracker/meshnet_tracker/auth.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_auth_rationale_35", "label": "Headers a tracker attaches when pushing gossip to a hive peer.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Headers a tracker attaches when pushing gossip to a hive peer.", "community": 81, "community_name": "Community 81", "source_file": "tracker/meshnet_tracker/auth.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_auth_rationale_50", "label": "True only when the request carries a fresh, valid hive signature. Fails closed:\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "True only when the request carries a fresh, valid hive signature. Fails closed:\u2026", "community": 81, "community_name": "Community 81", "source_file": "tracker/meshnet_tracker/auth.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_auth_rationale_71", "label": "Constant-time check of a presented bearer token against the configured\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Constant-time check of a presented bearer token against the configured\u2026", "community": 81, "community_name": "Community 81", "source_file": "tracker/meshnet_tracker/auth.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_billing", "label": "billing.py", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "billing.py", "community": 94, "community_name": "Community 94", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_billing_normalize_rates", "label": "_normalize_rates()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_normalize_rates()", "community": 94, "community_name": "Community 94", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_billing_billingledger", "label": "BillingLedger", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 18.0, "font": {"size": 12, "color": "#ffffff"}, "title": "BillingLedger", "community": 66, "community_name": "Community 66", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 45}, {"id": "tracker_meshnet_tracker_billing_billingledger_init", "label": ".__init__()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 94, "community_name": "Community 94", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_billing_billingledger_price_for", "label": ".price_for()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".price_for()", "community": 96, "community_name": "Community 96", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_billing_billingledger_prices_for", "label": ".prices_for()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".prices_for()", "community": 96, "community_name": "Community 96", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_billing_billingledger_set_price", "label": ".set_price()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".set_price()", "community": 102, "community_name": "Community 102", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_billing_billingledger_set_prices", "label": ".set_prices()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".set_prices()", "community": 102, "community_name": "Community 102", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_billing_billingledger_ensure_client", "label": ".ensure_client()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".ensure_client()", "community": 101, "community_name": "Community 101", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_billing_billingledger_has_funds", "label": ".has_funds()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".has_funds()", "community": 101, "community_name": "Community 101", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_billing_billingledger_grant_caller_credit", "label": ".grant_caller_credit()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".grant_caller_credit()", "community": 69, "community_name": "Community 69", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_billing_billingledger_credit_client", "label": ".credit_client()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".credit_client()", "community": 69, "community_name": "Community 69", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_billing_billingledger_charge_request", "label": ".charge_request()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".charge_request()", "community": 96, "community_name": "Community 96", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_billing_billingledger_bind_wallet", "label": ".bind_wallet()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".bind_wallet()", "community": 69, "community_name": "Community 69", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_billing_billingledger_api_key_for_wallet", "label": ".api_key_for_wallet()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".api_key_for_wallet()", "community": 66, "community_name": "Community 66", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_billing_billingledger_credit_deposit", "label": ".credit_deposit()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".credit_deposit()", "community": 69, "community_name": "Community 69", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_billing_billingledger_has_event", "label": ".has_event()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".has_event()", "community": 66, "community_name": "Community 66", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_billing_billingledger_payables", "label": ".payables()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".payables()", "community": 66, "community_name": "Community 66", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_billing_billingledger_confirm_settlement", "label": ".confirm_settlement()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".confirm_settlement()", "community": 69, "community_name": "Community 69", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_billing_billingledger_unconfirmed_settlements", "label": ".unconfirmed_settlements()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".unconfirmed_settlements()", "community": 66, "community_name": "Community 66", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_billing_billingledger_settlement_history", "label": ".settlement_history()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".settlement_history()", "community": 66, "community_name": "Community 66", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_billing_billingledger_settle_node_payout", "label": ".settle_node_payout()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".settle_node_payout()", "community": 69, "community_name": "Community 69", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_billing_billingledger_forfeit_pending", "label": ".forfeit_pending()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".forfeit_pending()", "community": 112, "community_name": "Community 112", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_billing_billingledger_events_since", "label": ".events_since()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".events_since()", "community": 111, "community_name": "Community 111", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_billing_billingledger_apply_events", "label": ".apply_events()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".apply_events()", "community": 69, "community_name": "Community 69", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_billing_billingledger_apply_locked", "label": "._apply_locked()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "._apply_locked()", "community": 69, "community_name": "Community 69", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 12}, {"id": "tracker_meshnet_tracker_billing_billingledger_get_client_balance", "label": ".get_client_balance()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_client_balance()", "community": 66, "community_name": "Community 66", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_billing_billingledger_get_node_pending", "label": ".get_node_pending()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_node_pending()", "community": 66, "community_name": "Community 66", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_billing_billingledger_usage_totals_for", "label": ".usage_totals_for()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".usage_totals_for()", "community": 66, "community_name": "Community 66", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_billing_billingledger_usage_for", "label": ".usage_for()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".usage_for()", "community": 113, "community_name": "Community 113", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_billing_billingledger_snapshot", "label": ".snapshot()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".snapshot()", "community": 66, "community_name": "Community 66", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_billing_billingledger_init_db", "label": "._init_db()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._init_db()", "community": 94, "community_name": "Community 94", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_billing_billingledger_load_from_db", "label": "._load_from_db()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._load_from_db()", "community": 94, "community_name": "Community 94", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_billing_billingledger_save_to_db", "label": ".save_to_db()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".save_to_db()", "community": 66, "community_name": "Community 66", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_billing_rationale_1", "label": "Off-chain USDT billing ledger (ADR-0015, US-031). Tracks client API-key\u2026", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Off-chain USDT billing ledger (ADR-0015, US-031). Tracks client API-key\u2026", "community": 94, "community_name": "Community 94", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_billing_rationale_31", "label": "Coerce a price spec into an (input_per_1k, output_per_1k) pair.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Coerce a price spec into an (input_per_1k, output_per_1k) pair.", "community": 94, "community_name": "Community 94", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_billing_rationale_43", "label": "Thread-safe USDT ledger with SQLite persistence and event replication.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Thread-safe USDT ledger with SQLite persistence and event replication.", "community": 66, "community_name": "Community 66", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_billing_rationale_84", "label": "Blended (average) per-1k rate \u2014 kept for estimators and history logs.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Blended (average) per-1k rate \u2014 kept for estimators and history logs.", "community": 96, "community_name": "Community 96", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_billing_rationale_91", "label": "(input_per_1k, output_per_1k) for a model (US-045).", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "(input_per_1k, output_per_1k) for a model (US-045).", "community": 96, "community_name": "Community 96", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_billing_rationale_95", "label": "Legacy single-rate setter \u2014 applies the same rate to input and output.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Legacy single-rate setter \u2014 applies the same rate to input and output.", "community": 102, "community_name": "Community 102", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_billing_rationale_105", "label": "Return the client's balance without granting implicit credit.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return the client's balance without granting implicit credit.", "community": 101, "community_name": "Community 101", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_billing_rationale_122", "label": "Grant the one-time Caller Credit for an account (US-039). The event id is\u2026", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Grant the one-time Caller Credit for an account (US-039). The event id is\u2026", "community": 69, "community_name": "Community 69", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_billing_rationale_168", "label": "Debit the client and split the fee 90/10. With\u2026", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Debit the client and split the fee 90/10. With\u2026", "community": 96, "community_name": "Community 96", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_billing_rationale_226", "label": "Bind a client wallet pubkey to an API key (US-032 deposits, C6). A wallet\u2026", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Bind a client wallet pubkey to an API key (US-032 deposits, C6). A wallet\u2026", "community": 69, "community_name": "Community 69", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_billing_rationale_250", "label": "Credit an on-chain deposit exactly once. The event id embeds the transaction\u2026", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Credit an on-chain deposit exactly once. The event id embeds the transaction\u2026", "community": 69, "community_name": "Community 69", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_billing_rationale_289", "label": "Wallets due a payout: pending \u2265 threshold OR pending age \u2265 max_period, never\u2026", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Wallets due a payout: pending \u2265 threshold OR pending age \u2265 max_period, never\u2026", "community": 66, "community_name": "Community 66", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_billing_rationale_307", "label": "Record the on-chain transaction signature for a settlement batch.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Record the on-chain transaction signature for a settlement batch.", "community": 69, "community_name": "Community 69", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_billing_rationale_320", "label": "Settlement batches whose pending was debited but whose transaction has not been\u2026", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Settlement batches whose pending was debited but whose transaction has not been\u2026", "community": 66, "community_name": "Community 66", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_billing_rationale_344", "label": "Deduct a paid-out amount from a node's pending balance (US-033 hook). ADR-0015:\u2026", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Deduct a paid-out amount from a node's pending balance (US-033 hook). ADR-0015:\u2026", "community": 69, "community_name": "Community 69", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_billing_rationale_367", "label": "Forfeit a node's entire pending balance to the protocol cut (US-034 hook).", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Forfeit a node's entire pending balance to the protocol cut (US-034 hook).", "community": 112, "community_name": "Community 112", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_billing_rationale_383", "label": "Return events after ``index`` in the local log and the new cursor.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return events after ``index`` in the local log and the new cursor.", "community": 111, "community_name": "Community 111", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_billing_rationale_388", "label": "Apply peer events not yet seen locally. Returns how many applied.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Apply peer events not yet seen locally. Returns how many applied.", "community": 69, "community_name": "Community 69", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_billing_rationale_460", "label": "Aggregate charge totals without per-request records (dashboard summary).", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Aggregate charge totals without per-request records (dashboard summary).", "community": 66, "community_name": "Community 66", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_billing_rationale_479", "label": "Aggregate charge history for a set of API keys (dashboard view).", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Aggregate charge history for a set of API keys (dashboard view).", "community": 113, "community_name": "Community 113", "source_file": "tracker/meshnet_tracker/billing.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_calibration", "label": "calibration.py", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "calibration.py", "community": 76, "community_name": "Community 76", "source_file": "tracker/meshnet_tracker/calibration.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_calibration_toploccalibrationstore", "label": "ToplocCalibrationStore", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ToplocCalibrationStore", "community": 91, "community_name": "Community 91", "source_file": "tracker/meshnet_tracker/calibration.py", "file_type": "code", "degree": 23}, {"id": "tracker_meshnet_tracker_calibration_toploccalibrationstore_init", "label": ".__init__()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 91, "community_name": "Community 91", "source_file": "tracker/meshnet_tracker/calibration.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_calibration_toploccalibrationstore_record_run", "label": ".record_run()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".record_run()", "community": 91, "community_name": "Community 91", "source_file": "tracker/meshnet_tracker/calibration.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_calibration_toploccalibrationstore_runs", "label": ".runs()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".runs()", "community": 91, "community_name": "Community 91", "source_file": "tracker/meshnet_tracker/calibration.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_calibration_toploccalibrationstore_distinct_hardware_profiles", "label": ".distinct_hardware_profiles()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".distinct_hardware_profiles()", "community": 76, "community_name": "Community 76", "source_file": "tracker/meshnet_tracker/calibration.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_calibration_toploccalibrationstore_gate_status", "label": ".gate_status()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".gate_status()", "community": 76, "community_name": "Community 76", "source_file": "tracker/meshnet_tracker/calibration.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_calibration_toploccalibrationstore_envelope", "label": ".envelope()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".envelope()", "community": 76, "community_name": "Community 76", "source_file": "tracker/meshnet_tracker/calibration.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_calibration_toploccalibrationstore_init_db", "label": "._init_db()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._init_db()", "community": 91, "community_name": "Community 91", "source_file": "tracker/meshnet_tracker/calibration.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_calibration_toploccalibrationstore_load_from_db", "label": "._load_from_db()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._load_from_db()", "community": 91, "community_name": "Community 91", "source_file": "tracker/meshnet_tracker/calibration.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_calibration_toploccalibrationstore_save_run", "label": "._save_run()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._save_run()", "community": 91, "community_name": "Community 91", "source_file": "tracker/meshnet_tracker/calibration.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_calibration_percentile", "label": "_percentile()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_percentile()", "community": 76, "community_name": "Community 76", "source_file": "tracker/meshnet_tracker/calibration.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_calibration_floor", "label": "_floor()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_floor()", "community": 76, "community_name": "Community 76", "source_file": "tracker/meshnet_tracker/calibration.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_calibration_ceiling", "label": "_ceiling()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_ceiling()", "community": 76, "community_name": "Community 76", "source_file": "tracker/meshnet_tracker/calibration.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_calibration_false_positive_rate", "label": "_false_positive_rate()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_false_positive_rate()", "community": 76, "community_name": "Community 76", "source_file": "tracker/meshnet_tracker/calibration.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_calibration_rationale_1", "label": "TOPLOC honest-noise calibration corpus (ADR-0018 consequences, issue 21).\u2026", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "TOPLOC honest-noise calibration corpus (ADR-0018 consequences, issue 21).\u2026", "community": 76, "community_name": "Community 76", "source_file": "tracker/meshnet_tracker/calibration.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_calibration_rationale_27", "label": "Thread-safe SQLite-backed corpus of per-node TOPLOC divergence runs.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Thread-safe SQLite-backed corpus of per-node TOPLOC divergence runs.", "community": 91, "community_name": "Community 91", "source_file": "tracker/meshnet_tracker/calibration.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_calibration_rationale_76", "label": "Whether the corpus is broad enough to enable production thresholds. Alpha\u2026", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Whether the corpus is broad enough to enable production thresholds. Alpha\u2026", "community": 76, "community_name": "Community 76", "source_file": "tracker/meshnet_tracker/calibration.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_calibration_rationale_97", "label": "Recommended tolerance constants derived from the corpus. `exp_intersections`\u2026", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Recommended tolerance constants derived from the corpus. `exp_intersections`\u2026", "community": 76, "community_name": "Community 76", "source_file": "tracker/meshnet_tracker/calibration.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_calibration_rationale_198", "label": "Fraction of the (honest, by construction) corpus that would be flagged by the\u2026", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Fraction of the (honest, by construction) corpus that would be flagged by the\u2026", "community": 76, "community_name": "Community 76", "source_file": "tracker/meshnet_tracker/calibration.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_capability", "label": "meshnet_tracker/capability.py", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet_tracker/capability.py", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "code", "degree": 24}, {"id": "tracker_meshnet_tracker_capability_normalize_policy", "label": "normalize_policy()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "normalize_policy()", "community": 28, "community_name": "Community 28", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "code", "degree": 9}, {"id": "tracker_meshnet_tracker_capability_py_any", "label": "Any", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Any", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "", "file_type": "code", "degree": 12}, {"id": "tracker_meshnet_tracker_capability_policy_from_env", "label": "policy_from_env()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "policy_from_env()", "community": 28, "community_name": "Community 28", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_capability_sanitize_detail", "label": "sanitize_detail()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "sanitize_detail()", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_capability_catalogue_is_compatible", "label": "catalogue_is_compatible()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "catalogue_is_compatible()", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_capability_parse_version", "label": "_parse_version()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_parse_version()", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_capability_capabilitystate", "label": "CapabilityState", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.5, "font": {"size": 0, "color": "#ffffff"}, "title": "CapabilityState", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "code", "degree": 25}, {"id": "tracker_meshnet_tracker_capability_capabilitystate_proven", "label": ".proven()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".proven()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_capability_capabilitystate_fingerprint", "label": ".fingerprint()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".fingerprint()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_capability_capabilitystate_routable_under", "label": ".routable_under()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".routable_under()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_capability_capabilitystate_with_state", "label": ".with_state()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".with_state()", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_capability_capabilitystate_to_dict", "label": ".to_dict()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_capability_absent_state", "label": "absent_state()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "absent_state()", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_capability_evaluate_report", "label": "evaluate_report()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "evaluate_report()", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "code", "degree": 14}, {"id": "tracker_meshnet_tracker_capability_reporterror", "label": "_ReportError", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "_ReportError", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "code", "degree": 10}, {"id": "tracker_meshnet_tracker_capability_py_valueerror", "label": "ValueError", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ValueError", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_capability_parse_report", "label": "_parse_report()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "_parse_report()", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "code", "degree": 9}, {"id": "tracker_meshnet_tracker_capability_object", "label": "_object()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_object()", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_capability_text", "label": "_text()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_text()", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_capability_optional_text", "label": "_optional_text()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_optional_text()", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_capability_index", "label": "_index()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_index()", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_capability_maybe_int", "label": "_maybe_int()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_maybe_int()", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_capability_diagnostics", "label": "_diagnostics()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_diagnostics()", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_capability_rationale_1", "label": "Tracker-side validation of the capability report a Node presents at\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Tracker-side validation of the capability report a Node presents at\u2026", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_capability_rationale_115", "label": "Return a known policy name, falling back to the default for anything else.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return a known policy name, falling back to the default for anything else.", "community": 28, "community_name": "Community 28", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_capability_rationale_127", "label": "Collapse, redact and clip a string bound for an operator view.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Collapse, redact and clip a string bound for an operator view.", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_capability_rationale_137", "label": "True when `version` is at least `MIN_CATALOGUE_VERSION`. Versions are dotted\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "True when `version` is at least `MIN_CATALOGUE_VERSION`. Versions are dotted\u2026", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_capability_rationale_161", "label": "The tracker's sanitized verdict on one node's presented proof. This is what the\u2026", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The tracker's sanitized verdict on one node's presented proof. This is what the\u2026", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_capability_rationale_196", "label": "The presented proof covers exactly what the node advertised.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The presented proof covers exactly what the node advertised.", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_capability_rationale_201", "label": "What route formation compares. `None` when the node declares no identity.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "What route formation compares. `None` when the node declares no identity.", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_capability_rationale_212", "label": "Re-verdict a recorded proof against what the node advertises *now*.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Re-verdict a recorded proof against what the node advertises *now*.", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_capability_rationale_240", "label": "The verdict for a node that presented no proof at all (legacy node).", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The verdict for a node that presented no proof at all (legacy node).", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_capability_rationale_265", "label": "Judge the proof a node presented against what that node is advertising.\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Judge the proof a node presented against what that node is advertising.\u2026", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_capability_rationale_477", "label": "Malformed report input. Messages name the field, never echo a payload.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Malformed report input. Messages name the field, never echo a payload.", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/capability.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_cli", "label": "meshnet_tracker/cli.py", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet_tracker/cli.py", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/cli.py", "file_type": "code", "degree": 16}, {"id": "tracker_meshnet_tracker_cli_load_env_file", "label": "_load_env_file()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_load_env_file()", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/cli.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_cli_py_path", "label": "Path", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Path", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_cli_load_env_defaults", "label": "_load_env_defaults()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_load_env_defaults()", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/cli.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_cli_routing_config_from_args", "label": "_routing_config_from_args()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_routing_config_from_args()", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/cli.py", "file_type": "code", "degree": 5}, {"id": "namespace", "label": "Namespace", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Namespace", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_cli_main", "label": "main()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/cli.py", "file_type": "code", "degree": 8}, {"id": "tracker_meshnet_tracker_cli_rationale_1", "label": "meshnet-tracker CLI entry point.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet-tracker CLI entry point.", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/cli.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_cli_rationale_37", "label": "Load simple KEY=VALUE pairs from an env file without overriding env vars.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Load simple KEY=VALUE pairs from an env file without overriding env vars.", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/cli.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_cli_rationale_63", "label": "Load machine-specific, local, and user-level tracker env defaults.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Load machine-specific, local, and user-level tracker env defaults.", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/cli.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_cli_rationale_75", "label": "Build a RoutingConfig from CLI flags; None keeps env-var/server defaults.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Build a RoutingConfig from CLI flags; None keeps env-var/server defaults.", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/cli.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_gossip", "label": "meshnet_tracker/gossip.py", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet_tracker/gossip.py", "community": 67, "community_name": "Community 67", "source_file": "tracker/meshnet_tracker/gossip.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_gossip_nodegossip", "label": "NodeGossip", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "NodeGossip", "community": 67, "community_name": "Community 67", "source_file": "tracker/meshnet_tracker/gossip.py", "file_type": "code", "degree": 22}, {"id": "tracker_meshnet_tracker_gossip_nodegossip_init", "label": ".__init__()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 67, "community_name": "Community 67", "source_file": "tracker/meshnet_tracker/gossip.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_gossip_nodegossip_start", "label": ".start()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".start()", "community": 67, "community_name": "Community 67", "source_file": "tracker/meshnet_tracker/gossip.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_gossip_nodegossip_stop", "label": ".stop()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".stop()", "community": 67, "community_name": "Community 67", "source_file": "tracker/meshnet_tracker/gossip.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_gossip_nodegossip_record", "label": ".record()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".record()", "community": 67, "community_name": "Community 67", "source_file": "tracker/meshnet_tracker/gossip.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_gossip_nodegossip_merge", "label": ".merge()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".merge()", "community": 67, "community_name": "Community 67", "source_file": "tracker/meshnet_tracker/gossip.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_gossip_nodegossip_last_seen", "label": ".last_seen()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".last_seen()", "community": 67, "community_name": "Community 67", "source_file": "tracker/meshnet_tracker/gossip.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_gossip_nodegossip_snapshot", "label": ".snapshot()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".snapshot()", "community": 67, "community_name": "Community 67", "source_file": "tracker/meshnet_tracker/gossip.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_gossip_nodegossip_push_loop", "label": "._push_loop()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._push_loop()", "community": 67, "community_name": "Community 67", "source_file": "tracker/meshnet_tracker/gossip.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_gossip_rationale_1", "label": "CRDT gossip for node liveness heartbeats. Uses a last-write-wins (LWW) register\u2026", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CRDT gossip for node liveness heartbeats. Uses a last-write-wins (LWW) register\u2026", "community": 67, "community_name": "Community 67", "source_file": "tracker/meshnet_tracker/gossip.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_gossip_rationale_24", "label": "LWW gossip table for inference-node heartbeat timestamps. ``record(node_id)``\u2026", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "LWW gossip table for inference-node heartbeat timestamps. ``record(node_id)``\u2026", "community": 67, "community_name": "Community 67", "source_file": "tracker/meshnet_tracker/gossip.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_gossip_rationale_48", "label": "Record a heartbeat for *node_id* at *wall_ts* (default: now).", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Record a heartbeat for *node_id* at *wall_ts* (default: now).", "community": 67, "community_name": "Community 67", "source_file": "tracker/meshnet_tracker/gossip.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_gossip_rationale_55", "label": "Merge a gossip snapshot from a peer tracker (LWW per key).", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Merge a gossip snapshot from a peer tracker (LWW per key).", "community": 67, "community_name": "Community 67", "source_file": "tracker/meshnet_tracker/gossip.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_gossip_rationale_62", "label": "Return wall-clock timestamp of last known heartbeat, or None.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return wall-clock timestamp of last known heartbeat, or None.", "community": 67, "community_name": "Community 67", "source_file": "tracker/meshnet_tracker/gossip.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_hf_pricing", "label": "hf_pricing.py", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "hf_pricing.py", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "code", "degree": 12}, {"id": "tracker_meshnet_tracker_hf_pricing_hfpricequote", "label": "HfPriceQuote", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "HfPriceQuote", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "code", "degree": 8}, {"id": "tracker_meshnet_tracker_hf_pricing_hfpricequote_blended_price_per_1k_tokens", "label": ".blended_price_per_1k_tokens()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".blended_price_per_1k_tokens()", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_hf_pricing_hfpricequote_alias_keys", "label": ".alias_keys()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".alias_keys()", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_hf_pricing_hfpricingtableparser", "label": "_HfPricingTableParser", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_HfPricingTableParser", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "code", "degree": 8}, {"id": "htmlparser", "label": "HTMLParser", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "HTMLParser", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_hf_pricing_hfpricingtableparser_init", "label": ".__init__()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 28, "community_name": "Community 28", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_hf_pricing_hfpricingtableparser_handle_starttag", "label": ".handle_starttag()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".handle_starttag()", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_hf_pricing_hfpricingtableparser_handle_data", "label": ".handle_data()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".handle_data()", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_hf_pricing_hfpricingtableparser_handle_endtag", "label": ".handle_endtag()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".handle_endtag()", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_hf_pricing_parse_hf_pricing_table", "label": "parse_hf_pricing_table()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "parse_hf_pricing_table()", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_hf_pricing_default_fetch_html", "label": "_default_fetch_html()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_default_fetch_html()", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_hf_pricing_fetch_hf_price_quotes", "label": "fetch_hf_price_quotes()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "fetch_hf_price_quotes()", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_hf_pricing_cheapest_matching_quote", "label": "cheapest_matching_quote()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "cheapest_matching_quote()", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_hf_pricing_hfpricinglog", "label": "HfPricingLog", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "HfPricingLog", "community": 28, "community_name": "Community 28", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "code", "degree": 20}, {"id": "tracker_meshnet_tracker_hf_pricing_hfpricinglog_init", "label": ".__init__()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 28, "community_name": "Community 28", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_hf_pricing_hfpricinglog_record_change", "label": ".record_change()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".record_change()", "community": 28, "community_name": "Community 28", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_hf_pricing_hfpricinglog_history", "label": ".history()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".history()", "community": 28, "community_name": "Community 28", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_hf_pricing_hfpricinglog_init_db", "label": "._init_db()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._init_db()", "community": 28, "community_name": "Community 28", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_hf_pricing_hfpricinglog_load_from_db", "label": "._load_from_db()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._load_from_db()", "community": 28, "community_name": "Community 28", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_hf_pricing_hfpricinglog_save_change", "label": "._save_change()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._save_change()", "community": 28, "community_name": "Community 28", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_hf_pricing_hf_search_term", "label": "hf_search_term()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "hf_search_term()", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_hf_pricing_refresh_preset_price", "label": "refresh_preset_price()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "refresh_preset_price()", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "code", "degree": 8}, {"id": "tracker_meshnet_tracker_hf_pricing_rationale_1", "label": "Dynamic per-model pricing benchmarked against HuggingFace inference rates\u2026", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Dynamic per-model pricing benchmarked against HuggingFace inference rates\u2026", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_hf_pricing_rationale_44", "label": "One (model, provider) row from the HF inference pricing table.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "One (model, provider) row from the HF inference pricing table.", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_hf_pricing_rationale_52", "label": "Average of input/output $-per-1M-token rates, converted to $/1k. The tracker\u2026", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Average of input/output $-per-1M-token rates, converted to $/1k. The tracker\u2026", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_hf_pricing_rationale_61", "label": "Both the bare-repo and repo::provider forms an ``hf_aliases`` entry may use.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Both the bare-repo and repo::provider forms an ``hf_aliases`` entry may use.", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_hf_pricing_rationale_66", "label": "Extracts (repo_id, provider, input$/1M, output$/1M) rows from the raw HTML.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Extracts (repo_id, provider, input$/1M, output$/1M) rows from the raw HTML.", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_hf_pricing_rationale_121", "label": "Pure parsing function \u2014 no network I/O, so it's directly unit-testable.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Pure parsing function \u2014 no network I/O, so it's directly unit-testable.", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_hf_pricing_rationale_139", "label": "Fetch and parse the HF inference pricing table filtered by ``search_term``.\u2026", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Fetch and parse the HF inference pricing table filtered by ``search_term``.\u2026", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_hf_pricing_rationale_156", "label": "Cheapest quote whose repo (optionally ``repo::provider``) is in ``aliases``. An\u2026", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Cheapest quote whose repo (optionally ``repo::provider``) is in ``aliases``. An\u2026", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_hf_pricing_rationale_173", "label": "Thread-safe SQLite-backed audit log of dynamic price changes (issue 23). Every\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Thread-safe SQLite-backed audit log of dynamic price changes (issue 23). Every\u2026", "community": 28, "community_name": "Community 28", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_hf_pricing_rationale_256", "label": "Best-effort search term for the HF pricing page's ``?search=`` filter.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Best-effort search term for the HF pricing page's ``?search=`` filter.", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_hf_pricing_rationale_271", "label": "Compute the new price for one preset, or None if nothing should change. Never\u2026", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Compute the new price for one preset, or None if nothing should change. Never\u2026", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/hf_pricing.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_logging_setup", "label": "logging_setup.py", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "logging_setup.py", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/logging_setup.py", "file_type": "code", "degree": 8}, {"id": "tracker_meshnet_tracker_logging_setup_exactlevelfilter", "label": "_ExactLevelFilter", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_ExactLevelFilter", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/logging_setup.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_logging_setup_exactlevelfilter_init", "label": ".__init__()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/logging_setup.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_logging_setup_exactlevelfilter_filter", "label": ".filter()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".filter()", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/logging_setup.py", "file_type": "code", "degree": 2}, {"id": "logrecord", "label": "LogRecord", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "LogRecord", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_logging_setup_teestream", "label": "_TeeStream", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_TeeStream", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/logging_setup.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_logging_setup_teestream_init", "label": ".__init__()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/logging_setup.py", "file_type": "code", "degree": 4}, {"id": "textio", "label": "TextIO", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "TextIO", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "", "file_type": "code", "degree": 1}, {"id": "logger", "label": "Logger", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Logger", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_logging_setup_teestream_write", "label": ".write()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".write()", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/logging_setup.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_logging_setup_teestream_flush", "label": ".flush()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".flush()", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/logging_setup.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_logging_setup_teestream_isatty", "label": ".isatty()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".isatty()", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/logging_setup.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_logging_setup_make_handler", "label": "_make_handler()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_make_handler()", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/logging_setup.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_logging_setup_py_path", "label": "Path", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "", "file_type": "code", "degree": 2}, {"id": "rotatingfilehandler", "label": "RotatingFileHandler", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "RotatingFileHandler", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_logging_setup_configure_tracker_file_logging", "label": "configure_tracker_file_logging()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "configure_tracker_file_logging()", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/logging_setup.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_logging_setup_tracker_logger", "label": "tracker_logger()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "tracker_logger()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/logging_setup.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_logging_setup_rationale_1", "label": "Rotating file logging for the tracker CLI.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Rotating file logging for the tracker CLI.", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/logging_setup.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_logging_setup_rationale_76", "label": "Configure rotatable info/warning/error log files and return the directory.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Configure rotatable info/warning/error log files and return the directory.", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/logging_setup.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_model_files", "label": "model_files.py", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "model_files.py", "community": 55, "community_name": "Community 55", "source_file": "tracker/meshnet_tracker/model_files.py", "file_type": "code", "degree": 13}, {"id": "tracker_meshnet_tracker_model_files_snapshot_dir_for_repo", "label": "snapshot_dir_for_repo()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "snapshot_dir_for_repo()", "community": 55, "community_name": "Community 55", "source_file": "tracker/meshnet_tracker/model_files.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_model_files_py_path", "label": "Path", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Path", "community": 55, "community_name": "Community 55", "source_file": "", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_model_files_files_for_layer_range", "label": "files_for_layer_range()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "files_for_layer_range()", "community": 55, "community_name": "Community 55", "source_file": "tracker/meshnet_tracker/model_files.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_model_files_select_safetensors_files_for_layers", "label": "select_safetensors_files_for_layers()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "select_safetensors_files_for_layers()", "community": 55, "community_name": "Community 55", "source_file": "tracker/meshnet_tracker/model_files.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_model_files_tensor_belongs_to_range", "label": "_tensor_belongs_to_range()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_tensor_belongs_to_range()", "community": 55, "community_name": "Community 55", "source_file": "tracker/meshnet_tracker/model_files.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_model_files_layer_index", "label": "_layer_index()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_layer_index()", "community": 55, "community_name": "Community 55", "source_file": "tracker/meshnet_tracker/model_files.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_model_files_is_head_tensor", "label": "_is_head_tensor()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_is_head_tensor()", "community": 55, "community_name": "Community 55", "source_file": "tracker/meshnet_tracker/model_files.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_model_files_is_tail_tensor", "label": "_is_tail_tensor()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_is_tail_tensor()", "community": 55, "community_name": "Community 55", "source_file": "tracker/meshnet_tracker/model_files.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_model_files_metadata_files", "label": "_metadata_files()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_metadata_files()", "community": 55, "community_name": "Community 55", "source_file": "tracker/meshnet_tracker/model_files.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_model_files_read_total_layers", "label": "_read_total_layers()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_read_total_layers()", "community": 55, "community_name": "Community 55", "source_file": "tracker/meshnet_tracker/model_files.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_model_files_layers_from_config", "label": "_layers_from_config()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_layers_from_config()", "community": 55, "community_name": "Community 55", "source_file": "tracker/meshnet_tracker/model_files.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_model_files_py_any", "label": "Any", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Any", "community": 55, "community_name": "Community 55", "source_file": "", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_model_files_normalise_relative_file", "label": "_normalise_relative_file()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_normalise_relative_file()", "community": 55, "community_name": "Community 55", "source_file": "tracker/meshnet_tracker/model_files.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_model_files_rationale_1", "label": "Helpers for serving layer-scoped model files from tracker-local snapshots.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Helpers for serving layer-scoped model files from tracker-local snapshots.", "community": 55, "community_name": "Community 55", "source_file": "tracker/meshnet_tracker/model_files.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_model_files_rationale_51", "label": "Return the most likely local HF snapshot directory for *repo_id*.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return the most likely local HF snapshot directory for *repo_id*.", "community": 55, "community_name": "Community 55", "source_file": "tracker/meshnet_tracker/model_files.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_model_files_rationale_68", "label": "Select files needed to load a conservative safetensors shard subset.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Select files needed to load a conservative safetensors shard subset.", "community": 55, "community_name": "Community 55", "source_file": "tracker/meshnet_tracker/model_files.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_raft", "label": "raft.py", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "raft.py", "community": 21, "community_name": "Community 21", "source_file": "tracker/meshnet_tracker/raft.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_raft_logentry", "label": "LogEntry", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "LogEntry", "community": 36, "community_name": "Community 36", "source_file": "tracker/meshnet_tracker/raft.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_raft_raftnode", "label": "RaftNode", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.9, "font": {"size": 12, "color": "#ffffff"}, "title": "RaftNode", "community": 36, "community_name": "Community 36", "source_file": "tracker/meshnet_tracker/raft.py", "file_type": "code", "degree": 33}, {"id": "tracker_meshnet_tracker_raft_raftnode_init", "label": ".__init__()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 36, "community_name": "Community 36", "source_file": "tracker/meshnet_tracker/raft.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_raft_raftnode_start", "label": ".start()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".start()", "community": 36, "community_name": "Community 36", "source_file": "tracker/meshnet_tracker/raft.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_raft_raftnode_stop", "label": ".stop()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".stop()", "community": 36, "community_name": "Community 36", "source_file": "tracker/meshnet_tracker/raft.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_raft_raftnode_is_leader", "label": ".is_leader()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".is_leader()", "community": 36, "community_name": "Community 36", "source_file": "tracker/meshnet_tracker/raft.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_raft_raftnode_leader", "label": ".leader()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".leader()", "community": 36, "community_name": "Community 36", "source_file": "tracker/meshnet_tracker/raft.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_raft_raftnode_status", "label": ".status()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".status()", "community": 36, "community_name": "Community 36", "source_file": "tracker/meshnet_tracker/raft.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_raft_raftnode_propose", "label": ".propose()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".propose()", "community": 36, "community_name": "Community 36", "source_file": "tracker/meshnet_tracker/raft.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_raft_raftnode_handle_request_vote", "label": ".handle_request_vote()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".handle_request_vote()", "community": 36, "community_name": "Community 36", "source_file": "tracker/meshnet_tracker/raft.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_raft_raftnode_handle_append_entries", "label": ".handle_append_entries()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".handle_append_entries()", "community": 36, "community_name": "Community 36", "source_file": "tracker/meshnet_tracker/raft.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_raft_raftnode_tick_loop", "label": "._tick_loop()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._tick_loop()", "community": 36, "community_name": "Community 36", "source_file": "tracker/meshnet_tracker/raft.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_raft_raftnode_send_heartbeats", "label": "._send_heartbeats()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._send_heartbeats()", "community": 36, "community_name": "Community 36", "source_file": "tracker/meshnet_tracker/raft.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_raft_raftnode_replicate_to_peers", "label": "._replicate_to_peers()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._replicate_to_peers()", "community": 36, "community_name": "Community 36", "source_file": "tracker/meshnet_tracker/raft.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_raft_raftnode_send_append_entries", "label": "._send_append_entries()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._send_append_entries()", "community": 36, "community_name": "Community 36", "source_file": "tracker/meshnet_tracker/raft.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_raft_raftnode_start_election", "label": "._start_election()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._start_election()", "community": 36, "community_name": "Community 36", "source_file": "tracker/meshnet_tracker/raft.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_raft_raftnode_become_leader", "label": "._become_leader()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._become_leader()", "community": 36, "community_name": "Community 36", "source_file": "tracker/meshnet_tracker/raft.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_raft_raftnode_step_down", "label": "._step_down()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "._step_down()", "community": 36, "community_name": "Community 36", "source_file": "tracker/meshnet_tracker/raft.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_raft_raftnode_apply_up_to_commit", "label": "._apply_up_to_commit()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._apply_up_to_commit()", "community": 36, "community_name": "Community 36", "source_file": "tracker/meshnet_tracker/raft.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_raft_raftnode_reset_deadline", "label": "._reset_deadline()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "._reset_deadline()", "community": 36, "community_name": "Community 36", "source_file": "tracker/meshnet_tracker/raft.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_raft_raftnode_fresh_deadline", "label": "._fresh_deadline()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._fresh_deadline()", "community": 36, "community_name": "Community 36", "source_file": "tracker/meshnet_tracker/raft.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_raft_rationale_1", "label": "Minimal Raft consensus for tracker shard assignments. Only shard-assignment\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Minimal Raft consensus for tracker shard assignments. Only shard-assignment\u2026", "community": 21, "community_name": "Community 21", "source_file": "tracker/meshnet_tracker/raft.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_raft_rationale_31", "label": "Single Raft participant. ``apply_fn(command, payload)`` is called (under no\u2026", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Single Raft participant. ``apply_fn(command, payload)`` is called (under no\u2026", "community": 36, "community_name": "Community 36", "source_file": "tracker/meshnet_tracker/raft.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_raft_rationale_103", "label": "Leader: append and replicate an entry. Returns True when committed. Blocks\u2026", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Leader: append and replicate an entry. Returns True when committed. Blocks\u2026", "community": 36, "community_name": "Community 36", "source_file": "tracker/meshnet_tracker/raft.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_raft_rationale_220", "label": "Send AppendEntries to all peers and update commit_index on majority ack.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Send AppendEntries to all peers and update commit_index on majority ack.", "community": 36, "community_name": "Community 36", "source_file": "tracker/meshnet_tracker/raft.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_raft_rationale_340", "label": "Must be called with _lock held.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Must be called with _lock held.", "community": 36, "community_name": "Community 36", "source_file": "tracker/meshnet_tracker/raft.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_raft_rationale_349", "label": "Must be called with _lock held.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Must be called with _lock held.", "community": 36, "community_name": "Community 36", "source_file": "tracker/meshnet_tracker/raft.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_raft_rationale_356", "label": "Must be called with _lock held.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Must be called with _lock held.", "community": 36, "community_name": "Community 36", "source_file": "tracker/meshnet_tracker/raft.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_recipe", "label": "recipe.py", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "recipe.py", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 21}, {"id": "tracker_meshnet_tracker_recipe_recipeidentityerror", "label": "RecipeIdentityError", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "RecipeIdentityError", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 28}, {"id": "tracker_meshnet_tracker_recipe_py_valueerror", "label": "ValueError", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ValueError", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_recipe_fingerprintmismatch", "label": "FingerprintMismatch", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "FingerprintMismatch", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_recipe_canonical_sha256", "label": "canonical_sha256()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "canonical_sha256()", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_recipe_py_any", "label": "Any", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Any", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "", "file_type": "code", "degree": 10}, {"id": "tracker_meshnet_tracker_recipe_digest", "label": "_digest()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_digest()", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_recipe_text", "label": "_text()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_text()", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_recipe_hex64", "label": "_hex64()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_hex64()", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_recipe_integer", "label": "_integer()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_integer()", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_recipe_pin", "label": "_pin()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_pin()", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_recipe_runtime_pin", "label": "_runtime_pin()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_runtime_pin()", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_recipe_mapping", "label": "_mapping()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_mapping()", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_recipe_artifact_digest", "label": "artifact_digest()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "artifact_digest()", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_recipe_recipe_digest", "label": "recipe_digest()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "recipe_digest()", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_recipe_presentedidentity", "label": "PresentedIdentity", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.5, "font": {"size": 0, "color": "#ffffff"}, "title": "PresentedIdentity", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 25}, {"id": "tracker_meshnet_tracker_recipe_presentedidentity_model_artifact_digest", "label": ".model_artifact_digest()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".model_artifact_digest()", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_recipe_presentedidentity_runtime_recipe_digest", "label": ".runtime_recipe_digest()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".runtime_recipe_digest()", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_recipe_presentedidentity_key", "label": ".key()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".key()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_recipe_presentedidentity_shard_binding_digest", "label": ".shard_binding_digest()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".shard_binding_digest()", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_recipe_presentedidentity_tokenizer_revision", "label": ".tokenizer_revision()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".tokenizer_revision()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_recipe_presentedidentity_architecture_adapter", "label": ".architecture_adapter()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".architecture_adapter()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_recipe_presentedidentity_fingerprint_dict", "label": ".fingerprint_dict()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".fingerprint_dict()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_recipe_parse_identity", "label": "parse_identity()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "parse_identity()", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 14}, {"id": "tracker_meshnet_tracker_recipe_coverage_gap", "label": "coverage_gap()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "coverage_gap()", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_recipe_distributedforwardevidence", "label": "DistributedForwardEvidence", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "DistributedForwardEvidence", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 16}, {"id": "tracker_meshnet_tracker_recipe_distributedforwardevidence_rejection", "label": ".rejection()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".rejection()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_recipe_recipestatus", "label": "RecipeStatus", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.4, "font": {"size": 0, "color": "#ffffff"}, "title": "RecipeStatus", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 19}, {"id": "tracker_meshnet_tracker_recipe_recipestatus_may_serve", "label": ".may_serve()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".may_serve()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_recipe_recipestatus_may_certify", "label": ".may_certify()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".may_certify()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_recipe_recipestatus_to_dict", "label": ".to_dict()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_recipe_certificationledger", "label": "CertificationLedger", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.5, "font": {"size": 0, "color": "#ffffff"}, "title": "CertificationLedger", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 25}, {"id": "tracker_meshnet_tracker_recipe_certificationledger_init", "label": ".__init__()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_recipe_certificationledger_register", "label": ".register()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".register()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_recipe_certificationledger_status", "label": ".status()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".status()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_recipe_certificationledger_certify", "label": ".certify()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".certify()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_recipe_certificationledger_to_dict", "label": ".to_dict()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".to_dict()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_recipe_rationale_1", "label": "Tracker-side artifact and runtime recipe identity (DGR-003). The node computes\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Tracker-side artifact and runtime recipe identity (DGR-003). The node computes\u2026", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_recipe_rationale_81", "label": "A presented identity block is malformed or internally inconsistent.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "A presented identity block is malformed or internally inconsistent.", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_recipe_rationale_85", "label": "A supplied digest is inconsistent with its identity declaration. A digest is an\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "A supplied digest is inconsistent with its identity declaration. A digest is an\u2026", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_recipe_rationale_159", "label": "The artifact half of the fingerprint, derived exactly as the node derives it.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The artifact half of the fingerprint, derived exactly as the node derives it.", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_recipe_rationale_172", "label": "The recipe half of the fingerprint, derived exactly as the node derives it.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The recipe half of the fingerprint, derived exactly as the node derives it.", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_recipe_rationale_183", "label": "One node's declared artifact/recipe identity, with digests re-derived here.\u2026", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "One node's declared artifact/recipe identity, with digests re-derived here.\u2026", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_recipe_rationale_224", "label": "This participant's own bytes and exact range, bound to the source. The route\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "This participant's own bytes and exact range, bound to the source. The route\u2026", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_recipe_rationale_271", "label": "Parse and *verify* a node's identity block. Raises when the block is malformed,\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Parse and *verify* a node's identity block. Raises when the block is malformed,\u2026", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_recipe_rationale_396", "label": "Why `ranges` fail to tile ``[0, layer_count)``, or None when they do. Overlaps\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Why `ranges` fail to tile ``[0, layer_count)``, or None when they do. Overlaps\u2026", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_recipe_rationale_425", "label": "A real distributed forward \u2014 the only thing that certifies a recipe.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "A real distributed forward \u2014 the only thing that certifies a recipe.", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_recipe_rationale_482", "label": "A dark recipe may be routed to *certify* it, and for nothing else. Without\u2026", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "A dark recipe may be routed to *certify* it, and for nothing else. Without\u2026", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_recipe_rationale_503", "label": "Which recipes the tracker has seen, and which a real forward has proven.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Which recipes the tracker has seen, and which a real forward has proven.", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_recipe_rationale_529", "label": "Promote a recipe out of the dark, or raise saying why the evidence is short.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Promote a recipe out of the dark, or raise saying why the evidence is short.", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/recipe.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_routing_stats", "label": "routing_stats.py", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "routing_stats.py", "community": 21, "community_name": "Community 21", "source_file": "tracker/meshnet_tracker/routing_stats.py", "file_type": "code", "degree": 11}, {"id": "tracker_meshnet_tracker_routing_stats_routingconfig", "label": "RoutingConfig", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "RoutingConfig", "community": 21, "community_name": "Community 21", "source_file": "tracker/meshnet_tracker/routing_stats.py", "file_type": "code", "degree": 16}, {"id": "tracker_meshnet_tracker_routing_stats_routestat", "label": "RouteStat", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "RouteStat", "community": 21, "community_name": "Community 21", "source_file": "tracker/meshnet_tracker/routing_stats.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_routing_stats_routestat_decayed_weight", "label": ".decayed_weight()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".decayed_weight()", "community": 21, "community_name": "Community 21", "source_file": "tracker/meshnet_tracker/routing_stats.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_routing_stats_routecandidate", "label": "RouteCandidate", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "RouteCandidate", "community": 21, "community_name": "Community 21", "source_file": "tracker/meshnet_tracker/routing_stats.py", "file_type": "code", "degree": 15}, {"id": "tracker_meshnet_tracker_routing_stats_route_signature", "label": "route_signature()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "route_signature()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/routing_stats.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_routing_stats_py_any", "label": "Any", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Any", "community": 8, "community_name": "Gateway Request Routing", "source_file": "", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_routing_stats_routestatsstore", "label": "RouteStatsStore", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.8, "font": {"size": 12, "color": "#ffffff"}, "title": "RouteStatsStore", "community": 21, "community_name": "Community 21", "source_file": "tracker/meshnet_tracker/routing_stats.py", "file_type": "code", "degree": 27}, {"id": "tracker_meshnet_tracker_routing_stats_routestatsstore_init", "label": ".__init__()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 21, "community_name": "Community 21", "source_file": "tracker/meshnet_tracker/routing_stats.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_routing_stats_routestatsstore_epoch", "label": ".epoch()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".epoch()", "community": 21, "community_name": "Community 21", "source_file": "tracker/meshnet_tracker/routing_stats.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_routing_stats_routestatsstore_bump_epoch", "label": ".bump_epoch()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".bump_epoch()", "community": 21, "community_name": "Community 21", "source_file": "tracker/meshnet_tracker/routing_stats.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_routing_stats_routestatsstore_record_sample", "label": ".record_sample()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".record_sample()", "community": 21, "community_name": "Community 21", "source_file": "tracker/meshnet_tracker/routing_stats.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_routing_stats_routestatsstore_snapshot", "label": ".snapshot()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".snapshot()", "community": 21, "community_name": "Community 21", "source_file": "tracker/meshnet_tracker/routing_stats.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_routing_stats_routestatsstore_model_rows", "label": ".model_rows()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".model_rows()", "community": 21, "community_name": "Community 21", "source_file": "tracker/meshnet_tracker/routing_stats.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_routing_stats_routestatsstore_init_db", "label": "._init_db()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._init_db()", "community": 21, "community_name": "Community 21", "source_file": "tracker/meshnet_tracker/routing_stats.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_routing_stats_routestatsstore_save_to_db", "label": ".save_to_db()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".save_to_db()", "community": 21, "community_name": "Community 21", "source_file": "tracker/meshnet_tracker/routing_stats.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_routing_stats_routestatsstore_load_from_db", "label": "._load_from_db()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._load_from_db()", "community": 21, "community_name": "Community 21", "source_file": "tracker/meshnet_tracker/routing_stats.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_routing_stats_routestatsstore_prune", "label": ".prune()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".prune()", "community": 21, "community_name": "Community 21", "source_file": "tracker/meshnet_tracker/routing_stats.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_routing_stats_choose_route", "label": "choose_route()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "choose_route()", "community": 21, "community_name": "Community 21", "source_file": "tracker/meshnet_tracker/routing_stats.py", "file_type": "code", "degree": 8}, {"id": "random", "label": "Random", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Random", "community": 21, "community_name": "Community 21", "source_file": "", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_routing_stats_route_table", "label": "route_table()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "route_table()", "community": 21, "community_name": "Community 21", "source_file": "tracker/meshnet_tracker/routing_stats.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_routing_stats_rationale_1", "label": "Learned route statistics for dynamic bandit-style route selection (ADR-0021).\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Learned route statistics for dynamic bandit-style route selection (ADR-0021).\u2026", "community": 21, "community_name": "Community 21", "source_file": "tracker/meshnet_tracker/routing_stats.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_routing_stats_rationale_78", "label": "Thread-safe per-route decayed throughput statistics.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Thread-safe per-route decayed throughput statistics.", "community": 21, "community_name": "Community 21", "source_file": "tracker/meshnet_tracker/routing_stats.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_routing_stats_rationale_95", "label": "Mark the topology changed for the given model keys (node join/leave).", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Mark the topology changed for the given model keys (node join/leave).", "community": 21, "community_name": "Community 21", "source_file": "tracker/meshnet_tracker/routing_stats.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_routing_stats_rationale_109", "label": "Fold one completed request into the route's EWMA. Returns False (and records\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Fold one completed request into the route's EWMA. Returns False (and records\u2026", "community": 21, "community_name": "Community 21", "source_file": "tracker/meshnet_tracker/routing_stats.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_routing_stats_rationale_136", "label": "Point-in-time view of one route's learned state.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Point-in-time view of one route's learned state.", "community": 21, "community_name": "Community 21", "source_file": "tracker/meshnet_tracker/routing_stats.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_routing_stats_rationale_160", "label": "All measured route samples, including pinned experiment routes.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "All measured route samples, including pinned experiment routes.", "community": 21, "community_name": "Community 21", "source_file": "tracker/meshnet_tracker/routing_stats.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_routing_stats_rationale_212", "label": "Drop routes with no samples for `prune_after_seconds`.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Drop routes with no samples for `prune_after_seconds`.", "community": 21, "community_name": "Community 21", "source_file": "tracker/meshnet_tracker/routing_stats.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_routing_stats_rationale_229", "label": "Pick a route: \u03b5-scout among unproven arms, else weighted \u221d tps**alpha. Returns\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Pick a route: \u03b5-scout among unproven arms, else weighted \u221d tps**alpha. Returns\u2026", "community": 21, "community_name": "Community 21", "source_file": "tracker/meshnet_tracker/routing_stats.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_routing_stats_rationale_272", "label": "Diagnostics rows: learned tps, coefficient vs best, expected traffic share.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Diagnostics rows: learned tps, coefficient vs best, expected traffic share.", "community": 21, "community_name": "Community 21", "source_file": "tracker/meshnet_tracker/routing_stats.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server", "label": "meshnet_tracker/server.py", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 40.0, "font": {"size": 12, "color": "#ffffff"}, "title": "meshnet_tracker/server.py", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 168}, {"id": "tracker_meshnet_tracker_server_preset_price_keys", "label": "_preset_price_keys()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_preset_price_keys()", "community": 28, "community_name": "Community 28", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_derive_relay_url_from_public_tracker_url", "label": "derive_relay_url_from_public_tracker_url()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "derive_relay_url_from_public_tracker_url()", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_server_local_relay_url", "label": "_local_relay_url()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_local_relay_url()", "community": 31, "community_name": "Community 31", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_server_load_model_presets_from_data", "label": "_load_model_presets_from_data()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_load_model_presets_from_data()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_server_clone_model_presets", "label": "_clone_model_presets()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_clone_model_presets()", "community": 28, "community_name": "Community 28", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_server_snapshot_regular_files", "label": "_snapshot_regular_files()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_snapshot_regular_files()", "community": 55, "community_name": "Community 55", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_py_path", "label": "Path", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Path", "community": 28, "community_name": "Community 28", "source_file": "", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_server_endpoint_key", "label": "_endpoint_key()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_endpoint_key()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_server_model_aliases", "label": "_model_aliases()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "_model_aliases()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 9}, {"id": "tracker_meshnet_tracker_server_preset_aliases", "label": "_preset_aliases()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_preset_aliases()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_resolve_model_preset", "label": "_resolve_model_preset()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_resolve_model_preset()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 23}, {"id": "tracker_meshnet_tracker_server_node_matches_model", "label": "_node_matches_model()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_node_matches_model()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 8}, {"id": "tracker_meshnet_tracker_server_node_matches_preset", "label": "_node_matches_preset()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_node_matches_preset()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 16}, {"id": "tracker_meshnet_tracker_server_rollingcounter", "label": "_RollingCounter", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.8, "font": {"size": 12, "color": "#ffffff"}, "title": "_RollingCounter", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 27}, {"id": "tracker_meshnet_tracker_server_rollingcounter_init", "label": ".__init__()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rollingcounter_epoch", "label": "._epoch()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "._epoch()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rollingcounter_record", "label": ".record()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".record()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_server_rollingcounter_rpm", "label": ".rpm()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".rpm()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_server_rollingcounter_buckets", "label": ".buckets()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".buckets()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rollingcounter_restore_buckets", "label": ".restore_buckets()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".restore_buckets()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rollingthroughput", "label": "_RollingThroughput", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.8, "font": {"size": 12, "color": "#ffffff"}, "title": "_RollingThroughput", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 27}, {"id": "tracker_meshnet_tracker_server_rollingthroughput_init", "label": ".__init__()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rollingthroughput_epoch", "label": "._epoch()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._epoch()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_rollingthroughput_record", "label": ".record()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".record()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_server_rollingthroughput_stats", "label": ".stats()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".stats()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_server_rollingthroughput_buckets", "label": ".buckets()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".buckets()", "community": 31, "community_name": "Community 31", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_server_rollingthroughput_restore_buckets", "label": ".restore_buckets()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".restore_buckets()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_server_modelstats", "label": "_ModelStats", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_ModelStats", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 25}, {"id": "tracker_meshnet_tracker_server_modelstats_init", "label": ".__init__()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_server_modelstats_record", "label": ".record()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".record()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_server_modelstats_rpms", "label": ".rpms()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".rpms()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_nodemodelthroughput", "label": "_NodeModelThroughput", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_NodeModelThroughput", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 25}, {"id": "tracker_meshnet_tracker_server_nodemodelthroughput_init", "label": ".__init__()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_server_nodemodelthroughput_record", "label": ".record()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".record()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_nodemodelthroughput_stats", "label": ".stats()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".stats()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_server_statscollector", "label": "_StatsCollector", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "_StatsCollector", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 32}, {"id": "tracker_meshnet_tracker_server_statscollector_init", "label": ".__init__()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_statscollector_record_request", "label": ".record_request()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".record_request()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_statscollector_record_node_throughput", "label": ".record_node_throughput()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".record_node_throughput()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_statscollector_get_local_rpms", "label": ".get_local_rpms()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_local_rpms()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_statscollector_get_node_model_stats", "label": ".get_node_model_stats()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_node_model_stats()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_statscollector_get_node_throughput_stats", "label": ".get_node_throughput_stats()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_node_throughput_stats()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_server_statscollector_merge_peer_rpms", "label": ".merge_peer_rpms()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".merge_peer_rpms()", "community": 44, "community_name": "Community 44", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_server_statscollector_get_combined_stats", "label": ".get_combined_stats()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_combined_stats()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_server_statscollector_init_db", "label": "._init_db()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._init_db()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_server_statscollector_save_to_db", "label": ".save_to_db()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".save_to_db()", "community": 31, "community_name": "Community 31", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_statscollector_load_from_db", "label": "._load_from_db()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._load_from_db()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_nodeentry", "label": "_NodeEntry", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 18.9, "font": {"size": 12, "color": "#ffffff"}, "title": "_NodeEntry", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 50}, {"id": "tracker_meshnet_tracker_server_nodeentry_init", "label": ".__init__()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 10, "community_name": "Tracker Capability Evaluation", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_server_effective_throughput", "label": "_effective_throughput()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_effective_throughput()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 8}, {"id": "tracker_meshnet_tracker_server_effective_queue_depth", "label": "_effective_queue_depth()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_effective_queue_depth()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_normalize_current_requests", "label": "_normalize_current_requests()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_normalize_current_requests()", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_server_record_proxy_inflight", "label": "_record_proxy_inflight()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_record_proxy_inflight()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_server_reputation_multiplier", "label": "_reputation_multiplier()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_reputation_multiplier()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_py_any", "label": "Any", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Any", "community": 8, "community_name": "Gateway Request Routing", "source_file": "", "file_type": "code", "degree": 14}, {"id": "tracker_meshnet_tracker_server_node_admission", "label": "_node_admission()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_node_admission()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_server_capability_from_registration", "label": "_capability_from_registration()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_capability_from_registration()", "community": 31, "community_name": "Community 31", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 8}, {"id": "tracker_meshnet_tracker_server_capability_routable", "label": "_capability_routable()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_capability_routable()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_server_admitted_nodes", "label": "_admitted_nodes()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_admitted_nodes()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_server_route_identity_partition", "label": "_route_identity_partition()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_route_identity_partition()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_select_route", "label": "_select_route()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "_select_route()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 9}, {"id": "tracker_meshnet_tracker_server_enumerate_routes", "label": "_enumerate_routes()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_enumerate_routes()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 12}, {"id": "tracker_meshnet_tracker_server_node_route_summary", "label": "_node_route_summary()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_node_route_summary()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_server_coverage_percentage", "label": "_coverage_percentage()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_coverage_percentage()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 8}, {"id": "tracker_meshnet_tracker_server_served_model_copies", "label": "_served_model_copies()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_served_model_copies()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_server_model_health_summary", "label": "_model_health_summary()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "_model_health_summary()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 10}, {"id": "tracker_meshnet_tracker_server_preset_layer_bounds", "label": "_preset_layer_bounds()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_preset_layer_bounds()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 16}, {"id": "tracker_meshnet_tracker_server_preset_bytes_per_layer", "label": "_preset_bytes_per_layer()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "_preset_bytes_per_layer()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 11}, {"id": "tracker_meshnet_tracker_server_normalize_quantization", "label": "_normalize_quantization()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_normalize_quantization()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_server_registration_quantization", "label": "_registration_quantization()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_registration_quantization()", "community": 31, "community_name": "Community 31", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_has_usable_quantization", "label": "_has_usable_quantization()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "_has_usable_quantization()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 10}, {"id": "tracker_meshnet_tracker_server_serviceable_nodes", "label": "_serviceable_nodes()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_serviceable_nodes()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_server_quantization_satisfies", "label": "_quantization_satisfies()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_quantization_satisfies()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_server_available_quantizations", "label": "_available_quantizations()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_available_quantizations()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_server_node_quantization", "label": "_node_quantization()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "_node_quantization()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 11}, {"id": "tracker_meshnet_tracker_server_node_memory_budget_bytes", "label": "_node_memory_budget_bytes()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "_node_memory_budget_bytes()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 9}, {"id": "tracker_meshnet_tracker_server_node_layer_capacity", "label": "_node_layer_capacity()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_node_layer_capacity()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 12}, {"id": "tracker_meshnet_tracker_server_node_capacity_summary", "label": "_node_capacity_summary()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_node_capacity_summary()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_server_node_memory_budget_for_preset", "label": "_node_memory_budget_for_preset()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_node_memory_budget_for_preset()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_server_pool_summary", "label": "_pool_summary()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_pool_summary()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_server_repo_demand_rpm", "label": "_repo_demand_rpm()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_repo_demand_rpm()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_preset_for_node", "label": "_preset_for_node()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_preset_for_node()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_assignment_memory_bytes", "label": "_assignment_memory_bytes()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_assignment_memory_bytes()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_endpoint_memory_pool", "label": "_endpoint_memory_pool()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_endpoint_memory_pool()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_server_memory_pool_map", "label": "_memory_pool_map()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_memory_pool_map()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_server_add_shard_directive", "label": "_add_shard_directive()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_add_shard_directive()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_model_demand_and_supply", "label": "_model_demand_and_supply()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_model_demand_and_supply()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 8}, {"id": "tracker_meshnet_tracker_server_scale_demanded_models_locked", "label": "_scale_demanded_models_locked()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "_scale_demanded_models_locked()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 11}, {"id": "tracker_meshnet_tracker_server_request_model_load_locked", "label": "_request_model_load_locked()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "_request_model_load_locked()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 11}, {"id": "tracker_meshnet_tracker_server_release_model_locked", "label": "_release_model_locked()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_release_model_locked()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_release_all_node_models_locked", "label": "_release_all_node_models_locked()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_release_all_node_models_locked()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_server_preferred_node_quantization", "label": "_preferred_node_quantization()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_preferred_node_quantization()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 8}, {"id": "tracker_meshnet_tracker_server_queue_initial_model_placement_locked", "label": "_queue_initial_model_placement_locked()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "_queue_initial_model_placement_locked()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 13}, {"id": "tracker_meshnet_tracker_server_deployment_summary", "label": "_deployment_summary()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_deployment_summary()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_server_max_layers_for_memory", "label": "_max_layers_for_memory()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_max_layers_for_memory()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_server_model_metadata_from_nodes", "label": "_model_metadata_from_nodes()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_model_metadata_from_nodes()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_server_coverage_map", "label": "_coverage_map()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_coverage_map()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_node_health", "label": "_node_health()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_node_health()", "community": 99, "community_name": "Community 99", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_server_coverage_map_detailed", "label": "_coverage_map_detailed()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_coverage_map_detailed()", "community": 99, "community_name": "Community 99", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_coverage_gaps", "label": "_coverage_gaps()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_coverage_gaps()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_server_unassigned_managed_nodes", "label": "_unassigned_managed_nodes()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_unassigned_managed_nodes()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_server_emit_shard_change_directives", "label": "_emit_shard_change_directives()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_emit_shard_change_directives()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 8}, {"id": "tracker_meshnet_tracker_server_assign_redundant_managed_nodes", "label": "_assign_redundant_managed_nodes()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_assign_redundant_managed_nodes()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 8}, {"id": "tracker_meshnet_tracker_server_ws_max_size", "label": "_ws_max_size()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_ws_max_size()", "community": 28, "community_name": "Community 28", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_server_relay_http_request_frames", "label": "_relay_http_request_frames()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_relay_http_request_frames()", "community": 28, "community_name": "Community 28", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_server_py_event", "label": "Event", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Event", "community": 28, "community_name": "Community 28", "source_file": "", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_server_relay_http_request", "label": "_relay_http_request()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_relay_http_request()", "community": 28, "community_name": "Community 28", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_server_usage_split", "label": "_usage_split()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_usage_split()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_stream_line_tokens", "label": "_stream_line_tokens()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_stream_line_tokens()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_server_stream_billable_split", "label": "_stream_billable_split()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_stream_billable_split()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_server_billable_non_stream_split", "label": "_billable_non_stream_split()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_billable_non_stream_split()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_server_find_pinned_route", "label": "_find_pinned_route()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_find_pinned_route()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_nodes_and_bounds_for_model", "label": "_nodes_and_bounds_for_model()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "_nodes_and_bounds_for_model()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 9}, {"id": "tracker_meshnet_tracker_server_fetch_toploc_commitment", "label": "_fetch_toploc_commitment()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_fetch_toploc_commitment()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_fetch_toploc_reference_activations", "label": "_fetch_toploc_reference_activations()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_fetch_toploc_reference_activations()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_load_directive", "label": "_load_directive()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_load_directive()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_server_drop_directive", "label": "_drop_directive()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_drop_directive()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_route_stats_keys", "label": "_route_stats_keys()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_route_stats_keys()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_purge_expired_nodes_locked", "label": "_purge_expired_nodes_locked()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_purge_expired_nodes_locked()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_server_rebalance_model_locked", "label": "_rebalance_model_locked()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_rebalance_model_locked()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 14}, {"id": "tracker_meshnet_tracker_server_hf_rebalance_preset", "label": "_hf_rebalance_preset()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_hf_rebalance_preset()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_rebalance_hf_model_locked", "label": "_rebalance_hf_model_locked()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "_rebalance_hf_model_locked()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 13}, {"id": "tracker_meshnet_tracker_server_rebalance_all_locked", "label": "_rebalance_all_locked()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_rebalance_all_locked()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_api_key_from_headers", "label": "_api_key_from_headers()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_api_key_from_headers()", "community": 70, "community_name": "Community 70", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_session_token_from_headers", "label": "_session_token_from_headers()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_session_token_from_headers()", "community": 70, "community_name": "Community 70", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_session_cookie_header", "label": "_session_cookie_header()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_session_cookie_header()", "community": 56, "community_name": "Community 56", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_usage_total_tokens", "label": "_usage_total_tokens()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_usage_total_tokens()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_estimate_text_tokens", "label": "_estimate_text_tokens()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_estimate_text_tokens()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_estimate_prompt_tokens", "label": "_estimate_prompt_tokens()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_estimate_prompt_tokens()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_server_requested_completion_token_limit", "label": "_requested_completion_token_limit()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_requested_completion_token_limit()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_request_total_token_upper_bound", "label": "_request_total_token_upper_bound()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_request_total_token_upper_bound()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_billable_non_stream_tokens", "label": "_billable_non_stream_tokens()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_billable_non_stream_tokens()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_observed_non_stream_completion_tokens", "label": "_observed_non_stream_completion_tokens()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_observed_non_stream_completion_tokens()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_observed_output_from_non_stream_payload", "label": "_observed_output_from_non_stream_payload()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_observed_output_from_non_stream_payload()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_server_observed_stream_tokens", "label": "_observed_stream_tokens()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_observed_stream_tokens()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_server_billable_stream_tokens", "label": "_billable_stream_tokens()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_billable_stream_tokens()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_server_registration_ban_error", "label": "_registration_ban_error()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_registration_ban_error()", "community": 31, "community_name": "Community 31", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_server_normalize_friendly_name", "label": "_normalize_friendly_name()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_normalize_friendly_name()", "community": 31, "community_name": "Community 31", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_tracker_log", "label": "_tracker_log()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_tracker_log()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 15}, {"id": "tracker_meshnet_tracker_server_activeproxycontext", "label": "_ActiveProxyContext", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_ActiveProxyContext", "community": 21, "community_name": "Community 21", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 22}, {"id": "tracker_meshnet_tracker_server_register_active_proxy", "label": "_register_active_proxy()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_register_active_proxy()", "community": 21, "community_name": "Community 21", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_server_unregister_active_proxy", "label": "_unregister_active_proxy()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_unregister_active_proxy()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_server_request_proxy_cancel", "label": "_request_proxy_cancel()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_request_proxy_cancel()", "community": 31, "community_name": "Community 31", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_server_upstream_socket", "label": "_upstream_socket()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_upstream_socket()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_set_upstream_read_timeout", "label": "_set_upstream_read_timeout()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_set_upstream_read_timeout()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_clear_proxy_progress_log_state", "label": "_clear_proxy_progress_log_state()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_clear_proxy_progress_log_state()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_tracker_log_proxy_progress", "label": "_tracker_log_proxy_progress()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_tracker_log_proxy_progress()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_node_id_for_registration", "label": "_node_id_for_registration()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_node_id_for_registration()", "community": 31, "community_name": "Community 31", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_server_trackerhttpserver", "label": "_TrackerHTTPServer", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "_TrackerHTTPServer", "community": 21, "community_name": "Community 21", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 21}, {"id": "tracker_meshnet_tracker_server_trackerhttpserver_init", "label": ".__init__()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 28, "community_name": "Community 28", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 10}, {"id": "lock", "label": "Lock", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Lock", "community": 28, "community_name": "Community 28", "source_file": "", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_server_trackerhandler", "label": "_TrackerHandler", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 26.6, "font": {"size": 12, "color": "#ffffff"}, "title": "_TrackerHandler", "community": 44, "community_name": "Community 44", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 93}, {"id": "tracker_meshnet_tracker_server_trackerhandler_log_message", "label": ".log_message()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".log_message()", "community": 44, "community_name": "Community 44", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "._send_json()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 20.4, "font": {"size": 12, "color": "#ffffff"}, "title": "._send_json()", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 58}, {"id": "tracker_meshnet_tracker_server_trackerhandler_resolve_identity", "label": "._resolve_identity()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "._resolve_identity()", "community": 70, "community_name": "Community 70", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_server_trackerhandler_require_role", "label": "._require_role()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "._require_role()", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 17}, {"id": "tracker_meshnet_tracker_server_trackerhandler_read_hive_authenticated_body", "label": "._read_hive_authenticated_body()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._read_hive_authenticated_body()", "community": 44, "community_name": "Community 44", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 8}, {"id": "tracker_meshnet_tracker_server_trackerhandler_read_json_body", "label": "._read_json_body()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "._read_json_body()", "community": 56, "community_name": "Community 56", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 18}, {"id": "tracker_meshnet_tracker_server_trackerhandler_purge_expired_nodes", "label": "._purge_expired_nodes()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "._purge_expired_nodes()", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 17}, {"id": "tracker_meshnet_tracker_server_trackerhandler_do_post", "label": ".do_POST()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.6, "font": {"size": 12, "color": "#ffffff"}, "title": ".do_POST()", "community": 44, "community_name": "Community 44", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 26}, {"id": "tracker_meshnet_tracker_server_trackerhandler_do_get", "label": ".do_GET()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.2, "font": {"size": 12, "color": "#ffffff"}, "title": ".do_GET()", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 29}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_models", "label": "._handle_models()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_models()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 11}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_coverage", "label": "._handle_coverage()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_coverage()", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_tracker_nodes", "label": "._handle_tracker_nodes()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_tracker_nodes()", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 8}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_network_map", "label": "._handle_network_map()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_network_map()", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 8}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "label": "._handle_proxy_chat()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 17.7, "font": {"size": 12, "color": "#ffffff"}, "title": "._handle_proxy_chat()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 43}, {"id": "tracker_meshnet_tracker_server_trackerhandler_record_observed_throughput", "label": "._record_observed_throughput()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "._record_observed_throughput()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 9}, {"id": "tracker_meshnet_tracker_server_trackerhandler_record_validation_event", "label": "._record_validation_event()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._record_validation_event()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_server_trackerhandler_bill_completed", "label": "._bill_completed()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._bill_completed()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_trackerhandler_stream_relayed_frames", "label": "._stream_relayed_frames()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._stream_relayed_frames()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 14}, {"id": "tracker_meshnet_tracker_server_trackerhandler_send_relayed_response", "label": "._send_relayed_response()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._send_relayed_response()", "community": 44, "community_name": "Community 44", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_register", "label": "._handle_register()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_register()", "community": 31, "community_name": "Community 31", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 19}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_heartbeat", "label": "._handle_heartbeat()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_heartbeat()", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 8}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_raft_vote", "label": "._handle_raft_vote()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_raft_vote()", "community": 44, "community_name": "Community 44", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_raft_append", "label": "._handle_raft_append()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_raft_append()", "community": 44, "community_name": "Community 44", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_raft_status", "label": "._handle_raft_status()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_raft_status()", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_gossip", "label": "._handle_gossip()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_gossip()", "community": 44, "community_name": "Community 44", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_model_load_request", "label": "._handle_model_load_request()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_model_load_request()", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_model_coverage_vote", "label": "._handle_model_coverage_vote()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_model_coverage_vote()", "community": 44, "community_name": "Community 44", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 9}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_stats", "label": "._handle_stats()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_stats()", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_stats_gossip", "label": "._handle_stats_gossip()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_stats_gossip()", "community": 44, "community_name": "Community 44", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_billing_summary", "label": "._handle_billing_summary()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_billing_summary()", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_dashboard", "label": "._handle_dashboard()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_dashboard()", "community": 98, "community_name": "Community 98", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_favicon", "label": "._handle_favicon()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_favicon()", "community": 98, "community_name": "Community 98", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_trackerhandler_serve_package_asset", "label": "._serve_package_asset()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._serve_package_asset()", "community": 98, "community_name": "Community 98", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_console", "label": "._handle_console()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_console()", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_request_cancel", "label": "._handle_proxy_request_cancel()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_proxy_request_cancel()", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_trackerhandler_finalize_proxy_cancel", "label": "._finalize_proxy_cancel()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "._finalize_proxy_cancel()", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 11}, {"id": "tracker_meshnet_tracker_server_trackerhandler_test_runner_or_reject", "label": "._test_runner_or_reject()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "._test_runner_or_reject()", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_tests_list", "label": "._handle_tests_list()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_tests_list()", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_py_parseresult", "label": "ParseResult", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ParseResult", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "", "file_type": "code", "degree": 10}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_tests_run", "label": "._handle_tests_run()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_tests_run()", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_tests_status", "label": "._handle_tests_status()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_tests_status()", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_registry_wallets", "label": "._handle_registry_wallets()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_registry_wallets()", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_billing_settlements", "label": "._handle_billing_settlements()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_billing_settlements()", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_billing_gossip", "label": "._handle_billing_gossip()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_billing_gossip()", "community": 44, "community_name": "Community 44", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_billing_forfeit", "label": "._handle_billing_forfeit()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_billing_forfeit()", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_server_trackerhandler_session_account", "label": "._session_account()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "._session_account()", "community": 56, "community_name": "Community 56", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 10}, {"id": "tracker_meshnet_tracker_server_trackerhandler_require_accounts", "label": "._require_accounts()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "._require_accounts()", "community": 56, "community_name": "Community 56", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 12}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_auth_register", "label": "._handle_auth_register()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_auth_register()", "community": 56, "community_name": "Community 56", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_auth_login", "label": "._handle_auth_login()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_auth_login()", "community": 56, "community_name": "Community 56", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_auth_logout", "label": "._handle_auth_logout()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_auth_logout()", "community": 56, "community_name": "Community 56", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_account_me", "label": "._handle_account_me()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_account_me()", "community": 56, "community_name": "Community 56", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_account_usage", "label": "._handle_account_usage()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_account_usage()", "community": 56, "community_name": "Community 56", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_account_profile", "label": "._handle_account_profile()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_account_profile()", "community": 56, "community_name": "Community 56", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_account_key_create", "label": "._handle_account_key_create()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_account_key_create()", "community": 56, "community_name": "Community 56", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_account_topup", "label": "._handle_account_topup()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_account_topup()", "community": 56, "community_name": "Community 56", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_account_key_revoke", "label": "._handle_account_key_revoke()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_account_key_revoke()", "community": 56, "community_name": "Community 56", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_admin_accounts", "label": "._handle_admin_accounts()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_admin_accounts()", "community": 56, "community_name": "Community 56", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_accounts_gossip", "label": "._handle_accounts_gossip()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_accounts_gossip()", "community": 44, "community_name": "Community 44", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_registry_gossip", "label": "._handle_registry_gossip()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_registry_gossip()", "community": 44, "community_name": "Community 44", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_wallet_register", "label": "._handle_wallet_register()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_wallet_register()", "community": 70, "community_name": "Community 70", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 9}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_benchmark_hop_penalty", "label": "._handle_benchmark_hop_penalty()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_benchmark_hop_penalty()", "community": 44, "community_name": "Community 44", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 10}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_benchmark_results", "label": "._handle_benchmark_results()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_benchmark_results()", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_toploc_calibration_run", "label": "._handle_toploc_calibration_run()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_toploc_calibration_run()", "community": 44, "community_name": "Community 44", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 10}, {"id": "tracker_meshnet_tracker_server_trackerhandler_toploc_calibration_gate_min_hardware_profiles", "label": "._toploc_calibration_gate_min_hardware_profiles()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._toploc_calibration_gate_min_hardware_profiles()", "community": 44, "community_name": "Community 44", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_server_trackerhandler_verify_node_toploc_calibration", "label": "._verify_node_toploc_calibration()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "._verify_node_toploc_calibration()", "community": 44, "community_name": "Community 44", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_toploc_calibration_results", "label": "._handle_toploc_calibration_results()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_toploc_calibration_results()", "community": 44, "community_name": "Community 44", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_hf_pricing_history", "label": "._handle_hf_pricing_history()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_hf_pricing_history()", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_assign", "label": "._handle_assign()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_assign()", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 11}, {"id": "tracker_meshnet_tracker_server_trackerhandler_model_sources", "label": "._model_sources()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "._model_sources()", "community": 55, "community_name": "Community 55", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_model_files_download", "label": "._handle_model_files_download()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_model_files_download()", "community": 55, "community_name": "Community 55", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 8}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_network_assign", "label": "._handle_network_assign()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_network_assign()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 16}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_route", "label": "._handle_route()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_route()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 13}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_routing", "label": "._handle_routing()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_routing()", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 11}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_model_speed", "label": "._handle_model_speed()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_model_speed()", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 10}, {"id": "tracker_meshnet_tracker_server_trackerhandler_handle_routes", "label": "._handle_routes()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "._handle_routes()", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 9}, {"id": "tracker_meshnet_tracker_server_trackerserver", "label": "TrackerServer", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 16.6, "font": {"size": 12, "color": "#ffffff"}, "title": "TrackerServer", "community": 31, "community_name": "Community 31", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 37}, {"id": "tracker_meshnet_tracker_server_trackerserver_init", "label": ".__init__()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 28, "community_name": "Community 28", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 19}, {"id": "tracker_meshnet_tracker_server_trackerserver_certify_recipe", "label": ".certify_recipe()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".certify_recipe()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_server_trackerserver_start_embedded_relay", "label": "._start_embedded_relay()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._start_embedded_relay()", "community": 31, "community_name": "Community 31", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_trackerserver_embedded_relay_status", "label": "._embedded_relay_status()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._embedded_relay_status()", "community": 31, "community_name": "Community 31", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_trackerserver_start", "label": ".start()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".start()", "community": 31, "community_name": "Community 31", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 10}, {"id": "tracker_meshnet_tracker_server_trackerserver_settlement_loop", "label": "._settlement_loop()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._settlement_loop()", "community": 31, "community_name": "Community 31", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_server_trackerserver_send_settlement", "label": "._send_settlement()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._send_settlement()", "community": 31, "community_name": "Community 31", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_server_trackerserver_deposit_loop", "label": "._deposit_loop()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._deposit_loop()", "community": 31, "community_name": "Community 31", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_server_trackerserver_hf_pricing_loop", "label": "._hf_pricing_loop()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._hf_pricing_loop()", "community": 28, "community_name": "Community 28", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_trackerserver_raft_apply", "label": "._raft_apply()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "._raft_apply()", "community": 31, "community_name": "Community 31", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 6}, {"id": "tracker_meshnet_tracker_server_trackerserver_rebalance_loop", "label": "._rebalance_loop()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._rebalance_loop()", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_trackerserver_push_to_peers", "label": "._push_to_peers()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._push_to_peers()", "community": 81, "community_name": "Community 81", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_trackerserver_save_stats_once", "label": "._save_stats_once()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._save_stats_once()", "community": 31, "community_name": "Community 31", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_server_trackerserver_stats_loop", "label": "._stats_loop()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._stats_loop()", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_server_trackerserver_stop", "label": ".stop()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".stop()", "community": 31, "community_name": "Community 31", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_server_rationale_1", "label": "Tracker HTTP server \u2014 node registry and route selection for the inference mesh.\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Tracker HTTP server \u2014 node registry and route selection for the inference mesh.\u2026", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_99", "label": "All model strings a client may bill under for one preset.\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "All model strings a client may bill under for one preset.\u2026", "community": 28, "community_name": "Community 28", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_117", "label": "Return wss://host/ws when url is a public HTTPS tracker origin.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return wss://host/ws when url is a public HTTPS tracker origin.", "community": 6, "community_name": "Tracker Operations & CLI", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_130", "label": "Return a node-consumable ws:// URL for an embedded relay bind address.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return a node-consumable ws:// URL for an embedded relay bind address.", "community": 31, "community_name": "Community 31", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_136", "label": "Load recommended model presets from package JSON data.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Load recommended model presets from package JSON data.", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_167", "label": "Shallow-copy each preset dict so a runtime mutation (e.g. issue 23's dynamic\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Shallow-copy each preset dict so a runtime mutation (e.g. issue 23's dynamic\u2026", "community": 28, "community_name": "Community 28", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_194", "label": "Normalize http(s) endpoints for host:port comparison.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Normalize http(s) endpoints for host:port comparison.", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_206", "label": "Return stable lookup aliases for a model repo or display name.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return stable lookup aliases for a model repo or display name.", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_256", "label": "Circular-bucket request counter. Tracks events in `num_buckets` slots, each\u2026", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Circular-bucket request counter. Tracks events in `num_buckets` slots, each\u2026", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_298", "label": "Circular buckets for observed tokens/sec. Each bucket stores total output\u2026", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Circular buckets for observed tokens/sec. Each bucket stores total output\u2026", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_365", "label": "Three rolling windows for one model: last hour, last day, last month.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Three rolling windows for one model: last hour, last day, last month.", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_388", "label": "Observed throughput windows for one node/model pair.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Observed throughput windows for one node/model pair.", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_416", "label": "Thread-safe model request stats with SQLite persistence and peer slice merging.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Thread-safe model request stats with SQLite persistence and peer slice merging.", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_689", "label": "Effective tokens/s accounting for current queue depth.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Effective tokens/s accounting for current queue depth.", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_703", "label": "Best current load estimate: heartbeat queue or tracker-routed in-flight.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Best current load estimate: heartbeat queue or tracker-routed in-flight.", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_714", "label": "Sanitize node-reported in-flight request snapshots from heartbeats.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Sanitize node-reported in-flight request snapshots from heartbeats.", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_752", "label": "ADR-0018 \u00a76: veteran, good-standing nodes route more -- earnings scale with\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-0018 \u00a76: veteran, good-standing nodes route more -- earnings scale with\u2026", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_763", "label": "The node's recorded verdict, re-checked against what it advertises *now*. A\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The node's recorded verdict, re-checked against what it advertises *now*. A\u2026", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_801", "label": "The tracker's verdict on the proof carried by one registration payload. Used by\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The tracker's verdict on the proof carried by one registration payload. Used by\u2026", "community": 31, "community_name": "Community 31", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_824", "label": "May this node carry traffic under the tracker's capability policy?", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "May this node carry traffic under the tracker's capability policy?", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_829", "label": "Drop every candidate whose capability proof does not admit it (ADR-0023). This\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Drop every candidate whose capability proof does not admit it (ADR-0023). This\u2026", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_852", "label": "Greedy interval-cover biased toward fast, lightly-loaded, reputable nodes.\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Greedy interval-cover biased toward fast, lightly-loaded, reputable nodes.\u2026", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_924", "label": "Enumerate viable route candidates for bandit selection (ADR-0021). One\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Enumerate viable route candidates for bandit selection (ADR-0021). One\u2026", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_1124", "label": "Normalize public precision names to the node/backend vocabulary.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Normalize public precision names to the node/backend vocabulary.", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_1134", "label": "Resolve the active precision a registration is routable at. Only the raw body\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Resolve the active precision a registration is routable at. Only the raw body\u2026", "community": 31, "community_name": "Community 31", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_1165", "label": "Whether a node declared a precision it can actually serve. `quantization` is\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Whether a node declared a precision it can actually serve. `quantization` is\u2026", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_1180", "label": "The nodes a coverage calculation is allowed to count. A node with no usable\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "The nodes a coverage calculation is allowed to count. A node with no usable\u2026", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_1192", "label": "Return whether a shard meets a request's minimum precision.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return whether a shard meets a request's minimum precision.", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_1208", "label": "Summarize selectable minimum-precision variants for a model. A request may use\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Summarize selectable minimum-precision variants for a model. A request may use\u2026", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_1242", "label": "Return the memory pool used for shard-capacity planning.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return the memory pool used for shard-capacity planning.", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_1261", "label": "Operator-facing capacity fields for inspection endpoints.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Operator-facing capacity fields for inspection endpoints.", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_1307", "label": "Look up recent request rate by hf_repo or preset alias.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Look up recent request rate by hf_repo or preset alias.", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_1347", "label": "Per-host RAM/VRAM budget, usage, spare capacity, and loaded assignments.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Per-host RAM/VRAM budget, usage, spare capacity, and loaded assignments.", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_1386", "label": "Aggregate and per-endpoint view of assignable RAM across the hive.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Aggregate and per-endpoint view of assignable RAM across the hive.", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_1463", "label": "Use spare host RAM/slots to add copies of high-demand models.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Use spare host RAM/slots to add copies of high-demand models.", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_1545", "label": "Queue an explicitly requested model on the best available joined node.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Queue an explicitly requested model on the best available joined node.", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_1583", "label": "Queue DROP_SHARD for every served shard and remove it from routing immediately.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Queue DROP_SHARD for every served shard and remove it from routing immediately.", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_1600", "label": "Queue removal of every loaded assignment on one node.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Queue removal of every loaded assignment on one node.", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_1614", "label": "Choose the highest supported precision that satisfies a request.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Choose the highest supported precision that satisfies a request.", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_1633", "label": "Queue a complete first copy on spare tracker-managed capacity. This\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Queue a complete first copy on spare tracker-managed capacity. This\u2026", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_1786", "label": "Per-node health detail for the availability map.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Per-node health detail for the availability map.", "community": 99, "community_name": "Community 99", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_1816", "label": "Like _coverage_map but with per-node identity and health in each band. Includes\u2026", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Like _coverage_map but with per-node identity and health in each band. Includes\u2026", "community": 99, "community_name": "Community 99", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_1888", "label": "Queue DROP/LOAD directives when a managed node's shard assignment changes.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Queue DROP/LOAD directives when a managed node's shard assignment changes.", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_1921", "label": "Give newly joined managed nodes their own copy without reshuffling incumbents.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Give newly joined managed nodes their own copy without reshuffling incumbents.", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_1952", "label": "Max inbound WebSocket frame size; MESHNET_WS_MAX_BYTES<=0 means unlimited.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Max inbound WebSocket frame size; MESHNET_WS_MAX_BYTES<=0 means unlimited.", "community": 28, "community_name": "Community 28", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_1977", "label": "Send an HTTP-shaped request through a relay RPC WebSocket, yielding response\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Send an HTTP-shaped request through a relay RPC WebSocket, yielding response\u2026", "community": 28, "community_name": "Community 28", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_2032", "label": "Send an HTTP-shaped request through a relay and buffer the response. Streamed\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Send an HTTP-shaped request through a relay and buffer the response. Streamed\u2026", "community": 28, "community_name": "Community 28", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_2056", "label": "Parse a usage block into {\"prompt\", \"completion\", \"total\"} (ints or None).", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Parse a usage block into {"prompt", "completion", "total"} (ints or None).", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_2073", "label": "Token accounting for one SSE line: (observed output delta, usage split or None).", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Token accounting for one SSE line: (observed output delta, usage split or None).", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_2089", "label": "(input_tokens, output_tokens) for a streamed response (US-045). Output:\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "(input_tokens, output_tokens) for a streamed response (US-045). Output:\u2026", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_2106", "label": "(input_tokens, output_tokens) for a buffered response (US-045). Prefers the\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "(input_tokens, output_tokens) for a buffered response (US-045). Prefers the\u2026", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_2136", "label": "First combination of exactly ``hop_count`` distinct nodes covering the layer\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "First combination of exactly ``hop_count`` distinct nodes covering the layer\u2026", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_2195", "label": "Fetch a node's own on-demand TOPLOC boundary commitment (ADR-0018 \u00a73), same\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Fetch a node's own on-demand TOPLOC boundary commitment (ADR-0018 \u00a73), same\u2026", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_2234", "label": "Teacher-force the claimed tokens on the reference node (same contract as\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Teacher-force the claimed tokens on the reference node (same contract as\u2026", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_2288", "label": "All stats keys a node's routes may be recorded under (model, repo, resolved\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "All stats keys a node's routes may be recorded under (model, repo, resolved\u2026", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_3006", "label": "Resolve the caller to (role, account). Roles: \"validator\" (service token),\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Resolve the caller to (role, account). Roles: "validator" (service token),\u2026", "community": 70, "community_name": "Community 70", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_3025", "label": "Gate a privileged handler; sends 401/403 and returns False on failure. 401 when\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Gate a privileged handler; sends 401/403 and returns False on failure. 401 when\u2026", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_3041", "label": "Read + verify a hive gossip body (HMAC per ADR-0017 \u00a73). Fails closed: without\u2026", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Read + verify a hive gossip body (HMAC per ADR-0017 \u00a73). Fails closed: without\u2026", "community": 44, "community_name": "Community 44", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_3367", "label": "Return head workers: worker nodes that can start inference for a model. The\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return head workers: worker nodes that can start inference for a model. The\u2026", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_3501", "label": "Proxy POST /v1/chat/completions to a tracker-mode (first-shard) node. Picks a\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Proxy POST /v1/chat/completions to a tracker-mode (first-shard) node. Picks a\u2026", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_4236", "label": "Record observed route TPS for participating nodes. The tracker sees end-to-end\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Record observed route TPS for participating nodes. The tracker sees end-to-end\u2026", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_4317", "label": "Charge a completed request against the billing ledger (ADR-0015). With\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Charge a completed request against the billing ledger (ADR-0015). With\u2026", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_4370", "label": "Forward a streamed relay response (US-036) to the client as SSE, billing with\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Forward a streamed relay response (US-036) to the client as SSE, billing with\u2026", "community": 8, "community_name": "Gateway Request Routing", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_4922", "label": "Record a rolling wish-list signal for an unavailable precision.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Record a rolling wish-list signal for an unavailable precision.", "community": 44, "community_name": "Community 44", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_4973", "label": "Serve the read-only web dashboard (US-035). Any tracker in the mesh \u2014 leader or\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Serve the read-only web dashboard (US-035). Any tracker in the mesh \u2014 leader or\u2026", "community": 98, "community_name": "Community 98", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_4978", "label": "Serve the dashboard favicon (SVG; ICO path aliases the same asset).", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Serve the dashboard favicon (SVG; ICO path aliases the same asset).", "community": 98, "community_name": "Community 98", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_5067", "label": "Admin session first, then the explicit enable gate \u2014 both fail closed.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Admin session first, then the explicit enable gate \u2014 both fail closed.", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_5163", "label": "Privileged: forfeit a node's pending balance + record a strike (US-034).\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Privileged: forfeit a node's pending balance + record a strike (US-034).\u2026", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_5201", "label": "Resolve the session token in the Authorization header, or None.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Resolve the session token in the Authorization header, or None.", "community": 56, "community_name": "Community 56", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_5279", "label": "Balance, usage totals, and API keys for the logged-in account.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Balance, usage totals, and API keys for the logged-in account.", "community": 56, "community_name": "Community 56", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_5303", "label": "Per-request charge history for the logged-in account (billing tab).", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Per-request charge history for the logged-in account (billing tab).", "community": 56, "community_name": "Community 56", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_5373", "label": "Devnet faucet (US-040): credit the configured amount to one of the logged-in\u2026", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Devnet faucet (US-040): credit the configured amount to one of the logged-in\u2026", "community": 56, "community_name": "Community 56", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_5426", "label": "Admin-only: all accounts with their keys and balances.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Admin-only: all accounts with their keys and balances.", "community": 56, "community_name": "Community 56", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_5479", "label": "Bind a client wallet pubkey to an API key (US-032, C6). Deposits from that\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Bind a client wallet pubkey to an API key (US-032, C6). Deposits from that\u2026", "community": 70, "community_name": "Community 70", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_5530", "label": "Privileged: run the same prompt through 1/2/3-node pinned routes (US-030). Data\u2026", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Privileged: run the same prompt through 1/2/3-node pinned routes (US-030). Data\u2026", "community": 44, "community_name": "Community 44", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_5638", "label": "Privileged: honest-noise TOPLOC calibration dispatch (issue 21). Fans the same\u2026", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Privileged: honest-noise TOPLOC calibration dispatch (issue 21). Fans the same\u2026", "community": 44, "community_name": "Community 44", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_5756", "label": "One node's calibration outcome: fetch its on-demand commitment, teacher-force\u2026", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "One node's calibration outcome: fetch its on-demand commitment, teacher-force\u2026", "community": 44, "community_name": "Community 44", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_5826", "label": "Dispute-auditability log for the dynamic HF-benchmarked pricing (issue 23).", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Dispute-auditability log for the dynamic HF-benchmarked pricing (issue 23).", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_5838", "label": "Return an optimal shard assignment for a node given its hardware profile. Query\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return an optimal shard assignment for a node given its hardware profile. Query\u2026", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_6073", "label": "Assign a new node to fill the biggest uncovered shard gap across HF-model\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Assign a new node to fill the biggest uncovered shard gap across HF-model\u2026", "community": 0, "community_name": "Tracker Routing & Placement", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_6379", "label": "Learned route table (ADR-0021): per-model candidates with observed tps,\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Learned route table (ADR-0021): per-model candidates with observed tps,\u2026", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_6435", "label": "Drill into observed model speed and the latency cost of each route.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Drill into observed model speed and the latency cost of each route.", "community": 18, "community_name": "Tracker Admin & Network APIs", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_6546", "label": "HTTP tracker that manages node registration and resolves inference routes.\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "HTTP tracker that manages node registration and resolves inference routes.\u2026", "community": 31, "community_name": "Community 31", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_6740", "label": "Promote one exact recipe from tracker-recorded distributed evidence. This is\u2026", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Promote one exact recipe from tracker-recorded distributed evidence. This is\u2026", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_6814", "label": "Start the shared RelayServer class in-process for tracker+relay deployments.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Start the shared RelayServer class in-process for tracker+relay deployments.", "community": 31, "community_name": "Community 31", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_6938", "label": "Leader-only on-chain settlement (US-033, ADR-0015). Pay a node when pending \u2265\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Leader-only on-chain settlement (US-033, ADR-0015). Pay a node when pending \u2265\u2026", "community": 31, "community_name": "Community 31", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_7012", "label": "Poll the treasury token account and credit confirmed deposits (US-032).", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Poll the treasury token account and credit confirmed deposits (US-032).", "community": 31, "community_name": "Community 31", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_7045", "label": "Daily dynamic pricing refresh benchmarked against HF inference rates (issue\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Daily dynamic pricing refresh benchmarked against HF inference rates (issue\u2026", "community": 28, "community_name": "Community 28", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_7094", "label": "Called by RaftNode when a log entry is committed \u2014 replicate to local registry.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Called by RaftNode when a log entry is committed \u2014 replicate to local registry.", "community": 31, "community_name": "Community 31", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_7170", "label": "POST a hive-signed payload to every cluster peer; True if all succeeded.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "POST a hive-signed payload to every cluster peer; True if all succeeded.", "community": 81, "community_name": "Community 81", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_7187", "label": "Persist each store independently so one DB failure cannot kill the loop.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Persist each store independently so one DB failure cannot kill the loop.", "community": 31, "community_name": "Community 31", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_server_rationale_7209", "label": "Periodically save stats/billing to DB and push local slices to cluster peers.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Periodically save stats/billing to DB and push local slices to cluster peers.", "community": 2, "community_name": "Capability Admission", "source_file": "tracker/meshnet_tracker/server.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_test_runner", "label": "test_runner.py", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "test_runner.py", "community": 20, "community_name": "Community 20", "source_file": "tracker/meshnet_tracker/test_runner.py", "file_type": "code", "degree": 11}, {"id": "tracker_meshnet_tracker_test_runner_testrunnererror", "label": "TestRunnerError", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "TestRunnerError", "community": 20, "community_name": "Community 20", "source_file": "tracker/meshnet_tracker/test_runner.py", "file_type": "code", "degree": 17}, {"id": "tracker_meshnet_tracker_test_runner_py_exception", "label": "Exception", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Exception", "community": 20, "community_name": "Community 20", "source_file": "", "file_type": "code", "degree": 1}, {"id": "tracker_meshnet_tracker_test_runner_unknowntargeterror", "label": "UnknownTargetError", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "UnknownTargetError", "community": 20, "community_name": "Community 20", "source_file": "tracker/meshnet_tracker/test_runner.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_test_runner_runinprogresserror", "label": "RunInProgressError", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "RunInProgressError", "community": 20, "community_name": "Community 20", "source_file": "tracker/meshnet_tracker/test_runner.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_test_runner_collectionerror", "label": "CollectionError", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "CollectionError", "community": 20, "community_name": "Community 20", "source_file": "tracker/meshnet_tracker/test_runner.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_test_runner_discover_repo_root", "label": "discover_repo_root()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "discover_repo_root()", "community": 20, "community_name": "Community 20", "source_file": "tracker/meshnet_tracker/test_runner.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_test_runner_py_path", "label": "Path", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Path", "community": 20, "community_name": "Community 20", "source_file": "", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_test_runner_real_inference_enabled", "label": "_real_inference_enabled()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_real_inference_enabled()", "community": 20, "community_name": "Community 20", "source_file": "tracker/meshnet_tracker/test_runner.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_test_runner_test_python", "label": "_test_python()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_test_python()", "community": 20, "community_name": "Community 20", "source_file": "tracker/meshnet_tracker/test_runner.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_test_runner_function_metadata", "label": "_function_metadata()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_function_metadata()", "community": 20, "community_name": "Community 20", "source_file": "tracker/meshnet_tracker/test_runner.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_test_runner_testrunmanager", "label": "TestRunManager", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.5, "font": {"size": 0, "color": "#ffffff"}, "title": "TestRunManager", "community": 20, "community_name": "Community 20", "source_file": "tracker/meshnet_tracker/test_runner.py", "file_type": "code", "degree": 25}, {"id": "tracker_meshnet_tracker_test_runner_testrunmanager_init", "label": ".__init__()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 20, "community_name": "Community 20", "source_file": "tracker/meshnet_tracker/test_runner.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_test_runner_testrunmanager_suites", "label": ".suites()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".suites()", "community": 20, "community_name": "Community 20", "source_file": "tracker/meshnet_tracker/test_runner.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_test_runner_testrunmanager_collect", "label": ".collect()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".collect()", "community": 20, "community_name": "Community 20", "source_file": "tracker/meshnet_tracker/test_runner.py", "file_type": "code", "degree": 7}, {"id": "tracker_meshnet_tracker_test_runner_testrunmanager_test_metadata", "label": "._test_metadata()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._test_metadata()", "community": 20, "community_name": "Community 20", "source_file": "tracker/meshnet_tracker/test_runner.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_test_runner_testrunmanager_collection_snapshot_locked", "label": "._collection_snapshot_locked()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._collection_snapshot_locked()", "community": 20, "community_name": "Community 20", "source_file": "tracker/meshnet_tracker/test_runner.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_test_runner_testrunmanager_start", "label": ".start()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".start()", "community": 20, "community_name": "Community 20", "source_file": "tracker/meshnet_tracker/test_runner.py", "file_type": "code", "degree": 9}, {"id": "tracker_meshnet_tracker_test_runner_testrunmanager_drain", "label": "._drain()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._drain()", "community": 20, "community_name": "Community 20", "source_file": "tracker/meshnet_tracker/test_runner.py", "file_type": "code", "degree": 2}, {"id": "deque", "label": "deque", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "deque", "community": 20, "community_name": "Community 20", "source_file": "", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_test_runner_testrunmanager_wait", "label": "._wait()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._wait()", "community": 20, "community_name": "Community 20", "source_file": "tracker/meshnet_tracker/test_runner.py", "file_type": "code", "degree": 2}, {"id": "popen", "label": "Popen", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Popen", "community": 20, "community_name": "Community 20", "source_file": "", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_test_runner_testrunmanager_status", "label": ".status()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".status()", "community": 20, "community_name": "Community 20", "source_file": "tracker/meshnet_tracker/test_runner.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_test_runner_testrunmanager_status_locked", "label": "._status_locked()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._status_locked()", "community": 20, "community_name": "Community 20", "source_file": "tracker/meshnet_tracker/test_runner.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_test_runner_testrunmanager_shutdown", "label": ".shutdown()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".shutdown()", "community": 20, "community_name": "Community 20", "source_file": "tracker/meshnet_tracker/test_runner.py", "file_type": "code", "degree": 2}, {"id": "tracker_meshnet_tracker_test_runner_rationale_1", "label": "Opt-in tracker test runner backing the dashboard Testing tab. Security posture\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Opt-in tracker test runner backing the dashboard Testing tab. Security posture\u2026", "community": 20, "community_name": "Community 20", "source_file": "tracker/meshnet_tracker/test_runner.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_test_runner_rationale_105", "label": "Base class; carries the HTTP status the handler should send.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Base class; carries the HTTP status the handler should send.", "community": 20, "community_name": "Community 20", "source_file": "tracker/meshnet_tracker/test_runner.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_test_runner_rationale_123", "label": "Find the repository root independent of the tracker's cwd. Walks up from this\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Find the repository root independent of the tracker's cwd. Walks up from this\u2026", "community": 20, "community_name": "Community 20", "source_file": "tracker/meshnet_tracker/test_runner.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_test_runner_rationale_142", "label": "Return the project interpreter configured by the machine env file. The tracker\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Return the project interpreter configured by the machine env file. The tracker\u2026", "community": 20, "community_name": "Community 20", "source_file": "tracker/meshnet_tracker/test_runner.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_test_runner_rationale_159", "label": "Read description and ``Tags:`` metadata from a test docstring.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Read description and ``Tags:`` metadata from a test docstring.", "community": 20, "community_name": "Community 20", "source_file": "tracker/meshnet_tracker/test_runner.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_test_runner_rationale_189", "label": "Collects pytest node IDs and runs one fixed target at a time.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Collects pytest node IDs and runs one fixed target at a time.", "community": 20, "community_name": "Community 20", "source_file": "tracker/meshnet_tracker/test_runner.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_test_runner_rationale_216", "label": "Approved suites whose files exist in this repo checkout.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Approved suites whose files exist in this repo checkout.", "community": 20, "community_name": "Community 20", "source_file": "tracker/meshnet_tracker/test_runner.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_test_runner_rationale_227", "label": "Run ``pytest --collect-only -q`` and cache the node IDs. Real-inference modules\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Run ``pytest --collect-only -q`` and cache the node IDs. Real-inference modules\u2026", "community": 20, "community_name": "Community 20", "source_file": "tracker/meshnet_tracker/test_runner.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_test_runner_rationale_315", "label": "Start one collected node ID or approved ``suite:<name>`` target.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Start one collected node ID or approved ``suite:<name>`` target.", "community": 20, "community_name": "Community 20", "source_file": "tracker/meshnet_tracker/test_runner.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_test_runner_rationale_441", "label": "Kill any active child process (tracker stop path).", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Kill any active child process (tracker stop path).", "community": 20, "community_name": "Community 20", "source_file": "tracker/meshnet_tracker/test_runner.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_wallet_proof", "label": "wallet_proof.py", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "wallet_proof.py", "community": 70, "community_name": "Community 70", "source_file": "tracker/meshnet_tracker/wallet_proof.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_wallet_proof_b58decode", "label": "b58decode()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "b58decode()", "community": 70, "community_name": "Community 70", "source_file": "tracker/meshnet_tracker/wallet_proof.py", "file_type": "code", "degree": 3}, {"id": "tracker_meshnet_tracker_wallet_proof_binding_message", "label": "binding_message()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "binding_message()", "community": 70, "community_name": "Community 70", "source_file": "tracker/meshnet_tracker/wallet_proof.py", "file_type": "code", "degree": 4}, {"id": "tracker_meshnet_tracker_wallet_proof_verify_wallet_signature", "label": "verify_wallet_signature()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "verify_wallet_signature()", "community": 70, "community_name": "Community 70", "source_file": "tracker/meshnet_tracker/wallet_proof.py", "file_type": "code", "degree": 5}, {"id": "tracker_meshnet_tracker_wallet_proof_rationale_1", "label": "Ed25519 proof-of-ownership for client wallet binding (ADR-0017 \u00a75, issue C6).\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Ed25519 proof-of-ownership for client wallet binding (ADR-0017 \u00a75, issue C6).\u2026", "community": 70, "community_name": "Community 70", "source_file": "tracker/meshnet_tracker/wallet_proof.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_wallet_proof_rationale_22", "label": "Decode a base58 string (Solana/Bitcoin alphabet) to bytes.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Decode a base58 string (Solana/Bitcoin alphabet) to bytes.", "community": 70, "community_name": "Community 70", "source_file": "tracker/meshnet_tracker/wallet_proof.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_wallet_proof_rationale_35", "label": "Message a wallet owner must sign to bind ``wallet`` to ``api_key``.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Message a wallet owner must sign to bind ``wallet`` to ``api_key``.", "community": 70, "community_name": "Community 70", "source_file": "tracker/meshnet_tracker/wallet_proof.py", "file_type": "rationale", "degree": 1}, {"id": "tracker_meshnet_tracker_wallet_proof_rationale_40", "label": "True if ``signature_hex`` is a valid ed25519 signature by ``wallet`` over\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "True if ``signature_hex`` is a valid ed25519 signature by ``wallet`` over\u2026", "community": 70, "community_name": "Community 70", "source_file": "tracker/meshnet_tracker/wallet_proof.py", "file_type": "rationale", "degree": 1}, {"id": "pkg_meshnet_tracker", "label": "meshnet-tracker", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet-tracker", "community": 121, "community_name": "Community 121", "source_file": "tracker/pyproject.toml", "file_type": "code", "degree": 0}, {"id": "validator_meshnet_validator_init", "label": "meshnet_validator/__init__.py", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.8, "font": {"size": 12, "color": "#ffffff"}, "title": "meshnet_validator/__init__.py", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "code", "degree": 27}, {"id": "validator_meshnet_validator_init_validatorprocess", "label": "ValidatorProcess", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ValidatorProcess", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "code", "degree": 22}, {"id": "validator_meshnet_validator_init_validatorprocess_init", "label": ".__init__()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "code", "degree": 4}, {"id": "validator_meshnet_validator_init_py_any", "label": "Any", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Any", "community": 1, "community_name": "Validator Proof Audits", "source_file": "", "file_type": "code", "degree": 18}, {"id": "validator_meshnet_validator_init_validatorprocess_validate_once", "label": ".validate_once()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".validate_once()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "code", "degree": 8}, {"id": "validator_meshnet_validator_init_validatorprocess_should_sample", "label": "._should_sample()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "._should_sample()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "code", "degree": 7}, {"id": "validator_meshnet_validator_init_validatorprocess_start", "label": ".start()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".start()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "code", "degree": 1}, {"id": "validator_meshnet_validator_init_validatorprocess_stop", "label": ".stop()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".stop()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "code", "degree": 1}, {"id": "validator_meshnet_validator_init_validatorprocess_run_loop", "label": "._run_loop()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._run_loop()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "code", "degree": 2}, {"id": "validator_meshnet_validator_init_validatorprocess_run_reference", "label": "._run_reference()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._run_reference()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "code", "degree": 3}, {"id": "validator_meshnet_validator_init_validatorprocess_validate_event", "label": "._validate_event()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._validate_event()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "code", "degree": 14}, {"id": "validator_meshnet_validator_init_validatorprocess_event_with_on_demand_commitments", "label": "._event_with_on_demand_commitments()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "._event_with_on_demand_commitments()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "code", "degree": 7}, {"id": "validator_meshnet_validator_init_validatorprocess_fetch_hop_commitment", "label": "._fetch_hop_commitment()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._fetch_hop_commitment()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "code", "degree": 5}, {"id": "validator_meshnet_validator_init_validatorprocess_commitment_expired", "label": "._commitment_expired()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._commitment_expired()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "code", "degree": 4}, {"id": "validator_meshnet_validator_init_validatorprocess_run_teacher_forced_prefill", "label": "._run_teacher_forced_prefill()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._run_teacher_forced_prefill()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "code", "degree": 5}, {"id": "validator_meshnet_validator_init_validatorprocess_run_teacher_forced_prefill_hops", "label": "._run_teacher_forced_prefill_hops()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._run_teacher_forced_prefill_hops()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "code", "degree": 5}, {"id": "validator_meshnet_validator_init_validatorprocess_record_clean_audit", "label": "._record_clean_audit()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "._record_clean_audit()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "code", "degree": 5}, {"id": "validator_meshnet_validator_init_validatorprocess_slash_node", "label": "._slash_node()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._slash_node()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "code", "degree": 3}, {"id": "validator_meshnet_validator_init_route_wallets", "label": "_route_wallets()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_route_wallets()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "code", "degree": 6}, {"id": "validator_meshnet_validator_init_final_text_node", "label": "_final_text_node()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_final_text_node()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "code", "degree": 3}, {"id": "validator_meshnet_validator_init_auditresult", "label": "_AuditResult", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_AuditResult", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "code", "degree": 8}, {"id": "validator_meshnet_validator_init_auditresult_init", "label": ".__init__()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "code", "degree": 1}, {"id": "validator_meshnet_validator_init_hopcommitment", "label": "_HopCommitment", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "_HopCommitment", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "code", "degree": 10}, {"id": "validator_meshnet_validator_init_hopcommitment_init", "label": ".__init__()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "code", "degree": 2}, {"id": "validator_meshnet_validator_init_hop_commitments_from_event", "label": "_hop_commitments_from_event()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "_hop_commitments_from_event()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "code", "degree": 9}, {"id": "validator_meshnet_validator_init_first_divergent_hop", "label": "_first_divergent_hop()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "_first_divergent_hop()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "code", "degree": 7}, {"id": "validator_meshnet_validator_init_toploc_audit_from_event", "label": "_toploc_audit_from_event()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_toploc_audit_from_event()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "code", "degree": 8}, {"id": "validator_meshnet_validator_init_event_value", "label": "_event_value()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "_event_value()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "code", "degree": 11}, {"id": "validator_meshnet_validator_init_event_mapping", "label": "_event_mapping()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_event_mapping()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "code", "degree": 4}, {"id": "validator_meshnet_validator_init_mapping_value", "label": "_mapping_value()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_mapping_value()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "code", "degree": 5}, {"id": "validator_meshnet_validator_init_outputs_match", "label": "_outputs_match()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_outputs_match()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "code", "degree": 3}, {"id": "validator_meshnet_validator_init_parse_float", "label": "_parse_float()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_parse_float()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "code", "degree": 2}, {"id": "validator_meshnet_validator_init_post_json", "label": "_post_json()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_post_json()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "code", "degree": 5}, {"id": "validator_meshnet_validator_init_rationale_1", "label": "Optimistic fraud validator for completed inference requests.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Optimistic fraud validator for completed inference requests.", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "validator_meshnet_validator_init_rationale_25", "label": "Separate validator loop that samples completed requests and submits slashes.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Separate validator loop that samples completed requests and submits slashes.", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "validator_meshnet_validator_init_rationale_74", "label": "Run one validation cycle and return slash receipts submitted this cycle.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Run one validation cycle and return slash receipts submitted this cycle.", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "validator_meshnet_validator_init_rationale_97", "label": "ADR-0018 \u00a71/\u00a76-7: flat sample_rate stays the default; when an\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-0018 \u00a71/\u00a76-7: flat sample_rate stays the default; when an\u2026", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "validator_meshnet_validator_init_rationale_208", "label": "Fetch missing per-hop TOPLOC commitments only after audit sampling. Tracker\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Fetch missing per-hop TOPLOC commitments only after audit sampling. Tracker\u2026", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "validator_meshnet_validator_init_rationale_305", "label": "Teacher-force the claimed tokens once and collect reference activations at\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Teacher-force the claimed tokens once and collect reference activations at\u2026", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "validator_meshnet_validator_init_rationale_329", "label": "ADR-0018 \u00a76: reputation derives only from tracker-verified audit outcomes \u2014 a\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-0018 \u00a76: reputation derives only from tracker-verified audit outcomes \u2014 a\u2026", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "validator_meshnet_validator_init_rationale_376", "label": "Unique wallet addresses across a route, in hop order.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Unique wallet addresses across a route, in hop order.", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "validator_meshnet_validator_init_rationale_389", "label": "Text-only fallback blame: when the audit has no per-hop fingerprints to bisect\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Text-only fallback blame: when the audit has no per-hop fingerprints to bisect\u2026", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "validator_meshnet_validator_init_rationale_413", "label": "One hop's on-demand TOPLOC commitment plus the route node it blames.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "One hop's on-demand TOPLOC commitment plus the route node it blames.", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "validator_meshnet_validator_init_rationale_423", "label": "Per-hop bisection commitments (ADR-0018 \u00a73/\u00a74): each route node reports its own\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Per-hop bisection commitments (ADR-0018 \u00a73/\u00a74): each route node reports its own\u2026", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "validator_meshnet_validator_init_rationale_461", "label": "First hop whose committed output fingerprint diverges from the referee's\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "First hop whose committed output fingerprint diverges from the referee's\u2026", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "validator_meshnet_validator_audit", "label": "audit.py", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "audit.py", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/audit.py", "file_type": "code", "degree": 13}, {"id": "validator_meshnet_validator_audit_toplocauditconfig", "label": "ToplocAuditConfig", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ToplocAuditConfig", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/audit.py", "file_type": "code", "degree": 11}, {"id": "validator_meshnet_validator_audit_toplocproofclaim", "label": "ToplocProofClaim", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ToplocProofClaim", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/audit.py", "file_type": "code", "degree": 24}, {"id": "validator_meshnet_validator_audit_toplocproofclaim_from_mapping", "label": ".from_mapping()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".from_mapping()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/audit.py", "file_type": "code", "degree": 6}, {"id": "validator_meshnet_validator_audit_py_any", "label": "Any", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Any", "community": 1, "community_name": "Validator Proof Audits", "source_file": "", "file_type": "code", "degree": 9}, {"id": "validator_meshnet_validator_audit_toplocproofclaim_as_mapping", "label": ".as_mapping()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".as_mapping()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/audit.py", "file_type": "code", "degree": 2}, {"id": "validator_meshnet_validator_audit_build_activation_proofs", "label": "build_activation_proofs()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "build_activation_proofs()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/audit.py", "file_type": "code", "degree": 7}, {"id": "validator_meshnet_validator_audit_toplocverificationresult", "label": "ToplocVerificationResult", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ToplocVerificationResult", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/audit.py", "file_type": "code", "degree": 7}, {"id": "validator_meshnet_validator_audit_verify_activation_proofs", "label": "verify_activation_proofs()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "verify_activation_proofs()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/audit.py", "file_type": "code", "degree": 8}, {"id": "validator_meshnet_validator_audit_verify_activation_proofs_detailed", "label": "verify_activation_proofs_detailed()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "verify_activation_proofs_detailed()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/audit.py", "file_type": "code", "degree": 12}, {"id": "validator_meshnet_validator_audit_extract_divergence", "label": "_extract_divergence()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "_extract_divergence()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/audit.py", "file_type": "code", "degree": 5}, {"id": "validator_meshnet_validator_audit_chunk_field", "label": "_chunk_field()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_chunk_field()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/audit.py", "file_type": "code", "degree": 3}, {"id": "validator_meshnet_validator_audit_load_toploc", "label": "_load_toploc()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_load_toploc()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/audit.py", "file_type": "code", "degree": 4}, {"id": "validator_meshnet_validator_audit_call_toploc", "label": "_call_toploc()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_call_toploc()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/audit.py", "file_type": "code", "degree": 4}, {"id": "validator_meshnet_validator_audit_proof_encoding", "label": "_proof_encoding()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_proof_encoding()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/audit.py", "file_type": "code", "degree": 3}, {"id": "proofencoding", "label": "ProofEncoding", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ProofEncoding", "community": 1, "community_name": "Validator Proof Audits", "source_file": "", "file_type": "code", "degree": 1}, {"id": "validator_meshnet_validator_audit_rationale_1", "label": "TOPLOC activation proof helpers for validator-side audits.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "TOPLOC activation proof helpers for validator-side audits.", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/audit.py", "file_type": "rationale", "degree": 1}, {"id": "validator_meshnet_validator_audit_rationale_15", "label": "Canonical audit parameters for one model preset.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Canonical audit parameters for one model preset.", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/audit.py", "file_type": "rationale", "degree": 1}, {"id": "validator_meshnet_validator_audit_rationale_31", "label": "Prover-provided TOPLOC proof and the parameters it was built with.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Prover-provided TOPLOC proof and the parameters it was built with.", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/audit.py", "file_type": "rationale", "degree": 1}, {"id": "validator_meshnet_validator_audit_rationale_71", "label": "Build a TOPLOC proof claim from captured activation tensors.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Build a TOPLOC proof claim from captured activation tensors.", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/audit.py", "file_type": "rationale", "degree": 1}, {"id": "validator_meshnet_validator_audit_rationale_96", "label": "Verification outcome plus the raw TOPLOC divergence metric. The `toploc`\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Verification outcome plus the raw TOPLOC divergence metric. The `toploc`\u2026", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/audit.py", "file_type": "rationale", "degree": 1}, {"id": "validator_meshnet_validator_audit_rationale_123", "label": "Verify prover TOPLOC proofs against reference teacher-forced activations.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Verify prover TOPLOC proofs against reference teacher-forced activations.", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/audit.py", "file_type": "rationale", "degree": 1}, {"id": "validator_meshnet_validator_audit_rationale_136", "label": "Verify prover TOPLOC proofs and surface the raw divergence metric. Same\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Verify prover TOPLOC proofs and surface the raw divergence metric. Same\u2026", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/audit.py", "file_type": "rationale", "degree": 1}, {"id": "validator_meshnet_validator_audit_rationale_174", "label": "Aggregate per-chunk TOPLOC `VerificationResult`s, if present. `raw` is a plain\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Aggregate per-chunk TOPLOC `VerificationResult`s, if present. `raw` is a plain\u2026", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/audit.py", "file_type": "rationale", "degree": 1}, {"id": "validator_meshnet_validator_sampling", "label": "sampling.py", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "sampling.py", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/sampling.py", "file_type": "code", "degree": 5}, {"id": "validator_meshnet_validator_sampling_auditrateconfig", "label": "AuditRateConfig", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "AuditRateConfig", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/sampling.py", "file_type": "code", "degree": 8}, {"id": "validator_meshnet_validator_sampling_auditrateconfig_post_init", "label": ".__post_init__()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".__post_init__()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/sampling.py", "file_type": "code", "degree": 1}, {"id": "validator_meshnet_validator_sampling_adaptiveauditsampler", "label": "AdaptiveAuditSampler", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AdaptiveAuditSampler", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/sampling.py", "file_type": "code", "degree": 13}, {"id": "validator_meshnet_validator_sampling_adaptiveauditsampler_init", "label": ".__init__()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/sampling.py", "file_type": "code", "degree": 2}, {"id": "validator_meshnet_validator_sampling_adaptiveauditsampler_wallet_base_rate", "label": ".wallet_base_rate()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".wallet_base_rate()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/sampling.py", "file_type": "code", "degree": 3}, {"id": "validator_meshnet_validator_sampling_adaptiveauditsampler_sample_rate_for", "label": ".sample_rate_for()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".sample_rate_for()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/sampling.py", "file_type": "code", "degree": 4}, {"id": "validator_meshnet_validator_sampling_adaptiveauditsampler_should_audit", "label": ".should_audit()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".should_audit()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/sampling.py", "file_type": "code", "degree": 3}, {"id": "validator_meshnet_validator_sampling_adaptiveauditsampler_effective_rate", "label": "._effective_rate()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._effective_rate()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/sampling.py", "file_type": "code", "degree": 4}, {"id": "validator_meshnet_validator_sampling_adaptiveauditsampler_budget_scale", "label": "._budget_scale()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._budget_scale()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/sampling.py", "file_type": "code", "degree": 2}, {"id": "validator_meshnet_validator_sampling_rationale_1", "label": "Reputation-weighted, budget-balanced audit sampling (ADR-0018 \u00a71, \u00a76-7). The\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Reputation-weighted, budget-balanced audit sampling (ADR-0018 \u00a71, \u00a76-7). The\u2026", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/sampling.py", "file_type": "rationale", "degree": 1}, {"id": "validator_meshnet_validator_sampling_rationale_20", "label": "Tunable audit-rate policy. Defaults match ADR-0018 \u00a71/\u00a76.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Tunable audit-rate policy. Defaults match ADR-0018 \u00a71/\u00a76.", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/sampling.py", "file_type": "rationale", "degree": 1}, {"id": "validator_meshnet_validator_sampling_rationale_44", "label": "Per-wallet audit probability + fleet-wide budget balancer. ``wallet_base_rate``\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Per-wallet audit probability + fleet-wide budget balancer. ``wallet_base_rate``\u2026", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/sampling.py", "file_type": "rationale", "degree": 1}, {"id": "validator_meshnet_validator_sampling_rationale_79", "label": "Preview the effective audit probability without recording a decision.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Preview the effective audit probability without recording a decision.", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/sampling.py", "file_type": "rationale", "degree": 1}, {"id": "validator_meshnet_validator_tripwire", "label": "tripwire.py", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "tripwire.py", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/tripwire.py", "file_type": "code", "degree": 3}, {"id": "validator_meshnet_validator_tripwire_detect_output_tripwire", "label": "detect_output_tripwire()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "detect_output_tripwire()", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/tripwire.py", "file_type": "code", "degree": 4}, {"id": "validator_meshnet_validator_tripwire_rationale_1", "label": "Passive output-quality tripwires (ADR-0018 \u00a77). Cheap heuristics over every\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Passive output-quality tripwires (ADR-0018 \u00a77). Cheap heuristics over every\u2026", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/tripwire.py", "file_type": "rationale", "degree": 1}, {"id": "validator_meshnet_validator_tripwire_rationale_23", "label": "Flag empty output or a single word/token dominating the response.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Flag empty output or a single word/token dominating the response.", "community": 1, "community_name": "Validator Proof Audits", "source_file": "validator/meshnet_validator/tripwire.py", "file_type": "rationale", "degree": 1}, {"id": "pkg_meshnet_validator", "label": "meshnet-validator", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "meshnet-validator", "community": 122, "community_name": "Community 122", "source_file": "validator/pyproject.toml", "file_type": "code", "degree": 0}];
|
|
const RAW_EDGES = [{"from": "contracts_meshnet_contracts_init", "to": "contracts_meshnet_contracts_init_apikeybalance", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init", "to": "contracts_meshnet_contracts_init_computeattribution", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init", "to": "contracts_meshnet_contracts_init_localcontractstate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init", "to": "contracts_meshnet_contracts_init_localsolanacontracts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init", "to": "contracts_meshnet_contracts_init_notify_slash", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init", "to": "contracts_meshnet_contracts_init_paymentcontract", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init", "to": "contracts_meshnet_contracts_init_registry_wallet_with", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init", "to": "contracts_meshnet_contracts_init_registrycontract", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init", "to": "contracts_meshnet_contracts_init_registryeventlog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init", "to": "contracts_meshnet_contracts_init_registrywallet", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init", "to": "contracts_meshnet_contracts_init_settlementcontract", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init", "to": "contracts_meshnet_contracts_init_settlementresult", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init", "to": "contracts_meshnet_contracts_init_slashreceipt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init", "to": "contracts_meshnet_contracts_init_validationcontract", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init", "to": "contracts_meshnet_contracts_init_validationevent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_rationale_1", "to": "contracts_meshnet_contracts_init", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_rationale_33", "to": "contracts_meshnet_contracts_init_registrywallet", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registry_wallet_with", "to": "contracts_meshnet_contracts_init_registrywallet", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract_apply_inactivity_decay", "to": "contracts_meshnet_contracts_init_registrywallet", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract_get_wallet", "to": "contracts_meshnet_contracts_init_registrywallet", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract_list_wallets", "to": "contracts_meshnet_contracts_init_registrywallet", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract_record_audit", "to": "contracts_meshnet_contracts_init_registrywallet", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract_record_audit_outcome", "to": "contracts_meshnet_contracts_init_registrywallet", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract_record_completed_job", "to": "contracts_meshnet_contracts_init_registrywallet", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract_record_completed_jobs", "to": "contracts_meshnet_contracts_init_registrywallet", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract_set_reputation", "to": "contracts_meshnet_contracts_init_registrywallet", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registryeventlog_apply_locked", "to": "contracts_meshnet_contracts_init_registrywallet", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrywallet", "to": "contracts_meshnet_contracts_init_registrywallet_routing_multiplier", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_settlementcontract_settle_epoch", "to": "contracts_meshnet_contracts_init_registrywallet", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_rationale_45", "to": "contracts_meshnet_contracts_init_registrywallet_routing_multiplier", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_localsolanacontracts_init", "to": "contracts_meshnet_contracts_init_registryeventlog", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_rationale_50", "to": "contracts_meshnet_contracts_init_registryeventlog", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract_init", "to": "contracts_meshnet_contracts_init_registryeventlog", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registryeventlog", "to": "contracts_meshnet_contracts_init_registryeventlog_apply_events", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registryeventlog", "to": "contracts_meshnet_contracts_init_registryeventlog_apply_locked", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registryeventlog", "to": "contracts_meshnet_contracts_init_registryeventlog_events_since", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registryeventlog", "to": "contracts_meshnet_contracts_init_registryeventlog_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registryeventlog", "to": "contracts_meshnet_contracts_init_registryeventlog_init_db", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registryeventlog", "to": "contracts_meshnet_contracts_init_registryeventlog_load_from_db", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registryeventlog", "to": "contracts_meshnet_contracts_init_registryeventlog_record", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registryeventlog", "to": "contracts_meshnet_contracts_init_registryeventlog_save_to_db", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registryeventlog_init", "to": "contracts_meshnet_contracts_init_registryeventlog_init_db", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registryeventlog_init", "to": "contracts_meshnet_contracts_init_registryeventlog_load_from_db", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registryeventlog_apply_events", "to": "contracts_meshnet_contracts_init_registryeventlog_apply_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract_apply_inactivity_decay", "to": "contracts_meshnet_contracts_init_registryeventlog_record", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract_ban_wallet", "to": "contracts_meshnet_contracts_init_registryeventlog_record", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract_record_audit", "to": "contracts_meshnet_contracts_init_registryeventlog_record", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract_record_audit_outcome", "to": "contracts_meshnet_contracts_init_registryeventlog_record", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract_record_completed_jobs", "to": "contracts_meshnet_contracts_init_registryeventlog_record", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract_record_strike", "to": "contracts_meshnet_contracts_init_registryeventlog_record", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract_set_reputation", "to": "contracts_meshnet_contracts_init_registryeventlog_record", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract_submit_slash_proof", "to": "contracts_meshnet_contracts_init_registryeventlog_record", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract_submit_stake", "to": "contracts_meshnet_contracts_init_registryeventlog_record", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registryeventlog_record", "to": "contracts_meshnet_contracts_init_registryeventlog_apply_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registryeventlog_apply_locked", "to": "contracts_meshnet_contracts_init_registry_wallet_with", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registryeventlog_load_from_db", "to": "contracts_meshnet_contracts_init_registryeventlog_apply_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_paymentcontract_fund_api_key", "to": "contracts_meshnet_contracts_init_apikeybalance", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_paymentcontract_get_balance", "to": "contracts_meshnet_contracts_init_apikeybalance", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_rationale_206", "to": "contracts_meshnet_contracts_init_apikeybalance", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_settlementcontract_settle_epoch", "to": "contracts_meshnet_contracts_init_apikeybalance", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_computeattribution", "to": "contracts_meshnet_contracts_init_computeattribution_layer_count", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_computeattribution", "to": "contracts_meshnet_contracts_init_computeattribution_work_units", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_paymentcontract_list_attributions", "to": "contracts_meshnet_contracts_init_computeattribution", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_paymentcontract_record_attribution", "to": "contracts_meshnet_contracts_init_computeattribution", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_rationale_214", "to": "contracts_meshnet_contracts_init_computeattribution", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_settlementcontract_settle_epoch", "to": "contracts_meshnet_contracts_init_computeattribution", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_rationale_236", "to": "contracts_meshnet_contracts_init_validationevent", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_validationcontract_list_completed_inferences", "to": "contracts_meshnet_contracts_init_validationevent", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_validationcontract_record_completed_inference", "to": "contracts_meshnet_contracts_init_validationevent", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_notify_slash", "to": "contracts_meshnet_contracts_init_slashreceipt", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_rationale_249", "to": "contracts_meshnet_contracts_init_slashreceipt", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract_submit_slash_proof", "to": "contracts_meshnet_contracts_init_slashreceipt", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_rationale_264", "to": "contracts_meshnet_contracts_init_settlementresult", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_settlementcontract_settle_epoch", "to": "contracts_meshnet_contracts_init_settlementresult", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_localsolanacontracts_init", "to": "contracts_meshnet_contracts_init_localcontractstate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_paymentcontract_init", "to": "contracts_meshnet_contracts_init_localcontractstate", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract_init", "to": "contracts_meshnet_contracts_init_localcontractstate", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_settlementcontract_init", "to": "contracts_meshnet_contracts_init_localcontractstate", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_validationcontract_init", "to": "contracts_meshnet_contracts_init_localcontractstate", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_localsolanacontracts_init", "to": "contracts_meshnet_contracts_init_registrycontract", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_rationale_284", "to": "contracts_meshnet_contracts_init_registrycontract", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract", "to": "contracts_meshnet_contracts_init_registrycontract_apply_inactivity_decay", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract", "to": "contracts_meshnet_contracts_init_registrycontract_ban_wallet", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract", "to": "contracts_meshnet_contracts_init_registrycontract_get_wallet", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract", "to": "contracts_meshnet_contracts_init_registrycontract_has_minimum_stake", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract", "to": "contracts_meshnet_contracts_init_registrycontract_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract", "to": "contracts_meshnet_contracts_init_registrycontract_list_wallets", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract", "to": "contracts_meshnet_contracts_init_registrycontract_probationary_jobs_remaining", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract", "to": "contracts_meshnet_contracts_init_registrycontract_record_audit", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract", "to": "contracts_meshnet_contracts_init_registrycontract_record_audit_outcome", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract", "to": "contracts_meshnet_contracts_init_registrycontract_record_completed_job", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract", "to": "contracts_meshnet_contracts_init_registrycontract_record_completed_jobs", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract", "to": "contracts_meshnet_contracts_init_registrycontract_record_strike", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract", "to": "contracts_meshnet_contracts_init_registrycontract_routing_multiplier", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract", "to": "contracts_meshnet_contracts_init_registrycontract_set_reputation", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract", "to": "contracts_meshnet_contracts_init_registrycontract_submit_slash_proof", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract", "to": "contracts_meshnet_contracts_init_registrycontract_submit_stake", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_settlementcontract_init", "to": "contracts_meshnet_contracts_init_registrycontract", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract_apply_inactivity_decay", "to": "contracts_meshnet_contracts_init_registrycontract_get_wallet", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract_has_minimum_stake", "to": "contracts_meshnet_contracts_init_registrycontract_get_wallet", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract_probationary_jobs_remaining", "to": "contracts_meshnet_contracts_init_registrycontract_get_wallet", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract_record_audit", "to": "contracts_meshnet_contracts_init_registrycontract_get_wallet", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract_record_audit_outcome", "to": "contracts_meshnet_contracts_init_registrycontract_get_wallet", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract_record_completed_job", "to": "contracts_meshnet_contracts_init_registrycontract_get_wallet", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract_record_completed_jobs", "to": "contracts_meshnet_contracts_init_registrycontract_get_wallet", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract_routing_multiplier", "to": "contracts_meshnet_contracts_init_registrycontract_get_wallet", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract_set_reputation", "to": "contracts_meshnet_contracts_init_registrycontract_get_wallet", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract_submit_slash_proof", "to": "contracts_meshnet_contracts_init_registrycontract_get_wallet", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract_submit_slash_proof", "to": "contracts_meshnet_contracts_init_notify_slash", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_rationale_373", "to": "contracts_meshnet_contracts_init_registrycontract_list_wallets", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_registrycontract_record_completed_job", "to": "contracts_meshnet_contracts_init_registrycontract_record_completed_jobs", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_settlementcontract_record_completed_jobs", "to": "contracts_meshnet_contracts_init_registrycontract_record_completed_jobs", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_rationale_417", "to": "contracts_meshnet_contracts_init_registrycontract_record_audit_outcome", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_rationale_431", "to": "contracts_meshnet_contracts_init_registrycontract_routing_multiplier", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_rationale_442", "to": "contracts_meshnet_contracts_init_registrycontract_apply_inactivity_decay", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_localsolanacontracts_init", "to": "contracts_meshnet_contracts_init_validationcontract", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_rationale_464", "to": "contracts_meshnet_contracts_init_validationcontract", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_validationcontract", "to": "contracts_meshnet_contracts_init_validationcontract_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_validationcontract", "to": "contracts_meshnet_contracts_init_validationcontract_list_completed_inferences", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_validationcontract", "to": "contracts_meshnet_contracts_init_validationcontract_record_completed_inference", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_localsolanacontracts_init", "to": "contracts_meshnet_contracts_init_paymentcontract", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_paymentcontract", "to": "contracts_meshnet_contracts_init_paymentcontract_fund_api_key", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_paymentcontract", "to": "contracts_meshnet_contracts_init_paymentcontract_get_balance", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_paymentcontract", "to": "contracts_meshnet_contracts_init_paymentcontract_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_paymentcontract", "to": "contracts_meshnet_contracts_init_paymentcontract_list_attributions", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_paymentcontract", "to": "contracts_meshnet_contracts_init_paymentcontract_record_attribution", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_rationale_509", "to": "contracts_meshnet_contracts_init_paymentcontract", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_paymentcontract_fund_api_key", "to": "contracts_meshnet_contracts_init_paymentcontract_get_balance", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_localsolanacontracts_init", "to": "contracts_meshnet_contracts_init_settlementcontract", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_rationale_579", "to": "contracts_meshnet_contracts_init_settlementcontract", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_settlementcontract", "to": "contracts_meshnet_contracts_init_settlementcontract_deployment_plan", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_settlementcontract", "to": "contracts_meshnet_contracts_init_settlementcontract_get_token_balance", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_settlementcontract", "to": "contracts_meshnet_contracts_init_settlementcontract_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_settlementcontract", "to": "contracts_meshnet_contracts_init_settlementcontract_record_completed_jobs", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_settlementcontract", "to": "contracts_meshnet_contracts_init_settlementcontract_settle_epoch", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_settlementcontract_settle_epoch", "to": "contracts_meshnet_contracts_init_settlementcontract_record_completed_jobs", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_rationale_683", "to": "contracts_meshnet_contracts_init_settlementcontract_deployment_plan", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_localsolanacontracts", "to": "contracts_meshnet_contracts_init_localsolanacontracts_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_localsolanacontracts", "to": "contracts_meshnet_contracts_init_localsolanacontracts_save_to_db", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_init_rationale_691", "to": "contracts_meshnet_contracts_init_localsolanacontracts", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_cli_main", "to": "contracts_meshnet_contracts_init_localsolanacontracts", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "contracts_meshnet_contracts_solana_adapter", "to": "contracts_meshnet_contracts_solana_adapter_deposit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter", "to": "contracts_meshnet_contracts_solana_adapter_load_keypair", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter", "to": "contracts_meshnet_contracts_solana_adapter_rpcclient", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter", "to": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_rationale_1", "to": "contracts_meshnet_contracts_solana_adapter", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_rationale_48", "to": "contracts_meshnet_contracts_solana_adapter_deposit", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_list_new_deposits", "to": "contracts_meshnet_contracts_solana_adapter_deposit", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_parse_deposit", "to": "contracts_meshnet_contracts_solana_adapter_deposit", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_load_keypair", "to": "keypair", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_rationale_56", "to": "contracts_meshnet_contracts_solana_adapter_load_keypair", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_init", "to": "contracts_meshnet_contracts_solana_adapter_load_keypair", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_create_mock_usdt_mint", "to": "keypair", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_init", "to": "keypair", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_rationale_63", "to": "contracts_meshnet_contracts_solana_adapter_rpcclient", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_rpcclient", "to": "contracts_meshnet_contracts_solana_adapter_rpcclient_call", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_rpcclient", "to": "contracts_meshnet_contracts_solana_adapter_rpcclient_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_init", "to": "contracts_meshnet_contracts_solana_adapter_rpcclient", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_account_exists", "to": "contracts_meshnet_contracts_solana_adapter_rpcclient_call", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_create_mock_usdt_mint", "to": "contracts_meshnet_contracts_solana_adapter_rpcclient_call", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_get_sol_balance", "to": "contracts_meshnet_contracts_solana_adapter_rpcclient_call", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_list_new_deposits", "to": "contracts_meshnet_contracts_solana_adapter_rpcclient_call", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_parse_deposit", "to": "contracts_meshnet_contracts_solana_adapter_rpcclient_call", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_request_airdrop", "to": "contracts_meshnet_contracts_solana_adapter_rpcclient_call", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_send_instructions", "to": "contracts_meshnet_contracts_solana_adapter_rpcclient_call", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_rationale_92", "to": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury", "to": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_account_exists", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_create_mock_usdt_mint", "to": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury", "to": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_ensure_token_account", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury", "to": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_get_sol_balance", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury", "to": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury", "to": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_list_new_deposits", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury", "to": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_mint_mock_usdt", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury", "to": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_parse_deposit", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury", "to": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_request_airdrop", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury", "to": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_send_instructions", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury", "to": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_send_payouts", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury", "to": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_treasury_token_account", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury", "to": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_treasury_wallet", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_cli_main", "to": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "contracts_meshnet_contracts_solana_adapter_rationale_125", "to": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_list_new_deposits", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_list_new_deposits", "to": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_parse_deposit", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_rationale_187", "to": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_send_payouts", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_send_payouts", "to": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_account_exists", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_send_payouts", "to": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_send_instructions", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_account_exists", "to": "pubkey", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_ensure_token_account", "to": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_account_exists", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_create_mock_usdt_mint", "to": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_send_instructions", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_ensure_token_account", "to": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_send_instructions", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_mint_mock_usdt", "to": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_send_instructions", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_rationale_246", "to": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_create_mock_usdt_mint", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_mint_mock_usdt", "to": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_ensure_token_account", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_meshnet_contracts_solana_adapter_rationale_289", "to": "contracts_meshnet_contracts_solana_adapter_solanacustodialtreasury_mint_mock_usdt", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_init_rationale_1", "to": "gateway_meshnet_gateway_init", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_cli", "to": "gateway_meshnet_gateway_cli_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_cli", "to": "gateway_meshnet_gateway_server_gatewayserver", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_cli_rationale_1", "to": "gateway_meshnet_gateway_cli", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_cli_main", "to": "gateway_meshnet_gateway_server_gatewayserver", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_prefill_backpressure", "to": "gateway_meshnet_gateway_prefill_backpressure_boundedprefillsender", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_prefill_backpressure", "to": "gateway_meshnet_gateway_prefill_backpressure_positive_env", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_prefill_backpressure", "to": "gateway_meshnet_gateway_prefill_backpressure_prefilltransferlimits", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_prefill_backpressure_rationale_1", "to": "gateway_meshnet_gateway_prefill_backpressure", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_prefill_backpressure", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_prefill_backpressure_boundedprefillsender_init", "to": "gateway_meshnet_gateway_prefill_backpressure_prefilltransferlimits", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_prefill_backpressure_prefilltransferlimits", "to": "gateway_meshnet_gateway_prefill_backpressure_prefilltransferlimits_effective_in_flight", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_prefill_backpressure_prefilltransferlimits", "to": "gateway_meshnet_gateway_prefill_backpressure_prefilltransferlimits_from_env", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_prefill_backpressure_prefilltransferlimits", "to": "gateway_meshnet_gateway_prefill_backpressure_prefilltransferlimits_max_buffered_bytes", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_prefill_backpressure_rationale_28", "to": "gateway_meshnet_gateway_prefill_backpressure_prefilltransferlimits", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_prefill_backpressure_prefilltransferlimits", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_binaryactivation", "to": "gateway_meshnet_gateway_prefill_backpressure_prefilltransferlimits", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler", "to": "gateway_meshnet_gateway_prefill_backpressure_prefilltransferlimits", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "gateway_meshnet_gateway_server_gatewayhttpserver", "to": "gateway_meshnet_gateway_prefill_backpressure_prefilltransferlimits", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "gateway_meshnet_gateway_server_gatewayserver", "to": "gateway_meshnet_gateway_prefill_backpressure_prefilltransferlimits", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "gateway_meshnet_gateway_server_modelunavailable", "to": "gateway_meshnet_gateway_prefill_backpressure_prefilltransferlimits", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "gateway_meshnet_gateway_server_trackerunavailable", "to": "gateway_meshnet_gateway_prefill_backpressure_prefilltransferlimits", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "gateway_meshnet_gateway_prefill_backpressure_rationale_36", "to": "gateway_meshnet_gateway_prefill_backpressure_prefilltransferlimits_effective_in_flight", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_prefill_backpressure_rationale_41", "to": "gateway_meshnet_gateway_prefill_backpressure_prefilltransferlimits_max_buffered_bytes", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_prefill_backpressure_prefilltransferlimits_from_env", "to": "gateway_meshnet_gateway_prefill_backpressure_positive_env", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_chunk_token_count", "to": "gateway_meshnet_gateway_prefill_backpressure_prefilltransferlimits_from_env", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_run_binary_pipeline", "to": "gateway_meshnet_gateway_prefill_backpressure_prefilltransferlimits_from_env", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_prefill_backpressure_boundedprefillsender", "to": "gateway_meshnet_gateway_prefill_backpressure_boundedprefillsender_close", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_prefill_backpressure_boundedprefillsender", "to": "gateway_meshnet_gateway_prefill_backpressure_boundedprefillsender_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_prefill_backpressure_boundedprefillsender", "to": "gateway_meshnet_gateway_prefill_backpressure_boundedprefillsender_send", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_prefill_backpressure_rationale_63", "to": "gateway_meshnet_gateway_prefill_backpressure_boundedprefillsender", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_prefill_backpressure_boundedprefillsender", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_binaryactivation", "to": "gateway_meshnet_gateway_prefill_backpressure_boundedprefillsender", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler", "to": "gateway_meshnet_gateway_prefill_backpressure_boundedprefillsender", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "gateway_meshnet_gateway_server_gatewayhttpserver", "to": "gateway_meshnet_gateway_prefill_backpressure_boundedprefillsender", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "gateway_meshnet_gateway_server_gatewayserver", "to": "gateway_meshnet_gateway_prefill_backpressure_boundedprefillsender", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "gateway_meshnet_gateway_server_modelunavailable", "to": "gateway_meshnet_gateway_prefill_backpressure_boundedprefillsender", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "gateway_meshnet_gateway_server_run_binary_pipeline", "to": "gateway_meshnet_gateway_prefill_backpressure_boundedprefillsender", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_trackerunavailable", "to": "gateway_meshnet_gateway_prefill_backpressure_boundedprefillsender", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "gateway_meshnet_gateway_prefill_backpressure_boundedprefillsender_send", "to": "gateway_meshnet_gateway_prefill_backpressure_boundedprefillsender_close", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_prefill_backpressure_boundedprefillsender_send", "to": "gateway_meshnet_gateway_prefill_backpressure_py_event", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_prefill_backpressure_boundedprefillsender_send", "to": "r", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_prefill_backpressure_boundedprefillsender_send", "to": "t", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_prefill_backpressure_rationale_81", "to": "gateway_meshnet_gateway_prefill_backpressure_boundedprefillsender_send", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_prefill_backpressure_rationale_115", "to": "gateway_meshnet_gateway_prefill_backpressure_boundedprefillsender_close", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_server_api_key_from_authorization", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_server_banned_route_wallet", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_server_binaryactivation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_server_chunk_token_count", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_server_completion_response", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_server_compress_body", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_server_decompress_body", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_server_estimate_token_count", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_server_gatewayhandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_server_gatewayhttpserver", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_server_gatewayserver", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_server_get_head_workers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_server_get_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_server_lamports_to_sol", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_server_last_message_content", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_server_majority_response", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_server_make_stub_binary_activation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_server_modelunavailable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_server_parse_shape", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_server_payment_address_for_api_key", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_server_post_binary_forward", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_server_post_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_server_preferred_binary_encoding", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_server_prompt_token_count", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_server_reassemble_binary_responses", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_server_run_binary_pipeline", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_server_safe_error_body", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_server_stub_response_prefix", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_server_trackerunavailable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_server_valid_route_nodes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_server_validate_activation_body", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server", "to": "gateway_meshnet_gateway_server_validate_route_payload", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_rationale_1", "to": "gateway_meshnet_gateway_server", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayserver_last_binary_chunk_responses", "to": "gateway_meshnet_gateway_server_binaryactivation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_post_binary_forward", "to": "gateway_meshnet_gateway_server_binaryactivation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_reassemble_binary_responses", "to": "gateway_meshnet_gateway_server_binaryactivation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_run_binary_pipeline", "to": "gateway_meshnet_gateway_server_binaryactivation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_stub_response_prefix", "to": "gateway_meshnet_gateway_server_binaryactivation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhttpserver", "to": "gateway_meshnet_gateway_server_gatewayhttpserver_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayserver_start", "to": "gateway_meshnet_gateway_server_gatewayhttpserver", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_get_head_workers", "to": "gateway_meshnet_gateway_server_gatewayhttpserver", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhttpserver_init", "to": "gateway_meshnet_gateway_server_gatewayserver_init", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhttpserver_init", "to": "gateway_meshnet_gateway_server_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_banned_route_wallet", "to": "gateway_meshnet_gateway_server_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayserver_init", "to": "gateway_meshnet_gateway_server_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler", "to": "gateway_meshnet_gateway_server_gatewayhandler_build_completion", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler", "to": "gateway_meshnet_gateway_server_gatewayhandler_do_get", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler", "to": "gateway_meshnet_gateway_server_gatewayhandler_do_post", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler", "to": "gateway_meshnet_gateway_server_gatewayhandler_handle_available_models", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler", "to": "gateway_meshnet_gateway_server_gatewayhandler_handle_chat_completions", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler", "to": "gateway_meshnet_gateway_server_gatewayhandler_handle_estimate_cost", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler", "to": "gateway_meshnet_gateway_server_gatewayhandler_handle_health", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler", "to": "gateway_meshnet_gateway_server_gatewayhandler_handle_meshnet_request", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler", "to": "gateway_meshnet_gateway_server_gatewayhandler_handle_models", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler", "to": "gateway_meshnet_gateway_server_gatewayhandler_handle_wallet_balance", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler", "to": "gateway_meshnet_gateway_server_gatewayhandler_handle_wallet_top_up", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler", "to": "gateway_meshnet_gateway_server_gatewayhandler_log_message", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler", "to": "gateway_meshnet_gateway_server_gatewayhandler_proxy_to_head_worker", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler", "to": "gateway_meshnet_gateway_server_gatewayhandler_read_json_body", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler", "to": "gateway_meshnet_gateway_server_gatewayhandler_record_inference", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler", "to": "gateway_meshnet_gateway_server_gatewayhandler_resolve_route", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler", "to": "gateway_meshnet_gateway_server_gatewayhandler_resolve_routes", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler", "to": "gateway_meshnet_gateway_server_gatewayhandler_send_json", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler", "to": "gateway_meshnet_gateway_server_gatewayhandler_send_json_error", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler", "to": "gateway_meshnet_gateway_server_gatewayhandler_send_openai_error", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler", "to": "gateway_meshnet_gateway_server_gatewayhandler_send_sse_response", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_do_get", "to": "gateway_meshnet_gateway_server_gatewayhandler_handle_available_models", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_do_get", "to": "gateway_meshnet_gateway_server_gatewayhandler_handle_estimate_cost", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_do_get", "to": "gateway_meshnet_gateway_server_gatewayhandler_handle_health", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_do_get", "to": "gateway_meshnet_gateway_server_gatewayhandler_handle_models", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_do_get", "to": "gateway_meshnet_gateway_server_gatewayhandler_handle_wallet_balance", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_do_post", "to": "gateway_meshnet_gateway_server_gatewayhandler_handle_chat_completions", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_do_post", "to": "gateway_meshnet_gateway_server_gatewayhandler_handle_meshnet_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_do_post", "to": "gateway_meshnet_gateway_server_gatewayhandler_handle_wallet_top_up", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_available_models", "to": "gateway_meshnet_gateway_server_gatewayhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_chat_completions", "to": "gateway_meshnet_gateway_server_gatewayhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_estimate_cost", "to": "gateway_meshnet_gateway_server_gatewayhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_health", "to": "gateway_meshnet_gateway_server_gatewayhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_meshnet_request", "to": "gateway_meshnet_gateway_server_gatewayhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_models", "to": "gateway_meshnet_gateway_server_gatewayhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_wallet_balance", "to": "gateway_meshnet_gateway_server_gatewayhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_wallet_top_up", "to": "gateway_meshnet_gateway_server_gatewayhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_send_json_error", "to": "gateway_meshnet_gateway_server_gatewayhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_send_openai_error", "to": "gateway_meshnet_gateway_server_gatewayhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_available_models", "to": "gateway_meshnet_gateway_server_gatewayhandler_send_json_error", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_chat_completions", "to": "gateway_meshnet_gateway_server_gatewayhandler_send_json_error", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_estimate_cost", "to": "gateway_meshnet_gateway_server_gatewayhandler_send_json_error", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_meshnet_request", "to": "gateway_meshnet_gateway_server_gatewayhandler_send_json_error", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_models", "to": "gateway_meshnet_gateway_server_gatewayhandler_send_json_error", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_wallet_balance", "to": "gateway_meshnet_gateway_server_gatewayhandler_send_json_error", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_wallet_top_up", "to": "gateway_meshnet_gateway_server_gatewayhandler_send_json_error", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_proxy_to_head_worker", "to": "gateway_meshnet_gateway_server_gatewayhandler_send_json_error", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_read_json_body", "to": "gateway_meshnet_gateway_server_gatewayhandler_send_json_error", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_chat_completions", "to": "gateway_meshnet_gateway_server_gatewayhandler_send_openai_error", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_meshnet_request", "to": "gateway_meshnet_gateway_server_gatewayhandler_send_openai_error", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_meshnet_request", "to": "gateway_meshnet_gateway_server_gatewayhandler_read_json_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_wallet_top_up", "to": "gateway_meshnet_gateway_server_gatewayhandler_read_json_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_models", "to": "gateway_meshnet_gateway_server_get_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_available_models", "to": "gateway_meshnet_gateway_server_get_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_wallet_balance", "to": "gateway_meshnet_gateway_server_api_key_from_authorization", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_wallet_balance", "to": "gateway_meshnet_gateway_server_lamports_to_sol", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_wallet_top_up", "to": "gateway_meshnet_gateway_server_api_key_from_authorization", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_wallet_top_up", "to": "gateway_meshnet_gateway_server_payment_address_for_api_key", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_estimate_cost", "to": "gateway_meshnet_gateway_server_lamports_to_sol", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_estimate_cost", "to": "gateway_meshnet_gateway_server_py_parseresult", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_chat_completions", "to": "gateway_meshnet_gateway_server_gatewayhandler_build_completion", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_chat_completions", "to": "gateway_meshnet_gateway_server_gatewayhandler_proxy_to_head_worker", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_chat_completions", "to": "gateway_meshnet_gateway_server_gatewayhandler_send_sse_response", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_chat_completions", "to": "gateway_meshnet_gateway_server_get_head_workers", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_rationale_290", "to": "gateway_meshnet_gateway_server_gatewayhandler_proxy_to_head_worker", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_meshnet_request", "to": "gateway_meshnet_gateway_server_gatewayhandler_build_completion", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_meshnet_request", "to": "gateway_meshnet_gateway_server_gatewayhandler_resolve_routes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_handle_meshnet_request", "to": "gateway_meshnet_gateway_server_majority_response", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_build_completion", "to": "gateway_meshnet_gateway_server_completion_response", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_build_completion", "to": "gateway_meshnet_gateway_server_gatewayhandler_record_inference", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_build_completion", "to": "gateway_meshnet_gateway_server_gatewayhandler_resolve_route", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_build_completion", "to": "gateway_meshnet_gateway_server_last_message_content", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_build_completion", "to": "gateway_meshnet_gateway_server_reassemble_binary_responses", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_build_completion", "to": "gateway_meshnet_gateway_server_run_binary_pipeline", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_build_completion", "to": "gateway_meshnet_gateway_server_stub_response_prefix", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_resolve_route", "to": "gateway_meshnet_gateway_server_banned_route_wallet", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_resolve_route", "to": "gateway_meshnet_gateway_server_get_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_resolve_route", "to": "gateway_meshnet_gateway_server_modelunavailable", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_resolve_route", "to": "gateway_meshnet_gateway_server_safe_error_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_resolve_route", "to": "gateway_meshnet_gateway_server_trackerunavailable", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_resolve_route", "to": "gateway_meshnet_gateway_server_validate_route_payload", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_resolve_routes", "to": "gateway_meshnet_gateway_server_gatewayhandler_resolve_route", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_resolve_routes", "to": "gateway_meshnet_gateway_server_banned_route_wallet", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_resolve_routes", "to": "gateway_meshnet_gateway_server_get_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_resolve_routes", "to": "gateway_meshnet_gateway_server_modelunavailable", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_resolve_routes", "to": "gateway_meshnet_gateway_server_safe_error_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_resolve_routes", "to": "gateway_meshnet_gateway_server_trackerunavailable", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_resolve_routes", "to": "gateway_meshnet_gateway_server_validate_route_payload", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_record_inference", "to": "gateway_meshnet_gateway_server_api_key_from_authorization", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayhandler_record_inference", "to": "gateway_meshnet_gateway_server_estimate_token_count", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_safe_error_body", "to": "gateway_meshnet_gateway_server_py_httperror", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_validate_route_payload", "to": "gateway_meshnet_gateway_server_valid_route_nodes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_rationale_574", "to": "gateway_meshnet_gateway_server_estimate_token_count", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_modelunavailable", "to": "gateway_meshnet_gateway_server_modelunavailable_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_modelunavailable", "to": "gateway_meshnet_gateway_server_py_exception", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_trackerunavailable", "to": "gateway_meshnet_gateway_server_py_exception", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_modelunavailable_init", "to": "gateway_meshnet_gateway_server_gatewayserver_init", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_run_binary_pipeline", "to": "gateway_meshnet_gateway_server_prompt_token_count", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_validate_activation_body", "to": "gateway_meshnet_gateway_server_make_stub_binary_activation", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_post_binary_forward", "to": "gateway_meshnet_gateway_server_compress_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_post_binary_forward", "to": "gateway_meshnet_gateway_server_decompress_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_post_binary_forward", "to": "gateway_meshnet_gateway_server_parse_shape", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_post_binary_forward", "to": "gateway_meshnet_gateway_server_validate_activation_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_rationale_779", "to": "gateway_meshnet_gateway_server_reassemble_binary_responses", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_get_head_workers", "to": "gateway_meshnet_gateway_server_get_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_rationale_848", "to": "gateway_meshnet_gateway_server_get_head_workers", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayserver", "to": "gateway_meshnet_gateway_server_gatewayserver_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayserver", "to": "gateway_meshnet_gateway_server_gatewayserver_last_binary_chunk_responses", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayserver", "to": "gateway_meshnet_gateway_server_gatewayserver_start", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_gatewayserver", "to": "gateway_meshnet_gateway_server_gatewayserver_stop", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_rationale_859", "to": "gateway_meshnet_gateway_server_gatewayserver", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gateway_meshnet_gateway_server_rationale_908", "to": "gateway_meshnet_gateway_server_gatewayserver_last_binary_chunk_responses", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_init_rationale_1", "to": "node_meshnet_node_init", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_activation_compression", "to": "node_meshnet_node_activation_compression_compress_activation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_activation_compression", "to": "node_meshnet_node_activation_compression_compressionpolicies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_activation_compression", "to": "node_meshnet_node_activation_compression_compressionpolicy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_activation_compression", "to": "node_meshnet_node_activation_compression_compressionresult", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_activation_compression", "to": "node_meshnet_node_activation_compression_decompress_activation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_activation_compression", "to": "node_meshnet_node_activation_compression_env_bool", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_activation_compression", "to": "node_meshnet_node_activation_compression_env_float", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_activation_compression", "to": "node_meshnet_node_activation_compression_env_int", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_activation_compression", "to": "node_meshnet_node_activation_compression_raw", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_activation_compression_rationale_1", "to": "node_meshnet_node_activation_compression", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec", "to": "node_meshnet_node_activation_compression", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server", "to": "node_meshnet_node_activation_compression", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_activation_compression", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_activation_compression_compress_activation", "to": "node_meshnet_node_activation_compression_compressionpolicy", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_activation_compression_compressionpolicies_for_condition", "to": "node_meshnet_node_activation_compression_compressionpolicy", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_activation_compression_compressionpolicies_init", "to": "node_meshnet_node_activation_compression_compressionpolicy", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_activation_compression_rationale_17", "to": "node_meshnet_node_activation_compression_compressionpolicy", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec", "to": "node_meshnet_node_activation_compression_compressionpolicy", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_encode_tensor", "to": "node_meshnet_node_activation_compression_compressionpolicy", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_activation_compression_compressionpolicy", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_directhopclient", "to": "node_meshnet_node_activation_compression_compressionpolicy", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_directrequestuncertainerror", "to": "node_meshnet_node_activation_compression_compressionpolicy", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_maybe_compress_activation", "to": "node_meshnet_node_activation_compression_compressionpolicy", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_pipelinecachemiss", "to": "node_meshnet_node_activation_compression_compressionpolicy", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_relayhopclient", "to": "node_meshnet_node_activation_compression_compressionpolicy", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_relayrequestuncertainerror", "to": "node_meshnet_node_activation_compression_compressionpolicy", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_torchhandler", "to": "node_meshnet_node_activation_compression_compressionpolicy", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_torchhttpserver", "to": "node_meshnet_node_activation_compression_compressionpolicy", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver", "to": "node_meshnet_node_activation_compression_compressionpolicy", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_activation_compression_compress_activation", "to": "node_meshnet_node_activation_compression_compressionresult", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_activation_compression_compressionresult", "to": "node_meshnet_node_activation_compression_compressionresult_compressed", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_activation_compression_decompress_activation", "to": "node_meshnet_node_activation_compression_compressionresult", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_activation_compression_raw", "to": "node_meshnet_node_activation_compression_compressionresult", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_activation_compression_compressionpolicies", "to": "node_meshnet_node_activation_compression_compressionpolicies_for_condition", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_activation_compression_compressionpolicies", "to": "node_meshnet_node_activation_compression_compressionpolicies_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_activation_compression_rationale_53", "to": "node_meshnet_node_activation_compression_compressionpolicies", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server", "to": "node_meshnet_node_activation_compression_compressionpolicies", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubhandler", "to": "node_meshnet_node_activation_compression_compressionpolicies", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_server_stubhttpserver", "to": "node_meshnet_node_activation_compression_compressionpolicies", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_server_stubnodeserver", "to": "node_meshnet_node_activation_compression_compressionpolicies", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_activation_compression_compressionpolicies", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_directhopclient", "to": "node_meshnet_node_activation_compression_compressionpolicies", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_directrequestuncertainerror", "to": "node_meshnet_node_activation_compression_compressionpolicies", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_pipelinecachemiss", "to": "node_meshnet_node_activation_compression_compressionpolicies", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_relayhopclient", "to": "node_meshnet_node_activation_compression_compressionpolicies", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_relayrequestuncertainerror", "to": "node_meshnet_node_activation_compression_compressionpolicies", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_torchhandler", "to": "node_meshnet_node_activation_compression_compressionpolicies", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_torchhttpserver", "to": "node_meshnet_node_activation_compression_compressionpolicies", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver", "to": "node_meshnet_node_activation_compression_compressionpolicies", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_activation_compression_compressionpolicies_for_condition", "to": "node_meshnet_node_activation_compression_env_bool", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_activation_compression_compressionpolicies_for_condition", "to": "node_meshnet_node_activation_compression_env_float", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_activation_compression_compressionpolicies_for_condition", "to": "node_meshnet_node_activation_compression_env_int", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_activation_compression_compress_activation", "to": "node_meshnet_node_activation_compression_raw", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_activation_compression_rationale_81", "to": "node_meshnet_node_activation_compression_compress_activation", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec", "to": "node_meshnet_node_activation_compression_compress_activation", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_encode_tensor", "to": "node_meshnet_node_activation_compression_compress_activation", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server", "to": "node_meshnet_node_activation_compression_compress_activation", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubhandler_handle_forward", "to": "node_meshnet_node_activation_compression_compress_activation", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_activation_compression_compress_activation", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_maybe_compress_activation", "to": "node_meshnet_node_activation_compression_compress_activation", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_handle_binary_forward", "to": "node_meshnet_node_activation_compression_compress_activation", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_run_downstream_pipeline", "to": "node_meshnet_node_activation_compression_compress_activation", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_activation_compression_rationale_108", "to": "node_meshnet_node_activation_compression_decompress_activation", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec", "to": "node_meshnet_node_activation_compression_decompress_activation", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_decode_tensor", "to": "node_meshnet_node_activation_compression_decompress_activation", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server", "to": "node_meshnet_node_activation_compression_decompress_activation", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_decompress_body", "to": "node_meshnet_node_activation_compression_decompress_activation", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_activation_compression_decompress_activation", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_handle_binary_forward", "to": "node_meshnet_node_activation_compression_decompress_activation", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_run_downstream_pipeline", "to": "node_meshnet_node_activation_compression_decompress_activation", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission", "to": "node_meshnet_node_admission_admissionrequirement", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission", "to": "node_meshnet_node_admission_admit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission", "to": "node_meshnet_node_admission_capabilityadmissionerror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission", "to": "node_meshnet_node_admission_capabilitycontext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission", "to": "node_meshnet_node_admission_diagnostics_suffix", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission", "to": "node_meshnet_node_admission_mismatch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission", "to": "node_meshnet_node_admission_probe_capability", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission", "to": "node_meshnet_node_capability", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission", "to": "node_meshnet_node_capability_capabilityreport", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission", "to": "node_meshnet_node_doctor", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission", "to": "node_meshnet_node_doctor_doctorselection", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission", "to": "node_meshnet_node_doctor_validate_loaded_backend", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission", "to": "node_meshnet_node_recipe_manifest", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission", "to": "node_meshnet_node_recipe_manifest_recipe", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission", "to": "node_meshnet_node_recipe_manifest_recipemanifest", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission_rationale_1", "to": "node_meshnet_node_admission", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_admission", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_testing", "to": "node_meshnet_node_admission", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission_admit", "to": "node_meshnet_node_admission_capabilityadmissionerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission_capabilityadmissionerror", "to": "node_meshnet_node_admission_capabilityadmissionerror_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission_capabilityadmissionerror", "to": "node_meshnet_node_admission_py_runtimeerror", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission_capabilityadmissionerror", "to": "node_meshnet_node_capability_capabilityreport", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_admission_capabilityadmissionerror", "to": "node_meshnet_node_doctor_doctorselection", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_admission_capabilityadmissionerror", "to": "node_meshnet_node_recipe_manifest_recipe", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_admission_capabilityadmissionerror", "to": "node_meshnet_node_recipe_manifest_recipemanifest", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_admission_mismatch", "to": "node_meshnet_node_admission_capabilityadmissionerror", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission_rationale_45", "to": "node_meshnet_node_admission_capabilityadmissionerror", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission_admissionrequirement_for_context", "to": "node_meshnet_node_admission_capabilitycontext", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission_capabilitycontext", "to": "node_meshnet_node_capability_capabilityreport", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_admission_capabilitycontext", "to": "node_meshnet_node_doctor_doctorselection", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_admission_capabilitycontext", "to": "node_meshnet_node_recipe_manifest_recipe", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_admission_capabilitycontext", "to": "node_meshnet_node_recipe_manifest_recipemanifest", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_admission_probe_capability", "to": "node_meshnet_node_admission_capabilitycontext", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission_rationale_54", "to": "node_meshnet_node_admission_capabilitycontext", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_admission_capabilitycontext", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_admit_capability", "to": "node_meshnet_node_admission_capabilitycontext", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_capability_refresher", "to": "node_meshnet_node_admission_capabilitycontext", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_testing", "to": "node_meshnet_node_admission_capabilitycontext", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_testing_assume_capability", "to": "node_meshnet_node_admission_capabilitycontext", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_testing_capability_report_for", "to": "node_meshnet_node_admission_capabilitycontext", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission_admissionrequirement_for_context", "to": "node_meshnet_node_admission_admissionrequirement", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission_admissionrequirement", "to": "node_meshnet_node_admission_admissionrequirement_shard_label", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission_admissionrequirement", "to": "node_meshnet_node_capability_capabilityreport", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_admission_admissionrequirement", "to": "node_meshnet_node_doctor_doctorselection", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_admission_admissionrequirement", "to": "node_meshnet_node_recipe_manifest_recipe", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_admission_admissionrequirement", "to": "node_meshnet_node_recipe_manifest_recipemanifest", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_admission_admit", "to": "node_meshnet_node_admission_admissionrequirement", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission_mismatch", "to": "node_meshnet_node_admission_admissionrequirement", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission_rationale_71", "to": "node_meshnet_node_admission_admissionrequirement", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_admission_admissionrequirement", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_admit_capability", "to": "node_meshnet_node_admission_admissionrequirement_for_context", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission_admit", "to": "node_meshnet_node_admission_diagnostics_suffix", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission_admit", "to": "node_meshnet_node_admission_mismatch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission_admit", "to": "node_meshnet_node_capability_capabilityreport", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission_rationale_111", "to": "node_meshnet_node_admission_admit", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_admission_admit", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_admit_capability", "to": "node_meshnet_node_admission_admit", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission_diagnostics_suffix", "to": "node_meshnet_node_capability_capabilityreport", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission_probe_capability", "to": "node_meshnet_node_capability_capabilityreport", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission_probe_capability", "to": "node_meshnet_node_doctor_validate_loaded_backend", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_admission_rationale_217", "to": "node_meshnet_node_admission_probe_capability", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_admission_probe_capability", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary", "to": "node_meshnet_node_architecture_boundary_adapter_for", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary", "to": "node_meshnet_node_architecture_boundary_architecture", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary", "to": "node_meshnet_node_architecture_boundary_architectureboundaryadapter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary", "to": "node_meshnet_node_architecture_boundary_boundarystage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary", "to": "node_meshnet_node_architecture_boundary_protocolidentity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary", "to": "node_meshnet_node_architecture_boundary_py_enum", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary", "to": "node_meshnet_node_architecture_boundary_samplingparameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary", "to": "node_meshnet_node_architecture_boundary_tailoutput", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary", "to": "node_meshnet_node_architecture_boundary_typedtailresult", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary", "to": "node_meshnet_node_native_protocol_codec_decode_bundle", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary", "to": "node_meshnet_node_native_protocol_codec_encode_bundle", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary", "to": "node_meshnet_node_native_protocol_codec_encode_tensor", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary", "to": "node_meshnet_node_native_protocol_codec_protocolerror", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary", "to": "node_meshnet_node_native_protocol_codec_validate_tail_result", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary_rationale_1", "to": "node_meshnet_node_architecture_boundary", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary_adapter_for", "to": "node_meshnet_node_architecture_boundary_architecture", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary_architecture", "to": "node_meshnet_node_architecture_boundary_py_enum", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary_architecture", "to": "node_meshnet_node_architecture_boundary_py_str", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary_boundarystage", "to": "node_meshnet_node_architecture_boundary_py_str", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary_boundarystage", "to": "node_meshnet_node_architecture_boundary_py_enum", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary_architectureboundaryadapter_input_for", "to": "node_meshnet_node_architecture_boundary_boundarystage", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary_architectureboundaryadapter_tail_result", "to": "node_meshnet_node_architecture_boundary_protocolidentity", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary_architectureboundaryadapter_tail_result", "to": "node_meshnet_node_architecture_boundary_samplingparameters", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary_architectureboundaryadapter_tail_result", "to": "node_meshnet_node_architecture_boundary_tailoutput", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary_tailoutput", "to": "node_meshnet_node_architecture_boundary_tailoutput_sampled_token", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary_tailoutput_sampled_token", "to": "node_meshnet_node_native_protocol_codec_protocolerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary_architectureboundaryadapter_tail_result", "to": "node_meshnet_node_architecture_boundary_typedtailresult", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary_typedtailresult", "to": "node_meshnet_node_architecture_boundary_typedtailresult_sampled_token_id", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary_adapter_for", "to": "node_meshnet_node_architecture_boundary_architectureboundaryadapter", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary_architectureboundaryadapter", "to": "node_meshnet_node_architecture_boundary_architectureboundaryadapter_bundle_from_named_payloads", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary_architectureboundaryadapter", "to": "node_meshnet_node_architecture_boundary_architectureboundaryadapter_bundle_from_token_ids", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary_architectureboundaryadapter", "to": "node_meshnet_node_architecture_boundary_architectureboundaryadapter_input_for", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary_architectureboundaryadapter", "to": "node_meshnet_node_architecture_boundary_architectureboundaryadapter_protocol_architecture", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary_architectureboundaryadapter", "to": "node_meshnet_node_architecture_boundary_architectureboundaryadapter_tail_result", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary_architectureboundaryadapter_bundle_from_token_ids", "to": "node_meshnet_node_architecture_boundary_architectureboundaryadapter_bundle_from_named_payloads", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary_architectureboundaryadapter_bundle_from_token_ids", "to": "node_meshnet_node_native_protocol_codec_protocolerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary_rationale_97", "to": "node_meshnet_node_architecture_boundary_architectureboundaryadapter_bundle_from_token_ids", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary_architectureboundaryadapter_bundle_from_named_payloads", "to": "node_meshnet_node_native_protocol_codec_encode_bundle", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary_architectureboundaryadapter_bundle_from_named_payloads", "to": "node_meshnet_node_native_protocol_codec_encode_tensor", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary_architectureboundaryadapter_bundle_from_named_payloads", "to": "node_meshnet_node_native_protocol_codec_protocolerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary_architectureboundaryadapter_input_for", "to": "node_meshnet_node_native_protocol_codec_decode_bundle", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary_architectureboundaryadapter_input_for", "to": "node_meshnet_node_native_protocol_codec_protocolerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary_rationale_128", "to": "node_meshnet_node_architecture_boundary_architectureboundaryadapter_input_for", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary_architectureboundaryadapter_tail_result", "to": "node_meshnet_node_native_protocol_codec_protocolerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary_architectureboundaryadapter_tail_result", "to": "node_meshnet_node_native_protocol_codec_validate_tail_result", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_architecture_boundary_adapter_for", "to": "node_meshnet_node_native_protocol_codec_protocolerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability", "to": "node_meshnet_node_capability_as_mapping", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability", "to": "node_meshnet_node_capability_backendidentity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability", "to": "node_meshnet_node_capability_build_capability_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability", "to": "node_meshnet_node_capability_capabilityreport", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability", "to": "node_meshnet_node_capability_capabilityreporterror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability", "to": "node_meshnet_node_capability_config_fingerprint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability", "to": "node_meshnet_node_capability_modelidentity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability", "to": "node_meshnet_node_capability_optional_text", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability", "to": "node_meshnet_node_capability_recipeidentity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability", "to": "node_meshnet_node_capability_require_int", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability", "to": "node_meshnet_node_capability_require_text", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability", "to": "node_meshnet_node_capability_sanitize_diagnostic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability", "to": "node_meshnet_node_capability_sanitize_diagnostics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability", "to": "node_meshnet_node_capability_secret_env_values", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability", "to": "node_meshnet_node_capability_sha256", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability", "to": "node_meshnet_node_capability_shardrange", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability", "to": "node_meshnet_node_runtime_recipe", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability", "to": "node_meshnet_node_runtime_recipe_compatibilityfingerprint", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability", "to": "node_meshnet_node_runtime_recipe_shardidentity", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_rationale_1", "to": "node_meshnet_node_capability", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_capability", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_capability", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_testing", "to": "node_meshnet_node_capability", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_as_mapping", "to": "node_meshnet_node_capability_capabilityreporterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_backendidentity_from_dict", "to": "node_meshnet_node_capability_capabilityreporterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_backendidentity_post_init", "to": "node_meshnet_node_capability_capabilityreporterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_capabilityreport_from_dict", "to": "node_meshnet_node_capability_capabilityreporterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_capabilityreport_from_json", "to": "node_meshnet_node_capability_capabilityreporterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_capabilityreport_post_init", "to": "node_meshnet_node_capability_capabilityreporterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_capabilityreporterror", "to": "node_meshnet_node_capability_py_valueerror", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_capabilityreporterror", "to": "node_meshnet_node_runtime_recipe_compatibilityfingerprint", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_capability_capabilityreporterror", "to": "node_meshnet_node_runtime_recipe_shardidentity", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_capability_config_fingerprint", "to": "node_meshnet_node_capability_capabilityreporterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_rationale_64", "to": "node_meshnet_node_capability_capabilityreporterror", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_require_int", "to": "node_meshnet_node_capability_capabilityreporterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_require_text", "to": "node_meshnet_node_capability_capabilityreporterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_sanitize_diagnostics", "to": "node_meshnet_node_capability_capabilityreporterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_shardrange_post_init", "to": "node_meshnet_node_capability_capabilityreporterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_sanitize_diagnostic", "to": "node_meshnet_node_capability_secret_env_values", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_rationale_88", "to": "node_meshnet_node_capability_sanitize_diagnostic", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_sanitize_diagnostics", "to": "node_meshnet_node_capability_sanitize_diagnostic", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_build_capability_report", "to": "node_meshnet_node_capability_sanitize_diagnostics", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_capabilityreport_from_dict", "to": "node_meshnet_node_capability_sanitize_diagnostics", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_rationale_110", "to": "node_meshnet_node_capability_sanitize_diagnostics", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_sanitize_diagnostics", "to": "node_meshnet_node_capability_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_as_mapping", "to": "node_meshnet_node_capability_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_backendidentity_from_dict", "to": "node_meshnet_node_capability_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_build_capability_report", "to": "node_meshnet_node_capability_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_capabilityreport_from_dict", "to": "node_meshnet_node_capability_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_config_fingerprint", "to": "node_meshnet_node_capability_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_modelidentity_from_dict", "to": "node_meshnet_node_capability_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_optional_text", "to": "node_meshnet_node_capability_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_recipeidentity_from_dict", "to": "node_meshnet_node_capability_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_require_int", "to": "node_meshnet_node_capability_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_require_text", "to": "node_meshnet_node_capability_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_shardrange_from_dict", "to": "node_meshnet_node_capability_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_build_capability_report", "to": "node_meshnet_node_capability_config_fingerprint", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_config_fingerprint", "to": "node_meshnet_node_capability_sha256", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_rationale_140", "to": "node_meshnet_node_capability_config_fingerprint", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_backendidentity_from_dict", "to": "node_meshnet_node_capability_require_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_backendidentity_post_init", "to": "node_meshnet_node_capability_require_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_capabilityreport_from_dict", "to": "node_meshnet_node_capability_require_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_modelidentity_from_dict", "to": "node_meshnet_node_capability_require_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_modelidentity_post_init", "to": "node_meshnet_node_capability_require_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_optional_text", "to": "node_meshnet_node_capability_require_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_recipeidentity_from_dict", "to": "node_meshnet_node_capability_require_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_recipeidentity_post_init", "to": "node_meshnet_node_capability_require_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_backendidentity_from_dict", "to": "node_meshnet_node_capability_optional_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_backendidentity_post_init", "to": "node_meshnet_node_capability_optional_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_modelidentity_from_dict", "to": "node_meshnet_node_capability_optional_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_modelidentity_post_init", "to": "node_meshnet_node_capability_optional_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_capabilityreport_from_dict", "to": "node_meshnet_node_capability_require_int", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_capabilityreport_post_init", "to": "node_meshnet_node_capability_require_int", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_shardrange_from_dict", "to": "node_meshnet_node_capability_require_int", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_shardrange_post_init", "to": "node_meshnet_node_capability_require_int", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_build_capability_report", "to": "node_meshnet_node_capability_modelidentity", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_modelidentity_from_dict", "to": "node_meshnet_node_capability_modelidentity", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_modelidentity", "to": "node_meshnet_node_capability_modelidentity_post_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_modelidentity", "to": "node_meshnet_node_capability_modelidentity_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_modelidentity", "to": "node_meshnet_node_runtime_recipe_compatibilityfingerprint", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_capability_modelidentity", "to": "node_meshnet_node_runtime_recipe_shardidentity", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_capability_rationale_187", "to": "node_meshnet_node_capability_modelidentity", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_capabilityreport_from_dict", "to": "node_meshnet_node_capability_modelidentity_from_dict", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_modelidentity_from_dict", "to": "node_meshnet_node_capability_as_mapping", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_build_capability_report", "to": "node_meshnet_node_capability_shardrange", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_rationale_219", "to": "node_meshnet_node_capability_shardrange", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_shardrange_from_dict", "to": "node_meshnet_node_capability_shardrange", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_shardrange", "to": "node_meshnet_node_capability_shardrange_post_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_shardrange", "to": "node_meshnet_node_capability_shardrange_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_shardrange", "to": "node_meshnet_node_runtime_recipe_compatibilityfingerprint", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_capability_shardrange", "to": "node_meshnet_node_runtime_recipe_shardidentity", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_capability_capabilityreport_from_dict", "to": "node_meshnet_node_capability_shardrange_from_dict", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_shardrange_from_dict", "to": "node_meshnet_node_capability_as_mapping", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_build_capability_report", "to": "node_meshnet_node_capability_recipeidentity", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_rationale_246", "to": "node_meshnet_node_capability_recipeidentity", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_recipeidentity_from_dict", "to": "node_meshnet_node_capability_recipeidentity", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_recipeidentity", "to": "node_meshnet_node_capability_recipeidentity_post_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_recipeidentity", "to": "node_meshnet_node_capability_recipeidentity_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_recipeidentity", "to": "node_meshnet_node_runtime_recipe_compatibilityfingerprint", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_capability_recipeidentity", "to": "node_meshnet_node_runtime_recipe_shardidentity", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_capability_capabilityreport_from_dict", "to": "node_meshnet_node_capability_recipeidentity_from_dict", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_recipeidentity_from_dict", "to": "node_meshnet_node_capability_as_mapping", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_backendidentity_from_dict", "to": "node_meshnet_node_capability_backendidentity", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_backendidentity", "to": "node_meshnet_node_capability_backendidentity_post_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_backendidentity", "to": "node_meshnet_node_capability_backendidentity_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_backendidentity", "to": "node_meshnet_node_runtime_recipe_compatibilityfingerprint", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_capability_backendidentity", "to": "node_meshnet_node_runtime_recipe_shardidentity", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_capability_build_capability_report", "to": "node_meshnet_node_capability_backendidentity", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_rationale_280", "to": "node_meshnet_node_capability_backendidentity", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_backendidentity_from_dict", "to": "node_meshnet_node_capability_as_mapping", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_capabilityreport_from_dict", "to": "node_meshnet_node_capability_backendidentity_from_dict", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_capabilityreport_from_dict", "to": "node_meshnet_node_capability_as_mapping", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_build_capability_report", "to": "node_meshnet_node_capability_capabilityreport", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_capabilityreport", "to": "node_meshnet_node_capability_capabilityreport_age_seconds", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_capabilityreport", "to": "node_meshnet_node_capability_capabilityreport_fingerprint", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_capabilityreport_from_dict", "to": "node_meshnet_node_capability_capabilityreport", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_capabilityreport_from_json", "to": "node_meshnet_node_capability_capabilityreport", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_capabilityreport", "to": "node_meshnet_node_capability_capabilityreport_identity_key", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_capabilityreport", "to": "node_meshnet_node_capability_capabilityreport_passed", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_capabilityreport", "to": "node_meshnet_node_capability_capabilityreport_post_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_capabilityreport", "to": "node_meshnet_node_capability_capabilityreport_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_capabilityreport", "to": "node_meshnet_node_capability_capabilityreport_to_json", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_capabilityreport", "to": "node_meshnet_node_runtime_recipe_compatibilityfingerprint", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_capability_capabilityreport", "to": "node_meshnet_node_runtime_recipe_shardidentity", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_capability_rationale_335", "to": "node_meshnet_node_capability_capabilityreport", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_capability_capabilityreport", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_doctorerror", "to": "node_meshnet_node_capability_capabilityreport", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_doctorresult", "to": "node_meshnet_node_capability_capabilityreport", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_doctorresult_reports", "to": "node_meshnet_node_capability_capabilityreport", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_doctorselection", "to": "node_meshnet_node_capability_capabilityreport", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_probeinput", "to": "node_meshnet_node_capability_capabilityreport", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_reciperesult", "to": "node_meshnet_node_capability_capabilityreport", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_write_reports", "to": "node_meshnet_node_capability_capabilityreport", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_conformance_canonical_capability_report", "to": "node_meshnet_node_capability_capabilityreport", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_capability_capabilityreport", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_admit_capability", "to": "node_meshnet_node_capability_capabilityreport", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_testing", "to": "node_meshnet_node_capability_capabilityreport", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_testing_assume_capability", "to": "node_meshnet_node_capability_capabilityreport", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_testing_capability_report_for", "to": "node_meshnet_node_capability_capabilityreport", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_capabilityreport_fingerprint", "to": "node_meshnet_node_runtime_recipe_compatibilityfingerprint", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_rationale_377", "to": "node_meshnet_node_capability_capabilityreport_fingerprint", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_rationale_381", "to": "node_meshnet_node_capability_capabilityreport_identity_key", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_capabilityreport_to_json", "to": "node_meshnet_node_capability_capabilityreport_to_dict", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_capabilityreport_from_dict", "to": "node_meshnet_node_runtime_recipe_shardidentity_from_dict", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_capabilityreport_from_json", "to": "node_meshnet_node_capability_capabilityreport_from_dict", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_build_capability_report", "to": "node_meshnet_node_runtime_recipe_shardidentity", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_capability_rationale_490", "to": "node_meshnet_node_capability_build_capability_report", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_capability_build_capability_report", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_validate_recipe", "to": "node_meshnet_node_capability_build_capability_report", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_testing", "to": "node_meshnet_node_capability_build_capability_report", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_testing_capability_report_for", "to": "node_meshnet_node_capability_build_capability_report", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli", "to": "node_meshnet_node_cli_apply_relay_concurrency_flag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli", "to": "node_meshnet_node_cli_cmd_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli", "to": "node_meshnet_node_cli_cmd_default", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli", "to": "node_meshnet_node_cli_cmd_doctor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli", "to": "node_meshnet_node_cli_cmd_models", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli", "to": "node_meshnet_node_cli_cmd_start", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli", "to": "node_meshnet_node_cli_doctor_overrides", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli", "to": "node_meshnet_node_cli_first_available_port", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli", "to": "node_meshnet_node_cli_load_env_defaults", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli", "to": "node_meshnet_node_cli_load_env_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli", "to": "node_meshnet_node_cli_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli", "to": "node_meshnet_node_cli_resolve_model_flags", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli", "to": "node_meshnet_node_cli_run_node", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli", "to": "node_meshnet_node_config_config_path", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli", "to": "node_meshnet_node_config_load_config", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli", "to": "node_meshnet_node_config_merge_cli_overrides", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli", "to": "node_meshnet_node_config_save_config", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli", "to": "node_meshnet_node_dashboard_run_dashboard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli", "to": "node_meshnet_node_doctor_default_report_path", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli", "to": "node_meshnet_node_doctor_doctorerror", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli", "to": "node_meshnet_node_doctor_render_result", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli", "to": "node_meshnet_node_doctor_resolve_selection", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli", "to": "node_meshnet_node_doctor_run_doctor", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli", "to": "node_meshnet_node_doctor_write_reports", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli", "to": "node_meshnet_node_model_catalog_browse_hf_hub", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli", "to": "node_meshnet_node_model_catalog_resolve_model_alias", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli", "to": "node_meshnet_node_startup_run_startup", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli", "to": "node_meshnet_node_wizard_print_models_table", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli", "to": "node_meshnet_node_wizard_run_wizard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_rationale_1", "to": "node_meshnet_node_cli", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_load_env_defaults", "to": "node_meshnet_node_cli_load_env_file", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_load_env_file", "to": "node_meshnet_node_cli_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_rationale_14", "to": "node_meshnet_node_cli_load_env_file", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_cmd_doctor", "to": "node_meshnet_node_cli_py_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_cmd_start", "to": "node_meshnet_node_cli_py_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_run_node", "to": "node_meshnet_node_cli_py_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_cmd_default", "to": "node_meshnet_node_cli_apply_relay_concurrency_flag", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_cmd_start", "to": "node_meshnet_node_cli_apply_relay_concurrency_flag", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_rationale_40", "to": "node_meshnet_node_cli_apply_relay_concurrency_flag", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_main", "to": "node_meshnet_node_cli_load_env_defaults", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_rationale_46", "to": "node_meshnet_node_cli_load_env_defaults", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_cmd_default", "to": "node_meshnet_node_cli_run_node", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_rationale_58", "to": "node_meshnet_node_cli_run_node", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_run_node", "to": "node_meshnet_node_dashboard_run_dashboard", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_run_node", "to": "node_meshnet_node_server_stubnodeserver_chat_completion_count", "label": "indirect_call", "title": "indirect_call [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_cli_run_node", "to": "node_meshnet_node_startup_run_startup", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_cmd_default", "to": "node_meshnet_node_cli_resolve_model_flags", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_cmd_start", "to": "node_meshnet_node_cli_resolve_model_flags", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_doctor_overrides", "to": "node_meshnet_node_cli_resolve_model_flags", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_rationale_111", "to": "node_meshnet_node_cli_resolve_model_flags", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_resolve_model_flags", "to": "node_meshnet_node_model_catalog_resolve_model_alias", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_cmd_start", "to": "node_meshnet_node_cli_first_available_port", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_rationale_126", "to": "node_meshnet_node_cli_first_available_port", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_cmd_default", "to": "node_meshnet_node_config_load_config", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_cmd_default", "to": "node_meshnet_node_config_merge_cli_overrides", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_cmd_default", "to": "node_meshnet_node_config_save_config", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_cmd_default", "to": "node_meshnet_node_wizard_run_wizard", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_main", "to": "node_meshnet_node_cli_cmd_default", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_rationale_139", "to": "node_meshnet_node_cli_cmd_default", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_cmd_models", "to": "node_meshnet_node_model_catalog_browse_hf_hub", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_cmd_models", "to": "node_meshnet_node_wizard_print_models_table", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_main", "to": "node_meshnet_node_cli_cmd_models", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_rationale_208", "to": "node_meshnet_node_cli_cmd_models", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_cmd_config", "to": "node_meshnet_node_config_config_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_cmd_config", "to": "node_meshnet_node_config_load_config", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_main", "to": "node_meshnet_node_cli_cmd_config", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_rationale_235", "to": "node_meshnet_node_cli_cmd_config", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_cmd_doctor", "to": "node_meshnet_node_cli_doctor_overrides", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_rationale_249", "to": "node_meshnet_node_cli_doctor_overrides", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_cmd_doctor", "to": "node_meshnet_node_config_load_config", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_cmd_doctor", "to": "node_meshnet_node_config_merge_cli_overrides", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_cmd_doctor", "to": "node_meshnet_node_doctor_default_report_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_cmd_doctor", "to": "node_meshnet_node_doctor_render_result", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_cmd_doctor", "to": "node_meshnet_node_doctor_resolve_selection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_cmd_doctor", "to": "node_meshnet_node_doctor_run_doctor", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_cmd_doctor", "to": "node_meshnet_node_doctor_write_reports", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_main", "to": "node_meshnet_node_cli_cmd_doctor", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_rationale_272", "to": "node_meshnet_node_cli_cmd_doctor", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_cmd_start", "to": "node_meshnet_node_startup_run_startup", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_cmd_start", "to": "node_meshnet_node_torch_server_torchnodeserver_route_timeout", "label": "indirect_call", "title": "indirect_call [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_cli_main", "to": "node_meshnet_node_cli_cmd_start", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_cli_rationale_328", "to": "node_meshnet_node_cli_cmd_start", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_config", "to": "node_meshnet_node_config_config_path", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_config", "to": "node_meshnet_node_config_delete_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_config", "to": "node_meshnet_node_config_load_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_config", "to": "node_meshnet_node_config_merge_cli_overrides", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_config", "to": "node_meshnet_node_config_save_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_config_rationale_1", "to": "node_meshnet_node_config", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard", "to": "node_meshnet_node_config", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_config_config_path", "to": "node_meshnet_node_config_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_config_delete_config", "to": "node_meshnet_node_config_config_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_config_load_config", "to": "node_meshnet_node_config_config_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_config_save_config", "to": "node_meshnet_node_config_config_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_config_config_path", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_default_report_path", "to": "node_meshnet_node_config_config_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_config_delete_config", "to": "node_meshnet_node_config_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_config_load_config", "to": "node_meshnet_node_config_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_config_save_config", "to": "node_meshnet_node_config_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_config_rationale_44", "to": "node_meshnet_node_config_load_config", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_config_rationale_58", "to": "node_meshnet_node_config_save_config", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_config_rationale_75", "to": "node_meshnet_node_config_merge_cli_overrides", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard", "to": "node_meshnet_node_dashboard_build_rich_renderable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard", "to": "node_meshnet_node_dashboard_ema", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard", "to": "node_meshnet_node_dashboard_format_uptime", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard", "to": "node_meshnet_node_dashboard_gpu_stats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard", "to": "node_meshnet_node_dashboard_is_interactive_tty", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard", "to": "node_meshnet_node_dashboard_make_bar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard", "to": "node_meshnet_node_dashboard_node_stats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard", "to": "node_meshnet_node_dashboard_nvml_gpu_util", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard", "to": "node_meshnet_node_dashboard_run_dashboard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard", "to": "node_meshnet_node_dashboard_run_plain_loop", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard", "to": "node_meshnet_node_dashboard_run_rich_dashboard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard_rationale_1", "to": "node_meshnet_node_dashboard", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard_rationale_15", "to": "node_meshnet_node_dashboard_is_interactive_tty", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard_run_dashboard", "to": "node_meshnet_node_dashboard_is_interactive_tty", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard_build_rich_renderable", "to": "node_meshnet_node_dashboard_format_uptime", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard_run_plain_loop", "to": "node_meshnet_node_dashboard_format_uptime", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard_build_rich_renderable", "to": "node_meshnet_node_dashboard_gpu_stats", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard_gpu_stats", "to": "node_meshnet_node_dashboard_nvml_gpu_util", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard_rationale_32", "to": "node_meshnet_node_dashboard_gpu_stats", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard_run_plain_loop", "to": "node_meshnet_node_dashboard_gpu_stats", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard_rationale_60", "to": "node_meshnet_node_dashboard_nvml_gpu_util", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard_build_rich_renderable", "to": "node_meshnet_node_dashboard_ema", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard_ema", "to": "node_meshnet_node_dashboard_ema_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard_ema", "to": "node_meshnet_node_dashboard_ema_update", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard_ema", "to": "node_meshnet_node_dashboard_ema_value", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard_rationale_73", "to": "node_meshnet_node_dashboard_ema", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard_run_rich_dashboard", "to": "node_meshnet_node_dashboard_ema", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard_build_rich_renderable", "to": "node_meshnet_node_dashboard_ema_update", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard_run_rich_dashboard", "to": "node_meshnet_node_dashboard_ema_update", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard_build_rich_renderable", "to": "node_meshnet_node_dashboard_make_bar", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard_build_rich_renderable", "to": "node_meshnet_node_dashboard_node_stats", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard_node_stats", "to": "node_meshnet_node_server_stubnodeserver_chat_completion_count", "label": "indirect_call", "title": "indirect_call [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_dashboard_node_stats", "to": "node_meshnet_node_torch_server_torchnodeserver_failed_requests", "label": "indirect_call", "title": "indirect_call [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_dashboard_node_stats", "to": "node_meshnet_node_torch_server_torchnodeserver_queue_depth", "label": "indirect_call", "title": "indirect_call [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_dashboard_node_stats", "to": "node_meshnet_node_torch_server_torchnodeserver_total_requests", "label": "indirect_call", "title": "indirect_call [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_dashboard_run_plain_loop", "to": "node_meshnet_node_dashboard_node_stats", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard_rationale_110", "to": "node_meshnet_node_dashboard_run_dashboard", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard_run_dashboard", "to": "node_meshnet_node_dashboard_run_plain_loop", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard_run_dashboard", "to": "node_meshnet_node_dashboard_run_rich_dashboard", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_dashboard_run_rich_dashboard", "to": "node_meshnet_node_dashboard_build_rich_renderable", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_doctor_backend_device", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_doctor_backend_device_name", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_doctor_build_probe_input", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_doctor_classify_failure", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_doctor_default_load_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_doctor_default_report_path", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_doctor_describe", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_doctor_describe_output", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_doctor_detect_layers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_doctor_doctorerror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_doctor_doctorresult", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_doctor_doctorselection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_doctor_int64_header", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_doctor_model_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_doctor_probe_forward", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_doctor_probeinput", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_doctor_reciperesult", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_doctor_render_result", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_doctor_resolve_selection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_doctor_run_doctor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_doctor_runtime_versions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_doctor_select_recipes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_doctor_selected_model_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_doctor_validate_loaded_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_doctor_validate_recipe", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_doctor_write_reports", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_hardware_detect_hardware", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_model_backend_insufficientvramerror", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_model_backend_missingmodeldependencyerror", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_model_backend_partialmodelloadunsupported", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_model_backend_unsupportedrecipeparam", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_model_catalog_resolve_model_alias", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_native_backend", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_native_backend_nativeworkerbackendadapter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_recipe_manifest", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_recipe_manifest_load_recipe_manifest", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_recipe_manifest_recipe", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_recipe_manifest_recipemanifest", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_recipe_manifest_recipemanifesterror", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_startup_detect_num_layers", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor", "to": "node_meshnet_node_torch_server_load_backend", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_rationale_1", "to": "node_meshnet_node_doctor", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_doctor", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_build_probe_input", "to": "node_meshnet_node_doctor_doctorerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_describe_output", "to": "node_meshnet_node_doctor_doctorerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_doctorerror", "to": "node_meshnet_node_doctor_doctorerror_hint", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_doctorerror", "to": "node_meshnet_node_doctor_doctorerror_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_doctorerror", "to": "node_meshnet_node_doctor_py_runtimeerror", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_doctorerror", "to": "node_meshnet_node_model_backend_insufficientvramerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_doctorerror", "to": "node_meshnet_node_model_backend_missingmodeldependencyerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_doctorerror", "to": "node_meshnet_node_model_backend_partialmodelloadunsupported", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_doctorerror", "to": "node_meshnet_node_model_backend_unsupportedrecipeparam", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_doctorerror", "to": "node_meshnet_node_native_backend_nativeworkerbackendadapter", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_doctorerror", "to": "node_meshnet_node_recipe_manifest_recipe", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_doctorerror", "to": "node_meshnet_node_recipe_manifest_recipemanifest", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_doctorerror", "to": "node_meshnet_node_recipe_manifest_recipemanifesterror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_probe_forward", "to": "node_meshnet_node_doctor_doctorerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_rationale_100", "to": "node_meshnet_node_doctor_doctorerror", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_resolve_selection", "to": "node_meshnet_node_doctor_doctorerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_select_recipes", "to": "node_meshnet_node_doctor_doctorerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_backend_device", "to": "node_meshnet_node_doctor_doctorselection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_default_load_backend", "to": "node_meshnet_node_doctor_doctorselection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_doctorselection", "to": "node_meshnet_node_doctor_doctorselection_shard_label", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_doctorselection", "to": "node_meshnet_node_model_backend_insufficientvramerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_doctorselection", "to": "node_meshnet_node_model_backend_missingmodeldependencyerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_doctorselection", "to": "node_meshnet_node_model_backend_partialmodelloadunsupported", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_doctorselection", "to": "node_meshnet_node_model_backend_unsupportedrecipeparam", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_doctorselection", "to": "node_meshnet_node_native_backend_nativeworkerbackendadapter", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_doctorselection", "to": "node_meshnet_node_recipe_manifest_recipe", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_doctorselection", "to": "node_meshnet_node_recipe_manifest_recipemanifest", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_doctorselection", "to": "node_meshnet_node_recipe_manifest_recipemanifesterror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_rationale_113", "to": "node_meshnet_node_doctor_doctorselection", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_resolve_selection", "to": "node_meshnet_node_doctor_doctorselection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_run_doctor", "to": "node_meshnet_node_doctor_doctorselection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_validate_loaded_backend", "to": "node_meshnet_node_doctor_doctorselection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_validate_recipe", "to": "node_meshnet_node_doctor_doctorselection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_doctor_doctorselection", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_admit_capability", "to": "node_meshnet_node_doctor_doctorselection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_capability_refresher", "to": "node_meshnet_node_doctor_doctorselection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_rationale_129", "to": "node_meshnet_node_doctor_reciperesult", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_reciperesult", "to": "node_meshnet_node_doctor_reciperesult_hint", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_reciperesult", "to": "node_meshnet_node_doctor_reciperesult_passed", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_reciperesult", "to": "node_meshnet_node_model_backend_insufficientvramerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_reciperesult", "to": "node_meshnet_node_model_backend_missingmodeldependencyerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_reciperesult", "to": "node_meshnet_node_model_backend_partialmodelloadunsupported", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_reciperesult", "to": "node_meshnet_node_model_backend_unsupportedrecipeparam", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_reciperesult", "to": "node_meshnet_node_native_backend_nativeworkerbackendadapter", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_reciperesult", "to": "node_meshnet_node_recipe_manifest_recipe", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_reciperesult", "to": "node_meshnet_node_recipe_manifest_recipemanifest", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_reciperesult", "to": "node_meshnet_node_recipe_manifest_recipemanifesterror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_validate_loaded_backend", "to": "node_meshnet_node_doctor_reciperesult", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_validate_recipe", "to": "node_meshnet_node_doctor_reciperesult", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_doctorresult", "to": "node_meshnet_node_doctor_doctorresult_exit_code", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_doctorresult", "to": "node_meshnet_node_doctor_doctorresult_passed", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_doctorresult", "to": "node_meshnet_node_doctor_doctorresult_reports", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_doctorresult", "to": "node_meshnet_node_model_backend_insufficientvramerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_doctorresult", "to": "node_meshnet_node_model_backend_missingmodeldependencyerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_doctorresult", "to": "node_meshnet_node_model_backend_partialmodelloadunsupported", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_doctorresult", "to": "node_meshnet_node_model_backend_unsupportedrecipeparam", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_doctorresult", "to": "node_meshnet_node_native_backend_nativeworkerbackendadapter", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_doctorresult", "to": "node_meshnet_node_recipe_manifest_recipe", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_doctorresult", "to": "node_meshnet_node_recipe_manifest_recipemanifest", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_doctorresult", "to": "node_meshnet_node_recipe_manifest_recipemanifesterror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_rationale_147", "to": "node_meshnet_node_doctor_doctorresult", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_render_result", "to": "node_meshnet_node_doctor_doctorresult", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_run_doctor", "to": "node_meshnet_node_doctor_doctorresult", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_rationale_173", "to": "node_meshnet_node_doctor_resolve_selection", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_resolve_selection", "to": "node_meshnet_node_doctor_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_resolve_selection", "to": "node_meshnet_node_doctor_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_resolve_selection", "to": "node_meshnet_node_doctor_selected_model_id", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_backend_device", "to": "node_meshnet_node_doctor_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_default_load_backend", "to": "node_meshnet_node_doctor_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_describe_output", "to": "node_meshnet_node_doctor_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_model_config", "to": "node_meshnet_node_doctor_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_probe_forward", "to": "node_meshnet_node_doctor_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_run_doctor", "to": "node_meshnet_node_doctor_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_selected_model_id", "to": "node_meshnet_node_doctor_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_validate_loaded_backend", "to": "node_meshnet_node_doctor_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_validate_recipe", "to": "node_meshnet_node_doctor_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_default_report_path", "to": "node_meshnet_node_doctor_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_detect_layers", "to": "node_meshnet_node_doctor_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_render_result", "to": "node_meshnet_node_doctor_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_write_reports", "to": "node_meshnet_node_doctor_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_rationale_222", "to": "node_meshnet_node_doctor_selected_model_id", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_selected_model_id", "to": "node_meshnet_node_model_catalog_resolve_model_alias", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_detect_layers", "to": "node_meshnet_node_startup_detect_num_layers", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_build_probe_input", "to": "node_meshnet_node_doctor_probeinput", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_probeinput", "to": "node_meshnet_node_model_backend_insufficientvramerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_probeinput", "to": "node_meshnet_node_model_backend_missingmodeldependencyerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_probeinput", "to": "node_meshnet_node_model_backend_partialmodelloadunsupported", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_probeinput", "to": "node_meshnet_node_model_backend_unsupportedrecipeparam", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_probeinput", "to": "node_meshnet_node_native_backend_nativeworkerbackendadapter", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_probeinput", "to": "node_meshnet_node_recipe_manifest_recipe", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_probeinput", "to": "node_meshnet_node_recipe_manifest_recipemanifest", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_probeinput", "to": "node_meshnet_node_recipe_manifest_recipemanifesterror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_rationale_248", "to": "node_meshnet_node_doctor_probeinput", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_build_probe_input", "to": "node_meshnet_node_doctor_int64_header", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_rationale_257", "to": "node_meshnet_node_doctor_int64_header", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_probe_forward", "to": "node_meshnet_node_doctor_build_probe_input", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_rationale_265", "to": "node_meshnet_node_doctor_build_probe_input", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_probe_forward", "to": "node_meshnet_node_doctor_describe", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_probe_forward", "to": "node_meshnet_node_doctor_describe_output", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_rationale_287", "to": "node_meshnet_node_doctor_probe_forward", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_validate_recipe", "to": "node_meshnet_node_doctor_probe_forward", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_describe_output", "to": "node_meshnet_node_protocol_namedtensor_body", "label": "indirect_call", "title": "indirect_call [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_doctor_rationale_330", "to": "node_meshnet_node_doctor_describe_output", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_default_load_backend", "to": "node_meshnet_node_recipe_manifest_recipe", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_default_load_backend", "to": "node_meshnet_node_torch_server_load_backend", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_rationale_357", "to": "node_meshnet_node_doctor_default_load_backend", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_rationale_377", "to": "node_meshnet_node_doctor_select_recipes", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_run_doctor", "to": "node_meshnet_node_doctor_select_recipes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_select_recipes", "to": "node_meshnet_node_recipe_manifest_recipe", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_select_recipes", "to": "node_meshnet_node_recipe_manifest_recipemanifest", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_rationale_404", "to": "node_meshnet_node_doctor_run_doctor", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_run_doctor", "to": "node_meshnet_node_doctor_validate_recipe", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_run_doctor", "to": "node_meshnet_node_recipe_manifest_load_recipe_manifest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_run_doctor", "to": "node_meshnet_node_recipe_manifest_recipe", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_run_doctor", "to": "node_meshnet_node_recipe_manifest_recipemanifest", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_rationale_430", "to": "node_meshnet_node_doctor_validate_loaded_backend", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_validate_loaded_backend", "to": "node_meshnet_node_doctor_validate_recipe", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_validate_loaded_backend", "to": "node_meshnet_node_recipe_manifest_recipe", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_validate_loaded_backend", "to": "node_meshnet_node_recipe_manifest_recipemanifest", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_validate_recipe", "to": "node_meshnet_node_doctor_backend_device", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_validate_recipe", "to": "node_meshnet_node_doctor_backend_device_name", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_validate_recipe", "to": "node_meshnet_node_doctor_classify_failure", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_validate_recipe", "to": "node_meshnet_node_doctor_describe", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_validate_recipe", "to": "node_meshnet_node_doctor_model_config", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_validate_recipe", "to": "node_meshnet_node_doctor_runtime_versions", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_validate_recipe", "to": "node_meshnet_node_recipe_manifest_recipe", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_validate_recipe", "to": "node_meshnet_node_recipe_manifest_recipemanifest", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_classify_failure", "to": "node_meshnet_node_doctor_py_baseexception", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_rationale_517", "to": "node_meshnet_node_doctor_classify_failure", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_describe", "to": "node_meshnet_node_doctor_py_baseexception", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_rationale_544", "to": "node_meshnet_node_doctor_describe", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_backend_device_name", "to": "node_meshnet_node_hardware_detect_hardware", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_rationale_558", "to": "node_meshnet_node_doctor_backend_device_name", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_rationale_570", "to": "node_meshnet_node_doctor_model_config", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_rationale_582", "to": "node_meshnet_node_doctor_runtime_versions", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_rationale_607", "to": "node_meshnet_node_doctor_write_reports", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_doctor_rationale_622", "to": "node_meshnet_node_doctor_render_result", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader", "to": "node_meshnet_node_downloader_allow_patterns_from_remote_index", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader", "to": "node_meshnet_node_downloader_allow_patterns_from_sources", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader", "to": "node_meshnet_node_downloader_compute_shard_checksum", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader", "to": "node_meshnet_node_downloader_download_huggingface_subset", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader", "to": "node_meshnet_node_downloader_download_model_source", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader", "to": "node_meshnet_node_downloader_download_shard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader", "to": "node_meshnet_node_downloader_download_shard_from_peer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader", "to": "node_meshnet_node_downloader_download_source_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader", "to": "node_meshnet_node_downloader_fetch_source_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader", "to": "node_meshnet_node_downloader_merge_tree", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader", "to": "node_meshnet_node_downloader_peer_download_url", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader", "to": "node_meshnet_node_downloader_reuse_local_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader", "to": "node_meshnet_node_downloader_safe_extract_shard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader", "to": "node_meshnet_node_downloader_source_files_cached", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader", "to": "node_meshnet_node_downloader_sourceprogress", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader", "to": "node_meshnet_node_downloader_taronlysource", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader", "to": "node_meshnet_node_downloader_valid_source_rel_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader", "to": "node_meshnet_node_downloader_write_shard_archive", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader", "to": "node_meshnet_node_safetensors_selection_layers_from_config_dict", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader", "to": "node_meshnet_node_safetensors_selection_select_files_for_layers_from_index", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_rationale_1", "to": "node_meshnet_node_downloader", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server", "to": "node_meshnet_node_downloader", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_downloader", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_compute_shard_checksum", "to": "node_meshnet_node_downloader_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_download_shard_from_peer", "to": "node_meshnet_node_downloader_compute_shard_checksum", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_rationale_32", "to": "node_meshnet_node_downloader_compute_shard_checksum", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server", "to": "node_meshnet_node_downloader_compute_shard_checksum", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubhandler_handle_shard_download", "to": "node_meshnet_node_downloader_compute_shard_checksum", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_downloader_compute_shard_checksum", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_registration_shard_checksum", "to": "node_meshnet_node_downloader_compute_shard_checksum", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_allow_patterns_from_remote_index", "to": "node_meshnet_node_downloader_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_allow_patterns_from_sources", "to": "node_meshnet_node_downloader_py_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_download_huggingface_subset", "to": "node_meshnet_node_downloader_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_download_model_source", "to": "node_meshnet_node_downloader_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_download_shard", "to": "node_meshnet_node_downloader_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_download_shard_from_peer", "to": "node_meshnet_node_downloader_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_download_source_files", "to": "node_meshnet_node_downloader_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_fetch_source_file", "to": "node_meshnet_node_downloader_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_merge_tree", "to": "node_meshnet_node_downloader_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_reuse_local_file", "to": "node_meshnet_node_downloader_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_safe_extract_shard", "to": "node_meshnet_node_downloader_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_source_files_cached", "to": "node_meshnet_node_downloader_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_valid_source_rel_files", "to": "node_meshnet_node_downloader_py_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_write_shard_archive", "to": "node_meshnet_node_downloader_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_rationale_46", "to": "node_meshnet_node_downloader_write_shard_archive", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_write_shard_archive", "to": "node_meshnet_node_downloader_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server", "to": "node_meshnet_node_downloader_write_shard_archive", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubhandler_handle_shard_download", "to": "node_meshnet_node_downloader_write_shard_archive", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_download_model_source", "to": "node_meshnet_node_downloader_safe_extract_shard", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_download_shard_from_peer", "to": "node_meshnet_node_downloader_safe_extract_shard", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_download_shard_from_peer", "to": "node_meshnet_node_downloader_peer_download_url", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_download_shard", "to": "node_meshnet_node_downloader_download_shard_from_peer", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_download_shard_from_peer", "to": "node_meshnet_node_downloader_merge_tree", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_fetch_source_file", "to": "node_meshnet_node_downloader_taronlysource", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_rationale_116", "to": "node_meshnet_node_downloader_taronlysource", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_taronlysource", "to": "node_meshnet_node_downloader_py_exception", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_download_source_files", "to": "node_meshnet_node_downloader_fetch_source_file", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_rationale_125", "to": "node_meshnet_node_downloader_fetch_source_file", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_download_source_files", "to": "node_meshnet_node_downloader_sourceprogress", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_rationale_156", "to": "node_meshnet_node_downloader_sourceprogress", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_sourceprogress", "to": "node_meshnet_node_downloader_sourceprogress_add_bytes", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_sourceprogress", "to": "node_meshnet_node_downloader_sourceprogress_close", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_sourceprogress", "to": "node_meshnet_node_downloader_sourceprogress_file_done", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_sourceprogress", "to": "node_meshnet_node_downloader_sourceprogress_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_sourceprogress", "to": "node_meshnet_node_downloader_sourceprogress_message", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_sourceprogress", "to": "node_meshnet_node_downloader_sourceprogress_rewind", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_download_source_files", "to": "node_meshnet_node_downloader_sourceprogress_add_bytes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_download_source_files", "to": "node_meshnet_node_downloader_sourceprogress_rewind", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_rationale_182", "to": "node_meshnet_node_downloader_sourceprogress_rewind", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_download_source_files", "to": "node_meshnet_node_downloader_sourceprogress_file_done", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_download_source_files", "to": "node_meshnet_node_downloader_sourceprogress_message", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_download_source_files", "to": "node_meshnet_node_downloader_sourceprogress_close", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_download_source_files", "to": "node_meshnet_node_downloader_reuse_local_file", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_rationale_206", "to": "node_meshnet_node_downloader_reuse_local_file", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_download_source_files", "to": "node_meshnet_node_downloader_valid_source_rel_files", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_source_files_cached", "to": "node_meshnet_node_downloader_valid_source_rel_files", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_download_shard", "to": "node_meshnet_node_downloader_source_files_cached", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_download_model_source", "to": "node_meshnet_node_downloader_merge_tree", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_download_source_files", "to": "node_meshnet_node_downloader_merge_tree", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_download_model_source", "to": "node_meshnet_node_downloader_download_source_files", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_rationale_257", "to": "node_meshnet_node_downloader_download_source_files", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_download_shard", "to": "node_meshnet_node_downloader_download_model_source", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_download_shard", "to": "node_meshnet_node_downloader_download_huggingface_subset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_download_shard", "to": "node_meshnet_node_downloader_allow_patterns_from_sources", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_allow_patterns_from_remote_index", "to": "node_meshnet_node_safetensors_selection_layers_from_config_dict", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_allow_patterns_from_remote_index", "to": "node_meshnet_node_safetensors_selection_select_files_for_layers_from_index", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_download_shard", "to": "node_meshnet_node_downloader_allow_patterns_from_remote_index", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_rationale_408", "to": "node_meshnet_node_downloader_allow_patterns_from_remote_index", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_downloader_rationale_454", "to": "node_meshnet_node_downloader_download_shard", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_downloader_download_shard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_downloader_download_shard", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init", "to": "node_meshnet_node_glm_alpha_contract", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init", "to": "node_meshnet_node_glm_alpha_contract_alphacontract", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init", "to": "node_meshnet_node_glm_alpha_contract_alphacontracterror", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init", "to": "node_meshnet_node_glm_alpha_contract_compute_contract_digest", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init", "to": "node_meshnet_node_glm_alpha_contract_load_alpha_contract", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init", "to": "node_meshnet_node_glm_alpha_contract_parse_alpha_contract", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init", "to": "node_meshnet_node_glm_alpha_contract_require_contract_target", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init", "to": "node_meshnet_node_glm_alpha_contract_seal_contract", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init", "to": "node_meshnet_node_glm_alpha_init_load_locked_target", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init", "to": "node_meshnet_node_glm_alpha_manifest", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init", "to": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init", "to": "node_meshnet_node_glm_alpha_manifest_canonical_sha256", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init", "to": "node_meshnet_node_glm_alpha_manifest_glmtargeterror", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init", "to": "node_meshnet_node_glm_alpha_manifest_load_architecture_snapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init", "to": "node_meshnet_node_glm_alpha_manifest_load_target_manifest", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init", "to": "node_meshnet_node_glm_alpha_manifest_parse_architecture_snapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init", "to": "node_meshnet_node_glm_alpha_manifest_parse_target_manifest", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init", "to": "node_meshnet_node_glm_alpha_manifest_require_pinned_target", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init", "to": "node_meshnet_node_glm_alpha_manifest_shard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init", "to": "node_meshnet_node_glm_alpha_manifest_targetmanifest", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init", "to": "node_meshnet_node_glm_alpha_planner", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init", "to": "node_meshnet_node_glm_alpha_planner_kv_bytes", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init", "to": "node_meshnet_node_glm_alpha_planner_nodememory", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init", "to": "node_meshnet_node_glm_alpha_planner_plan_all_tiers", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init", "to": "node_meshnet_node_glm_alpha_planner_plan_route", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init", "to": "node_meshnet_node_glm_alpha_planner_plan_seams", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init", "to": "node_meshnet_node_glm_alpha_planner_plan_topology", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init", "to": "node_meshnet_node_glm_alpha_planner_resourceplanerror", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init", "to": "node_meshnet_node_glm_alpha_planner_routefit", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init", "to": "node_meshnet_node_glm_alpha_planner_seamplan", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init", "to": "node_meshnet_node_glm_alpha_planner_topologyplan", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init_rationale_1", "to": "node_meshnet_node_glm_alpha_init", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init_load_locked_target", "to": "node_meshnet_node_glm_alpha_contract_alphacontract", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init_load_locked_target", "to": "node_meshnet_node_glm_alpha_contract_load_alpha_contract", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init_load_locked_target", "to": "node_meshnet_node_glm_alpha_contract_require_contract_target", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init_load_locked_target", "to": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init_load_locked_target", "to": "node_meshnet_node_glm_alpha_manifest_load_architecture_snapshot", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init_load_locked_target", "to": "node_meshnet_node_glm_alpha_manifest_load_target_manifest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init_load_locked_target", "to": "node_meshnet_node_glm_alpha_manifest_targetmanifest", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_init_rationale_71", "to": "node_meshnet_node_glm_alpha_init_load_locked_target", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe", "to": "node_meshnet_node_glm_alpha_init_load_locked_target", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_glm_alpha_artifact", "to": "node_meshnet_node_glm_alpha_init_load_locked_target", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract", "to": "node_meshnet_node_glm_alpha_contract_alphacontract", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract", "to": "node_meshnet_node_glm_alpha_contract_alphacontracterror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract", "to": "node_meshnet_node_glm_alpha_contract_compute_contract_digest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract", "to": "node_meshnet_node_glm_alpha_contract_contract_signing_payload", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract", "to": "node_meshnet_node_glm_alpha_contract_freeze_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract", "to": "node_meshnet_node_glm_alpha_contract_load_alpha_contract", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract", "to": "node_meshnet_node_glm_alpha_contract_parse_alpha_contract", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract", "to": "node_meshnet_node_glm_alpha_contract_require_contract_target", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract", "to": "node_meshnet_node_glm_alpha_contract_seal_contract", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract", "to": "node_meshnet_node_glm_alpha_contract_thaw_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract", "to": "node_meshnet_node_glm_alpha_manifest", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract", "to": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract", "to": "node_meshnet_node_glm_alpha_manifest_canonical_sha256", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract", "to": "node_meshnet_node_glm_alpha_manifest_glmtargeterror", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract", "to": "node_meshnet_node_glm_alpha_manifest_targetmanifest", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_rationale_1", "to": "node_meshnet_node_glm_alpha_contract", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_alphacontract_section", "to": "node_meshnet_node_glm_alpha_contract_alphacontracterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_alphacontract_threshold", "to": "node_meshnet_node_glm_alpha_contract_alphacontracterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_alphacontracterror", "to": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_glm_alpha_contract_alphacontracterror", "to": "node_meshnet_node_glm_alpha_manifest_glmtargeterror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_glm_alpha_contract_alphacontracterror", "to": "node_meshnet_node_glm_alpha_manifest_targetmanifest", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_glm_alpha_contract_load_alpha_contract", "to": "node_meshnet_node_glm_alpha_contract_alphacontracterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_parse_alpha_contract", "to": "node_meshnet_node_glm_alpha_contract_alphacontracterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_rationale_64", "to": "node_meshnet_node_glm_alpha_contract_alphacontracterror", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_require_contract_target", "to": "node_meshnet_node_glm_alpha_contract_alphacontracterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_compute_contract_digest", "to": "node_meshnet_node_glm_alpha_contract_contract_signing_payload", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_contract_signing_payload", "to": "node_meshnet_node_glm_alpha_contract_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_rationale_68", "to": "node_meshnet_node_glm_alpha_contract_contract_signing_payload", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_alphacontract_section", "to": "node_meshnet_node_glm_alpha_contract_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_alphacontract_threshold", "to": "node_meshnet_node_glm_alpha_contract_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_compute_contract_digest", "to": "node_meshnet_node_glm_alpha_contract_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_freeze_json", "to": "node_meshnet_node_glm_alpha_contract_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_parse_alpha_contract", "to": "node_meshnet_node_glm_alpha_contract_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_seal_contract", "to": "node_meshnet_node_glm_alpha_contract_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_thaw_json", "to": "node_meshnet_node_glm_alpha_contract_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_compute_contract_digest", "to": "node_meshnet_node_glm_alpha_contract_thaw_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_compute_contract_digest", "to": "node_meshnet_node_glm_alpha_manifest_canonical_sha256", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_parse_alpha_contract", "to": "node_meshnet_node_glm_alpha_contract_compute_contract_digest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_rationale_75", "to": "node_meshnet_node_glm_alpha_contract_compute_contract_digest", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_seal_contract", "to": "node_meshnet_node_glm_alpha_contract_compute_contract_digest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_parse_alpha_contract", "to": "node_meshnet_node_glm_alpha_contract_freeze_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_alphacontract_to_dict", "to": "node_meshnet_node_glm_alpha_contract_thaw_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_alphacontract", "to": "node_meshnet_node_glm_alpha_contract_alphacontract_section", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_alphacontract", "to": "node_meshnet_node_glm_alpha_contract_alphacontract_threshold", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_alphacontract", "to": "node_meshnet_node_glm_alpha_contract_alphacontract_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_alphacontract", "to": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_glm_alpha_contract_alphacontract", "to": "node_meshnet_node_glm_alpha_manifest_glmtargeterror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_glm_alpha_contract_alphacontract", "to": "node_meshnet_node_glm_alpha_manifest_targetmanifest", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_glm_alpha_contract_load_alpha_contract", "to": "node_meshnet_node_glm_alpha_contract_alphacontract", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_parse_alpha_contract", "to": "node_meshnet_node_glm_alpha_contract_alphacontract", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_rationale_97", "to": "node_meshnet_node_glm_alpha_contract_alphacontract", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_require_contract_target", "to": "node_meshnet_node_glm_alpha_contract_alphacontract", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_alphacontract_threshold", "to": "node_meshnet_node_glm_alpha_contract_alphacontract_section", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_load_alpha_contract", "to": "node_meshnet_node_glm_alpha_contract_parse_alpha_contract", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_rationale_131", "to": "node_meshnet_node_glm_alpha_contract_parse_alpha_contract", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_rationale_280", "to": "node_meshnet_node_glm_alpha_contract_require_contract_target", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_require_contract_target", "to": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_require_contract_target", "to": "node_meshnet_node_glm_alpha_manifest_targetmanifest", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_load_alpha_contract", "to": "node_meshnet_node_glm_alpha_contract_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_rationale_320", "to": "node_meshnet_node_glm_alpha_contract_load_alpha_contract", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_contract_rationale_351", "to": "node_meshnet_node_glm_alpha_contract_seal_contract", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest", "to": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest", "to": "node_meshnet_node_glm_alpha_manifest_canonical_sha256", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest", "to": "node_meshnet_node_glm_alpha_manifest_glmtargeterror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest", "to": "node_meshnet_node_glm_alpha_manifest_load_architecture_snapshot", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest", "to": "node_meshnet_node_glm_alpha_manifest_load_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest", "to": "node_meshnet_node_glm_alpha_manifest_load_target_manifest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest", "to": "node_meshnet_node_glm_alpha_manifest_parse_architecture_snapshot", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest", "to": "node_meshnet_node_glm_alpha_manifest_parse_shards", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest", "to": "node_meshnet_node_glm_alpha_manifest_parse_target_manifest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest", "to": "node_meshnet_node_glm_alpha_manifest_read_resource", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest", "to": "node_meshnet_node_glm_alpha_manifest_require_int", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest", "to": "node_meshnet_node_glm_alpha_manifest_require_mapping", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest", "to": "node_meshnet_node_glm_alpha_manifest_require_pinned_target", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest", "to": "node_meshnet_node_glm_alpha_manifest_require_revision", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest", "to": "node_meshnet_node_glm_alpha_manifest_require_sha256", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest", "to": "node_meshnet_node_glm_alpha_manifest_require_text", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest", "to": "node_meshnet_node_glm_alpha_manifest_shard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest", "to": "node_meshnet_node_glm_alpha_manifest_targetmanifest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_rationale_1", "to": "node_meshnet_node_glm_alpha_manifest", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner", "to": "node_meshnet_node_glm_alpha_manifest", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot_file_sha256", "to": "node_meshnet_node_glm_alpha_manifest_glmtargeterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot_getitem", "to": "node_meshnet_node_glm_alpha_manifest_glmtargeterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_glmtargeterror", "to": "node_meshnet_node_glm_alpha_manifest_py_valueerror", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_load_json", "to": "node_meshnet_node_glm_alpha_manifest_glmtargeterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_parse_architecture_snapshot", "to": "node_meshnet_node_glm_alpha_manifest_glmtargeterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_parse_shards", "to": "node_meshnet_node_glm_alpha_manifest_glmtargeterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_parse_target_manifest", "to": "node_meshnet_node_glm_alpha_manifest_glmtargeterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_rationale_47", "to": "node_meshnet_node_glm_alpha_manifest_glmtargeterror", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_read_resource", "to": "node_meshnet_node_glm_alpha_manifest_glmtargeterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_require_int", "to": "node_meshnet_node_glm_alpha_manifest_glmtargeterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_require_mapping", "to": "node_meshnet_node_glm_alpha_manifest_glmtargeterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_require_pinned_target", "to": "node_meshnet_node_glm_alpha_manifest_glmtargeterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_require_revision", "to": "node_meshnet_node_glm_alpha_manifest_glmtargeterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_require_sha256", "to": "node_meshnet_node_glm_alpha_manifest_glmtargeterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_require_text", "to": "node_meshnet_node_glm_alpha_manifest_glmtargeterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_targetmanifest_shard", "to": "node_meshnet_node_glm_alpha_manifest_glmtargeterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot_digest", "to": "node_meshnet_node_glm_alpha_manifest_canonical_sha256", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_canonical_sha256", "to": "node_meshnet_node_glm_alpha_manifest_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_rationale_51", "to": "node_meshnet_node_glm_alpha_manifest_canonical_sha256", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_targetmanifest_digest", "to": "node_meshnet_node_glm_alpha_manifest_canonical_sha256", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot_getitem", "to": "node_meshnet_node_glm_alpha_manifest_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_load_json", "to": "node_meshnet_node_glm_alpha_manifest_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_parse_architecture_snapshot", "to": "node_meshnet_node_glm_alpha_manifest_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_parse_shards", "to": "node_meshnet_node_glm_alpha_manifest_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_parse_target_manifest", "to": "node_meshnet_node_glm_alpha_manifest_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_require_int", "to": "node_meshnet_node_glm_alpha_manifest_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_require_mapping", "to": "node_meshnet_node_glm_alpha_manifest_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_require_revision", "to": "node_meshnet_node_glm_alpha_manifest_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_require_sha256", "to": "node_meshnet_node_glm_alpha_manifest_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_require_text", "to": "node_meshnet_node_glm_alpha_manifest_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_parse_architecture_snapshot", "to": "node_meshnet_node_glm_alpha_manifest_require_mapping", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_parse_shards", "to": "node_meshnet_node_glm_alpha_manifest_require_mapping", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_parse_target_manifest", "to": "node_meshnet_node_glm_alpha_manifest_require_mapping", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_parse_architecture_snapshot", "to": "node_meshnet_node_glm_alpha_manifest_require_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_parse_shards", "to": "node_meshnet_node_glm_alpha_manifest_require_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_parse_target_manifest", "to": "node_meshnet_node_glm_alpha_manifest_require_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_require_revision", "to": "node_meshnet_node_glm_alpha_manifest_require_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_require_sha256", "to": "node_meshnet_node_glm_alpha_manifest_require_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_parse_architecture_snapshot", "to": "node_meshnet_node_glm_alpha_manifest_require_int", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_parse_shards", "to": "node_meshnet_node_glm_alpha_manifest_require_int", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_parse_target_manifest", "to": "node_meshnet_node_glm_alpha_manifest_require_int", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_parse_architecture_snapshot", "to": "node_meshnet_node_glm_alpha_manifest_require_sha256", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_parse_shards", "to": "node_meshnet_node_glm_alpha_manifest_require_sha256", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_parse_architecture_snapshot", "to": "node_meshnet_node_glm_alpha_manifest_require_revision", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_parse_target_manifest", "to": "node_meshnet_node_glm_alpha_manifest_require_revision", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_parse_shards", "to": "node_meshnet_node_glm_alpha_manifest_shard", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_rationale_95", "to": "node_meshnet_node_glm_alpha_manifest_shard", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_shard", "to": "node_meshnet_node_glm_alpha_manifest_shard_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_targetmanifest_shard", "to": "node_meshnet_node_glm_alpha_manifest_shard", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_load_target_manifest", "to": "node_meshnet_node_glm_alpha_manifest_targetmanifest", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_parse_target_manifest", "to": "node_meshnet_node_glm_alpha_manifest_targetmanifest", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_rationale_115", "to": "node_meshnet_node_glm_alpha_manifest_targetmanifest", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_require_pinned_target", "to": "node_meshnet_node_glm_alpha_manifest_targetmanifest", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_targetmanifest", "to": "node_meshnet_node_glm_alpha_manifest_targetmanifest_digest", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_targetmanifest", "to": "node_meshnet_node_glm_alpha_manifest_targetmanifest_shard", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_targetmanifest", "to": "node_meshnet_node_glm_alpha_manifest_targetmanifest_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_targetmanifest", "to": "node_meshnet_node_glm_alpha_manifest_targetmanifest_total_gb", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_targetmanifest", "to": "node_meshnet_node_glm_alpha_manifest_targetmanifest_total_gib", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner", "to": "node_meshnet_node_glm_alpha_manifest_targetmanifest", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_nodememory", "to": "node_meshnet_node_glm_alpha_manifest_targetmanifest", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_glm_alpha_planner_plan_all_tiers", "to": "node_meshnet_node_glm_alpha_manifest_targetmanifest", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_plan_route", "to": "node_meshnet_node_glm_alpha_manifest_targetmanifest", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_plan_topology", "to": "node_meshnet_node_glm_alpha_manifest_targetmanifest", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_resourceplanerror", "to": "node_meshnet_node_glm_alpha_manifest_targetmanifest", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_glm_alpha_planner_routefit", "to": "node_meshnet_node_glm_alpha_manifest_targetmanifest", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_glm_alpha_planner_seamplan", "to": "node_meshnet_node_glm_alpha_manifest_targetmanifest", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_glm_alpha_planner_topologyplan", "to": "node_meshnet_node_glm_alpha_manifest_targetmanifest", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_glm_alpha_manifest_rationale_148", "to": "node_meshnet_node_glm_alpha_manifest_targetmanifest_digest", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_parse_target_manifest", "to": "node_meshnet_node_glm_alpha_manifest_parse_shards", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_load_target_manifest", "to": "node_meshnet_node_glm_alpha_manifest_parse_target_manifest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_rationale_212", "to": "node_meshnet_node_glm_alpha_manifest_parse_target_manifest", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot", "to": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot_digest", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot", "to": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot_file_sha256", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot", "to": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot_getitem", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot", "to": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_load_architecture_snapshot", "to": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_parse_architecture_snapshot", "to": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_rationale_270", "to": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_require_pinned_target", "to": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner", "to": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_kv_bytes", "to": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_nodememory", "to": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_glm_alpha_planner_plan_all_tiers", "to": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_plan_route", "to": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_plan_seams", "to": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_plan_topology", "to": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_resourceplanerror", "to": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_glm_alpha_planner_routefit", "to": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_glm_alpha_planner_seamplan", "to": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_glm_alpha_planner_topologyplan", "to": "node_meshnet_node_glm_alpha_manifest_architecturesnapshot", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_glm_alpha_manifest_load_architecture_snapshot", "to": "node_meshnet_node_glm_alpha_manifest_parse_architecture_snapshot", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_rationale_327", "to": "node_meshnet_node_glm_alpha_manifest_parse_architecture_snapshot", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_load_json", "to": "node_meshnet_node_glm_alpha_manifest_read_resource", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_read_resource", "to": "node_meshnet_node_glm_alpha_manifest_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_load_architecture_snapshot", "to": "node_meshnet_node_glm_alpha_manifest_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_load_json", "to": "node_meshnet_node_glm_alpha_manifest_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_load_target_manifest", "to": "node_meshnet_node_glm_alpha_manifest_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_load_architecture_snapshot", "to": "node_meshnet_node_glm_alpha_manifest_load_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_load_target_manifest", "to": "node_meshnet_node_glm_alpha_manifest_load_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_rationale_452", "to": "node_meshnet_node_glm_alpha_manifest_load_target_manifest", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_rationale_458", "to": "node_meshnet_node_glm_alpha_manifest_load_architecture_snapshot", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_manifest_rationale_470", "to": "node_meshnet_node_glm_alpha_manifest_require_pinned_target", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner", "to": "node_meshnet_node_glm_alpha_planner_kv_bytes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner", "to": "node_meshnet_node_glm_alpha_planner_nodememory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner", "to": "node_meshnet_node_glm_alpha_planner_plan_all_tiers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner", "to": "node_meshnet_node_glm_alpha_planner_plan_route", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner", "to": "node_meshnet_node_glm_alpha_planner_plan_seams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner", "to": "node_meshnet_node_glm_alpha_planner_plan_topology", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner", "to": "node_meshnet_node_glm_alpha_planner_resourceplanerror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner", "to": "node_meshnet_node_glm_alpha_planner_routefit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner", "to": "node_meshnet_node_glm_alpha_planner_seamplan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner", "to": "node_meshnet_node_glm_alpha_planner_topologyplan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_rationale_1", "to": "node_meshnet_node_glm_alpha_planner", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_kv_bytes", "to": "node_meshnet_node_glm_alpha_planner_resourceplanerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_nodememory_from_host", "to": "node_meshnet_node_glm_alpha_planner_resourceplanerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_nodememory_post_init", "to": "node_meshnet_node_glm_alpha_planner_resourceplanerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_plan_route", "to": "node_meshnet_node_glm_alpha_planner_resourceplanerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_plan_seams", "to": "node_meshnet_node_glm_alpha_planner_resourceplanerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_plan_topology", "to": "node_meshnet_node_glm_alpha_planner_resourceplanerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_rationale_81", "to": "node_meshnet_node_glm_alpha_planner_resourceplanerror", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_resourceplanerror", "to": "node_meshnet_node_glm_alpha_planner_py_valueerror", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_nodememory", "to": "node_meshnet_node_glm_alpha_planner_nodememory_from_host", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_nodememory", "to": "node_meshnet_node_glm_alpha_planner_nodememory_placement_budget_gib", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_nodememory", "to": "node_meshnet_node_glm_alpha_planner_nodememory_post_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_nodememory", "to": "node_meshnet_node_glm_alpha_planner_nodememory_reserve_gib", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_plan_route", "to": "node_meshnet_node_glm_alpha_planner_nodememory", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_plan_topology", "to": "node_meshnet_node_glm_alpha_planner_nodememory", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_rationale_86", "to": "node_meshnet_node_glm_alpha_planner_nodememory", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_rationale_119", "to": "node_meshnet_node_glm_alpha_planner_nodememory_from_host", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_rationale_159", "to": "node_meshnet_node_glm_alpha_planner_nodememory_reserve_gib", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_rationale_164", "to": "node_meshnet_node_glm_alpha_planner_nodememory_placement_budget_gib", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_kv_bytes", "to": "indexerlayout", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_plan_route", "to": "node_meshnet_node_glm_alpha_planner_kv_bytes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_plan_topology", "to": "node_meshnet_node_glm_alpha_planner_kv_bytes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_rationale_177", "to": "node_meshnet_node_glm_alpha_planner_kv_bytes", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_plan_route", "to": "indexerlayout", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_plan_topology", "to": "indexerlayout", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_plan_all_tiers", "to": "node_meshnet_node_glm_alpha_planner_topologyplan", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_plan_topology", "to": "node_meshnet_node_glm_alpha_planner_topologyplan", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_rationale_219", "to": "node_meshnet_node_glm_alpha_planner_topologyplan", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_topologyplan", "to": "node_meshnet_node_glm_alpha_planner_topologyplan_is_arithmetic_minimum_topology", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_topologyplan", "to": "node_meshnet_node_glm_alpha_planner_topologyplan_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_rationale_233", "to": "node_meshnet_node_glm_alpha_planner_topologyplan_is_arithmetic_minimum_topology", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_plan_all_tiers", "to": "node_meshnet_node_glm_alpha_planner_plan_topology", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_rationale_261", "to": "node_meshnet_node_glm_alpha_planner_plan_topology", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_plan_route", "to": "node_meshnet_node_glm_alpha_planner_routefit", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_rationale_313", "to": "node_meshnet_node_glm_alpha_planner_routefit", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_routefit", "to": "node_meshnet_node_glm_alpha_planner_routefit_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_rationale_349", "to": "node_meshnet_node_glm_alpha_planner_plan_route", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_plan_seams", "to": "node_meshnet_node_glm_alpha_planner_seamplan", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_rationale_413", "to": "node_meshnet_node_glm_alpha_planner_seamplan", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_seamplan", "to": "node_meshnet_node_glm_alpha_planner_seamplan_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_rationale_466", "to": "node_meshnet_node_glm_alpha_planner_plan_seams", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_glm_alpha_planner_rationale_518", "to": "node_meshnet_node_glm_alpha_planner_plan_all_tiers", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware", "to": "node_meshnet_node_hardware_benchmark_throughput", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware", "to": "node_meshnet_node_hardware_benchmark_throughput_checked", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware", "to": "node_meshnet_node_hardware_detect_hardware", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware", "to": "node_meshnet_node_hardware_detect_nvidia_smi_gpu_memory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware", "to": "node_meshnet_node_hardware_detect_ram_mb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware", "to": "node_meshnet_node_hardware_detect_torch_cuda_inventory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware", "to": "node_meshnet_node_hardware_detect_windows_gpu_memory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware", "to": "node_meshnet_node_hardware_detect_windows_ram_mb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware", "to": "node_meshnet_node_hardware_gpu_inventory_profile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware", "to": "node_meshnet_node_hardware_torch_cuda_is_executable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware", "to": "node_meshnet_node_hardware_with_forced_cpu", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware", "to": "node_meshnet_node_hardware_with_model_drive", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware_rationale_1", "to": "node_meshnet_node_hardware", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_hardware", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware_detect_hardware", "to": "node_meshnet_node_hardware_detect_ram_mb", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware_detect_ram_mb", "to": "node_meshnet_node_hardware_detect_windows_ram_mb", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware_rationale_11", "to": "node_meshnet_node_hardware_detect_ram_mb", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware_rationale_22", "to": "node_meshnet_node_hardware_detect_windows_ram_mb", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware_detect_hardware", "to": "node_meshnet_node_hardware_detect_windows_gpu_memory", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware_rationale_66", "to": "node_meshnet_node_hardware_detect_windows_gpu_memory", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware_detect_hardware", "to": "node_meshnet_node_hardware_detect_nvidia_smi_gpu_memory", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware_rationale_110", "to": "node_meshnet_node_hardware_detect_nvidia_smi_gpu_memory", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware_detect_hardware", "to": "node_meshnet_node_hardware_detect_torch_cuda_inventory", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware_rationale_128", "to": "node_meshnet_node_hardware_detect_torch_cuda_inventory", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware_detect_hardware", "to": "node_meshnet_node_hardware_torch_cuda_is_executable", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware_rationale_146", "to": "node_meshnet_node_hardware_torch_cuda_is_executable", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware_detect_hardware", "to": "node_meshnet_node_hardware_gpu_inventory_profile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware_rationale_176", "to": "node_meshnet_node_hardware_with_forced_cpu", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_hardware_with_forced_cpu", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_hardware_with_forced_cpu", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware_detect_hardware", "to": "node_meshnet_node_hardware_with_model_drive", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware_rationale_188", "to": "node_meshnet_node_hardware_with_model_drive", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware_rationale_199", "to": "node_meshnet_node_hardware_detect_hardware", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_hardware_detect_hardware", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_hardware_detect_hardware", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware_benchmark_throughput", "to": "node_meshnet_node_hardware_benchmark_throughput_checked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware_rationale_251", "to": "node_meshnet_node_hardware_benchmark_throughput_checked", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_hardware_benchmark_throughput_checked", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_hardware_benchmark_throughput_checked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_hardware_rationale_298", "to": "node_meshnet_node_hardware_benchmark_throughput", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_active_modules_for_shard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_build_quantization_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_cache_unsupported_for_shard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_call_layer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_causal_lm_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_checkpoint_tensor_name_for_model", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_config_candidates", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_decoder_attention_mask", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_embed_tokens", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_final_norm", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_finalize_active_shard_modules_on_device", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_insufficientvramerror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_int_tensor_header", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_kvcachemiss", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_load_partial_model_from_snapshot", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_load_torch_shard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_looks_like_oom", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_missingmodeldependencyerror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_model_layers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_model_load_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_model_state_dict_keys", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_modelbackenderror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_native_quantization_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_native_torch_dtype", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_partialmodelloadunsupported", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_position_embeddings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_position_ids", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_rotary_embedding_module", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_rotary_position_embeddings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_sessioncacheentry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_sessioncachestore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_should_partial_materialize_shard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_tailtokenresult", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_tensor_from_bfloat16_bytes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_tensor_from_int64_header", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_tensor_to_bytes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_tensorpayload", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_torch_cuda_is_executable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_torchmodelshard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_total_layers_for_local_snapshot", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_transformer_backbone", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_unsupportedrecipeparam", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_validate_quantization", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_backend_validate_recipe_params", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_model_catalog_layers_from_config", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_protocol_activationenvelope", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend", "to": "node_meshnet_node_safetensors_selection_select_tensor_names_for_layers_from_index", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_rationale_1", "to": "node_meshnet_node_model_backend", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_model_backend", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_embed_tokens", "to": "node_meshnet_node_model_backend_modelbackenderror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_insufficientvramerror", "to": "node_meshnet_node_model_backend_modelbackenderror", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_kvcachemiss", "to": "node_meshnet_node_model_backend_modelbackenderror", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_missingmodeldependencyerror", "to": "node_meshnet_node_model_backend_modelbackenderror", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_model_layers", "to": "node_meshnet_node_model_backend_modelbackenderror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_modelbackenderror", "to": "node_meshnet_node_model_backend_py_runtimeerror", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_modelbackenderror", "to": "node_meshnet_node_protocol_activationenvelope", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_model_backend_partialmodelloadunsupported", "to": "node_meshnet_node_model_backend_modelbackenderror", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_rationale_25", "to": "node_meshnet_node_model_backend_modelbackenderror", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_decode_tail_token", "to": "node_meshnet_node_model_backend_modelbackenderror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_encode_next_token", "to": "node_meshnet_node_model_backend_modelbackenderror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_encode_prompt", "to": "node_meshnet_node_model_backend_modelbackenderror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_generate_text", "to": "node_meshnet_node_model_backend_modelbackenderror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_generate_text_streaming", "to": "node_meshnet_node_model_backend_modelbackenderror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_transformer_backbone", "to": "node_meshnet_node_model_backend_modelbackenderror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_unsupportedrecipeparam", "to": "node_meshnet_node_model_backend_modelbackenderror", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_rationale_29", "to": "node_meshnet_node_model_backend_unsupportedrecipeparam", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_unsupportedrecipeparam", "to": "node_meshnet_node_protocol_activationenvelope", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_model_backend_validate_recipe_params", "to": "node_meshnet_node_model_backend_unsupportedrecipeparam", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_build_quantization_config", "to": "node_meshnet_node_model_backend_missingmodeldependencyerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_missingmodeldependencyerror", "to": "node_meshnet_node_protocol_activationenvelope", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_model_backend_rationale_33", "to": "node_meshnet_node_model_backend_missingmodeldependencyerror", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_init", "to": "node_meshnet_node_model_backend_missingmodeldependencyerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_model_backend_missingmodeldependencyerror", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_directhopclient", "to": "node_meshnet_node_model_backend_missingmodeldependencyerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_directrequestuncertainerror", "to": "node_meshnet_node_model_backend_missingmodeldependencyerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_pipelinecachemiss", "to": "node_meshnet_node_model_backend_missingmodeldependencyerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_relayhopclient", "to": "node_meshnet_node_model_backend_missingmodeldependencyerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_relayrequestuncertainerror", "to": "node_meshnet_node_model_backend_missingmodeldependencyerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_torchhandler", "to": "node_meshnet_node_model_backend_missingmodeldependencyerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_torchhttpserver", "to": "node_meshnet_node_model_backend_missingmodeldependencyerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver", "to": "node_meshnet_node_model_backend_missingmodeldependencyerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_model_backend_insufficientvramerror", "to": "node_meshnet_node_protocol_activationenvelope", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_model_backend_rationale_37", "to": "node_meshnet_node_model_backend_insufficientvramerror", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_init", "to": "node_meshnet_node_model_backend_insufficientvramerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_model_backend_insufficientvramerror", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_directhopclient", "to": "node_meshnet_node_model_backend_insufficientvramerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_directrequestuncertainerror", "to": "node_meshnet_node_model_backend_insufficientvramerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_pipelinecachemiss", "to": "node_meshnet_node_model_backend_insufficientvramerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_relayhopclient", "to": "node_meshnet_node_model_backend_insufficientvramerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_relayrequestuncertainerror", "to": "node_meshnet_node_model_backend_insufficientvramerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_torchhandler", "to": "node_meshnet_node_model_backend_insufficientvramerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_torchhttpserver", "to": "node_meshnet_node_model_backend_insufficientvramerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver", "to": "node_meshnet_node_model_backend_insufficientvramerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_model_backend_load_partial_model_from_snapshot", "to": "node_meshnet_node_model_backend_partialmodelloadunsupported", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_partialmodelloadunsupported", "to": "node_meshnet_node_protocol_activationenvelope", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_model_backend_rationale_41", "to": "node_meshnet_node_model_backend_partialmodelloadunsupported", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_kvcachemiss", "to": "node_meshnet_node_protocol_activationenvelope", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_model_backend_rationale_45", "to": "node_meshnet_node_model_backend_kvcachemiss", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_sessioncachestore_lookup", "to": "node_meshnet_node_model_backend_kvcachemiss", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_encode_next_token", "to": "node_meshnet_node_model_backend_kvcachemiss", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_run_layers_session", "to": "node_meshnet_node_model_backend_kvcachemiss", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_model_backend_kvcachemiss", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_directhopclient", "to": "node_meshnet_node_model_backend_kvcachemiss", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_directrequestuncertainerror", "to": "node_meshnet_node_model_backend_kvcachemiss", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_pipelinecachemiss", "to": "node_meshnet_node_model_backend_kvcachemiss", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_relayhopclient", "to": "node_meshnet_node_model_backend_kvcachemiss", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_relayrequestuncertainerror", "to": "node_meshnet_node_model_backend_kvcachemiss", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_torchhandler", "to": "node_meshnet_node_model_backend_kvcachemiss", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_torchhttpserver", "to": "node_meshnet_node_model_backend_kvcachemiss", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver", "to": "node_meshnet_node_model_backend_kvcachemiss", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_model_backend_rationale_53", "to": "node_meshnet_node_model_backend_torch_cuda_is_executable", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torch_cuda_is_executable", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_init", "to": "node_meshnet_node_model_backend_torch_cuda_is_executable", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_active_modules_for_shard", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_build_quantization_config", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_call_layer", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_causal_lm_config", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_checkpoint_tensor_name_for_model", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_config_candidates", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_decoder_attention_mask", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_embed_tokens", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_final_norm", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_finalize_active_shard_modules_on_device", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_int_tensor_header", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_load_partial_model_from_snapshot", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_load_torch_shard", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_model_layers", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_model_load_plan", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_model_state_dict_keys", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_native_quantization_config", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_native_torch_dtype", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_position_embeddings", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_position_ids", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_rotary_embedding_module", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_rotary_position_embeddings", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_sessioncachestore_init", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_sessioncachestore_store", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_tensor_from_bfloat16_bytes", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_tensor_from_int64_header", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_tensor_to_bytes", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_tensorpayload_to_envelope", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_decode_tail", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_decode_tail_token", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_init", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_new_session_cache", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_payload", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_run_layers", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_run_layers_session", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_total_layers_for_local_snapshot", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_transformer_backbone", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_validate_recipe_params", "to": "node_meshnet_node_model_backend_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_rationale_74", "to": "node_meshnet_node_model_backend_tensorpayload", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_tensorpayload", "to": "node_meshnet_node_model_backend_tensorpayload_from_envelope", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_tensorpayload", "to": "node_meshnet_node_model_backend_tensorpayload_to_envelope", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_tensorpayload", "to": "node_meshnet_node_protocol_activationenvelope", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_encode_next_token", "to": "node_meshnet_node_model_backend_tensorpayload", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_encode_prompt", "to": "node_meshnet_node_model_backend_tensorpayload", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_forward_bytes", "to": "node_meshnet_node_model_backend_tensorpayload", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_payload", "to": "node_meshnet_node_model_backend_tensorpayload", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol", "to": "node_meshnet_node_model_backend_tensorpayload", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_activationenvelope_to_tensor_payload", "to": "node_meshnet_node_model_backend_tensorpayload", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_namedtensor", "to": "node_meshnet_node_model_backend_tensorpayload", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_protocol_tensorfragment", "to": "node_meshnet_node_model_backend_tensorpayload", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_model_backend_tensorpayload_to_envelope", "to": "node_meshnet_node_protocol_activationenvelope_from_tensor_payload", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_rationale_145", "to": "node_meshnet_node_model_backend_tailtokenresult", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_tailtokenresult", "to": "node_meshnet_node_protocol_activationenvelope", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_decode_tail_token", "to": "node_meshnet_node_model_backend_tailtokenresult", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_forward_bytes", "to": "node_meshnet_node_model_backend_tailtokenresult", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_model_backend_tailtokenresult", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_directhopclient", "to": "node_meshnet_node_model_backend_tailtokenresult", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_directrequestuncertainerror", "to": "node_meshnet_node_model_backend_tailtokenresult", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_pipelinecachemiss", "to": "node_meshnet_node_model_backend_tailtokenresult", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_relayhopclient", "to": "node_meshnet_node_model_backend_tailtokenresult", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_relayrequestuncertainerror", "to": "node_meshnet_node_model_backend_tailtokenresult", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_torchhandler", "to": "node_meshnet_node_model_backend_tailtokenresult", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_torchhttpserver", "to": "node_meshnet_node_model_backend_tailtokenresult", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver", "to": "node_meshnet_node_model_backend_tailtokenresult", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_model_backend_rationale_157", "to": "node_meshnet_node_model_backend_sessioncacheentry", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_sessioncacheentry", "to": "node_meshnet_node_protocol_activationenvelope", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_model_backend_sessioncachestore_lookup", "to": "node_meshnet_node_model_backend_sessioncacheentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_sessioncachestore_store", "to": "node_meshnet_node_model_backend_sessioncacheentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_rationale_172", "to": "node_meshnet_node_model_backend_sessioncachestore", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_sessioncachestore", "to": "node_meshnet_node_model_backend_sessioncachestore_drop", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_sessioncachestore", "to": "node_meshnet_node_model_backend_sessioncachestore_evict_locked", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_sessioncachestore", "to": "node_meshnet_node_model_backend_sessioncachestore_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_sessioncachestore", "to": "node_meshnet_node_model_backend_sessioncachestore_len", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_sessioncachestore", "to": "node_meshnet_node_model_backend_sessioncachestore_lookup", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_sessioncachestore", "to": "node_meshnet_node_model_backend_sessioncachestore_store", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_sessioncachestore", "to": "node_meshnet_node_protocol_activationenvelope", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_init", "to": "node_meshnet_node_model_backend_sessioncachestore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_sessioncachestore_store", "to": "node_meshnet_node_model_backend_sessioncachestore_evict_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_run_layers_session", "to": "node_meshnet_node_model_backend_sessioncachestore_store", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_sessioncachestore_lookup", "to": "node_meshnet_node_model_backend_sessioncachestore_evict_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_encode_next_token", "to": "node_meshnet_node_model_backend_sessioncachestore_lookup", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_run_layers_session", "to": "node_meshnet_node_model_backend_sessioncachestore_lookup", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_release_session", "to": "node_meshnet_node_model_backend_sessioncachestore_drop", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_validate_quantization", "to": "quantization", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_model_backend_validate_quantization", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_load_backend", "to": "node_meshnet_node_model_backend_validate_quantization", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_build_quantization_config", "to": "quantization", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_load_torch_shard", "to": "quantization", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_model_load_plan", "to": "quantization", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_init", "to": "quantization", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_model_load_plan", "to": "node_meshnet_node_model_backend_build_quantization_config", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_rationale_256", "to": "node_meshnet_node_model_backend_build_quantization_config", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_load_torch_shard", "to": "node_meshnet_node_model_backend_torchmodelshard", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_rationale_277", "to": "node_meshnet_node_model_backend_torchmodelshard", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard", "to": "node_meshnet_node_model_backend_torchmodelshard_count_prompt_tokens", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard", "to": "node_meshnet_node_model_backend_torchmodelshard_count_text_tokens", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard", "to": "node_meshnet_node_model_backend_torchmodelshard_decode_tail", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard", "to": "node_meshnet_node_model_backend_torchmodelshard_decode_tail_token", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard", "to": "node_meshnet_node_model_backend_torchmodelshard_effective_start", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard", "to": "node_meshnet_node_model_backend_torchmodelshard_encode_messages", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard", "to": "node_meshnet_node_model_backend_torchmodelshard_encode_next_token", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard", "to": "node_meshnet_node_model_backend_torchmodelshard_encode_prompt", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard", "to": "node_meshnet_node_model_backend_torchmodelshard_eos_token_ids", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard", "to": "node_meshnet_node_model_backend_torchmodelshard_forward_bytes", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard", "to": "node_meshnet_node_model_backend_torchmodelshard_generate_text", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard", "to": "node_meshnet_node_model_backend_torchmodelshard_generate_text_streaming", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard", "to": "node_meshnet_node_model_backend_torchmodelshard_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard", "to": "node_meshnet_node_model_backend_torchmodelshard_new_session_cache", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard", "to": "node_meshnet_node_model_backend_torchmodelshard_payload", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard", "to": "node_meshnet_node_model_backend_torchmodelshard_release_session", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard", "to": "node_meshnet_node_model_backend_torchmodelshard_run_layers", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard", "to": "node_meshnet_node_model_backend_torchmodelshard_run_layers_session", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard", "to": "node_meshnet_node_protocol_activationenvelope", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_model_backend_torchmodelshard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_clamp_downstream_hops", "to": "node_meshnet_node_model_backend_torchmodelshard", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_directhopclient", "to": "node_meshnet_node_model_backend_torchmodelshard", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_directrequestuncertainerror", "to": "node_meshnet_node_model_backend_torchmodelshard", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_load_backend", "to": "node_meshnet_node_model_backend_torchmodelshard", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_pipelinecachemiss", "to": "node_meshnet_node_model_backend_torchmodelshard", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_relayhopclient", "to": "node_meshnet_node_model_backend_torchmodelshard", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_relayrequestuncertainerror", "to": "node_meshnet_node_model_backend_torchmodelshard", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_torchhandler", "to": "node_meshnet_node_model_backend_torchmodelshard", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_torchhandler_get_remaining_route", "to": "node_meshnet_node_model_backend_torchmodelshard", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_run_downstream_pipeline", "to": "node_meshnet_node_model_backend_torchmodelshard", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_send_openai_response", "to": "node_meshnet_node_model_backend_torchmodelshard", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhttpserver", "to": "node_meshnet_node_model_backend_torchmodelshard", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_torchhttpserver_init", "to": "node_meshnet_node_model_backend_torchmodelshard", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhttpserver_resolve_backend", "to": "node_meshnet_node_model_backend_torchmodelshard", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver", "to": "node_meshnet_node_model_backend_torchmodelshard", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver_backend", "to": "node_meshnet_node_model_backend_torchmodelshard", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver_backend_for", "to": "node_meshnet_node_model_backend_torchmodelshard", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver_init", "to": "node_meshnet_node_model_backend_torchmodelshard", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_init", "to": "node_meshnet_node_model_backend_embed_tokens", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_init", "to": "node_meshnet_node_model_backend_final_norm", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_init", "to": "node_meshnet_node_model_backend_load_partial_model_from_snapshot", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_init", "to": "node_meshnet_node_model_backend_looks_like_oom", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_init", "to": "node_meshnet_node_model_backend_model_layers", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_init", "to": "node_meshnet_node_model_backend_model_load_plan", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_init", "to": "node_meshnet_node_model_backend_position_embeddings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_init", "to": "node_meshnet_node_model_backend_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_init", "to": "node_meshnet_node_model_backend_should_partial_materialize_shard", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_init", "to": "node_meshnet_node_model_backend_total_layers_for_local_snapshot", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_init", "to": "node_meshnet_node_model_backend_validate_recipe_params", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_load_partial_model_from_snapshot", "to": "node_meshnet_node_model_backend_py_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_load_torch_shard", "to": "node_meshnet_node_model_backend_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_model_load_plan", "to": "node_meshnet_node_model_backend_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_should_partial_materialize_shard", "to": "node_meshnet_node_model_backend_py_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_total_layers_for_local_snapshot", "to": "node_meshnet_node_model_backend_py_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_encode_prompt", "to": "node_meshnet_node_model_backend_embed_tokens", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_encode_prompt", "to": "node_meshnet_node_model_backend_position_embeddings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_encode_prompt", "to": "node_meshnet_node_model_backend_position_ids", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_encode_prompt", "to": "node_meshnet_node_model_backend_torchmodelshard_payload", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_encode_prompt", "to": "node_meshnet_node_model_backend_torchmodelshard_run_layers_session", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_rationale_420", "to": "node_meshnet_node_model_backend_torchmodelshard_encode_next_token", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_encode_next_token", "to": "node_meshnet_node_model_backend_embed_tokens", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_encode_next_token", "to": "node_meshnet_node_model_backend_int_tensor_header", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_encode_next_token", "to": "node_meshnet_node_model_backend_position_embeddings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_encode_next_token", "to": "node_meshnet_node_model_backend_tensor_to_bytes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_encode_next_token", "to": "node_meshnet_node_model_backend_torchmodelshard_effective_start", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_encode_next_token", "to": "node_meshnet_node_model_backend_torchmodelshard_run_layers", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_forward_bytes", "to": "node_meshnet_node_model_backend_tensor_from_bfloat16_bytes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_forward_bytes", "to": "node_meshnet_node_model_backend_tensor_from_int64_header", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_forward_bytes", "to": "node_meshnet_node_model_backend_torchmodelshard_decode_tail_token", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_forward_bytes", "to": "node_meshnet_node_model_backend_torchmodelshard_payload", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_forward_bytes", "to": "node_meshnet_node_model_backend_torchmodelshard_run_layers_session", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_decode_tail", "to": "node_meshnet_node_model_backend_torchmodelshard_decode_tail_token", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_rationale_495", "to": "node_meshnet_node_model_backend_torchmodelshard_eos_token_ids", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_rationale_519", "to": "node_meshnet_node_model_backend_torchmodelshard_generate_text", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_generate_text", "to": "node_meshnet_node_model_backend_torchmodelshard_encode_messages", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_generate_text_streaming", "to": "node_meshnet_node_model_backend_torchmodelshard_generate_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_rationale_549", "to": "node_meshnet_node_model_backend_torchmodelshard_generate_text_streaming", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_generate_text_streaming", "to": "node_meshnet_node_model_backend_torchmodelshard_encode_messages", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_rationale_585", "to": "node_meshnet_node_model_backend_torchmodelshard_count_prompt_tokens", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_count_prompt_tokens", "to": "node_meshnet_node_model_backend_torchmodelshard_encode_messages", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_rationale_591", "to": "node_meshnet_node_model_backend_torchmodelshard_count_text_tokens", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_rationale_603", "to": "node_meshnet_node_model_backend_torchmodelshard_encode_messages", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_run_layers", "to": "node_meshnet_node_model_backend_torchmodelshard_effective_start", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_run_layers_session", "to": "node_meshnet_node_model_backend_torchmodelshard_effective_start", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_rationale_632", "to": "node_meshnet_node_model_backend_torchmodelshard_new_session_cache", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_run_layers_session", "to": "node_meshnet_node_model_backend_torchmodelshard_new_session_cache", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_rationale_658", "to": "node_meshnet_node_model_backend_torchmodelshard_run_layers_session", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_run_layers_session", "to": "node_meshnet_node_model_backend_cache_unsupported_for_shard", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_run_layers_session", "to": "node_meshnet_node_model_backend_torchmodelshard_run_layers", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_run_layers", "to": "node_meshnet_node_model_backend_call_layer", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_run_layers", "to": "node_meshnet_node_model_backend_decoder_attention_mask", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_run_layers", "to": "node_meshnet_node_model_backend_rotary_position_embeddings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_payload", "to": "node_meshnet_node_model_backend_int_tensor_header", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_torchmodelshard_payload", "to": "node_meshnet_node_model_backend_tensor_to_bytes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_rationale_771", "to": "node_meshnet_node_model_backend_validate_recipe_params", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_model_backend_load_torch_shard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_load_backend", "to": "node_meshnet_node_model_backend_load_torch_shard", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_total_layers_for_local_snapshot", "to": "node_meshnet_node_model_catalog_layers_from_config", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_load_partial_model_from_snapshot", "to": "node_meshnet_node_model_backend_causal_lm_config", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_load_partial_model_from_snapshot", "to": "node_meshnet_node_model_backend_checkpoint_tensor_name_for_model", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_load_partial_model_from_snapshot", "to": "node_meshnet_node_model_backend_finalize_active_shard_modules_on_device", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_load_partial_model_from_snapshot", "to": "node_meshnet_node_model_backend_model_state_dict_keys", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_load_partial_model_from_snapshot", "to": "node_meshnet_node_model_catalog_layers_from_config", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_load_partial_model_from_snapshot", "to": "node_meshnet_node_safetensors_selection_select_tensor_names_for_layers_from_index", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_finalize_active_shard_modules_on_device", "to": "node_meshnet_node_model_backend_active_modules_for_shard", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_rationale_962", "to": "node_meshnet_node_model_backend_finalize_active_shard_modules_on_device", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_model_load_plan", "to": "node_meshnet_node_model_backend_native_quantization_config", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_model_load_plan", "to": "node_meshnet_node_model_backend_native_torch_dtype", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_rationale_997", "to": "node_meshnet_node_model_backend_model_load_plan", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_native_quantization_config", "to": "node_meshnet_node_model_backend_config_candidates", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_native_torch_dtype", "to": "node_meshnet_node_model_backend_config_candidates", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_rationale_1050", "to": "node_meshnet_node_model_backend_causal_lm_config", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_rationale_1064", "to": "node_meshnet_node_model_backend_model_state_dict_keys", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_rationale_1075", "to": "node_meshnet_node_model_backend_checkpoint_tensor_name_for_model", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_embed_tokens", "to": "node_meshnet_node_model_backend_transformer_backbone", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_final_norm", "to": "node_meshnet_node_model_backend_transformer_backbone", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_model_layers", "to": "node_meshnet_node_model_backend_transformer_backbone", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_position_embeddings", "to": "node_meshnet_node_model_backend_transformer_backbone", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_rotary_embedding_module", "to": "node_meshnet_node_model_backend_transformer_backbone", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_active_modules_for_shard", "to": "node_meshnet_node_model_backend_model_layers", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_active_modules_for_shard", "to": "node_meshnet_node_model_backend_embed_tokens", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_active_modules_for_shard", "to": "node_meshnet_node_model_backend_position_embeddings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_active_modules_for_shard", "to": "node_meshnet_node_model_backend_rotary_embedding_module", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_rotary_position_embeddings", "to": "node_meshnet_node_model_backend_rotary_embedding_module", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_active_modules_for_shard", "to": "node_meshnet_node_model_backend_final_norm", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_rationale_1168", "to": "node_meshnet_node_model_backend_decoder_attention_mask", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_rationale_1194", "to": "node_meshnet_node_model_backend_rotary_position_embeddings", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_model_backend_tensor_from_bfloat16_bytes", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_run_downstream_pipeline", "to": "node_meshnet_node_model_backend_tensor_from_bfloat16_bytes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_looks_like_oom", "to": "node_meshnet_node_model_backend_py_baseexception", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_cache_unsupported_for_shard", "to": "node_meshnet_node_model_backend_py_baseexception", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_backend_rationale_1307", "to": "node_meshnet_node_model_backend_cache_unsupported_for_shard", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_catalog", "to": "node_meshnet_node_model_catalog_browse_hf_hub", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_catalog", "to": "node_meshnet_node_model_catalog_detect_num_layers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_catalog", "to": "node_meshnet_node_model_catalog_layers_from_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_catalog", "to": "node_meshnet_node_model_catalog_load_model_metadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_catalog", "to": "node_meshnet_node_model_catalog_local_model_path", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_catalog", "to": "node_meshnet_node_model_catalog_model_metadata_for", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_catalog", "to": "node_meshnet_node_model_catalog_modelpreset", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_catalog", "to": "node_meshnet_node_model_catalog_resolve_model_alias", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_catalog_rationale_1", "to": "node_meshnet_node_model_catalog", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_model_catalog", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard", "to": "node_meshnet_node_model_catalog", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_catalog_modelpreset", "to": "node_meshnet_node_model_catalog_modelpreset_fits_vram", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_catalog_modelpreset", "to": "node_meshnet_node_model_catalog_modelpreset_recommended_quant", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_catalog_modelpreset", "to": "node_meshnet_node_model_catalog_modelpreset_vram_for_quant", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_catalog_resolve_model_alias", "to": "node_meshnet_node_model_catalog_modelpreset", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard", "to": "node_meshnet_node_model_catalog_modelpreset", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard_ask_quant", "to": "node_meshnet_node_model_catalog_modelpreset", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_catalog_modelpreset_fits_vram", "to": "node_meshnet_node_model_catalog_modelpreset_vram_for_quant", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_catalog_rationale_25", "to": "node_meshnet_node_model_catalog_modelpreset_vram_for_quant", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_catalog_rationale_39", "to": "node_meshnet_node_model_catalog_modelpreset_recommended_quant", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_catalog_local_model_path", "to": "node_meshnet_node_model_catalog_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_catalog_model_metadata_for", "to": "node_meshnet_node_model_catalog_local_model_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_catalog_model_metadata_for", "to": "node_meshnet_node_model_catalog_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_catalog_rationale_185", "to": "node_meshnet_node_model_catalog_resolve_model_alias", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_catalog_detect_num_layers", "to": "node_meshnet_node_model_catalog_layers_from_config", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_catalog_model_metadata_for", "to": "node_meshnet_node_model_catalog_layers_from_config", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_catalog_rationale_195", "to": "node_meshnet_node_model_catalog_layers_from_config", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_model_catalog_layers_from_config", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_detect_num_layers", "to": "node_meshnet_node_model_catalog_layers_from_config", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_catalog_rationale_219", "to": "node_meshnet_node_model_catalog_detect_num_layers", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard", "to": "node_meshnet_node_model_catalog_detect_num_layers", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard_run_wizard", "to": "node_meshnet_node_model_catalog_detect_num_layers", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_catalog_rationale_237", "to": "node_meshnet_node_model_catalog_model_metadata_for", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_model_catalog_model_metadata_for", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_model_catalog_model_metadata_for", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_model_catalog_rationale_281", "to": "node_meshnet_node_model_catalog_browse_hf_hub", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard", "to": "node_meshnet_node_model_catalog_browse_hf_hub", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard_browse_hf_interactive", "to": "node_meshnet_node_model_catalog_browse_hf_hub", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend", "to": "node_meshnet_node_native_backend_immutableartifactpin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend", "to": "node_meshnet_node_native_backend_nativeidentityinputs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend", "to": "node_meshnet_node_native_backend_nativeloadedartifactreport", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend", "to": "node_meshnet_node_native_backend_nativenumericalrecipe", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend", "to": "node_meshnet_node_native_backend_nativesessionrejected", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend", "to": "node_meshnet_node_native_backend_nativeworkerbackendadapter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend", "to": "node_meshnet_node_native_backend_shard_identity_from_native_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend", "to": "node_meshnet_node_runtime_pin", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend", "to": "node_meshnet_node_runtime_pin_load_runtime_pin", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend", "to": "node_meshnet_node_runtime_recipe", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend", "to": "node_meshnet_node_runtime_recipe_artifactidentity", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend", "to": "node_meshnet_node_runtime_recipe_check_session_open", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend", "to": "node_meshnet_node_runtime_recipe_derivativebinding", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend", "to": "node_meshnet_node_runtime_recipe_handshake_error", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend", "to": "node_meshnet_node_runtime_recipe_recipeidentityerror", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend", "to": "node_meshnet_node_runtime_recipe_runtimerecipe", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend", "to": "node_meshnet_node_runtime_recipe_shardidentity", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend_rationale_1", "to": "node_meshnet_node_native_backend", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend_nativeloadedartifactreport", "to": "node_meshnet_node_native_backend_nativeloadedartifactreport_post_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend_nativeloadedartifactreport", "to": "node_meshnet_node_runtime_recipe_artifactidentity", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_native_backend_nativeloadedartifactreport", "to": "node_meshnet_node_runtime_recipe_derivativebinding", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_native_backend_nativeloadedartifactreport", "to": "node_meshnet_node_runtime_recipe_recipeidentityerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_native_backend_nativeloadedartifactreport", "to": "node_meshnet_node_runtime_recipe_runtimerecipe", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_native_backend_nativeloadedartifactreport", "to": "node_meshnet_node_runtime_recipe_shardidentity", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_native_backend_nativeworkerbackendadapter_loaded_artifact_report", "to": "node_meshnet_node_native_backend_nativeloadedartifactreport", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend_rationale_29", "to": "node_meshnet_node_native_backend_nativeloadedartifactreport", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend_nativeloadedartifactreport_post_init", "to": "recipeidentityerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend_immutableartifactpin", "to": "node_meshnet_node_runtime_recipe_artifactidentity", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_native_backend_immutableartifactpin", "to": "node_meshnet_node_runtime_recipe_derivativebinding", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_native_backend_immutableartifactpin", "to": "node_meshnet_node_runtime_recipe_recipeidentityerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_native_backend_immutableartifactpin", "to": "node_meshnet_node_runtime_recipe_runtimerecipe", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_native_backend_immutableartifactpin", "to": "node_meshnet_node_runtime_recipe_shardidentity", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_native_backend_rationale_57", "to": "node_meshnet_node_native_backend_immutableartifactpin", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend_nativenumericalrecipe", "to": "node_meshnet_node_runtime_recipe_artifactidentity", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_native_backend_nativenumericalrecipe", "to": "node_meshnet_node_runtime_recipe_derivativebinding", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_native_backend_nativenumericalrecipe", "to": "node_meshnet_node_runtime_recipe_recipeidentityerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_native_backend_nativenumericalrecipe", "to": "node_meshnet_node_runtime_recipe_runtimerecipe", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_native_backend_nativenumericalrecipe", "to": "node_meshnet_node_runtime_recipe_shardidentity", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_native_backend_rationale_67", "to": "node_meshnet_node_native_backend_nativenumericalrecipe", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend_nativeidentityinputs", "to": "node_meshnet_node_runtime_recipe_artifactidentity", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_native_backend_nativeidentityinputs", "to": "node_meshnet_node_runtime_recipe_derivativebinding", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_native_backend_nativeidentityinputs", "to": "node_meshnet_node_runtime_recipe_recipeidentityerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_native_backend_nativeidentityinputs", "to": "node_meshnet_node_runtime_recipe_runtimerecipe", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_native_backend_nativeidentityinputs", "to": "node_meshnet_node_runtime_recipe_shardidentity", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_native_backend_nativeworkerbackendadapter_init", "to": "node_meshnet_node_native_backend_nativeidentityinputs", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend_rationale_85", "to": "node_meshnet_node_native_backend_nativeidentityinputs", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend_shard_identity_from_native_report", "to": "node_meshnet_node_native_backend_nativeidentityinputs", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend_nativeworkerbackendadapter_init", "to": "node_meshnet_node_native_backend_shard_identity_from_native_report", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend_rationale_94", "to": "node_meshnet_node_native_backend_shard_identity_from_native_report", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend_shard_identity_from_native_report", "to": "node_meshnet_node_runtime_pin_load_runtime_pin", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend_shard_identity_from_native_report", "to": "node_meshnet_node_runtime_recipe_artifactidentity", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend_shard_identity_from_native_report", "to": "node_meshnet_node_runtime_recipe_recipeidentityerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend_shard_identity_from_native_report", "to": "node_meshnet_node_runtime_recipe_runtimerecipe", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend_shard_identity_from_native_report", "to": "node_meshnet_node_runtime_recipe_shardidentity", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend_shard_identity_from_native_report", "to": "recipeidentityerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend_nativesessionrejected", "to": "node_meshnet_node_native_backend_nativesessionrejected_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend_nativesessionrejected", "to": "node_meshnet_node_runtime_recipe_artifactidentity", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_native_backend_nativesessionrejected", "to": "node_meshnet_node_runtime_recipe_derivativebinding", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_native_backend_nativesessionrejected", "to": "node_meshnet_node_runtime_recipe_recipeidentityerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_native_backend_nativesessionrejected", "to": "node_meshnet_node_runtime_recipe_runtimerecipe", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_native_backend_nativesessionrejected", "to": "node_meshnet_node_runtime_recipe_shardidentity", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_native_backend_nativesessionrejected", "to": "recipeidentityerror", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend_nativeworkerbackendadapter_check_session_open", "to": "node_meshnet_node_native_backend_nativesessionrejected", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend_rationale_136", "to": "node_meshnet_node_native_backend_nativesessionrejected", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend_nativesessionrejected_init", "to": "node_meshnet_node_native_backend_nativeworkerbackendadapter_init", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend_nativeworkerbackendadapter", "to": "node_meshnet_node_native_backend_nativeworkerbackendadapter_check_session_open", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend_nativeworkerbackendadapter", "to": "node_meshnet_node_native_backend_nativeworkerbackendadapter_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend_nativeworkerbackendadapter", "to": "node_meshnet_node_native_backend_nativeworkerbackendadapter_loaded_artifact_report", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend_nativeworkerbackendadapter", "to": "node_meshnet_node_native_backend_nativeworkerbackendadapter_on_session_open", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend_nativeworkerbackendadapter", "to": "node_meshnet_node_runtime_recipe_artifactidentity", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_native_backend_nativeworkerbackendadapter", "to": "node_meshnet_node_runtime_recipe_derivativebinding", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_native_backend_nativeworkerbackendadapter", "to": "node_meshnet_node_runtime_recipe_recipeidentityerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_native_backend_nativeworkerbackendadapter", "to": "node_meshnet_node_runtime_recipe_runtimerecipe", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_native_backend_nativeworkerbackendadapter", "to": "node_meshnet_node_runtime_recipe_shardidentity", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_native_backend_rationale_144", "to": "node_meshnet_node_native_backend_nativeworkerbackendadapter", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend_nativeworkerbackendadapter_check_session_open", "to": "node_meshnet_node_runtime_recipe_handshake_error", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend_nativeworkerbackendadapter_on_session_open", "to": "node_meshnet_node_native_backend_nativeworkerbackendadapter_check_session_open", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend_rationale_161", "to": "node_meshnet_node_native_backend_nativeworkerbackendadapter_check_session_open", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_backend_rationale_179", "to": "node_meshnet_node_native_backend_nativeworkerbackendadapter_on_session_open", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_conformance", "to": "node_meshnet_node_native_protocol_init", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_init", "to": "node_meshnet_node_native_protocol_codec", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_init", "to": "node_meshnet_node_native_protocol_codec_checksum_of", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_init", "to": "node_meshnet_node_native_protocol_codec_crc32c", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_init", "to": "node_meshnet_node_native_protocol_codec_decode_bundle", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_init", "to": "node_meshnet_node_native_protocol_codec_decode_step_bundle", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_init", "to": "node_meshnet_node_native_protocol_codec_decode_tensor", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_init", "to": "node_meshnet_node_native_protocol_codec_default_flow_control", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_init", "to": "node_meshnet_node_native_protocol_codec_encode_bundle", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_init", "to": "node_meshnet_node_native_protocol_codec_encode_decode_step", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_init", "to": "node_meshnet_node_native_protocol_codec_encode_tensor", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_init", "to": "node_meshnet_node_native_protocol_codec_expected_bytes", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_init", "to": "node_meshnet_node_native_protocol_codec_itemsize", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_init", "to": "node_meshnet_node_native_protocol_codec_negotiate_flow_control", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_init", "to": "node_meshnet_node_native_protocol_codec_payloadcorrupt", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_init", "to": "node_meshnet_node_native_protocol_codec_plan_prefill_chunks", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_init", "to": "node_meshnet_node_native_protocol_codec_prefillchunk", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_init", "to": "node_meshnet_node_native_protocol_codec_protocolerror", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_init", "to": "node_meshnet_node_native_protocol_codec_validate_session_message_size", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_init", "to": "node_meshnet_node_native_protocol_codec_validate_tail_result", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_init", "to": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_init_rationale_1", "to": "node_meshnet_node_native_protocol_init", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec", "to": "node_meshnet_node_native_protocol_codec_checksum_of", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec", "to": "node_meshnet_node_native_protocol_codec_crc32c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec", "to": "node_meshnet_node_native_protocol_codec_decode_bundle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec", "to": "node_meshnet_node_native_protocol_codec_decode_step_bundle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec", "to": "node_meshnet_node_native_protocol_codec_decode_tensor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec", "to": "node_meshnet_node_native_protocol_codec_default_flow_control", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec", "to": "node_meshnet_node_native_protocol_codec_encode_bundle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec", "to": "node_meshnet_node_native_protocol_codec_encode_decode_step", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec", "to": "node_meshnet_node_native_protocol_codec_encode_tensor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec", "to": "node_meshnet_node_native_protocol_codec_expected_bytes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec", "to": "node_meshnet_node_native_protocol_codec_itemsize", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec", "to": "node_meshnet_node_native_protocol_codec_negotiate_flow_control", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec", "to": "node_meshnet_node_native_protocol_codec_payloadcorrupt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec", "to": "node_meshnet_node_native_protocol_codec_plan_prefill_chunks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec", "to": "node_meshnet_node_native_protocol_codec_prefillchunk", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec", "to": "node_meshnet_node_native_protocol_codec_protocolerror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec", "to": "node_meshnet_node_native_protocol_codec_validate_session_message_size", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec", "to": "node_meshnet_node_native_protocol_codec_validate_tail_result", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec", "to": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_rationale_1", "to": "node_meshnet_node_native_protocol_codec", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_conformance", "to": "node_meshnet_node_native_protocol_codec", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_decode_bundle", "to": "node_meshnet_node_native_protocol_codec_protocolerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_decode_step_bundle", "to": "node_meshnet_node_native_protocol_codec_protocolerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_decode_tensor", "to": "node_meshnet_node_native_protocol_codec_protocolerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_encode_bundle", "to": "node_meshnet_node_native_protocol_codec_protocolerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_encode_tensor", "to": "node_meshnet_node_native_protocol_codec_protocolerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_expected_bytes", "to": "node_meshnet_node_native_protocol_codec_protocolerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_itemsize", "to": "node_meshnet_node_native_protocol_codec_protocolerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_payloadcorrupt", "to": "node_meshnet_node_native_protocol_codec_protocolerror", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_plan_prefill_chunks", "to": "node_meshnet_node_native_protocol_codec_protocolerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_protocolerror", "to": "node_meshnet_node_native_protocol_codec_py_exception", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_rationale_72", "to": "node_meshnet_node_native_protocol_codec_protocolerror", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_validate_session_message_size", "to": "node_meshnet_node_native_protocol_codec_protocolerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_validate_tail_result", "to": "node_meshnet_node_native_protocol_codec_protocolerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_decode_tensor", "to": "node_meshnet_node_native_protocol_codec_payloadcorrupt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_rationale_76", "to": "node_meshnet_node_native_protocol_codec_payloadcorrupt", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_expected_bytes", "to": "node_meshnet_node_native_protocol_codec_itemsize", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_decode_tensor", "to": "node_meshnet_node_native_protocol_codec_expected_bytes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_encode_tensor", "to": "node_meshnet_node_native_protocol_codec_expected_bytes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_rationale_94", "to": "node_meshnet_node_native_protocol_codec_expected_bytes", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_conformance_canonical_payload", "to": "node_meshnet_node_native_protocol_codec_expected_bytes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_checksum_of", "to": "node_meshnet_node_native_protocol_codec_crc32c", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_decode_tensor", "to": "node_meshnet_node_native_protocol_codec_crc32c", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_checksum_of", "to": "checksum", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_encode_tensor", "to": "node_meshnet_node_native_protocol_codec_checksum_of", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_encode_tensor", "to": "node_meshnet_node_protocol_namedtensor", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_rationale_161", "to": "node_meshnet_node_native_protocol_codec_encode_tensor", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_conformance_canonical_decode_step", "to": "node_meshnet_node_native_protocol_codec_encode_tensor", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_conformance_canonical_session_request", "to": "node_meshnet_node_native_protocol_codec_encode_tensor", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_decode_bundle", "to": "node_meshnet_node_native_protocol_codec_decode_tensor", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_decode_tensor", "to": "node_meshnet_node_protocol_namedtensor", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_rationale_228", "to": "node_meshnet_node_native_protocol_codec_decode_tensor", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_decode_step_bundle", "to": "node_meshnet_node_native_protocol_codec_encode_bundle", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_encode_bundle", "to": "node_meshnet_node_protocol_namedtensor", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_encode_bundle", "to": "tensorbundle", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_conformance_canonical_decode_step", "to": "node_meshnet_node_native_protocol_codec_encode_bundle", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_conformance_canonical_session_request", "to": "node_meshnet_node_native_protocol_codec_encode_bundle", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_decode_bundle", "to": "tensorbundle", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_encode_decode_step", "to": "tensorbundle", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_decode_step_bundle", "to": "node_meshnet_node_native_protocol_codec_decode_bundle", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_rationale_365", "to": "node_meshnet_node_native_protocol_codec_decode_bundle", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_encode_decode_step", "to": "decodestep", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_rationale_412", "to": "node_meshnet_node_native_protocol_codec_encode_decode_step", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_decode_step_bundle", "to": "decodestep", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_rationale_428", "to": "node_meshnet_node_native_protocol_codec_validate_tail_result", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_validate_tail_result", "to": "tailresult", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_rationale_451", "to": "node_meshnet_node_native_protocol_codec_decode_step_bundle", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_rationale_481", "to": "node_meshnet_node_native_protocol_codec_validate_session_message_size", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_validate_session_message_size", "to": "node_meshnet_node_shard_lifecycle_sessionrequest", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_validate_session_message_size", "to": "sessionresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_plan_prefill_chunks", "to": "node_meshnet_node_native_protocol_codec_prefillchunk", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_prefillchunk", "to": "node_meshnet_node_native_protocol_codec_prefillchunk_chunk_info", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_prefillchunk", "to": "node_meshnet_node_native_protocol_codec_prefillchunk_final_chunk", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_prefillchunk", "to": "node_meshnet_node_native_protocol_codec_prefillchunk_position", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_rationale_506", "to": "node_meshnet_node_native_protocol_codec_prefillchunk", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_prefillchunk_chunk_info", "to": "chunkinfo", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_prefillchunk_position", "to": "positionspan", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_rationale_536", "to": "node_meshnet_node_native_protocol_codec_plan_prefill_chunks", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_default_flow_control", "to": "node_meshnet_node_shard_lifecycle_flowcontrol", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_conformance_canonical_capability_report", "to": "node_meshnet_node_native_protocol_codec_default_flow_control", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_negotiate_flow_control", "to": "node_meshnet_node_shard_lifecycle_flowcontrol", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_codec_rationale_573", "to": "node_meshnet_node_native_protocol_codec_negotiate_flow_control", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_conformance", "to": "node_meshnet_node_native_protocol_conformance_canonical_capability_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_conformance", "to": "node_meshnet_node_native_protocol_conformance_canonical_decode_step", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_conformance", "to": "node_meshnet_node_native_protocol_conformance_canonical_payload", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_conformance", "to": "node_meshnet_node_native_protocol_conformance_canonical_session_request", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_conformance", "to": "node_meshnet_node_native_protocol_conformance_serialize", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_conformance", "to": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_conformance_rationale_1", "to": "node_meshnet_node_native_protocol_conformance", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_conformance_canonical_session_request", "to": "node_meshnet_node_native_protocol_conformance_canonical_payload", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_conformance_rationale_63", "to": "node_meshnet_node_native_protocol_conformance_canonical_payload", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_conformance_canonical_session_request", "to": "node_meshnet_node_shard_lifecycle_sessionrequest", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_conformance_rationale_69", "to": "node_meshnet_node_native_protocol_conformance_canonical_session_request", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_conformance_rationale_113", "to": "node_meshnet_node_native_protocol_conformance_canonical_capability_report", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_conformance_canonical_decode_step", "to": "node_meshnet_node_shard_lifecycle_sessionrequest", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_conformance_rationale_141", "to": "node_meshnet_node_native_protocol_conformance_canonical_decode_step", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_conformance_rationale_165", "to": "node_meshnet_node_native_protocol_conformance_serialize", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc", "to": "node_meshnet_node_native_protocol_generated_init", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc", "to": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc", "to": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_add_shardruntimeservicer_to_server", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc", "to": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntime", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc", "to": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntimeservicer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc", "to": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntimestub", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_rationale_29", "to": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntimestub", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntimestub", "to": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntimestub_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_rationale_36", "to": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntimestub_init", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_rationale_69", "to": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntimeservicer", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntimeservicer", "to": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntimeservicer_cancel", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntimeservicer", "to": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntimeservicer_getcapability", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntimeservicer", "to": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntimeservicer_health", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntimeservicer", "to": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntimeservicer_release", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntimeservicer", "to": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntimeservicer_session", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_rationale_76", "to": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntimeservicer_getcapability", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_rationale_83", "to": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntimeservicer_health", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_rationale_90", "to": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntimeservicer_session", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_rationale_102", "to": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntimeservicer_release", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_rationale_109", "to": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntimeservicer_cancel", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_rationale_156", "to": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntime", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntime", "to": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntime_cancel", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntime", "to": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntime_getcapability", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntime", "to": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntime_health", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntime", "to": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntime_release", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntime", "to": "node_meshnet_node_native_protocol_generated_shard_runtime_pb2_grpc_shardruntime_session", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract", "to": "node_meshnet_node_performance_contract_baseline_from_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract", "to": "node_meshnet_node_performance_contract_canonical_sha256", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract", "to": "node_meshnet_node_performance_contract_cell", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract", "to": "node_meshnet_node_performance_contract_contractevaluation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract", "to": "node_meshnet_node_performance_contract_contractthresholds", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract", "to": "node_meshnet_node_performance_contract_decode_base64", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract", "to": "node_meshnet_node_performance_contract_evaluate_contract", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract", "to": "node_meshnet_node_performance_contract_evaluate_recipe", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract", "to": "node_meshnet_node_performance_contract_load_contract", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract", "to": "node_meshnet_node_performance_contract_parse_contract", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract", "to": "node_meshnet_node_performance_contract_performancecontract", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract", "to": "node_meshnet_node_performance_contract_performancecontracterror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract", "to": "node_meshnet_node_performance_contract_ratio", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract", "to": "node_meshnet_node_performance_contract_recipe_entries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract", "to": "node_meshnet_node_performance_contract_recipeevaluation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract", "to": "node_meshnet_node_performance_contract_report_signing_payload", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract", "to": "node_meshnet_node_performance_contract_resident_bytes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract", "to": "node_meshnet_node_performance_contract_validate_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract", "to": "node_meshnet_node_performance_contract_verify_real_provenance", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract", "to": "node_meshnet_node_recipe_benchmark", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract", "to": "node_meshnet_node_recipe_benchmark_lane", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_rationale_1", "to": "node_meshnet_node_performance_contract", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_performance_contract", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_decode_base64", "to": "node_meshnet_node_performance_contract_performancecontracterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_evaluate_contract", "to": "node_meshnet_node_performance_contract_performancecontracterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_load_contract", "to": "node_meshnet_node_performance_contract_performancecontracterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_parse_contract", "to": "node_meshnet_node_performance_contract_performancecontracterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_performancecontracterror", "to": "node_meshnet_node_performance_contract_py_valueerror", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_performancecontracterror", "to": "node_meshnet_node_recipe_benchmark_lane", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_performance_contract_rationale_53", "to": "node_meshnet_node_performance_contract_performancecontracterror", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_report_signing_payload", "to": "node_meshnet_node_performance_contract_performancecontracterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_validate_report", "to": "node_meshnet_node_performance_contract_performancecontracterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_verify_real_provenance", "to": "node_meshnet_node_performance_contract_performancecontracterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_contractthresholds", "to": "node_meshnet_node_performance_contract_contractthresholds_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_contractthresholds", "to": "node_meshnet_node_recipe_benchmark_lane", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_performance_contract_evaluate_recipe", "to": "node_meshnet_node_performance_contract_contractthresholds", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_parse_contract", "to": "node_meshnet_node_performance_contract_contractthresholds", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_rationale_58", "to": "node_meshnet_node_performance_contract_contractthresholds", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_evaluate_contract", "to": "node_meshnet_node_performance_contract_performancecontract", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_load_contract", "to": "node_meshnet_node_performance_contract_performancecontract", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_parse_contract", "to": "node_meshnet_node_performance_contract_performancecontract", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_performancecontract", "to": "node_meshnet_node_performance_contract_performancecontract_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_performancecontract", "to": "node_meshnet_node_recipe_benchmark_lane", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_performance_contract_rationale_95", "to": "node_meshnet_node_performance_contract_performancecontract", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_validate_report", "to": "node_meshnet_node_performance_contract_performancecontract", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_verify_real_provenance", "to": "node_meshnet_node_performance_contract_performancecontract", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_performancecontract_to_dict", "to": "node_meshnet_node_performance_contract_contractevaluation_to_dict", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_baseline_from_report", "to": "node_meshnet_node_performance_contract_recipe_entries", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_evaluate_contract", "to": "node_meshnet_node_performance_contract_recipe_entries", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_recipe_entries", "to": "node_meshnet_node_performance_contract_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_baseline_from_report", "to": "node_meshnet_node_performance_contract_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_canonical_sha256", "to": "node_meshnet_node_performance_contract_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_cell", "to": "node_meshnet_node_performance_contract_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_decode_base64", "to": "node_meshnet_node_performance_contract_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_evaluate_contract", "to": "node_meshnet_node_performance_contract_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_evaluate_recipe", "to": "node_meshnet_node_performance_contract_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_parse_contract", "to": "node_meshnet_node_performance_contract_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_report_signing_payload", "to": "node_meshnet_node_performance_contract_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_resident_bytes", "to": "node_meshnet_node_performance_contract_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_validate_report", "to": "node_meshnet_node_performance_contract_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_verify_real_provenance", "to": "node_meshnet_node_performance_contract_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_evaluate_recipe", "to": "node_meshnet_node_performance_contract_cell", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard_print_models_table", "to": "node_meshnet_node_performance_contract_cell", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_performance_contract_evaluate_recipe", "to": "node_meshnet_node_performance_contract_resident_bytes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_evaluate_recipe", "to": "node_meshnet_node_performance_contract_ratio", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_rationale_146", "to": "node_meshnet_node_performance_contract_ratio", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_baseline_from_report", "to": "node_meshnet_node_performance_contract_canonical_sha256", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_validate_report", "to": "node_meshnet_node_performance_contract_canonical_sha256", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_performance_contract_canonical_sha256", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_run_profiled_benchmark", "to": "node_meshnet_node_performance_contract_canonical_sha256", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_rationale_158", "to": "node_meshnet_node_performance_contract_report_signing_payload", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_verify_real_provenance", "to": "node_meshnet_node_performance_contract_report_signing_payload", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_performance_contract_report_signing_payload", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_sign_report", "to": "node_meshnet_node_performance_contract_report_signing_payload", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_verify_real_provenance", "to": "node_meshnet_node_performance_contract_decode_base64", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_validate_report", "to": "node_meshnet_node_performance_contract_verify_real_provenance", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_evaluate_contract", "to": "node_meshnet_node_performance_contract_validate_report", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_rationale_218", "to": "node_meshnet_node_performance_contract_validate_report", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_evaluate_recipe", "to": "node_meshnet_node_performance_contract_recipeevaluation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_rationale_473", "to": "node_meshnet_node_performance_contract_recipeevaluation", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_recipeevaluation", "to": "node_meshnet_node_performance_contract_recipeevaluation_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_recipeevaluation", "to": "node_meshnet_node_recipe_benchmark_lane", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_performance_contract_contractevaluation", "to": "node_meshnet_node_performance_contract_contractevaluation_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_contractevaluation", "to": "node_meshnet_node_recipe_benchmark_lane", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_performance_contract_evaluate_contract", "to": "node_meshnet_node_performance_contract_contractevaluation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_rationale_495", "to": "node_meshnet_node_performance_contract_contractevaluation", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_parse_contract", "to": "node_meshnet_node_performance_contract_contractevaluation_to_dict", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_evaluate_contract", "to": "node_meshnet_node_performance_contract_evaluate_recipe", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_rationale_681", "to": "node_meshnet_node_performance_contract_evaluate_contract", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_load_contract", "to": "node_meshnet_node_performance_contract_parse_contract", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_rationale_776", "to": "node_meshnet_node_performance_contract_parse_contract", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_load_contract", "to": "node_meshnet_node_performance_contract_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_rationale_831", "to": "node_meshnet_node_performance_contract_load_contract", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_performance_contract_rationale_848", "to": "node_meshnet_node_performance_contract_baseline_from_report", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol", "to": "node_meshnet_node_protocol_activationenvelope", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol", "to": "node_meshnet_node_protocol_canonical_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol", "to": "node_meshnet_node_protocol_fragment_bytes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol", "to": "node_meshnet_node_protocol_namedtensor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol", "to": "node_meshnet_node_protocol_normalize_shape", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol", "to": "node_meshnet_node_protocol_sha256_hex", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol", "to": "node_meshnet_node_protocol_tensorfragment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_rationale_1", "to": "node_meshnet_node_protocol", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_activationenvelope_to_bytes", "to": "node_meshnet_node_protocol_canonical_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_canonical_json", "to": "node_meshnet_node_protocol_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_activationenvelope_from_tensor_payload", "to": "node_meshnet_node_protocol_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_activationenvelope_to_dict", "to": "node_meshnet_node_protocol_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_activationenvelope_to_tensor_payload", "to": "node_meshnet_node_protocol_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_namedtensor_from_bytes", "to": "node_meshnet_node_protocol_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_namedtensor_from_dict", "to": "node_meshnet_node_protocol_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_namedtensor_to_dict", "to": "node_meshnet_node_protocol_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_tensorfragment_from_bytes", "to": "node_meshnet_node_protocol_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_tensorfragment_from_dict", "to": "node_meshnet_node_protocol_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_tensorfragment_to_dict", "to": "node_meshnet_node_protocol_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_namedtensor_body", "to": "node_meshnet_node_protocol_sha256_hex", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_namedtensor_from_bytes", "to": "node_meshnet_node_protocol_sha256_hex", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_tensorfragment_from_bytes", "to": "node_meshnet_node_protocol_sha256_hex", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_tensorfragment_from_dict", "to": "node_meshnet_node_protocol_sha256_hex", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_tensorfragment_validate", "to": "node_meshnet_node_protocol_sha256_hex", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_namedtensor_from_bytes", "to": "node_meshnet_node_protocol_normalize_shape", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_namedtensor_from_dict", "to": "node_meshnet_node_protocol_normalize_shape", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_namedtensor_from_bytes", "to": "node_meshnet_node_protocol_fragment_bytes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_rationale_46", "to": "node_meshnet_node_protocol_tensorfragment", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_tensorfragment", "to": "node_meshnet_node_protocol_tensorfragment_from_bytes", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_tensorfragment", "to": "node_meshnet_node_protocol_tensorfragment_from_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_tensorfragment", "to": "node_meshnet_node_protocol_tensorfragment_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_tensorfragment", "to": "node_meshnet_node_protocol_tensorfragment_validate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_namedtensor_from_bytes", "to": "node_meshnet_node_protocol_tensorfragment_from_bytes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_namedtensor_from_dict", "to": "node_meshnet_node_protocol_tensorfragment_from_dict", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_tensorfragment_from_dict", "to": "node_meshnet_node_protocol_activationenvelope_validate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_activationenvelope_tensor", "to": "node_meshnet_node_protocol_namedtensor", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_namedtensor", "to": "node_meshnet_node_protocol_namedtensor_body", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_namedtensor", "to": "node_meshnet_node_protocol_namedtensor_from_bytes", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_namedtensor", "to": "node_meshnet_node_protocol_namedtensor_from_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_namedtensor", "to": "node_meshnet_node_protocol_namedtensor_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_namedtensor", "to": "node_meshnet_node_protocol_namedtensor_validate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_rationale_104", "to": "node_meshnet_node_protocol_namedtensor", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_activationenvelope_from_tensor_payload", "to": "node_meshnet_node_protocol_namedtensor_from_bytes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_activationenvelope_to_tensor_payload", "to": "node_meshnet_node_protocol_namedtensor_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_namedtensor_validate", "to": "node_meshnet_node_protocol_namedtensor_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_namedtensor_validate", "to": "node_meshnet_node_protocol_activationenvelope_validate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_namedtensor_to_dict", "to": "node_meshnet_node_protocol_activationenvelope_to_dict", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_activationenvelope_from_bytes", "to": "node_meshnet_node_protocol_namedtensor_from_dict", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_namedtensor_from_dict", "to": "node_meshnet_node_protocol_activationenvelope_validate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_activationenvelope", "to": "node_meshnet_node_protocol_activationenvelope_from_bytes", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_activationenvelope", "to": "node_meshnet_node_protocol_activationenvelope_from_tensor_payload", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_activationenvelope", "to": "node_meshnet_node_protocol_activationenvelope_tensor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_activationenvelope", "to": "node_meshnet_node_protocol_activationenvelope_to_bytes", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_activationenvelope", "to": "node_meshnet_node_protocol_activationenvelope_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_activationenvelope", "to": "node_meshnet_node_protocol_activationenvelope_to_tensor_payload", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_activationenvelope", "to": "node_meshnet_node_protocol_activationenvelope_validate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_rationale_197", "to": "node_meshnet_node_protocol_activationenvelope", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_activationenvelope_to_tensor_payload", "to": "node_meshnet_node_protocol_activationenvelope_tensor", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_activationenvelope_to_bytes", "to": "node_meshnet_node_protocol_activationenvelope_to_dict", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_protocol_activationenvelope_from_bytes", "to": "node_meshnet_node_protocol_activationenvelope_validate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark", "to": "node_meshnet_node_recipe_benchmark_benchmarkerror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark", "to": "node_meshnet_node_recipe_benchmark_benchmarkplan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark", "to": "node_meshnet_node_recipe_benchmark_build_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark", "to": "node_meshnet_node_recipe_benchmark_compute_drift", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark", "to": "node_meshnet_node_recipe_benchmark_concurrencymetrics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark", "to": "node_meshnet_node_recipe_benchmark_driftreport", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark", "to": "node_meshnet_node_recipe_benchmark_first_divergence", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark", "to": "node_meshnet_node_recipe_benchmark_format_summary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark", "to": "node_meshnet_node_recipe_benchmark_generationsample", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark", "to": "node_meshnet_node_recipe_benchmark_lane", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark", "to": "node_meshnet_node_recipe_benchmark_loadstats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark", "to": "node_meshnet_node_recipe_benchmark_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark", "to": "node_meshnet_node_recipe_benchmark_mean", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark", "to": "node_meshnet_node_recipe_benchmark_measure_recipe", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark", "to": "node_meshnet_node_recipe_benchmark_peakmemory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark", "to": "node_meshnet_node_recipe_benchmark_percentile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark", "to": "node_meshnet_node_recipe_benchmark_promptspec", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark", "to": "node_meshnet_node_recipe_benchmark_py_enum", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark", "to": "node_meshnet_node_recipe_benchmark_recipedriver", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark", "to": "node_meshnet_node_recipe_benchmark_recipemeasurement", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark", "to": "node_meshnet_node_recipe_benchmark_recipespec", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark", "to": "node_meshnet_node_recipe_benchmark_requestoutcome", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark", "to": "node_meshnet_node_recipe_benchmark_run_request", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark", "to": "node_meshnet_node_recipe_benchmark_samplingpolicy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark", "to": "node_meshnet_node_recipe_benchmark_summarize_concurrency", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark", "to": "node_meshnet_node_recipe_drivers_run_configured_benchmark", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark", "to": "node_meshnet_node_recipe_drivers_run_configured_gpu_diagnostic", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_rationale_1", "to": "node_meshnet_node_recipe_benchmark", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_benchmark", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_lane", "to": "node_meshnet_node_recipe_benchmark_py_enum", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_lane", "to": "node_meshnet_node_recipe_benchmark_py_str", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_rationale_45", "to": "node_meshnet_node_recipe_benchmark_lane", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_benchmark_lane", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver", "to": "node_meshnet_node_recipe_benchmark_lane", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_recipe_drivers_recipe_from_config", "to": "node_meshnet_node_recipe_benchmark_lane", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_transformersdriver", "to": "node_meshnet_node_recipe_benchmark_lane", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_recipe_benchmark_benchmarkerror", "to": "node_meshnet_node_recipe_benchmark_py_runtimeerror", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_benchmarkplan_post_init", "to": "node_meshnet_node_recipe_benchmark_benchmarkerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_build_report", "to": "node_meshnet_node_recipe_benchmark_benchmarkerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_rationale_59", "to": "node_meshnet_node_recipe_benchmark_benchmarkerror", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_benchmark_benchmarkerror", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_artifact_sha256", "to": "node_meshnet_node_recipe_benchmark_benchmarkerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_build_driver", "to": "node_meshnet_node_recipe_benchmark_benchmarkerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_gpu_offload_evidence", "to": "node_meshnet_node_recipe_benchmark_benchmarkerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver", "to": "node_meshnet_node_recipe_benchmark_benchmarkerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver_await_health", "to": "node_meshnet_node_recipe_benchmark_benchmarkerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver_generate", "to": "node_meshnet_node_recipe_benchmark_benchmarkerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver_load", "to": "node_meshnet_node_recipe_benchmark_benchmarkerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_load_evidence_signing_key", "to": "node_meshnet_node_recipe_benchmark_benchmarkerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_producer_for_profile", "to": "node_meshnet_node_recipe_benchmark_benchmarkerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_require_real_inference", "to": "node_meshnet_node_recipe_benchmark_benchmarkerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_run_profiled_benchmark", "to": "node_meshnet_node_recipe_benchmark_benchmarkerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_transformersdriver", "to": "node_meshnet_node_recipe_benchmark_benchmarkerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_recipe_drivers_transformersdriver_generate", "to": "node_meshnet_node_recipe_benchmark_benchmarkerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_transformersdriver_load", "to": "node_meshnet_node_recipe_benchmark_benchmarkerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_transformersdriver_select", "to": "node_meshnet_node_recipe_benchmark_benchmarkerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_validate_config", "to": "node_meshnet_node_recipe_benchmark_benchmarkerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_rationale_64", "to": "node_meshnet_node_recipe_benchmark_samplingpolicy", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_recipedriver_generate", "to": "node_meshnet_node_recipe_benchmark_samplingpolicy", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_run_request", "to": "node_meshnet_node_recipe_benchmark_samplingpolicy", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_samplingpolicy", "to": "node_meshnet_node_recipe_benchmark_samplingpolicy_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_benchmark_samplingpolicy", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver", "to": "node_meshnet_node_recipe_benchmark_samplingpolicy", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver_generate", "to": "node_meshnet_node_recipe_benchmark_samplingpolicy", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_plan_from_config", "to": "node_meshnet_node_recipe_benchmark_samplingpolicy", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_transformersdriver", "to": "node_meshnet_node_recipe_benchmark_samplingpolicy", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_recipe_drivers_transformersdriver_generate", "to": "node_meshnet_node_recipe_benchmark_samplingpolicy", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_transformersdriver_select", "to": "node_meshnet_node_recipe_benchmark_samplingpolicy", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_promptspec", "to": "node_meshnet_node_recipe_benchmark_promptspec_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_rationale_83", "to": "node_meshnet_node_recipe_benchmark_promptspec", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_run_request", "to": "node_meshnet_node_recipe_benchmark_promptspec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_benchmark_promptspec", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver", "to": "node_meshnet_node_recipe_benchmark_promptspec", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_recipe_drivers_plan_from_config", "to": "node_meshnet_node_recipe_benchmark_promptspec", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_transformersdriver", "to": "node_meshnet_node_recipe_benchmark_promptspec", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_recipe_benchmark_benchmarkplan", "to": "node_meshnet_node_recipe_benchmark_benchmarkplan_post_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_benchmarkplan", "to": "node_meshnet_node_recipe_benchmark_benchmarkplan_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_build_report", "to": "node_meshnet_node_recipe_benchmark_benchmarkplan", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_measure_recipe", "to": "node_meshnet_node_recipe_benchmark_benchmarkplan", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_rationale_95", "to": "node_meshnet_node_recipe_benchmark_benchmarkplan", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_benchmark_benchmarkplan", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_build_driver", "to": "node_meshnet_node_recipe_benchmark_benchmarkplan", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver", "to": "node_meshnet_node_recipe_benchmark_benchmarkplan", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_recipe_drivers_plan_from_config", "to": "node_meshnet_node_recipe_benchmark_benchmarkplan", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_transformersdriver", "to": "node_meshnet_node_recipe_benchmark_benchmarkplan", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_recipe_benchmark_benchmarkplan_to_dict", "to": "node_meshnet_node_recipe_benchmark_driftreport_to_dict", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_measure_recipe", "to": "node_meshnet_node_recipe_benchmark_recipespec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_rationale_137", "to": "node_meshnet_node_recipe_benchmark_recipespec", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_recipespec", "to": "node_meshnet_node_recipe_benchmark_recipespec_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_run_request", "to": "node_meshnet_node_recipe_benchmark_recipespec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_benchmark_recipespec", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver", "to": "node_meshnet_node_recipe_benchmark_recipespec", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_recipe_drivers_recipe_from_config", "to": "node_meshnet_node_recipe_benchmark_recipespec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_transformersdriver", "to": "node_meshnet_node_recipe_benchmark_recipespec", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_recipe_benchmark_loadstats", "to": "node_meshnet_node_recipe_benchmark_loadstats_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_rationale_165", "to": "node_meshnet_node_recipe_benchmark_loadstats", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_recipedriver_load", "to": "node_meshnet_node_recipe_benchmark_loadstats", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_benchmark_loadstats", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver", "to": "node_meshnet_node_recipe_benchmark_loadstats", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver_load", "to": "node_meshnet_node_recipe_benchmark_loadstats", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_run_profiled_benchmark", "to": "node_meshnet_node_recipe_benchmark_loadstats", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_transformersdriver", "to": "node_meshnet_node_recipe_benchmark_loadstats", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_recipe_drivers_transformersdriver_load", "to": "node_meshnet_node_recipe_benchmark_loadstats", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_rationale_179", "to": "node_meshnet_node_recipe_benchmark_generationsample", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_recipedriver_generate", "to": "node_meshnet_node_recipe_benchmark_generationsample", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_benchmark_generationsample", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver", "to": "node_meshnet_node_recipe_benchmark_generationsample", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver_generate", "to": "node_meshnet_node_recipe_benchmark_generationsample", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_transformersdriver", "to": "node_meshnet_node_recipe_benchmark_generationsample", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_recipe_drivers_transformersdriver_generate", "to": "node_meshnet_node_recipe_benchmark_generationsample", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_measure_recipe", "to": "node_meshnet_node_recipe_benchmark_recipedriver", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_peakmemory_init", "to": "node_meshnet_node_recipe_benchmark_recipedriver", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_rationale_199", "to": "node_meshnet_node_recipe_benchmark_recipedriver", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_recipedriver", "to": "node_meshnet_node_recipe_benchmark_recipedriver_close", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_recipedriver", "to": "node_meshnet_node_recipe_benchmark_recipedriver_generate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_recipedriver", "to": "node_meshnet_node_recipe_benchmark_recipedriver_load", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_recipedriver", "to": "node_meshnet_node_recipe_benchmark_recipedriver_memory_probe", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_recipedriver", "to": "protocol", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_run_request", "to": "node_meshnet_node_recipe_benchmark_recipedriver", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_measure_recipe", "to": "node_meshnet_node_recipe_benchmark_recipedriver_load", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_rationale_202", "to": "node_meshnet_node_recipe_benchmark_recipedriver_load", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_measure_recipe", "to": "node_meshnet_node_recipe_benchmark_recipedriver_generate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_rationale_205", "to": "node_meshnet_node_recipe_benchmark_recipedriver_generate", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_run_request", "to": "node_meshnet_node_recipe_benchmark_recipedriver_generate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_peakmemory_sample", "to": "node_meshnet_node_recipe_benchmark_recipedriver_memory_probe", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_rationale_208", "to": "node_meshnet_node_recipe_benchmark_recipedriver_memory_probe", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_measure_recipe", "to": "node_meshnet_node_recipe_benchmark_recipedriver_close", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_rationale_216", "to": "node_meshnet_node_recipe_benchmark_requestoutcome", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_requestoutcome", "to": "node_meshnet_node_recipe_benchmark_requestoutcome_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_run_request", "to": "node_meshnet_node_recipe_benchmark_requestoutcome", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_summarize_concurrency", "to": "node_meshnet_node_recipe_benchmark_requestoutcome", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_rationale_243", "to": "node_meshnet_node_recipe_benchmark_percentile", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_summarize_concurrency", "to": "node_meshnet_node_recipe_benchmark_percentile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_compute_drift", "to": "node_meshnet_node_recipe_benchmark_mean", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_summarize_concurrency", "to": "node_meshnet_node_recipe_benchmark_mean", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_concurrencymetrics", "to": "node_meshnet_node_recipe_benchmark_concurrencymetrics_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_rationale_257", "to": "node_meshnet_node_recipe_benchmark_concurrencymetrics", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_summarize_concurrency", "to": "node_meshnet_node_recipe_benchmark_concurrencymetrics", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_measure_recipe", "to": "node_meshnet_node_recipe_benchmark_summarize_concurrency", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_rationale_288", "to": "node_meshnet_node_recipe_benchmark_summarize_concurrency", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_build_report", "to": "node_meshnet_node_recipe_benchmark_recipemeasurement", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_compute_drift", "to": "node_meshnet_node_recipe_benchmark_recipemeasurement", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_measure_recipe", "to": "node_meshnet_node_recipe_benchmark_recipemeasurement", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_rationale_328", "to": "node_meshnet_node_recipe_benchmark_recipemeasurement", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_recipemeasurement", "to": "node_meshnet_node_recipe_benchmark_recipemeasurement_available", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_recipemeasurement", "to": "node_meshnet_node_recipe_benchmark_recipemeasurement_outputs_by_prompt", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_recipemeasurement", "to": "node_meshnet_node_recipe_benchmark_recipemeasurement_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_benchmark_recipemeasurement", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver", "to": "node_meshnet_node_recipe_benchmark_recipemeasurement", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_recipe_drivers_run_profiled_benchmark", "to": "node_meshnet_node_recipe_benchmark_recipemeasurement", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_transformersdriver", "to": "node_meshnet_node_recipe_benchmark_recipemeasurement", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_recipe_benchmark_compute_drift", "to": "node_meshnet_node_recipe_benchmark_recipemeasurement_outputs_by_prompt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_rationale_341", "to": "node_meshnet_node_recipe_benchmark_recipemeasurement_outputs_by_prompt", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_recipemeasurement_to_dict", "to": "node_meshnet_node_recipe_benchmark_driftreport_to_dict", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_compute_drift", "to": "node_meshnet_node_recipe_benchmark_driftreport", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_driftreport", "to": "node_meshnet_node_recipe_benchmark_driftreport_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_rationale_370", "to": "node_meshnet_node_recipe_benchmark_driftreport", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_build_report", "to": "node_meshnet_node_recipe_benchmark_driftreport_to_dict", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_compute_drift", "to": "node_meshnet_node_recipe_benchmark_first_divergence", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_rationale_400", "to": "node_meshnet_node_recipe_benchmark_first_divergence", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_build_report", "to": "node_meshnet_node_recipe_benchmark_compute_drift", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_rationale_411", "to": "node_meshnet_node_recipe_benchmark_compute_drift", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_measure_recipe", "to": "node_meshnet_node_recipe_benchmark_peakmemory", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_peakmemory", "to": "node_meshnet_node_recipe_benchmark_peakmemory_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_peakmemory", "to": "node_meshnet_node_recipe_benchmark_peakmemory_sample", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_peakmemory", "to": "node_meshnet_node_recipe_benchmark_peakmemory_sample_until", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_rationale_447", "to": "node_meshnet_node_recipe_benchmark_peakmemory", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_run_request", "to": "node_meshnet_node_recipe_benchmark_peakmemory", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_measure_recipe", "to": "node_meshnet_node_recipe_benchmark_peakmemory_sample", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_peakmemory_sample_until", "to": "node_meshnet_node_recipe_benchmark_peakmemory_sample", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_run_request", "to": "node_meshnet_node_recipe_benchmark_peakmemory_sample", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_peakmemory_sample_until", "to": "node_meshnet_node_recipe_benchmark_py_event", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_rationale_463", "to": "node_meshnet_node_recipe_benchmark_peakmemory_sample_until", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_measure_recipe", "to": "node_meshnet_node_recipe_benchmark_py_event", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_measure_recipe", "to": "node_meshnet_node_recipe_benchmark_run_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_rationale_516", "to": "node_meshnet_node_recipe_benchmark_measure_recipe", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_benchmark_measure_recipe", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_run_profiled_benchmark", "to": "node_meshnet_node_recipe_benchmark_measure_recipe", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_build_report", "to": "node_meshnet_node_recipe_benchmark_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_rationale_586", "to": "node_meshnet_node_recipe_benchmark_build_report", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_benchmark_build_report", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_run_profiled_benchmark", "to": "node_meshnet_node_recipe_benchmark_build_report", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_main", "to": "node_meshnet_node_recipe_benchmark_format_summary", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_benchmark_rationale_626", "to": "node_meshnet_node_recipe_benchmark_format_summary", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_drivers_artifact_sha256", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_drivers_build_driver", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_drivers_directory_bytes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_drivers_free_port", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_drivers_gpu_layer_config_detail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_drivers_gpu_offload_evidence", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_drivers_host_manifest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_drivers_llamacppserverdriver", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_drivers_load_evidence_signing_key", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_drivers_plan_from_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_drivers_process_rss", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_drivers_producer_for_profile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_drivers_real_inference_enabled", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_drivers_recipe_from_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_drivers_require_real_inference", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_drivers_run_configured_benchmark", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_drivers_run_configured_gpu_diagnostic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_drivers_run_profiled_benchmark", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_drivers_sign_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_drivers_transformersdriver", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_drivers_utc_now", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers", "to": "node_meshnet_node_recipe_drivers_validate_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_rationale_1", "to": "node_meshnet_node_recipe_drivers", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_rationale_73", "to": "node_meshnet_node_recipe_drivers_real_inference_enabled", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_require_real_inference", "to": "node_meshnet_node_recipe_drivers_real_inference_enabled", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_run_profiled_benchmark", "to": "node_meshnet_node_recipe_drivers_require_real_inference", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_load_evidence_signing_key", "to": "ed25519privatekey", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_load_evidence_signing_key", "to": "node_meshnet_node_recipe_drivers_py_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_run_profiled_benchmark", "to": "node_meshnet_node_recipe_drivers_load_evidence_signing_key", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_sign_report", "to": "ed25519privatekey", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_run_profiled_benchmark", "to": "node_meshnet_node_recipe_drivers_utc_now", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_run_profiled_benchmark", "to": "node_meshnet_node_recipe_drivers_sign_report", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_sign_report", "to": "node_meshnet_node_recipe_drivers_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_build_driver", "to": "node_meshnet_node_recipe_drivers_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_host_manifest", "to": "node_meshnet_node_recipe_drivers_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_plan_from_config", "to": "node_meshnet_node_recipe_drivers_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_recipe_from_config", "to": "node_meshnet_node_recipe_drivers_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_run_configured_benchmark", "to": "node_meshnet_node_recipe_drivers_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_run_configured_gpu_diagnostic", "to": "node_meshnet_node_recipe_drivers_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_run_profiled_benchmark", "to": "node_meshnet_node_recipe_drivers_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_transformersdriver_select", "to": "node_meshnet_node_recipe_drivers_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_validate_config", "to": "node_meshnet_node_recipe_drivers_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver_load", "to": "node_meshnet_node_recipe_drivers_process_rss", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver_memory_probe", "to": "node_meshnet_node_recipe_drivers_process_rss", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_rationale_116", "to": "node_meshnet_node_recipe_drivers_process_rss", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_transformersdriver_load", "to": "node_meshnet_node_recipe_drivers_process_rss", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_transformersdriver_memory_probe", "to": "node_meshnet_node_recipe_drivers_process_rss", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_directory_bytes", "to": "node_meshnet_node_recipe_drivers_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_transformersdriver_load", "to": "node_meshnet_node_recipe_drivers_directory_bytes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_artifact_sha256", "to": "node_meshnet_node_recipe_drivers_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_host_manifest", "to": "node_meshnet_node_recipe_drivers_py_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver_init", "to": "node_meshnet_node_recipe_drivers_py_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_transformersdriver_init", "to": "node_meshnet_node_recipe_drivers_py_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_validate_config", "to": "node_meshnet_node_recipe_drivers_py_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_host_manifest", "to": "node_meshnet_node_recipe_drivers_artifact_sha256", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver_load", "to": "node_meshnet_node_recipe_drivers_artifact_sha256", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_rationale_141", "to": "node_meshnet_node_recipe_drivers_artifact_sha256", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_transformersdriver_load", "to": "node_meshnet_node_recipe_drivers_artifact_sha256", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_validate_config", "to": "node_meshnet_node_recipe_drivers_artifact_sha256", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_rationale_172", "to": "node_meshnet_node_recipe_drivers_host_manifest", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_run_profiled_benchmark", "to": "node_meshnet_node_recipe_drivers_host_manifest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_rationale_223", "to": "node_meshnet_node_recipe_drivers_validate_config", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_run_profiled_benchmark", "to": "node_meshnet_node_recipe_drivers_validate_config", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_build_driver", "to": "node_meshnet_node_recipe_drivers_transformersdriver", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_rationale_336", "to": "node_meshnet_node_recipe_drivers_transformersdriver", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_transformersdriver", "to": "node_meshnet_node_recipe_drivers_transformersdriver_close", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_transformersdriver", "to": "node_meshnet_node_recipe_drivers_transformersdriver_generate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_transformersdriver", "to": "node_meshnet_node_recipe_drivers_transformersdriver_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_transformersdriver", "to": "node_meshnet_node_recipe_drivers_transformersdriver_load", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_transformersdriver", "to": "node_meshnet_node_recipe_drivers_transformersdriver_memory_probe", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_transformersdriver", "to": "node_meshnet_node_recipe_drivers_transformersdriver_select", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_transformersdriver", "to": "node_meshnet_node_recipe_drivers_transformersdriver_vram_bytes", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_transformersdriver_load", "to": "node_meshnet_node_recipe_drivers_transformersdriver_vram_bytes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_transformersdriver_memory_probe", "to": "node_meshnet_node_recipe_drivers_transformersdriver_vram_bytes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_transformersdriver_generate", "to": "node_meshnet_node_recipe_drivers_transformersdriver_select", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver_load", "to": "node_meshnet_node_recipe_drivers_free_port", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver_load", "to": "node_meshnet_node_recipe_drivers_gpu_offload_evidence", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_rationale_488", "to": "node_meshnet_node_recipe_drivers_gpu_offload_evidence", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver_load", "to": "node_meshnet_node_recipe_drivers_gpu_layer_config_detail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_build_driver", "to": "node_meshnet_node_recipe_drivers_llamacppserverdriver", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver", "to": "node_meshnet_node_recipe_drivers_llamacppserverdriver_await_health", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver", "to": "node_meshnet_node_recipe_drivers_llamacppserverdriver_close", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver", "to": "node_meshnet_node_recipe_drivers_llamacppserverdriver_generate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver", "to": "node_meshnet_node_recipe_drivers_llamacppserverdriver_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver", "to": "node_meshnet_node_recipe_drivers_llamacppserverdriver_load", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver", "to": "node_meshnet_node_recipe_drivers_llamacppserverdriver_log_excerpt", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver", "to": "node_meshnet_node_recipe_drivers_llamacppserverdriver_log_text", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver", "to": "node_meshnet_node_recipe_drivers_llamacppserverdriver_memory_probe", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver", "to": "node_meshnet_node_recipe_drivers_llamacppserverdriver_url", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_rationale_521", "to": "node_meshnet_node_recipe_drivers_llamacppserverdriver", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver_load", "to": "node_meshnet_node_recipe_drivers_llamacppserverdriver_log_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver_log_excerpt", "to": "node_meshnet_node_recipe_drivers_llamacppserverdriver_log_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver_await_health", "to": "node_meshnet_node_recipe_drivers_llamacppserverdriver_log_excerpt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_llamacppserverdriver_load", "to": "node_meshnet_node_recipe_drivers_llamacppserverdriver_await_health", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_run_profiled_benchmark", "to": "node_meshnet_node_recipe_drivers_llamacppserverdriver_close", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_build_driver", "to": "recipedriverbundle", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_rationale_742", "to": "node_meshnet_node_recipe_drivers_build_driver", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_run_profiled_benchmark", "to": "node_meshnet_node_recipe_drivers_build_driver", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_run_profiled_benchmark", "to": "node_meshnet_node_recipe_drivers_plan_from_config", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_run_profiled_benchmark", "to": "node_meshnet_node_recipe_drivers_recipe_from_config", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_rationale_789", "to": "node_meshnet_node_recipe_drivers_run_configured_benchmark", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_run_configured_benchmark", "to": "node_meshnet_node_recipe_drivers_run_profiled_benchmark", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_rationale_794", "to": "node_meshnet_node_recipe_drivers_run_configured_gpu_diagnostic", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_run_configured_gpu_diagnostic", "to": "node_meshnet_node_recipe_drivers_run_profiled_benchmark", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_run_profiled_benchmark", "to": "node_meshnet_node_recipe_drivers_producer_for_profile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_drivers_rationale_807", "to": "node_meshnet_node_recipe_drivers_run_profiled_benchmark", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest", "to": "node_meshnet_node_recipe_manifest_load_recipe_manifest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest", "to": "node_meshnet_node_recipe_manifest_parse_recipe", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest", "to": "node_meshnet_node_recipe_manifest_parse_recipe_manifest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest", "to": "node_meshnet_node_recipe_manifest_recipe", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest", "to": "node_meshnet_node_recipe_manifest_recipemanifest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest", "to": "node_meshnet_node_recipe_manifest_recipemanifesterror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest", "to": "node_meshnet_node_recipe_manifest_require_mapping", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest", "to": "node_meshnet_node_recipe_manifest_require_text", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_rationale_1", "to": "node_meshnet_node_recipe_manifest", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_recipe_manifest", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_load_recipe_manifest", "to": "node_meshnet_node_recipe_manifest_recipemanifesterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_parse_recipe", "to": "node_meshnet_node_recipe_manifest_recipemanifesterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_parse_recipe_manifest", "to": "node_meshnet_node_recipe_manifest_recipemanifesterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_rationale_30", "to": "node_meshnet_node_recipe_manifest_recipemanifesterror", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_recipemanifest_require", "to": "node_meshnet_node_recipe_manifest_recipemanifesterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_recipemanifesterror", "to": "node_meshnet_node_recipe_manifest_py_valueerror", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_require_mapping", "to": "node_meshnet_node_recipe_manifest_recipemanifesterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_require_text", "to": "node_meshnet_node_recipe_manifest_recipemanifesterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_parse_recipe", "to": "node_meshnet_node_recipe_manifest_recipe", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_rationale_40", "to": "node_meshnet_node_recipe_manifest_recipe", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_recipe", "to": "node_meshnet_node_recipe_manifest_recipe_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_recipemanifest_get", "to": "node_meshnet_node_recipe_manifest_recipe", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_recipemanifest_require", "to": "node_meshnet_node_recipe_manifest_recipe", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_recipe_manifest_recipe", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_admit_capability", "to": "node_meshnet_node_recipe_manifest_recipe", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_capability_refresher", "to": "node_meshnet_node_recipe_manifest_recipe", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_resolve_recipe", "to": "node_meshnet_node_recipe_manifest_recipe", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_load_recipe_manifest", "to": "node_meshnet_node_recipe_manifest_recipemanifest", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_parse_recipe_manifest", "to": "node_meshnet_node_recipe_manifest_recipemanifest", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_rationale_60", "to": "node_meshnet_node_recipe_manifest_recipemanifest", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_recipemanifest", "to": "node_meshnet_node_recipe_manifest_recipemanifest_get", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_recipemanifest", "to": "node_meshnet_node_recipe_manifest_recipemanifest_ids", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_recipemanifest", "to": "node_meshnet_node_recipe_manifest_recipemanifest_require", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_recipemanifest", "to": "node_meshnet_node_recipe_manifest_recipemanifest_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_recipe_manifest_recipemanifest", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_admit_capability", "to": "node_meshnet_node_recipe_manifest_recipemanifest", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_capability_refresher", "to": "node_meshnet_node_recipe_manifest_recipemanifest", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_resolve_recipe", "to": "node_meshnet_node_recipe_manifest_recipemanifest", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_parse_recipe", "to": "node_meshnet_node_recipe_manifest_recipemanifest_get", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_parse_recipe_manifest", "to": "node_meshnet_node_recipe_manifest_recipemanifest_get", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_recipemanifest_require", "to": "node_meshnet_node_recipe_manifest_recipemanifest_get", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_rationale_74", "to": "node_meshnet_node_recipe_manifest_recipemanifest_require", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_parse_recipe", "to": "node_meshnet_node_recipe_manifest_require_mapping", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_parse_recipe_manifest", "to": "node_meshnet_node_recipe_manifest_require_mapping", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_require_mapping", "to": "node_meshnet_node_recipe_manifest_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_parse_recipe", "to": "node_meshnet_node_recipe_manifest_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_parse_recipe_manifest", "to": "node_meshnet_node_recipe_manifest_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_require_text", "to": "node_meshnet_node_recipe_manifest_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_parse_recipe", "to": "node_meshnet_node_recipe_manifest_require_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_parse_recipe_manifest", "to": "node_meshnet_node_recipe_manifest_require_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_parse_recipe_manifest", "to": "node_meshnet_node_recipe_manifest_parse_recipe", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_load_recipe_manifest", "to": "node_meshnet_node_recipe_manifest_parse_recipe_manifest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_rationale_140", "to": "node_meshnet_node_recipe_manifest_parse_recipe_manifest", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_load_recipe_manifest", "to": "node_meshnet_node_recipe_manifest_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_recipe_manifest_rationale_191", "to": "node_meshnet_node_recipe_manifest_load_recipe_manifest", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_recipe_manifest_load_recipe_manifest", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_resolve_recipe", "to": "node_meshnet_node_recipe_manifest_load_recipe_manifest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge", "to": "node_meshnet_node_relay_bridge_decode_binary_frame", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge", "to": "node_meshnet_node_relay_bridge_encode_binary_frame", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge", "to": "node_meshnet_node_relay_bridge_loopbackhttpclientpool", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge", "to": "node_meshnet_node_relay_bridge_make_envelope", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge", "to": "node_meshnet_node_relay_bridge_max_concurrency_from_env", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge", "to": "node_meshnet_node_relay_bridge_peer_id_from_wallet", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge", "to": "node_meshnet_node_relay_bridge_peer_id_suffix", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge", "to": "node_meshnet_node_relay_bridge_relaybridgeinfo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge", "to": "node_meshnet_node_relay_bridge_relayhttpbridge", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge", "to": "node_meshnet_node_relay_bridge_ws_max_size", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_rationale_1", "to": "node_meshnet_node_relay_bridge", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_relay_bridge", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_rationale_27", "to": "node_meshnet_node_relay_bridge_ws_max_size", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_relayhttpbridge_run", "to": "node_meshnet_node_relay_bridge_ws_max_size", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_relay_bridge_ws_max_size", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_relayhopclient_request", "to": "node_meshnet_node_relay_bridge_ws_max_size", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_rationale_46", "to": "node_meshnet_node_relay_bridge_encode_binary_frame", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_relayhttpbridge_send_binary_response_frame", "to": "node_meshnet_node_relay_bridge_encode_binary_frame", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_relay_bridge_encode_binary_frame", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_relayhopclient_request", "to": "node_meshnet_node_relay_bridge_encode_binary_frame", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_relayhttpbridge_run", "to": "node_meshnet_node_relay_bridge_decode_binary_frame", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_relay_bridge_decode_binary_frame", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_relayhopclient_request", "to": "node_meshnet_node_relay_bridge_decode_binary_frame", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_relayhttpbridge_start", "to": "node_meshnet_node_relay_bridge_relaybridgeinfo", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_relayhttpbridge_run", "to": "node_meshnet_node_relay_bridge_make_envelope", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_relayhttpbridge_send_response_frame", "to": "node_meshnet_node_relay_bridge_make_envelope", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_relayhttpbridge_init", "to": "node_meshnet_node_relay_bridge_max_concurrency_from_env", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_loopbackhttpclientpool", "to": "node_meshnet_node_relay_bridge_loopbackhttpclientpool_close", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_loopbackhttpclientpool", "to": "node_meshnet_node_relay_bridge_loopbackhttpclientpool_connection", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_loopbackhttpclientpool", "to": "node_meshnet_node_relay_bridge_loopbackhttpclientpool_discard", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_loopbackhttpclientpool", "to": "node_meshnet_node_relay_bridge_loopbackhttpclientpool_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_loopbackhttpclientpool", "to": "node_meshnet_node_relay_bridge_loopbackhttpclientpool_request", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_rationale_93", "to": "node_meshnet_node_relay_bridge_loopbackhttpclientpool", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_relayhttpbridge_init", "to": "node_meshnet_node_relay_bridge_loopbackhttpclientpool", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_loopbackhttpclientpool_connection", "to": "node_meshnet_node_relay_bridge_py_httpconnection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_loopbackhttpclientpool_request", "to": "node_meshnet_node_relay_bridge_loopbackhttpclientpool_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_loopbackhttpclientpool_request", "to": "node_meshnet_node_relay_bridge_loopbackhttpclientpool_discard", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_relayhttpbridge_process_request", "to": "node_meshnet_node_relay_bridge_loopbackhttpclientpool_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_loopbackhttpclientpool_discard", "to": "node_meshnet_node_relay_bridge_loopbackhttpclientpool_close", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_relayhttpbridge_process_request", "to": "node_meshnet_node_relay_bridge_loopbackhttpclientpool_discard", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_relayhttpbridge_process_request", "to": "node_meshnet_node_relay_bridge_loopbackhttpclientpool_close", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_relayhttpbridge_stop", "to": "node_meshnet_node_relay_bridge_loopbackhttpclientpool_close", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_rationale_149", "to": "node_meshnet_node_relay_bridge_relayhttpbridge", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_relayhttpbridge", "to": "node_meshnet_node_relay_bridge_relayhttpbridge_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_relayhttpbridge", "to": "node_meshnet_node_relay_bridge_relayhttpbridge_process_request", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_relayhttpbridge", "to": "node_meshnet_node_relay_bridge_relayhttpbridge_relay_addr", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_relayhttpbridge", "to": "node_meshnet_node_relay_bridge_relayhttpbridge_run", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_relayhttpbridge", "to": "node_meshnet_node_relay_bridge_relayhttpbridge_send_binary_response_frame", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_relayhttpbridge", "to": "node_meshnet_node_relay_bridge_relayhttpbridge_send_response_frame", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_relayhttpbridge", "to": "node_meshnet_node_relay_bridge_relayhttpbridge_start", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_relayhttpbridge", "to": "node_meshnet_node_relay_bridge_relayhttpbridge_stop", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_relayhttpbridge", "to": "node_meshnet_node_relay_bridge_relayhttpbridge_stream_response", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_relayhttpbridge", "to": "node_meshnet_node_relay_bridge_relayhttpbridge_wait_connected", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_relay_bridge_relayhttpbridge", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_attach_relay_bridge", "to": "node_meshnet_node_relay_bridge_relayhttpbridge", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_start_relay_bridge_if_available", "to": "node_meshnet_node_relay_bridge_relayhttpbridge", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_rationale_262", "to": "node_meshnet_node_relay_bridge_relayhttpbridge_send_response_frame", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_relayhttpbridge_process_request", "to": "node_meshnet_node_relay_bridge_relayhttpbridge_send_response_frame", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_relayhttpbridge_stream_response", "to": "node_meshnet_node_relay_bridge_relayhttpbridge_send_response_frame", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_rationale_280", "to": "node_meshnet_node_relay_bridge_relayhttpbridge_send_binary_response_frame", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_relayhttpbridge_process_request", "to": "node_meshnet_node_relay_bridge_relayhttpbridge_send_binary_response_frame", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_relayhttpbridge_process_request", "to": "node_meshnet_node_relay_bridge_relayhttpbridge_stream_response", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_rationale_377", "to": "node_meshnet_node_relay_bridge_relayhttpbridge_stream_response", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_peer_id_from_wallet", "to": "node_meshnet_node_relay_bridge_peer_id_suffix", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_rationale_423", "to": "node_meshnet_node_relay_bridge_peer_id_suffix", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_relay_bridge_rationale_434", "to": "node_meshnet_node_relay_bridge_peer_id_from_wallet", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_relay_bridge_peer_id_from_wallet", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_start_relay_bridge_if_available", "to": "node_meshnet_node_relay_bridge_peer_id_from_wallet", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark", "to": "node_meshnet_node_route_session_benchmark_activation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark", "to": "node_meshnet_node_route_session_benchmark_assert_benchmark", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark", "to": "node_meshnet_node_route_session_benchmark_assert_performance_gate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark", "to": "node_meshnet_node_route_session_benchmark_benchmarkrun", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark", "to": "node_meshnet_node_route_session_benchmark_benchmarkscenario", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark", "to": "node_meshnet_node_route_session_benchmark_format_summary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark", "to": "node_meshnet_node_route_session_benchmark_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark", "to": "node_meshnet_node_route_session_benchmark_percentile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark", "to": "node_meshnet_node_route_session_benchmark_performancethresholds", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark", "to": "node_meshnet_node_route_session_benchmark_run_benchmark_matrix", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark", "to": "node_meshnet_node_route_session_benchmark_run_real_model_lan_benchmark", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark", "to": "node_meshnet_node_route_session_benchmark_run_route_session_benchmark", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark", "to": "node_meshnet_node_route_session_benchmark_seamsample", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark", "to": "node_meshnet_node_route_session_benchmark_stubtransport", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark", "to": "node_meshnet_node_route_session_benchmark_summaries_by", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark", "to": "node_meshnet_node_route_session_benchmark_summary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_rationale_1", "to": "node_meshnet_node_route_session_benchmark", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_assert_performance_gate", "to": "node_meshnet_node_route_session_benchmark_benchmarkscenario", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_rationale_26", "to": "node_meshnet_node_route_session_benchmark_benchmarkscenario", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_run_benchmark_matrix", "to": "node_meshnet_node_route_session_benchmark_benchmarkscenario", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_run_real_model_lan_benchmark", "to": "node_meshnet_node_route_session_benchmark_benchmarkscenario", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_run_route_session_benchmark", "to": "node_meshnet_node_route_session_benchmark_benchmarkscenario", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_stubtransport_init", "to": "node_meshnet_node_route_session_benchmark_benchmarkscenario", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_rationale_36", "to": "node_meshnet_node_route_session_benchmark_seamsample", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_run_real_model_lan_benchmark", "to": "node_meshnet_node_route_session_benchmark_seamsample", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_stubtransport_transfer", "to": "node_meshnet_node_route_session_benchmark_seamsample", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_summaries_by", "to": "node_meshnet_node_route_session_benchmark_seamsample", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_summary", "to": "node_meshnet_node_route_session_benchmark_seamsample", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_assert_benchmark", "to": "node_meshnet_node_route_session_benchmark_benchmarkrun", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_benchmarkrun", "to": "node_meshnet_node_route_session_benchmark_benchmarkrun_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_rationale_67", "to": "node_meshnet_node_route_session_benchmark_benchmarkrun", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_run_real_model_lan_benchmark", "to": "node_meshnet_node_route_session_benchmark_benchmarkrun", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_run_route_session_benchmark", "to": "node_meshnet_node_route_session_benchmark_benchmarkrun", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_benchmarkrun_to_dict", "to": "node_meshnet_node_route_session_benchmark_summaries_by", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_run_benchmark_matrix", "to": "node_meshnet_node_route_session_benchmark_benchmarkrun_to_dict", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_run_real_model_lan_benchmark", "to": "node_meshnet_node_route_session_benchmark_benchmarkrun_to_dict", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_summary", "to": "node_meshnet_node_route_session_benchmark_percentile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_summaries_by", "to": "node_meshnet_node_route_session_benchmark_summary", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_summaries_by", "to": "node_meshnet_node_runtime_recipe_compatibilityfingerprint_key", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_route_session_benchmark_rationale_141", "to": "node_meshnet_node_route_session_benchmark_stubtransport", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_run_route_session_benchmark", "to": "node_meshnet_node_route_session_benchmark_stubtransport", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_stubtransport", "to": "node_meshnet_node_route_session_benchmark_stubtransport_close", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_stubtransport", "to": "node_meshnet_node_route_session_benchmark_stubtransport_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_stubtransport", "to": "node_meshnet_node_route_session_benchmark_stubtransport_transfer", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_stubtransport_init", "to": "cachemode", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_stubtransport_init", "to": "transportmode", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_run_route_session_benchmark", "to": "transportmode", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_run_route_session_benchmark", "to": "cachemode", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_run_route_session_benchmark", "to": "node_meshnet_node_route_session_benchmark_stubtransport_transfer", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_stubtransport_transfer", "to": "node_meshnet_node_route_session_benchmark_activation", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_rationale_204", "to": "node_meshnet_node_route_session_benchmark_stubtransport_close", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_run_route_session_benchmark", "to": "node_meshnet_node_route_session_benchmark_stubtransport_close", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_rationale_216", "to": "node_meshnet_node_route_session_benchmark_activation", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_rationale_226", "to": "node_meshnet_node_route_session_benchmark_run_route_session_benchmark", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_run_benchmark_matrix", "to": "node_meshnet_node_route_session_benchmark_run_route_session_benchmark", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_main", "to": "node_meshnet_node_route_session_benchmark_run_benchmark_matrix", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_rationale_237", "to": "node_meshnet_node_route_session_benchmark_run_benchmark_matrix", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_rationale_252", "to": "node_meshnet_node_route_session_benchmark_assert_benchmark", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_assert_performance_gate", "to": "node_meshnet_node_route_session_benchmark_performancethresholds", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_rationale_262", "to": "node_meshnet_node_route_session_benchmark_performancethresholds", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_main", "to": "node_meshnet_node_route_session_benchmark_assert_performance_gate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_rationale_281", "to": "node_meshnet_node_route_session_benchmark_assert_performance_gate", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_main", "to": "node_meshnet_node_route_session_benchmark_run_real_model_lan_benchmark", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_rationale_317", "to": "node_meshnet_node_route_session_benchmark_run_real_model_lan_benchmark", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_main", "to": "node_meshnet_node_route_session_benchmark_format_summary", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_route_session_benchmark_rationale_360", "to": "node_meshnet_node_route_session_benchmark_format_summary", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_pin", "to": "node_meshnet_node_runtime_pin_canonical_sha256", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_pin", "to": "node_meshnet_node_runtime_pin_load_runtime_pin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_pin", "to": "node_meshnet_node_runtime_pin_read_series_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_pin", "to": "node_meshnet_node_runtime_pin_read_sums_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_pin", "to": "node_meshnet_node_runtime_pin_read_text", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_pin", "to": "node_meshnet_node_runtime_pin_runtimepin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_pin", "to": "node_meshnet_node_runtime_pin_runtimepinerror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_pin_rationale_1", "to": "node_meshnet_node_runtime_pin", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_pin_load_runtime_pin", "to": "node_meshnet_node_runtime_pin_runtimepinerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_pin_rationale_51", "to": "node_meshnet_node_runtime_pin_runtimepinerror", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_pin_read_sums_file", "to": "node_meshnet_node_runtime_pin_runtimepinerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_pin_read_text", "to": "node_meshnet_node_runtime_pin_runtimepinerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_pin_runtimepinerror", "to": "node_meshnet_node_runtime_pin_py_valueerror", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_pin_runtimepin_patch_stack_digest", "to": "node_meshnet_node_runtime_pin_canonical_sha256", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_pin_load_runtime_pin", "to": "node_meshnet_node_runtime_pin_runtimepin", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_pin_rationale_63", "to": "node_meshnet_node_runtime_pin_runtimepin", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_pin_runtimepin", "to": "node_meshnet_node_runtime_pin_runtimepin_patch_stack_digest", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_pin_runtimepin", "to": "node_meshnet_node_runtime_pin_runtimepin_runtime_version", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_pin_rationale_72", "to": "node_meshnet_node_runtime_pin_runtimepin_patch_stack_digest", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_pin_rationale_92", "to": "node_meshnet_node_runtime_pin_runtimepin_runtime_version", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_pin_load_runtime_pin", "to": "node_meshnet_node_runtime_pin_read_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_pin_read_series_file", "to": "node_meshnet_node_runtime_pin_read_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_pin_read_sums_file", "to": "node_meshnet_node_runtime_pin_read_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_pin_read_text", "to": "node_meshnet_node_runtime_pin_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_pin_load_runtime_pin", "to": "node_meshnet_node_runtime_pin_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_pin_read_series_file", "to": "node_meshnet_node_runtime_pin_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_pin_read_sums_file", "to": "node_meshnet_node_runtime_pin_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_pin_load_runtime_pin", "to": "node_meshnet_node_runtime_pin_read_series_file", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_pin_load_runtime_pin", "to": "node_meshnet_node_runtime_pin_read_sums_file", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_pin_rationale_130", "to": "node_meshnet_node_runtime_pin_load_runtime_pin", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe", "to": "node_meshnet_node_runtime_recipe_artifactidentity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe", "to": "node_meshnet_node_runtime_recipe_as_mapping", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe", "to": "node_meshnet_node_runtime_recipe_canonical_sha256", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe", "to": "node_meshnet_node_runtime_recipe_check_handshake", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe", "to": "node_meshnet_node_runtime_recipe_check_route", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe", "to": "node_meshnet_node_runtime_recipe_check_session_open", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe", "to": "node_meshnet_node_runtime_recipe_compatibilityfingerprint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe", "to": "node_meshnet_node_runtime_recipe_coverage_gap", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe", "to": "node_meshnet_node_runtime_recipe_derivativebinding", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe", "to": "node_meshnet_node_runtime_recipe_digest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe", "to": "node_meshnet_node_runtime_recipe_explain_mismatch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe", "to": "node_meshnet_node_runtime_recipe_glm_alpha_artifact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe", "to": "node_meshnet_node_runtime_recipe_handshake_error", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe", "to": "node_meshnet_node_runtime_recipe_recipeidentityerror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe", "to": "node_meshnet_node_runtime_recipe_require_hex64", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe", "to": "node_meshnet_node_runtime_recipe_require_int", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe", "to": "node_meshnet_node_runtime_recipe_require_pin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe", "to": "node_meshnet_node_runtime_recipe_require_route", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe", "to": "node_meshnet_node_runtime_recipe_require_runtime_pin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe", "to": "node_meshnet_node_runtime_recipe_require_text", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe", "to": "node_meshnet_node_runtime_recipe_routeincompatible", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe", "to": "node_meshnet_node_runtime_recipe_routemismatch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe", "to": "node_meshnet_node_runtime_recipe_runtimerecipe", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe", "to": "node_meshnet_node_runtime_recipe_shardidentity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_rationale_1", "to": "node_meshnet_node_runtime_recipe", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_artifactidentity_post_init", "to": "node_meshnet_node_runtime_recipe_recipeidentityerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_as_mapping", "to": "node_meshnet_node_runtime_recipe_recipeidentityerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_derivativebinding_post_init", "to": "node_meshnet_node_runtime_recipe_recipeidentityerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_rationale_139", "to": "node_meshnet_node_runtime_recipe_recipeidentityerror", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_recipeidentityerror", "to": "node_meshnet_node_runtime_recipe_py_valueerror", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_require_hex64", "to": "node_meshnet_node_runtime_recipe_recipeidentityerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_require_int", "to": "node_meshnet_node_runtime_recipe_recipeidentityerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_require_pin", "to": "node_meshnet_node_runtime_recipe_recipeidentityerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_require_runtime_pin", "to": "node_meshnet_node_runtime_recipe_recipeidentityerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_require_text", "to": "node_meshnet_node_runtime_recipe_recipeidentityerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_routeincompatible", "to": "node_meshnet_node_runtime_recipe_recipeidentityerror", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_runtimerecipe_from_dict", "to": "node_meshnet_node_runtime_recipe_recipeidentityerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_shardidentity_from_dict", "to": "node_meshnet_node_runtime_recipe_recipeidentityerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_shardidentity_post_init", "to": "node_meshnet_node_runtime_recipe_recipeidentityerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_rationale_143", "to": "node_meshnet_node_runtime_recipe_routeincompatible", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_require_route", "to": "node_meshnet_node_runtime_recipe_routeincompatible", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_routeincompatible", "to": "node_meshnet_node_runtime_recipe_routeincompatible_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_shardidentity_from_dict", "to": "node_meshnet_node_runtime_recipe_routeincompatible", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_routeincompatible_init", "to": "node_meshnet_node_runtime_recipe_routemismatch_describe", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_canonical_sha256", "to": "node_meshnet_node_runtime_recipe_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_digest", "to": "node_meshnet_node_runtime_recipe_canonical_sha256", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_rationale_155", "to": "node_meshnet_node_runtime_recipe_canonical_sha256", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_artifactidentity_from_dict", "to": "node_meshnet_node_runtime_recipe_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_as_mapping", "to": "node_meshnet_node_runtime_recipe_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_compatibilityfingerprint_from_dict", "to": "node_meshnet_node_runtime_recipe_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_derivativebinding_from_dict", "to": "node_meshnet_node_runtime_recipe_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_digest", "to": "node_meshnet_node_runtime_recipe_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_require_hex64", "to": "node_meshnet_node_runtime_recipe_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_require_int", "to": "node_meshnet_node_runtime_recipe_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_require_pin", "to": "node_meshnet_node_runtime_recipe_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_require_runtime_pin", "to": "node_meshnet_node_runtime_recipe_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_require_text", "to": "node_meshnet_node_runtime_recipe_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_runtimerecipe_axes", "to": "node_meshnet_node_runtime_recipe_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_runtimerecipe_from_dict", "to": "node_meshnet_node_runtime_recipe_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_shardidentity_from_dict", "to": "node_meshnet_node_runtime_recipe_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_artifactidentity_model_artifact_digest", "to": "node_meshnet_node_runtime_recipe_digest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_runtimerecipe_runtime_recipe_digest", "to": "node_meshnet_node_runtime_recipe_digest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_shardidentity_shard_binding_digest", "to": "node_meshnet_node_runtime_recipe_digest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_artifactidentity_from_dict", "to": "node_meshnet_node_runtime_recipe_require_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_artifactidentity_post_init", "to": "node_meshnet_node_runtime_recipe_require_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_compatibilityfingerprint_from_dict", "to": "node_meshnet_node_runtime_recipe_require_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_compatibilityfingerprint_from_proto", "to": "node_meshnet_node_runtime_recipe_require_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_require_hex64", "to": "node_meshnet_node_runtime_recipe_require_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_require_pin", "to": "node_meshnet_node_runtime_recipe_require_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_require_runtime_pin", "to": "node_meshnet_node_runtime_recipe_require_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_runtimerecipe_from_dict", "to": "node_meshnet_node_runtime_recipe_require_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_runtimerecipe_post_init", "to": "node_meshnet_node_runtime_recipe_require_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_artifactidentity_from_dict", "to": "node_meshnet_node_runtime_recipe_require_hex64", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_artifactidentity_post_init", "to": "node_meshnet_node_runtime_recipe_require_hex64", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_compatibilityfingerprint_from_dict", "to": "node_meshnet_node_runtime_recipe_require_hex64", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_compatibilityfingerprint_from_proto", "to": "node_meshnet_node_runtime_recipe_require_hex64", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_compatibilityfingerprint_post_init", "to": "node_meshnet_node_runtime_recipe_require_hex64", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_derivativebinding_from_dict", "to": "node_meshnet_node_runtime_recipe_require_hex64", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_derivativebinding_post_init", "to": "node_meshnet_node_runtime_recipe_require_hex64", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_artifactidentity_from_dict", "to": "node_meshnet_node_runtime_recipe_require_int", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_artifactidentity_post_init", "to": "node_meshnet_node_runtime_recipe_require_int", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_derivativebinding_from_dict", "to": "node_meshnet_node_runtime_recipe_require_int", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_derivativebinding_post_init", "to": "node_meshnet_node_runtime_recipe_require_int", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_runtimerecipe_from_dict", "to": "node_meshnet_node_runtime_recipe_require_int", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_runtimerecipe_post_init", "to": "node_meshnet_node_runtime_recipe_require_int", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_shardidentity_from_dict", "to": "node_meshnet_node_runtime_recipe_require_int", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_shardidentity_post_init", "to": "node_meshnet_node_runtime_recipe_require_int", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_artifactidentity_from_dict", "to": "node_meshnet_node_runtime_recipe_require_pin", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_artifactidentity_post_init", "to": "node_meshnet_node_runtime_recipe_require_pin", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_rationale_190", "to": "node_meshnet_node_runtime_recipe_require_pin", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_require_runtime_pin", "to": "node_meshnet_node_runtime_recipe_require_pin", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_runtimerecipe_post_init", "to": "node_meshnet_node_runtime_recipe_require_pin", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_runtimerecipe_post_init", "to": "node_meshnet_node_runtime_recipe_require_runtime_pin", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_artifactidentity_from_dict", "to": "node_meshnet_node_runtime_recipe_as_mapping", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_compatibilityfingerprint_from_dict", "to": "node_meshnet_node_runtime_recipe_as_mapping", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_derivativebinding_from_dict", "to": "node_meshnet_node_runtime_recipe_as_mapping", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_runtimerecipe_from_dict", "to": "node_meshnet_node_runtime_recipe_as_mapping", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_shardidentity_from_dict", "to": "node_meshnet_node_runtime_recipe_as_mapping", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_derivativebinding", "to": "node_meshnet_node_runtime_recipe_derivativebinding_covers", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_derivativebinding_from_dict", "to": "node_meshnet_node_runtime_recipe_derivativebinding", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_derivativebinding", "to": "node_meshnet_node_runtime_recipe_derivativebinding_post_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_derivativebinding", "to": "node_meshnet_node_runtime_recipe_derivativebinding_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_glm_alpha_artifact", "to": "node_meshnet_node_runtime_recipe_derivativebinding", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_rationale_222", "to": "node_meshnet_node_runtime_recipe_derivativebinding", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_shardidentity_post_init", "to": "node_meshnet_node_runtime_recipe_derivativebinding_covers", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_coverage_map_detailed", "to": "node_meshnet_node_runtime_recipe_derivativebinding_covers", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_runtime_recipe_artifactidentity_from_dict", "to": "node_meshnet_node_runtime_recipe_derivativebinding_from_dict", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_artifactidentity_from_dict", "to": "node_meshnet_node_runtime_recipe_artifactidentity", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_artifactidentity", "to": "node_meshnet_node_runtime_recipe_artifactidentity_is_derivative", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_artifactidentity", "to": "node_meshnet_node_runtime_recipe_artifactidentity_model_artifact_digest", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_artifactidentity", "to": "node_meshnet_node_runtime_recipe_artifactidentity_post_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_artifactidentity", "to": "node_meshnet_node_runtime_recipe_artifactidentity_source_digest", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_artifactidentity", "to": "node_meshnet_node_runtime_recipe_artifactidentity_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_glm_alpha_artifact", "to": "node_meshnet_node_runtime_recipe_artifactidentity", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_rationale_277", "to": "node_meshnet_node_runtime_recipe_artifactidentity", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_rationale_323", "to": "node_meshnet_node_runtime_recipe_artifactidentity_source_digest", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_rationale_330", "to": "node_meshnet_node_runtime_recipe_artifactidentity_model_artifact_digest", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_artifactidentity_to_dict", "to": "node_meshnet_node_runtime_recipe_shardidentity_to_dict", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_shardidentity_from_dict", "to": "node_meshnet_node_runtime_recipe_artifactidentity_from_dict", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_rationale_385", "to": "node_meshnet_node_runtime_recipe_runtimerecipe", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_runtimerecipe", "to": "node_meshnet_node_runtime_recipe_runtimerecipe_axes", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_runtimerecipe_from_dict", "to": "node_meshnet_node_runtime_recipe_runtimerecipe", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_runtimerecipe", "to": "node_meshnet_node_runtime_recipe_runtimerecipe_post_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_runtimerecipe", "to": "node_meshnet_node_runtime_recipe_runtimerecipe_runtime_recipe_digest", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_runtimerecipe", "to": "node_meshnet_node_runtime_recipe_runtimerecipe_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_rationale_430", "to": "node_meshnet_node_runtime_recipe_runtimerecipe_axes", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_rationale_435", "to": "node_meshnet_node_runtime_recipe_runtimerecipe_runtime_recipe_digest", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_shardidentity_from_dict", "to": "node_meshnet_node_runtime_recipe_runtimerecipe_from_dict", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_compatibilityfingerprint_from_dict", "to": "node_meshnet_node_runtime_recipe_compatibilityfingerprint", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_compatibilityfingerprint_from_proto", "to": "node_meshnet_node_runtime_recipe_compatibilityfingerprint", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_compatibilityfingerprint", "to": "node_meshnet_node_runtime_recipe_compatibilityfingerprint_key", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_compatibilityfingerprint_matches", "to": "node_meshnet_node_runtime_recipe_compatibilityfingerprint", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_compatibilityfingerprint", "to": "node_meshnet_node_runtime_recipe_compatibilityfingerprint_post_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_compatibilityfingerprint", "to": "node_meshnet_node_runtime_recipe_compatibilityfingerprint_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_compatibilityfingerprint", "to": "node_meshnet_node_runtime_recipe_compatibilityfingerprint_to_proto", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_rationale_480", "to": "node_meshnet_node_runtime_recipe_compatibilityfingerprint", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_require_route", "to": "node_meshnet_node_runtime_recipe_compatibilityfingerprint", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_shardidentity_fingerprint", "to": "node_meshnet_node_runtime_recipe_compatibilityfingerprint", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_rationale_502", "to": "node_meshnet_node_runtime_recipe_compatibilityfingerprint_key", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_check_handshake", "to": "node_meshnet_node_runtime_recipe_compatibilityfingerprint_matches", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_check_route", "to": "node_meshnet_node_runtime_recipe_compatibilityfingerprint_matches", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_explain_mismatch", "to": "node_meshnet_node_runtime_recipe_compatibilityfingerprint_matches", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_shardidentity_from_dict", "to": "node_meshnet_node_runtime_recipe_compatibilityfingerprint_matches", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_shardidentity_from_dict", "to": "node_meshnet_node_runtime_recipe_compatibilityfingerprint_from_dict", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_rationale_537", "to": "node_meshnet_node_runtime_recipe_compatibilityfingerprint_to_proto", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_check_handshake", "to": "node_meshnet_node_runtime_recipe_compatibilityfingerprint_from_proto", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_check_handshake", "to": "node_meshnet_node_runtime_recipe_routemismatch", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_check_route", "to": "node_meshnet_node_runtime_recipe_routemismatch", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_check_session_open", "to": "node_meshnet_node_runtime_recipe_routemismatch", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_explain_mismatch", "to": "node_meshnet_node_runtime_recipe_routemismatch", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_handshake_error", "to": "node_meshnet_node_runtime_recipe_routemismatch", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_rationale_567", "to": "node_meshnet_node_runtime_recipe_routemismatch", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_routemismatch", "to": "node_meshnet_node_runtime_recipe_routemismatch_describe", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_routemismatch", "to": "node_meshnet_node_runtime_recipe_routemismatch_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_shardidentity_from_dict", "to": "node_meshnet_node_runtime_recipe_routemismatch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_handshake_error", "to": "node_meshnet_node_runtime_recipe_routemismatch_describe", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_check_handshake", "to": "node_meshnet_node_runtime_recipe_shardidentity", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_check_route", "to": "node_meshnet_node_runtime_recipe_shardidentity", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_check_session_open", "to": "node_meshnet_node_runtime_recipe_shardidentity", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_explain_mismatch", "to": "node_meshnet_node_runtime_recipe_shardidentity", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_rationale_587", "to": "node_meshnet_node_runtime_recipe_shardidentity", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_require_route", "to": "node_meshnet_node_runtime_recipe_shardidentity", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_shardidentity", "to": "node_meshnet_node_runtime_recipe_shardidentity_fingerprint", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_shardidentity_from_dict", "to": "node_meshnet_node_runtime_recipe_shardidentity", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_shardidentity", "to": "node_meshnet_node_runtime_recipe_shardidentity_post_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_shardidentity", "to": "node_meshnet_node_runtime_recipe_shardidentity_shard_binding_digest", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_shardidentity", "to": "node_meshnet_node_runtime_recipe_shardidentity_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_rationale_623", "to": "node_meshnet_node_runtime_recipe_shardidentity_fingerprint", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_rationale_634", "to": "node_meshnet_node_runtime_recipe_shardidentity_shard_binding_digest", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_rationale_677", "to": "node_meshnet_node_runtime_recipe_shardidentity_from_dict", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_check_route", "to": "node_meshnet_node_runtime_recipe_explain_mismatch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_rationale_723", "to": "node_meshnet_node_runtime_recipe_explain_mismatch", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_check_route", "to": "node_meshnet_node_runtime_recipe_coverage_gap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_rationale_797", "to": "node_meshnet_node_runtime_recipe_coverage_gap", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_rationale_829", "to": "node_meshnet_node_runtime_recipe_check_route", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_require_route", "to": "node_meshnet_node_runtime_recipe_check_route", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_rationale_866", "to": "node_meshnet_node_runtime_recipe_require_route", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_rationale_883", "to": "node_meshnet_node_runtime_recipe_glm_alpha_artifact", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_check_session_open", "to": "node_meshnet_node_runtime_recipe_check_handshake", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_rationale_921", "to": "node_meshnet_node_runtime_recipe_check_handshake", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_rationale_970", "to": "node_meshnet_node_runtime_recipe_check_session_open", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_runtime_recipe_rationale_1045", "to": "node_meshnet_node_runtime_recipe_handshake_error", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_safetensors_selection", "to": "node_meshnet_node_safetensors_selection_is_head_tensor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_safetensors_selection", "to": "node_meshnet_node_safetensors_selection_is_tail_tensor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_safetensors_selection", "to": "node_meshnet_node_safetensors_selection_layer_index", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_safetensors_selection", "to": "node_meshnet_node_safetensors_selection_layers_from_config_dict", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_safetensors_selection", "to": "node_meshnet_node_safetensors_selection_metadata_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_safetensors_selection", "to": "node_meshnet_node_safetensors_selection_normalise_relative_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_safetensors_selection", "to": "node_meshnet_node_safetensors_selection_read_total_layers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_safetensors_selection", "to": "node_meshnet_node_safetensors_selection_select_files_for_layers_from_index", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_safetensors_selection", "to": "node_meshnet_node_safetensors_selection_select_safetensors_files_for_layers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_safetensors_selection", "to": "node_meshnet_node_safetensors_selection_select_tensor_names_for_layers_from_index", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_safetensors_selection", "to": "node_meshnet_node_safetensors_selection_tensor_belongs_to_range", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_safetensors_selection_rationale_1", "to": "node_meshnet_node_safetensors_selection", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_safetensors_selection_rationale_68", "to": "node_meshnet_node_safetensors_selection_select_safetensors_files_for_layers", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_safetensors_selection_select_safetensors_files_for_layers", "to": "node_meshnet_node_safetensors_selection_metadata_files", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_safetensors_selection_select_safetensors_files_for_layers", "to": "node_meshnet_node_safetensors_selection_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_safetensors_selection_select_safetensors_files_for_layers", "to": "node_meshnet_node_safetensors_selection_read_total_layers", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_safetensors_selection_select_safetensors_files_for_layers", "to": "node_meshnet_node_safetensors_selection_select_files_for_layers_from_index", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_safetensors_selection_metadata_files", "to": "node_meshnet_node_safetensors_selection_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_safetensors_selection_normalise_relative_file", "to": "node_meshnet_node_safetensors_selection_py_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_safetensors_selection_read_total_layers", "to": "node_meshnet_node_safetensors_selection_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_safetensors_selection_rationale_106", "to": "node_meshnet_node_safetensors_selection_select_files_for_layers_from_index", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_safetensors_selection_select_files_for_layers_from_index", "to": "node_meshnet_node_safetensors_selection_normalise_relative_file", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_safetensors_selection_select_files_for_layers_from_index", "to": "node_meshnet_node_safetensors_selection_tensor_belongs_to_range", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_safetensors_selection_rationale_128", "to": "node_meshnet_node_safetensors_selection_select_tensor_names_for_layers_from_index", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_safetensors_selection_select_tensor_names_for_layers_from_index", "to": "node_meshnet_node_safetensors_selection_tensor_belongs_to_range", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_safetensors_selection_tensor_belongs_to_range", "to": "node_meshnet_node_safetensors_selection_is_head_tensor", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_safetensors_selection_tensor_belongs_to_range", "to": "node_meshnet_node_safetensors_selection_is_tail_tensor", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_safetensors_selection_tensor_belongs_to_range", "to": "node_meshnet_node_safetensors_selection_layer_index", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_safetensors_selection_read_total_layers", "to": "node_meshnet_node_safetensors_selection_layers_from_config_dict", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_safetensors_selection_layers_from_config_dict", "to": "node_meshnet_node_safetensors_selection_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_seam_telemetry", "to": "node_meshnet_node_seam_telemetry_generationtelemetry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_seam_telemetry", "to": "node_meshnet_node_seam_telemetry_seamaggregate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_seam_telemetry_rationale_1", "to": "node_meshnet_node_seam_telemetry", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_seam_telemetry", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_seam_telemetry_generationtelemetry_record_compression", "to": "node_meshnet_node_seam_telemetry_seamaggregate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_seam_telemetry_generationtelemetry_record_seam", "to": "node_meshnet_node_seam_telemetry_seamaggregate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_seam_telemetry_generationtelemetry", "to": "node_meshnet_node_seam_telemetry_generationtelemetry_close", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_seam_telemetry_generationtelemetry", "to": "node_meshnet_node_seam_telemetry_generationtelemetry_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_seam_telemetry_generationtelemetry", "to": "node_meshnet_node_seam_telemetry_generationtelemetry_mark_reported", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_seam_telemetry_generationtelemetry", "to": "node_meshnet_node_seam_telemetry_generationtelemetry_note_tokens", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_seam_telemetry_generationtelemetry", "to": "node_meshnet_node_seam_telemetry_generationtelemetry_record_compression", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_seam_telemetry_generationtelemetry", "to": "node_meshnet_node_seam_telemetry_generationtelemetry_record_seam", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_seam_telemetry_generationtelemetry", "to": "node_meshnet_node_seam_telemetry_generationtelemetry_report_due", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_seam_telemetry_generationtelemetry", "to": "node_meshnet_node_seam_telemetry_generationtelemetry_snapshot", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_seam_telemetry_rationale_34", "to": "node_meshnet_node_seam_telemetry_generationtelemetry", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_seam_telemetry_generationtelemetry", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_directhopclient", "to": "node_meshnet_node_seam_telemetry_generationtelemetry", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_directrequestuncertainerror", "to": "node_meshnet_node_seam_telemetry_generationtelemetry", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_pipelinecachemiss", "to": "node_meshnet_node_seam_telemetry_generationtelemetry", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_relayhopclient", "to": "node_meshnet_node_seam_telemetry_generationtelemetry", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_relayrequestuncertainerror", "to": "node_meshnet_node_seam_telemetry_generationtelemetry", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_torchhandler", "to": "node_meshnet_node_seam_telemetry_generationtelemetry", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_torchhandler_do_chat_completions", "to": "node_meshnet_node_seam_telemetry_generationtelemetry", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_run_downstream_pipeline", "to": "node_meshnet_node_seam_telemetry_generationtelemetry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhttpserver", "to": "node_meshnet_node_seam_telemetry_generationtelemetry", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver", "to": "node_meshnet_node_seam_telemetry_generationtelemetry", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_seam_telemetry_rationale_67", "to": "node_meshnet_node_seam_telemetry_generationtelemetry_record_seam", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_seam_telemetry_rationale_102", "to": "node_meshnet_node_seam_telemetry_generationtelemetry_record_compression", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server", "to": "node_meshnet_node_server_compress_body", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server", "to": "node_meshnet_node_server_decompress_body", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server", "to": "node_meshnet_node_server_make_stub_binary_activation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server", "to": "node_meshnet_node_server_parse_shape", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server", "to": "node_meshnet_node_server_stubhandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server", "to": "node_meshnet_node_server_stubhttpserver", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server", "to": "node_meshnet_node_server_stubnodeserver", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server", "to": "node_meshnet_node_server_validate_activation_body", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_rationale_1", "to": "node_meshnet_node_server", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_server", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_server", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_rationale_29", "to": "node_meshnet_node_server_make_stub_binary_activation", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubhandler_handle_forward", "to": "node_meshnet_node_server_make_stub_binary_activation", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_validate_activation_body", "to": "node_meshnet_node_server_make_stub_binary_activation", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubhandler_handle_forward", "to": "node_meshnet_node_server_parse_shape", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_server_parse_shape", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_handle_binary_forward", "to": "node_meshnet_node_server_parse_shape", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_run_downstream_pipeline", "to": "node_meshnet_node_server_parse_shape", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubhandler_handle_forward", "to": "node_meshnet_node_server_decompress_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubhandler_handle_forward", "to": "node_meshnet_node_server_validate_activation_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_server_validate_activation_body", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_handle_binary_forward", "to": "node_meshnet_node_server_validate_activation_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubhttpserver", "to": "node_meshnet_node_server_stubhttpserver_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubnodeserver_start", "to": "node_meshnet_node_server_stubhttpserver", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubhttpserver_init", "to": "node_meshnet_node_server_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubhttpserver_init", "to": "node_meshnet_node_server_stubnodeserver_init", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubnodeserver_init", "to": "node_meshnet_node_server_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubhandler", "to": "node_meshnet_node_server_stubhandler_do_get", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubhandler", "to": "node_meshnet_node_server_stubhandler_do_post", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubhandler", "to": "node_meshnet_node_server_stubhandler_handle_chat_completions", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubhandler", "to": "node_meshnet_node_server_stubhandler_handle_forward", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubhandler", "to": "node_meshnet_node_server_stubhandler_handle_infer", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubhandler", "to": "node_meshnet_node_server_stubhandler_handle_shard_download", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubhandler", "to": "node_meshnet_node_server_stubhandler_log_message", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubhandler", "to": "node_meshnet_node_server_stubhandler_send_json", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubhandler", "to": "node_meshnet_node_server_stubhandler_send_sse_response", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubhandler_do_post", "to": "node_meshnet_node_server_stubhandler_handle_chat_completions", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubhandler_do_post", "to": "node_meshnet_node_server_stubhandler_handle_forward", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubhandler_do_post", "to": "node_meshnet_node_server_stubhandler_handle_infer", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubhandler_do_get", "to": "node_meshnet_node_server_stubhandler_handle_shard_download", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubhandler_handle_chat_completions", "to": "node_meshnet_node_server_stubhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubhandler_handle_chat_completions", "to": "node_meshnet_node_server_stubhandler_send_sse_response", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubhandler_handle_shard_download", "to": "node_meshnet_node_server_py_parseresult", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_rationale_329", "to": "node_meshnet_node_server_stubnodeserver", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubnodeserver", "to": "node_meshnet_node_server_stubnodeserver_chat_completion_count", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubnodeserver", "to": "node_meshnet_node_server_stubnodeserver_forward_chunk_count", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubnodeserver", "to": "node_meshnet_node_server_stubnodeserver_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubnodeserver", "to": "node_meshnet_node_server_stubnodeserver_received_activations", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubnodeserver", "to": "node_meshnet_node_server_stubnodeserver_start", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_stubnodeserver", "to": "node_meshnet_node_server_stubnodeserver_stop", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_server_stubnodeserver", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_attach_relay_bridge", "to": "node_meshnet_node_server_stubnodeserver", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_server_stubnodeserver", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_rationale_368", "to": "node_meshnet_node_server_stubnodeserver_received_activations", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_rationale_373", "to": "node_meshnet_node_server_stubnodeserver_forward_chunk_count", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_server_rationale_378", "to": "node_meshnet_node_server_stubnodeserver_chat_completion_count", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle", "to": "node_meshnet_node_shard_lifecycle_cacheexpectation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle", "to": "node_meshnet_node_shard_lifecycle_cacheresult", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle", "to": "node_meshnet_node_shard_lifecycle_cancellationtoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle", "to": "node_meshnet_node_shard_lifecycle_cancelrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle", "to": "node_meshnet_node_shard_lifecycle_capabilityrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle", "to": "node_meshnet_node_shard_lifecycle_capabilityresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle", "to": "node_meshnet_node_shard_lifecycle_deadlinepolicy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle", "to": "node_meshnet_node_shard_lifecycle_flowcontrol", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle", "to": "node_meshnet_node_shard_lifecycle_flowcontrollimits", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle", "to": "node_meshnet_node_shard_lifecycle_healthrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle", "to": "node_meshnet_node_shard_lifecycle_healthresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle", "to": "node_meshnet_node_shard_lifecycle_lifecyclecontracterror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle", "to": "node_meshnet_node_shard_lifecycle_lifecyclestate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle", "to": "node_meshnet_node_shard_lifecycle_metricsrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle", "to": "node_meshnet_node_shard_lifecycle_metricsresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle", "to": "node_meshnet_node_shard_lifecycle_py_enum", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle", "to": "node_meshnet_node_shard_lifecycle_releaserequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle", "to": "node_meshnet_node_shard_lifecycle_rpcname", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle", "to": "node_meshnet_node_shard_lifecycle_sessionframe", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle", "to": "node_meshnet_node_shard_lifecycle_sessionlifecycle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle", "to": "node_meshnet_node_shard_lifecycle_sessionphase", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle", "to": "node_meshnet_node_shard_lifecycle_sessionrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle", "to": "node_meshnet_node_shard_lifecycle_sessionresult", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle", "to": "node_meshnet_node_shard_lifecycle_shardrpccontract", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle", "to": "node_meshnet_node_shard_lifecycle_statuscode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle", "to": "node_meshnet_node_shard_lifecycle_structuredstatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle", "to": "node_meshnet_node_shard_lifecycle_tlsauthhooks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_rationale_1", "to": "node_meshnet_node_shard_lifecycle", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_rpcname", "to": "node_meshnet_node_shard_lifecycle_py_enum", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_rpcname", "to": "node_meshnet_node_shard_lifecycle_py_str", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_shardrpccontract_from_bytes", "to": "node_meshnet_node_shard_lifecycle_rpcname", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_cacheexpectation", "to": "node_meshnet_node_shard_lifecycle_py_str", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_cacheresult", "to": "node_meshnet_node_shard_lifecycle_py_str", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_lifecyclestate", "to": "node_meshnet_node_shard_lifecycle_py_str", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_sessionphase", "to": "node_meshnet_node_shard_lifecycle_py_str", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_statuscode", "to": "node_meshnet_node_shard_lifecycle_py_str", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_cacheexpectation", "to": "node_meshnet_node_shard_lifecycle_py_enum", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_cacheresult", "to": "node_meshnet_node_shard_lifecycle_py_enum", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_lifecyclestate", "to": "node_meshnet_node_shard_lifecycle_py_enum", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_sessionphase", "to": "node_meshnet_node_shard_lifecycle_py_enum", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_statuscode", "to": "node_meshnet_node_shard_lifecycle_py_enum", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_structuredstatus_from_dict", "to": "node_meshnet_node_shard_lifecycle_statuscode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_sessionlifecycle_transition", "to": "node_meshnet_node_shard_lifecycle_lifecyclestate", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_capabilityresponse_validate", "to": "node_meshnet_node_shard_lifecycle_lifecyclecontracterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_flowcontrol_acquire", "to": "node_meshnet_node_shard_lifecycle_lifecyclecontracterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_lifecyclecontracterror", "to": "node_meshnet_node_shard_lifecycle_lifecyclecontracterror_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_lifecyclecontracterror", "to": "node_meshnet_node_shard_lifecycle_py_valueerror", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_rationale_82", "to": "node_meshnet_node_shard_lifecycle_lifecyclecontracterror", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_sessionframe_validate", "to": "node_meshnet_node_shard_lifecycle_lifecyclecontracterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_sessionlifecycle_apply", "to": "node_meshnet_node_shard_lifecycle_lifecyclecontracterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_sessionlifecycle_transition", "to": "node_meshnet_node_shard_lifecycle_lifecyclecontracterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_sessionrequest_validate", "to": "node_meshnet_node_shard_lifecycle_lifecyclecontracterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_shardrpccontract_from_bytes", "to": "node_meshnet_node_shard_lifecycle_lifecyclecontracterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_shardrpccontract_validate", "to": "node_meshnet_node_shard_lifecycle_lifecyclecontracterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_deadlinepolicy_post_init", "to": "node_meshnet_node_shard_lifecycle_py_valueerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_flowcontrollimits_post_init", "to": "node_meshnet_node_shard_lifecycle_py_valueerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_tlsauthhooks_validate", "to": "node_meshnet_node_shard_lifecycle_py_valueerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_lifecyclecontracterror_init", "to": "node_meshnet_node_shard_lifecycle_cancellationtoken_init", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_capabilityresponse_validate", "to": "node_meshnet_node_shard_lifecycle_structuredstatus", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_flowcontrol_acquire", "to": "node_meshnet_node_shard_lifecycle_structuredstatus", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_sessionframe_validate", "to": "node_meshnet_node_shard_lifecycle_structuredstatus", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_sessionlifecycle_apply", "to": "node_meshnet_node_shard_lifecycle_structuredstatus", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_sessionlifecycle_cancel", "to": "node_meshnet_node_shard_lifecycle_structuredstatus", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_sessionlifecycle_release", "to": "node_meshnet_node_shard_lifecycle_structuredstatus", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_sessionlifecycle_transition", "to": "node_meshnet_node_shard_lifecycle_structuredstatus", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_sessionrequest_validate", "to": "node_meshnet_node_shard_lifecycle_structuredstatus", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_shardrpccontract_from_bytes", "to": "node_meshnet_node_shard_lifecycle_structuredstatus", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_shardrpccontract_validate", "to": "node_meshnet_node_shard_lifecycle_structuredstatus", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_structuredstatus", "to": "node_meshnet_node_shard_lifecycle_structuredstatus_from_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_structuredstatus", "to": "node_meshnet_node_shard_lifecycle_structuredstatus_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_structuredstatus_to_dict", "to": "node_meshnet_node_shard_lifecycle_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_structuredstatus_from_dict", "to": "node_meshnet_node_shard_lifecycle_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_deadlinepolicy", "to": "node_meshnet_node_shard_lifecycle_deadlinepolicy_post_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_shardrpccontract_from_bytes", "to": "node_meshnet_node_shard_lifecycle_deadlinepolicy", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_rationale_131", "to": "node_meshnet_node_shard_lifecycle_tlsauthhooks", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_shardrpccontract_from_bytes", "to": "node_meshnet_node_shard_lifecycle_tlsauthhooks", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_tlsauthhooks", "to": "node_meshnet_node_shard_lifecycle_tlsauthhooks_validate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_flowcontrol_init", "to": "node_meshnet_node_shard_lifecycle_flowcontrollimits", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_flowcontrollimits", "to": "node_meshnet_node_shard_lifecycle_flowcontrollimits_post_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_sessionframe_validate", "to": "node_meshnet_node_shard_lifecycle_flowcontrollimits", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_sessionlifecycle_apply", "to": "node_meshnet_node_shard_lifecycle_flowcontrollimits", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_shardrpccontract_from_bytes", "to": "node_meshnet_node_shard_lifecycle_flowcontrollimits", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_flowcontrol", "to": "node_meshnet_node_shard_lifecycle_flowcontrol_acquire", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_flowcontrol", "to": "node_meshnet_node_shard_lifecycle_flowcontrol_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_flowcontrol", "to": "node_meshnet_node_shard_lifecycle_flowcontrol_outstanding", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_flowcontrol", "to": "node_meshnet_node_shard_lifecycle_flowcontrol_release", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_rationale_156", "to": "node_meshnet_node_shard_lifecycle_flowcontrol", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_flowcontrol_acquire", "to": "node_meshnet_node_shard_lifecycle_cancellationtoken_cancelled", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_cancellationtoken", "to": "node_meshnet_node_shard_lifecycle_cancellationtoken_cancel", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_cancellationtoken", "to": "node_meshnet_node_shard_lifecycle_cancellationtoken_cancelled", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_cancellationtoken", "to": "node_meshnet_node_shard_lifecycle_cancellationtoken_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_capabilityresponse", "to": "node_meshnet_node_shard_lifecycle_capabilityresponse_validate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_sessionrequest", "to": "node_meshnet_node_shard_lifecycle_sessionrequest_validate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_sessionframe", "to": "node_meshnet_node_shard_lifecycle_sessionframe_validate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_sessionlifecycle_apply", "to": "node_meshnet_node_shard_lifecycle_sessionframe", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_rationale_357", "to": "node_meshnet_node_shard_lifecycle_sessionlifecycle", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_sessionlifecycle", "to": "node_meshnet_node_shard_lifecycle_sessionlifecycle_apply", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_sessionlifecycle", "to": "node_meshnet_node_shard_lifecycle_sessionlifecycle_cancel", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_sessionlifecycle", "to": "node_meshnet_node_shard_lifecycle_sessionlifecycle_release", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_sessionlifecycle", "to": "node_meshnet_node_shard_lifecycle_sessionlifecycle_transition", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_sessionlifecycle_apply", "to": "node_meshnet_node_shard_lifecycle_sessionlifecycle_transition", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_sessionlifecycle_cancel", "to": "node_meshnet_node_shard_lifecycle_sessionlifecycle_transition", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_sessionlifecycle_release", "to": "node_meshnet_node_shard_lifecycle_sessionlifecycle_transition", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_sessionlifecycle_apply", "to": "node_meshnet_node_shard_lifecycle_shardrpccontract_validate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_sessionlifecycle_release", "to": "node_meshnet_node_shard_lifecycle_sessionlifecycle_cancel", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_rationale_423", "to": "node_meshnet_node_shard_lifecycle_shardrpccontract", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_shardrpccontract", "to": "node_meshnet_node_shard_lifecycle_shardrpccontract_from_bytes", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_shardrpccontract", "to": "node_meshnet_node_shard_lifecycle_shardrpccontract_to_bytes", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_shardrpccontract", "to": "node_meshnet_node_shard_lifecycle_shardrpccontract_validate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_shardrpccontract_from_bytes", "to": "node_meshnet_node_shard_lifecycle_shardrpccontract_validate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_shard_lifecycle_shardrpccontract_to_bytes", "to": "node_meshnet_node_shard_lifecycle_shardrpccontract_validate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_admit_capability", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_assignment_bytes_per_layer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_attach_relay_bridge", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_cap_auto_assigned_shard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_capability_device", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_capability_refresher", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_configure_torch_threads", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_detect_num_layers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_discover_relay_url", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_downloaded_model_inventory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_format_shard_label", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_full_model_sources", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_get_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_hardware_label", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_infer_relay_url_from_tracker", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_max_assignable_layers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_memory_budget", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_model_cache_path", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_positive_int", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_post_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_probationary_status_line", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_register_with_tracker", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_registration_display_fields", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_registration_shard_checksum", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_relay_ready_line", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_resolve_recipe", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_run_startup", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_runtime_shard_safety_fraction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_shard_budget_line", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_start_heartbeat", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_start_relay_bridge_if_available", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_tracker_http_error_message", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_startup_warn_virtual_network_ip", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_torch_server", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_torch_server_torchnodeserver", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_wallet", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup", "to": "node_meshnet_node_wallet_load_or_create_wallet", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_rationale_1", "to": "node_meshnet_node_startup", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_downloaded_model_inventory", "to": "node_meshnet_node_startup_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_rationale_47", "to": "node_meshnet_node_startup_downloaded_model_inventory", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_startup_downloaded_model_inventory", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_admit_capability", "to": "node_meshnet_node_startup_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_capability_refresher", "to": "node_meshnet_node_startup_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_detect_num_layers", "to": "node_meshnet_node_startup_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_model_cache_path", "to": "node_meshnet_node_startup_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_registration_shard_checksum", "to": "node_meshnet_node_startup_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_startup_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_rationale_102", "to": "node_meshnet_node_startup_registration_shard_checksum", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_startup_registration_shard_checksum", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_detect_num_layers", "to": "node_meshnet_node_startup_model_cache_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_startup_model_cache_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_rationale_120", "to": "node_meshnet_node_startup_memory_budget", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_startup_memory_budget", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_rationale_129", "to": "node_meshnet_node_startup_full_model_sources", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_startup_full_model_sources", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_startup_hardware_label", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_startup_relay_ready_line", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_configure_torch_threads", "to": "node_meshnet_node_startup_positive_int", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_rationale_176", "to": "node_meshnet_node_startup_configure_torch_threads", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_startup_configure_torch_threads", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_cap_auto_assigned_shard", "to": "node_meshnet_node_startup_max_assignable_layers", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_startup_max_assignable_layers", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_shard_budget_line", "to": "node_meshnet_node_startup_max_assignable_layers", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_cap_auto_assigned_shard", "to": "node_meshnet_node_startup_runtime_shard_safety_fraction", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_rationale_228", "to": "node_meshnet_node_startup_runtime_shard_safety_fraction", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_startup_runtime_shard_safety_fraction", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_startup_cap_auto_assigned_shard", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_startup_format_shard_label", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_startup_shard_budget_line", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_startup_assignment_bytes_per_layer", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_register_with_tracker", "to": "node_meshnet_node_startup_post_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_startup_post_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_discover_relay_url", "to": "node_meshnet_node_startup_get_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_startup_get_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_discover_relay_url", "to": "node_meshnet_node_startup_infer_relay_url_from_tracker", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_rationale_333", "to": "node_meshnet_node_startup_infer_relay_url_from_tracker", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_startup_discover_relay_url", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_start_relay_bridge_if_available", "to": "node_meshnet_node_startup_discover_relay_url", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_startup_start_relay_bridge_if_available", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_attach_relay_bridge", "to": "node_meshnet_node_torch_server_torchnodeserver", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_startup_attach_relay_bridge", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_rationale_424", "to": "node_meshnet_node_startup_start_heartbeat", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_register_with_tracker", "to": "node_meshnet_node_startup_start_heartbeat", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_startup_start_heartbeat", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_start_heartbeat", "to": "node_meshnet_node_startup_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_start_heartbeat", "to": "thread", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_admit_capability", "to": "node_meshnet_node_startup_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_capability_device", "to": "node_meshnet_node_startup_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_capability_refresher", "to": "node_meshnet_node_startup_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_probationary_status_line", "to": "node_meshnet_node_startup_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_register_with_tracker", "to": "node_meshnet_node_startup_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_startup_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_rationale_615", "to": "node_meshnet_node_startup_register_with_tracker", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_startup_register_with_tracker", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_rationale_646", "to": "node_meshnet_node_startup_warn_virtual_network_ip", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_startup_warn_virtual_network_ip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_startup_registration_display_fields", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_rationale_685", "to": "node_meshnet_node_startup_tracker_http_error_message", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_startup_tracker_http_error_message", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_tracker_http_error_message", "to": "node_meshnet_node_startup_py_httperror", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_rationale_700", "to": "node_meshnet_node_startup_resolve_recipe", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_startup_resolve_recipe", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_admit_capability", "to": "node_meshnet_node_startup_capability_device", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_rationale_706", "to": "node_meshnet_node_startup_capability_device", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_admit_capability", "to": "node_meshnet_node_startup_py_capabilityvalidator", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_admit_capability", "to": "node_meshnet_node_torch_server_torchnodeserver_backend", "label": "indirect_call", "title": "indirect_call [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_startup_rationale_727", "to": "node_meshnet_node_startup_admit_capability", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_startup_admit_capability", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_capability_refresher", "to": "node_meshnet_node_startup_py_capabilityvalidator", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_startup_py_capabilityvalidator", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_rationale_771", "to": "node_meshnet_node_startup_capability_refresher", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_startup_capability_refresher", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_rationale_834", "to": "node_meshnet_node_startup_run_startup", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_startup_detect_num_layers", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_startup_probationary_status_line", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_torch_server_torchnodeserver", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_torch_server_torchnodeserver_backend", "label": "indirect_call", "title": "indirect_call [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_startup_run_startup", "to": "node_meshnet_node_wallet_load_or_create_wallet", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_startup_rationale_1641", "to": "node_meshnet_node_startup_detect_num_layers", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_testing", "to": "node_meshnet_node_testing_assume_capability", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_testing", "to": "node_meshnet_node_testing_capability_report_for", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_testing", "to": "node_meshnet_node_testing_capability_stub", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_testing_rationale_1", "to": "node_meshnet_node_testing", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_testing_assume_capability", "to": "node_meshnet_node_testing_capability_report_for", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_testing_capability_report_for", "to": "node_meshnet_node_testing_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_testing_rationale_38", "to": "node_meshnet_node_testing_capability_report_for", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_testing_capability_stub", "to": "node_meshnet_node_testing_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_testing_rationale_60", "to": "node_meshnet_node_testing_assume_capability", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_testing_capability_stub", "to": "node_meshnet_node_testing_py_capabilityvalidator", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_testing_rationale_65", "to": "node_meshnet_node_testing_capability_stub", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_torch_server_backend_token_count", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_torch_server_clamp_downstream_hops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_torch_server_directhopclient", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_torch_server_directrequestuncertainerror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_torch_server_endpoint_key", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_torch_server_fallback_message_token_count", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_torch_server_fallback_text_token_count", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_torch_server_format_downstream_route", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_torch_server_is_cache_miss_body", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_torch_server_load_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_torch_server_maybe_compress_activation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_torch_server_own_endpoint_key", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_torch_server_pipelinecachemiss", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_torch_server_relay_hop", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_torch_server_relayhopclient", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_torch_server_relayrequestuncertainerror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_torch_server_response_error_snippet", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_torch_server_torchhandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_torch_server_torchhttpserver", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_torch_server_torchnodeserver", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_torch_server_usage_for_response", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server", "to": "node_meshnet_node_torch_server_write_progress_line", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_rationale_1", "to": "node_meshnet_node_torch_server", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_pipelinecachemiss", "to": "node_meshnet_node_torch_server_py_exception", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_rationale_38", "to": "node_meshnet_node_torch_server_pipelinecachemiss", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_run_downstream_pipeline", "to": "node_meshnet_node_torch_server_pipelinecachemiss", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_rationale_42", "to": "node_meshnet_node_torch_server_relayrequestuncertainerror", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_relayhopclient_request", "to": "node_meshnet_node_torch_server_relayrequestuncertainerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_relayrequestuncertainerror", "to": "connectionerror", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_directrequestuncertainerror", "to": "connectionerror", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_relayserver_handle_rpc", "to": "connectionerror", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_torch_server_directhopclient_request", "to": "node_meshnet_node_torch_server_directrequestuncertainerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_rationale_46", "to": "node_meshnet_node_torch_server_directrequestuncertainerror", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_own_endpoint_key", "to": "node_meshnet_node_torch_server_endpoint_key", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_rationale_57", "to": "node_meshnet_node_torch_server_endpoint_key", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_get_remaining_route", "to": "node_meshnet_node_torch_server_endpoint_key", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_own_endpoint_key", "to": "node_meshnet_node_torch_server_torchhttpserver", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_get_remaining_route", "to": "node_meshnet_node_torch_server_own_endpoint_key", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_rationale_80", "to": "node_meshnet_node_torch_server_clamp_downstream_hops", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_get_remaining_route", "to": "node_meshnet_node_torch_server_clamp_downstream_hops", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_get_remaining_route", "to": "node_meshnet_node_torch_server_format_downstream_route", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_rationale_103", "to": "node_meshnet_node_torch_server_write_progress_line", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_do_chat_completions", "to": "node_meshnet_node_torch_server_write_progress_line", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_rationale_120", "to": "node_meshnet_node_torch_server_relayhopclient", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_relay_hop", "to": "node_meshnet_node_torch_server_relayhopclient", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_relayhopclient", "to": "node_meshnet_node_torch_server_relayhopclient_close", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_relayhopclient", "to": "node_meshnet_node_torch_server_relayhopclient_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_relayhopclient", "to": "node_meshnet_node_torch_server_relayhopclient_request", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_run_downstream_pipeline", "to": "node_meshnet_node_torch_server_relayhopclient", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_relayhopclient_request", "to": "node_meshnet_node_torch_server_directhopclient_close", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_relayhopclient_close", "to": "node_meshnet_node_torch_server_directhopclient_close", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_directhopclient", "to": "node_meshnet_node_torch_server_directhopclient_close", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_directhopclient", "to": "node_meshnet_node_torch_server_directhopclient_connect", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_directhopclient", "to": "node_meshnet_node_torch_server_directhopclient_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_directhopclient", "to": "node_meshnet_node_torch_server_directhopclient_request", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_rationale_198", "to": "node_meshnet_node_torch_server_directhopclient", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_run_downstream_pipeline", "to": "node_meshnet_node_torch_server_directhopclient", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_directhopclient_connect", "to": "node_meshnet_node_torch_server_py_httpconnection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_directhopclient_request", "to": "node_meshnet_node_torch_server_directhopclient_connect", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_directhopclient_request", "to": "node_meshnet_node_torch_server_directhopclient_close", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_relay_hop", "to": "node_meshnet_node_torch_server_directhopclient_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_run_downstream_pipeline", "to": "node_meshnet_node_torch_server_directhopclient_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_relay_hop", "to": "node_meshnet_node_torch_server_directhopclient_close", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_do_chat_completions", "to": "node_meshnet_node_torch_server_directhopclient_close", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_run_downstream_pipeline", "to": "node_meshnet_node_torch_server_directhopclient_close", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_rationale_257", "to": "node_meshnet_node_torch_server_relay_hop", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_run_downstream_pipeline", "to": "node_meshnet_node_torch_server_relay_hop", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_rationale_278", "to": "node_meshnet_node_torch_server_maybe_compress_activation", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_run_downstream_pipeline", "to": "node_meshnet_node_torch_server_is_cache_miss_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_rationale_291", "to": "node_meshnet_node_torch_server_response_error_snippet", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_run_downstream_pipeline", "to": "node_meshnet_node_torch_server_response_error_snippet", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhttpserver", "to": "node_meshnet_node_torch_server_torchhttpserver_chat_enabled", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhttpserver", "to": "node_meshnet_node_torch_server_torchhttpserver_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhttpserver", "to": "node_meshnet_node_torch_server_torchhttpserver_note_decode_step", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhttpserver", "to": "node_meshnet_node_torch_server_torchhttpserver_resolve_backend", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhttpserver", "to": "node_meshnet_node_torch_server_torchhttpserver_snapshot_current_requests", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver_start", "to": "node_meshnet_node_torch_server_torchhttpserver", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhttpserver_init", "to": "node_meshnet_node_torch_server_torchnodeserver_init", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_rationale_335", "to": "node_meshnet_node_torch_server_torchhttpserver_note_decode_step", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_handle_binary_forward", "to": "node_meshnet_node_torch_server_torchhttpserver_note_decode_step", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_rationale_361", "to": "node_meshnet_node_torch_server_torchhttpserver_snapshot_current_requests", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhttpserver_snapshot_current_requests", "to": "node_meshnet_node_torch_server_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver_current_requests", "to": "node_meshnet_node_torch_server_torchhttpserver_snapshot_current_requests", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_load_backend", "to": "node_meshnet_node_torch_server_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver_current_requests", "to": "node_meshnet_node_torch_server_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver_init", "to": "node_meshnet_node_torch_server_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_do_chat_completions", "to": "node_meshnet_node_torch_server_torchhttpserver_resolve_backend", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_do_post", "to": "node_meshnet_node_torch_server_torchhttpserver_chat_enabled", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler", "to": "node_meshnet_node_torch_server_torchhandler_do_chat_completions", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler", "to": "node_meshnet_node_torch_server_torchhandler_do_post", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler", "to": "node_meshnet_node_torch_server_torchhandler_get_remaining_route", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler", "to": "node_meshnet_node_torch_server_torchhandler_handle_binary_forward", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler", "to": "node_meshnet_node_torch_server_torchhandler_handle_chat_completions", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler", "to": "node_meshnet_node_torch_server_torchhandler_handle_forward", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler", "to": "node_meshnet_node_torch_server_torchhandler_handle_infer", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler", "to": "node_meshnet_node_torch_server_torchhandler_handle_prompt_forward", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler", "to": "node_meshnet_node_torch_server_torchhandler_log_message", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler", "to": "node_meshnet_node_torch_server_torchhandler_read_json_body", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler", "to": "node_meshnet_node_torch_server_torchhandler_record_failed_request", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler", "to": "node_meshnet_node_torch_server_torchhandler_request_id", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler", "to": "node_meshnet_node_torch_server_torchhandler_request_log_suffix", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler", "to": "node_meshnet_node_torch_server_torchhandler_run_downstream_pipeline", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler", "to": "node_meshnet_node_torch_server_torchhandler_send_activation", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler", "to": "node_meshnet_node_torch_server_torchhandler_send_json", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler", "to": "node_meshnet_node_torch_server_torchhandler_send_openai_response", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler", "to": "node_meshnet_node_torch_server_torchhandler_start_openai_stream", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler", "to": "node_meshnet_node_torch_server_torchhandler_stream_openai_response", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler", "to": "node_meshnet_node_torch_server_torchhandler_track_request_begin", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler", "to": "node_meshnet_node_torch_server_torchhandler_track_request_end", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler", "to": "node_meshnet_node_torch_server_torchhandler_track_request_progress", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_handle_chat_completions", "to": "node_meshnet_node_torch_server_torchhandler_request_id", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_do_chat_completions", "to": "node_meshnet_node_torch_server_torchhandler_request_log_suffix", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_handle_binary_forward", "to": "node_meshnet_node_torch_server_torchhandler_request_log_suffix", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_do_chat_completions", "to": "node_meshnet_node_torch_server_torchhandler_track_request_begin", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_do_chat_completions", "to": "node_meshnet_node_torch_server_torchhandler_track_request_progress", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_handle_chat_completions", "to": "node_meshnet_node_torch_server_torchhandler_track_request_end", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_do_post", "to": "node_meshnet_node_torch_server_torchhandler_handle_chat_completions", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_do_post", "to": "node_meshnet_node_torch_server_torchhandler_handle_forward", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_do_post", "to": "node_meshnet_node_torch_server_torchhandler_handle_infer", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_handle_infer", "to": "node_meshnet_node_torch_server_torchhandler_read_json_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_handle_infer", "to": "node_meshnet_node_torch_server_torchhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_handle_forward", "to": "node_meshnet_node_torch_server_torchhandler_handle_binary_forward", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_handle_forward", "to": "node_meshnet_node_torch_server_torchhandler_handle_prompt_forward", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_handle_prompt_forward", "to": "node_meshnet_node_torch_server_torchhandler_read_json_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_handle_prompt_forward", "to": "node_meshnet_node_torch_server_torchhandler_send_activation", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_handle_prompt_forward", "to": "node_meshnet_node_torch_server_torchhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_handle_binary_forward", "to": "node_meshnet_node_torch_server_torchhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_do_chat_completions", "to": "node_meshnet_node_torch_server_torchhandler_read_json_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_read_json_body", "to": "node_meshnet_node_torch_server_torchhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_do_chat_completions", "to": "node_meshnet_node_torch_server_torchhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_send_openai_response", "to": "node_meshnet_node_torch_server_torchhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_handle_chat_completions", "to": "node_meshnet_node_torch_server_torchhandler_do_chat_completions", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_do_chat_completions", "to": "node_meshnet_node_torch_server_torchhandler_record_failed_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_do_chat_completions", "to": "node_meshnet_node_torch_server_backend_token_count", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_do_chat_completions", "to": "node_meshnet_node_torch_server_torchhandler_get_remaining_route", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_do_chat_completions", "to": "node_meshnet_node_torch_server_torchhandler_run_downstream_pipeline", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_do_chat_completions", "to": "node_meshnet_node_torch_server_torchhandler_send_openai_response", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_do_chat_completions", "to": "node_meshnet_node_torch_server_torchhandler_start_openai_stream", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_do_chat_completions", "to": "node_meshnet_node_torch_server_torchhandler_stream_openai_response", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_rationale_975", "to": "node_meshnet_node_torch_server_torchhandler_get_remaining_route", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_rationale_1062", "to": "node_meshnet_node_torch_server_torchhandler_run_downstream_pipeline", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_rationale_1291", "to": "node_meshnet_node_torch_server_torchhandler_stream_openai_response", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_stream_openai_response", "to": "node_meshnet_node_torch_server_torchhandler_start_openai_stream", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_rationale_1300", "to": "node_meshnet_node_torch_server_torchhandler_start_openai_stream", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchhandler_send_openai_response", "to": "node_meshnet_node_torch_server_usage_for_response", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_usage_for_response", "to": "node_meshnet_node_torch_server_backend_token_count", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_usage_for_response", "to": "node_meshnet_node_torch_server_fallback_message_token_count", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_usage_for_response", "to": "node_meshnet_node_torch_server_fallback_text_token_count", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_fallback_message_token_count", "to": "node_meshnet_node_torch_server_fallback_text_token_count", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_rationale_1465", "to": "node_meshnet_node_torch_server_torchnodeserver", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver", "to": "node_meshnet_node_torch_server_torchnodeserver_apply_tracker_directives", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver", "to": "node_meshnet_node_torch_server_torchnodeserver_backend", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver", "to": "node_meshnet_node_torch_server_torchnodeserver_backend_for", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver", "to": "node_meshnet_node_torch_server_torchnodeserver_current_requests", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver", "to": "node_meshnet_node_torch_server_torchnodeserver_failed_requests", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver", "to": "node_meshnet_node_torch_server_torchnodeserver_forward_chunk_count", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver", "to": "node_meshnet_node_torch_server_torchnodeserver_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver", "to": "node_meshnet_node_torch_server_torchnodeserver_loaded_model_ids", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver", "to": "node_meshnet_node_torch_server_torchnodeserver_queue_depth", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver", "to": "node_meshnet_node_torch_server_torchnodeserver_received_activations", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver", "to": "node_meshnet_node_torch_server_torchnodeserver_route_timeout", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver", "to": "node_meshnet_node_torch_server_torchnodeserver_set_advertised_endpoint", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver", "to": "node_meshnet_node_torch_server_torchnodeserver_start", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver", "to": "node_meshnet_node_torch_server_torchnodeserver_stop", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver", "to": "node_meshnet_node_torch_server_torchnodeserver_total_requests", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver_init", "to": "node_meshnet_node_torch_server_load_backend", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver_init", "to": "node_meshnet_node_torch_server_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_load_backend", "to": "node_meshnet_node_torch_server_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_rationale_1547", "to": "node_meshnet_node_torch_server_torchnodeserver_backend_for", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_rationale_1558", "to": "node_meshnet_node_torch_server_torchnodeserver_apply_tracker_directives", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_torchnodeserver_apply_tracker_directives", "to": "node_meshnet_node_torch_server_load_backend", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_torch_server_rationale_1676", "to": "node_meshnet_node_torch_server_torchnodeserver_set_advertised_endpoint", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wallet", "to": "node_meshnet_node_wallet_b58encode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wallet", "to": "node_meshnet_node_wallet_load_or_create_wallet", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wallet_rationale_1", "to": "node_meshnet_node_wallet", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wallet_load_or_create_wallet", "to": "node_meshnet_node_wallet_b58encode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wallet_load_or_create_wallet", "to": "node_meshnet_node_wallet_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wallet_rationale_35", "to": "node_meshnet_node_wallet_load_or_create_wallet", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard", "to": "node_meshnet_node_wizard_ask", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard", "to": "node_meshnet_node_wizard_ask_int", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard", "to": "node_meshnet_node_wizard_ask_quant", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard", "to": "node_meshnet_node_wizard_ask_yn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard", "to": "node_meshnet_node_wizard_browse_hf_interactive", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard", "to": "node_meshnet_node_wizard_detect_gpus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard", "to": "node_meshnet_node_wizard_ping_tracker", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard", "to": "node_meshnet_node_wizard_print_gpus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard", "to": "node_meshnet_node_wizard_print_model_table", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard", "to": "node_meshnet_node_wizard_print_models_table", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard", "to": "node_meshnet_node_wizard_run_wizard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard", "to": "node_meshnet_node_wizard_total_vram_gb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard", "to": "node_meshnet_node_wizard_validate_dir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard", "to": "node_meshnet_node_wizard_validate_tracker", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard_rationale_1", "to": "node_meshnet_node_wizard", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard_ask_int", "to": "node_meshnet_node_wizard_ask", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard_ask_yn", "to": "node_meshnet_node_wizard_ask", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard_browse_hf_interactive", "to": "node_meshnet_node_wizard_ask", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard_rationale_27", "to": "node_meshnet_node_wizard_ask", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard_run_wizard", "to": "node_meshnet_node_wizard_ask", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard_ask_quant", "to": "node_meshnet_node_wizard_ask_int", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard_run_wizard", "to": "node_meshnet_node_wizard_ask_int", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard_run_wizard", "to": "node_meshnet_node_wizard_ask_yn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard_print_models_table", "to": "node_meshnet_node_wizard_detect_gpus", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard_rationale_72", "to": "node_meshnet_node_wizard_detect_gpus", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard_run_wizard", "to": "node_meshnet_node_wizard_detect_gpus", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard_ask_quant", "to": "node_meshnet_node_wizard_total_vram_gb", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard_print_model_table", "to": "node_meshnet_node_wizard_total_vram_gb", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard_print_models_table", "to": "node_meshnet_node_wizard_total_vram_gb", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard_run_wizard", "to": "node_meshnet_node_wizard_total_vram_gb", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard_run_wizard", "to": "node_meshnet_node_wizard_print_gpus", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard_run_wizard", "to": "node_meshnet_node_wizard_print_model_table", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard_rationale_126", "to": "node_meshnet_node_wizard_browse_hf_interactive", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard_run_wizard", "to": "node_meshnet_node_wizard_browse_hf_interactive", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard_run_wizard", "to": "node_meshnet_node_wizard_ask_quant", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard_run_wizard", "to": "node_meshnet_node_wizard_validate_dir", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard_run_wizard", "to": "node_meshnet_node_wizard_validate_tracker", "label": "indirect_call", "title": "indirect_call [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "node_meshnet_node_wizard_rationale_206", "to": "node_meshnet_node_wizard_ping_tracker", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard_run_wizard", "to": "node_meshnet_node_wizard_ping_tracker", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard_rationale_215", "to": "node_meshnet_node_wizard_run_wizard", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_meshnet_node_wizard_rationale_312", "to": "node_meshnet_node_wizard_print_models_table", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_llama_meshnet_range_loader", "to": "node_native_llama_meshnet_range_loader_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance", "to": "node_native_tests_test_shard_protocol_conformance_checkfingerprint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance", "to": "node_native_tests_test_shard_protocol_conformance_crc32c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance", "to": "node_native_tests_test_shard_protocol_conformance_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance", "to": "node_native_tests_test_shard_protocol_conformance_readfile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance", "to": "node_native_tests_test_shard_protocol_conformance_reassembleuncompressed", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance", "to": "node_native_tests_test_shard_protocol_conformance_testcapabilityreportvector", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance", "to": "node_native_tests_test_shard_protocol_conformance_testdecodebundlevector", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance", "to": "node_native_tests_test_shard_protocol_conformance_testdecodefastpathissmall", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance", "to": "node_native_tests_test_shard_protocol_conformance_testsessionrequestvector", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance", "to": "node_native_tests_test_shard_protocol_conformance_testsparsemessageparses", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance", "to": "node_native_tests_test_shard_protocol_conformance_testunknownfieldsarepreserved", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance", "to": "string", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance_crc32c", "to": "string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance_testsessionrequestvector", "to": "node_native_tests_test_shard_protocol_conformance_crc32c", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance_checkfingerprint", "to": "string", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance_readfile", "to": "string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance_reassembleuncompressed", "to": "string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance_testcapabilityreportvector", "to": "string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance_testdecodebundlevector", "to": "string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance_testdecodefastpathissmall", "to": "string", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance_testsessionrequestvector", "to": "string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance_testsparsemessageparses", "to": "string", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance_testunknownfieldsarepreserved", "to": "string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance_main", "to": "node_native_tests_test_shard_protocol_conformance_readfile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance_readfile", "to": "node_native_tests_test_shard_protocol_conformance_cpp_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance_testsessionrequestvector", "to": "node_native_tests_test_shard_protocol_conformance_reassembleuncompressed", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance_checkfingerprint", "to": "fingerprint", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance_testcapabilityreportvector", "to": "node_native_tests_test_shard_protocol_conformance_checkfingerprint", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance_testsessionrequestvector", "to": "node_native_tests_test_shard_protocol_conformance_checkfingerprint", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance_main", "to": "node_native_tests_test_shard_protocol_conformance_testsessionrequestvector", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance_main", "to": "node_native_tests_test_shard_protocol_conformance_testcapabilityreportvector", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance_main", "to": "node_native_tests_test_shard_protocol_conformance_testunknownfieldsarepreserved", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance_main", "to": "node_native_tests_test_shard_protocol_conformance_testsparsemessageparses", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance_main", "to": "node_native_tests_test_shard_protocol_conformance_testdecodefastpathissmall", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "node_native_tests_test_shard_protocol_conformance_main", "to": "node_native_tests_test_shard_protocol_conformance_testdecodebundlevector", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_init_rationale_1", "to": "p2p_meshnet_p2p_init", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_gossip", "to": "p2p_meshnet_p2p_gossip_gossipclient", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_gossip", "to": "p2p_meshnet_p2p_gossip_make_envelope", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_gossip_rationale_1", "to": "p2p_meshnet_p2p_gossip", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_gossip_gossipclient_connect_loop", "to": "p2p_meshnet_p2p_gossip_make_envelope", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_gossip_gossipclient_publish", "to": "p2p_meshnet_p2p_gossip_make_envelope", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_gossip_gossipclient", "to": "p2p_meshnet_p2p_gossip_gossipclient_connect_loop", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_gossip_gossipclient", "to": "p2p_meshnet_p2p_gossip_gossipclient_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_gossip_gossipclient", "to": "p2p_meshnet_p2p_gossip_gossipclient_publish", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_gossip_gossipclient", "to": "p2p_meshnet_p2p_gossip_gossipclient_receive_loop", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_gossip_gossipclient", "to": "p2p_meshnet_p2p_gossip_gossipclient_run_loop", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_gossip_gossipclient", "to": "p2p_meshnet_p2p_gossip_gossipclient_send", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_gossip_gossipclient", "to": "p2p_meshnet_p2p_gossip_gossipclient_start", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_gossip_gossipclient", "to": "p2p_meshnet_p2p_gossip_gossipclient_stop", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_gossip_gossipclient", "to": "p2p_meshnet_p2p_gossip_gossipclient_subscribe", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_gossip_gossipclient", "to": "p2p_meshnet_p2p_gossip_gossipclient_wait_connected", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_gossip_rationale_40", "to": "p2p_meshnet_p2p_gossip_gossipclient", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_gossip_rationale_67", "to": "p2p_meshnet_p2p_gossip_gossipclient_subscribe", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_gossip_gossipclient_publish", "to": "p2p_meshnet_p2p_gossip_gossipclient_send", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_gossip_rationale_71", "to": "p2p_meshnet_p2p_gossip_gossipclient_publish", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_gossip_rationale_77", "to": "p2p_meshnet_p2p_gossip_gossipclient_start", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_gossip_rationale_84", "to": "p2p_meshnet_p2p_gossip_gossipclient_wait_connected", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_gossip_rationale_88", "to": "p2p_meshnet_p2p_gossip_gossipclient_stop", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_gossip_gossipclient_run_loop", "to": "p2p_meshnet_p2p_gossip_gossipclient_connect_loop", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_gossip_gossipclient_connect_loop", "to": "p2p_meshnet_p2p_gossip_gossipclient_receive_loop", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_identity", "to": "p2p_meshnet_p2p_identity_generate_keypair", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_identity", "to": "p2p_meshnet_p2p_identity_load_or_create_identity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_identity", "to": "p2p_meshnet_p2p_identity_peer_id_from_pubkey", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_identity_rationale_1", "to": "p2p_meshnet_p2p_identity", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_identity_load_or_create_identity", "to": "p2p_meshnet_p2p_identity_generate_keypair", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_identity_rationale_15", "to": "p2p_meshnet_p2p_identity_generate_keypair", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_identity_load_or_create_identity", "to": "p2p_meshnet_p2p_identity_peer_id_from_pubkey", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_identity_load_or_create_identity", "to": "p2p_meshnet_p2p_identity_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_identity_rationale_37", "to": "p2p_meshnet_p2p_identity_load_or_create_identity", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_mdns", "to": "p2p_meshnet_p2p_mdns_listener", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_mdns", "to": "p2p_meshnet_p2p_mdns_local_ip", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_mdns", "to": "p2p_meshnet_p2p_mdns_mdnsdiscovery", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_mdns_rationale_1", "to": "p2p_meshnet_p2p_mdns", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_mdns_mdnsdiscovery_start", "to": "p2p_meshnet_p2p_mdns_local_ip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_mdns_listener_init", "to": "p2p_meshnet_p2p_mdns_mdnsdiscovery", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_mdns_mdnsdiscovery", "to": "p2p_meshnet_p2p_mdns_mdnsdiscovery_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_mdns_mdnsdiscovery", "to": "p2p_meshnet_p2p_mdns_mdnsdiscovery_is_available", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_mdns_mdnsdiscovery", "to": "p2p_meshnet_p2p_mdns_mdnsdiscovery_start", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_mdns_mdnsdiscovery", "to": "p2p_meshnet_p2p_mdns_mdnsdiscovery_stop", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_mdns_rationale_36", "to": "p2p_meshnet_p2p_mdns_mdnsdiscovery", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_mdns_mdnsdiscovery_start", "to": "p2p_meshnet_p2p_mdns_listener", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_mdns_listener", "to": "p2p_meshnet_p2p_mdns_listener_add_service", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_mdns_listener", "to": "p2p_meshnet_p2p_mdns_listener_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_mdns_listener", "to": "p2p_meshnet_p2p_mdns_listener_remove_service", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_mdns_listener", "to": "p2p_meshnet_p2p_mdns_listener_update_service", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_mdns_rationale_106", "to": "p2p_meshnet_p2p_mdns_listener", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_tls", "to": "p2p_meshnet_p2p_tls_cert_fingerprint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_tls", "to": "p2p_meshnet_p2p_tls_generate_self_signed_cert", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_tls", "to": "p2p_meshnet_p2p_tls_make_client_ssl_context", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_tls", "to": "p2p_meshnet_p2p_tls_make_server_ssl_context", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_tls_rationale_1", "to": "p2p_meshnet_p2p_tls", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_tls_generate_self_signed_cert", "to": "p2p_meshnet_p2p_tls_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_tls_rationale_22", "to": "p2p_meshnet_p2p_tls_generate_self_signed_cert", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_tls_cert_fingerprint", "to": "p2p_meshnet_p2p_tls_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_tls_make_server_ssl_context", "to": "p2p_meshnet_p2p_tls_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_tls_rationale_84", "to": "p2p_meshnet_p2p_tls_cert_fingerprint", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_tls_make_server_ssl_context", "to": "sslcontext", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_tls_rationale_98", "to": "p2p_meshnet_p2p_tls_make_server_ssl_context", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_tls_make_client_ssl_context", "to": "sslcontext", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "p2p_meshnet_p2p_tls_rationale_107", "to": "p2p_meshnet_p2p_tls_make_client_ssl_context", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_init_rationale_1", "to": "relay_meshnet_relay_init", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_cli", "to": "relay_meshnet_relay_cli_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_cli", "to": "relay_meshnet_relay_server_relayserver", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_cli_rationale_1", "to": "relay_meshnet_relay_cli", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_cli_main", "to": "relay_meshnet_relay_server_relayserver", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_peer_registry", "to": "relay_meshnet_relay_peer_registry_peerentry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_peer_registry", "to": "relay_meshnet_relay_peer_registry_peerregistry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_peer_registry_rationale_1", "to": "relay_meshnet_relay_peer_registry", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server", "to": "relay_meshnet_relay_peer_registry", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_peer_registry_peerregistry_all_except", "to": "relay_meshnet_relay_peer_registry_peerentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_peer_registry_peerregistry_get", "to": "relay_meshnet_relay_peer_registry_peerentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_peer_registry_peerregistry_register", "to": "relay_meshnet_relay_peer_registry_peerentry", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_peer_registry_peerregistry", "to": "relay_meshnet_relay_peer_registry_peerregistry_all_except", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_peer_registry_peerregistry", "to": "relay_meshnet_relay_peer_registry_peerregistry_get", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_peer_registry_peerregistry", "to": "relay_meshnet_relay_peer_registry_peerregistry_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_peer_registry_peerregistry", "to": "relay_meshnet_relay_peer_registry_peerregistry_len", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_peer_registry_peerregistry", "to": "relay_meshnet_relay_peer_registry_peerregistry_list_peers", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_peer_registry_peerregistry", "to": "relay_meshnet_relay_peer_registry_peerregistry_register", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_peer_registry_peerregistry", "to": "relay_meshnet_relay_peer_registry_peerregistry_touch", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_peer_registry_peerregistry", "to": "relay_meshnet_relay_peer_registry_peerregistry_unregister", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server", "to": "relay_meshnet_relay_peer_registry_peerregistry", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_relayserver", "to": "relay_meshnet_relay_peer_registry_peerregistry", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "relay_meshnet_relay_server_relayserver_init", "to": "relay_meshnet_relay_peer_registry_peerregistry", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_relayserver_registry", "to": "relay_meshnet_relay_peer_registry_peerregistry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server", "to": "relay_meshnet_relay_server_broadcast", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server", "to": "relay_meshnet_relay_server_decode_binary_frame", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server", "to": "relay_meshnet_relay_server_encode_binary_frame", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server", "to": "relay_meshnet_relay_server_relayserver", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server", "to": "relay_meshnet_relay_server_safe_send", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server", "to": "relay_meshnet_relay_server_ws_max_size", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_rationale_1", "to": "relay_meshnet_relay_server", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_rationale_33", "to": "relay_meshnet_relay_server_ws_max_size", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_relayserver_serve", "to": "relay_meshnet_relay_server_ws_max_size", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_relayserver_handle_rpc", "to": "relay_meshnet_relay_server_encode_binary_frame", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_relayserver_handle_gossip", "to": "relay_meshnet_relay_server_decode_binary_frame", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_relayserver_handle_rpc", "to": "relay_meshnet_relay_server_decode_binary_frame", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_rationale_66", "to": "relay_meshnet_relay_server_relayserver", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_relayserver", "to": "relay_meshnet_relay_server_relayserver_fail_pending_for_peer", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_relayserver", "to": "relay_meshnet_relay_server_relayserver_handle_circuit_relay", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_relayserver", "to": "relay_meshnet_relay_server_relayserver_handle_connection", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_relayserver", "to": "relay_meshnet_relay_server_relayserver_handle_gossip", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_relayserver", "to": "relay_meshnet_relay_server_relayserver_handle_rpc", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_relayserver", "to": "relay_meshnet_relay_server_relayserver_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_relayserver", "to": "relay_meshnet_relay_server_relayserver_registry", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_relayserver", "to": "relay_meshnet_relay_server_relayserver_run", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_relayserver", "to": "relay_meshnet_relay_server_relayserver_serve", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_relayserver", "to": "relay_meshnet_relay_server_relayserver_start", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_relayserver", "to": "relay_meshnet_relay_server_relayserver_stop", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_start_embedded_relay", "to": "relay_meshnet_relay_server_relayserver", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "relay_meshnet_relay_server_relayserver_init", "to": "relay_meshnet_relay_server_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_rationale_112", "to": "relay_meshnet_relay_server_relayserver_start", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_rationale_128", "to": "relay_meshnet_relay_server_relayserver_fail_pending_for_peer", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_relayserver_handle_gossip", "to": "relay_meshnet_relay_server_relayserver_fail_pending_for_peer", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_relayserver_run", "to": "relay_meshnet_relay_server_relayserver_serve", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_rationale_172", "to": "relay_meshnet_relay_server_relayserver_handle_connection", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_relayserver_handle_connection", "to": "relay_meshnet_relay_server_relayserver_handle_circuit_relay", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_relayserver_handle_connection", "to": "relay_meshnet_relay_server_relayserver_handle_gossip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_relayserver_handle_connection", "to": "relay_meshnet_relay_server_relayserver_handle_rpc", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_rationale_194", "to": "relay_meshnet_relay_server_relayserver_handle_gossip", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_relayserver_handle_gossip", "to": "relay_meshnet_relay_server_broadcast", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_rationale_263", "to": "relay_meshnet_relay_server_relayserver_handle_circuit_relay", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_rationale_291", "to": "relay_meshnet_relay_server_relayserver_handle_rpc", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_broadcast", "to": "relay_meshnet_relay_server_safe_send", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relay_meshnet_relay_server_rationale_391", "to": "relay_meshnet_relay_server_broadcast", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_init", "to": "sdk_meshnet_client", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_init", "to": "sdk_meshnet_client_client", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_init", "to": "sdk_meshnet_client_costestimate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_init", "to": "sdk_meshnet_client_redundantrequestresult", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_init", "to": "sdk_meshnet_client_topupquote", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_init", "to": "sdk_meshnet_client_walletbalance", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_init_rationale_1", "to": "sdk_meshnet_init", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client", "to": "sdk_meshnet_client_chat_completion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client", "to": "sdk_meshnet_client_client", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client", "to": "sdk_meshnet_client_costestimate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client", "to": "sdk_meshnet_client_modelsclient", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client", "to": "sdk_meshnet_client_openai_base_url", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client", "to": "sdk_meshnet_client_redundantrequestresult", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client", "to": "sdk_meshnet_client_topupquote", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client", "to": "sdk_meshnet_client_walletbalance", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client", "to": "sdk_meshnet_client_walletclient", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_rationale_1", "to": "sdk_meshnet_client", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_rationale_17", "to": "sdk_meshnet_client_walletbalance", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_walletclient_balance", "to": "sdk_meshnet_client_walletbalance", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_rationale_25", "to": "sdk_meshnet_client_topupquote", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_walletclient_top_up", "to": "sdk_meshnet_client_topupquote", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_client_estimate_cost", "to": "sdk_meshnet_client_costestimate", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_rationale_35", "to": "sdk_meshnet_client_costestimate", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_client_request", "to": "sdk_meshnet_client_redundantrequestresult", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_rationale_45", "to": "sdk_meshnet_client_redundantrequestresult", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_client", "to": "sdk_meshnet_client_client_estimate_cost", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_client", "to": "sdk_meshnet_client_client_get_json", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_client", "to": "sdk_meshnet_client_client_headers", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_client", "to": "sdk_meshnet_client_client_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_client", "to": "sdk_meshnet_client_client_post_json", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_client", "to": "sdk_meshnet_client_client_request", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_modelsclient_init", "to": "sdk_meshnet_client_client", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_rationale_53", "to": "sdk_meshnet_client_client", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_walletclient_init", "to": "sdk_meshnet_client_client", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_client_init", "to": "sdk_meshnet_client_modelsclient", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_client_init", "to": "sdk_meshnet_client_openai_base_url", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_client_init", "to": "sdk_meshnet_client_walletclient", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_client_estimate_cost", "to": "sdk_meshnet_client_client_get_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_client_request", "to": "sdk_meshnet_client_chat_completion", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_client_request", "to": "sdk_meshnet_client_client_post_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_client_request", "to": "sdk_meshnet_client_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_chat_completion", "to": "sdk_meshnet_client_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_client_get_json", "to": "sdk_meshnet_client_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_client_post_json", "to": "sdk_meshnet_client_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_client_get_json", "to": "sdk_meshnet_client_client_headers", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_modelsclient_available", "to": "sdk_meshnet_client_client_get_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_walletclient_balance", "to": "sdk_meshnet_client_client_get_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_client_post_json", "to": "sdk_meshnet_client_client_headers", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_walletclient_top_up", "to": "sdk_meshnet_client_client_post_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_walletclient", "to": "sdk_meshnet_client_walletclient_balance", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_walletclient", "to": "sdk_meshnet_client_walletclient_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_walletclient", "to": "sdk_meshnet_client_walletclient_top_up", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_modelsclient", "to": "sdk_meshnet_client_modelsclient_available", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_modelsclient", "to": "sdk_meshnet_client_modelsclient_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sdk_meshnet_client_chat_completion", "to": "chatcompletion", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_init_rationale_1", "to": "tracker_meshnet_tracker_init", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts", "to": "tracker_meshnet_tracker_accounts_accountstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts", "to": "tracker_meshnet_tracker_accounts_hash_password", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts", "to": "tracker_meshnet_tracker_accounts_normalize_nickname", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_rationale_1", "to": "tracker_meshnet_tracker_accounts", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_cli", "to": "tracker_meshnet_tracker_accounts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_accounts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore_register", "to": "tracker_meshnet_tracker_accounts_normalize_nickname", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore_update_profile", "to": "tracker_meshnet_tracker_accounts_normalize_nickname", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore_register", "to": "tracker_meshnet_tracker_accounts_hash_password", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore_verify_login", "to": "tracker_meshnet_tracker_accounts_hash_password", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore", "to": "tracker_meshnet_tracker_accounts_accountstore_account_count", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore", "to": "tracker_meshnet_tracker_accounts_accountstore_apply_events", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore", "to": "tracker_meshnet_tracker_accounts_accountstore_apply_locked", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore", "to": "tracker_meshnet_tracker_accounts_accountstore_create_api_key", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore", "to": "tracker_meshnet_tracker_accounts_accountstore_create_session", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore", "to": "tracker_meshnet_tracker_accounts_accountstore_destroy_session", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore", "to": "tracker_meshnet_tracker_accounts_accountstore_events_since", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore", "to": "tracker_meshnet_tracker_accounts_accountstore_get_account", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore", "to": "tracker_meshnet_tracker_accounts_accountstore_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore", "to": "tracker_meshnet_tracker_accounts_accountstore_init_db", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore", "to": "tracker_meshnet_tracker_accounts_accountstore_is_active_key", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore", "to": "tracker_meshnet_tracker_accounts_accountstore_is_key_revoked", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore", "to": "tracker_meshnet_tracker_accounts_accountstore_keys_for", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore", "to": "tracker_meshnet_tracker_accounts_accountstore_list_accounts", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore", "to": "tracker_meshnet_tracker_accounts_accountstore_load_from_db", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore", "to": "tracker_meshnet_tracker_accounts_accountstore_owner_of_key", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore", "to": "tracker_meshnet_tracker_accounts_accountstore_public_view", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore", "to": "tracker_meshnet_tracker_accounts_accountstore_register", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore", "to": "tracker_meshnet_tracker_accounts_accountstore_revoke_api_key", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore", "to": "tracker_meshnet_tracker_accounts_accountstore_save_to_db", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore", "to": "tracker_meshnet_tracker_accounts_accountstore_session_account", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore", "to": "tracker_meshnet_tracker_accounts_accountstore_update_profile", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore", "to": "tracker_meshnet_tracker_accounts_accountstore_verify_login", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_rationale_57", "to": "tracker_meshnet_tracker_accounts_accountstore", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_accounts_accountstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_activeproxycontext", "to": "tracker_meshnet_tracker_accounts_accountstore", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_modelstats", "to": "tracker_meshnet_tracker_accounts_accountstore", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodeentry", "to": "tracker_meshnet_tracker_accounts_accountstore", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodemodelthroughput", "to": "tracker_meshnet_tracker_accounts_accountstore", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingcounter", "to": "tracker_meshnet_tracker_accounts_accountstore", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingthroughput", "to": "tracker_meshnet_tracker_accounts_accountstore", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_statscollector", "to": "tracker_meshnet_tracker_accounts_accountstore", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_accounts_accountstore", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhttpserver", "to": "tracker_meshnet_tracker_accounts_accountstore", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "tracker_meshnet_tracker_accounts_accountstore", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_init", "to": "tracker_meshnet_tracker_accounts_accountstore", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore_init", "to": "tracker_meshnet_tracker_accounts_accountstore_init_db", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore_init", "to": "tracker_meshnet_tracker_accounts_accountstore_load_from_db", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore_register", "to": "tracker_meshnet_tracker_accounts_accountstore_apply_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore_register", "to": "tracker_meshnet_tracker_accounts_accountstore_public_view", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_rationale_84", "to": "tracker_meshnet_tracker_accounts_accountstore_register", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore_update_profile", "to": "tracker_meshnet_tracker_accounts_accountstore_apply_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore_update_profile", "to": "tracker_meshnet_tracker_accounts_accountstore_public_view", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_rationale_118", "to": "tracker_meshnet_tracker_accounts_accountstore_update_profile", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore_verify_login", "to": "tracker_meshnet_tracker_accounts_accountstore_public_view", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_rationale_136", "to": "tracker_meshnet_tracker_accounts_accountstore_verify_login", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore_create_session", "to": "tracker_meshnet_tracker_accounts_accountstore_save_to_db", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore_session_account", "to": "tracker_meshnet_tracker_accounts_accountstore_public_view", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore_destroy_session", "to": "tracker_meshnet_tracker_accounts_accountstore_save_to_db", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore_create_api_key", "to": "tracker_meshnet_tracker_accounts_accountstore_apply_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore_revoke_api_key", "to": "tracker_meshnet_tracker_accounts_accountstore_apply_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_rationale_197", "to": "tracker_meshnet_tracker_accounts_accountstore_revoke_api_key", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore_get_account", "to": "tracker_meshnet_tracker_accounts_accountstore_public_view", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore_list_accounts", "to": "tracker_meshnet_tracker_accounts_accountstore_public_view", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore_apply_events", "to": "tracker_meshnet_tracker_accounts_accountstore_apply_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_accounts_accountstore_load_from_db", "to": "tracker_meshnet_tracker_accounts_accountstore_apply_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_auth", "to": "tracker_meshnet_tracker_auth_hive_digest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_auth", "to": "tracker_meshnet_tracker_auth_is_validator_token", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_auth", "to": "tracker_meshnet_tracker_auth_sign_hive_request", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_auth", "to": "tracker_meshnet_tracker_auth_verify_hive_request", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_auth_rationale_1", "to": "tracker_meshnet_tracker_auth", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_auth", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_auth_sign_hive_request", "to": "tracker_meshnet_tracker_auth_hive_digest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_auth_verify_hive_request", "to": "tracker_meshnet_tracker_auth_hive_digest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_auth_rationale_35", "to": "tracker_meshnet_tracker_auth_sign_hive_request", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_auth_sign_hive_request", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_push_to_peers", "to": "tracker_meshnet_tracker_auth_sign_hive_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_auth_rationale_50", "to": "tracker_meshnet_tracker_auth_verify_hive_request", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_auth_verify_hive_request", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_read_hive_authenticated_body", "to": "tracker_meshnet_tracker_auth_verify_hive_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_auth_rationale_71", "to": "tracker_meshnet_tracker_auth_is_validator_token", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_auth_is_validator_token", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_resolve_identity", "to": "tracker_meshnet_tracker_auth_is_validator_token", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing", "to": "tracker_meshnet_tracker_billing_billingledger", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing", "to": "tracker_meshnet_tracker_billing_normalize_rates", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_rationale_1", "to": "tracker_meshnet_tracker_billing", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_cli", "to": "tracker_meshnet_tracker_billing", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_billing", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger_init", "to": "tracker_meshnet_tracker_billing_normalize_rates", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_rationale_31", "to": "tracker_meshnet_tracker_billing_normalize_rates", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger", "to": "tracker_meshnet_tracker_billing_billingledger_api_key_for_wallet", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger", "to": "tracker_meshnet_tracker_billing_billingledger_apply_events", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger", "to": "tracker_meshnet_tracker_billing_billingledger_apply_locked", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger", "to": "tracker_meshnet_tracker_billing_billingledger_bind_wallet", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger", "to": "tracker_meshnet_tracker_billing_billingledger_charge_request", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger", "to": "tracker_meshnet_tracker_billing_billingledger_confirm_settlement", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger", "to": "tracker_meshnet_tracker_billing_billingledger_credit_client", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger", "to": "tracker_meshnet_tracker_billing_billingledger_credit_deposit", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger", "to": "tracker_meshnet_tracker_billing_billingledger_ensure_client", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger", "to": "tracker_meshnet_tracker_billing_billingledger_events_since", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger", "to": "tracker_meshnet_tracker_billing_billingledger_forfeit_pending", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger", "to": "tracker_meshnet_tracker_billing_billingledger_get_client_balance", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger", "to": "tracker_meshnet_tracker_billing_billingledger_get_node_pending", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger", "to": "tracker_meshnet_tracker_billing_billingledger_grant_caller_credit", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger", "to": "tracker_meshnet_tracker_billing_billingledger_has_event", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger", "to": "tracker_meshnet_tracker_billing_billingledger_has_funds", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger", "to": "tracker_meshnet_tracker_billing_billingledger_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger", "to": "tracker_meshnet_tracker_billing_billingledger_init_db", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger", "to": "tracker_meshnet_tracker_billing_billingledger_load_from_db", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger", "to": "tracker_meshnet_tracker_billing_billingledger_payables", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger", "to": "tracker_meshnet_tracker_billing_billingledger_price_for", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger", "to": "tracker_meshnet_tracker_billing_billingledger_prices_for", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger", "to": "tracker_meshnet_tracker_billing_billingledger_save_to_db", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger", "to": "tracker_meshnet_tracker_billing_billingledger_set_price", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger", "to": "tracker_meshnet_tracker_billing_billingledger_set_prices", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger", "to": "tracker_meshnet_tracker_billing_billingledger_settle_node_payout", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger", "to": "tracker_meshnet_tracker_billing_billingledger_settlement_history", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger", "to": "tracker_meshnet_tracker_billing_billingledger_snapshot", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger", "to": "tracker_meshnet_tracker_billing_billingledger_unconfirmed_settlements", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger", "to": "tracker_meshnet_tracker_billing_billingledger_usage_for", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger", "to": "tracker_meshnet_tracker_billing_billingledger_usage_totals_for", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_rationale_43", "to": "tracker_meshnet_tracker_billing_billingledger", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_billing_billingledger", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_activeproxycontext", "to": "tracker_meshnet_tracker_billing_billingledger", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_modelstats", "to": "tracker_meshnet_tracker_billing_billingledger", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodeentry", "to": "tracker_meshnet_tracker_billing_billingledger", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodemodelthroughput", "to": "tracker_meshnet_tracker_billing_billingledger", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingcounter", "to": "tracker_meshnet_tracker_billing_billingledger", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingthroughput", "to": "tracker_meshnet_tracker_billing_billingledger", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_statscollector", "to": "tracker_meshnet_tracker_billing_billingledger", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_billing_billingledger", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhttpserver", "to": "tracker_meshnet_tracker_billing_billingledger", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "tracker_meshnet_tracker_billing_billingledger", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_init", "to": "tracker_meshnet_tracker_billing_billingledger", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger_init", "to": "tracker_meshnet_tracker_billing_billingledger_init_db", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger_init", "to": "tracker_meshnet_tracker_billing_billingledger_load_from_db", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger_charge_request", "to": "tracker_meshnet_tracker_billing_billingledger_price_for", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_rationale_84", "to": "tracker_meshnet_tracker_billing_billingledger_price_for", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger_charge_request", "to": "tracker_meshnet_tracker_billing_billingledger_prices_for", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_rationale_91", "to": "tracker_meshnet_tracker_billing_billingledger_prices_for", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger_set_price", "to": "tracker_meshnet_tracker_billing_billingledger_set_prices", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_rationale_95", "to": "tracker_meshnet_tracker_billing_billingledger_set_price", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger_ensure_client", "to": "tracker_meshnet_tracker_billing_billingledger_apply_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger_has_funds", "to": "tracker_meshnet_tracker_billing_billingledger_ensure_client", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_rationale_105", "to": "tracker_meshnet_tracker_billing_billingledger_ensure_client", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger_grant_caller_credit", "to": "tracker_meshnet_tracker_billing_billingledger_apply_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_rationale_122", "to": "tracker_meshnet_tracker_billing_billingledger_grant_caller_credit", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger_credit_client", "to": "tracker_meshnet_tracker_billing_billingledger_apply_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger_charge_request", "to": "tracker_meshnet_tracker_billing_billingledger_apply_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_rationale_168", "to": "tracker_meshnet_tracker_billing_billingledger_charge_request", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger_bind_wallet", "to": "tracker_meshnet_tracker_billing_billingledger_apply_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_rationale_226", "to": "tracker_meshnet_tracker_billing_billingledger_bind_wallet", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger_credit_deposit", "to": "tracker_meshnet_tracker_billing_billingledger_apply_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_rationale_250", "to": "tracker_meshnet_tracker_billing_billingledger_credit_deposit", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_rationale_289", "to": "tracker_meshnet_tracker_billing_billingledger_payables", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger_confirm_settlement", "to": "tracker_meshnet_tracker_billing_billingledger_apply_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_rationale_307", "to": "tracker_meshnet_tracker_billing_billingledger_confirm_settlement", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_rationale_320", "to": "tracker_meshnet_tracker_billing_billingledger_unconfirmed_settlements", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger_settle_node_payout", "to": "tracker_meshnet_tracker_billing_billingledger_apply_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_rationale_344", "to": "tracker_meshnet_tracker_billing_billingledger_settle_node_payout", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger_forfeit_pending", "to": "tracker_meshnet_tracker_billing_billingledger_apply_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_rationale_367", "to": "tracker_meshnet_tracker_billing_billingledger_forfeit_pending", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_rationale_383", "to": "tracker_meshnet_tracker_billing_billingledger_events_since", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger_apply_events", "to": "tracker_meshnet_tracker_billing_billingledger_apply_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_rationale_388", "to": "tracker_meshnet_tracker_billing_billingledger_apply_events", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_billingledger_load_from_db", "to": "tracker_meshnet_tracker_billing_billingledger_apply_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_rationale_460", "to": "tracker_meshnet_tracker_billing_billingledger_usage_totals_for", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_billing_rationale_479", "to": "tracker_meshnet_tracker_billing_billingledger_usage_for", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_calibration", "to": "tracker_meshnet_tracker_calibration_ceiling", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_calibration", "to": "tracker_meshnet_tracker_calibration_false_positive_rate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_calibration", "to": "tracker_meshnet_tracker_calibration_floor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_calibration", "to": "tracker_meshnet_tracker_calibration_percentile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_calibration", "to": "tracker_meshnet_tracker_calibration_toploccalibrationstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_calibration_rationale_1", "to": "tracker_meshnet_tracker_calibration", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_calibration", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_calibration_rationale_27", "to": "tracker_meshnet_tracker_calibration_toploccalibrationstore", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_calibration_toploccalibrationstore", "to": "tracker_meshnet_tracker_calibration_toploccalibrationstore_distinct_hardware_profiles", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_calibration_toploccalibrationstore", "to": "tracker_meshnet_tracker_calibration_toploccalibrationstore_envelope", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_calibration_toploccalibrationstore", "to": "tracker_meshnet_tracker_calibration_toploccalibrationstore_gate_status", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_calibration_toploccalibrationstore", "to": "tracker_meshnet_tracker_calibration_toploccalibrationstore_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_calibration_toploccalibrationstore", "to": "tracker_meshnet_tracker_calibration_toploccalibrationstore_init_db", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_calibration_toploccalibrationstore", "to": "tracker_meshnet_tracker_calibration_toploccalibrationstore_load_from_db", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_calibration_toploccalibrationstore", "to": "tracker_meshnet_tracker_calibration_toploccalibrationstore_record_run", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_calibration_toploccalibrationstore", "to": "tracker_meshnet_tracker_calibration_toploccalibrationstore_runs", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_calibration_toploccalibrationstore", "to": "tracker_meshnet_tracker_calibration_toploccalibrationstore_save_run", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_calibration_toploccalibrationstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_activeproxycontext", "to": "tracker_meshnet_tracker_calibration_toploccalibrationstore", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_modelstats", "to": "tracker_meshnet_tracker_calibration_toploccalibrationstore", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodeentry", "to": "tracker_meshnet_tracker_calibration_toploccalibrationstore", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodemodelthroughput", "to": "tracker_meshnet_tracker_calibration_toploccalibrationstore", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingcounter", "to": "tracker_meshnet_tracker_calibration_toploccalibrationstore", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingthroughput", "to": "tracker_meshnet_tracker_calibration_toploccalibrationstore", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_statscollector", "to": "tracker_meshnet_tracker_calibration_toploccalibrationstore", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_calibration_toploccalibrationstore", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhttpserver", "to": "tracker_meshnet_tracker_calibration_toploccalibrationstore", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "tracker_meshnet_tracker_calibration_toploccalibrationstore", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_init", "to": "tracker_meshnet_tracker_calibration_toploccalibrationstore", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_calibration_toploccalibrationstore_init", "to": "tracker_meshnet_tracker_calibration_toploccalibrationstore_init_db", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_calibration_toploccalibrationstore_init", "to": "tracker_meshnet_tracker_calibration_toploccalibrationstore_load_from_db", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_calibration_toploccalibrationstore_record_run", "to": "tracker_meshnet_tracker_calibration_toploccalibrationstore_save_run", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_calibration_toploccalibrationstore_envelope", "to": "tracker_meshnet_tracker_calibration_toploccalibrationstore_distinct_hardware_profiles", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_calibration_toploccalibrationstore_gate_status", "to": "tracker_meshnet_tracker_calibration_toploccalibrationstore_distinct_hardware_profiles", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_calibration_rationale_76", "to": "tracker_meshnet_tracker_calibration_toploccalibrationstore_gate_status", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_calibration_rationale_97", "to": "tracker_meshnet_tracker_calibration_toploccalibrationstore_envelope", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_calibration_toploccalibrationstore_envelope", "to": "tracker_meshnet_tracker_calibration_ceiling", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_calibration_toploccalibrationstore_envelope", "to": "tracker_meshnet_tracker_calibration_false_positive_rate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_calibration_toploccalibrationstore_envelope", "to": "tracker_meshnet_tracker_calibration_floor", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_calibration_ceiling", "to": "tracker_meshnet_tracker_calibration_percentile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_calibration_floor", "to": "tracker_meshnet_tracker_calibration_percentile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_calibration_rationale_198", "to": "tracker_meshnet_tracker_calibration_false_positive_rate", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability", "to": "tracker_meshnet_tracker_capability_absent_state", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability", "to": "tracker_meshnet_tracker_capability_capabilitystate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability", "to": "tracker_meshnet_tracker_capability_catalogue_is_compatible", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability", "to": "tracker_meshnet_tracker_capability_diagnostics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability", "to": "tracker_meshnet_tracker_capability_evaluate_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability", "to": "tracker_meshnet_tracker_capability_index", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability", "to": "tracker_meshnet_tracker_capability_maybe_int", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability", "to": "tracker_meshnet_tracker_capability_normalize_policy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability", "to": "tracker_meshnet_tracker_capability_object", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability", "to": "tracker_meshnet_tracker_capability_optional_text", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability", "to": "tracker_meshnet_tracker_capability_parse_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability", "to": "tracker_meshnet_tracker_capability_parse_version", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability", "to": "tracker_meshnet_tracker_capability_policy_from_env", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability", "to": "tracker_meshnet_tracker_capability_reporterror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability", "to": "tracker_meshnet_tracker_capability_sanitize_detail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability", "to": "tracker_meshnet_tracker_capability_text", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability", "to": "tracker_meshnet_tracker_recipe", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability", "to": "tracker_meshnet_tracker_recipe_certificationledger", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability", "to": "tracker_meshnet_tracker_recipe_fingerprintmismatch", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability", "to": "tracker_meshnet_tracker_recipe_parse_identity", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability", "to": "tracker_meshnet_tracker_recipe_recipeidentityerror", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_rationale_1", "to": "tracker_meshnet_tracker_capability", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_cli", "to": "tracker_meshnet_tracker_capability", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_capability", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_capabilitystate_routable_under", "to": "tracker_meshnet_tracker_capability_normalize_policy", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_normalize_policy", "to": "tracker_meshnet_tracker_capability_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_policy_from_env", "to": "tracker_meshnet_tracker_capability_normalize_policy", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_rationale_115", "to": "tracker_meshnet_tracker_capability_normalize_policy", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_capability_normalize_policy", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_admitted_nodes", "to": "tracker_meshnet_tracker_capability_normalize_policy", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhttpserver_init", "to": "tracker_meshnet_tracker_capability_normalize_policy", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_init", "to": "tracker_meshnet_tracker_capability_normalize_policy", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_catalogue_is_compatible", "to": "tracker_meshnet_tracker_capability_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_diagnostics", "to": "tracker_meshnet_tracker_capability_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_evaluate_report", "to": "tracker_meshnet_tracker_capability_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_index", "to": "tracker_meshnet_tracker_capability_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_maybe_int", "to": "tracker_meshnet_tracker_capability_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_object", "to": "tracker_meshnet_tracker_capability_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_optional_text", "to": "tracker_meshnet_tracker_capability_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_parse_report", "to": "tracker_meshnet_tracker_capability_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_parse_version", "to": "tracker_meshnet_tracker_capability_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_sanitize_detail", "to": "tracker_meshnet_tracker_capability_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_text", "to": "tracker_meshnet_tracker_capability_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_capability_policy_from_env", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhttpserver_init", "to": "tracker_meshnet_tracker_capability_policy_from_env", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_init", "to": "tracker_meshnet_tracker_capability_policy_from_env", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_absent_state", "to": "tracker_meshnet_tracker_capability_sanitize_detail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_capabilitystate_with_state", "to": "tracker_meshnet_tracker_capability_sanitize_detail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_diagnostics", "to": "tracker_meshnet_tracker_capability_sanitize_detail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_evaluate_report", "to": "tracker_meshnet_tracker_capability_sanitize_detail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_rationale_127", "to": "tracker_meshnet_tracker_capability_sanitize_detail", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_catalogue_is_compatible", "to": "tracker_meshnet_tracker_capability_parse_version", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_evaluate_report", "to": "tracker_meshnet_tracker_capability_catalogue_is_compatible", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_rationale_137", "to": "tracker_meshnet_tracker_capability_catalogue_is_compatible", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_absent_state", "to": "tracker_meshnet_tracker_capability_capabilitystate", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_capabilitystate", "to": "tracker_meshnet_tracker_capability_capabilitystate_fingerprint", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_capabilitystate", "to": "tracker_meshnet_tracker_capability_capabilitystate_proven", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_capabilitystate", "to": "tracker_meshnet_tracker_capability_capabilitystate_routable_under", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_capabilitystate", "to": "tracker_meshnet_tracker_capability_capabilitystate_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_capabilitystate_with_state", "to": "tracker_meshnet_tracker_capability_capabilitystate", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_capabilitystate", "to": "tracker_meshnet_tracker_recipe_certificationledger", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_capability_capabilitystate", "to": "tracker_meshnet_tracker_recipe_fingerprintmismatch", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_capability_capabilitystate", "to": "tracker_meshnet_tracker_recipe_recipeidentityerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_capability_evaluate_report", "to": "tracker_meshnet_tracker_capability_capabilitystate", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_rationale_161", "to": "tracker_meshnet_tracker_capability_capabilitystate", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_capability_capabilitystate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_activeproxycontext", "to": "tracker_meshnet_tracker_capability_capabilitystate", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_capability_from_registration", "to": "tracker_meshnet_tracker_capability_capabilitystate", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_modelstats", "to": "tracker_meshnet_tracker_capability_capabilitystate", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_node_admission", "to": "tracker_meshnet_tracker_capability_capabilitystate", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_nodeentry", "to": "tracker_meshnet_tracker_capability_capabilitystate", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodemodelthroughput", "to": "tracker_meshnet_tracker_capability_capabilitystate", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingcounter", "to": "tracker_meshnet_tracker_capability_capabilitystate", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingthroughput", "to": "tracker_meshnet_tracker_capability_capabilitystate", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_statscollector", "to": "tracker_meshnet_tracker_capability_capabilitystate", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_capability_capabilitystate", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhttpserver", "to": "tracker_meshnet_tracker_capability_capabilitystate", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "tracker_meshnet_tracker_capability_capabilitystate", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_capability_rationale_196", "to": "tracker_meshnet_tracker_capability_capabilitystate_proven", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_rationale_201", "to": "tracker_meshnet_tracker_capability_capabilitystate_fingerprint", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_evaluate_report", "to": "tracker_meshnet_tracker_capability_capabilitystate_with_state", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_rationale_212", "to": "tracker_meshnet_tracker_capability_capabilitystate_with_state", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_evaluate_report", "to": "tracker_meshnet_tracker_capability_absent_state", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_rationale_240", "to": "tracker_meshnet_tracker_capability_absent_state", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_capability_absent_state", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_nodeentry_init", "to": "tracker_meshnet_tracker_capability_absent_state", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_evaluate_report", "to": "tracker_meshnet_tracker_capability_maybe_int", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_evaluate_report", "to": "tracker_meshnet_tracker_capability_parse_report", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_evaluate_report", "to": "tracker_meshnet_tracker_recipe_certificationledger", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_evaluate_report", "to": "tracker_meshnet_tracker_recipe_parse_identity", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_rationale_265", "to": "tracker_meshnet_tracker_capability_evaluate_report", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_capability_evaluate_report", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_capability_from_registration", "to": "tracker_meshnet_tracker_capability_evaluate_report", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_index", "to": "tracker_meshnet_tracker_capability_reporterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_object", "to": "tracker_meshnet_tracker_capability_reporterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_parse_report", "to": "tracker_meshnet_tracker_capability_reporterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_rationale_477", "to": "tracker_meshnet_tracker_capability_reporterror", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_reporterror", "to": "tracker_meshnet_tracker_capability_py_valueerror", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_reporterror", "to": "tracker_meshnet_tracker_recipe_certificationledger", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_capability_reporterror", "to": "tracker_meshnet_tracker_recipe_fingerprintmismatch", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_capability_reporterror", "to": "tracker_meshnet_tracker_recipe_recipeidentityerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_capability_text", "to": "tracker_meshnet_tracker_capability_reporterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_parse_report", "to": "tracker_meshnet_tracker_capability_diagnostics", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_parse_report", "to": "tracker_meshnet_tracker_capability_index", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_parse_report", "to": "tracker_meshnet_tracker_capability_object", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_parse_report", "to": "tracker_meshnet_tracker_capability_optional_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_parse_report", "to": "tracker_meshnet_tracker_capability_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_capability_optional_text", "to": "tracker_meshnet_tracker_capability_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_cli", "to": "tracker_meshnet_tracker_cli_load_env_defaults", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_cli", "to": "tracker_meshnet_tracker_cli_load_env_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_cli", "to": "tracker_meshnet_tracker_cli_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_cli", "to": "tracker_meshnet_tracker_cli_routing_config_from_args", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_cli", "to": "tracker_meshnet_tracker_hf_pricing", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_cli", "to": "tracker_meshnet_tracker_logging_setup", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_cli", "to": "tracker_meshnet_tracker_logging_setup_configure_tracker_file_logging", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_cli", "to": "tracker_meshnet_tracker_routing_stats", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_cli", "to": "tracker_meshnet_tracker_routing_stats_routingconfig", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_cli", "to": "tracker_meshnet_tracker_server", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_cli", "to": "tracker_meshnet_tracker_server_derive_relay_url_from_public_tracker_url", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_cli", "to": "tracker_meshnet_tracker_server_trackerserver", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_cli_rationale_1", "to": "tracker_meshnet_tracker_cli", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_cli_load_env_defaults", "to": "tracker_meshnet_tracker_cli_load_env_file", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_cli_load_env_file", "to": "tracker_meshnet_tracker_cli_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_cli_rationale_37", "to": "tracker_meshnet_tracker_cli_load_env_file", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_cli_main", "to": "tracker_meshnet_tracker_cli_load_env_defaults", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_cli_rationale_63", "to": "tracker_meshnet_tracker_cli_load_env_defaults", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_cli_main", "to": "tracker_meshnet_tracker_cli_routing_config_from_args", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_cli_rationale_75", "to": "tracker_meshnet_tracker_cli_routing_config_from_args", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_cli_routing_config_from_args", "to": "namespace", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_cli_routing_config_from_args", "to": "tracker_meshnet_tracker_routing_stats_routingconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_cli_main", "to": "tracker_meshnet_tracker_logging_setup_configure_tracker_file_logging", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_cli_main", "to": "tracker_meshnet_tracker_server_derive_relay_url_from_public_tracker_url", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_cli_main", "to": "tracker_meshnet_tracker_server_trackerserver", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_gossip", "to": "random", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_gossip", "to": "tracker_meshnet_tracker_gossip_nodegossip", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_gossip_rationale_1", "to": "tracker_meshnet_tracker_gossip", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_gossip", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_gossip_nodegossip", "to": "tracker_meshnet_tracker_gossip_nodegossip_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_gossip_nodegossip", "to": "tracker_meshnet_tracker_gossip_nodegossip_last_seen", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_gossip_nodegossip", "to": "tracker_meshnet_tracker_gossip_nodegossip_merge", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_gossip_nodegossip", "to": "tracker_meshnet_tracker_gossip_nodegossip_push_loop", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_gossip_nodegossip", "to": "tracker_meshnet_tracker_gossip_nodegossip_record", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_gossip_nodegossip", "to": "tracker_meshnet_tracker_gossip_nodegossip_snapshot", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_gossip_nodegossip", "to": "tracker_meshnet_tracker_gossip_nodegossip_start", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_gossip_nodegossip", "to": "tracker_meshnet_tracker_gossip_nodegossip_stop", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_gossip_rationale_24", "to": "tracker_meshnet_tracker_gossip_nodegossip", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_gossip_nodegossip", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_activeproxycontext", "to": "tracker_meshnet_tracker_gossip_nodegossip", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_modelstats", "to": "tracker_meshnet_tracker_gossip_nodegossip", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodeentry", "to": "tracker_meshnet_tracker_gossip_nodegossip", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodemodelthroughput", "to": "tracker_meshnet_tracker_gossip_nodegossip", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingcounter", "to": "tracker_meshnet_tracker_gossip_nodegossip", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingthroughput", "to": "tracker_meshnet_tracker_gossip_nodegossip", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_statscollector", "to": "tracker_meshnet_tracker_gossip_nodegossip", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_gossip_nodegossip", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhttpserver", "to": "tracker_meshnet_tracker_gossip_nodegossip", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "tracker_meshnet_tracker_gossip_nodegossip", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_start", "to": "tracker_meshnet_tracker_gossip_nodegossip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_gossip_rationale_48", "to": "tracker_meshnet_tracker_gossip_nodegossip_record", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_gossip_rationale_55", "to": "tracker_meshnet_tracker_gossip_nodegossip_merge", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_gossip_rationale_62", "to": "tracker_meshnet_tracker_gossip_nodegossip_last_seen", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_gossip_nodegossip_push_loop", "to": "tracker_meshnet_tracker_gossip_nodegossip_snapshot", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing", "to": "tracker_meshnet_tracker_hf_pricing_cheapest_matching_quote", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing", "to": "tracker_meshnet_tracker_hf_pricing_default_fetch_html", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing", "to": "tracker_meshnet_tracker_hf_pricing_fetch_hf_price_quotes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing", "to": "tracker_meshnet_tracker_hf_pricing_hf_search_term", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing", "to": "tracker_meshnet_tracker_hf_pricing_hfpricequote", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing", "to": "tracker_meshnet_tracker_hf_pricing_hfpricinglog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing", "to": "tracker_meshnet_tracker_hf_pricing_hfpricingtableparser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing", "to": "tracker_meshnet_tracker_hf_pricing_parse_hf_pricing_table", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing", "to": "tracker_meshnet_tracker_hf_pricing_refresh_preset_price", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_rationale_1", "to": "tracker_meshnet_tracker_hf_pricing", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_hf_pricing", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_cheapest_matching_quote", "to": "tracker_meshnet_tracker_hf_pricing_hfpricequote", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_fetch_hf_price_quotes", "to": "tracker_meshnet_tracker_hf_pricing_hfpricequote", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_hfpricequote", "to": "tracker_meshnet_tracker_hf_pricing_hfpricequote_alias_keys", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_hfpricequote", "to": "tracker_meshnet_tracker_hf_pricing_hfpricequote_blended_price_per_1k_tokens", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_hfpricingtableparser_handle_endtag", "to": "tracker_meshnet_tracker_hf_pricing_hfpricequote", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_parse_hf_pricing_table", "to": "tracker_meshnet_tracker_hf_pricing_hfpricequote", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_rationale_44", "to": "tracker_meshnet_tracker_hf_pricing_hfpricequote", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_cheapest_matching_quote", "to": "tracker_meshnet_tracker_hf_pricing_hfpricequote_blended_price_per_1k_tokens", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_rationale_52", "to": "tracker_meshnet_tracker_hf_pricing_hfpricequote_blended_price_per_1k_tokens", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_refresh_preset_price", "to": "tracker_meshnet_tracker_hf_pricing_hfpricequote_blended_price_per_1k_tokens", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_cheapest_matching_quote", "to": "tracker_meshnet_tracker_hf_pricing_hfpricequote_alias_keys", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_rationale_61", "to": "tracker_meshnet_tracker_hf_pricing_hfpricequote_alias_keys", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_hfpricingtableparser", "to": "htmlparser", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_hfpricingtableparser", "to": "tracker_meshnet_tracker_hf_pricing_hfpricingtableparser_handle_data", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_hfpricingtableparser", "to": "tracker_meshnet_tracker_hf_pricing_hfpricingtableparser_handle_endtag", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_hfpricingtableparser", "to": "tracker_meshnet_tracker_hf_pricing_hfpricingtableparser_handle_starttag", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_hfpricingtableparser", "to": "tracker_meshnet_tracker_hf_pricing_hfpricingtableparser_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_parse_hf_pricing_table", "to": "tracker_meshnet_tracker_hf_pricing_hfpricingtableparser", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_rationale_66", "to": "tracker_meshnet_tracker_hf_pricing_hfpricingtableparser", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_hfpricingtableparser_init", "to": "tracker_meshnet_tracker_hf_pricing_hfpricinglog_init", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_fetch_hf_price_quotes", "to": "tracker_meshnet_tracker_hf_pricing_parse_hf_pricing_table", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_rationale_121", "to": "tracker_meshnet_tracker_hf_pricing_parse_hf_pricing_table", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_fetch_hf_price_quotes", "to": "tracker_meshnet_tracker_hf_pricing_default_fetch_html", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_rationale_139", "to": "tracker_meshnet_tracker_hf_pricing_fetch_hf_price_quotes", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_refresh_preset_price", "to": "tracker_meshnet_tracker_hf_pricing_fetch_hf_price_quotes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_rationale_156", "to": "tracker_meshnet_tracker_hf_pricing_cheapest_matching_quote", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_refresh_preset_price", "to": "tracker_meshnet_tracker_hf_pricing_cheapest_matching_quote", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_hfpricinglog", "to": "tracker_meshnet_tracker_hf_pricing_hfpricinglog_history", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_hfpricinglog", "to": "tracker_meshnet_tracker_hf_pricing_hfpricinglog_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_hfpricinglog", "to": "tracker_meshnet_tracker_hf_pricing_hfpricinglog_init_db", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_hfpricinglog", "to": "tracker_meshnet_tracker_hf_pricing_hfpricinglog_load_from_db", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_hfpricinglog", "to": "tracker_meshnet_tracker_hf_pricing_hfpricinglog_record_change", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_hfpricinglog", "to": "tracker_meshnet_tracker_hf_pricing_hfpricinglog_save_change", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_rationale_173", "to": "tracker_meshnet_tracker_hf_pricing_hfpricinglog", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_hf_pricing_hfpricinglog", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_activeproxycontext", "to": "tracker_meshnet_tracker_hf_pricing_hfpricinglog", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_modelstats", "to": "tracker_meshnet_tracker_hf_pricing_hfpricinglog", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodeentry", "to": "tracker_meshnet_tracker_hf_pricing_hfpricinglog", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodemodelthroughput", "to": "tracker_meshnet_tracker_hf_pricing_hfpricinglog", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingcounter", "to": "tracker_meshnet_tracker_hf_pricing_hfpricinglog", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingthroughput", "to": "tracker_meshnet_tracker_hf_pricing_hfpricinglog", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_statscollector", "to": "tracker_meshnet_tracker_hf_pricing_hfpricinglog", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_hf_pricing_hfpricinglog", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhttpserver", "to": "tracker_meshnet_tracker_hf_pricing_hfpricinglog", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "tracker_meshnet_tracker_hf_pricing_hfpricinglog", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_init", "to": "tracker_meshnet_tracker_hf_pricing_hfpricinglog", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_hfpricinglog_init", "to": "tracker_meshnet_tracker_hf_pricing_hfpricinglog_init_db", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_hfpricinglog_init", "to": "tracker_meshnet_tracker_hf_pricing_hfpricinglog_load_from_db", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_hfpricinglog_record_change", "to": "tracker_meshnet_tracker_hf_pricing_hfpricinglog_save_change", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_rationale_256", "to": "tracker_meshnet_tracker_hf_pricing_hf_search_term", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_refresh_preset_price", "to": "tracker_meshnet_tracker_hf_pricing_hf_search_term", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_hf_pricing_rationale_271", "to": "tracker_meshnet_tracker_hf_pricing_refresh_preset_price", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_hf_pricing_refresh_preset_price", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_hf_pricing_loop", "to": "tracker_meshnet_tracker_hf_pricing_refresh_preset_price", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_logging_setup", "to": "tracker_meshnet_tracker_logging_setup_configure_tracker_file_logging", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_logging_setup", "to": "tracker_meshnet_tracker_logging_setup_exactlevelfilter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_logging_setup", "to": "tracker_meshnet_tracker_logging_setup_make_handler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_logging_setup", "to": "tracker_meshnet_tracker_logging_setup_teestream", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_logging_setup", "to": "tracker_meshnet_tracker_logging_setup_tracker_logger", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_logging_setup_rationale_1", "to": "tracker_meshnet_tracker_logging_setup", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_logging_setup", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_logging_setup_exactlevelfilter", "to": "tracker_meshnet_tracker_logging_setup_exactlevelfilter_filter", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_logging_setup_exactlevelfilter", "to": "tracker_meshnet_tracker_logging_setup_exactlevelfilter_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_logging_setup_make_handler", "to": "tracker_meshnet_tracker_logging_setup_exactlevelfilter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_logging_setup_exactlevelfilter_init", "to": "tracker_meshnet_tracker_logging_setup_teestream_init", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_logging_setup_exactlevelfilter_filter", "to": "logrecord", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_logging_setup_configure_tracker_file_logging", "to": "tracker_meshnet_tracker_logging_setup_teestream", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_logging_setup_teestream", "to": "tracker_meshnet_tracker_logging_setup_teestream_flush", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_logging_setup_teestream", "to": "tracker_meshnet_tracker_logging_setup_teestream_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_logging_setup_teestream", "to": "tracker_meshnet_tracker_logging_setup_teestream_isatty", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_logging_setup_teestream", "to": "tracker_meshnet_tracker_logging_setup_teestream_write", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_logging_setup_teestream_init", "to": "logger", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_logging_setup_teestream_init", "to": "textio", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_logging_setup_tracker_logger", "to": "logger", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_logging_setup_teestream_write", "to": "tracker_meshnet_tracker_logging_setup_teestream_flush", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_logging_setup_configure_tracker_file_logging", "to": "tracker_meshnet_tracker_logging_setup_make_handler", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_logging_setup_make_handler", "to": "rotatingfilehandler", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_logging_setup_make_handler", "to": "tracker_meshnet_tracker_logging_setup_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_logging_setup_configure_tracker_file_logging", "to": "tracker_meshnet_tracker_logging_setup_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_logging_setup_rationale_76", "to": "tracker_meshnet_tracker_logging_setup_configure_tracker_file_logging", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_logging_setup_tracker_logger", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_tracker_log", "to": "tracker_meshnet_tracker_logging_setup_tracker_logger", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_model_files", "to": "tracker_meshnet_tracker_model_files_files_for_layer_range", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_model_files", "to": "tracker_meshnet_tracker_model_files_is_head_tensor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_model_files", "to": "tracker_meshnet_tracker_model_files_is_tail_tensor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_model_files", "to": "tracker_meshnet_tracker_model_files_layer_index", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_model_files", "to": "tracker_meshnet_tracker_model_files_layers_from_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_model_files", "to": "tracker_meshnet_tracker_model_files_metadata_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_model_files", "to": "tracker_meshnet_tracker_model_files_normalise_relative_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_model_files", "to": "tracker_meshnet_tracker_model_files_read_total_layers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_model_files", "to": "tracker_meshnet_tracker_model_files_select_safetensors_files_for_layers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_model_files", "to": "tracker_meshnet_tracker_model_files_snapshot_dir_for_repo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_model_files", "to": "tracker_meshnet_tracker_model_files_tensor_belongs_to_range", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_model_files_rationale_1", "to": "tracker_meshnet_tracker_model_files", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_model_files", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_model_files_rationale_51", "to": "tracker_meshnet_tracker_model_files_snapshot_dir_for_repo", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_model_files_snapshot_dir_for_repo", "to": "tracker_meshnet_tracker_model_files_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_model_files_snapshot_dir_for_repo", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_model_files_download", "to": "tracker_meshnet_tracker_model_files_snapshot_dir_for_repo", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_model_sources", "to": "tracker_meshnet_tracker_model_files_snapshot_dir_for_repo", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_model_files_files_for_layer_range", "to": "tracker_meshnet_tracker_model_files_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_model_files_metadata_files", "to": "tracker_meshnet_tracker_model_files_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_model_files_normalise_relative_file", "to": "tracker_meshnet_tracker_model_files_py_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_model_files_read_total_layers", "to": "tracker_meshnet_tracker_model_files_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_model_files_select_safetensors_files_for_layers", "to": "tracker_meshnet_tracker_model_files_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_model_files_files_for_layer_range", "to": "tracker_meshnet_tracker_model_files_select_safetensors_files_for_layers", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_model_files_rationale_68", "to": "tracker_meshnet_tracker_model_files_files_for_layer_range", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_model_files_files_for_layer_range", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_model_files_download", "to": "tracker_meshnet_tracker_model_files_files_for_layer_range", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_model_sources", "to": "tracker_meshnet_tracker_model_files_files_for_layer_range", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_model_files_select_safetensors_files_for_layers", "to": "tracker_meshnet_tracker_model_files_metadata_files", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_model_files_select_safetensors_files_for_layers", "to": "tracker_meshnet_tracker_model_files_normalise_relative_file", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_model_files_select_safetensors_files_for_layers", "to": "tracker_meshnet_tracker_model_files_read_total_layers", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_model_files_select_safetensors_files_for_layers", "to": "tracker_meshnet_tracker_model_files_tensor_belongs_to_range", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_model_files_tensor_belongs_to_range", "to": "tracker_meshnet_tracker_model_files_is_head_tensor", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_model_files_tensor_belongs_to_range", "to": "tracker_meshnet_tracker_model_files_is_tail_tensor", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_model_files_tensor_belongs_to_range", "to": "tracker_meshnet_tracker_model_files_layer_index", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_model_files_read_total_layers", "to": "tracker_meshnet_tracker_model_files_layers_from_config", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_model_files_layers_from_config", "to": "tracker_meshnet_tracker_model_files_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft", "to": "random", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft", "to": "tracker_meshnet_tracker_raft_logentry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft", "to": "tracker_meshnet_tracker_raft_raftnode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_rationale_1", "to": "tracker_meshnet_tracker_raft", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_raft", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode_handle_append_entries", "to": "tracker_meshnet_tracker_raft_logentry", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode_propose", "to": "tracker_meshnet_tracker_raft_logentry", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode_send_append_entries", "to": "tracker_meshnet_tracker_raft_logentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode", "to": "tracker_meshnet_tracker_raft_raftnode_apply_up_to_commit", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode", "to": "tracker_meshnet_tracker_raft_raftnode_become_leader", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode", "to": "tracker_meshnet_tracker_raft_raftnode_fresh_deadline", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode", "to": "tracker_meshnet_tracker_raft_raftnode_handle_append_entries", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode", "to": "tracker_meshnet_tracker_raft_raftnode_handle_request_vote", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode", "to": "tracker_meshnet_tracker_raft_raftnode_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode", "to": "tracker_meshnet_tracker_raft_raftnode_is_leader", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode", "to": "tracker_meshnet_tracker_raft_raftnode_leader", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode", "to": "tracker_meshnet_tracker_raft_raftnode_propose", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode", "to": "tracker_meshnet_tracker_raft_raftnode_replicate_to_peers", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode", "to": "tracker_meshnet_tracker_raft_raftnode_reset_deadline", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode", "to": "tracker_meshnet_tracker_raft_raftnode_send_append_entries", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode", "to": "tracker_meshnet_tracker_raft_raftnode_send_heartbeats", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode", "to": "tracker_meshnet_tracker_raft_raftnode_start", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode", "to": "tracker_meshnet_tracker_raft_raftnode_start_election", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode", "to": "tracker_meshnet_tracker_raft_raftnode_status", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode", "to": "tracker_meshnet_tracker_raft_raftnode_step_down", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode", "to": "tracker_meshnet_tracker_raft_raftnode_stop", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode", "to": "tracker_meshnet_tracker_raft_raftnode_tick_loop", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_rationale_31", "to": "tracker_meshnet_tracker_raft_raftnode", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_raft_raftnode", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_activeproxycontext", "to": "tracker_meshnet_tracker_raft_raftnode", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_modelstats", "to": "tracker_meshnet_tracker_raft_raftnode", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodeentry", "to": "tracker_meshnet_tracker_raft_raftnode", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodemodelthroughput", "to": "tracker_meshnet_tracker_raft_raftnode", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingcounter", "to": "tracker_meshnet_tracker_raft_raftnode", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingthroughput", "to": "tracker_meshnet_tracker_raft_raftnode", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_statscollector", "to": "tracker_meshnet_tracker_raft_raftnode", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_raft_raftnode", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhttpserver", "to": "tracker_meshnet_tracker_raft_raftnode", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "tracker_meshnet_tracker_raft_raftnode", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_start", "to": "tracker_meshnet_tracker_raft_raftnode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode_init", "to": "tracker_meshnet_tracker_raft_raftnode_fresh_deadline", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode_propose", "to": "tracker_meshnet_tracker_raft_raftnode_replicate_to_peers", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_rationale_103", "to": "tracker_meshnet_tracker_raft_raftnode_propose", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode_handle_request_vote", "to": "tracker_meshnet_tracker_raft_raftnode_reset_deadline", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode_handle_request_vote", "to": "tracker_meshnet_tracker_raft_raftnode_step_down", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode_handle_append_entries", "to": "tracker_meshnet_tracker_raft_raftnode_apply_up_to_commit", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode_handle_append_entries", "to": "tracker_meshnet_tracker_raft_raftnode_reset_deadline", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode_handle_append_entries", "to": "tracker_meshnet_tracker_raft_raftnode_step_down", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode_tick_loop", "to": "tracker_meshnet_tracker_raft_raftnode_send_heartbeats", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode_tick_loop", "to": "tracker_meshnet_tracker_raft_raftnode_start_election", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode_send_heartbeats", "to": "tracker_meshnet_tracker_raft_raftnode_send_append_entries", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode_replicate_to_peers", "to": "tracker_meshnet_tracker_raft_raftnode_apply_up_to_commit", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode_replicate_to_peers", "to": "tracker_meshnet_tracker_raft_raftnode_send_append_entries", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_rationale_220", "to": "tracker_meshnet_tracker_raft_raftnode_replicate_to_peers", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode_send_append_entries", "to": "tracker_meshnet_tracker_raft_raftnode_step_down", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode_start_election", "to": "tracker_meshnet_tracker_raft_raftnode_become_leader", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode_start_election", "to": "tracker_meshnet_tracker_raft_raftnode_reset_deadline", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode_start_election", "to": "tracker_meshnet_tracker_raft_raftnode_step_down", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_rationale_340", "to": "tracker_meshnet_tracker_raft_raftnode_become_leader", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode_step_down", "to": "tracker_meshnet_tracker_raft_raftnode_reset_deadline", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_rationale_349", "to": "tracker_meshnet_tracker_raft_raftnode_step_down", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_rationale_356", "to": "tracker_meshnet_tracker_raft_raftnode_apply_up_to_commit", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_raft_raftnode_reset_deadline", "to": "tracker_meshnet_tracker_raft_raftnode_fresh_deadline", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe", "to": "tracker_meshnet_tracker_recipe_artifact_digest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe", "to": "tracker_meshnet_tracker_recipe_canonical_sha256", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe", "to": "tracker_meshnet_tracker_recipe_certificationledger", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe", "to": "tracker_meshnet_tracker_recipe_coverage_gap", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe", "to": "tracker_meshnet_tracker_recipe_digest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe", "to": "tracker_meshnet_tracker_recipe_distributedforwardevidence", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe", "to": "tracker_meshnet_tracker_recipe_fingerprintmismatch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe", "to": "tracker_meshnet_tracker_recipe_hex64", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe", "to": "tracker_meshnet_tracker_recipe_integer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe", "to": "tracker_meshnet_tracker_recipe_mapping", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe", "to": "tracker_meshnet_tracker_recipe_parse_identity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe", "to": "tracker_meshnet_tracker_recipe_pin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe", "to": "tracker_meshnet_tracker_recipe_presentedidentity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe", "to": "tracker_meshnet_tracker_recipe_recipe_digest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe", "to": "tracker_meshnet_tracker_recipe_recipeidentityerror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe", "to": "tracker_meshnet_tracker_recipe_recipestatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe", "to": "tracker_meshnet_tracker_recipe_runtime_pin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe", "to": "tracker_meshnet_tracker_recipe_text", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_rationale_1", "to": "tracker_meshnet_tracker_recipe", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_recipe", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_certificationledger_certify", "to": "tracker_meshnet_tracker_recipe_recipeidentityerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_fingerprintmismatch", "to": "tracker_meshnet_tracker_recipe_recipeidentityerror", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_hex64", "to": "tracker_meshnet_tracker_recipe_recipeidentityerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_integer", "to": "tracker_meshnet_tracker_recipe_recipeidentityerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_mapping", "to": "tracker_meshnet_tracker_recipe_recipeidentityerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_parse_identity", "to": "tracker_meshnet_tracker_recipe_recipeidentityerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_pin", "to": "tracker_meshnet_tracker_recipe_recipeidentityerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_rationale_81", "to": "tracker_meshnet_tracker_recipe_recipeidentityerror", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_recipe_digest", "to": "tracker_meshnet_tracker_recipe_recipeidentityerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_recipeidentityerror", "to": "tracker_meshnet_tracker_recipe_py_valueerror", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_runtime_pin", "to": "tracker_meshnet_tracker_recipe_recipeidentityerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_text", "to": "tracker_meshnet_tracker_recipe_recipeidentityerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_recipe_recipeidentityerror", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_activeproxycontext", "to": "tracker_meshnet_tracker_recipe_recipeidentityerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_modelstats", "to": "tracker_meshnet_tracker_recipe_recipeidentityerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodeentry", "to": "tracker_meshnet_tracker_recipe_recipeidentityerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodemodelthroughput", "to": "tracker_meshnet_tracker_recipe_recipeidentityerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingcounter", "to": "tracker_meshnet_tracker_recipe_recipeidentityerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingthroughput", "to": "tracker_meshnet_tracker_recipe_recipeidentityerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_statscollector", "to": "tracker_meshnet_tracker_recipe_recipeidentityerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_recipe_recipeidentityerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhttpserver", "to": "tracker_meshnet_tracker_recipe_recipeidentityerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "tracker_meshnet_tracker_recipe_recipeidentityerror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_certify_recipe", "to": "tracker_meshnet_tracker_recipe_recipeidentityerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_parse_identity", "to": "tracker_meshnet_tracker_recipe_fingerprintmismatch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_rationale_85", "to": "tracker_meshnet_tracker_recipe_fingerprintmismatch", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_canonical_sha256", "to": "tracker_meshnet_tracker_recipe_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_digest", "to": "tracker_meshnet_tracker_recipe_canonical_sha256", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_digest", "to": "tracker_meshnet_tracker_recipe_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_hex64", "to": "tracker_meshnet_tracker_recipe_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_integer", "to": "tracker_meshnet_tracker_recipe_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_mapping", "to": "tracker_meshnet_tracker_recipe_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_parse_identity", "to": "tracker_meshnet_tracker_recipe_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_pin", "to": "tracker_meshnet_tracker_recipe_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_recipe_digest", "to": "tracker_meshnet_tracker_recipe_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_runtime_pin", "to": "tracker_meshnet_tracker_recipe_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_text", "to": "tracker_meshnet_tracker_recipe_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_artifact_digest", "to": "tracker_meshnet_tracker_recipe_digest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_presentedidentity_shard_binding_digest", "to": "tracker_meshnet_tracker_recipe_digest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_recipe_digest", "to": "tracker_meshnet_tracker_recipe_digest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_hex64", "to": "tracker_meshnet_tracker_recipe_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_parse_identity", "to": "tracker_meshnet_tracker_recipe_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_pin", "to": "tracker_meshnet_tracker_recipe_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_runtime_pin", "to": "tracker_meshnet_tracker_recipe_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_parse_identity", "to": "tracker_meshnet_tracker_recipe_hex64", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_parse_identity", "to": "tracker_meshnet_tracker_recipe_integer", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_parse_identity", "to": "tracker_meshnet_tracker_recipe_pin", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_runtime_pin", "to": "tracker_meshnet_tracker_recipe_pin", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_parse_identity", "to": "tracker_meshnet_tracker_recipe_runtime_pin", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_parse_identity", "to": "tracker_meshnet_tracker_recipe_mapping", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_presentedidentity_model_artifact_digest", "to": "tracker_meshnet_tracker_recipe_artifact_digest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_rationale_159", "to": "tracker_meshnet_tracker_recipe_artifact_digest", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_presentedidentity_runtime_recipe_digest", "to": "tracker_meshnet_tracker_recipe_recipe_digest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_rationale_172", "to": "tracker_meshnet_tracker_recipe_recipe_digest", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_certificationledger_certify", "to": "tracker_meshnet_tracker_recipe_presentedidentity", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_certificationledger_register", "to": "tracker_meshnet_tracker_recipe_presentedidentity", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_certificationledger_status", "to": "tracker_meshnet_tracker_recipe_presentedidentity", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_parse_identity", "to": "tracker_meshnet_tracker_recipe_presentedidentity", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_presentedidentity", "to": "tracker_meshnet_tracker_recipe_presentedidentity_architecture_adapter", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_presentedidentity", "to": "tracker_meshnet_tracker_recipe_presentedidentity_fingerprint_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_presentedidentity", "to": "tracker_meshnet_tracker_recipe_presentedidentity_key", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_presentedidentity", "to": "tracker_meshnet_tracker_recipe_presentedidentity_model_artifact_digest", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_presentedidentity", "to": "tracker_meshnet_tracker_recipe_presentedidentity_runtime_recipe_digest", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_presentedidentity", "to": "tracker_meshnet_tracker_recipe_presentedidentity_shard_binding_digest", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_presentedidentity", "to": "tracker_meshnet_tracker_recipe_presentedidentity_tokenizer_revision", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_rationale_183", "to": "tracker_meshnet_tracker_recipe_presentedidentity", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_recipe_presentedidentity", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_activeproxycontext", "to": "tracker_meshnet_tracker_recipe_presentedidentity", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_modelstats", "to": "tracker_meshnet_tracker_recipe_presentedidentity", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodeentry", "to": "tracker_meshnet_tracker_recipe_presentedidentity", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodemodelthroughput", "to": "tracker_meshnet_tracker_recipe_presentedidentity", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingcounter", "to": "tracker_meshnet_tracker_recipe_presentedidentity", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingthroughput", "to": "tracker_meshnet_tracker_recipe_presentedidentity", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_statscollector", "to": "tracker_meshnet_tracker_recipe_presentedidentity", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_recipe_presentedidentity", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhttpserver", "to": "tracker_meshnet_tracker_recipe_presentedidentity", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "tracker_meshnet_tracker_recipe_presentedidentity", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_certify_recipe", "to": "tracker_meshnet_tracker_recipe_presentedidentity", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_rationale_224", "to": "tracker_meshnet_tracker_recipe_presentedidentity_shard_binding_digest", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_rationale_271", "to": "tracker_meshnet_tracker_recipe_parse_identity", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_distributedforwardevidence_rejection", "to": "tracker_meshnet_tracker_recipe_coverage_gap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_rationale_396", "to": "tracker_meshnet_tracker_recipe_coverage_gap", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_certificationledger_certify", "to": "tracker_meshnet_tracker_recipe_distributedforwardevidence", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_distributedforwardevidence", "to": "tracker_meshnet_tracker_recipe_distributedforwardevidence_rejection", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_rationale_425", "to": "tracker_meshnet_tracker_recipe_distributedforwardevidence", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_recipe_distributedforwardevidence", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_activeproxycontext", "to": "tracker_meshnet_tracker_recipe_distributedforwardevidence", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_modelstats", "to": "tracker_meshnet_tracker_recipe_distributedforwardevidence", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodeentry", "to": "tracker_meshnet_tracker_recipe_distributedforwardevidence", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodemodelthroughput", "to": "tracker_meshnet_tracker_recipe_distributedforwardevidence", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingcounter", "to": "tracker_meshnet_tracker_recipe_distributedforwardevidence", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingthroughput", "to": "tracker_meshnet_tracker_recipe_distributedforwardevidence", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_statscollector", "to": "tracker_meshnet_tracker_recipe_distributedforwardevidence", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_recipe_distributedforwardevidence", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhttpserver", "to": "tracker_meshnet_tracker_recipe_distributedforwardevidence", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "tracker_meshnet_tracker_recipe_distributedforwardevidence", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_certify_recipe", "to": "tracker_meshnet_tracker_recipe_distributedforwardevidence", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_certificationledger_certify", "to": "tracker_meshnet_tracker_recipe_distributedforwardevidence_rejection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_certificationledger_certify", "to": "tracker_meshnet_tracker_recipe_recipestatus", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_certificationledger_register", "to": "tracker_meshnet_tracker_recipe_recipestatus", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_certificationledger_status", "to": "tracker_meshnet_tracker_recipe_recipestatus", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_recipestatus", "to": "tracker_meshnet_tracker_recipe_recipestatus_may_certify", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_recipestatus", "to": "tracker_meshnet_tracker_recipe_recipestatus_may_serve", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_recipestatus", "to": "tracker_meshnet_tracker_recipe_recipestatus_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_recipe_recipestatus", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_activeproxycontext", "to": "tracker_meshnet_tracker_recipe_recipestatus", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_modelstats", "to": "tracker_meshnet_tracker_recipe_recipestatus", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodeentry", "to": "tracker_meshnet_tracker_recipe_recipestatus", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodemodelthroughput", "to": "tracker_meshnet_tracker_recipe_recipestatus", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingcounter", "to": "tracker_meshnet_tracker_recipe_recipestatus", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingthroughput", "to": "tracker_meshnet_tracker_recipe_recipestatus", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_statscollector", "to": "tracker_meshnet_tracker_recipe_recipestatus", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_recipe_recipestatus", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhttpserver", "to": "tracker_meshnet_tracker_recipe_recipestatus", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "tracker_meshnet_tracker_recipe_recipestatus", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_certify_recipe", "to": "tracker_meshnet_tracker_recipe_recipestatus", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_rationale_482", "to": "tracker_meshnet_tracker_recipe_recipestatus_may_certify", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_certificationledger", "to": "tracker_meshnet_tracker_recipe_certificationledger_certify", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_certificationledger", "to": "tracker_meshnet_tracker_recipe_certificationledger_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_certificationledger", "to": "tracker_meshnet_tracker_recipe_certificationledger_register", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_certificationledger", "to": "tracker_meshnet_tracker_recipe_certificationledger_status", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_certificationledger", "to": "tracker_meshnet_tracker_recipe_certificationledger_to_dict", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_rationale_503", "to": "tracker_meshnet_tracker_recipe_certificationledger", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_recipe_certificationledger", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_activeproxycontext", "to": "tracker_meshnet_tracker_recipe_certificationledger", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_capability_from_registration", "to": "tracker_meshnet_tracker_recipe_certificationledger", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_modelstats", "to": "tracker_meshnet_tracker_recipe_certificationledger", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodeentry", "to": "tracker_meshnet_tracker_recipe_certificationledger", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodemodelthroughput", "to": "tracker_meshnet_tracker_recipe_certificationledger", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingcounter", "to": "tracker_meshnet_tracker_recipe_certificationledger", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingthroughput", "to": "tracker_meshnet_tracker_recipe_certificationledger", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_statscollector", "to": "tracker_meshnet_tracker_recipe_certificationledger", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_recipe_certificationledger", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhttpserver", "to": "tracker_meshnet_tracker_recipe_certificationledger", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhttpserver_init", "to": "tracker_meshnet_tracker_recipe_certificationledger", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "tracker_meshnet_tracker_recipe_certificationledger", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_init", "to": "tracker_meshnet_tracker_recipe_certificationledger", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_recipe_rationale_529", "to": "tracker_meshnet_tracker_recipe_certificationledger_certify", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats", "to": "random", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats", "to": "tracker_meshnet_tracker_routing_stats_choose_route", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats", "to": "tracker_meshnet_tracker_routing_stats_route_signature", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats", "to": "tracker_meshnet_tracker_routing_stats_route_table", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats", "to": "tracker_meshnet_tracker_routing_stats_routecandidate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats", "to": "tracker_meshnet_tracker_routing_stats_routestat", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats", "to": "tracker_meshnet_tracker_routing_stats_routingconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_rationale_1", "to": "tracker_meshnet_tracker_routing_stats", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_routing_stats", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_routestatsstore_init", "to": "tracker_meshnet_tracker_routing_stats_routingconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_routing_stats_routingconfig", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_activeproxycontext", "to": "tracker_meshnet_tracker_routing_stats_routingconfig", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_modelstats", "to": "tracker_meshnet_tracker_routing_stats_routingconfig", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodeentry", "to": "tracker_meshnet_tracker_routing_stats_routingconfig", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodemodelthroughput", "to": "tracker_meshnet_tracker_routing_stats_routingconfig", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingcounter", "to": "tracker_meshnet_tracker_routing_stats_routingconfig", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingthroughput", "to": "tracker_meshnet_tracker_routing_stats_routingconfig", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_statscollector", "to": "tracker_meshnet_tracker_routing_stats_routingconfig", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_routing_stats_routingconfig", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhttpserver", "to": "tracker_meshnet_tracker_routing_stats_routingconfig", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "tracker_meshnet_tracker_routing_stats_routingconfig", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_init", "to": "tracker_meshnet_tracker_routing_stats_routingconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_routestat", "to": "tracker_meshnet_tracker_routing_stats_routestat_decayed_weight", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_routestatsstore_load_from_db", "to": "tracker_meshnet_tracker_routing_stats_routestat", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_routestatsstore_record_sample", "to": "tracker_meshnet_tracker_routing_stats_routestat", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_routestatsstore_record_sample", "to": "tracker_meshnet_tracker_routing_stats_routestat_decayed_weight", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_routestatsstore_snapshot", "to": "tracker_meshnet_tracker_routing_stats_routestat_decayed_weight", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_choose_route", "to": "tracker_meshnet_tracker_routing_stats_routecandidate", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_route_table", "to": "tracker_meshnet_tracker_routing_stats_routecandidate", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_routing_stats_routecandidate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_activeproxycontext", "to": "tracker_meshnet_tracker_routing_stats_routecandidate", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_enumerate_routes", "to": "tracker_meshnet_tracker_routing_stats_routecandidate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_modelstats", "to": "tracker_meshnet_tracker_routing_stats_routecandidate", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodeentry", "to": "tracker_meshnet_tracker_routing_stats_routecandidate", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodemodelthroughput", "to": "tracker_meshnet_tracker_routing_stats_routecandidate", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingcounter", "to": "tracker_meshnet_tracker_routing_stats_routecandidate", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingthroughput", "to": "tracker_meshnet_tracker_routing_stats_routecandidate", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_statscollector", "to": "tracker_meshnet_tracker_routing_stats_routecandidate", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_routing_stats_routecandidate", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhttpserver", "to": "tracker_meshnet_tracker_routing_stats_routecandidate", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "tracker_meshnet_tracker_routing_stats_routecandidate", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_routing_stats_route_signature", "to": "tracker_meshnet_tracker_routing_stats_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_routing_stats_route_signature", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_enumerate_routes", "to": "tracker_meshnet_tracker_routing_stats_route_signature", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_record_observed_throughput", "to": "tracker_meshnet_tracker_routing_stats_route_signature", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_choose_route", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_rationale_78", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_route_table", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_routestatsstore", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore_bump_epoch", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_routestatsstore", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore_epoch", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_routestatsstore", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_routestatsstore", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore_init_db", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_routestatsstore", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore_load_from_db", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_routestatsstore", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore_model_rows", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_routestatsstore", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore_prune", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_routestatsstore", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore_record_sample", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_routestatsstore", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore_save_to_db", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_routestatsstore", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore_snapshot", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_activeproxycontext", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_modelstats", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodeentry", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodemodelthroughput", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingcounter", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingthroughput", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_statscollector", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhttpserver", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhttpserver_init", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_init", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_routestatsstore_init", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore_init_db", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_routestatsstore_init", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore_load_from_db", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_rationale_95", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore_bump_epoch", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_rationale_109", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore_record_sample", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_choose_route", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore_snapshot", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_rationale_136", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore_snapshot", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_route_table", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore_snapshot", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_routestatsstore_model_rows", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore_snapshot", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_rationale_160", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore_model_rows", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_rationale_212", "to": "tracker_meshnet_tracker_routing_stats_routestatsstore_prune", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_choose_route", "to": "random", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_rationale_229", "to": "tracker_meshnet_tracker_routing_stats_choose_route", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_routing_stats_choose_route", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_routing_stats_choose_route", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "random", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init", "to": "random", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_sampling", "to": "random", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_routing_stats_rationale_272", "to": "tracker_meshnet_tracker_routing_stats_route_table", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_routing_stats_route_table", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_routing", "to": "tracker_meshnet_tracker_routing_stats_route_table", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_activeproxycontext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_add_shard_directive", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_admitted_nodes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_api_key_from_headers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_assign_redundant_managed_nodes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_assignment_memory_bytes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_available_quantizations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_billable_non_stream_split", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_billable_non_stream_tokens", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_billable_stream_tokens", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_capability_from_registration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_capability_routable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_clear_proxy_progress_log_state", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_clone_model_presets", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_coverage_gaps", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_coverage_map", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_coverage_map_detailed", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_coverage_percentage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_deployment_summary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_derive_relay_url_from_public_tracker_url", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_drop_directive", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_effective_queue_depth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_effective_throughput", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_emit_shard_change_directives", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_endpoint_key", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_endpoint_memory_pool", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_enumerate_routes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_estimate_prompt_tokens", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_estimate_text_tokens", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_fetch_toploc_commitment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_fetch_toploc_reference_activations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_find_pinned_route", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_has_usable_quantization", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_hf_rebalance_preset", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_load_directive", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_load_model_presets_from_data", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_local_relay_url", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_max_layers_for_memory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_memory_pool_map", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_model_aliases", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_model_demand_and_supply", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_model_health_summary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_model_metadata_from_nodes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_modelstats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_node_admission", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_node_capacity_summary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_node_health", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_node_id_for_registration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_node_layer_capacity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_node_matches_model", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_node_matches_preset", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_node_memory_budget_bytes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_node_memory_budget_for_preset", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_node_quantization", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_node_route_summary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_nodeentry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_nodemodelthroughput", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_nodes_and_bounds_for_model", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_normalize_current_requests", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_normalize_friendly_name", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_normalize_quantization", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_observed_non_stream_completion_tokens", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_observed_output_from_non_stream_payload", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_observed_stream_tokens", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_pool_summary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_preferred_node_quantization", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_preset_aliases", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_preset_bytes_per_layer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_preset_for_node", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_preset_layer_bounds", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_preset_price_keys", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_purge_expired_nodes_locked", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_quantization_satisfies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_queue_initial_model_placement_locked", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_rebalance_all_locked", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_rebalance_hf_model_locked", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_rebalance_model_locked", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_record_proxy_inflight", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_register_active_proxy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_registration_ban_error", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_registration_quantization", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_relay_http_request", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_relay_http_request_frames", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_release_all_node_models_locked", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_release_model_locked", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_repo_demand_rpm", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_reputation_multiplier", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_request_model_load_locked", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_request_proxy_cancel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_request_total_token_upper_bound", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_requested_completion_token_limit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_resolve_model_preset", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_rollingcounter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_rollingthroughput", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_route_identity_partition", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_route_stats_keys", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_scale_demanded_models_locked", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_select_route", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_served_model_copies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_serviceable_nodes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_session_cookie_header", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_session_token_from_headers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_set_upstream_read_timeout", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_snapshot_regular_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_statscollector", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_stream_billable_split", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_stream_line_tokens", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_tracker_log", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_tracker_log_proxy_progress", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_trackerhandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_trackerhttpserver", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_trackerserver", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_unassigned_managed_nodes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_unregister_active_proxy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_upstream_socket", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_usage_split", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_usage_total_tokens", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_server_ws_max_size", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_test_runner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_test_runner_testrunmanager", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_test_runner_testrunnererror", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_wallet_proof", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_wallet_proof_binding_message", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server", "to": "tracker_meshnet_tracker_wallet_proof_verify_wallet_signature", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_1", "to": "tracker_meshnet_tracker_server", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_99", "to": "tracker_meshnet_tracker_server_preset_price_keys", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_hf_pricing_loop", "to": "tracker_meshnet_tracker_server_preset_price_keys", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_init", "to": "tracker_meshnet_tracker_server_preset_price_keys", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_117", "to": "tracker_meshnet_tracker_server_derive_relay_url_from_public_tracker_url", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_embedded_relay_status", "to": "tracker_meshnet_tracker_server_derive_relay_url_from_public_tracker_url", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_start", "to": "tracker_meshnet_tracker_server_derive_relay_url_from_public_tracker_url", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_130", "to": "tracker_meshnet_tracker_server_local_relay_url", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_embedded_relay_status", "to": "tracker_meshnet_tracker_server_local_relay_url", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_136", "to": "tracker_meshnet_tracker_server_load_model_presets_from_data", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_167", "to": "tracker_meshnet_tracker_server_clone_model_presets", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_init", "to": "tracker_meshnet_tracker_server_clone_model_presets", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_snapshot_regular_files", "to": "tracker_meshnet_tracker_server_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_model_files_download", "to": "tracker_meshnet_tracker_server_snapshot_regular_files", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_model_sources", "to": "tracker_meshnet_tracker_server_snapshot_regular_files", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhttpserver_init", "to": "tracker_meshnet_tracker_server_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_init", "to": "tracker_meshnet_tracker_server_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_194", "to": "tracker_meshnet_tracker_server_endpoint_key", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_endpoint_key", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_capability_from_registration", "to": "tracker_meshnet_tracker_server_model_aliases", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_effective_throughput", "to": "tracker_meshnet_tracker_server_model_aliases", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_node_matches_model", "to": "tracker_meshnet_tracker_server_model_aliases", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_node_matches_preset", "to": "tracker_meshnet_tracker_server_model_aliases", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_preset_aliases", "to": "tracker_meshnet_tracker_server_model_aliases", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_206", "to": "tracker_meshnet_tracker_server_model_aliases", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_resolve_model_preset", "to": "tracker_meshnet_tracker_server_model_aliases", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_routing", "to": "tracker_meshnet_tracker_server_model_aliases", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_node_matches_preset", "to": "tracker_meshnet_tracker_server_preset_aliases", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_resolve_model_preset", "to": "tracker_meshnet_tracker_server_preset_aliases", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_model_demand_and_supply", "to": "tracker_meshnet_tracker_server_resolve_model_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_model_health_summary", "to": "tracker_meshnet_tracker_server_resolve_model_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_nodes_and_bounds_for_model", "to": "tracker_meshnet_tracker_server_resolve_model_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_preset_for_node", "to": "tracker_meshnet_tracker_server_resolve_model_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_queue_initial_model_placement_locked", "to": "tracker_meshnet_tracker_server_resolve_model_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rebalance_model_locked", "to": "tracker_meshnet_tracker_server_resolve_model_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_release_model_locked", "to": "tracker_meshnet_tracker_server_resolve_model_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_repo_demand_rpm", "to": "tracker_meshnet_tracker_server_resolve_model_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_request_model_load_locked", "to": "tracker_meshnet_tracker_server_resolve_model_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_route_stats_keys", "to": "tracker_meshnet_tracker_server_resolve_model_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_assign", "to": "tracker_meshnet_tracker_server_resolve_model_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_model_coverage_vote", "to": "tracker_meshnet_tracker_server_resolve_model_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_model_files_download", "to": "tracker_meshnet_tracker_server_resolve_model_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_model_speed", "to": "tracker_meshnet_tracker_server_resolve_model_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_network_assign", "to": "tracker_meshnet_tracker_server_resolve_model_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_resolve_model_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_route", "to": "tracker_meshnet_tracker_server_resolve_model_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_routes", "to": "tracker_meshnet_tracker_server_resolve_model_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_routing", "to": "tracker_meshnet_tracker_server_resolve_model_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_tracker_nodes", "to": "tracker_meshnet_tracker_server_resolve_model_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_model_health_summary", "to": "tracker_meshnet_tracker_server_node_matches_model", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_node_admission", "to": "tracker_meshnet_tracker_server_node_matches_model", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_nodes_and_bounds_for_model", "to": "tracker_meshnet_tracker_server_node_matches_model", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_model_speed", "to": "tracker_meshnet_tracker_server_node_matches_model", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_node_matches_model", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_route", "to": "tracker_meshnet_tracker_server_node_matches_model", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_model_demand_and_supply", "to": "tracker_meshnet_tracker_server_node_matches_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_model_health_summary", "to": "tracker_meshnet_tracker_server_node_matches_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_nodes_and_bounds_for_model", "to": "tracker_meshnet_tracker_server_node_matches_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_queue_initial_model_placement_locked", "to": "tracker_meshnet_tracker_server_node_matches_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rebalance_model_locked", "to": "tracker_meshnet_tracker_server_node_matches_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_release_model_locked", "to": "tracker_meshnet_tracker_server_node_matches_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_assign", "to": "tracker_meshnet_tracker_server_node_matches_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_model_speed", "to": "tracker_meshnet_tracker_server_node_matches_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_models", "to": "tracker_meshnet_tracker_server_node_matches_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_node_matches_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_route", "to": "tracker_meshnet_tracker_server_node_matches_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_routes", "to": "tracker_meshnet_tracker_server_node_matches_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_tracker_nodes", "to": "tracker_meshnet_tracker_server_node_matches_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_modelstats_init", "to": "tracker_meshnet_tracker_server_rollingcounter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_256", "to": "tracker_meshnet_tracker_server_rollingcounter", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rollingcounter", "to": "tracker_meshnet_tracker_server_rollingcounter_buckets", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rollingcounter", "to": "tracker_meshnet_tracker_server_rollingcounter_epoch", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rollingcounter", "to": "tracker_meshnet_tracker_server_rollingcounter_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rollingcounter", "to": "tracker_meshnet_tracker_server_rollingcounter_record", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rollingcounter", "to": "tracker_meshnet_tracker_server_rollingcounter_restore_buckets", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rollingcounter", "to": "tracker_meshnet_tracker_server_rollingcounter_rpm", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rollingcounter", "to": "tracker_meshnet_tracker_test_runner_testrunmanager", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingcounter", "to": "tracker_meshnet_tracker_test_runner_testrunnererror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingcounter", "to": "validator_meshnet_validator_audit_toplocproofclaim", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingcounter_record", "to": "tracker_meshnet_tracker_server_rollingthroughput_epoch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_modelstats_rpms", "to": "tracker_meshnet_tracker_server_rollingcounter_rpm", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rollingcounter_rpm", "to": "tracker_meshnet_tracker_server_rollingthroughput_epoch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_nodemodelthroughput_init", "to": "tracker_meshnet_tracker_server_rollingthroughput", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_298", "to": "tracker_meshnet_tracker_server_rollingthroughput", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rollingthroughput", "to": "tracker_meshnet_tracker_server_rollingthroughput_buckets", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rollingthroughput", "to": "tracker_meshnet_tracker_server_rollingthroughput_epoch", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rollingthroughput", "to": "tracker_meshnet_tracker_server_rollingthroughput_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rollingthroughput", "to": "tracker_meshnet_tracker_server_rollingthroughput_record", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rollingthroughput", "to": "tracker_meshnet_tracker_server_rollingthroughput_restore_buckets", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rollingthroughput", "to": "tracker_meshnet_tracker_server_rollingthroughput_stats", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rollingthroughput", "to": "tracker_meshnet_tracker_test_runner_testrunmanager", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingthroughput", "to": "tracker_meshnet_tracker_test_runner_testrunnererror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingthroughput", "to": "validator_meshnet_validator_audit_toplocproofclaim", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rollingthroughput_record", "to": "tracker_meshnet_tracker_server_rollingthroughput_epoch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rollingthroughput_stats", "to": "tracker_meshnet_tracker_server_rollingthroughput_epoch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_statscollector_save_to_db", "to": "tracker_meshnet_tracker_server_rollingthroughput_buckets", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_statscollector_load_from_db", "to": "tracker_meshnet_tracker_server_rollingthroughput_restore_buckets", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_modelstats", "to": "tracker_meshnet_tracker_server_modelstats_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_modelstats", "to": "tracker_meshnet_tracker_server_modelstats_record", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_modelstats", "to": "tracker_meshnet_tracker_server_modelstats_rpms", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_modelstats", "to": "tracker_meshnet_tracker_test_runner_testrunmanager", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_modelstats", "to": "tracker_meshnet_tracker_test_runner_testrunnererror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_modelstats", "to": "validator_meshnet_validator_audit_toplocproofclaim", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rationale_365", "to": "tracker_meshnet_tracker_server_modelstats", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_statscollector_load_from_db", "to": "tracker_meshnet_tracker_server_modelstats", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_statscollector_record_request", "to": "tracker_meshnet_tracker_server_modelstats", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_modelstats_record", "to": "tracker_meshnet_tracker_server_nodemodelthroughput_record", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_statscollector_get_combined_stats", "to": "tracker_meshnet_tracker_server_modelstats_rpms", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_statscollector_get_local_rpms", "to": "tracker_meshnet_tracker_server_modelstats_rpms", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_nodemodelthroughput", "to": "tracker_meshnet_tracker_server_nodemodelthroughput_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_nodemodelthroughput", "to": "tracker_meshnet_tracker_server_nodemodelthroughput_record", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_nodemodelthroughput", "to": "tracker_meshnet_tracker_server_nodemodelthroughput_stats", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_nodemodelthroughput", "to": "tracker_meshnet_tracker_test_runner_testrunmanager", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodemodelthroughput", "to": "tracker_meshnet_tracker_test_runner_testrunnererror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodemodelthroughput", "to": "validator_meshnet_validator_audit_toplocproofclaim", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rationale_388", "to": "tracker_meshnet_tracker_server_nodemodelthroughput", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_statscollector_load_from_db", "to": "tracker_meshnet_tracker_server_nodemodelthroughput", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_statscollector_record_node_throughput", "to": "tracker_meshnet_tracker_server_nodemodelthroughput", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_statscollector_record_node_throughput", "to": "tracker_meshnet_tracker_server_nodemodelthroughput_record", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_statscollector_record_request", "to": "tracker_meshnet_tracker_server_nodemodelthroughput_record", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_heartbeat", "to": "tracker_meshnet_tracker_server_nodemodelthroughput_record", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_statscollector_get_node_model_stats", "to": "tracker_meshnet_tracker_server_nodemodelthroughput_stats", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_statscollector_get_node_throughput_stats", "to": "tracker_meshnet_tracker_server_nodemodelthroughput_stats", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_416", "to": "tracker_meshnet_tracker_server_statscollector", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_statscollector", "to": "tracker_meshnet_tracker_server_statscollector_get_combined_stats", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_statscollector", "to": "tracker_meshnet_tracker_server_statscollector_get_local_rpms", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_statscollector", "to": "tracker_meshnet_tracker_server_statscollector_get_node_model_stats", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_statscollector", "to": "tracker_meshnet_tracker_server_statscollector_get_node_throughput_stats", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_statscollector", "to": "tracker_meshnet_tracker_server_statscollector_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_statscollector", "to": "tracker_meshnet_tracker_server_statscollector_init_db", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_statscollector", "to": "tracker_meshnet_tracker_server_statscollector_load_from_db", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_statscollector", "to": "tracker_meshnet_tracker_server_statscollector_merge_peer_rpms", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_statscollector", "to": "tracker_meshnet_tracker_server_statscollector_record_node_throughput", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_statscollector", "to": "tracker_meshnet_tracker_server_statscollector_record_request", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_statscollector", "to": "tracker_meshnet_tracker_server_statscollector_save_to_db", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_statscollector", "to": "tracker_meshnet_tracker_test_runner_testrunmanager", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_statscollector", "to": "tracker_meshnet_tracker_test_runner_testrunnererror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_statscollector", "to": "validator_meshnet_validator_audit_toplocproofclaim", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_init", "to": "tracker_meshnet_tracker_server_statscollector", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_statscollector_init", "to": "lock", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_statscollector_init", "to": "tracker_meshnet_tracker_server_statscollector_init_db", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_statscollector_init", "to": "tracker_meshnet_tracker_server_statscollector_load_from_db", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_model_coverage_vote", "to": "tracker_meshnet_tracker_server_statscollector_record_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_statscollector_record_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_record_observed_throughput", "to": "tracker_meshnet_tracker_server_statscollector_record_node_throughput", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_model_demand_and_supply", "to": "tracker_meshnet_tracker_server_statscollector_get_local_rpms", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_network_assign", "to": "tracker_meshnet_tracker_server_statscollector_get_local_rpms", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_stats_loop", "to": "tracker_meshnet_tracker_server_statscollector_get_local_rpms", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_model_speed", "to": "tracker_meshnet_tracker_server_statscollector_get_node_model_stats", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_record_observed_throughput", "to": "tracker_meshnet_tracker_server_statscollector_get_node_model_stats", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_stats", "to": "tracker_meshnet_tracker_server_statscollector_get_node_throughput_stats", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_stats_gossip", "to": "tracker_meshnet_tracker_server_statscollector_merge_peer_rpms", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_stats", "to": "tracker_meshnet_tracker_server_statscollector_get_combined_stats", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_save_stats_once", "to": "tracker_meshnet_tracker_server_statscollector_save_to_db", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_stop", "to": "tracker_meshnet_tracker_server_statscollector_save_to_db", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_add_shard_directive", "to": "tracker_meshnet_tracker_server_nodeentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_assignment_memory_bytes", "to": "tracker_meshnet_tracker_server_nodeentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_coverage_map", "to": "tracker_meshnet_tracker_server_nodeentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_coverage_percentage", "to": "tracker_meshnet_tracker_server_nodeentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_deployment_summary", "to": "tracker_meshnet_tracker_server_nodeentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_drop_directive", "to": "tracker_meshnet_tracker_server_nodeentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_endpoint_memory_pool", "to": "tracker_meshnet_tracker_server_nodeentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_fetch_toploc_commitment", "to": "tracker_meshnet_tracker_server_nodeentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_find_pinned_route", "to": "tracker_meshnet_tracker_server_nodeentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_has_usable_quantization", "to": "tracker_meshnet_tracker_server_nodeentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_hf_rebalance_preset", "to": "tracker_meshnet_tracker_server_nodeentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_load_directive", "to": "tracker_meshnet_tracker_server_nodeentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_model_metadata_from_nodes", "to": "tracker_meshnet_tracker_server_nodeentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_node_capacity_summary", "to": "tracker_meshnet_tracker_server_nodeentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_node_layer_capacity", "to": "tracker_meshnet_tracker_server_nodeentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_node_memory_budget_bytes", "to": "tracker_meshnet_tracker_server_nodeentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_node_memory_budget_for_preset", "to": "tracker_meshnet_tracker_server_nodeentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_node_quantization", "to": "tracker_meshnet_tracker_server_nodeentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_nodeentry", "to": "tracker_meshnet_tracker_server_nodeentry_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_nodeentry", "to": "tracker_meshnet_tracker_test_runner_testrunmanager", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodeentry", "to": "tracker_meshnet_tracker_test_runner_testrunnererror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodeentry", "to": "validator_meshnet_validator_audit_toplocproofclaim", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_nodes_and_bounds_for_model", "to": "tracker_meshnet_tracker_server_nodeentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_pool_summary", "to": "tracker_meshnet_tracker_server_nodeentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_preferred_node_quantization", "to": "tracker_meshnet_tracker_server_nodeentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_preset_for_node", "to": "tracker_meshnet_tracker_server_nodeentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_select_route", "to": "tracker_meshnet_tracker_server_nodeentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_served_model_copies", "to": "tracker_meshnet_tracker_server_nodeentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_serviceable_nodes", "to": "tracker_meshnet_tracker_server_nodeentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_network_assign", "to": "tracker_meshnet_tracker_server_nodeentry", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_register", "to": "tracker_meshnet_tracker_server_nodeentry", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_record_observed_throughput", "to": "tracker_meshnet_tracker_server_nodeentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_record_validation_event", "to": "tracker_meshnet_tracker_server_nodeentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_raft_apply", "to": "tracker_meshnet_tracker_server_nodeentry", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_effective_throughput", "to": "tracker_meshnet_tracker_server_effective_queue_depth", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_enumerate_routes", "to": "tracker_meshnet_tracker_server_effective_throughput", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_node_capacity_summary", "to": "tracker_meshnet_tracker_server_effective_throughput", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_pool_summary", "to": "tracker_meshnet_tracker_server_effective_throughput", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_689", "to": "tracker_meshnet_tracker_server_effective_throughput", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_effective_throughput", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_node_health", "to": "tracker_meshnet_tracker_server_effective_queue_depth", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_node_route_summary", "to": "tracker_meshnet_tracker_server_effective_queue_depth", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_703", "to": "tracker_meshnet_tracker_server_effective_queue_depth", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_714", "to": "tracker_meshnet_tracker_server_normalize_current_requests", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_heartbeat", "to": "tracker_meshnet_tracker_server_normalize_current_requests", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_record_proxy_inflight", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_enumerate_routes", "to": "tracker_meshnet_tracker_server_reputation_multiplier", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_752", "to": "tracker_meshnet_tracker_server_reputation_multiplier", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_reputation_multiplier", "to": "tracker_meshnet_tracker_server_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_enumerate_routes", "to": "tracker_meshnet_tracker_server_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_estimate_text_tokens", "to": "tracker_meshnet_tracker_server_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_fetch_toploc_reference_activations", "to": "tracker_meshnet_tracker_server_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_registration_ban_error", "to": "tracker_meshnet_tracker_server_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_relay_http_request_frames", "to": "tracker_meshnet_tracker_server_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_select_route", "to": "tracker_meshnet_tracker_server_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_set_upstream_read_timeout", "to": "tracker_meshnet_tracker_server_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_tracker_log", "to": "tracker_meshnet_tracker_server_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_finalize_proxy_cancel", "to": "tracker_meshnet_tracker_server_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_stream_relayed_frames", "to": "tracker_meshnet_tracker_server_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhttpserver_init", "to": "tracker_meshnet_tracker_server_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_init", "to": "tracker_meshnet_tracker_server_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_upstream_socket", "to": "tracker_meshnet_tracker_server_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_capability_routable", "to": "tracker_meshnet_tracker_server_node_admission", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_763", "to": "tracker_meshnet_tracker_server_node_admission", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_route_identity_partition", "to": "tracker_meshnet_tracker_server_node_admission", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_801", "to": "tracker_meshnet_tracker_server_capability_from_registration", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_register", "to": "tracker_meshnet_tracker_server_capability_from_registration", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_raft_apply", "to": "tracker_meshnet_tracker_server_capability_from_registration", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_admitted_nodes", "to": "tracker_meshnet_tracker_server_capability_routable", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_824", "to": "tracker_meshnet_tracker_server_capability_routable", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_capability_routable", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_register", "to": "tracker_meshnet_tracker_server_capability_routable", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_enumerate_routes", "to": "tracker_meshnet_tracker_server_admitted_nodes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_829", "to": "tracker_meshnet_tracker_server_admitted_nodes", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_select_route", "to": "tracker_meshnet_tracker_server_admitted_nodes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_enumerate_routes", "to": "tracker_meshnet_tracker_server_route_identity_partition", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_find_pinned_route", "to": "tracker_meshnet_tracker_server_route_identity_partition", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_select_route", "to": "tracker_meshnet_tracker_server_route_identity_partition", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_852", "to": "tracker_meshnet_tracker_server_select_route", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_select_route", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_route", "to": "tracker_meshnet_tracker_server_select_route", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_routes", "to": "tracker_meshnet_tracker_server_select_route", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_924", "to": "tracker_meshnet_tracker_server_enumerate_routes", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_enumerate_routes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_route", "to": "tracker_meshnet_tracker_server_enumerate_routes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_routing", "to": "tracker_meshnet_tracker_server_enumerate_routes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_tracker_log_proxy_progress", "to": "tracker_meshnet_tracker_server_node_route_summary", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_finalize_proxy_cancel", "to": "tracker_meshnet_tracker_server_node_route_summary", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_node_route_summary", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_route", "to": "tracker_meshnet_tracker_server_node_route_summary", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_stream_relayed_frames", "to": "tracker_meshnet_tracker_server_node_route_summary", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_available_quantizations", "to": "tracker_meshnet_tracker_server_coverage_percentage", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_coverage_percentage", "to": "tracker_meshnet_tracker_server_serviceable_nodes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_model_health_summary", "to": "tracker_meshnet_tracker_server_coverage_percentage", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_queue_initial_model_placement_locked", "to": "tracker_meshnet_tracker_server_coverage_percentage", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_models", "to": "tracker_meshnet_tracker_server_coverage_percentage", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_coverage_percentage", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_available_quantizations", "to": "tracker_meshnet_tracker_server_served_model_copies", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_model_health_summary", "to": "tracker_meshnet_tracker_server_served_model_copies", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_served_model_copies", "to": "tracker_meshnet_tracker_server_serviceable_nodes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_models", "to": "tracker_meshnet_tracker_server_served_model_copies", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_network_assign", "to": "tracker_meshnet_tracker_server_served_model_copies", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_model_demand_and_supply", "to": "tracker_meshnet_tracker_server_model_health_summary", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_model_health_summary", "to": "tracker_meshnet_tracker_server_preset_layer_bounds", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_purge_expired_nodes_locked", "to": "tracker_meshnet_tracker_server_model_health_summary", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_register", "to": "tracker_meshnet_tracker_server_model_health_summary", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_model_demand_and_supply", "to": "tracker_meshnet_tracker_server_preset_layer_bounds", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_nodes_and_bounds_for_model", "to": "tracker_meshnet_tracker_server_preset_layer_bounds", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_queue_initial_model_placement_locked", "to": "tracker_meshnet_tracker_server_preset_layer_bounds", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rebalance_hf_model_locked", "to": "tracker_meshnet_tracker_server_preset_layer_bounds", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rebalance_model_locked", "to": "tracker_meshnet_tracker_server_preset_layer_bounds", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_request_model_load_locked", "to": "tracker_meshnet_tracker_server_preset_layer_bounds", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_assign", "to": "tracker_meshnet_tracker_server_preset_layer_bounds", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_models", "to": "tracker_meshnet_tracker_server_preset_layer_bounds", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_network_assign", "to": "tracker_meshnet_tracker_server_preset_layer_bounds", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_preset_layer_bounds", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_route", "to": "tracker_meshnet_tracker_server_preset_layer_bounds", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_routes", "to": "tracker_meshnet_tracker_server_preset_layer_bounds", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_routing", "to": "tracker_meshnet_tracker_server_preset_layer_bounds", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_tracker_nodes", "to": "tracker_meshnet_tracker_server_preset_layer_bounds", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_assignment_memory_bytes", "to": "tracker_meshnet_tracker_server_preset_bytes_per_layer", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_max_layers_for_memory", "to": "tracker_meshnet_tracker_server_preset_bytes_per_layer", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_node_layer_capacity", "to": "tracker_meshnet_tracker_server_preset_bytes_per_layer", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_node_memory_budget_for_preset", "to": "tracker_meshnet_tracker_server_preset_bytes_per_layer", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_node_quantization", "to": "tracker_meshnet_tracker_server_preset_bytes_per_layer", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_preferred_node_quantization", "to": "tracker_meshnet_tracker_server_preset_bytes_per_layer", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_queue_initial_model_placement_locked", "to": "tracker_meshnet_tracker_server_preset_bytes_per_layer", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_scale_demanded_models_locked", "to": "tracker_meshnet_tracker_server_preset_bytes_per_layer", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_assign", "to": "tracker_meshnet_tracker_server_preset_bytes_per_layer", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_network_assign", "to": "tracker_meshnet_tracker_server_preset_bytes_per_layer", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_preferred_node_quantization", "to": "tracker_meshnet_tracker_server_normalize_quantization", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_quantization_satisfies", "to": "tracker_meshnet_tracker_server_normalize_quantization", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_1124", "to": "tracker_meshnet_tracker_server_normalize_quantization", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_registration_quantization", "to": "tracker_meshnet_tracker_server_normalize_quantization", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_model_coverage_vote", "to": "tracker_meshnet_tracker_server_normalize_quantization", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_normalize_quantization", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_1134", "to": "tracker_meshnet_tracker_server_registration_quantization", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_register", "to": "tracker_meshnet_tracker_server_registration_quantization", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_raft_apply", "to": "tracker_meshnet_tracker_server_registration_quantization", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_assign_redundant_managed_nodes", "to": "tracker_meshnet_tracker_server_has_usable_quantization", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_preferred_node_quantization", "to": "tracker_meshnet_tracker_server_has_usable_quantization", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_1165", "to": "tracker_meshnet_tracker_server_has_usable_quantization", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rebalance_hf_model_locked", "to": "tracker_meshnet_tracker_server_has_usable_quantization", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rebalance_model_locked", "to": "tracker_meshnet_tracker_server_has_usable_quantization", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_request_model_load_locked", "to": "tracker_meshnet_tracker_server_has_usable_quantization", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_scale_demanded_models_locked", "to": "tracker_meshnet_tracker_server_has_usable_quantization", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_serviceable_nodes", "to": "tracker_meshnet_tracker_server_has_usable_quantization", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_coverage_map", "to": "tracker_meshnet_tracker_server_serviceable_nodes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_1180", "to": "tracker_meshnet_tracker_server_serviceable_nodes", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_available_quantizations", "to": "tracker_meshnet_tracker_server_quantization_satisfies", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_preferred_node_quantization", "to": "tracker_meshnet_tracker_server_quantization_satisfies", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_queue_initial_model_placement_locked", "to": "tracker_meshnet_tracker_server_quantization_satisfies", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_1192", "to": "tracker_meshnet_tracker_server_quantization_satisfies", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_quantization_satisfies", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_1208", "to": "tracker_meshnet_tracker_server_available_quantizations", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_models", "to": "tracker_meshnet_tracker_server_available_quantizations", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_assign_redundant_managed_nodes", "to": "tracker_meshnet_tracker_server_node_quantization", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_assignment_memory_bytes", "to": "tracker_meshnet_tracker_server_node_quantization", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_emit_shard_change_directives", "to": "tracker_meshnet_tracker_server_node_quantization", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_node_layer_capacity", "to": "tracker_meshnet_tracker_server_node_quantization", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rebalance_hf_model_locked", "to": "tracker_meshnet_tracker_server_node_quantization", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rebalance_model_locked", "to": "tracker_meshnet_tracker_server_node_quantization", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_request_model_load_locked", "to": "tracker_meshnet_tracker_server_node_quantization", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_scale_demanded_models_locked", "to": "tracker_meshnet_tracker_server_node_quantization", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_endpoint_memory_pool", "to": "tracker_meshnet_tracker_server_node_memory_budget_bytes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_node_capacity_summary", "to": "tracker_meshnet_tracker_server_node_memory_budget_bytes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_node_layer_capacity", "to": "tracker_meshnet_tracker_server_node_memory_budget_bytes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_node_memory_budget_for_preset", "to": "tracker_meshnet_tracker_server_node_memory_budget_bytes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_pool_summary", "to": "tracker_meshnet_tracker_server_node_memory_budget_bytes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_1242", "to": "tracker_meshnet_tracker_server_node_memory_budget_bytes", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_register", "to": "tracker_meshnet_tracker_server_node_memory_budget_bytes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_assign_redundant_managed_nodes", "to": "tracker_meshnet_tracker_server_node_layer_capacity", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_node_capacity_summary", "to": "tracker_meshnet_tracker_server_node_layer_capacity", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_node_memory_budget_for_preset", "to": "tracker_meshnet_tracker_server_node_layer_capacity", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rebalance_hf_model_locked", "to": "tracker_meshnet_tracker_server_node_layer_capacity", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rebalance_model_locked", "to": "tracker_meshnet_tracker_server_node_layer_capacity", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_request_model_load_locked", "to": "tracker_meshnet_tracker_server_node_layer_capacity", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_scale_demanded_models_locked", "to": "tracker_meshnet_tracker_server_node_layer_capacity", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_node_health", "to": "tracker_meshnet_tracker_server_node_capacity_summary", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_1261", "to": "tracker_meshnet_tracker_server_node_capacity_summary", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_pool_summary", "to": "tracker_meshnet_tracker_server_node_memory_budget_for_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_deployment_summary", "to": "tracker_meshnet_tracker_server_pool_summary", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_network_map", "to": "tracker_meshnet_tracker_server_pool_summary", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_model_demand_and_supply", "to": "tracker_meshnet_tracker_server_repo_demand_rpm", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_1307", "to": "tracker_meshnet_tracker_server_repo_demand_rpm", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_network_assign", "to": "tracker_meshnet_tracker_server_repo_demand_rpm", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_endpoint_memory_pool", "to": "tracker_meshnet_tracker_server_preset_for_node", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_preset_for_node", "to": "tracker_meshnet_tracker_server_hf_rebalance_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_endpoint_memory_pool", "to": "tracker_meshnet_tracker_server_assignment_memory_bytes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_memory_pool_map", "to": "tracker_meshnet_tracker_server_endpoint_memory_pool", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_1347", "to": "tracker_meshnet_tracker_server_endpoint_memory_pool", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_queue_initial_model_placement_locked", "to": "tracker_meshnet_tracker_server_memory_pool_map", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_1386", "to": "tracker_meshnet_tracker_server_memory_pool_map", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_request_model_load_locked", "to": "tracker_meshnet_tracker_server_memory_pool_map", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_scale_demanded_models_locked", "to": "tracker_meshnet_tracker_server_memory_pool_map", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_network_map", "to": "tracker_meshnet_tracker_server_memory_pool_map", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_queue_initial_model_placement_locked", "to": "tracker_meshnet_tracker_server_add_shard_directive", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_request_model_load_locked", "to": "tracker_meshnet_tracker_server_add_shard_directive", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_scale_demanded_models_locked", "to": "tracker_meshnet_tracker_server_add_shard_directive", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_scale_demanded_models_locked", "to": "tracker_meshnet_tracker_server_model_demand_and_supply", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_1463", "to": "tracker_meshnet_tracker_server_scale_demanded_models_locked", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_scale_demanded_models_locked", "to": "tracker_meshnet_tracker_server_tracker_log", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_rebalance_loop", "to": "tracker_meshnet_tracker_server_scale_demanded_models_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_1545", "to": "tracker_meshnet_tracker_server_request_model_load_locked", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_request_model_load_locked", "to": "tracker_meshnet_tracker_server_tracker_log", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_model_load_request", "to": "tracker_meshnet_tracker_server_request_model_load_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_1583", "to": "tracker_meshnet_tracker_server_release_model_locked", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_release_model_locked", "to": "tracker_meshnet_tracker_server_drop_directive", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_1600", "to": "tracker_meshnet_tracker_server_release_all_node_models_locked", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_queue_initial_model_placement_locked", "to": "tracker_meshnet_tracker_server_preferred_node_quantization", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_1614", "to": "tracker_meshnet_tracker_server_preferred_node_quantization", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_queue_initial_model_placement_locked", "to": "tracker_meshnet_tracker_server_tracker_log", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_1633", "to": "tracker_meshnet_tracker_server_queue_initial_model_placement_locked", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_queue_initial_model_placement_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_models", "to": "tracker_meshnet_tracker_server_deployment_summary", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_network_assign", "to": "tracker_meshnet_tracker_server_deployment_summary", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_network_map", "to": "tracker_meshnet_tracker_server_deployment_summary", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_network_assign", "to": "tracker_meshnet_tracker_server_max_layers_for_memory", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_models", "to": "tracker_meshnet_tracker_server_model_metadata_from_nodes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rebalance_hf_model_locked", "to": "tracker_meshnet_tracker_server_coverage_map", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rebalance_model_locked", "to": "tracker_meshnet_tracker_server_coverage_map", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_coverage_map_detailed", "to": "tracker_meshnet_tracker_server_node_health", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_1786", "to": "tracker_meshnet_tracker_server_node_health", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_network_map", "to": "tracker_meshnet_tracker_server_node_health", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_1816", "to": "tracker_meshnet_tracker_server_coverage_map_detailed", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_coverage", "to": "tracker_meshnet_tracker_server_coverage_map_detailed", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rebalance_hf_model_locked", "to": "tracker_meshnet_tracker_server_coverage_gaps", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rebalance_model_locked", "to": "tracker_meshnet_tracker_server_coverage_gaps", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rebalance_hf_model_locked", "to": "tracker_meshnet_tracker_server_unassigned_managed_nodes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rebalance_model_locked", "to": "tracker_meshnet_tracker_server_unassigned_managed_nodes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_assign_redundant_managed_nodes", "to": "tracker_meshnet_tracker_server_emit_shard_change_directives", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_emit_shard_change_directives", "to": "tracker_meshnet_tracker_server_drop_directive", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_emit_shard_change_directives", "to": "tracker_meshnet_tracker_server_load_directive", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_1888", "to": "tracker_meshnet_tracker_server_emit_shard_change_directives", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rebalance_hf_model_locked", "to": "tracker_meshnet_tracker_server_emit_shard_change_directives", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rebalance_model_locked", "to": "tracker_meshnet_tracker_server_emit_shard_change_directives", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_1921", "to": "tracker_meshnet_tracker_server_assign_redundant_managed_nodes", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rebalance_hf_model_locked", "to": "tracker_meshnet_tracker_server_assign_redundant_managed_nodes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rebalance_model_locked", "to": "tracker_meshnet_tracker_server_assign_redundant_managed_nodes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_1952", "to": "tracker_meshnet_tracker_server_ws_max_size", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_relay_http_request_frames", "to": "tracker_meshnet_tracker_server_ws_max_size", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_1977", "to": "tracker_meshnet_tracker_server_relay_http_request_frames", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_relay_http_request", "to": "tracker_meshnet_tracker_server_relay_http_request_frames", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_relay_http_request_frames", "to": "tracker_meshnet_tracker_server_py_event", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_relay_http_request_frames", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_init", "to": "tracker_meshnet_tracker_server_py_event", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_2032", "to": "tracker_meshnet_tracker_server_relay_http_request", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_billable_non_stream_split", "to": "tracker_meshnet_tracker_server_usage_split", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_2056", "to": "tracker_meshnet_tracker_server_usage_split", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_stream_line_tokens", "to": "tracker_meshnet_tracker_server_usage_split", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_usage_split", "to": "tracker_meshnet_tracker_server_usage_total_tokens", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_2073", "to": "tracker_meshnet_tracker_server_stream_line_tokens", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_stream_line_tokens", "to": "tracker_meshnet_tracker_server_observed_stream_tokens", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_stream_line_tokens", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_stream_relayed_frames", "to": "tracker_meshnet_tracker_server_stream_line_tokens", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_2089", "to": "tracker_meshnet_tracker_server_stream_billable_split", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_stream_billable_split", "to": "tracker_meshnet_tracker_server_billable_stream_tokens", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_stream_billable_split", "to": "tracker_meshnet_tracker_server_estimate_prompt_tokens", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_finalize_proxy_cancel", "to": "tracker_meshnet_tracker_server_stream_billable_split", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_stream_billable_split", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_stream_relayed_frames", "to": "tracker_meshnet_tracker_server_stream_billable_split", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_billable_non_stream_split", "to": "tracker_meshnet_tracker_server_estimate_prompt_tokens", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_billable_non_stream_split", "to": "tracker_meshnet_tracker_server_observed_non_stream_completion_tokens", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_billable_non_stream_split", "to": "tracker_meshnet_tracker_server_requested_completion_token_limit", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_2106", "to": "tracker_meshnet_tracker_server_billable_non_stream_split", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_billable_non_stream_split", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_2136", "to": "tracker_meshnet_tracker_server_find_pinned_route", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_benchmark_hop_penalty", "to": "tracker_meshnet_tracker_server_find_pinned_route", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_benchmark_hop_penalty", "to": "tracker_meshnet_tracker_server_nodes_and_bounds_for_model", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_coverage", "to": "tracker_meshnet_tracker_server_nodes_and_bounds_for_model", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_toploc_calibration_run", "to": "tracker_meshnet_tracker_server_nodes_and_bounds_for_model", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_2195", "to": "tracker_meshnet_tracker_server_fetch_toploc_commitment", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_verify_node_toploc_calibration", "to": "tracker_meshnet_tracker_server_fetch_toploc_commitment", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_2234", "to": "tracker_meshnet_tracker_server_fetch_toploc_reference_activations", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_verify_node_toploc_calibration", "to": "tracker_meshnet_tracker_server_fetch_toploc_reference_activations", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_purge_expired_nodes_locked", "to": "tracker_meshnet_tracker_server_route_stats_keys", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_2288", "to": "tracker_meshnet_tracker_server_route_stats_keys", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_register", "to": "tracker_meshnet_tracker_server_route_stats_keys", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_purge_expired_nodes_locked", "to": "tracker_meshnet_tracker_server_rebalance_all_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_purge_expired_nodes_locked", "to": "tracker_meshnet_tracker_server_tracker_log", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_purge_expired_nodes", "to": "tracker_meshnet_tracker_server_purge_expired_nodes_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_rebalance_loop", "to": "tracker_meshnet_tracker_server_purge_expired_nodes_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rebalance_all_locked", "to": "tracker_meshnet_tracker_server_rebalance_model_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_register", "to": "tracker_meshnet_tracker_server_rebalance_model_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rebalance_hf_model_locked", "to": "tracker_meshnet_tracker_server_hf_rebalance_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rebalance_all_locked", "to": "tracker_meshnet_tracker_server_rebalance_hf_model_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_register", "to": "tracker_meshnet_tracker_server_rebalance_hf_model_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_rebalance_loop", "to": "tracker_meshnet_tracker_server_rebalance_all_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_session_token_from_headers", "to": "tracker_meshnet_tracker_server_api_key_from_headers", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_api_key_from_headers", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_wallet_register", "to": "tracker_meshnet_tracker_server_api_key_from_headers", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_require_role", "to": "tracker_meshnet_tracker_server_api_key_from_headers", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_auth_logout", "to": "tracker_meshnet_tracker_server_session_token_from_headers", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_resolve_identity", "to": "tracker_meshnet_tracker_server_session_token_from_headers", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_session_account", "to": "tracker_meshnet_tracker_server_session_token_from_headers", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_auth_login", "to": "tracker_meshnet_tracker_server_session_cookie_header", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_auth_logout", "to": "tracker_meshnet_tracker_server_session_cookie_header", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_auth_register", "to": "tracker_meshnet_tracker_server_session_cookie_header", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_billable_non_stream_tokens", "to": "tracker_meshnet_tracker_server_usage_total_tokens", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_benchmark_hop_penalty", "to": "tracker_meshnet_tracker_server_usage_total_tokens", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_estimate_prompt_tokens", "to": "tracker_meshnet_tracker_server_estimate_text_tokens", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_observed_non_stream_completion_tokens", "to": "tracker_meshnet_tracker_server_estimate_text_tokens", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_observed_stream_tokens", "to": "tracker_meshnet_tracker_server_estimate_text_tokens", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_billable_non_stream_tokens", "to": "tracker_meshnet_tracker_server_estimate_prompt_tokens", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_request_total_token_upper_bound", "to": "tracker_meshnet_tracker_server_estimate_prompt_tokens", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_estimate_prompt_tokens", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_request_total_token_upper_bound", "to": "tracker_meshnet_tracker_server_requested_completion_token_limit", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_requested_completion_token_limit", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_billable_non_stream_tokens", "to": "tracker_meshnet_tracker_server_request_total_token_upper_bound", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_billable_non_stream_tokens", "to": "tracker_meshnet_tracker_server_observed_non_stream_completion_tokens", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_observed_output_from_non_stream_payload", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_register", "to": "tracker_meshnet_tracker_server_registration_ban_error", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_heartbeat", "to": "tracker_meshnet_tracker_server_normalize_friendly_name", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_register", "to": "tracker_meshnet_tracker_server_normalize_friendly_name", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_raft_apply", "to": "tracker_meshnet_tracker_server_normalize_friendly_name", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_tracker_log_proxy_progress", "to": "tracker_meshnet_tracker_server_tracker_log", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_finalize_proxy_cancel", "to": "tracker_meshnet_tracker_server_tracker_log", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_heartbeat", "to": "tracker_meshnet_tracker_server_tracker_log", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_model_coverage_vote", "to": "tracker_meshnet_tracker_server_tracker_log", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_tracker_log", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_register", "to": "tracker_meshnet_tracker_server_tracker_log", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_route", "to": "tracker_meshnet_tracker_server_tracker_log", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_stream_relayed_frames", "to": "tracker_meshnet_tracker_server_tracker_log", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_activeproxycontext", "to": "tracker_meshnet_tracker_test_runner_testrunmanager", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_activeproxycontext", "to": "tracker_meshnet_tracker_test_runner_testrunnererror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_activeproxycontext", "to": "validator_meshnet_validator_audit_toplocproofclaim", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_register_active_proxy", "to": "tracker_meshnet_tracker_server_activeproxycontext", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_finalize_proxy_cancel", "to": "tracker_meshnet_tracker_server_activeproxycontext", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_stream_relayed_frames", "to": "tracker_meshnet_tracker_server_activeproxycontext", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_register_active_proxy", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_request_proxy_cancel", "to": "tracker_meshnet_tracker_server_trackerserver_start", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_request_cancel", "to": "tracker_meshnet_tracker_server_request_proxy_cancel", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_set_upstream_read_timeout", "to": "tracker_meshnet_tracker_server_upstream_socket", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_upstream_socket", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_set_upstream_read_timeout", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_finalize_proxy_cancel", "to": "tracker_meshnet_tracker_server_clear_proxy_progress_log_state", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_clear_proxy_progress_log_state", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_stream_relayed_frames", "to": "tracker_meshnet_tracker_server_clear_proxy_progress_log_state", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_tracker_log_proxy_progress", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_stream_relayed_frames", "to": "tracker_meshnet_tracker_server_tracker_log_proxy_progress", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_register", "to": "tracker_meshnet_tracker_server_node_id_for_registration", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhttpserver", "to": "tracker_meshnet_tracker_server_trackerhttpserver_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhttpserver", "to": "tracker_meshnet_tracker_test_runner_testrunmanager", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhttpserver", "to": "tracker_meshnet_tracker_test_runner_testrunnererror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhttpserver", "to": "validator_meshnet_validator_audit_toplocproofclaim", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_start", "to": "tracker_meshnet_tracker_server_trackerhttpserver", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhttpserver_init", "to": "deque", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhttpserver_init", "to": "lock", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhttpserver_init", "to": "tracker_meshnet_tracker_server_trackerserver_init", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_init", "to": "lock", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_bill_completed", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_do_get", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_do_post", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_finalize_proxy_cancel", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_account_key_create", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_account_key_revoke", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_account_me", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_account_profile", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_account_topup", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_account_usage", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_accounts_gossip", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_admin_accounts", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_assign", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_auth_login", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_auth_logout", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_auth_register", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_benchmark_hop_penalty", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_benchmark_results", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_billing_forfeit", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_billing_gossip", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_billing_settlements", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_billing_summary", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_console", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_coverage", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_dashboard", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_favicon", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_gossip", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_heartbeat", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_hf_pricing_history", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_model_coverage_vote", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_model_files_download", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_model_load_request", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_model_speed", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_models", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_network_assign", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_network_map", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_request_cancel", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_raft_append", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_raft_status", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_raft_vote", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_register", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_registry_gossip", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_registry_wallets", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_route", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_routes", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_routing", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_stats", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_stats_gossip", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_tests_list", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_tests_run", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_tests_status", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_toploc_calibration_results", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_toploc_calibration_run", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_tracker_nodes", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_wallet_register", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_log_message", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_model_sources", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_purge_expired_nodes", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_read_hive_authenticated_body", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_read_json_body", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_record_observed_throughput", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_record_validation_event", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_require_accounts", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_require_role", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_resolve_identity", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_send_relayed_response", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_serve_package_asset", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_session_account", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_stream_relayed_frames", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_test_runner_or_reject", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_toploc_calibration_gate_min_hardware_profiles", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_server_trackerhandler_verify_node_toploc_calibration", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_test_runner_testrunmanager", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "tracker_meshnet_tracker_test_runner_testrunnererror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler", "to": "validator_meshnet_validator_audit_toplocproofclaim", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_get", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_account_key_create", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_account_key_revoke", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_account_me", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_account_profile", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_account_topup", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_account_usage", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_accounts_gossip", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_admin_accounts", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_assign", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_auth_login", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_auth_logout", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_auth_register", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_benchmark_hop_penalty", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_benchmark_results", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_billing_forfeit", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_billing_gossip", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_billing_settlements", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_billing_summary", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_console", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_coverage", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_gossip", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_heartbeat", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_hf_pricing_history", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_model_coverage_vote", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_model_files_download", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_model_load_request", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_model_speed", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_models", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_network_assign", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_network_map", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_request_cancel", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_raft_append", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_raft_status", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_raft_vote", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_register", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_registry_gossip", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_registry_wallets", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_route", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_routes", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_routing", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_stats", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_stats_gossip", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_tests_list", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_tests_run", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_tests_status", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_toploc_calibration_results", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_toploc_calibration_run", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_tracker_nodes", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_wallet_register", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_read_hive_authenticated_body", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_read_json_body", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_require_accounts", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_require_role", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_serve_package_asset", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_test_runner_or_reject", "to": "tracker_meshnet_tracker_server_trackerhandler_send_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_3006", "to": "tracker_meshnet_tracker_server_trackerhandler_resolve_identity", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_wallet_register", "to": "tracker_meshnet_tracker_server_trackerhandler_resolve_identity", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_require_role", "to": "tracker_meshnet_tracker_server_trackerhandler_resolve_identity", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_3025", "to": "tracker_meshnet_tracker_server_trackerhandler_require_role", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_benchmark_hop_penalty", "to": "tracker_meshnet_tracker_server_trackerhandler_require_role", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_benchmark_results", "to": "tracker_meshnet_tracker_server_trackerhandler_require_role", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_billing_forfeit", "to": "tracker_meshnet_tracker_server_trackerhandler_require_role", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_billing_settlements", "to": "tracker_meshnet_tracker_server_trackerhandler_require_role", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_billing_summary", "to": "tracker_meshnet_tracker_server_trackerhandler_require_role", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_hf_pricing_history", "to": "tracker_meshnet_tracker_server_trackerhandler_require_role", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_model_load_request", "to": "tracker_meshnet_tracker_server_trackerhandler_require_role", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_request_cancel", "to": "tracker_meshnet_tracker_server_trackerhandler_require_role", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_registry_wallets", "to": "tracker_meshnet_tracker_server_trackerhandler_require_role", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_toploc_calibration_results", "to": "tracker_meshnet_tracker_server_trackerhandler_require_role", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_toploc_calibration_run", "to": "tracker_meshnet_tracker_server_trackerhandler_require_role", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_test_runner_or_reject", "to": "tracker_meshnet_tracker_server_trackerhandler_require_role", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_3041", "to": "tracker_meshnet_tracker_server_trackerhandler_read_hive_authenticated_body", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_accounts_gossip", "to": "tracker_meshnet_tracker_server_trackerhandler_read_hive_authenticated_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_billing_gossip", "to": "tracker_meshnet_tracker_server_trackerhandler_read_hive_authenticated_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_registry_gossip", "to": "tracker_meshnet_tracker_server_trackerhandler_read_hive_authenticated_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_stats_gossip", "to": "tracker_meshnet_tracker_server_trackerhandler_read_hive_authenticated_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_account_key_revoke", "to": "tracker_meshnet_tracker_server_trackerhandler_read_json_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_account_profile", "to": "tracker_meshnet_tracker_server_trackerhandler_read_json_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_account_topup", "to": "tracker_meshnet_tracker_server_trackerhandler_read_json_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_auth_login", "to": "tracker_meshnet_tracker_server_trackerhandler_read_json_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_auth_register", "to": "tracker_meshnet_tracker_server_trackerhandler_read_json_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_benchmark_hop_penalty", "to": "tracker_meshnet_tracker_server_trackerhandler_read_json_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_billing_forfeit", "to": "tracker_meshnet_tracker_server_trackerhandler_read_json_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_gossip", "to": "tracker_meshnet_tracker_server_trackerhandler_read_json_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_model_coverage_vote", "to": "tracker_meshnet_tracker_server_trackerhandler_read_json_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_model_load_request", "to": "tracker_meshnet_tracker_server_trackerhandler_read_json_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_raft_append", "to": "tracker_meshnet_tracker_server_trackerhandler_read_json_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_raft_vote", "to": "tracker_meshnet_tracker_server_trackerhandler_read_json_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_register", "to": "tracker_meshnet_tracker_server_trackerhandler_read_json_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_tests_run", "to": "tracker_meshnet_tracker_server_trackerhandler_read_json_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_toploc_calibration_run", "to": "tracker_meshnet_tracker_server_trackerhandler_read_json_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_wallet_register", "to": "tracker_meshnet_tracker_server_trackerhandler_read_json_body", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_assign", "to": "tracker_meshnet_tracker_server_trackerhandler_purge_expired_nodes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_benchmark_hop_penalty", "to": "tracker_meshnet_tracker_server_trackerhandler_purge_expired_nodes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_heartbeat", "to": "tracker_meshnet_tracker_server_trackerhandler_purge_expired_nodes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_model_load_request", "to": "tracker_meshnet_tracker_server_trackerhandler_purge_expired_nodes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_model_speed", "to": "tracker_meshnet_tracker_server_trackerhandler_purge_expired_nodes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_models", "to": "tracker_meshnet_tracker_server_trackerhandler_purge_expired_nodes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_network_assign", "to": "tracker_meshnet_tracker_server_trackerhandler_purge_expired_nodes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_network_map", "to": "tracker_meshnet_tracker_server_trackerhandler_purge_expired_nodes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_trackerhandler_purge_expired_nodes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_register", "to": "tracker_meshnet_tracker_server_trackerhandler_purge_expired_nodes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_route", "to": "tracker_meshnet_tracker_server_trackerhandler_purge_expired_nodes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_routes", "to": "tracker_meshnet_tracker_server_trackerhandler_purge_expired_nodes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_routing", "to": "tracker_meshnet_tracker_server_trackerhandler_purge_expired_nodes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_toploc_calibration_run", "to": "tracker_meshnet_tracker_server_trackerhandler_purge_expired_nodes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_tracker_nodes", "to": "tracker_meshnet_tracker_server_trackerhandler_purge_expired_nodes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_post", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_account_key_create", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_post", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_account_key_revoke", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_post", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_account_profile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_post", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_account_topup", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_post", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_accounts_gossip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_post", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_auth_login", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_post", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_auth_logout", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_post", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_auth_register", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_post", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_benchmark_hop_penalty", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_post", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_billing_forfeit", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_post", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_billing_gossip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_post", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_gossip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_post", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_heartbeat", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_post", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_model_coverage_vote", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_post", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_model_load_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_post", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_post", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_request_cancel", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_post", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_raft_append", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_post", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_raft_vote", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_post", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_register", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_post", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_registry_gossip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_post", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_stats_gossip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_post", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_tests_run", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_post", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_toploc_calibration_run", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_post", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_wallet_register", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_get", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_account_me", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_get", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_account_usage", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_get", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_admin_accounts", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_get", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_assign", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_get", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_benchmark_results", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_get", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_billing_settlements", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_get", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_billing_summary", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_get", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_console", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_get", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_coverage", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_get", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_dashboard", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_get", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_favicon", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_get", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_hf_pricing_history", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_get", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_model_files_download", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_get", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_model_speed", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_get", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_models", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_get", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_network_assign", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_get", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_network_map", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_get", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_raft_status", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_get", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_registry_wallets", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_get", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_route", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_get", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_routes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_get", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_routing", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_get", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_stats", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_get", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_tests_list", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_get", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_tests_status", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_get", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_toploc_calibration_results", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_do_get", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_tracker_nodes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_3367", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_tracker_nodes", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_3501", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_trackerhandler_bill_completed", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_trackerhandler_finalize_proxy_cancel", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_trackerhandler_record_observed_throughput", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_trackerhandler_record_validation_event", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_trackerhandler_send_relayed_response", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_trackerhandler_stream_relayed_frames", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_proxy_chat", "to": "tracker_meshnet_tracker_server_trackerserver_start", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_4236", "to": "tracker_meshnet_tracker_server_trackerhandler_record_observed_throughput", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_finalize_proxy_cancel", "to": "tracker_meshnet_tracker_server_trackerhandler_record_observed_throughput", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_stream_relayed_frames", "to": "tracker_meshnet_tracker_server_trackerhandler_record_observed_throughput", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_4317", "to": "tracker_meshnet_tracker_server_trackerhandler_bill_completed", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_finalize_proxy_cancel", "to": "tracker_meshnet_tracker_server_trackerhandler_bill_completed", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_stream_relayed_frames", "to": "tracker_meshnet_tracker_server_trackerhandler_bill_completed", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_4370", "to": "tracker_meshnet_tracker_server_trackerhandler_stream_relayed_frames", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_stream_relayed_frames", "to": "tracker_meshnet_tracker_server_trackerhandler_finalize_proxy_cancel", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_register", "to": "tracker_meshnet_tracker_server_trackerserver_start", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_4922", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_model_coverage_vote", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_4973", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_dashboard", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_dashboard", "to": "tracker_meshnet_tracker_server_trackerhandler_serve_package_asset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_4978", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_favicon", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_favicon", "to": "tracker_meshnet_tracker_server_trackerhandler_serve_package_asset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_5067", "to": "tracker_meshnet_tracker_server_trackerhandler_test_runner_or_reject", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_tests_list", "to": "tracker_meshnet_tracker_server_trackerhandler_test_runner_or_reject", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_tests_run", "to": "tracker_meshnet_tracker_server_trackerhandler_test_runner_or_reject", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_tests_status", "to": "tracker_meshnet_tracker_server_trackerhandler_test_runner_or_reject", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_tests_list", "to": "tracker_meshnet_tracker_server_py_parseresult", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_account_usage", "to": "tracker_meshnet_tracker_server_py_parseresult", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_assign", "to": "tracker_meshnet_tracker_server_py_parseresult", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_hf_pricing_history", "to": "tracker_meshnet_tracker_server_py_parseresult", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_model_files_download", "to": "tracker_meshnet_tracker_server_py_parseresult", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_model_speed", "to": "tracker_meshnet_tracker_server_py_parseresult", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_network_assign", "to": "tracker_meshnet_tracker_server_py_parseresult", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_route", "to": "tracker_meshnet_tracker_server_py_parseresult", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_routes", "to": "tracker_meshnet_tracker_server_py_parseresult", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_routing", "to": "tracker_meshnet_tracker_server_py_parseresult", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_tests_run", "to": "tracker_meshnet_tracker_server_trackerserver_start", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_5163", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_billing_forfeit", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_5201", "to": "tracker_meshnet_tracker_server_trackerhandler_session_account", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_account_key_create", "to": "tracker_meshnet_tracker_server_trackerhandler_session_account", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_account_key_revoke", "to": "tracker_meshnet_tracker_server_trackerhandler_session_account", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_account_me", "to": "tracker_meshnet_tracker_server_trackerhandler_session_account", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_account_profile", "to": "tracker_meshnet_tracker_server_trackerhandler_session_account", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_account_topup", "to": "tracker_meshnet_tracker_server_trackerhandler_session_account", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_account_usage", "to": "tracker_meshnet_tracker_server_trackerhandler_session_account", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_admin_accounts", "to": "tracker_meshnet_tracker_server_trackerhandler_session_account", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_account_key_create", "to": "tracker_meshnet_tracker_server_trackerhandler_require_accounts", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_account_key_revoke", "to": "tracker_meshnet_tracker_server_trackerhandler_require_accounts", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_account_me", "to": "tracker_meshnet_tracker_server_trackerhandler_require_accounts", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_account_profile", "to": "tracker_meshnet_tracker_server_trackerhandler_require_accounts", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_account_topup", "to": "tracker_meshnet_tracker_server_trackerhandler_require_accounts", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_account_usage", "to": "tracker_meshnet_tracker_server_trackerhandler_require_accounts", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_admin_accounts", "to": "tracker_meshnet_tracker_server_trackerhandler_require_accounts", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_auth_login", "to": "tracker_meshnet_tracker_server_trackerhandler_require_accounts", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_auth_logout", "to": "tracker_meshnet_tracker_server_trackerhandler_require_accounts", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_auth_register", "to": "tracker_meshnet_tracker_server_trackerhandler_require_accounts", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_5279", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_account_me", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_5303", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_account_usage", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_5373", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_account_topup", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_5426", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_admin_accounts", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_5479", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_wallet_register", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_wallet_register", "to": "tracker_meshnet_tracker_wallet_proof_binding_message", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_wallet_register", "to": "tracker_meshnet_tracker_wallet_proof_verify_wallet_signature", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_5530", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_benchmark_hop_penalty", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_5638", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_toploc_calibration_run", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_toploc_calibration_run", "to": "tracker_meshnet_tracker_server_trackerhandler_toploc_calibration_gate_min_hardware_profiles", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_toploc_calibration_run", "to": "tracker_meshnet_tracker_server_trackerhandler_verify_node_toploc_calibration", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_toploc_calibration_results", "to": "tracker_meshnet_tracker_server_trackerhandler_toploc_calibration_gate_min_hardware_profiles", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_5756", "to": "tracker_meshnet_tracker_server_trackerhandler_verify_node_toploc_calibration", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_verify_node_toploc_calibration", "to": "validator_meshnet_validator_audit_toplocproofclaim_from_mapping", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_verify_node_toploc_calibration", "to": "validator_meshnet_validator_audit_verify_activation_proofs_detailed", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_rationale_5826", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_hf_pricing_history", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_5838", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_assign", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_assign", "to": "tracker_meshnet_tracker_server_trackerhandler_model_sources", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerhandler_handle_network_assign", "to": "tracker_meshnet_tracker_server_trackerhandler_model_sources", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_6073", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_network_assign", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_6379", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_routing", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_6435", "to": "tracker_meshnet_tracker_server_trackerhandler_handle_model_speed", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_6546", "to": "tracker_meshnet_tracker_server_trackerserver", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "tracker_meshnet_tracker_server_trackerserver_certify_recipe", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "tracker_meshnet_tracker_server_trackerserver_deposit_loop", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "tracker_meshnet_tracker_server_trackerserver_embedded_relay_status", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "tracker_meshnet_tracker_server_trackerserver_hf_pricing_loop", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "tracker_meshnet_tracker_server_trackerserver_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "tracker_meshnet_tracker_server_trackerserver_push_to_peers", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "tracker_meshnet_tracker_server_trackerserver_raft_apply", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "tracker_meshnet_tracker_server_trackerserver_rebalance_loop", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "tracker_meshnet_tracker_server_trackerserver_save_stats_once", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "tracker_meshnet_tracker_server_trackerserver_send_settlement", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "tracker_meshnet_tracker_server_trackerserver_settlement_loop", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "tracker_meshnet_tracker_server_trackerserver_start", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "tracker_meshnet_tracker_server_trackerserver_start_embedded_relay", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "tracker_meshnet_tracker_server_trackerserver_stats_loop", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "tracker_meshnet_tracker_server_trackerserver_stop", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "tracker_meshnet_tracker_test_runner_testrunmanager", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "tracker_meshnet_tracker_test_runner_testrunnererror", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerserver", "to": "validator_meshnet_validator_audit_toplocproofclaim", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_init", "to": "tracker_meshnet_tracker_test_runner_testrunmanager", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_6740", "to": "tracker_meshnet_tracker_server_trackerserver_certify_recipe", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_6814", "to": "tracker_meshnet_tracker_server_trackerserver_start_embedded_relay", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_start", "to": "tracker_meshnet_tracker_server_trackerserver_start_embedded_relay", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_start_embedded_relay", "to": "tracker_meshnet_tracker_server_trackerserver_embedded_relay_status", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_6938", "to": "tracker_meshnet_tracker_server_trackerserver_settlement_loop", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_settlement_loop", "to": "tracker_meshnet_tracker_server_trackerserver_send_settlement", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_7012", "to": "tracker_meshnet_tracker_server_trackerserver_deposit_loop", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_7045", "to": "tracker_meshnet_tracker_server_trackerserver_hf_pricing_loop", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_7094", "to": "tracker_meshnet_tracker_server_trackerserver_raft_apply", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_7170", "to": "tracker_meshnet_tracker_server_trackerserver_push_to_peers", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_stats_loop", "to": "tracker_meshnet_tracker_server_trackerserver_push_to_peers", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_7187", "to": "tracker_meshnet_tracker_server_trackerserver_save_stats_once", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_trackerserver_stats_loop", "to": "tracker_meshnet_tracker_server_trackerserver_save_stats_once", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_server_rationale_7209", "to": "tracker_meshnet_tracker_server_trackerserver_stats_loop", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner", "to": "tracker_meshnet_tracker_test_runner_collectionerror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner", "to": "tracker_meshnet_tracker_test_runner_discover_repo_root", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner", "to": "tracker_meshnet_tracker_test_runner_function_metadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner", "to": "tracker_meshnet_tracker_test_runner_real_inference_enabled", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner", "to": "tracker_meshnet_tracker_test_runner_runinprogresserror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner", "to": "tracker_meshnet_tracker_test_runner_test_python", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner", "to": "tracker_meshnet_tracker_test_runner_testrunmanager", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner", "to": "tracker_meshnet_tracker_test_runner_testrunnererror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner", "to": "tracker_meshnet_tracker_test_runner_unknowntargeterror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_rationale_1", "to": "tracker_meshnet_tracker_test_runner", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_collectionerror", "to": "tracker_meshnet_tracker_test_runner_testrunnererror", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_rationale_105", "to": "tracker_meshnet_tracker_test_runner_testrunnererror", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_runinprogresserror", "to": "tracker_meshnet_tracker_test_runner_testrunnererror", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunnererror", "to": "tracker_meshnet_tracker_test_runner_py_exception", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_unknowntargeterror", "to": "tracker_meshnet_tracker_test_runner_testrunnererror", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager_start", "to": "tracker_meshnet_tracker_test_runner_unknowntargeterror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager_start", "to": "tracker_meshnet_tracker_test_runner_runinprogresserror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager_collect", "to": "tracker_meshnet_tracker_test_runner_collectionerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_discover_repo_root", "to": "tracker_meshnet_tracker_test_runner_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_rationale_123", "to": "tracker_meshnet_tracker_test_runner_discover_repo_root", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager_init", "to": "tracker_meshnet_tracker_test_runner_discover_repo_root", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_function_metadata", "to": "tracker_meshnet_tracker_test_runner_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_test_python", "to": "tracker_meshnet_tracker_test_runner_py_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager_init", "to": "tracker_meshnet_tracker_test_runner_py_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager_test_metadata", "to": "tracker_meshnet_tracker_test_runner_py_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager_collect", "to": "tracker_meshnet_tracker_test_runner_real_inference_enabled", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager_suites", "to": "tracker_meshnet_tracker_test_runner_real_inference_enabled", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_rationale_142", "to": "tracker_meshnet_tracker_test_runner_test_python", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager_collect", "to": "tracker_meshnet_tracker_test_runner_test_python", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager_start", "to": "tracker_meshnet_tracker_test_runner_test_python", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_rationale_159", "to": "tracker_meshnet_tracker_test_runner_function_metadata", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager_test_metadata", "to": "tracker_meshnet_tracker_test_runner_function_metadata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_rationale_189", "to": "tracker_meshnet_tracker_test_runner_testrunmanager", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager", "to": "tracker_meshnet_tracker_test_runner_testrunmanager_collect", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager", "to": "tracker_meshnet_tracker_test_runner_testrunmanager_collection_snapshot_locked", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager", "to": "tracker_meshnet_tracker_test_runner_testrunmanager_drain", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager", "to": "tracker_meshnet_tracker_test_runner_testrunmanager_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager", "to": "tracker_meshnet_tracker_test_runner_testrunmanager_shutdown", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager", "to": "tracker_meshnet_tracker_test_runner_testrunmanager_start", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager", "to": "tracker_meshnet_tracker_test_runner_testrunmanager_status", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager", "to": "tracker_meshnet_tracker_test_runner_testrunmanager_status_locked", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager", "to": "tracker_meshnet_tracker_test_runner_testrunmanager_suites", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager", "to": "tracker_meshnet_tracker_test_runner_testrunmanager_test_metadata", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager", "to": "tracker_meshnet_tracker_test_runner_testrunmanager_wait", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager_init", "to": "deque", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_rationale_216", "to": "tracker_meshnet_tracker_test_runner_testrunmanager_suites", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager_collection_snapshot_locked", "to": "tracker_meshnet_tracker_test_runner_testrunmanager_suites", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager_start", "to": "tracker_meshnet_tracker_test_runner_testrunmanager_suites", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_rationale_227", "to": "tracker_meshnet_tracker_test_runner_testrunmanager_collect", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager_collect", "to": "tracker_meshnet_tracker_test_runner_testrunmanager_collection_snapshot_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager_collect", "to": "tracker_meshnet_tracker_test_runner_testrunmanager_test_metadata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_rationale_315", "to": "tracker_meshnet_tracker_test_runner_testrunmanager_start", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager_start", "to": "deque", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager_start", "to": "popen", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager_start", "to": "tracker_meshnet_tracker_test_runner_testrunmanager_status_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager_drain", "to": "deque", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager_wait", "to": "popen", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_testrunmanager_status", "to": "tracker_meshnet_tracker_test_runner_testrunmanager_status_locked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_test_runner_rationale_441", "to": "tracker_meshnet_tracker_test_runner_testrunmanager_shutdown", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_wallet_proof", "to": "tracker_meshnet_tracker_wallet_proof_b58decode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_wallet_proof", "to": "tracker_meshnet_tracker_wallet_proof_binding_message", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_wallet_proof", "to": "tracker_meshnet_tracker_wallet_proof_verify_wallet_signature", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_wallet_proof_rationale_1", "to": "tracker_meshnet_tracker_wallet_proof", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_wallet_proof_rationale_22", "to": "tracker_meshnet_tracker_wallet_proof_b58decode", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_wallet_proof_verify_wallet_signature", "to": "tracker_meshnet_tracker_wallet_proof_b58decode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_wallet_proof_rationale_35", "to": "tracker_meshnet_tracker_wallet_proof_binding_message", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tracker_meshnet_tracker_wallet_proof_rationale_40", "to": "tracker_meshnet_tracker_wallet_proof_verify_wallet_signature", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init", "to": "validator_meshnet_validator_audit", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init", "to": "validator_meshnet_validator_audit_toplocauditconfig", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init", "to": "validator_meshnet_validator_audit_toplocproofclaim", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init", "to": "validator_meshnet_validator_audit_toplocverificationresult", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init", "to": "validator_meshnet_validator_audit_verify_activation_proofs", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init", "to": "validator_meshnet_validator_audit_verify_activation_proofs_detailed", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init", "to": "validator_meshnet_validator_init_auditresult", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init", "to": "validator_meshnet_validator_init_event_mapping", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init", "to": "validator_meshnet_validator_init_event_value", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init", "to": "validator_meshnet_validator_init_final_text_node", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init", "to": "validator_meshnet_validator_init_first_divergent_hop", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init", "to": "validator_meshnet_validator_init_hop_commitments_from_event", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init", "to": "validator_meshnet_validator_init_hopcommitment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init", "to": "validator_meshnet_validator_init_mapping_value", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init", "to": "validator_meshnet_validator_init_outputs_match", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init", "to": "validator_meshnet_validator_init_parse_float", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init", "to": "validator_meshnet_validator_init_post_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init", "to": "validator_meshnet_validator_init_route_wallets", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init", "to": "validator_meshnet_validator_init_toploc_audit_from_event", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init", "to": "validator_meshnet_validator_init_validatorprocess", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init", "to": "validator_meshnet_validator_sampling", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init", "to": "validator_meshnet_validator_sampling_adaptiveauditsampler", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init", "to": "validator_meshnet_validator_sampling_auditrateconfig", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init", "to": "validator_meshnet_validator_tripwire", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init", "to": "validator_meshnet_validator_tripwire_detect_output_tripwire", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_rationale_1", "to": "validator_meshnet_validator_init", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_rationale_25", "to": "validator_meshnet_validator_init_validatorprocess", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess", "to": "validator_meshnet_validator_audit_toplocauditconfig", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "validator_meshnet_validator_init_validatorprocess", "to": "validator_meshnet_validator_audit_toplocproofclaim", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "validator_meshnet_validator_init_validatorprocess", "to": "validator_meshnet_validator_audit_toplocverificationresult", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "validator_meshnet_validator_init_validatorprocess", "to": "validator_meshnet_validator_init_validatorprocess_commitment_expired", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess", "to": "validator_meshnet_validator_init_validatorprocess_event_with_on_demand_commitments", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess", "to": "validator_meshnet_validator_init_validatorprocess_fetch_hop_commitment", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess", "to": "validator_meshnet_validator_init_validatorprocess_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess", "to": "validator_meshnet_validator_init_validatorprocess_record_clean_audit", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess", "to": "validator_meshnet_validator_init_validatorprocess_run_loop", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess", "to": "validator_meshnet_validator_init_validatorprocess_run_reference", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess", "to": "validator_meshnet_validator_init_validatorprocess_run_teacher_forced_prefill", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess", "to": "validator_meshnet_validator_init_validatorprocess_run_teacher_forced_prefill_hops", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess", "to": "validator_meshnet_validator_init_validatorprocess_should_sample", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess", "to": "validator_meshnet_validator_init_validatorprocess_slash_node", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess", "to": "validator_meshnet_validator_init_validatorprocess_start", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess", "to": "validator_meshnet_validator_init_validatorprocess_stop", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess", "to": "validator_meshnet_validator_init_validatorprocess_validate_event", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess", "to": "validator_meshnet_validator_init_validatorprocess_validate_once", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess", "to": "validator_meshnet_validator_sampling_adaptiveauditsampler", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "validator_meshnet_validator_init_validatorprocess", "to": "validator_meshnet_validator_sampling_auditrateconfig", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "validator_meshnet_validator_init_validatorprocess_init", "to": "validator_meshnet_validator_audit_toplocauditconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_init", "to": "validator_meshnet_validator_init_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_init", "to": "validator_meshnet_validator_sampling_adaptiveauditsampler", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_event_mapping", "to": "validator_meshnet_validator_init_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_event_value", "to": "validator_meshnet_validator_init_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_first_divergent_hop", "to": "validator_meshnet_validator_init_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_hop_commitments_from_event", "to": "validator_meshnet_validator_init_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_mapping_value", "to": "validator_meshnet_validator_init_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_route_wallets", "to": "validator_meshnet_validator_init_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_toploc_audit_from_event", "to": "validator_meshnet_validator_init_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_commitment_expired", "to": "validator_meshnet_validator_init_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_event_with_on_demand_commitments", "to": "validator_meshnet_validator_init_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_fetch_hop_commitment", "to": "validator_meshnet_validator_init_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_record_clean_audit", "to": "validator_meshnet_validator_init_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_run_teacher_forced_prefill", "to": "validator_meshnet_validator_init_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_run_teacher_forced_prefill_hops", "to": "validator_meshnet_validator_init_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_should_sample", "to": "validator_meshnet_validator_init_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_slash_node", "to": "validator_meshnet_validator_init_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_validate_event", "to": "validator_meshnet_validator_init_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_validate_once", "to": "validator_meshnet_validator_init_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_rationale_74", "to": "validator_meshnet_validator_init_validatorprocess_validate_once", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_run_loop", "to": "validator_meshnet_validator_init_validatorprocess_validate_once", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_validate_once", "to": "validator_meshnet_validator_init_validatorprocess_record_clean_audit", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_validate_once", "to": "validator_meshnet_validator_init_validatorprocess_should_sample", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_validate_once", "to": "validator_meshnet_validator_init_validatorprocess_slash_node", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_validate_once", "to": "validator_meshnet_validator_init_validatorprocess_validate_event", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_rationale_97", "to": "validator_meshnet_validator_init_validatorprocess_should_sample", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_should_sample", "to": "validator_meshnet_validator_init_event_value", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_should_sample", "to": "validator_meshnet_validator_init_route_wallets", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_should_sample", "to": "validator_meshnet_validator_tripwire_detect_output_tripwire", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_run_reference", "to": "validator_meshnet_validator_init_post_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_validate_event", "to": "validator_meshnet_validator_init_validatorprocess_run_reference", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_validate_event", "to": "validator_meshnet_validator_init_auditresult", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_validate_event", "to": "validator_meshnet_validator_init_event_value", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_validate_event", "to": "validator_meshnet_validator_init_final_text_node", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_validate_event", "to": "validator_meshnet_validator_init_first_divergent_hop", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_validate_event", "to": "validator_meshnet_validator_init_hop_commitments_from_event", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_validate_event", "to": "validator_meshnet_validator_init_outputs_match", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_validate_event", "to": "validator_meshnet_validator_init_validatorprocess_commitment_expired", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_validate_event", "to": "validator_meshnet_validator_init_validatorprocess_event_with_on_demand_commitments", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_validate_event", "to": "validator_meshnet_validator_init_validatorprocess_run_teacher_forced_prefill", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_validate_event", "to": "validator_meshnet_validator_init_validatorprocess_run_teacher_forced_prefill_hops", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_rationale_208", "to": "validator_meshnet_validator_init_validatorprocess_event_with_on_demand_commitments", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_event_with_on_demand_commitments", "to": "validator_meshnet_validator_init_event_value", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_event_with_on_demand_commitments", "to": "validator_meshnet_validator_init_mapping_value", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_event_with_on_demand_commitments", "to": "validator_meshnet_validator_init_validatorprocess_fetch_hop_commitment", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_fetch_hop_commitment", "to": "validator_meshnet_validator_init_event_value", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_fetch_hop_commitment", "to": "validator_meshnet_validator_init_post_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_commitment_expired", "to": "validator_meshnet_validator_init_event_value", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_run_teacher_forced_prefill", "to": "validator_meshnet_validator_audit_toplocproofclaim", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_run_teacher_forced_prefill", "to": "validator_meshnet_validator_init_post_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_rationale_305", "to": "validator_meshnet_validator_init_validatorprocess_run_teacher_forced_prefill_hops", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_run_teacher_forced_prefill_hops", "to": "validator_meshnet_validator_init_post_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_rationale_329", "to": "validator_meshnet_validator_init_validatorprocess_record_clean_audit", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_validatorprocess_record_clean_audit", "to": "validator_meshnet_validator_init_route_wallets", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_rationale_376", "to": "validator_meshnet_validator_init_route_wallets", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_route_wallets", "to": "validator_meshnet_validator_init_event_value", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_rationale_389", "to": "validator_meshnet_validator_init_final_text_node", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_auditresult", "to": "validator_meshnet_validator_audit_toplocauditconfig", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "validator_meshnet_validator_init_auditresult", "to": "validator_meshnet_validator_audit_toplocproofclaim", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "validator_meshnet_validator_init_auditresult", "to": "validator_meshnet_validator_audit_toplocverificationresult", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "validator_meshnet_validator_init_auditresult", "to": "validator_meshnet_validator_init_auditresult_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_auditresult", "to": "validator_meshnet_validator_sampling_adaptiveauditsampler", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "validator_meshnet_validator_init_auditresult", "to": "validator_meshnet_validator_sampling_auditrateconfig", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "validator_meshnet_validator_init_first_divergent_hop", "to": "validator_meshnet_validator_init_hopcommitment", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_hop_commitments_from_event", "to": "validator_meshnet_validator_init_hopcommitment", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_hopcommitment", "to": "validator_meshnet_validator_audit_toplocauditconfig", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "validator_meshnet_validator_init_hopcommitment", "to": "validator_meshnet_validator_audit_toplocproofclaim", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "validator_meshnet_validator_init_hopcommitment", "to": "validator_meshnet_validator_audit_toplocverificationresult", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "validator_meshnet_validator_init_hopcommitment", "to": "validator_meshnet_validator_init_hopcommitment_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_hopcommitment", "to": "validator_meshnet_validator_sampling_adaptiveauditsampler", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "validator_meshnet_validator_init_hopcommitment", "to": "validator_meshnet_validator_sampling_auditrateconfig", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "validator_meshnet_validator_init_rationale_413", "to": "validator_meshnet_validator_init_hopcommitment", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_hopcommitment_init", "to": "validator_meshnet_validator_audit_toplocproofclaim", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_hop_commitments_from_event", "to": "validator_meshnet_validator_audit_toplocproofclaim_from_mapping", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_hop_commitments_from_event", "to": "validator_meshnet_validator_init_event_value", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_hop_commitments_from_event", "to": "validator_meshnet_validator_init_mapping_value", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_hop_commitments_from_event", "to": "validator_meshnet_validator_init_toploc_audit_from_event", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_rationale_423", "to": "validator_meshnet_validator_init_hop_commitments_from_event", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_first_divergent_hop", "to": "validator_meshnet_validator_audit_toplocauditconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_first_divergent_hop", "to": "validator_meshnet_validator_audit_verify_activation_proofs", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_rationale_461", "to": "validator_meshnet_validator_init_first_divergent_hop", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_toploc_audit_from_event", "to": "validator_meshnet_validator_audit_toplocproofclaim", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_toploc_audit_from_event", "to": "validator_meshnet_validator_audit_toplocproofclaim_from_mapping", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_toploc_audit_from_event", "to": "validator_meshnet_validator_init_event_mapping", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_toploc_audit_from_event", "to": "validator_meshnet_validator_init_event_value", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_toploc_audit_from_event", "to": "validator_meshnet_validator_init_mapping_value", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_event_mapping", "to": "validator_meshnet_validator_init_event_value", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_init_outputs_match", "to": "validator_meshnet_validator_init_parse_float", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit", "to": "validator_meshnet_validator_audit_build_activation_proofs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit", "to": "validator_meshnet_validator_audit_call_toploc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit", "to": "validator_meshnet_validator_audit_chunk_field", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit", "to": "validator_meshnet_validator_audit_extract_divergence", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit", "to": "validator_meshnet_validator_audit_load_toploc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit", "to": "validator_meshnet_validator_audit_proof_encoding", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit", "to": "validator_meshnet_validator_audit_toplocauditconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit", "to": "validator_meshnet_validator_audit_toplocproofclaim", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit", "to": "validator_meshnet_validator_audit_toplocverificationresult", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit", "to": "validator_meshnet_validator_audit_verify_activation_proofs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit", "to": "validator_meshnet_validator_audit_verify_activation_proofs_detailed", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_rationale_1", "to": "validator_meshnet_validator_audit", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_build_activation_proofs", "to": "validator_meshnet_validator_audit_toplocauditconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_rationale_15", "to": "validator_meshnet_validator_audit_toplocauditconfig", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_verify_activation_proofs", "to": "validator_meshnet_validator_audit_toplocauditconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_verify_activation_proofs_detailed", "to": "validator_meshnet_validator_audit_toplocauditconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_build_activation_proofs", "to": "validator_meshnet_validator_audit_toplocproofclaim", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_rationale_31", "to": "validator_meshnet_validator_audit_toplocproofclaim", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_toplocproofclaim", "to": "validator_meshnet_validator_audit_toplocproofclaim_as_mapping", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_toplocproofclaim", "to": "validator_meshnet_validator_audit_toplocproofclaim_from_mapping", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_verify_activation_proofs", "to": "validator_meshnet_validator_audit_toplocproofclaim", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_verify_activation_proofs_detailed", "to": "validator_meshnet_validator_audit_toplocproofclaim", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_toplocproofclaim_from_mapping", "to": "validator_meshnet_validator_audit_proof_encoding", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_toplocproofclaim_from_mapping", "to": "validator_meshnet_validator_audit_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_build_activation_proofs", "to": "validator_meshnet_validator_audit_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_call_toploc", "to": "validator_meshnet_validator_audit_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_chunk_field", "to": "validator_meshnet_validator_audit_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_extract_divergence", "to": "validator_meshnet_validator_audit_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_load_toploc", "to": "validator_meshnet_validator_audit_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_toplocproofclaim_as_mapping", "to": "validator_meshnet_validator_audit_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_verify_activation_proofs", "to": "validator_meshnet_validator_audit_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_verify_activation_proofs_detailed", "to": "validator_meshnet_validator_audit_py_any", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_build_activation_proofs", "to": "validator_meshnet_validator_audit_call_toploc", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_build_activation_proofs", "to": "validator_meshnet_validator_audit_load_toploc", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_rationale_71", "to": "validator_meshnet_validator_audit_build_activation_proofs", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_rationale_96", "to": "validator_meshnet_validator_audit_toplocverificationresult", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_verify_activation_proofs_detailed", "to": "validator_meshnet_validator_audit_toplocverificationresult", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_rationale_123", "to": "validator_meshnet_validator_audit_verify_activation_proofs", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_verify_activation_proofs", "to": "validator_meshnet_validator_audit_verify_activation_proofs_detailed", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_rationale_136", "to": "validator_meshnet_validator_audit_verify_activation_proofs_detailed", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_verify_activation_proofs_detailed", "to": "validator_meshnet_validator_audit_call_toploc", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_verify_activation_proofs_detailed", "to": "validator_meshnet_validator_audit_extract_divergence", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_verify_activation_proofs_detailed", "to": "validator_meshnet_validator_audit_load_toploc", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_extract_divergence", "to": "validator_meshnet_validator_audit_chunk_field", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_rationale_174", "to": "validator_meshnet_validator_audit_extract_divergence", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_audit_proof_encoding", "to": "proofencoding", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_sampling", "to": "validator_meshnet_validator_sampling_adaptiveauditsampler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_sampling", "to": "validator_meshnet_validator_sampling_auditrateconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_sampling_rationale_1", "to": "validator_meshnet_validator_sampling", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_sampling_adaptiveauditsampler_init", "to": "validator_meshnet_validator_sampling_auditrateconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_sampling_auditrateconfig", "to": "validator_meshnet_validator_sampling_auditrateconfig_post_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_sampling_rationale_20", "to": "validator_meshnet_validator_sampling_auditrateconfig", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_sampling_adaptiveauditsampler", "to": "validator_meshnet_validator_sampling_adaptiveauditsampler_budget_scale", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_sampling_adaptiveauditsampler", "to": "validator_meshnet_validator_sampling_adaptiveauditsampler_effective_rate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_sampling_adaptiveauditsampler", "to": "validator_meshnet_validator_sampling_adaptiveauditsampler_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_sampling_adaptiveauditsampler", "to": "validator_meshnet_validator_sampling_adaptiveauditsampler_sample_rate_for", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_sampling_adaptiveauditsampler", "to": "validator_meshnet_validator_sampling_adaptiveauditsampler_should_audit", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_sampling_adaptiveauditsampler", "to": "validator_meshnet_validator_sampling_adaptiveauditsampler_wallet_base_rate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_sampling_rationale_44", "to": "validator_meshnet_validator_sampling_adaptiveauditsampler", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_sampling_adaptiveauditsampler_sample_rate_for", "to": "validator_meshnet_validator_sampling_adaptiveauditsampler_wallet_base_rate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_sampling_adaptiveauditsampler_should_audit", "to": "validator_meshnet_validator_sampling_adaptiveauditsampler_wallet_base_rate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_sampling_adaptiveauditsampler_sample_rate_for", "to": "validator_meshnet_validator_sampling_adaptiveauditsampler_effective_rate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_sampling_rationale_79", "to": "validator_meshnet_validator_sampling_adaptiveauditsampler_sample_rate_for", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_sampling_adaptiveauditsampler_should_audit", "to": "validator_meshnet_validator_sampling_adaptiveauditsampler_effective_rate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_sampling_adaptiveauditsampler_effective_rate", "to": "validator_meshnet_validator_sampling_adaptiveauditsampler_budget_scale", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_tripwire", "to": "validator_meshnet_validator_tripwire_detect_output_tripwire", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_tripwire_rationale_1", "to": "validator_meshnet_validator_tripwire", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "validator_meshnet_validator_tripwire_rationale_23", "to": "validator_meshnet_validator_tripwire_detect_output_tripwire", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}];
|
|
const LEGEND = [{"cid": 0, "color": "#4E79A7", "label": "Tracker Routing & Placement", "count": 91}, {"cid": 1, "color": "#F28E2B", "label": "Validator Proof Audits", "count": 87}, {"cid": 2, "color": "#E15759", "label": "Capability Admission", "count": 70}, {"cid": 3, "color": "#76B7B2", "label": "Shard Artifact Download", "count": 67}, {"cid": 4, "color": "#59A14F", "label": "PyTorch Shard Execution", "count": 59}, {"cid": 5, "color": "#EDC948", "label": "Native Shard Lifecycle", "count": 59}, {"cid": 6, "color": "#B07AA1", "label": "Tracker Operations & CLI", "count": 56}, {"cid": 7, "color": "#FF9DA7", "label": "Node Capability Reports", "count": 55}, {"cid": 8, "color": "#9C755F", "label": "Gateway Request Routing", "count": 55}, {"cid": 9, "color": "#BAB0AC", "label": "Activation Transport & Binary Frames", "count": 54}, {"cid": 10, "color": "#4E79A7", "label": "Tracker Capability Evaluation", "count": 53}, {"cid": 11, "color": "#F28E2B", "label": "Node Diagnostics", "count": 44}, {"cid": 12, "color": "#E15759", "label": "Relay Peer Registry", "count": 44}, {"cid": 13, "color": "#76B7B2", "label": "Native Worker Adapter", "count": 42}, {"cid": 14, "color": "#59A14F", "label": "KV Session Cache", "count": 41}, {"cid": 15, "color": "#EDC948", "label": "Performance Contracts", "count": 40}, {"cid": 16, "color": "#B07AA1", "label": "Route Session Benchmarks", "count": 39}, {"cid": 17, "color": "#FF9DA7", "label": "GLM Alpha Planning", "count": 38}, {"cid": 18, "color": "#9C755F", "label": "Tracker Admin & Network APIs", "count": 38}, {"cid": 19, "color": "#BAB0AC", "label": "Benchmark Recipe Drivers", "count": 36}, {"cid": 20, "color": "#4E79A7", "label": "Community 20", "count": 35}, {"cid": 21, "color": "#F28E2B", "label": "Community 21", "count": 33}, {"cid": 22, "color": "#E15759", "label": "Community 22", "count": 33}, {"cid": 23, "color": "#76B7B2", "label": "Community 23", "count": 32}, {"cid": 24, "color": "#59A14F", "label": "Community 24", "count": 32}, {"cid": 25, "color": "#EDC948", "label": "Community 25", "count": 31}, {"cid": 26, "color": "#B07AA1", "label": "Community 26", "count": 31}, {"cid": 27, "color": "#FF9DA7", "label": "Community 27", "count": 30}, {"cid": 28, "color": "#9C755F", "label": "Community 28", "count": 29}, {"cid": 29, "color": "#BAB0AC", "label": "Community 29", "count": 29}, {"cid": 30, "color": "#4E79A7", "label": "Community 30", "count": 29}, {"cid": 31, "color": "#F28E2B", "label": "Community 31", "count": 29}, {"cid": 32, "color": "#E15759", "label": "Community 32", "count": 28}, {"cid": 33, "color": "#76B7B2", "label": "Community 33", "count": 27}, {"cid": 34, "color": "#59A14F", "label": "Community 34", "count": 27}, {"cid": 35, "color": "#EDC948", "label": "Community 35", "count": 27}, {"cid": 36, "color": "#B07AA1", "label": "Community 36", "count": 27}, {"cid": 37, "color": "#FF9DA7", "label": "Community 37", "count": 26}, {"cid": 38, "color": "#9C755F", "label": "Community 38", "count": 26}, {"cid": 39, "color": "#BAB0AC", "label": "Community 39", "count": 26}, {"cid": 40, "color": "#4E79A7", "label": "Community 40", "count": 25}, {"cid": 41, "color": "#F28E2B", "label": "Community 41", "count": 24}, {"cid": 42, "color": "#E15759", "label": "Community 42", "count": 24}, {"cid": 43, "color": "#76B7B2", "label": "Community 43", "count": 24}, {"cid": 44, "color": "#59A14F", "label": "Community 44", "count": 24}, {"cid": 45, "color": "#EDC948", "label": "Community 45", "count": 23}, {"cid": 46, "color": "#B07AA1", "label": "Community 46", "count": 23}, {"cid": 47, "color": "#FF9DA7", "label": "Community 47", "count": 23}, {"cid": 48, "color": "#9C755F", "label": "Community 48", "count": 23}, {"cid": 49, "color": "#BAB0AC", "label": "Community 49", "count": 22}, {"cid": 50, "color": "#4E79A7", "label": "Community 50", "count": 21}, {"cid": 51, "color": "#F28E2B", "label": "Community 51", "count": 21}, {"cid": 52, "color": "#E15759", "label": "Community 52", "count": 20}, {"cid": 53, "color": "#76B7B2", "label": "Community 53", "count": 20}, {"cid": 54, "color": "#59A14F", "label": "Community 54", "count": 20}, {"cid": 55, "color": "#EDC948", "label": "Community 55", "count": 20}, {"cid": 56, "color": "#B07AA1", "label": "Community 56", "count": 19}, {"cid": 57, "color": "#FF9DA7", "label": "Community 57", "count": 18}, {"cid": 58, "color": "#9C755F", "label": "Community 58", "count": 17}, {"cid": 59, "color": "#BAB0AC", "label": "Community 59", "count": 17}, {"cid": 60, "color": "#4E79A7", "label": "Community 60", "count": 16}, {"cid": 61, "color": "#F28E2B", "label": "Community 61", "count": 16}, {"cid": 62, "color": "#E15759", "label": "Community 62", "count": 15}, {"cid": 63, "color": "#76B7B2", "label": "Community 63", "count": 15}, {"cid": 64, "color": "#59A14F", "label": "Community 64", "count": 15}, {"cid": 65, "color": "#EDC948", "label": "Community 65", "count": 15}, {"cid": 66, "color": "#B07AA1", "label": "Community 66", "count": 15}, {"cid": 67, "color": "#FF9DA7", "label": "Community 67", "count": 15}, {"cid": 68, "color": "#9C755F", "label": "Community 68", "count": 14}, {"cid": 69, "color": "#BAB0AC", "label": "Community 69", "count": 14}, {"cid": 70, "color": "#4E79A7", "label": "Community 70", "count": 14}, {"cid": 71, "color": "#F28E2B", "label": "Community 71", "count": 13}, {"cid": 72, "color": "#E15759", "label": "Community 72", "count": 13}, {"cid": 73, "color": "#76B7B2", "label": "Community 73", "count": 13}, {"cid": 74, "color": "#59A14F", "label": "Community 74", "count": 13}, {"cid": 75, "color": "#EDC948", "label": "Community 75", "count": 12}, {"cid": 76, "color": "#B07AA1", "label": "Community 76", "count": 12}, {"cid": 77, "color": "#FF9DA7", "label": "Community 77", "count": 11}, {"cid": 78, "color": "#9C755F", "label": "Community 78", "count": 11}, {"cid": 79, "color": "#BAB0AC", "label": "Community 79", "count": 11}, {"cid": 80, "color": "#4E79A7", "label": "Community 80", "count": 11}, {"cid": 81, "color": "#F28E2B", "label": "Community 81", "count": 11}, {"cid": 82, "color": "#E15759", "label": "Community 82", "count": 10}, {"cid": 83, "color": "#76B7B2", "label": "Community 83", "count": 10}, {"cid": 84, "color": "#59A14F", "label": "Community 84", "count": 10}, {"cid": 85, "color": "#EDC948", "label": "Community 85", "count": 9}, {"cid": 86, "color": "#B07AA1", "label": "Community 86", "count": 9}, {"cid": 87, "color": "#FF9DA7", "label": "Community 87", "count": 9}, {"cid": 88, "color": "#9C755F", "label": "Community 88", "count": 9}, {"cid": 89, "color": "#BAB0AC", "label": "Community 89", "count": 8}, {"cid": 90, "color": "#4E79A7", "label": "Community 90", "count": 8}, {"cid": 91, "color": "#F28E2B", "label": "Community 91", "count": 8}, {"cid": 92, "color": "#E15759", "label": "Community 92", "count": 7}, {"cid": 93, "color": "#76B7B2", "label": "Community 93", "count": 7}, {"cid": 94, "color": "#59A14F", "label": "Community 94", "count": 7}, {"cid": 95, "color": "#EDC948", "label": "Community 95", "count": 6}, {"cid": 96, "color": "#B07AA1", "label": "Community 96", "count": 6}, {"cid": 97, "color": "#FF9DA7", "label": "Community 97", "count": 5}, {"cid": 98, "color": "#9C755F", "label": "Community 98", "count": 5}, {"cid": 99, "color": "#BAB0AC", "label": "Community 99", "count": 4}, {"cid": 100, "color": "#4E79A7", "label": "Community 100", "count": 3}, {"cid": 101, "color": "#F28E2B", "label": "Community 101", "count": 3}, {"cid": 102, "color": "#E15759", "label": "Community 102", "count": 3}, {"cid": 103, "color": "#76B7B2", "label": "Community 103", "count": 2}, {"cid": 104, "color": "#59A14F", "label": "Community 104", "count": 2}, {"cid": 105, "color": "#EDC948", "label": "Community 105", "count": 2}, {"cid": 106, "color": "#B07AA1", "label": "Community 106", "count": 2}, {"cid": 107, "color": "#FF9DA7", "label": "Community 107", "count": 2}, {"cid": 108, "color": "#9C755F", "label": "Community 108", "count": 2}, {"cid": 109, "color": "#BAB0AC", "label": "Community 109", "count": 2}, {"cid": 110, "color": "#4E79A7", "label": "Community 110", "count": 2}, {"cid": 111, "color": "#F28E2B", "label": "Community 111", "count": 2}, {"cid": 112, "color": "#E15759", "label": "Community 112", "count": 2}, {"cid": 113, "color": "#76B7B2", "label": "Community 113", "count": 2}, {"cid": 114, "color": "#59A14F", "label": "Community 114", "count": 2}, {"cid": 115, "color": "#EDC948", "label": "Community 115", "count": 1}, {"cid": 116, "color": "#B07AA1", "label": "Community 116", "count": 1}, {"cid": 117, "color": "#FF9DA7", "label": "Community 117", "count": 1}, {"cid": 118, "color": "#9C755F", "label": "Community 118", "count": 1}, {"cid": 119, "color": "#BAB0AC", "label": "Community 119", "count": 1}, {"cid": 120, "color": "#4E79A7", "label": "Community 120", "count": 1}, {"cid": 121, "color": "#F28E2B", "label": "Community 121", "count": 1}, {"cid": 122, "color": "#E15759", "label": "Community 122", "count": 1}];
|
|
|
|
// HTML-escape helper — prevents XSS when injecting graph data into innerHTML
|
|
function esc(s) {
|
|
return String(s).replace(/&/g,'&').replace(/</g,'<').replace(/>/g,'>').replace(/"/g,'"').replace(/'/g,''');
|
|
}
|
|
|
|
// Build vis datasets
|
|
const nodesDS = new vis.DataSet(RAW_NODES.map(n => ({
|
|
id: n.id, label: n.label, color: n.color, size: n.size,
|
|
font: n.font, title: n.title,
|
|
_community: n.community, _community_name: n.community_name,
|
|
_source_file: n.source_file, _file_type: n.file_type, _degree: n.degree,
|
|
})));
|
|
|
|
const edgesDS = new vis.DataSet(RAW_EDGES.map((e, i) => ({
|
|
id: i, from: e.from, to: e.to,
|
|
label: '',
|
|
title: e.title,
|
|
dashes: e.dashes,
|
|
width: e.width,
|
|
color: e.color,
|
|
arrows: { to: { enabled: true, scaleFactor: 0.5 } },
|
|
})));
|
|
|
|
const container = document.getElementById('graph');
|
|
const network = new vis.Network(container, { nodes: nodesDS, edges: edgesDS }, {
|
|
physics: {
|
|
enabled: true,
|
|
solver: 'forceAtlas2Based',
|
|
forceAtlas2Based: {
|
|
gravitationalConstant: -60,
|
|
centralGravity: 0.005,
|
|
springLength: 120,
|
|
springConstant: 0.08,
|
|
damping: 0.4,
|
|
avoidOverlap: 0.8,
|
|
},
|
|
stabilization: { iterations: 200, fit: true },
|
|
},
|
|
interaction: {
|
|
hover: true,
|
|
tooltipDelay: 100,
|
|
hideEdgesOnDrag: true,
|
|
navigationButtons: false,
|
|
keyboard: false,
|
|
},
|
|
nodes: { shape: 'dot', borderWidth: 1.5 },
|
|
edges: { smooth: { type: 'continuous', roundness: 0.2 }, selectionWidth: 3 },
|
|
});
|
|
|
|
network.once('stabilizationIterationsDone', () => {
|
|
network.setOptions({ physics: { enabled: false } });
|
|
});
|
|
|
|
function showInfo(nodeId) {
|
|
const n = nodesDS.get(nodeId);
|
|
if (!n) return;
|
|
const neighborIds = network.getConnectedNodes(nodeId);
|
|
const neighborItems = neighborIds.map(nid => {
|
|
const nb = nodesDS.get(nid);
|
|
const color = nb ? nb.color.background : '#555';
|
|
return `<span class="neighbor-link" style="border-left-color:${esc(color)}" data-nid="${esc(nid)}">${esc(nb ? nb.label : nid)}</span>`;
|
|
}).join('');
|
|
document.getElementById('info-content').innerHTML = `
|
|
<div class="field"><b>${esc(n.label)}</b></div>
|
|
<div class="field">Type: ${esc(n._file_type || 'unknown')}</div>
|
|
<div class="field">Community: ${esc(n._community_name)}</div>
|
|
<div class="field">Source: ${esc(n._source_file || '-')}</div>
|
|
<div class="field">Degree: ${n._degree}</div>
|
|
${neighborIds.length ? `<div class="field" style="margin-top:8px;color:#aaa;font-size:11px">Neighbors (${neighborIds.length})</div><div id="neighbors-list">${neighborItems}</div>` : ''}
|
|
`;
|
|
}
|
|
|
|
function focusNode(nodeId) {
|
|
network.focus(nodeId, { scale: 1.4, animation: true });
|
|
network.selectNodes([nodeId]);
|
|
showInfo(nodeId);
|
|
}
|
|
|
|
// Neighbor links use a data attribute + one delegated listener rather than an
|
|
// inline onclick. A node id/label sourced from a document or a scraped URL
|
|
// (graphify add) can contain a double-quote; dropping the stringified id
|
|
// unescaped into a quoted onclick both broke every link and allowed a hostile
|
|
// source to inject an event handler into the local report (stored XSS, #1838).
|
|
// esc() on data-nid keeps the value inside the attribute; the listener reads it
|
|
// back verbatim. Bound to document so it survives the innerHTML rebuild that
|
|
// recreates #neighbors-list on each showInfo().
|
|
document.addEventListener('click', e => {
|
|
const el = e.target.closest('.neighbor-link');
|
|
if (el && el.dataset.nid !== undefined) focusNode(el.dataset.nid);
|
|
});
|
|
|
|
// Track hovered node — hover detection is more reliable than click params
|
|
let hoveredNodeId = null;
|
|
network.on('hoverNode', params => {
|
|
hoveredNodeId = params.node;
|
|
container.style.cursor = 'pointer';
|
|
});
|
|
network.on('blurNode', () => {
|
|
hoveredNodeId = null;
|
|
container.style.cursor = 'default';
|
|
});
|
|
container.addEventListener('click', () => {
|
|
if (hoveredNodeId !== null) {
|
|
showInfo(hoveredNodeId);
|
|
network.selectNodes([hoveredNodeId]);
|
|
}
|
|
});
|
|
network.on('click', params => {
|
|
if (params.nodes.length > 0) {
|
|
showInfo(params.nodes[0]);
|
|
} else if (hoveredNodeId === null) {
|
|
document.getElementById('info-content').innerHTML = '<span class="empty">Click a node to inspect it</span>';
|
|
}
|
|
});
|
|
|
|
const searchInput = document.getElementById('search');
|
|
const searchResults = document.getElementById('search-results');
|
|
searchInput.addEventListener('input', () => {
|
|
const q = searchInput.value.toLowerCase().trim();
|
|
searchResults.innerHTML = '';
|
|
if (!q) { searchResults.style.display = 'none'; return; }
|
|
const matches = RAW_NODES.filter(n => n.label.toLowerCase().includes(q)).slice(0, 20);
|
|
if (!matches.length) { searchResults.style.display = 'none'; return; }
|
|
searchResults.style.display = 'block';
|
|
matches.forEach(n => {
|
|
const el = document.createElement('div');
|
|
el.className = 'search-item';
|
|
el.textContent = n.label;
|
|
el.style.borderLeft = `3px solid ${n.color.background}`;
|
|
el.style.paddingLeft = '8px';
|
|
el.onclick = () => {
|
|
network.focus(n.id, { scale: 1.5, animation: true });
|
|
network.selectNodes([n.id]);
|
|
showInfo(n.id);
|
|
searchResults.style.display = 'none';
|
|
searchInput.value = '';
|
|
};
|
|
searchResults.appendChild(el);
|
|
});
|
|
});
|
|
document.addEventListener('click', e => {
|
|
if (!searchResults.contains(e.target) && e.target !== searchInput)
|
|
searchResults.style.display = 'none';
|
|
});
|
|
|
|
const hiddenCommunities = new Set();
|
|
|
|
const selectAllCb = document.getElementById('select-all-cb');
|
|
|
|
function updateSelectAllState() {
|
|
const total = LEGEND.length;
|
|
const hidden = hiddenCommunities.size;
|
|
selectAllCb.checked = hidden === 0;
|
|
selectAllCb.indeterminate = hidden > 0 && hidden < total;
|
|
}
|
|
|
|
function toggleAllCommunities(hide) {
|
|
document.querySelectorAll('.legend-item').forEach(item => {
|
|
hide ? item.classList.add('dimmed') : item.classList.remove('dimmed');
|
|
});
|
|
document.querySelectorAll('.legend-cb').forEach(cb => {
|
|
cb.checked = !hide;
|
|
});
|
|
LEGEND.forEach(c => {
|
|
if (hide) hiddenCommunities.add(c.cid); else hiddenCommunities.delete(c.cid);
|
|
});
|
|
const updates = RAW_NODES.map(n => ({ id: n.id, hidden: hide }));
|
|
nodesDS.update(updates);
|
|
updateSelectAllState();
|
|
}
|
|
|
|
const legendEl = document.getElementById('legend');
|
|
LEGEND.forEach(c => {
|
|
const item = document.createElement('div');
|
|
item.className = 'legend-item';
|
|
const cb = document.createElement('input');
|
|
cb.type = 'checkbox';
|
|
cb.className = 'legend-cb';
|
|
cb.checked = true;
|
|
cb.addEventListener('change', (e) => {
|
|
e.stopPropagation();
|
|
if (cb.checked) {
|
|
hiddenCommunities.delete(c.cid);
|
|
item.classList.remove('dimmed');
|
|
} else {
|
|
hiddenCommunities.add(c.cid);
|
|
item.classList.add('dimmed');
|
|
}
|
|
const updates = RAW_NODES
|
|
.filter(n => n.community === c.cid)
|
|
.map(n => ({ id: n.id, hidden: !cb.checked }));
|
|
nodesDS.update(updates);
|
|
updateSelectAllState();
|
|
});
|
|
item.innerHTML = `<div class="legend-dot" style="background:${c.color}"></div>
|
|
<span class="legend-label">${c.label}</span>
|
|
<span class="legend-count">${c.count}</span>`;
|
|
item.prepend(cb);
|
|
item.onclick = (e) => {
|
|
if (e.target === cb) return;
|
|
cb.checked = !cb.checked;
|
|
cb.dispatchEvent(new Event('change'));
|
|
};
|
|
legendEl.appendChild(item);
|
|
});
|
|
</script>
|
|
<script>
|
|
// Render hyperedges as shaded regions
|
|
const hyperedges = [];
|
|
// afterDrawing passes ctx already transformed to network coordinate space.
|
|
// Draw node positions raw — no manual pan/zoom/DPR math needed.
|
|
network.on('afterDrawing', function(ctx) {
|
|
hyperedges.forEach(h => {
|
|
const positions = h.nodes
|
|
.map(nid => network.getPositions([nid])[nid])
|
|
.filter(p => p !== undefined);
|
|
if (positions.length < 2) return;
|
|
ctx.save();
|
|
ctx.globalAlpha = 0.12;
|
|
ctx.fillStyle = '#6366f1';
|
|
ctx.strokeStyle = '#6366f1';
|
|
ctx.lineWidth = 2;
|
|
ctx.beginPath();
|
|
// Centroid and expanded hull in network coordinates
|
|
const cx = positions.reduce((s, p) => s + p.x, 0) / positions.length;
|
|
const cy = positions.reduce((s, p) => s + p.y, 0) / positions.length;
|
|
const expanded = positions.map(p => ({
|
|
x: cx + (p.x - cx) * 1.15,
|
|
y: cy + (p.y - cy) * 1.15
|
|
}));
|
|
ctx.moveTo(expanded[0].x, expanded[0].y);
|
|
expanded.slice(1).forEach(p => ctx.lineTo(p.x, p.y));
|
|
ctx.closePath();
|
|
ctx.fill();
|
|
ctx.globalAlpha = 0.4;
|
|
ctx.stroke();
|
|
// Label
|
|
ctx.globalAlpha = 0.8;
|
|
ctx.fillStyle = '#4f46e5';
|
|
ctx.font = 'bold 11px sans-serif';
|
|
ctx.textAlign = 'center';
|
|
ctx.fillText(h.label, cx, cy - 5);
|
|
ctx.restore();
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |