| <!doctype html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8" /> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| <title>Cross-domain Relationship Graph</title> |
| <script type="text/javascript" src="https://unpkg.com/vis-network/standalone/umd/vis-network.min.js"></script> |
| <style> |
| :root { |
| --bg: #f8fafc; |
| --panel: #ffffff; |
| --border: #e2e8f0; |
| --text: #0f172a; |
| --muted: #64748b; |
| --primary: #2563eb; |
| --broadcast: #8b5cf6; |
| --scc: #f97316; |
| } |
| html, body { |
| width: 100%; |
| height: 100%; |
| margin: 0; |
| font-family: "Times New Roman", Times, serif; |
| font-weight: 700; |
| background: var(--bg); |
| color: var(--text); |
| } |
| body { |
| display: flex; |
| flex-direction: column; |
| min-height: 100vh; |
| } |
| #toolbar { |
| box-sizing: border-box; |
| width: 100%; |
| padding: 14px 18px; |
| border-bottom: 1px solid var(--border); |
| background: rgba(255, 255, 255, 0.92); |
| backdrop-filter: blur(10px); |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| gap: 16px; |
| font-size: 14px; |
| } |
| .toolbar-left { |
| display: flex; |
| align-items: center; |
| gap: 10px; |
| } |
| .title-wrap { |
| display: flex; |
| flex-direction: column; |
| gap: 2px; |
| margin-right: 6px; |
| } |
| .title-wrap b { |
| font-size: 16px; |
| letter-spacing: -0.01em; |
| } |
| .subtitle { |
| color: var(--muted); |
| font-size: 12px; |
| font-weight: normal; |
| } |
| .view-btn { |
| border: 1px solid var(--border); |
| background: #fff; |
| color: #334155; |
| border-radius: 999px; |
| padding: 6px 12px; |
| cursor: pointer; |
| font-size: 13px; |
| box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05); |
| } |
| .view-btn.active { |
| border-color: #bfdbfe; |
| background: #eff6ff; |
| color: var(--primary); |
| font-weight: 700; |
| } |
| .search-wrap { |
| display: inline-flex; |
| align-items: center; |
| gap: 6px; |
| margin-left: 6px; |
| } |
| .search-input { |
| width: 170px; |
| padding: 6px 10px; |
| border: 1px solid var(--border); |
| border-radius: 999px; |
| font-size: 13px; |
| outline: none; |
| box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04); |
| } |
| .search-btn { |
| border: 1px solid var(--border); |
| background: #fff; |
| color: #334155; |
| border-radius: 999px; |
| padding: 6px 12px; |
| cursor: pointer; |
| font-size: 13px; |
| } |
| .search-btn:hover { |
| border-color: #2b7cff; |
| color: #135ad8; |
| } |
| .scc-controls { |
| display: inline-flex; |
| align-items: center; |
| gap: 7px; |
| margin-left: 6px; |
| padding-left: 6px; |
| border-left: 1px solid #e2e8f0; |
| } |
| .toolbar-select { |
| height: 30px; |
| border: 1px solid var(--border); |
| border-radius: 999px; |
| padding: 0 9px; |
| background: #fff; |
| color: #334155; |
| font-size: 12px; |
| outline: none; |
| } |
| .toggle-label { |
| display: inline-flex; |
| align-items: center; |
| gap: 4px; |
| color: #334155; |
| font-size: 12px; |
| white-space: nowrap; |
| } |
| .toolbar-right { |
| display: flex; |
| align-items: center; |
| gap: 16px; |
| } |
| .hint { |
| color: var(--muted); |
| white-space: nowrap; |
| } |
| #graphShell { |
| flex: 1; |
| min-height: 0; |
| display: flex; |
| width: 100%; |
| } |
| #network { |
| flex: 1; |
| min-height: 200px; |
| width: 100%; |
| position: relative; |
| overflow: hidden; |
| background: |
| radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 34%), |
| radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.08), transparent 32%), |
| #ffffff; |
| } |
| .scc-glow-layer { |
| position: absolute; |
| inset: 0; |
| width: 100%; |
| height: 100%; |
| overflow: visible; |
| pointer-events: none; |
| z-index: 1; |
| } |
| #network canvas { |
| position: relative; |
| z-index: 2; |
| } |
| .scc-glow .halo, |
| .scc-glow .core { |
| stroke: none; |
| transition: opacity 180ms ease; |
| } |
| .scc-tooltip { |
| position: absolute; |
| left: 0; |
| top: 0; |
| z-index: 5; |
| display: none; |
| max-width: 280px; |
| padding: 8px 12px; |
| border-radius: 6px; |
| background: #ffffff; |
| color: #0f172a; |
| box-shadow: 0 4px 12px rgba(0,0,0,0.12); |
| font-size: 12px; |
| line-height: 1.45; |
| pointer-events: none; |
| white-space: nowrap; |
| } |
| .scc-tooltip b { |
| display: block; |
| margin-bottom: 3px; |
| font-size: 12px; |
| } |
| .scc-tooltip .tooltip-line { |
| color: #475569; |
| } |
| #structurePanel { |
| box-sizing: border-box; |
| width: 340px; |
| max-width: 34vw; |
| min-width: 280px; |
| border-left: 1px solid var(--border); |
| background: rgba(248, 250, 252, 0.96); |
| padding: 14px; |
| overflow: auto; |
| } |
| .panel-title { |
| display: flex; |
| align-items: baseline; |
| justify-content: space-between; |
| gap: 8px; |
| margin-bottom: 10px; |
| } |
| .panel-title b { |
| font-size: 14px; |
| letter-spacing: -0.01em; |
| } |
| .panel-title span { |
| color: var(--muted); |
| font-size: 12px; |
| } |
| .structure-section { |
| margin-bottom: 14px; |
| } |
| .section-label { |
| display: flex; |
| align-items: center; |
| gap: 7px; |
| margin: 0 0 8px; |
| color: #334155; |
| font-size: 12px; |
| font-weight: 800; |
| letter-spacing: 0.04em; |
| text-transform: uppercase; |
| } |
| .section-label::before { |
| content: ""; |
| width: 8px; |
| height: 8px; |
| border-radius: 999px; |
| background: var(--primary); |
| } |
| .section-label.broadcast::before { |
| background: var(--broadcast); |
| } |
| .section-label.scc::before { |
| background: var(--scc); |
| } |
| .section-toggle { |
| width: 100%; |
| border: 0; |
| border-radius: 10px; |
| padding: 8px 10px; |
| margin: 0 0 8px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| gap: 10px; |
| cursor: pointer; |
| color: #334155; |
| font-size: 12px; |
| font-weight: 800; |
| letter-spacing: 0.02em; |
| text-align: left; |
| } |
| .section-toggle.broadcast { |
| background: #f5f3ff; |
| color: #5b21b6; |
| } |
| .section-toggle.unknown { |
| background: #fff7ed; |
| color: #9a3412; |
| } |
| .section-toggle .badge { |
| display: inline-flex; |
| align-items: center; |
| gap: 4px; |
| padding: 2px 7px; |
| border-radius: 999px; |
| background: rgba(255, 255, 255, 0.82); |
| font-size: 11px; |
| } |
| .section-toggle .alert-dot { |
| width: 7px; |
| height: 7px; |
| border-radius: 999px; |
| background: #ef4444; |
| } |
| .empty-note { |
| padding: 12px; |
| border: 1px dashed #cbd5e1; |
| border-radius: 12px; |
| color: var(--muted); |
| background: #fff; |
| font-size: 12px; |
| line-height: 1.5; |
| } |
| .group-card { |
| border: 1px solid var(--border); |
| border-radius: 14px; |
| padding: 10px 11px; |
| margin-bottom: 8px; |
| background: #fff; |
| cursor: pointer; |
| border-left-width: 4px; |
| box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05); |
| transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease; |
| } |
| .group-card:hover { |
| transform: translateY(-1px); |
| box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08); |
| border-color: #cbd5e1; |
| } |
| .group-card.broadcast { |
| border-color: #ddd6fe; |
| border-left-color: #a78bfa; |
| background: linear-gradient(135deg, #ffffff 0%, #f5f3ff 100%); |
| } |
| .group-card.scc, |
| .group-card.unknown { |
| border-color: #fed7aa; |
| border-left-color: #f59e0b; |
| background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%); |
| } |
| .group-card.active { |
| border-color: #f59e0b; |
| box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.22), 0 8px 18px rgba(15, 23, 42, 0.10); |
| } |
| .group-head { |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| gap: 8px; |
| margin-bottom: 8px; |
| font-size: 13px; |
| font-weight: 800; |
| } |
| .group-meta { |
| color: var(--muted); |
| font-size: 11px; |
| font-weight: 600; |
| white-space: nowrap; |
| } |
| .group-breakdown { |
| margin: -2px 0 8px; |
| color: #64748b; |
| font-size: 11px; |
| font-weight: 700; |
| } |
| .node-chips { |
| display: flex; |
| flex-wrap: wrap; |
| gap: 6px; |
| } |
| .node-chip { |
| display: inline-flex; |
| align-items: center; |
| gap: 4px; |
| max-width: 100%; |
| padding: 3px 7px; |
| border-radius: 999px; |
| background: rgba(255, 255, 255, 0.86); |
| border: 1px solid #e2e8f0; |
| color: #334155; |
| font-family: ui-monospace, SFMono-Regular, Consolas, monospace; |
| font-size: 11px; |
| cursor: crosshair; |
| } |
| .node-chip.virtual { |
| border-style: dashed; |
| color: #7c3aed; |
| } |
| .legend-bar { |
| box-sizing: border-box; |
| width: 100%; |
| padding: 9px 18px 10px; |
| background: #f1f5f9; |
| border-bottom: 1px solid var(--border); |
| font-size: 12px; |
| color: #374151; |
| line-height: 1.45; |
| } |
| .legend-panel { |
| display: none; |
| flex-wrap: wrap; |
| align-items: center; |
| gap: 6px 18px; |
| } |
| .legend-panel.active { |
| display: flex; |
| } |
| .legend-title { |
| font-weight: 700; |
| color: #111827; |
| margin-right: 4px; |
| } |
| .legend-sep { |
| color: #9ca3af; |
| user-select: none; |
| } |
| .legend-item { |
| display: inline-flex; |
| align-items: center; |
| gap: 6px; |
| max-width: 100%; |
| } |
| .lg-node { |
| width: 14px; |
| height: 14px; |
| border-radius: 50%; |
| flex-shrink: 0; |
| border: 2px solid #6366f1; |
| background: #818cf8; |
| } |
| .lg-node.virtual { |
| background: #fff; |
| border: 2px dashed #6366f1; |
| } |
| .lg-edge { |
| width: 32px; |
| flex-shrink: 0; |
| border-top: 2px solid #666666; |
| } |
| .lg-edge.dash { |
| border-top-style: dashed; |
| opacity: 0.85; |
| } |
| .lg-edge.green { |
| border-top-color: #22c55e; |
| } |
| .lg-edge.amber { |
| border-top-color: #f59e0b; |
| } |
| .lg-edge.purple { |
| border-top-color: #8b5cf6; |
| border-top-style: dashed; |
| } |
| .lg-glow { |
| width: 14px; |
| height: 14px; |
| border-radius: 50%; |
| flex-shrink: 0; |
| } |
| .lg-glow.broadcast { |
| background: radial-gradient(circle, rgba(167, 139, 250, 0.85) 0%, rgba(167, 139, 250, 0.35) 48%, rgba(167, 139, 250, 0) 72%); |
| box-shadow: 0 0 10px rgba(167, 139, 250, 0.45); |
| } |
| .lg-glow.unknown { |
| background: radial-gradient(circle, rgba(251, 146, 60, 0.9) 0%, rgba(251, 146, 60, 0.38) 48%, rgba(251, 146, 60, 0) 72%); |
| box-shadow: 0 0 10px rgba(251, 146, 60, 0.48); |
| } |
| .legend-bar code { |
| font-size: 11px; |
| background: #e5e7eb; |
| padding: 1px 4px; |
| border-radius: 3px; |
| font-family: ui-monospace, Consolas, monospace; |
| } |
| .error-box { |
| margin: 12px 16px; |
| padding: 10px 12px; |
| border: 1px solid #fca5a5; |
| border-radius: 6px; |
| background: #fef2f2; |
| color: #991b1b; |
| font-size: 13px; |
| white-space: pre-wrap; |
| } |
| @media print { |
| #toolbar { position: static; } |
| } |
| @media (max-width: 980px) { |
| #toolbar, .toolbar-left { |
| align-items: flex-start; |
| flex-wrap: wrap; |
| } |
| .scc-controls { |
| flex-wrap: wrap; |
| border-left: 0; |
| padding-left: 0; |
| } |
| #graphShell { |
| flex-direction: column; |
| } |
| #structurePanel { |
| width: 100%; |
| max-width: none; |
| min-width: 0; |
| max-height: 34vh; |
| border-left: none; |
| border-top: 1px solid var(--border); |
| } |
| } |
| </style> |
| </head> |
| <body> |
| <div id="toolbar"> |
| <div class="toolbar-left"> |
| <div class="title-wrap"> |
| <b>Cross-domain Relationship Graph</b> |
| <span class="subtitle">Gr.0039.fuzzing.1786009417</span> |
| </div> |
| <div class="search-wrap"> |
| <input id="searchCanId" class="search-input" type="text" placeholder="CAN-ID, e.g. 0x00DB" /> |
| <button id="btnFocusCanId" class="search-btn">Focus</button> |
| </div> |
| <div class="scc-controls"> |
| <label class="toggle-label" for="sccHullMode">SCC Hull</label> |
| <select id="sccHullMode" class="toolbar-select"> |
| <option value="All">All</option> |
| <option value="OnlyBroadcast">Only Co-source Broadcast</option> |
| <option value="OnlyUnknown">Only Potential Forwarding</option> |
| <option value="Off">Off</option> |
| </select> |
| <button id="btnJumpUnknown" class="search-btn" type="button">Jump to next Potential Forwarding</button> |
| <label class="toggle-label" title="Potential Forwarding SCC breathing animation"> |
| <input id="toggleBreathing" type="checkbox" checked /> |
| Breathing |
| </label> |
| </div> |
| </div> |
| <div class="toolbar-right"> |
| <div class="hint">Nodes: <span id="nodeCount"></span> | Edges: <span id="edgeCount"></span></div> |
| </div> |
| </div> |
| <div id="legendBar" class="legend-bar"> |
| <div id="legendForwarding" class="legend-panel active"> |
| <span class="legend-title">Legend</span> |
| <span class="legend-sep">|</span> |
| <span class="legend-item"><span class="lg-node" title="filled"></span> (field, CAN-ID) node</span> |
| <span class="legend-sep">|</span> |
| <span class="legend-item"><span class="lg-node virtual" title="virtual"></span> Dashed ring, white fill: virtual node (domain 0)</span> |
| <span class="legend-sep">|</span> |
| <span class="legend-item"><span class="lg-edge" title="solid"></span> forwarding relationship</span> |
| <span class="legend-sep">|</span> |
| <span class="legend-item"><span class="lg-edge dash" style="border-top-color:#f59e0b;" title="potential forwarding edge"></span> Dashed amber edge with two arrows: potential forwarding</span> |
| <span class="legend-sep">|</span> |
| <span class="legend-item"><span class="lg-edge dash" style="border-top-color:#a78bfa;" title="virtual edge"></span> Dashed, pale tint: virtual edge (touches domain 0 or label <code>virtual_edge</code>)</span> |
| <span class="legend-sep">|</span> |
| <span class="legend-item"><span class="lg-edge purple" title="broadcast edge"></span> co-source broadcast</span> |
| <span class="legend-sep">|</span> |
| <span class="legend-item"><span class="lg-glow broadcast"></span> Co-source Broadcast group</span> |
| <span class="legend-sep">|</span> |
| <span class="legend-item"><span class="lg-glow unknown"></span> Orange glow: Potential Forwarding SCC with breathing animation</span> |
| </div> |
| </div> |
| <div id="errorBox" class="error-box" style="display:none;"></div> |
| <div id="graphShell"> |
| <div id="network"> |
| <div id="sccTooltip" class="scc-tooltip" role="tooltip"></div> |
| </div> |
| <aside id="structurePanel"></aside> |
| </div> |
| <script> |
| (function initGraph() { |
| const errorBox = document.getElementById("errorBox"); |
| const nodeCountEl = document.getElementById("nodeCount"); |
| const edgeCountEl = document.getElementById("edgeCount"); |
| const searchCanIdInput = document.getElementById("searchCanId"); |
| const btnFocusCanId = document.getElementById("btnFocusCanId"); |
| const sccHullModeSelect = document.getElementById("sccHullMode"); |
| const btnJumpUnknown = document.getElementById("btnJumpUnknown"); |
| const toggleBreathing = document.getElementById("toggleBreathing"); |
| const structurePanel = document.getElementById("structurePanel"); |
| const sccTooltip = document.getElementById("sccTooltip"); |
| let nodesDataset = new vis.DataSet([]); |
| let edgesDataset = new vis.DataSet([]); |
| let sccHullMode = "All"; |
| let breathingEnabled = true; |
| let sccGroupsCache = []; |
| let hoveredSccId = null; |
| let focusedCanId = ""; |
| let unknownJumpIndex = -1; |
| let sccGlowSvg = null; |
| let sccGlowDefs = null; |
| let glowRafPending = false; |
| let flashSccId = null; |
| let flashStartedAt = 0; |
| |
| function showError(msg) { |
| if (!errorBox) return; |
| errorBox.style.display = "block"; |
| errorBox.textContent = msg; |
| } |
| function hideError() { |
| if (!errorBox) return; |
| errorBox.style.display = "none"; |
| errorBox.textContent = ""; |
| } |
| |
| try { |
| if (typeof vis === "undefined" || !vis.Network) { |
| showError("Failed to load vis-network. Check your network or CDN access."); |
| return; |
| } |
| |
| const graphNodes = [{"id":"0x3E5:2","label":"0x03E5\nDomain-2","title":"CAN_ID: 0x03E5\ndomain: 2","color":{"background":"#ad6df2","border":"#ad6df2","highlight":{"background":"#ad6df2","border":"#ad6df2"},"hover":{"background":"#ad6df2","border":"#ad6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x31B:2","label":"0x031B\nDomain-2","title":"CAN_ID: 0x031B\ndomain: 2","color":{"background":"#6d74f2","border":"#6d74f2","highlight":{"background":"#6d74f2","border":"#6d74f2"},"hover":{"background":"#6d74f2","border":"#6d74f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xFD:1","label":"0x00FD\nDomain-1","title":"CAN_ID: 0x00FD\ndomain: 1","color":{"background":"#f26d6f","border":"#f26d6f","highlight":{"background":"#f26d6f","border":"#f26d6f"},"hover":{"background":"#f26d6f","border":"#f26d6f"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A55566B:1","label":"0x1A55566B\nDomain-1","title":"CAN_ID: 0x1A55566B\ndomain: 1","color":{"background":"#6df2e7","border":"#6df2e7","highlight":{"background":"#6df2e7","border":"#6df2e7"},"hover":{"background":"#6df2e7","border":"#6df2e7"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x545:2","label":"0x0545\nDomain-2","title":"CAN_ID: 0x0545\ndomain: 2","color":{"background":"#d96df2","border":"#d96df2","highlight":{"background":"#d96df2","border":"#d96df2"},"hover":{"background":"#d96df2","border":"#d96df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x65F:0","label":"0x065F\nDomain-0","title":"CAN_ID: 0x065F\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26dbe","highlight":{"background":"#FFFFFF","border":"#f26dbe"},"hover":{"background":"#FFFFFF","border":"#f26dbe"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x3C0:5","label":"0x03C0\nDomain-5","title":"CAN_ID: 0x03C0\ndomain: 5","color":{"background":"#976df2","border":"#976df2","highlight":{"background":"#976df2","border":"#976df2"},"hover":{"background":"#976df2","border":"#976df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x102:0","label":"0x0102\nDomain-0","title":"CAN_ID: 0x0102\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26d6d","highlight":{"background":"#FFFFFF","border":"#f26d6d"},"hover":{"background":"#FFFFFF","border":"#f26d6d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x6B2:2","label":"0x06B2\nDomain-2","title":"CAN_ID: 0x06B2\ndomain: 2","color":{"background":"#f26db4","border":"#f26db4","highlight":{"background":"#f26db4","border":"#f26db4"},"hover":{"background":"#f26db4","border":"#f26db4"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556EA:1","label":"0x1A5556EA\nDomain-1","title":"CAN_ID: 0x1A5556EA\ndomain: 1","color":{"background":"#6deff2","border":"#6deff2","highlight":{"background":"#6deff2","border":"#6deff2"},"hover":{"background":"#6deff2","border":"#6deff2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x9F:0","label":"0x009F\nDomain-0","title":"CAN_ID: 0x009F\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26da9","highlight":{"background":"#FFFFFF","border":"#f26da9"},"hover":{"background":"#FFFFFF","border":"#f26da9"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x16A9545F:2","label":"0x16A9545F\nDomain-2","title":"CAN_ID: 0x16A9545F\ndomain: 2","color":{"background":"#d7f26d","border":"#d7f26d","highlight":{"background":"#d7f26d","border":"#d7f26d"},"hover":{"background":"#d7f26d","border":"#d7f26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3BE:3","label":"0x03BE\nDomain-3","title":"CAN_ID: 0x03BE\ndomain: 3","color":{"background":"#956df2","border":"#956df2","highlight":{"background":"#956df2","border":"#956df2"},"hover":{"background":"#956df2","border":"#956df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5555BF:5","label":"0x1A5555BF\nDomain-5","title":"CAN_ID: 0x1A5555BF\ndomain: 5","color":{"background":"#6df2df","border":"#6df2df","highlight":{"background":"#6df2df","border":"#6df2df"},"hover":{"background":"#6df2df","border":"#6df2df"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xFC:2","label":"0x00FC\nDomain-2","title":"CAN_ID: 0x00FC\ndomain: 2","color":{"background":"#f26d72","border":"#f26d72","highlight":{"background":"#f26d72","border":"#f26d72"},"hover":{"background":"#f26d72","border":"#f26d72"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x6B4:3","label":"0x06B4\nDomain-3","title":"CAN_ID: 0x06B4\ndomain: 3","color":{"background":"#f26db1","border":"#f26db1","highlight":{"background":"#f26db1","border":"#f26db1"},"hover":{"background":"#f26db1","border":"#f26db1"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1F0:2","label":"0x01F0\nDomain-2","title":"CAN_ID: 0x01F0\ndomain: 2","color":{"background":"#6dbbf2","border":"#6dbbf2","highlight":{"background":"#6dbbf2","border":"#6dbbf2"},"hover":{"background":"#6dbbf2","border":"#6dbbf2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555628:0","label":"0x1A555628\nDomain-0","title":"CAN_ID: 0x1A555628\ndomain: 0","color":{"background":"#FFFFFF","border":"#6df2e2","highlight":{"background":"#FFFFFF","border":"#6df2e2"},"hover":{"background":"#FFFFFF","border":"#6df2e2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x670:2","label":"0x0670\nDomain-2","title":"CAN_ID: 0x0670\ndomain: 2","color":{"background":"#f26db9","border":"#f26db9","highlight":{"background":"#f26db9","border":"#f26db9"},"hover":{"background":"#f26db9","border":"#f26db9"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xDB:4","label":"0x00DB\nDomain-4","title":"CAN_ID: 0x00DB\ndomain: 4","color":{"background":"#f26d82","border":"#f26d82","highlight":{"background":"#f26d82","border":"#f26d82"},"hover":{"background":"#f26d82","border":"#f26d82"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3C0:0","label":"0x03C0\nDomain-0","title":"CAN_ID: 0x03C0\ndomain: 0","color":{"background":"#FFFFFF","border":"#976df2","highlight":{"background":"#FFFFFF","border":"#976df2"},"hover":{"background":"#FFFFFF","border":"#976df2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x86:1","label":"0x0086\nDomain-1","title":"CAN_ID: 0x0086\ndomain: 1","color":{"background":"#f26dac","border":"#f26dac","highlight":{"background":"#f26dac","border":"#f26dac"},"hover":{"background":"#f26dac","border":"#f26dac"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x102:4","label":"0x0102\nDomain-4","title":"CAN_ID: 0x0102\ndomain: 4","color":{"background":"#f26d6d","border":"#f26d6d","highlight":{"background":"#f26d6d","border":"#f26d6d"},"hover":{"background":"#f26d6d","border":"#f26d6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x14C:4","label":"0x014C\nDomain-4","title":"CAN_ID: 0x014C\ndomain: 4","color":{"background":"#f2de6d","border":"#f2de6d","highlight":{"background":"#f2de6d","border":"#f2de6d"},"hover":{"background":"#f2de6d","border":"#f2de6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A4:2","label":"0x01A4\nDomain-2","title":"CAN_ID: 0x01A4\ndomain: 2","color":{"background":"#6df2a0","border":"#6df2a0","highlight":{"background":"#6df2a0","border":"#6df2a0"},"hover":{"background":"#6df2a0","border":"#6df2a0"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x31B:1","label":"0x031B\nDomain-1","title":"CAN_ID: 0x031B\ndomain: 1","color":{"background":"#6d74f2","border":"#6d74f2","highlight":{"background":"#6d74f2","border":"#6d74f2"},"hover":{"background":"#6d74f2","border":"#6d74f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xAD:2","label":"0x00AD\nDomain-2","title":"CAN_ID: 0x00AD\ndomain: 2","color":{"background":"#f26da4","border":"#f26da4","highlight":{"background":"#f26da4","border":"#f26da4"},"hover":{"background":"#f26da4","border":"#f26da4"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x206:0","label":"0x0206\nDomain-0","title":"CAN_ID: 0x0206\ndomain: 0","color":{"background":"#FFFFFF","border":"#6db3f2","highlight":{"background":"#FFFFFF","border":"#6db3f2"},"hover":{"background":"#FFFFFF","border":"#6db3f2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x3D4:1","label":"0x03D4\nDomain-1","title":"CAN_ID: 0x03D4\ndomain: 1","color":{"background":"#9f6df2","border":"#9f6df2","highlight":{"background":"#9f6df2","border":"#9f6df2"},"hover":{"background":"#9f6df2","border":"#9f6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xFD:0","label":"0x00FD\nDomain-0","title":"CAN_ID: 0x00FD\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26d6f","highlight":{"background":"#FFFFFF","border":"#f26d6f"},"hover":{"background":"#FFFFFF","border":"#f26d6f"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x1A5555BF:0","label":"0x1A5555BF\nDomain-0","title":"CAN_ID: 0x1A5555BF\ndomain: 0","color":{"background":"#FFFFFF","border":"#6df2df","highlight":{"background":"#FFFFFF","border":"#6df2df"},"hover":{"background":"#FFFFFF","border":"#6df2df"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x1A55566B:0","label":"0x1A55566B\nDomain-0","title":"CAN_ID: 0x1A55566B\ndomain: 0","color":{"background":"#FFFFFF","border":"#6df2e7","highlight":{"background":"#FFFFFF","border":"#6df2e7"},"hover":{"background":"#FFFFFF","border":"#6df2e7"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x20D:0","label":"0x020D\nDomain-0","title":"CAN_ID: 0x020D\ndomain: 0","color":{"background":"#FFFFFF","border":"#6dabf2","highlight":{"background":"#FFFFFF","border":"#6dabf2"},"hover":{"background":"#FFFFFF","border":"#6dabf2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x12DD54AA:2","label":"0x12DD54AA\nDomain-2","title":"CAN_ID: 0x12DD54AA\ndomain: 2","color":{"background":"#f2916d","border":"#f2916d","highlight":{"background":"#f2916d","border":"#f2916d"},"hover":{"background":"#f2916d","border":"#f2916d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3C0:4","label":"0x03C0\nDomain-4","title":"CAN_ID: 0x03C0\ndomain: 4","color":{"background":"#976df2","border":"#976df2","highlight":{"background":"#976df2","border":"#976df2"},"hover":{"background":"#976df2","border":"#976df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x421:2","label":"0x0421\nDomain-2","title":"CAN_ID: 0x0421\ndomain: 2","color":{"background":"#c26df2","border":"#c26df2","highlight":{"background":"#c26df2","border":"#c26df2"},"hover":{"background":"#c26df2","border":"#c26df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x40:4","label":"0x0040\nDomain-4","title":"CAN_ID: 0x0040\ndomain: 4","color":{"background":"#ba6df2","border":"#ba6df2","highlight":{"background":"#ba6df2","border":"#ba6df2"},"hover":{"background":"#ba6df2","border":"#ba6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x6B2:1","label":"0x06B2\nDomain-1","title":"CAN_ID: 0x06B2\ndomain: 1","color":{"background":"#f26db4","border":"#f26db4","highlight":{"background":"#f26db4","border":"#f26db4"},"hover":{"background":"#f26db4","border":"#f26db4"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x16A954C4:0","label":"0x16A954C4\nDomain-0","title":"CAN_ID: 0x16A954C4\ndomain: 0","color":{"background":"#FFFFFF","border":"#bff26d","highlight":{"background":"#FFFFFF","border":"#bff26d"},"hover":{"background":"#FFFFFF","border":"#bff26d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x2C2:2","label":"0x02C2\nDomain-2","title":"CAN_ID: 0x02C2\ndomain: 2","color":{"background":"#6d81f2","border":"#6d81f2","highlight":{"background":"#6d81f2","border":"#6d81f2"},"hover":{"background":"#6d81f2","border":"#6d81f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x206:4","label":"0x0206\nDomain-4","title":"CAN_ID: 0x0206\ndomain: 4","color":{"background":"#6db3f2","border":"#6db3f2","highlight":{"background":"#6db3f2","border":"#6db3f2"},"hover":{"background":"#6db3f2","border":"#6db3f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xFD:4","label":"0x00FD\nDomain-4","title":"CAN_ID: 0x00FD\ndomain: 4","color":{"background":"#f26d6f","border":"#f26d6f","highlight":{"background":"#f26d6f","border":"#f26d6f"},"hover":{"background":"#f26d6f","border":"#f26d6f"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3BE:2","label":"0x03BE\nDomain-2","title":"CAN_ID: 0x03BE\ndomain: 2","color":{"background":"#956df2","border":"#956df2","highlight":{"background":"#956df2","border":"#956df2"},"hover":{"background":"#956df2","border":"#956df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x520:0","label":"0x0520\nDomain-0","title":"CAN_ID: 0x0520\ndomain: 0","color":{"background":"#FFFFFF","border":"#d76df2","highlight":{"background":"#FFFFFF","border":"#d76df2"},"hover":{"background":"#FFFFFF","border":"#d76df2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x1A5555BF:4","label":"0x1A5555BF\nDomain-4","title":"CAN_ID: 0x1A5555BF\ndomain: 4","color":{"background":"#6df2df","border":"#6df2df","highlight":{"background":"#6df2df","border":"#6df2df"},"hover":{"background":"#6df2df","border":"#6df2df"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x6B4:2","label":"0x06B4\nDomain-2","title":"CAN_ID: 0x06B4\ndomain: 2","color":{"background":"#f26db1","border":"#f26db1","highlight":{"background":"#f26db1","border":"#f26db1"},"hover":{"background":"#f26db1","border":"#f26db1"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A55566B:4","label":"0x1A55566B\nDomain-4","title":"CAN_ID: 0x1A55566B\ndomain: 4","color":{"background":"#6df2e7","border":"#6df2e7","highlight":{"background":"#6df2e7","border":"#6df2e7"},"hover":{"background":"#6df2e7","border":"#6df2e7"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x20D:4","label":"0x020D\nDomain-4","title":"CAN_ID: 0x020D\ndomain: 4","color":{"background":"#6dabf2","border":"#6dabf2","highlight":{"background":"#6dabf2","border":"#6dabf2"},"hover":{"background":"#6dabf2","border":"#6dabf2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x6B2:5","label":"0x06B2\nDomain-5","title":"CAN_ID: 0x06B2\ndomain: 5","color":{"background":"#f26db4","border":"#f26db4","highlight":{"background":"#f26db4","border":"#f26db4"},"hover":{"background":"#f26db4","border":"#f26db4"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3E5:0","label":"0x03E5\nDomain-0","title":"CAN_ID: 0x03E5\ndomain: 0","color":{"background":"#FFFFFF","border":"#ad6df2","highlight":{"background":"#FFFFFF","border":"#ad6df2"},"hover":{"background":"#FFFFFF","border":"#ad6df2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x139:0","label":"0x0139\nDomain-0","title":"CAN_ID: 0x0139\ndomain: 0","color":{"background":"#FFFFFF","border":"#f2ce6d","highlight":{"background":"#FFFFFF","border":"#f2ce6d"},"hover":{"background":"#FFFFFF","border":"#f2ce6d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0xAD:1","label":"0x00AD\nDomain-1","title":"CAN_ID: 0x00AD\ndomain: 1","color":{"background":"#f26da4","border":"#f26da4","highlight":{"background":"#f26da4","border":"#f26da4"},"hover":{"background":"#f26da4","border":"#f26da4"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3FB:1","label":"0x03FB\nDomain-1","title":"CAN_ID: 0x03FB\ndomain: 1","color":{"background":"#b46df2","border":"#b46df2","highlight":{"background":"#b46df2","border":"#b46df2"},"hover":{"background":"#b46df2","border":"#b46df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x520:4","label":"0x0520\nDomain-4","title":"CAN_ID: 0x0520\ndomain: 4","color":{"background":"#d76df2","border":"#d76df2","highlight":{"background":"#d76df2","border":"#d76df2"},"hover":{"background":"#d76df2","border":"#d76df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x397:0","label":"0x0397\nDomain-0","title":"CAN_ID: 0x0397\ndomain: 0","color":{"background":"#FFFFFF","border":"#906df2","highlight":{"background":"#FFFFFF","border":"#906df2"},"hover":{"background":"#FFFFFF","border":"#906df2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x12DD54C9:2","label":"0x12DD54C9\nDomain-2","title":"CAN_ID: 0x12DD54C9\ndomain: 2","color":{"background":"#f2996d","border":"#f2996d","highlight":{"background":"#f2996d","border":"#f2996d"},"hover":{"background":"#f2996d","border":"#f2996d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555541:1","label":"0x1A555541\nDomain-1","title":"CAN_ID: 0x1A555541\ndomain: 1","color":{"background":"#6df2b5","border":"#6df2b5","highlight":{"background":"#6df2b5","border":"#6df2b5"},"hover":{"background":"#6df2b5","border":"#6df2b5"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555564:4","label":"0x1A555564\nDomain-4","title":"CAN_ID: 0x1A555564\ndomain: 4","color":{"background":"#6df2c2","border":"#6df2c2","highlight":{"background":"#6df2c2","border":"#6df2c2"},"hover":{"background":"#6df2c2","border":"#6df2c2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD54AA:1","label":"0x12DD54AA\nDomain-1","title":"CAN_ID: 0x12DD54AA\ndomain: 1","color":{"background":"#f2916d","border":"#f2916d","highlight":{"background":"#f2916d","border":"#f2916d"},"hover":{"background":"#f2916d","border":"#f2916d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x65D:2","label":"0x065D\nDomain-2","title":"CAN_ID: 0x065D\ndomain: 2","color":{"background":"#f26dc1","border":"#f26dc1","highlight":{"background":"#f26dc1","border":"#f26dc1"},"hover":{"background":"#f26dc1","border":"#f26dc1"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3C0:3","label":"0x03C0\nDomain-3","title":"CAN_ID: 0x03C0\ndomain: 3","color":{"background":"#976df2","border":"#976df2","highlight":{"background":"#976df2","border":"#976df2"},"hover":{"background":"#976df2","border":"#976df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x86:4","label":"0x0086\nDomain-4","title":"CAN_ID: 0x0086\ndomain: 4","color":{"background":"#f26dac","border":"#f26dac","highlight":{"background":"#f26dac","border":"#f26dac"},"hover":{"background":"#f26dac","border":"#f26dac"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x421:1","label":"0x0421\nDomain-1","title":"CAN_ID: 0x0421\ndomain: 1","color":{"background":"#c26df2","border":"#c26df2","highlight":{"background":"#c26df2","border":"#c26df2"},"hover":{"background":"#c26df2","border":"#c26df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555548:3","label":"0x1A555548\nDomain-3","title":"CAN_ID: 0x1A555548\ndomain: 3","color":{"background":"#6df2b8","border":"#6df2b8","highlight":{"background":"#6df2b8","border":"#6df2b8"},"hover":{"background":"#6df2b8","border":"#6df2b8"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x40:3","label":"0x0040\nDomain-3","title":"CAN_ID: 0x0040\ndomain: 3","color":{"background":"#ba6df2","border":"#ba6df2","highlight":{"background":"#ba6df2","border":"#ba6df2"},"hover":{"background":"#ba6df2","border":"#ba6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x6B2:0","label":"0x06B2\nDomain-0","title":"CAN_ID: 0x06B2\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26db4","highlight":{"background":"#FFFFFF","border":"#f26db4"},"hover":{"background":"#FFFFFF","border":"#f26db4"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x12DD5501:2","label":"0x12DD5501\nDomain-2","title":"CAN_ID: 0x12DD5501\ndomain: 2","color":{"background":"#f2b16d","border":"#f2b16d","highlight":{"background":"#f2b16d","border":"#f2b16d"},"hover":{"background":"#f2b16d","border":"#f2b16d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x10B:1","label":"0x010B\nDomain-1","title":"CAN_ID: 0x010B\ndomain: 1","color":{"background":"#f26f6d","border":"#f26f6d","highlight":{"background":"#f26f6d","border":"#f26f6d"},"hover":{"background":"#f26f6d","border":"#f26f6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x139:4","label":"0x0139\nDomain-4","title":"CAN_ID: 0x0139\ndomain: 4","color":{"background":"#f2ce6d","border":"#f2ce6d","highlight":{"background":"#f2ce6d","border":"#f2ce6d"},"hover":{"background":"#f2ce6d","border":"#f2ce6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x13D:4","label":"0x013D\nDomain-4","title":"CAN_ID: 0x013D\ndomain: 4","color":{"background":"#f2d06d","border":"#f2d06d","highlight":{"background":"#f2d06d","border":"#f2d06d"},"hover":{"background":"#f2d06d","border":"#f2d06d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x176:2","label":"0x0176\nDomain-2","title":"CAN_ID: 0x0176\ndomain: 2","color":{"background":"#85f26d","border":"#85f26d","highlight":{"background":"#85f26d","border":"#85f26d"},"hover":{"background":"#85f26d","border":"#85f26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x641:3","label":"0x0641\nDomain-3","title":"CAN_ID: 0x0641\ndomain: 3","color":{"background":"#f26dce","border":"#f26dce","highlight":{"background":"#f26dce","border":"#f26dce"},"hover":{"background":"#f26dce","border":"#f26dce"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5555AC:2","label":"0x1A5555AC\nDomain-2","title":"CAN_ID: 0x1A5555AC\ndomain: 2","color":{"background":"#6df2d0","border":"#6df2d0","highlight":{"background":"#6df2d0","border":"#6df2d0"},"hover":{"background":"#6df2d0","border":"#6df2d0"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5555BF:3","label":"0x1A5555BF\nDomain-3","title":"CAN_ID: 0x1A5555BF\ndomain: 3","color":{"background":"#6df2df","border":"#6df2df","highlight":{"background":"#6df2df","border":"#6df2df"},"hover":{"background":"#6df2df","border":"#6df2df"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x6B4:1","label":"0x06B4\nDomain-1","title":"CAN_ID: 0x06B4\ndomain: 1","color":{"background":"#f26db1","border":"#f26db1","highlight":{"background":"#f26db1","border":"#f26db1"},"hover":{"background":"#f26db1","border":"#f26db1"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD553D:1","label":"0x12DD553D\nDomain-1","title":"CAN_ID: 0x12DD553D\ndomain: 1","color":{"background":"#f2b96d","border":"#f2b96d","highlight":{"background":"#f2b96d","border":"#f2b96d"},"hover":{"background":"#f2b96d","border":"#f2b96d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x397:4","label":"0x0397\nDomain-4","title":"CAN_ID: 0x0397\ndomain: 4","color":{"background":"#906df2","border":"#906df2","highlight":{"background":"#906df2","border":"#906df2"},"hover":{"background":"#906df2","border":"#906df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x24F:4","label":"0x024F\nDomain-4","title":"CAN_ID: 0x024F\ndomain: 4","color":{"background":"#6d9bf2","border":"#6d9bf2","highlight":{"background":"#6d9bf2","border":"#6d9bf2"},"hover":{"background":"#6d9bf2","border":"#6d9bf2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD5496:2","label":"0x12DD5496\nDomain-2","title":"CAN_ID: 0x12DD5496\ndomain: 2","color":{"background":"#f2896d","border":"#f2896d","highlight":{"background":"#f2896d","border":"#f2896d"},"hover":{"background":"#f2896d","border":"#f2896d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x17F00010:4","label":"0x17F00010\nDomain-4","title":"CAN_ID: 0x17F00010\ndomain: 4","color":{"background":"#82f26d","border":"#82f26d","highlight":{"background":"#82f26d","border":"#82f26d"},"hover":{"background":"#82f26d","border":"#82f26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5555B7:2","label":"0x1A5555B7\nDomain-2","title":"CAN_ID: 0x1A5555B7\ndomain: 2","color":{"background":"#6df2d7","border":"#6df2d7","highlight":{"background":"#6df2d7","border":"#6df2d7"},"hover":{"background":"#6df2d7","border":"#6df2d7"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x303:0","label":"0x0303\nDomain-0","title":"CAN_ID: 0x0303\ndomain: 0","color":{"background":"#FFFFFF","border":"#6d79f2","highlight":{"background":"#FFFFFF","border":"#6d79f2"},"hover":{"background":"#FFFFFF","border":"#6d79f2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x14C:2","label":"0x014C\nDomain-2","title":"CAN_ID: 0x014C\ndomain: 2","color":{"background":"#f2de6d","border":"#f2de6d","highlight":{"background":"#f2de6d","border":"#f2de6d"},"hover":{"background":"#f2de6d","border":"#f2de6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3FB:0","label":"0x03FB\nDomain-0","title":"CAN_ID: 0x03FB\ndomain: 0","color":{"background":"#FFFFFF","border":"#b46df2","highlight":{"background":"#FFFFFF","border":"#b46df2"},"hover":{"background":"#FFFFFF","border":"#b46df2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x1A555541:0","label":"0x1A555541\nDomain-0","title":"CAN_ID: 0x1A555541\ndomain: 0","color":{"background":"#FFFFFF","border":"#6df2b5","highlight":{"background":"#FFFFFF","border":"#6df2b5"},"hover":{"background":"#FFFFFF","border":"#6df2b5"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x1A555521:2","label":"0x1A555521\nDomain-2","title":"CAN_ID: 0x1A555521\ndomain: 2","color":{"background":"#6df2b0","border":"#6df2b0","highlight":{"background":"#6df2b0","border":"#6df2b0"},"hover":{"background":"#6df2b0","border":"#6df2b0"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556E9:1","label":"0x1A5556E9\nDomain-1","title":"CAN_ID: 0x1A5556E9\ndomain: 1","color":{"background":"#6df2f2","border":"#6df2f2","highlight":{"background":"#6df2f2","border":"#6df2f2"},"hover":{"background":"#6df2f2","border":"#6df2f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x65D:1","label":"0x065D\nDomain-1","title":"CAN_ID: 0x065D\ndomain: 1","color":{"background":"#f26dc1","border":"#f26dc1","highlight":{"background":"#f26dc1","border":"#f26dc1"},"hover":{"background":"#f26dc1","border":"#f26dc1"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555548:2","label":"0x1A555548\nDomain-2","title":"CAN_ID: 0x1A555548\ndomain: 2","color":{"background":"#6df2b8","border":"#6df2b8","highlight":{"background":"#6df2b8","border":"#6df2b8"},"hover":{"background":"#6df2b8","border":"#6df2b8"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x303:4","label":"0x0303\nDomain-4","title":"CAN_ID: 0x0303\ndomain: 4","color":{"background":"#6d79f2","border":"#6d79f2","highlight":{"background":"#6d79f2","border":"#6d79f2"},"hover":{"background":"#6d79f2","border":"#6d79f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD5501:1","label":"0x12DD5501\nDomain-1","title":"CAN_ID: 0x12DD5501\ndomain: 1","color":{"background":"#f2b16d","border":"#f2b16d","highlight":{"background":"#f2b16d","border":"#f2b16d"},"hover":{"background":"#f2b16d","border":"#f2b16d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x10B:0","label":"0x010B\nDomain-0","title":"CAN_ID: 0x010B\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26f6d","highlight":{"background":"#FFFFFF","border":"#f26f6d"},"hover":{"background":"#FFFFFF","border":"#f26f6d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x641:2","label":"0x0641\nDomain-2","title":"CAN_ID: 0x0641\ndomain: 2","color":{"background":"#f26dce","border":"#f26dce","highlight":{"background":"#f26dce","border":"#f26dce"},"hover":{"background":"#f26dce","border":"#f26dce"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5555AC:1","label":"0x1A5555AC\nDomain-1","title":"CAN_ID: 0x1A5555AC\ndomain: 1","color":{"background":"#6df2d0","border":"#6df2d0","highlight":{"background":"#6df2d0","border":"#6df2d0"},"hover":{"background":"#6df2d0","border":"#6df2d0"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x138:2","label":"0x0138\nDomain-2","title":"CAN_ID: 0x0138\ndomain: 2","color":{"background":"#f2cb6d","border":"#f2cb6d","highlight":{"background":"#f2cb6d","border":"#f2cb6d"},"hover":{"background":"#f2cb6d","border":"#f2cb6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3FB:4","label":"0x03FB\nDomain-4","title":"CAN_ID: 0x03FB\ndomain: 4","color":{"background":"#b46df2","border":"#b46df2","highlight":{"background":"#b46df2","border":"#b46df2"},"hover":{"background":"#b46df2","border":"#b46df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD553D:0","label":"0x12DD553D\nDomain-0","title":"CAN_ID: 0x12DD553D\ndomain: 0","color":{"background":"#FFFFFF","border":"#f2b96d","highlight":{"background":"#FFFFFF","border":"#f2b96d"},"hover":{"background":"#FFFFFF","border":"#f2b96d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x3F:0","label":"0x003F\nDomain-0","title":"CAN_ID: 0x003F\ndomain: 0","color":{"background":"#FFFFFF","border":"#b26df2","highlight":{"background":"#FFFFFF","border":"#b26df2"},"hover":{"background":"#FFFFFF","border":"#b26df2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x116:2","label":"0x0116\nDomain-2","title":"CAN_ID: 0x0116\ndomain: 2","color":{"background":"#f2746d","border":"#f2746d","highlight":{"background":"#f2746d","border":"#f2746d"},"hover":{"background":"#f2746d","border":"#f2746d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD5496:1","label":"0x12DD5496\nDomain-1","title":"CAN_ID: 0x12DD5496\ndomain: 1","color":{"background":"#f2896d","border":"#f2896d","highlight":{"background":"#f2896d","border":"#f2896d"},"hover":{"background":"#f2896d","border":"#f2896d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x17F00010:3","label":"0x17F00010\nDomain-3","title":"CAN_ID: 0x17F00010\ndomain: 3","color":{"background":"#82f26d","border":"#82f26d","highlight":{"background":"#82f26d","border":"#82f26d"},"hover":{"background":"#82f26d","border":"#82f26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556E9:5","label":"0x1A5556E9\nDomain-5","title":"CAN_ID: 0x1A5556E9\ndomain: 5","color":{"background":"#6df2f2","border":"#6df2f2","highlight":{"background":"#6df2f2","border":"#6df2f2"},"hover":{"background":"#6df2f2","border":"#6df2f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5555B7:1","label":"0x1A5555B7\nDomain-1","title":"CAN_ID: 0x1A5555B7\ndomain: 1","color":{"background":"#6df2d7","border":"#6df2d7","highlight":{"background":"#6df2d7","border":"#6df2d7"},"hover":{"background":"#6df2d7","border":"#6df2d7"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556E9:0","label":"0x1A5556E9\nDomain-0","title":"CAN_ID: 0x1A5556E9\ndomain: 0","color":{"background":"#FFFFFF","border":"#6df2f2","highlight":{"background":"#FFFFFF","border":"#6df2f2"},"hover":{"background":"#FFFFFF","border":"#6df2f2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0xE4:2","label":"0x00E4\nDomain-2","title":"CAN_ID: 0x00E4\ndomain: 2","color":{"background":"#f26d7f","border":"#f26d7f","highlight":{"background":"#f26d7f","border":"#f26d7f"},"hover":{"background":"#f26d7f","border":"#f26d7f"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3D5:4","label":"0x03D5\nDomain-4","title":"CAN_ID: 0x03D5\ndomain: 4","color":{"background":"#a26df2","border":"#a26df2","highlight":{"background":"#a26df2","border":"#a26df2"},"hover":{"background":"#a26df2","border":"#a26df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x14D:2","label":"0x014D\nDomain-2","title":"CAN_ID: 0x014D\ndomain: 2","color":{"background":"#f2e06d","border":"#f2e06d","highlight":{"background":"#f2e06d","border":"#f2e06d"},"hover":{"background":"#f2e06d","border":"#f2e06d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x32A:0","label":"0x032A\nDomain-0","title":"CAN_ID: 0x032A\ndomain: 0","color":{"background":"#FFFFFF","border":"#6d6ef2","highlight":{"background":"#FFFFFF","border":"#6d6ef2"},"hover":{"background":"#FFFFFF","border":"#6d6ef2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x641:1","label":"0x0641\nDomain-1","title":"CAN_ID: 0x0641\ndomain: 1","color":{"background":"#f26dce","border":"#f26dce","highlight":{"background":"#f26dce","border":"#f26dce"},"hover":{"background":"#f26dce","border":"#f26dce"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x65F:4","label":"0x065F\nDomain-4","title":"CAN_ID: 0x065F\ndomain: 4","color":{"background":"#f26dbe","border":"#f26dbe","highlight":{"background":"#f26dbe","border":"#f26dbe"},"hover":{"background":"#f26dbe","border":"#f26dbe"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x116:1","label":"0x0116\nDomain-1","title":"CAN_ID: 0x0116\ndomain: 1","color":{"background":"#f2746d","border":"#f2746d","highlight":{"background":"#f2746d","border":"#f2746d"},"hover":{"background":"#f2746d","border":"#f2746d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556E9:4","label":"0x1A5556E9\nDomain-4","title":"CAN_ID: 0x1A5556E9\ndomain: 4","color":{"background":"#6df2f2","border":"#6df2f2","highlight":{"background":"#6df2f2","border":"#6df2f2"},"hover":{"background":"#6df2f2","border":"#6df2f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556EA:5","label":"0x1A5556EA\nDomain-5","title":"CAN_ID: 0x1A5556EA\ndomain: 5","color":{"background":"#6deff2","border":"#6deff2","highlight":{"background":"#6deff2","border":"#6deff2"},"hover":{"background":"#6deff2","border":"#6deff2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x366:0","label":"0x0366\nDomain-0","title":"CAN_ID: 0x0366\ndomain: 0","color":{"background":"#FFFFFF","border":"#7d6df2","highlight":{"background":"#FFFFFF","border":"#7d6df2"},"hover":{"background":"#FFFFFF","border":"#7d6df2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x25D:2","label":"0x025D\nDomain-2","title":"CAN_ID: 0x025D\ndomain: 2","color":{"background":"#6d98f2","border":"#6d98f2","highlight":{"background":"#6d98f2","border":"#6d98f2"},"hover":{"background":"#6d98f2","border":"#6d98f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x9F:4","label":"0x009F\nDomain-4","title":"CAN_ID: 0x009F\ndomain: 4","color":{"background":"#f26da9","border":"#f26da9","highlight":{"background":"#f26da9","border":"#f26da9"},"hover":{"background":"#f26da9","border":"#f26da9"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x32A:4","label":"0x032A\nDomain-4","title":"CAN_ID: 0x032A\ndomain: 4","color":{"background":"#6d6ef2","border":"#6d6ef2","highlight":{"background":"#6d6ef2","border":"#6d6ef2"},"hover":{"background":"#6d6ef2","border":"#6d6ef2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12B:1","label":"0x012B\nDomain-1","title":"CAN_ID: 0x012B\ndomain: 1","color":{"background":"#f27f6d","border":"#f27f6d","highlight":{"background":"#f27f6d","border":"#f27f6d"},"hover":{"background":"#f27f6d","border":"#f27f6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555628:4","label":"0x1A555628\nDomain-4","title":"CAN_ID: 0x1A555628\ndomain: 4","color":{"background":"#6df2e2","border":"#6df2e2","highlight":{"background":"#6df2e2","border":"#6df2e2"},"hover":{"background":"#6df2e2","border":"#6df2e2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x481:1","label":"0x0481\nDomain-1","title":"CAN_ID: 0x0481\ndomain: 1","color":{"background":"#cc6df2","border":"#cc6df2","highlight":{"background":"#cc6df2","border":"#cc6df2"},"hover":{"background":"#cc6df2","border":"#cc6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xE4:1","label":"0x00E4\nDomain-1","title":"CAN_ID: 0x00E4\ndomain: 1","color":{"background":"#f26d7f","border":"#f26d7f","highlight":{"background":"#f26d7f","border":"#f26d7f"},"hover":{"background":"#f26d7f","border":"#f26d7f"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556EA:0","label":"0x1A5556EA\nDomain-0","title":"CAN_ID: 0x1A5556EA\ndomain: 0","color":{"background":"#FFFFFF","border":"#6deff2","highlight":{"background":"#FFFFFF","border":"#6deff2"},"hover":{"background":"#FFFFFF","border":"#6deff2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x3D5:3","label":"0x03D5\nDomain-3","title":"CAN_ID: 0x03D5\ndomain: 3","color":{"background":"#a26df2","border":"#a26df2","highlight":{"background":"#a26df2","border":"#a26df2"},"hover":{"background":"#a26df2","border":"#a26df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x16A954C2:0","label":"0x16A954C2\nDomain-0","title":"CAN_ID: 0x16A954C2\ndomain: 0","color":{"background":"#FFFFFF","border":"#c4f26d","highlight":{"background":"#FFFFFF","border":"#c4f26d"},"hover":{"background":"#FFFFFF","border":"#c4f26d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x366:4","label":"0x0366\nDomain-4","title":"CAN_ID: 0x0366\ndomain: 4","color":{"background":"#7d6df2","border":"#7d6df2","highlight":{"background":"#7d6df2","border":"#7d6df2"},"hover":{"background":"#7d6df2","border":"#7d6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x14D:1","label":"0x014D\nDomain-1","title":"CAN_ID: 0x014D\ndomain: 1","color":{"background":"#f2e06d","border":"#f2e06d","highlight":{"background":"#f2e06d","border":"#f2e06d"},"hover":{"background":"#f2e06d","border":"#f2e06d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD5497:2","label":"0x12DD5497\nDomain-2","title":"CAN_ID: 0x12DD5497\ndomain: 2","color":{"background":"#f28c6d","border":"#f28c6d","highlight":{"background":"#f28c6d","border":"#f28c6d"},"hover":{"background":"#f28c6d","border":"#f28c6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x16A9545F:1","label":"0x16A9545F\nDomain-1","title":"CAN_ID: 0x16A9545F\ndomain: 1","color":{"background":"#d7f26d","border":"#d7f26d","highlight":{"background":"#d7f26d","border":"#d7f26d"},"hover":{"background":"#d7f26d","border":"#d7f26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xFC:1","label":"0x00FC\nDomain-1","title":"CAN_ID: 0x00FC\ndomain: 1","color":{"background":"#f26d72","border":"#f26d72","highlight":{"background":"#f26d72","border":"#f26d72"},"hover":{"background":"#f26d72","border":"#f26d72"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12B:5","label":"0x012B\nDomain-5","title":"CAN_ID: 0x012B\ndomain: 5","color":{"background":"#f27f6d","border":"#f27f6d","highlight":{"background":"#f27f6d","border":"#f27f6d"},"hover":{"background":"#f27f6d","border":"#f27f6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x670:1","label":"0x0670\nDomain-1","title":"CAN_ID: 0x0670\ndomain: 1","color":{"background":"#f26db9","border":"#f26db9","highlight":{"background":"#f26db9","border":"#f26db9"},"hover":{"background":"#f26db9","border":"#f26db9"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD54D6:2","label":"0x12DD54D6\nDomain-2","title":"CAN_ID: 0x12DD54D6\ndomain: 2","color":{"background":"#f2a16d","border":"#f2a16d","highlight":{"background":"#f2a16d","border":"#f2a16d"},"hover":{"background":"#f2a16d","border":"#f2a16d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x16A954C4:4","label":"0x16A954C4\nDomain-4","title":"CAN_ID: 0x16A954C4\ndomain: 4","color":{"background":"#bff26d","border":"#bff26d","highlight":{"background":"#bff26d","border":"#bff26d"},"hover":{"background":"#bff26d","border":"#bff26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A4:1","label":"0x01A4\nDomain-1","title":"CAN_ID: 0x01A4\ndomain: 1","color":{"background":"#6df2a0","border":"#6df2a0","highlight":{"background":"#6df2a0","border":"#6df2a0"},"hover":{"background":"#6df2a0","border":"#6df2a0"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556EA:4","label":"0x1A5556EA\nDomain-4","title":"CAN_ID: 0x1A5556EA\ndomain: 4","color":{"background":"#6deff2","border":"#6deff2","highlight":{"background":"#6deff2","border":"#6deff2"},"hover":{"background":"#6deff2","border":"#6deff2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x16A954C2:4","label":"0x16A954C2\nDomain-4","title":"CAN_ID: 0x16A954C2\ndomain: 4","color":{"background":"#c4f26d","border":"#c4f26d","highlight":{"background":"#c4f26d","border":"#c4f26d"},"hover":{"background":"#c4f26d","border":"#c4f26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x31B:0","label":"0x031B\nDomain-0","title":"CAN_ID: 0x031B\ndomain: 0","color":{"background":"#FFFFFF","border":"#6d74f2","highlight":{"background":"#FFFFFF","border":"#6d74f2"},"hover":{"background":"#FFFFFF","border":"#6d74f2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x3D4:0","label":"0x03D4\nDomain-0","title":"CAN_ID: 0x03D4\ndomain: 0","color":{"background":"#FFFFFF","border":"#9f6df2","highlight":{"background":"#FFFFFF","border":"#9f6df2"},"hover":{"background":"#FFFFFF","border":"#9f6df2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x5BE:2","label":"0x05BE\nDomain-2","title":"CAN_ID: 0x05BE\ndomain: 2","color":{"background":"#f26de3","border":"#f26de3","highlight":{"background":"#f26de3","border":"#f26de3"},"hover":{"background":"#f26de3","border":"#f26de3"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x5A7:2","label":"0x05A7\nDomain-2","title":"CAN_ID: 0x05A7\ndomain: 2","color":{"background":"#f26de8","border":"#f26de8","highlight":{"background":"#f26de8","border":"#f26de8"},"hover":{"background":"#f26de8","border":"#f26de8"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x545:0","label":"0x0545\nDomain-0","title":"CAN_ID: 0x0545\ndomain: 0","color":{"background":"#FFFFFF","border":"#d96df2","highlight":{"background":"#FFFFFF","border":"#d96df2"},"hover":{"background":"#FFFFFF","border":"#d96df2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x2C2:1","label":"0x02C2\nDomain-1","title":"CAN_ID: 0x02C2\ndomain: 1","color":{"background":"#6d81f2","border":"#6d81f2","highlight":{"background":"#6d81f2","border":"#6d81f2"},"hover":{"background":"#6d81f2","border":"#6d81f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3E5:4","label":"0x03E5\nDomain-4","title":"CAN_ID: 0x03E5\ndomain: 4","color":{"background":"#ad6df2","border":"#ad6df2","highlight":{"background":"#ad6df2","border":"#ad6df2"},"hover":{"background":"#ad6df2","border":"#ad6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x14D:0","label":"0x014D\nDomain-0","title":"CAN_ID: 0x014D\ndomain: 0","color":{"background":"#FFFFFF","border":"#f2e06d","highlight":{"background":"#FFFFFF","border":"#f2e06d"},"hover":{"background":"#FFFFFF","border":"#f2e06d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x3D4:4","label":"0x03D4\nDomain-4","title":"CAN_ID: 0x03D4\ndomain: 4","color":{"background":"#9f6df2","border":"#9f6df2","highlight":{"background":"#9f6df2","border":"#9f6df2"},"hover":{"background":"#9f6df2","border":"#9f6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xFD:3","label":"0x00FD\nDomain-3","title":"CAN_ID: 0x00FD\ndomain: 3","color":{"background":"#f26d6f","border":"#f26d6f","highlight":{"background":"#f26d6f","border":"#f26d6f"},"hover":{"background":"#f26d6f","border":"#f26d6f"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x16A9545F:0","label":"0x16A9545F\nDomain-0","title":"CAN_ID: 0x16A9545F\ndomain: 0","color":{"background":"#FFFFFF","border":"#d7f26d","highlight":{"background":"#FFFFFF","border":"#d7f26d"},"hover":{"background":"#FFFFFF","border":"#d7f26d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x3BE:1","label":"0x03BE\nDomain-1","title":"CAN_ID: 0x03BE\ndomain: 1","color":{"background":"#956df2","border":"#956df2","highlight":{"background":"#956df2","border":"#956df2"},"hover":{"background":"#956df2","border":"#956df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5555A6:4","label":"0x1A5555A6\nDomain-4","title":"CAN_ID: 0x1A5555A6\ndomain: 4","color":{"background":"#6df2ca","border":"#6df2ca","highlight":{"background":"#6df2ca","border":"#6df2ca"},"hover":{"background":"#6df2ca","border":"#6df2ca"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xFC:0","label":"0x00FC\nDomain-0","title":"CAN_ID: 0x00FC\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26d72","highlight":{"background":"#FFFFFF","border":"#f26d72"},"hover":{"background":"#FFFFFF","border":"#f26d72"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x12B:4","label":"0x012B\nDomain-4","title":"CAN_ID: 0x012B\ndomain: 4","color":{"background":"#f27f6d","border":"#f27f6d","highlight":{"background":"#f27f6d","border":"#f27f6d"},"hover":{"background":"#f27f6d","border":"#f27f6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x545:4","label":"0x0545\nDomain-4","title":"CAN_ID: 0x0545\ndomain: 4","color":{"background":"#d96df2","border":"#d96df2","highlight":{"background":"#d96df2","border":"#d96df2"},"hover":{"background":"#d96df2","border":"#d96df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x670:0","label":"0x0670\nDomain-0","title":"CAN_ID: 0x0670\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26db9","highlight":{"background":"#FFFFFF","border":"#f26db9"},"hover":{"background":"#FFFFFF","border":"#f26db9"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x643:1","label":"0x0643\nDomain-1","title":"CAN_ID: 0x0643\ndomain: 1","color":{"background":"#f26dcb","border":"#f26dcb","highlight":{"background":"#f26dcb","border":"#f26dcb"},"hover":{"background":"#f26dcb","border":"#f26dcb"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xDB:2","label":"0x00DB\nDomain-2","title":"CAN_ID: 0x00DB\ndomain: 2","color":{"background":"#f26d82","border":"#f26d82","highlight":{"background":"#f26d82","border":"#f26d82"},"hover":{"background":"#f26d82","border":"#f26d82"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x102:2","label":"0x0102\nDomain-2","title":"CAN_ID: 0x0102\ndomain: 2","color":{"background":"#f26d6d","border":"#f26d6d","highlight":{"background":"#f26d6d","border":"#f26d6d"},"hover":{"background":"#f26d6d","border":"#f26d6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x6B2:4","label":"0x06B2\nDomain-4","title":"CAN_ID: 0x06B2\ndomain: 4","color":{"background":"#f26db4","border":"#f26db4","highlight":{"background":"#f26db4","border":"#f26db4"},"hover":{"background":"#f26db4","border":"#f26db4"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x481:4","label":"0x0481\nDomain-4","title":"CAN_ID: 0x0481\ndomain: 4","color":{"background":"#cc6df2","border":"#cc6df2","highlight":{"background":"#cc6df2","border":"#cc6df2"},"hover":{"background":"#cc6df2","border":"#cc6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A4:0","label":"0x01A4\nDomain-0","title":"CAN_ID: 0x01A4\ndomain: 0","color":{"background":"#FFFFFF","border":"#6df2a0","highlight":{"background":"#FFFFFF","border":"#6df2a0"},"hover":{"background":"#FFFFFF","border":"#6df2a0"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0xAD:0","label":"0x00AD\nDomain-0","title":"CAN_ID: 0x00AD\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26da4","highlight":{"background":"#FFFFFF","border":"#f26da4"},"hover":{"background":"#FFFFFF","border":"#f26da4"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x5BE:1","label":"0x05BE\nDomain-1","title":"CAN_ID: 0x05BE\ndomain: 1","color":{"background":"#f26de3","border":"#f26de3","highlight":{"background":"#f26de3","border":"#f26de3"},"hover":{"background":"#f26de3","border":"#f26de3"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xFC:4","label":"0x00FC\nDomain-4","title":"CAN_ID: 0x00FC\ndomain: 4","color":{"background":"#f26d72","border":"#f26d72","highlight":{"background":"#f26d72","border":"#f26d72"},"hover":{"background":"#f26d72","border":"#f26d72"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x5A0:0","label":"0x05A0\nDomain-0","title":"CAN_ID: 0x05A0\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26ded","highlight":{"background":"#FFFFFF","border":"#f26ded"},"hover":{"background":"#FFFFFF","border":"#f26ded"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x1F0:4","label":"0x01F0\nDomain-4","title":"CAN_ID: 0x01F0\ndomain: 4","color":{"background":"#6dbbf2","border":"#6dbbf2","highlight":{"background":"#6dbbf2","border":"#6dbbf2"},"hover":{"background":"#6dbbf2","border":"#6dbbf2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x670:4","label":"0x0670\nDomain-4","title":"CAN_ID: 0x0670\ndomain: 4","color":{"background":"#f26db9","border":"#f26db9","highlight":{"background":"#f26db9","border":"#f26db9"},"hover":{"background":"#f26db9","border":"#f26db9"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3C0:2","label":"0x03C0\nDomain-2","title":"CAN_ID: 0x03C0\ndomain: 2","color":{"background":"#976df2","border":"#976df2","highlight":{"background":"#976df2","border":"#976df2"},"hover":{"background":"#976df2","border":"#976df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x421:0","label":"0x0421\nDomain-0","title":"CAN_ID: 0x0421\ndomain: 0","color":{"background":"#FFFFFF","border":"#c26df2","highlight":{"background":"#FFFFFF","border":"#c26df2"},"hover":{"background":"#FFFFFF","border":"#c26df2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x40:2","label":"0x0040\nDomain-2","title":"CAN_ID: 0x0040\ndomain: 2","color":{"background":"#ba6df2","border":"#ba6df2","highlight":{"background":"#ba6df2","border":"#ba6df2"},"hover":{"background":"#ba6df2","border":"#ba6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x2C2:0","label":"0x02C2\nDomain-0","title":"CAN_ID: 0x02C2\ndomain: 0","color":{"background":"#FFFFFF","border":"#6d81f2","highlight":{"background":"#FFFFFF","border":"#6d81f2"},"hover":{"background":"#FFFFFF","border":"#6d81f2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x176:1","label":"0x0176\nDomain-1","title":"CAN_ID: 0x0176\ndomain: 1","color":{"background":"#85f26d","border":"#85f26d","highlight":{"background":"#85f26d","border":"#85f26d"},"hover":{"background":"#85f26d","border":"#85f26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x206:2","label":"0x0206\nDomain-2","title":"CAN_ID: 0x0206\ndomain: 2","color":{"background":"#6db3f2","border":"#6db3f2","highlight":{"background":"#6db3f2","border":"#6db3f2"},"hover":{"background":"#6db3f2","border":"#6db3f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xFD:2","label":"0x00FD\nDomain-2","title":"CAN_ID: 0x00FD\ndomain: 2","color":{"background":"#f26d6f","border":"#f26d6f","highlight":{"background":"#f26d6f","border":"#f26d6f"},"hover":{"background":"#f26d6f","border":"#f26d6f"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3BE:0","label":"0x03BE\nDomain-0","title":"CAN_ID: 0x03BE\ndomain: 0","color":{"background":"#FFFFFF","border":"#956df2","highlight":{"background":"#FFFFFF","border":"#956df2"},"hover":{"background":"#FFFFFF","border":"#956df2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x1A5555BF:2","label":"0x1A5555BF\nDomain-2","title":"CAN_ID: 0x1A5555BF\ndomain: 2","color":{"background":"#6df2df","border":"#6df2df","highlight":{"background":"#6df2df","border":"#6df2df"},"hover":{"background":"#6df2df","border":"#6df2df"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x6B4:0","label":"0x06B4\nDomain-0","title":"CAN_ID: 0x06B4\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26db1","highlight":{"background":"#FFFFFF","border":"#f26db1"},"hover":{"background":"#FFFFFF","border":"#f26db1"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x1A55566B:2","label":"0x1A55566B\nDomain-2","title":"CAN_ID: 0x1A55566B\ndomain: 2","color":{"background":"#6df2e7","border":"#6df2e7","highlight":{"background":"#6df2e7","border":"#6df2e7"},"hover":{"background":"#6df2e7","border":"#6df2e7"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x5A0:4","label":"0x05A0\nDomain-4","title":"CAN_ID: 0x05A0\ndomain: 4","color":{"background":"#f26ded","border":"#f26ded","highlight":{"background":"#f26ded","border":"#f26ded"},"hover":{"background":"#f26ded","border":"#f26ded"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555541:4","label":"0x1A555541\nDomain-4","title":"CAN_ID: 0x1A555541\ndomain: 4","color":{"background":"#6df2b5","border":"#6df2b5","highlight":{"background":"#6df2b5","border":"#6df2b5"},"hover":{"background":"#6df2b5","border":"#6df2b5"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x20D:2","label":"0x020D\nDomain-2","title":"CAN_ID: 0x020D\ndomain: 2","color":{"background":"#6dabf2","border":"#6dabf2","highlight":{"background":"#6dabf2","border":"#6dabf2"},"hover":{"background":"#6dabf2","border":"#6dabf2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x6B2:3","label":"0x06B2\nDomain-3","title":"CAN_ID: 0x06B2\ndomain: 3","color":{"background":"#f26db4","border":"#f26db4","highlight":{"background":"#f26db4","border":"#f26db4"},"hover":{"background":"#f26db4","border":"#f26db4"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x14C:1","label":"0x014C\nDomain-1","title":"CAN_ID: 0x014C\ndomain: 1","color":{"background":"#f2de6d","border":"#f2de6d","highlight":{"background":"#f2de6d","border":"#f2de6d"},"hover":{"background":"#f2de6d","border":"#f2de6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD5501:5","label":"0x12DD5501\nDomain-5","title":"CAN_ID: 0x12DD5501\ndomain: 5","color":{"background":"#f2b16d","border":"#f2b16d","highlight":{"background":"#f2b16d","border":"#f2b16d"},"hover":{"background":"#f2b16d","border":"#f2b16d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x10B:4","label":"0x010B\nDomain-4","title":"CAN_ID: 0x010B\ndomain: 4","color":{"background":"#f26f6d","border":"#f26f6d","highlight":{"background":"#f26f6d","border":"#f26f6d"},"hover":{"background":"#f26f6d","border":"#f26f6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3BE:4","label":"0x03BE\nDomain-4","title":"CAN_ID: 0x03BE\ndomain: 4","color":{"background":"#956df2","border":"#956df2","highlight":{"background":"#956df2","border":"#956df2"},"hover":{"background":"#956df2","border":"#956df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x520:2","label":"0x0520\nDomain-2","title":"CAN_ID: 0x0520\ndomain: 2","color":{"background":"#d76df2","border":"#d76df2","highlight":{"background":"#d76df2","border":"#d76df2"},"hover":{"background":"#d76df2","border":"#d76df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x6B4:4","label":"0x06B4\nDomain-4","title":"CAN_ID: 0x06B4\ndomain: 4","color":{"background":"#f26db1","border":"#f26db1","highlight":{"background":"#f26db1","border":"#f26db1"},"hover":{"background":"#f26db1","border":"#f26db1"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD54C9:0","label":"0x12DD54C9\nDomain-0","title":"CAN_ID: 0x12DD54C9\ndomain: 0","color":{"background":"#FFFFFF","border":"#f2996d","highlight":{"background":"#FFFFFF","border":"#f2996d"},"hover":{"background":"#FFFFFF","border":"#f2996d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x12DD553D:4","label":"0x12DD553D\nDomain-4","title":"CAN_ID: 0x12DD553D\ndomain: 4","color":{"background":"#f2b96d","border":"#f2b96d","highlight":{"background":"#f2b96d","border":"#f2b96d"},"hover":{"background":"#f2b96d","border":"#f2b96d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555521:1","label":"0x1A555521\nDomain-1","title":"CAN_ID: 0x1A555521\ndomain: 1","color":{"background":"#6df2b0","border":"#6df2b0","highlight":{"background":"#6df2b0","border":"#6df2b0"},"hover":{"background":"#6df2b0","border":"#6df2b0"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555564:2","label":"0x1A555564\nDomain-2","title":"CAN_ID: 0x1A555564\ndomain: 2","color":{"background":"#6df2c2","border":"#6df2c2","highlight":{"background":"#6df2c2","border":"#6df2c2"},"hover":{"background":"#6df2c2","border":"#6df2c2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x65D:0","label":"0x065D\nDomain-0","title":"CAN_ID: 0x065D\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26dc1","highlight":{"background":"#FFFFFF","border":"#f26dc1"},"hover":{"background":"#FFFFFF","border":"#f26dc1"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x3C0:1","label":"0x03C0\nDomain-1","title":"CAN_ID: 0x03C0\ndomain: 1","color":{"background":"#976df2","border":"#976df2","highlight":{"background":"#976df2","border":"#976df2"},"hover":{"background":"#976df2","border":"#976df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x86:2","label":"0x0086\nDomain-2","title":"CAN_ID: 0x0086\ndomain: 2","color":{"background":"#f26dac","border":"#f26dac","highlight":{"background":"#f26dac","border":"#f26dac"},"hover":{"background":"#f26dac","border":"#f26dac"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555548:1","label":"0x1A555548\nDomain-1","title":"CAN_ID: 0x1A555548\ndomain: 1","color":{"background":"#6df2b8","border":"#6df2b8","highlight":{"background":"#6df2b8","border":"#6df2b8"},"hover":{"background":"#6df2b8","border":"#6df2b8"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x40:1","label":"0x0040\nDomain-1","title":"CAN_ID: 0x0040\ndomain: 1","color":{"background":"#ba6df2","border":"#ba6df2","highlight":{"background":"#ba6df2","border":"#ba6df2"},"hover":{"background":"#ba6df2","border":"#ba6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD5501:0","label":"0x12DD5501\nDomain-0","title":"CAN_ID: 0x12DD5501\ndomain: 0","color":{"background":"#FFFFFF","border":"#f2b16d","highlight":{"background":"#FFFFFF","border":"#f2b16d"},"hover":{"background":"#FFFFFF","border":"#f2b16d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x139:2","label":"0x0139\nDomain-2","title":"CAN_ID: 0x0139\ndomain: 2","color":{"background":"#f2ce6d","border":"#f2ce6d","highlight":{"background":"#f2ce6d","border":"#f2ce6d"},"hover":{"background":"#f2ce6d","border":"#f2ce6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x13D:2","label":"0x013D\nDomain-2","title":"CAN_ID: 0x013D\ndomain: 2","color":{"background":"#f2d06d","border":"#f2d06d","highlight":{"background":"#f2d06d","border":"#f2d06d"},"hover":{"background":"#f2d06d","border":"#f2d06d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x176:0","label":"0x0176\nDomain-0","title":"CAN_ID: 0x0176\ndomain: 0","color":{"background":"#FFFFFF","border":"#85f26d","highlight":{"background":"#FFFFFF","border":"#85f26d"},"hover":{"background":"#FFFFFF","border":"#85f26d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x206:1","label":"0x0206\nDomain-1","title":"CAN_ID: 0x0206\ndomain: 1","color":{"background":"#6db3f2","border":"#6db3f2","highlight":{"background":"#6db3f2","border":"#6db3f2"},"hover":{"background":"#6db3f2","border":"#6db3f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5555AC:0","label":"0x1A5555AC\nDomain-0","title":"CAN_ID: 0x1A5555AC\ndomain: 0","color":{"background":"#FFFFFF","border":"#6df2d0","highlight":{"background":"#FFFFFF","border":"#6df2d0"},"hover":{"background":"#FFFFFF","border":"#6df2d0"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x138:1","label":"0x0138\nDomain-1","title":"CAN_ID: 0x0138\ndomain: 1","color":{"background":"#f2cb6d","border":"#f2cb6d","highlight":{"background":"#f2cb6d","border":"#f2cb6d"},"hover":{"background":"#f2cb6d","border":"#f2cb6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5555BF:1","label":"0x1A5555BF\nDomain-1","title":"CAN_ID: 0x1A5555BF\ndomain: 1","color":{"background":"#6df2df","border":"#6df2df","highlight":{"background":"#6df2df","border":"#6df2df"},"hover":{"background":"#6df2df","border":"#6df2df"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5555A6:2","label":"0x1A5555A6\nDomain-2","title":"CAN_ID: 0x1A5555A6\ndomain: 2","color":{"background":"#6df2ca","border":"#6df2ca","highlight":{"background":"#6df2ca","border":"#6df2ca"},"hover":{"background":"#6df2ca","border":"#6df2ca"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x5A0:3","label":"0x05A0\nDomain-3","title":"CAN_ID: 0x05A0\ndomain: 3","color":{"background":"#f26ded","border":"#f26ded","highlight":{"background":"#f26ded","border":"#f26ded"},"hover":{"background":"#f26ded","border":"#f26ded"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x397:2","label":"0x0397\nDomain-2","title":"CAN_ID: 0x0397\ndomain: 2","color":{"background":"#906df2","border":"#906df2","highlight":{"background":"#906df2","border":"#906df2"},"hover":{"background":"#906df2","border":"#906df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD54C9:4","label":"0x12DD54C9\nDomain-4","title":"CAN_ID: 0x12DD54C9\ndomain: 4","color":{"background":"#f2996d","border":"#f2996d","highlight":{"background":"#f2996d","border":"#f2996d"},"hover":{"background":"#f2996d","border":"#f2996d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x331:1","label":"0x0331\nDomain-1","title":"CAN_ID: 0x0331\ndomain: 1","color":{"background":"#6d6df2","border":"#6d6df2","highlight":{"background":"#6d6df2","border":"#6d6df2"},"hover":{"background":"#6d6df2","border":"#6d6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD5496:0","label":"0x12DD5496\nDomain-0","title":"CAN_ID: 0x12DD5496\ndomain: 0","color":{"background":"#FFFFFF","border":"#f2896d","highlight":{"background":"#FFFFFF","border":"#f2896d"},"hover":{"background":"#FFFFFF","border":"#f2896d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x17F00010:2","label":"0x17F00010\nDomain-2","title":"CAN_ID: 0x17F00010\ndomain: 2","color":{"background":"#82f26d","border":"#82f26d","highlight":{"background":"#82f26d","border":"#82f26d"},"hover":{"background":"#82f26d","border":"#82f26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xDB:0","label":"0x00DB\nDomain-0","title":"CAN_ID: 0x00DB\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26d82","highlight":{"background":"#FFFFFF","border":"#f26d82"},"hover":{"background":"#FFFFFF","border":"#f26d82"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x1A5555B7:0","label":"0x1A5555B7\nDomain-0","title":"CAN_ID: 0x1A5555B7\ndomain: 0","color":{"background":"#FFFFFF","border":"#6df2d7","highlight":{"background":"#FFFFFF","border":"#6df2d7"},"hover":{"background":"#FFFFFF","border":"#6df2d7"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x65D:4","label":"0x065D\nDomain-4","title":"CAN_ID: 0x065D\ndomain: 4","color":{"background":"#f26dc1","border":"#f26dc1","highlight":{"background":"#f26dc1","border":"#f26dc1"},"hover":{"background":"#f26dc1","border":"#f26dc1"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555548:5","label":"0x1A555548\nDomain-5","title":"CAN_ID: 0x1A555548\ndomain: 5","color":{"background":"#6df2b8","border":"#6df2b8","highlight":{"background":"#6df2b8","border":"#6df2b8"},"hover":{"background":"#6df2b8","border":"#6df2b8"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD5501:4","label":"0x12DD5501\nDomain-4","title":"CAN_ID: 0x12DD5501\ndomain: 4","color":{"background":"#f2b16d","border":"#f2b16d","highlight":{"background":"#f2b16d","border":"#f2b16d"},"hover":{"background":"#f2b16d","border":"#f2b16d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x641:5","label":"0x0641\nDomain-5","title":"CAN_ID: 0x0641\ndomain: 5","color":{"background":"#f26dce","border":"#f26dce","highlight":{"background":"#f26dce","border":"#f26dce"},"hover":{"background":"#f26dce","border":"#f26dce"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5555AC:4","label":"0x1A5555AC\nDomain-4","title":"CAN_ID: 0x1A5555AC\ndomain: 4","color":{"background":"#6df2d0","border":"#6df2d0","highlight":{"background":"#6df2d0","border":"#6df2d0"},"hover":{"background":"#6df2d0","border":"#6df2d0"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x520:1","label":"0x0520\nDomain-1","title":"CAN_ID: 0x0520\ndomain: 1","color":{"background":"#d76df2","border":"#d76df2","highlight":{"background":"#d76df2","border":"#d76df2"},"hover":{"background":"#d76df2","border":"#d76df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x331:5","label":"0x0331\nDomain-5","title":"CAN_ID: 0x0331\ndomain: 5","color":{"background":"#6d6df2","border":"#6d6df2","highlight":{"background":"#6d6df2","border":"#6d6df2"},"hover":{"background":"#6d6df2","border":"#6d6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD5496:4","label":"0x12DD5496\nDomain-4","title":"CAN_ID: 0x12DD5496\ndomain: 4","color":{"background":"#f2896d","border":"#f2896d","highlight":{"background":"#f2896d","border":"#f2896d"},"hover":{"background":"#f2896d","border":"#f2896d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555564:1","label":"0x1A555564\nDomain-1","title":"CAN_ID: 0x1A555564\ndomain: 1","color":{"background":"#6df2c2","border":"#6df2c2","highlight":{"background":"#6df2c2","border":"#6df2c2"},"hover":{"background":"#6df2c2","border":"#6df2c2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555548:0","label":"0x1A555548\nDomain-0","title":"CAN_ID: 0x1A555548\ndomain: 0","color":{"background":"#FFFFFF","border":"#6df2b8","highlight":{"background":"#FFFFFF","border":"#6df2b8"},"hover":{"background":"#FFFFFF","border":"#6df2b8"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x40:0","label":"0x0040\nDomain-0","title":"CAN_ID: 0x0040\ndomain: 0","color":{"background":"#FFFFFF","border":"#ba6df2","highlight":{"background":"#FFFFFF","border":"#ba6df2"},"hover":{"background":"#FFFFFF","border":"#ba6df2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x303:2","label":"0x0303\nDomain-2","title":"CAN_ID: 0x0303\ndomain: 2","color":{"background":"#6d79f2","border":"#6d79f2","highlight":{"background":"#6d79f2","border":"#6d79f2"},"hover":{"background":"#6d79f2","border":"#6d79f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x139:1","label":"0x0139\nDomain-1","title":"CAN_ID: 0x0139\ndomain: 1","color":{"background":"#f2ce6d","border":"#f2ce6d","highlight":{"background":"#f2ce6d","border":"#f2ce6d"},"hover":{"background":"#f2ce6d","border":"#f2ce6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x641:0","label":"0x0641\nDomain-0","title":"CAN_ID: 0x0641\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26dce","highlight":{"background":"#FFFFFF","border":"#f26dce"},"hover":{"background":"#FFFFFF","border":"#f26dce"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x138:0","label":"0x0138\nDomain-0","title":"CAN_ID: 0x0138\ndomain: 0","color":{"background":"#FFFFFF","border":"#f2cb6d","highlight":{"background":"#FFFFFF","border":"#f2cb6d"},"hover":{"background":"#FFFFFF","border":"#f2cb6d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x26B:5","label":"0x026B\nDomain-5","title":"CAN_ID: 0x026B\ndomain: 5","color":{"background":"#6d8ef2","border":"#6d8ef2","highlight":{"background":"#6d8ef2","border":"#6d8ef2"},"hover":{"background":"#6d8ef2","border":"#6d8ef2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x24F:1","label":"0x024F\nDomain-1","title":"CAN_ID: 0x024F\ndomain: 1","color":{"background":"#6d9bf2","border":"#6d9bf2","highlight":{"background":"#6d9bf2","border":"#6d9bf2"},"hover":{"background":"#6d9bf2","border":"#6d9bf2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555541:2","label":"0x1A555541\nDomain-2","title":"CAN_ID: 0x1A555541\ndomain: 2","color":{"background":"#6df2b5","border":"#6df2b5","highlight":{"background":"#6df2b5","border":"#6df2b5"},"hover":{"background":"#6df2b5","border":"#6df2b5"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x116:0","label":"0x0116\nDomain-0","title":"CAN_ID: 0x0116\ndomain: 0","color":{"background":"#FFFFFF","border":"#f2746d","highlight":{"background":"#FFFFFF","border":"#f2746d"},"hover":{"background":"#FFFFFF","border":"#f2746d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x17F00010:1","label":"0x17F00010\nDomain-1","title":"CAN_ID: 0x17F00010\ndomain: 1","color":{"background":"#82f26d","border":"#82f26d","highlight":{"background":"#82f26d","border":"#82f26d"},"hover":{"background":"#82f26d","border":"#82f26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556E9:3","label":"0x1A5556E9\nDomain-3","title":"CAN_ID: 0x1A5556E9\ndomain: 3","color":{"background":"#6df2f2","border":"#6df2f2","highlight":{"background":"#6df2f2","border":"#6df2f2"},"hover":{"background":"#6df2f2","border":"#6df2f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555548:4","label":"0x1A555548\nDomain-4","title":"CAN_ID: 0x1A555548\ndomain: 4","color":{"background":"#6df2b8","border":"#6df2b8","highlight":{"background":"#6df2b8","border":"#6df2b8"},"hover":{"background":"#6df2b8","border":"#6df2b8"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x10B:2","label":"0x010B\nDomain-2","title":"CAN_ID: 0x010B\ndomain: 2","color":{"background":"#f26f6d","border":"#f26f6d","highlight":{"background":"#f26f6d","border":"#f26f6d"},"hover":{"background":"#f26f6d","border":"#f26f6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x641:4","label":"0x0641\nDomain-4","title":"CAN_ID: 0x0641\ndomain: 4","color":{"background":"#f26dce","border":"#f26dce","highlight":{"background":"#f26dce","border":"#f26dce"},"hover":{"background":"#f26dce","border":"#f26dce"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3F:2","label":"0x003F\nDomain-2","title":"CAN_ID: 0x003F\ndomain: 2","color":{"background":"#b26df2","border":"#b26df2","highlight":{"background":"#b26df2","border":"#b26df2"},"hover":{"background":"#b26df2","border":"#b26df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x116:4","label":"0x0116\nDomain-4","title":"CAN_ID: 0x0116\ndomain: 4","color":{"background":"#f2746d","border":"#f2746d","highlight":{"background":"#f2746d","border":"#f2746d"},"hover":{"background":"#f2746d","border":"#f2746d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x17F00010:5","label":"0x17F00010\nDomain-5","title":"CAN_ID: 0x17F00010\ndomain: 5","color":{"background":"#82f26d","border":"#82f26d","highlight":{"background":"#82f26d","border":"#82f26d"},"hover":{"background":"#82f26d","border":"#82f26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xE4:0","label":"0x00E4\nDomain-0","title":"CAN_ID: 0x00E4\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26d7f","highlight":{"background":"#FFFFFF","border":"#f26d7f"},"hover":{"background":"#FFFFFF","border":"#f26d7f"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x12DD5497:1","label":"0x12DD5497\nDomain-1","title":"CAN_ID: 0x12DD5497\ndomain: 1","color":{"background":"#f28c6d","border":"#f28c6d","highlight":{"background":"#f28c6d","border":"#f28c6d"},"hover":{"background":"#f28c6d","border":"#f28c6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x65F:2","label":"0x065F\nDomain-2","title":"CAN_ID: 0x065F\ndomain: 2","color":{"background":"#f26dbe","border":"#f26dbe","highlight":{"background":"#f26dbe","border":"#f26dbe"},"hover":{"background":"#f26dbe","border":"#f26dbe"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x26B:4","label":"0x026B\nDomain-4","title":"CAN_ID: 0x026B\ndomain: 4","color":{"background":"#6d8ef2","border":"#6d8ef2","highlight":{"background":"#6d8ef2","border":"#6d8ef2"},"hover":{"background":"#6d8ef2","border":"#6d8ef2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556E9:2","label":"0x1A5556E9\nDomain-2","title":"CAN_ID: 0x1A5556E9\ndomain: 2","color":{"background":"#6df2f2","border":"#6df2f2","highlight":{"background":"#6df2f2","border":"#6df2f2"},"hover":{"background":"#6df2f2","border":"#6df2f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556EA:3","label":"0x1A5556EA\nDomain-3","title":"CAN_ID: 0x1A5556EA\ndomain: 3","color":{"background":"#6deff2","border":"#6deff2","highlight":{"background":"#6deff2","border":"#6deff2"},"hover":{"background":"#6deff2","border":"#6deff2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x14D:4","label":"0x014D\nDomain-4","title":"CAN_ID: 0x014D\ndomain: 4","color":{"background":"#f2e06d","border":"#f2e06d","highlight":{"background":"#f2e06d","border":"#f2e06d"},"hover":{"background":"#f2e06d","border":"#f2e06d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x25D:0","label":"0x025D\nDomain-0","title":"CAN_ID: 0x025D\ndomain: 0","color":{"background":"#FFFFFF","border":"#6d98f2","highlight":{"background":"#FFFFFF","border":"#6d98f2"},"hover":{"background":"#FFFFFF","border":"#6d98f2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x9F:2","label":"0x009F\nDomain-2","title":"CAN_ID: 0x009F\ndomain: 2","color":{"background":"#f26da9","border":"#f26da9","highlight":{"background":"#f26da9","border":"#f26da9"},"hover":{"background":"#f26da9","border":"#f26da9"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x32A:2","label":"0x032A\nDomain-2","title":"CAN_ID: 0x032A\ndomain: 2","color":{"background":"#6d6ef2","border":"#6d6ef2","highlight":{"background":"#6d6ef2","border":"#6d6ef2"},"hover":{"background":"#6d6ef2","border":"#6d6ef2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x5A7:1","label":"0x05A7\nDomain-1","title":"CAN_ID: 0x05A7\ndomain: 1","color":{"background":"#f26de8","border":"#f26de8","highlight":{"background":"#f26de8","border":"#f26de8"},"hover":{"background":"#f26de8","border":"#f26de8"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555628:2","label":"0x1A555628\nDomain-2","title":"CAN_ID: 0x1A555628\ndomain: 2","color":{"background":"#6df2e2","border":"#6df2e2","highlight":{"background":"#6df2e2","border":"#6df2e2"},"hover":{"background":"#6df2e2","border":"#6df2e2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD54D6:5","label":"0x12DD54D6\nDomain-5","title":"CAN_ID: 0x12DD54D6\ndomain: 5","color":{"background":"#f2a16d","border":"#f2a16d","highlight":{"background":"#f2a16d","border":"#f2a16d"},"hover":{"background":"#f2a16d","border":"#f2a16d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3F:1","label":"0x003F\nDomain-1","title":"CAN_ID: 0x003F\ndomain: 1","color":{"background":"#b26df2","border":"#b26df2","highlight":{"background":"#b26df2","border":"#b26df2"},"hover":{"background":"#b26df2","border":"#b26df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A4:4","label":"0x01A4\nDomain-4","title":"CAN_ID: 0x01A4\ndomain: 4","color":{"background":"#6df2a0","border":"#6df2a0","highlight":{"background":"#6df2a0","border":"#6df2a0"},"hover":{"background":"#6df2a0","border":"#6df2a0"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x366:2","label":"0x0366\nDomain-2","title":"CAN_ID: 0x0366\ndomain: 2","color":{"background":"#7d6df2","border":"#7d6df2","highlight":{"background":"#7d6df2","border":"#7d6df2"},"hover":{"background":"#7d6df2","border":"#7d6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD5497:0","label":"0x12DD5497\nDomain-0","title":"CAN_ID: 0x12DD5497\ndomain: 0","color":{"background":"#FFFFFF","border":"#f28c6d","highlight":{"background":"#FFFFFF","border":"#f28c6d"},"hover":{"background":"#FFFFFF","border":"#f28c6d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x25D:4","label":"0x025D\nDomain-4","title":"CAN_ID: 0x025D\ndomain: 4","color":{"background":"#6d98f2","border":"#6d98f2","highlight":{"background":"#6d98f2","border":"#6d98f2"},"hover":{"background":"#6d98f2","border":"#6d98f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x65F:1","label":"0x065F\nDomain-1","title":"CAN_ID: 0x065F\ndomain: 1","color":{"background":"#f26dbe","border":"#f26dbe","highlight":{"background":"#f26dbe","border":"#f26dbe"},"hover":{"background":"#f26dbe","border":"#f26dbe"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD54D6:0","label":"0x12DD54D6\nDomain-0","title":"CAN_ID: 0x12DD54D6\ndomain: 0","color":{"background":"#FFFFFF","border":"#f2a16d","highlight":{"background":"#FFFFFF","border":"#f2a16d"},"hover":{"background":"#FFFFFF","border":"#f2a16d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x102:1","label":"0x0102\nDomain-1","title":"CAN_ID: 0x0102\ndomain: 1","color":{"background":"#f26d6d","border":"#f26d6d","highlight":{"background":"#f26d6d","border":"#f26d6d"},"hover":{"background":"#f26d6d","border":"#f26d6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x16A954C4:2","label":"0x16A954C4\nDomain-2","title":"CAN_ID: 0x16A954C4\ndomain: 2","color":{"background":"#bff26d","border":"#bff26d","highlight":{"background":"#bff26d","border":"#bff26d"},"hover":{"background":"#bff26d","border":"#bff26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556EA:2","label":"0x1A5556EA\nDomain-2","title":"CAN_ID: 0x1A5556EA\ndomain: 2","color":{"background":"#6deff2","border":"#6deff2","highlight":{"background":"#6deff2","border":"#6deff2"},"hover":{"background":"#6deff2","border":"#6deff2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x16A954C2:2","label":"0x16A954C2\nDomain-2","title":"CAN_ID: 0x16A954C2\ndomain: 2","color":{"background":"#c4f26d","border":"#c4f26d","highlight":{"background":"#c4f26d","border":"#c4f26d"},"hover":{"background":"#c4f26d","border":"#c4f26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x5BE:0","label":"0x05BE\nDomain-0","title":"CAN_ID: 0x05BE\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26de3","highlight":{"background":"#FFFFFF","border":"#f26de3"},"hover":{"background":"#FFFFFF","border":"#f26de3"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x5A7:0","label":"0x05A7\nDomain-0","title":"CAN_ID: 0x05A7\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26de8","highlight":{"background":"#FFFFFF","border":"#f26de8"},"hover":{"background":"#FFFFFF","border":"#f26de8"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x1A555628:1","label":"0x1A555628\nDomain-1","title":"CAN_ID: 0x1A555628\ndomain: 1","color":{"background":"#6df2e2","border":"#6df2e2","highlight":{"background":"#6df2e2","border":"#6df2e2"},"hover":{"background":"#6df2e2","border":"#6df2e2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x643:4","label":"0x0643\nDomain-4","title":"CAN_ID: 0x0643\ndomain: 4","color":{"background":"#f26dcb","border":"#f26dcb","highlight":{"background":"#f26dcb","border":"#f26dcb"},"hover":{"background":"#f26dcb","border":"#f26dcb"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD54D6:4","label":"0x12DD54D6\nDomain-4","title":"CAN_ID: 0x12DD54D6\ndomain: 4","color":{"background":"#f2a16d","border":"#f2a16d","highlight":{"background":"#f2a16d","border":"#f2a16d"},"hover":{"background":"#f2a16d","border":"#f2a16d"}},"borderWidth":2,"shapeProperties":{}}]; |
| const graphEdges = [{"id":"f0","from":"0x3C0:4","to":"0x3C0:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x03C0\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.001393, 0.001208];\nlen(matched/src/dst):409/409/450;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f2","from":"0x3C0:4","to":"0x3C0:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x03C0\nsrc_domain: 4\ndst_domain: 2\nlabel: delay(s)∈[-0.000608, 0.000830];\nlen(matched/src/dst):397/409/451;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f4","from":"0xFC:2","to":"0xFC:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x00FC\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.000320, 0.001339];\nlen(matched/src/dst):2203/4515/4092;\np_value:0.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f6","from":"0xFC:2","to":"0xFC:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x00FC\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.000383, 0.001188];\nlen(matched/src/dst):270/4515/4498;\np_value:0.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f8","from":"0x17F00010:4","to":"0x17F00010:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x17F00010\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000729, 0.002488];\nlen(matched/src/dst):81/81/90;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f9","from":"0x17F00010:4","to":"0x17F00010:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x17F00010\nsrc_domain: 4\ndst_domain: 2\nlabel: delay(s)∈[-0.000505, 0.001213];\nlen(matched/src/dst):79/81/90;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f11","from":"0x14D:1","to":"0x14D:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x014D\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.001086, 0.000960];\nlen(matched/src/dst):2097/2250/2258;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f13","from":"0x139:1","to":"0x139:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0139\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.001739, 0.000541];\nlen(matched/src/dst):2096/2249/2257;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f15","from":"0x26B:4","to":"0x26B:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x026B\nsrc_domain: 4\ndst_domain: 5\nlabel: delay(s)∈[0.000386, 0.007738];\nlen(matched/src/dst):373/410/401;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f16","from":"0xFD:1","to":"0xFD:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x00FD\nsrc_domain: 1\ndst_domain: 3\nlabel: delay(s)∈[-0.001259, 0.006442];\nlen(matched/src/dst):1790/2249/2139;\np_value:0.2035; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f17","from":"0xFD:1","to":"0xFD:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x00FD\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.001351, 0.000391];\nlen(matched/src/dst):2096/2249/2257;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f19","from":"0xFD:1","to":"0xFD:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x00FD\nsrc_domain: 1\ndst_domain: 4\nlabel: delay(s)∈[-0.001504, 0.000830];\nlen(matched/src/dst):2046/2249/2046;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f21","from":"0x6B2:3","to":"0x6B2:5","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x06B2\nsrc_domain: 3\ndst_domain: 5\nlabel: delay(s)∈[0.000339, 0.001064];\nlen(matched/src/dst):37/39/40;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.22}},{"id":"f23","from":"0x6B2:3","to":"0x6B2:2","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x06B2\nsrc_domain: 3\ndst_domain: 2\nlabel: delay(s)∈[-0.000566, -0.000535];\nlen(matched/src/dst):2/39/45;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.26}},{"id":"f25","from":"0x6B2:4","to":"0x6B2:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x06B2\nsrc_domain: 4\ndst_domain: 3\nlabel: delay(s)∈[0.001017, 0.006325];\nlen(matched/src/dst):34/41/39;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f26","from":"0x6B2:3","to":"0x6B2:1","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x06B2\nsrc_domain: 3\ndst_domain: 1\nlabel: delay(s)∈[-0.000224, -0.000224];\nlen(matched/src/dst):1/39/45;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.18}},{"id":"f28","from":"0x1F0:4","to":"0x1F0:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x01F0\nsrc_domain: 4\ndst_domain: 2\nlabel: delay(s)∈[-0.000342, 0.001643];\nlen(matched/src/dst):79/82/90;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f29","from":"0x3E5:4","to":"0x3E5:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x03E5\nsrc_domain: 4\ndst_domain: 2\nlabel: delay(s)∈[-0.000726, 0.001453];\nlen(matched/src/dst):398/410/452;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f31","from":"0xAD:2","to":"0xAD:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x00AD\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.001272, 0.000532];\nlen(matched/src/dst):838/903/900;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f33","from":"0x13D:4","to":"0x13D:2","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x013D\nsrc_domain: 4\ndst_domain: 2\nlabel: delay(s)∈[0.158787, 0.160593];\nlen(matched/src/dst):1979/4092/4515;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.18}},{"id":"f35","from":"0x6B4:4","to":"0x6B4:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x06B4\nsrc_domain: 4\ndst_domain: 2\nlabel: delay(s)∈[-0.000405, 0.001864];\nlen(matched/src/dst):198/204/225;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f36","from":"0x6B4:1","to":"0x6B4:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x06B4\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.000485, 0.001973];\nlen(matched/src/dst):209/225/225;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f37","from":"0x6B4:2","to":"0x6B4:3","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x06B4\nsrc_domain: 2\ndst_domain: 3\nlabel: delay(s)∈[-0.001519, 0.006242];\nlen(matched/src/dst):163/225/194;\np_value:0.9351; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f39","from":"0x421:1","to":"0x421:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0421\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.000692, 0.000884];\nlen(matched/src/dst):419/449/452;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f41","from":"0xE4:2","to":"0xE4:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x00E4\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.000611, 0.001192];\nlen(matched/src/dst):2096/2257/2249;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f43","from":"0x102:1","to":"0x102:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0102\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.001483, 0.000387];\nlen(matched/src/dst):2096/2249/2258;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f45","from":"0x102:1","to":"0x102:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0102\nsrc_domain: 1\ndst_domain: 4\nlabel: delay(s)∈[-0.001532, 0.001117];\nlen(matched/src/dst):2046/2249/2046;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f47","from":"0x12DD54D6:4","to":"0x12DD54D6:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x12DD54D6\nsrc_domain: 4\ndst_domain: 5\nlabel: delay(s)∈[-0.000621, 0.005453];\nlen(matched/src/dst):372/409/401;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f48","from":"0x12DD54D6:4","to":"0x12DD54D6:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x12DD54D6\nsrc_domain: 4\ndst_domain: 2\nlabel: delay(s)∈[-0.000920, 0.000698];\nlen(matched/src/dst):397/409/451;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f50","from":"0x25D:4","to":"0x25D:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x025D\nsrc_domain: 4\ndst_domain: 2\nlabel: delay(s)∈[-0.001173, 0.000838];\nlen(matched/src/dst):662/682/752;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f52","from":"0x331:5","to":"0x331:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0331\nsrc_domain: 5\ndst_domain: 1\nlabel: delay(s)∈[-0.000018, 0.003862];\nlen(matched/src/dst):78/80/89;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f53","from":"0xFC:4","to":"0xFC:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x00FC\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000856, 0.001211];\nlen(matched/src/dst):265/4092/4498;\np_value:0.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f55","from":"0x643:4","to":"0x643:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0643\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000700, 0.002363];\nlen(matched/src/dst):41/41/45;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f56","from":"0x12B:4","to":"0x12B:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x012B\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.001265, 0.002510];\nlen(matched/src/dst):1358/1358/1494;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f58","from":"0x12B:5","to":"0x12B:4","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x012B\nsrc_domain: 5\ndst_domain: 4\nlabel: delay(s)∈[-0.000053, 0.006748];\nlen(matched/src/dst):1237/1333/1358;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f59","from":"0x206:2","to":"0x206:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0206\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001607, 0.001322];\nlen(matched/src/dst):1986/2257/2046;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f61","from":"0xFD:4","to":"0xFD:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x00FD\nsrc_domain: 4\ndst_domain: 3\nlabel: delay(s)∈[-0.000952, 0.006050];\nlen(matched/src/dst):1697/2046/2139;\np_value:0.9997; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f62","from":"0x1A5555AC:2","to":"0x1A5555AC:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A5555AC\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.002091, 0.000497];\nlen(matched/src/dst):40/45/41;\np_value:0.9999; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f64","from":"0x1A5555AC:2","to":"0x1A5555AC:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A5555AC\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.000832, 0.002018];\nlen(matched/src/dst):42/45/45;\np_value:0.9968; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f66","from":"0x1A555541:1","to":"0x1A555541:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A555541\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.000826, 0.000889];\nlen(matched/src/dst):209/225/225;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f68","from":"0x1A555541:1","to":"0x1A555541:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A555541\nsrc_domain: 1\ndst_domain: 4\nlabel: delay(s)∈[-0.001212, 0.001541];\nlen(matched/src/dst):204/225/204;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f70","from":"0x641:1","to":"0x641:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0641\nsrc_domain: 1\ndst_domain: 3\nlabel: delay(s)∈[-0.001013, 0.006321];\nlen(matched/src/dst):36/45/39;\np_value:0.4120; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f71","from":"0x641:1","to":"0x641:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0641\nsrc_domain: 1\ndst_domain: 5\nlabel: delay(s)∈[0.000138, 0.006937];\nlen(matched/src/dst):40/45/41;\np_value:0.9618; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f72","from":"0x641:1","to":"0x641:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0641\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.000324, 0.001386];\nlen(matched/src/dst):42/45/46;\np_value:0.9968; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f74","from":"0x641:1","to":"0x641:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0641\nsrc_domain: 1\ndst_domain: 4\nlabel: delay(s)∈[-0.001032, 0.002138];\nlen(matched/src/dst):41/45/41;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f76","from":"0x14C:2","to":"0x14C:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x014C\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001227, 0.000775];\nlen(matched/src/dst):397/451/409;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f78","from":"0x14C:1","to":"0x14C:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x014C\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.000429, 0.001594];\nlen(matched/src/dst):419/450/451;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f79","from":"0x1A5556E9:1","to":"0x1A5556E9:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A5556E9\nsrc_domain: 1\ndst_domain: 3\nlabel: delay(s)∈[-0.000384, 0.005006];\nlen(matched/src/dst):72/90/178;\np_value:0.5420; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f80","from":"0x1A5556E9:1","to":"0x1A5556E9:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A5556E9\nsrc_domain: 1\ndst_domain: 5\nlabel: delay(s)∈[-0.000088, 0.005282];\nlen(matched/src/dst):78/90/80;\np_value:0.9622; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f81","from":"0x1A5556E9:1","to":"0x1A5556E9:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A5556E9\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.000692, 0.001075];\nlen(matched/src/dst):84/90/91;\np_value:0.9999; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f83","from":"0x1A5556E9:1","to":"0x1A5556E9:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A5556E9\nsrc_domain: 1\ndst_domain: 4\nlabel: delay(s)∈[-0.001206, 0.000689];\nlen(matched/src/dst):82/90/82;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f85","from":"0x12DD5501:2","to":"0x12DD5501:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x12DD5501\nsrc_domain: 2\ndst_domain: 5\nlabel: delay(s)∈[0.000237, 0.004582];\nlen(matched/src/dst):36/46/40;\np_value:0.4415; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f86","from":"0x12DD5501:4","to":"0x12DD5501:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x12DD5501\nsrc_domain: 4\ndst_domain: 5\nlabel: delay(s)∈[-0.000699, 0.003891];\nlen(matched/src/dst):37/41/40;\np_value:0.9756; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f87","from":"0x12DD5501:1","to":"0x12DD5501:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x12DD5501\nsrc_domain: 1\ndst_domain: 5\nlabel: delay(s)∈[-0.000747, 0.004761];\nlen(matched/src/dst):39/45/40;\np_value:0.9098; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f88","from":"0x1A5556EA:1","to":"0x1A5556EA:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A5556EA\nsrc_domain: 1\ndst_domain: 5\nlabel: delay(s)∈[0.000030, 0.006898];\nlen(matched/src/dst):79/90/81;\np_value:0.9810; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f89","from":"0x1A5556EA:1","to":"0x1A5556EA:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A5556EA\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.000673, 0.001941];\nlen(matched/src/dst):83/90/90;\np_value:0.9996; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f91","from":"0x1A5556EA:1","to":"0x1A5556EA:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A5556EA\nsrc_domain: 1\ndst_domain: 4\nlabel: delay(s)∈[-0.001207, 0.000854];\nlen(matched/src/dst):82/90/82;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f93","from":"0x1A5555B7:2","to":"0x1A5555B7:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A5555B7\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.001135, 0.001112];\nlen(matched/src/dst):42/45/45;\np_value:0.9968; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f95","from":"0x3FB:4","to":"0x3FB:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x03FB\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.001322, 0.001079];\nlen(matched/src/dst):512/512/562;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f97","from":"0x16A954C2:2","to":"0x16A954C2:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x16A954C2\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.000977, 0.000159];\nlen(matched/src/dst):20/23/21;\np_value:0.9908; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f99","from":"0x10B:1","to":"0x10B:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x010B\nsrc_domain: 1\ndst_domain: 4\nlabel: delay(s)∈[-0.000889, 0.001712];\nlen(matched/src/dst):2047/2249/2047;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f101","from":"0xDB:2","to":"0xDB:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x00DB\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001070, 0.000257];\nlen(matched/src/dst):40/45/41;\np_value:0.9999; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f103","from":"0x3F:2","to":"0x3F:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x003F\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.000619, 0.001163];\nlen(matched/src/dst):1048/1128/1125;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f105","from":"0x481:4","to":"0x481:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0481\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000727, 0.003016];\nlen(matched/src/dst):82/82/90;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f106","from":"0x206:4","to":"0x206:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0206\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.001561, 0.001448];\nlen(matched/src/dst):2046/2046/2249;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f108","from":"0x12DD5497:1","to":"0x12DD5497:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x12DD5497\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.001401, 0.000585];\nlen(matched/src/dst):419/450/451;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f110","from":"0x1A5555AC:4","to":"0x1A5555AC:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A5555AC\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000520, 0.002905];\nlen(matched/src/dst):41/41/45;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f112","from":"0x520:1","to":"0x520:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0520\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.001208, 0.000648];\nlen(matched/src/dst):210/225/226;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f114","from":"0x520:1","to":"0x520:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0520\nsrc_domain: 1\ndst_domain: 4\nlabel: delay(s)∈[-0.001308, 0.000769];\nlen(matched/src/dst):205/225/205;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f116","from":"0x641:3","to":"0x641:5","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x0641\nsrc_domain: 3\ndst_domain: 5\nlabel: delay(s)∈[0.000043, 0.001336];\nlen(matched/src/dst):37/39/41;\np_value:0.9982; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.18}},{"id":"f118","from":"0x641:2","to":"0x641:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0641\nsrc_domain: 2\ndst_domain: 3\nlabel: delay(s)∈[-0.001102, 0.005544];\nlen(matched/src/dst):33/46/39;\np_value:0.0615; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f119","from":"0x641:4","to":"0x641:3","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x0641\nsrc_domain: 4\ndst_domain: 3\nlabel: delay(s)∈[-0.000233, 0.005653];\nlen(matched/src/dst):34/41/39;\np_value:0.7390; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.22}},{"id":"f120","from":"0x3D4:4","to":"0x3D4:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x03D4\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.001524, 0.001206];\nlen(matched/src/dst):40/40/45;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f122","from":"0x14C:1","to":"0x14C:4","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x014C\nsrc_domain: 1\ndst_domain: 4\nlabel: delay(s)∈[-0.000955, 0.002026];\nlen(matched/src/dst):409/450/409;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f123","from":"0x1A5556E9:3","to":"0x1A5556E9:5","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A5556E9\nsrc_domain: 3\ndst_domain: 5\nlabel: delay(s)∈[-0.000700, 0.000966];\nlen(matched/src/dst):74/178/80;\np_value:0.9994; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f125","from":"0x1A5556E9:2","to":"0x1A5556E9:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A5556E9\nsrc_domain: 2\ndst_domain: 3\nlabel: delay(s)∈[-0.000200, 0.004885];\nlen(matched/src/dst):66/91/178;\np_value:0.0533; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f126","from":"0x1A5556E9:4","to":"0x1A5556E9:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A5556E9\nsrc_domain: 4\ndst_domain: 3\nlabel: delay(s)∈[0.000040, 0.004429];\nlen(matched/src/dst):68/82/178;\np_value:0.7854; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f127","from":"0x1A5556EA:3","to":"0x1A5556EA:5","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x1A5556EA\nsrc_domain: 3\ndst_domain: 5\nlabel: delay(s)∈[0.000244, 0.001191];\nlen(matched/src/dst):74/78/81;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.22}},{"id":"f129","from":"0x1A5556EA:3","to":"0x1A5556EA:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A5556EA\nsrc_domain: 3\ndst_domain: 2\nlabel: delay(s)∈[-0.005131, 0.001719];\nlen(matched/src/dst):65/78/90;\np_value:0.8082; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f131","from":"0x12DD553D:4","to":"0x12DD553D:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x12DD553D\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000754, 0.001212];\nlen(matched/src/dst):410/410/450;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f133","from":"0x1A555628:1","to":"0x1A555628:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A555628\nsrc_domain: 1\ndst_domain: 4\nlabel: delay(s)∈[-0.001832, 0.000621];\nlen(matched/src/dst):41/45/41;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f135","from":"0x1A555628:1","to":"0x1A555628:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A555628\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.001518, 0.001063];\nlen(matched/src/dst):42/45/45;\np_value:0.9968; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f137","from":"0x3C0:1","to":"0x3C0:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x03C0\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.000734, 0.001269];\nlen(matched/src/dst):419/450/451;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f139","from":"0x1A5555A6:2","to":"0x1A5555A6:4","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A5555A6\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.002048, 0.001951];\nlen(matched/src/dst):40/45/41;\np_value:0.9098; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f140","from":"0x40:2","to":"0x40:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0040\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.000565, 0.000986];\nlen(matched/src/dst):993/1128/1023;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f142","from":"0x40:2","to":"0x40:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0040\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.000618, 0.000989];\nlen(matched/src/dst):1048/1128/1125;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f144","from":"0x17F00010:1","to":"0x17F00010:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x17F00010\nsrc_domain: 1\ndst_domain: 3\nlabel: delay(s)∈[-0.001328, 0.016240];\nlen(matched/src/dst):72/90/78;\np_value:0.1770; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f145","from":"0x17F00010:1","to":"0x17F00010:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x17F00010\nsrc_domain: 1\ndst_domain: 5\nlabel: delay(s)∈[-0.000885, 0.006194];\nlen(matched/src/dst):78/90/80;\np_value:0.9622; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f146","from":"0x17F00010:2","to":"0x17F00010:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x17F00010\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.001166, 0.002122];\nlen(matched/src/dst):84/90/90;\np_value:0.9987; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f147","from":"0x5BE:2","to":"0x5BE:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x05BE\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.000516, 0.001099];\nlen(matched/src/dst):84/90/90;\np_value:0.9999; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f149","from":"0x1A4:2","to":"0x1A4:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x01A4\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001511, 0.000355];\nlen(matched/src/dst):80/91/82;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f151","from":"0x1A4:2","to":"0x1A4:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x01A4\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.000786, 0.001944];\nlen(matched/src/dst):84/91/90;\np_value:0.9997; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f152","from":"0x1A555521:2","to":"0x1A555521:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A555521\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[0.000146, 0.002634];\nlen(matched/src/dst):42/45/45;\np_value:0.9968; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f153","from":"0x1A555564:4","to":"0x1A555564:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A555564\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000531, 0.001626];\nlen(matched/src/dst):41/41/45;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f154","from":"0x1A555564:4","to":"0x1A555564:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A555564\nsrc_domain: 4\ndst_domain: 2\nlabel: delay(s)∈[-0.000508, 0.001822];\nlen(matched/src/dst):40/41/45;\np_value:0.9999; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f155","from":"0x641:2","to":"0x641:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0641\nsrc_domain: 2\ndst_domain: 5\nlabel: delay(s)∈[0.000049, 0.006160];\nlen(matched/src/dst):37/46/41;\np_value:0.5879; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f156","from":"0x641:5","to":"0x641:4","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x0641\nsrc_domain: 5\ndst_domain: 4\nlabel: delay(s)∈[-0.000640, -0.000640];\nlen(matched/src/dst):1/41/41;\np_value:0.1040; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.26}},{"id":"f158","from":"0x1A5555BF:2","to":"0x1A5555BF:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A5555BF\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001525, 0.001538];\nlen(matched/src/dst):48/53/49;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f160","from":"0x1A5555BF:2","to":"0x1A5555BF:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A5555BF\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.001796, 0.002380];\nlen(matched/src/dst):50/53/53;\np_value:0.9678; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f161","from":"0x138:2","to":"0x138:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0138\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.001243, 0.001002];\nlen(matched/src/dst):419/451/450;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f163","from":"0x5A7:1","to":"0x5A7:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x05A7\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.001329, 0.000902];\nlen(matched/src/dst):42/45/46;\np_value:0.9968; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f165","from":"0x16A9545F:2","to":"0x16A9545F:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x16A9545F\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.001119, 0.001143];\nlen(matched/src/dst):42/45/45;\np_value:0.9968; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f167","from":"0x1A5556E9:2","to":"0x1A5556E9:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A5556E9\nsrc_domain: 2\ndst_domain: 5\nlabel: delay(s)∈[-0.000087, 0.004928];\nlen(matched/src/dst):72/91/80;\np_value:0.4583; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f168","from":"0x1A5556E9:4","to":"0x1A5556E9:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A5556E9\nsrc_domain: 4\ndst_domain: 5\nlabel: delay(s)∈[0.000527, 0.004945];\nlen(matched/src/dst):74/82/80;\np_value:0.9960; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f169","from":"0x3C0:3","to":"0x3C0:5","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x03C0\nsrc_domain: 3\ndst_domain: 5\nlabel: delay(s)∈[-0.000206, 0.001262];\nlen(matched/src/dst):368/388/401;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f171","from":"0x3C0:3","to":"0x3C0:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x03C0\nsrc_domain: 3\ndst_domain: 2\nlabel: delay(s)∈[-0.005113, 0.001329];\nlen(matched/src/dst):327/388/451;\np_value:0.9869; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f173","from":"0x40:4","to":"0x40:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0040\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.001022, 0.001291];\nlen(matched/src/dst):1023/1023/1125;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f175","from":"0x40:4","to":"0x40:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0040\nsrc_domain: 4\ndst_domain: 3\nlabel: delay(s)∈[-0.000476, 0.005879];\nlen(matched/src/dst):848/1023/1069;\np_value:0.9916; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f176","from":"0x116:2","to":"0x116:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0116\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.000657, 0.001596];\nlen(matched/src/dst):2096/2257/2249;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f177","from":"0x116:4","to":"0x116:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0116\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000824, 0.001637];\nlen(matched/src/dst):2046/2046/2249;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f178","from":"0x17F00010:3","to":"0x17F00010:5","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x17F00010\nsrc_domain: 3\ndst_domain: 5\nlabel: delay(s)∈[-0.011173, 0.001087];\nlen(matched/src/dst):74/78/80;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f180","from":"0x17F00010:3","to":"0x17F00010:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x17F00010\nsrc_domain: 3\ndst_domain: 2\nlabel: delay(s)∈[-0.015595, 0.001102];\nlen(matched/src/dst):66/78/90;\np_value:0.8796; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f181","from":"0x3D5:4","to":"0x3D5:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x03D5\nsrc_domain: 4\ndst_domain: 3\nlabel: delay(s)∈[-0.001460, 0.004930];\nlen(matched/src/dst):339/409/388;\np_value:0.9207; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f182","from":"0x12B:5","to":"0x12B:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x012B\nsrc_domain: 5\ndst_domain: 1\nlabel: delay(s)∈[-0.000217, 0.007696];\nlen(matched/src/dst):1300/1333/1494;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f183","from":"0x5A0:4","to":"0x5A0:3","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x05A0\nsrc_domain: 4\ndst_domain: 3\nlabel: delay(s)∈[-0.000856, 0.005586];\nlen(matched/src/dst):169/204/194;\np_value:0.9964; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f185","from":"0x2C2:1","to":"0x2C2:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x02C2\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.000552, 0.001535];\nlen(matched/src/dst):84/90/91;\np_value:0.9999; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f187","from":"0x1A4:4","to":"0x1A4:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x01A4\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000371, 0.002497];\nlen(matched/src/dst):82/82/90;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f188","from":"0x31B:2","to":"0x31B:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x031B\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.000651, 0.001494];\nlen(matched/src/dst):838/903/899;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f190","from":"0x6B2:2","to":"0x6B2:5","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x06B2\nsrc_domain: 2\ndst_domain: 5\nlabel: delay(s)∈[0.001157, 0.006736];\nlen(matched/src/dst):36/45/40;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.18}},{"id":"f191","from":"0x6B2:4","to":"0x6B2:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x06B2\nsrc_domain: 4\ndst_domain: 5\nlabel: delay(s)∈[0.001639, 0.007026];\nlen(matched/src/dst):37/41/40;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f192","from":"0x6B2:5","to":"0x6B2:1","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x06B2\nsrc_domain: 5\ndst_domain: 1\nlabel: delay(s)∈[-0.000929, -0.000929];\nlen(matched/src/dst):1/40/45;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.22}},{"id":"f194","from":"0x1A5555BF:4","to":"0x1A5555BF:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A5555BF\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000271, 0.003422];\nlen(matched/src/dst):49/49/53;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f195","from":"0x397:2","to":"0x397:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0397\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001940, 0.000463];\nlen(matched/src/dst):394/447/406;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f197","from":"0x12DD5501:2","to":"0x12DD5501:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x12DD5501\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.000416, 0.001733];\nlen(matched/src/dst):40/46/41;\np_value:0.9999; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f199","from":"0x12DD5501:2","to":"0x12DD5501:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x12DD5501\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.000800, 0.000593];\nlen(matched/src/dst):42/46/45;\np_value:0.9968; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f201","from":"0x1A55566B:2","to":"0x1A55566B:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A55566B\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001530, 0.000681];\nlen(matched/src/dst):47/52/48;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f203","from":"0x1A55566B:2","to":"0x1A55566B:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A55566B\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.001494, 0.001085];\nlen(matched/src/dst):49/52/52;\np_value:0.9991; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f205","from":"0x6B4:4","to":"0x6B4:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x06B4\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000672, 0.001266];\nlen(matched/src/dst):204/204/225;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f207","from":"0x6B4:4","to":"0x6B4:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x06B4\nsrc_domain: 4\ndst_domain: 3\nlabel: delay(s)∈[0.000283, 0.006552];\nlen(matched/src/dst):169/204/194;\np_value:0.8659; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f208","from":"0x1A555548:2","to":"0x1A555548:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A555548\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001453, 0.000517];\nlen(matched/src/dst):79/90/81;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f210","from":"0x1A555548:2","to":"0x1A555548:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A555548\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.000429, 0.003409];\nlen(matched/src/dst):84/90/90;\np_value:0.9999; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f211","from":"0x1A555548:3","to":"0x1A555548:2","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x1A555548\nsrc_domain: 3\ndst_domain: 2\nlabel: delay(s)∈[-0.006736, -0.000534];\nlen(matched/src/dst):65/77/90;\np_value:0.8687; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.18}},{"id":"f212","from":"0x139:2","to":"0x139:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0139\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.000486, 0.001075];\nlen(matched/src/dst):1987/2257/2047;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f214","from":"0xFD:2","to":"0xFD:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x00FD\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.000435, 0.001375];\nlen(matched/src/dst):1986/2257/2046;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f216","from":"0x3BE:1","to":"0x3BE:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x03BE\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.000305, 0.002013];\nlen(matched/src/dst):419/450/451;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f218","from":"0x3BE:1","to":"0x3BE:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x03BE\nsrc_domain: 1\ndst_domain: 4\nlabel: delay(s)∈[-0.001005, 0.001194];\nlen(matched/src/dst):409/450/409;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f220","from":"0x176:1","to":"0x176:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0176\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.000980, 0.000641];\nlen(matched/src/dst):2096/2249/2257;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f222","from":"0x1A55566B:4","to":"0x1A55566B:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A55566B\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.001878, 0.001455];\nlen(matched/src/dst):48/48/52;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f224","from":"0x65D:2","to":"0x65D:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x065D\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.000494, 0.000636];\nlen(matched/src/dst):40/45/41;\np_value:0.9999; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f226","from":"0x65D:2","to":"0x65D:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x065D\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.000561, 0.001215];\nlen(matched/src/dst):42/45/45;\np_value:0.9968; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f228","from":"0x12DD54C9:2","to":"0x12DD54C9:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x12DD54C9\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.000729, 0.001352];\nlen(matched/src/dst):507/575/522;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f230","from":"0x1A555628:4","to":"0x1A555628:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A555628\nsrc_domain: 4\ndst_domain: 2\nlabel: delay(s)∈[-0.000602, 0.001123];\nlen(matched/src/dst):40/41/45;\np_value:0.9999; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f232","from":"0x1A555548:4","to":"0x1A555548:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A555548\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000506, 0.003558];\nlen(matched/src/dst):81/81/90;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f233","from":"0x9F:2","to":"0x9F:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x009F\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.000606, 0.001356];\nlen(matched/src/dst):2140/4515/4092;\np_value:0.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f235","from":"0x1A555564:1","to":"0x1A555564:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A555564\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.001278, 0.001421];\nlen(matched/src/dst):42/45/45;\np_value:0.9968; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f237","from":"0x65F:2","to":"0x65F:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x065F\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.000745, 0.000565];\nlen(matched/src/dst):80/91/82;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f239","from":"0x65F:2","to":"0x65F:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x065F\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.001009, 0.000546];\nlen(matched/src/dst):84/91/90;\np_value:0.9999; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f241","from":"0x86:2","to":"0x86:4","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x0086\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[0.159276, 0.161117];\nlen(matched/src/dst):1995/4515/4092;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.18}},{"id":"f243","from":"0x86:2","to":"0x86:1","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x0086\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.000497, -0.000087];\nlen(matched/src/dst):2/4515/4498;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.22}},{"id":"f245","from":"0x641:2","to":"0x641:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0641\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001064, 0.000915];\nlen(matched/src/dst):40/46/41;\np_value:0.9999; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f247","from":"0x3BE:3","to":"0x3BE:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x03BE\nsrc_domain: 3\ndst_domain: 2\nlabel: delay(s)∈[-0.005972, 0.000658];\nlen(matched/src/dst):327/387/451;\np_value:0.9902; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f249","from":"0x1A5556E9:2","to":"0x1A5556E9:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A5556E9\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.000724, 0.000461];\nlen(matched/src/dst):80/91/82;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f251","from":"0x545:2","to":"0x545:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0545\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.000563, 0.000769];\nlen(matched/src/dst):199/226/205;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f253","from":"0x65D:4","to":"0x65D:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x065D\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000624, 0.001421];\nlen(matched/src/dst):41/41/45;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f255","from":"0x670:2","to":"0x670:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0670\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.000743, 0.001089];\nlen(matched/src/dst):80/91/82;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f257","from":"0x670:2","to":"0x670:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0670\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.000938, 0.000544];\nlen(matched/src/dst):84/91/90;\np_value:0.9999; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f259","from":"0x40:1","to":"0x40:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0040\nsrc_domain: 1\ndst_domain: 3\nlabel: delay(s)∈[-0.000870, 0.006453];\nlen(matched/src/dst):895/1125/1069;\np_value:0.3662; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f260","from":"0x1A5556EA:2","to":"0x1A5556EA:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A5556EA\nsrc_domain: 2\ndst_domain: 5\nlabel: delay(s)∈[-0.000789, 0.005838];\nlen(matched/src/dst):72/90/81;\np_value:0.5420; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f261","from":"0x1A5556EA:4","to":"0x1A5556EA:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A5556EA\nsrc_domain: 4\ndst_domain: 5\nlabel: delay(s)∈[0.000791, 0.006469];\nlen(matched/src/dst):75/82/81;\np_value:0.9986; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f262","from":"0x12DD5496:2","to":"0x12DD5496:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x12DD5496\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.000904, 0.000703];\nlen(matched/src/dst):40/45/41;\np_value:0.9999; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f264","from":"0x12DD5496:2","to":"0x12DD5496:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x12DD5496\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.000822, 0.001802];\nlen(matched/src/dst):42/45/45;\np_value:0.9968; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f265","from":"0x65F:4","to":"0x65F:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x065F\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.001185, 0.001078];\nlen(matched/src/dst):82/82/90;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f267","from":"0x6B2:2","to":"0x6B2:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x06B2\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.000620, 0.000501];\nlen(matched/src/dst):40/45/41;\np_value:0.9999; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f269","from":"0x6B2:2","to":"0x6B2:1","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x06B2\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.000784, 0.000689];\nlen(matched/src/dst):42/45/45;\np_value:0.9968; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.18}},{"id":"f271","from":"0x86:4","to":"0x86:1","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x0086\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000574, -0.000180];\nlen(matched/src/dst):2/4092/4498;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.22}},{"id":"f273","from":"0x12DD54AA:1","to":"0x12DD54AA:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x12DD54AA\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.000410, 0.001930];\nlen(matched/src/dst):419/450/451;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f274","from":"0x670:4","to":"0x670:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0670\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.001148, 0.001068];\nlen(matched/src/dst):82/82/90;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f276","from":"0x6B4:1","to":"0x6B4:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x06B4\nsrc_domain: 1\ndst_domain: 3\nlabel: delay(s)∈[-0.000137, 0.006791];\nlen(matched/src/dst):179/225/194;\np_value:0.4602; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f277","from":"0x12DD5496:4","to":"0x12DD5496:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x12DD5496\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000809, 0.002234];\nlen(matched/src/dst):41/41/45;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f278","from":"0x24F:4","to":"0x24F:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x024F\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000325, 0.001793];\nlen(matched/src/dst):1023/1023/1124;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f279","from":"0x14D:2","to":"0x14D:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x014D\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001123, 0.000345];\nlen(matched/src/dst):1987/2258/2046;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f281","from":"0x6B2:4","to":"0x6B2:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x06B2\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000629, 0.001190];\nlen(matched/src/dst):41/41/45;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f283","from":"0x1A5555BF:3","to":"0x1A5555BF:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A5555BF\nsrc_domain: 3\ndst_domain: 5\nlabel: delay(s)∈[0.089416, 0.093004];\nlen(matched/src/dst):37/39/40;\np_value:0.9982; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f284","from":"0x16A954C4:2","to":"0x16A954C4:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x16A954C4\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001216, 0.000425];\nlen(matched/src/dst):20/23/20;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f286","from":"0x12DD5501:4","to":"0x12DD5501:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x12DD5501\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.001872, 0.001129];\nlen(matched/src/dst):41/41/45;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f288","from":"0x116:2","to":"0x116:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0116\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.000600, 0.000822];\nlen(matched/src/dst):1986/2257/2046;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f290","from":"0x1A555548:1","to":"0x1A555548:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A555548\nsrc_domain: 1\ndst_domain: 3\nlabel: delay(s)∈[-0.001048, 0.006326];\nlen(matched/src/dst):71/90/77;\np_value:0.3383; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f291","from":"0x1A555548:1","to":"0x1A555548:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A555548\nsrc_domain: 1\ndst_domain: 5\nlabel: delay(s)∈[-0.001102, 0.006880];\nlen(matched/src/dst):78/90/80;\np_value:0.9312; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f292","from":"0x102:2","to":"0x102:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0102\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.000320, 0.001449];\nlen(matched/src/dst):1987/2258/2046;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f294","from":"0x12DD54D6:2","to":"0x12DD54D6:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x12DD54D6\nsrc_domain: 2\ndst_domain: 5\nlabel: delay(s)∈[-0.000693, 0.005527];\nlen(matched/src/dst):360/451/401;\np_value:0.4812; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f295","from":"0x32A:2","to":"0x32A:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x032A\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.000596, 0.000901];\nlen(matched/src/dst):795/903/819;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f297","from":"0x366:2","to":"0x366:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0366\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.000746, 0.000717];\nlen(matched/src/dst):52/57/53;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f299","from":"0x1A555541:2","to":"0x1A555541:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A555541\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.000743, 0.000961];\nlen(matched/src/dst):198/225/204;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f301","from":"0x303:2","to":"0x303:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0303\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001689, 0.000381];\nlen(matched/src/dst):40/45/41;\np_value:0.9999; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f303","from":"0x20D:2","to":"0x20D:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x020D\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.000748, 0.000484];\nlen(matched/src/dst):40/45/41;\np_value:0.9999; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f305","from":"0x1A5556EA:2","to":"0x1A5556EA:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A5556EA\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001723, 0.000488];\nlen(matched/src/dst):79/90/82;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f307","from":"0x1A555548:3","to":"0x1A555548:5","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A555548\nsrc_domain: 3\ndst_domain: 5\nlabel: delay(s)∈[-0.000010, 0.001128];\nlen(matched/src/dst):73/77/80;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f309","from":"0x10B:2","to":"0x10B:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x010B\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001056, 0.000731];\nlen(matched/src/dst):1987/2258/2047;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f311","from":"0x520:2","to":"0x520:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0520\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.000552, 0.000775];\nlen(matched/src/dst):199/226/205;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f316","from":"0x1A5556E9:0","to":"0x1A5556E9:2","label":"","color":{"color":"#b6f8f8","highlight":"#6df2f2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5556E9\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f317","from":"0x1A5556E9:0","to":"0x1A5556E9:4","label":"","color":{"color":"#b6f8f8","highlight":"#6df2f2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5556E9\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f318","from":"0x1A5556E9:0","to":"0x1A5556E9:1","label":"","color":{"color":"#b6f8f8","highlight":"#6df2f2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5556E9\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f319","from":"0x176:0","to":"0x176:1","label":"","color":{"color":"#c2f8b6","highlight":"#85f26d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0176\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f320","from":"0x176:0","to":"0x176:2","label":"","color":{"color":"#c2f8b6","highlight":"#85f26d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0176\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f321","from":"0x16A954C4:0","to":"0x16A954C4:4","label":"","color":{"color":"#dff8b6","highlight":"#bff26d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x16A954C4\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f322","from":"0x16A954C4:0","to":"0x16A954C4:2","label":"","color":{"color":"#dff8b6","highlight":"#bff26d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x16A954C4\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f323","from":"0x16A954C2:0","to":"0x16A954C2:2","label":"","color":{"color":"#e1f8b6","highlight":"#c4f26d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x16A954C2\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f324","from":"0x16A954C2:0","to":"0x16A954C2:4","label":"","color":{"color":"#e1f8b6","highlight":"#c4f26d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x16A954C2\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f325","from":"0x641:0","to":"0x641:2","label":"","color":{"color":"#f8b6e6","highlight":"#f26dce"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0641\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f326","from":"0x641:0","to":"0x641:4","label":"","color":{"color":"#f8b6e6","highlight":"#f26dce"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0641\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f327","from":"0x641:0","to":"0x641:1","label":"","color":{"color":"#f8b6e6","highlight":"#f26dce"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0641\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f328","from":"0x5A7:0","to":"0x5A7:1","label":"","color":{"color":"#f8b6f3","highlight":"#f26de8"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x05A7\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f329","from":"0x5A7:0","to":"0x5A7:2","label":"","color":{"color":"#f8b6f3","highlight":"#f26de8"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x05A7\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f330","from":"0x366:0","to":"0x366:2","label":"","color":{"color":"#beb6f8","highlight":"#7d6df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0366\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f331","from":"0x366:0","to":"0x366:4","label":"","color":{"color":"#beb6f8","highlight":"#7d6df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0366\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f332","from":"0x206:0","to":"0x206:4","label":"","color":{"color":"#b6d9f8","highlight":"#6db3f2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0206\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f333","from":"0x206:0","to":"0x206:1","label":"","color":{"color":"#b6d9f8","highlight":"#6db3f2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0206\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f334","from":"0x206:0","to":"0x206:2","label":"","color":{"color":"#b6d9f8","highlight":"#6db3f2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0206\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f335","from":"0x5A0:0","to":"0x5A0:3","label":"","color":{"color":"#f8b6f6","highlight":"#f26ded"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x05A0\nsrc_domain: 0\ndst_domain: 3\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f336","from":"0x5A0:0","to":"0x5A0:4","label":"","color":{"color":"#f8b6f6","highlight":"#f26ded"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x05A0\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f337","from":"0x1A555628:0","to":"0x1A555628:1","label":"","color":{"color":"#b6f8f0","highlight":"#6df2e2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A555628\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f338","from":"0x1A555628:0","to":"0x1A555628:2","label":"","color":{"color":"#b6f8f0","highlight":"#6df2e2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A555628\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f339","from":"0x1A555628:0","to":"0x1A555628:4","label":"","color":{"color":"#b6f8f0","highlight":"#6df2e2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A555628\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f340","from":"0x9F:0","to":"0x9F:4","label":"","color":{"color":"#f8b6d4","highlight":"#f26da9"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x009F\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f341","from":"0x9F:0","to":"0x9F:2","label":"","color":{"color":"#f8b6d4","highlight":"#f26da9"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x009F\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f342","from":"0x520:0","to":"0x520:4","label":"","color":{"color":"#ebb6f8","highlight":"#d76df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0520\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f343","from":"0x520:0","to":"0x520:1","label":"","color":{"color":"#ebb6f8","highlight":"#d76df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0520\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f344","from":"0x520:0","to":"0x520:2","label":"","color":{"color":"#ebb6f8","highlight":"#d76df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0520\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f345","from":"0x12DD5496:0","to":"0x12DD5496:4","label":"","color":{"color":"#f8c4b6","highlight":"#f2896d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD5496\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f346","from":"0x12DD5496:0","to":"0x12DD5496:2","label":"","color":{"color":"#f8c4b6","highlight":"#f2896d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD5496\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f347","from":"0x421:0","to":"0x421:1","label":"","color":{"color":"#e0b6f8","highlight":"#c26df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0421\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f348","from":"0x421:0","to":"0x421:2","label":"","color":{"color":"#e0b6f8","highlight":"#c26df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0421\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f349","from":"0xE4:0","to":"0xE4:1","label":"","color":{"color":"#f8b6bf","highlight":"#f26d7f"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x00E4\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f350","from":"0xE4:0","to":"0xE4:2","label":"","color":{"color":"#f8b6bf","highlight":"#f26d7f"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x00E4\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f351","from":"0x10B:0","to":"0x10B:1","label":"","color":{"color":"#f8b7b6","highlight":"#f26f6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x010B\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f352","from":"0x10B:0","to":"0x10B:2","label":"","color":{"color":"#f8b7b6","highlight":"#f26f6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x010B\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f353","from":"0x10B:0","to":"0x10B:4","label":"","color":{"color":"#f8b7b6","highlight":"#f26f6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x010B\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f354","from":"0x20D:0","to":"0x20D:2","label":"","color":{"color":"#b6d5f8","highlight":"#6dabf2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x020D\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f355","from":"0x20D:0","to":"0x20D:4","label":"","color":{"color":"#b6d5f8","highlight":"#6dabf2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x020D\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f356","from":"0x1A55566B:0","to":"0x1A55566B:1","label":"","color":{"color":"#b6f8f3","highlight":"#6df2e7"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A55566B\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f357","from":"0x1A55566B:0","to":"0x1A55566B:2","label":"","color":{"color":"#b6f8f3","highlight":"#6df2e7"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A55566B\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f358","from":"0x1A55566B:0","to":"0x1A55566B:4","label":"","color":{"color":"#b6f8f3","highlight":"#6df2e7"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A55566B\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f359","from":"0x65F:0","to":"0x65F:4","label":"","color":{"color":"#f8b6de","highlight":"#f26dbe"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x065F\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f360","from":"0x65F:0","to":"0x65F:1","label":"","color":{"color":"#f8b6de","highlight":"#f26dbe"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x065F\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f361","from":"0x65F:0","to":"0x65F:2","label":"","color":{"color":"#f8b6de","highlight":"#f26dbe"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x065F\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f362","from":"0x65D:0","to":"0x65D:4","label":"","color":{"color":"#f8b6e0","highlight":"#f26dc1"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x065D\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f363","from":"0x65D:0","to":"0x65D:1","label":"","color":{"color":"#f8b6e0","highlight":"#f26dc1"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x065D\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f364","from":"0x65D:0","to":"0x65D:2","label":"","color":{"color":"#f8b6e0","highlight":"#f26dc1"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x065D\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f365","from":"0xFD:0","to":"0xFD:1","label":"","color":{"color":"#f8b6b7","highlight":"#f26d6f"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x00FD\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f366","from":"0xFD:0","to":"0xFD:2","label":"","color":{"color":"#f8b6b7","highlight":"#f26d6f"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x00FD\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f367","from":"0xFD:0","to":"0xFD:4","label":"","color":{"color":"#f8b6b7","highlight":"#f26d6f"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x00FD\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f368","from":"0x3C0:0","to":"0x3C0:4","label":"","color":{"color":"#cbb6f8","highlight":"#976df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x03C0\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f369","from":"0x3C0:0","to":"0x3C0:3","label":"","color":{"color":"#cbb6f8","highlight":"#976df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x03C0\nsrc_domain: 0\ndst_domain: 3\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f370","from":"0x3C0:0","to":"0x3C0:5","label":"","color":{"color":"#cbb6f8","highlight":"#976df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x03C0\nsrc_domain: 0\ndst_domain: 5\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f371","from":"0x3C0:0","to":"0x3C0:2","label":"","color":{"color":"#cbb6f8","highlight":"#976df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x03C0\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f372","from":"0x3C0:0","to":"0x3C0:1","label":"","color":{"color":"#cbb6f8","highlight":"#976df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x03C0\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f373","from":"0x6B2:0","to":"0x6B2:1","label":"","color":{"color":"#f8b6d9","highlight":"#f26db4"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x06B2\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f374","from":"0x6B2:0","to":"0x6B2:2","label":"","color":{"color":"#f8b6d9","highlight":"#f26db4"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x06B2\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f375","from":"0x6B2:0","to":"0x6B2:4","label":"","color":{"color":"#f8b6d9","highlight":"#f26db4"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x06B2\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f376","from":"0x3BE:0","to":"0x3BE:1","label":"","color":{"color":"#cab6f8","highlight":"#956df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x03BE\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f377","from":"0x3BE:0","to":"0x3BE:2","label":"","color":{"color":"#cab6f8","highlight":"#956df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x03BE\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f378","from":"0x3BE:0","to":"0x3BE:3","label":"","color":{"color":"#cab6f8","highlight":"#956df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x03BE\nsrc_domain: 0\ndst_domain: 3\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f379","from":"0x3BE:0","to":"0x3BE:4","label":"","color":{"color":"#cab6f8","highlight":"#956df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x03BE\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f380","from":"0x31B:0","to":"0x31B:1","label":"","color":{"color":"#b6b9f8","highlight":"#6d74f2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x031B\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f381","from":"0x31B:0","to":"0x31B:2","label":"","color":{"color":"#b6b9f8","highlight":"#6d74f2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x031B\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f382","from":"0x1A4:0","to":"0x1A4:2","label":"","color":{"color":"#b6f8cf","highlight":"#6df2a0"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x01A4\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f383","from":"0x1A4:0","to":"0x1A4:4","label":"","color":{"color":"#b6f8cf","highlight":"#6df2a0"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x01A4\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f384","from":"0x6B4:0","to":"0x6B4:1","label":"","color":{"color":"#f8b6d8","highlight":"#f26db1"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x06B4\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f385","from":"0x6B4:0","to":"0x6B4:4","label":"","color":{"color":"#f8b6d8","highlight":"#f26db1"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x06B4\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f386","from":"0x1A5555B7:0","to":"0x1A5555B7:1","label":"","color":{"color":"#b6f8eb","highlight":"#6df2d7"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5555B7\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f387","from":"0x1A5555B7:0","to":"0x1A5555B7:2","label":"","color":{"color":"#b6f8eb","highlight":"#6df2d7"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5555B7\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f388","from":"0xAD:0","to":"0xAD:2","label":"","color":{"color":"#f8b6d1","highlight":"#f26da4"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x00AD\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f389","from":"0xAD:0","to":"0xAD:1","label":"","color":{"color":"#f8b6d1","highlight":"#f26da4"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x00AD\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f390","from":"0x102:0","to":"0x102:2","label":"","color":{"color":"#f8b6b6","highlight":"#f26d6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0102\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f391","from":"0x102:0","to":"0x102:4","label":"","color":{"color":"#f8b6b6","highlight":"#f26d6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0102\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f392","from":"0x102:0","to":"0x102:1","label":"","color":{"color":"#f8b6b6","highlight":"#f26d6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0102\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f393","from":"0x25D:0","to":"0x25D:4","label":"","color":{"color":"#b6cbf8","highlight":"#6d98f2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x025D\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f394","from":"0x25D:0","to":"0x25D:2","label":"","color":{"color":"#b6cbf8","highlight":"#6d98f2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x025D\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f395","from":"0x16A9545F:0","to":"0x16A9545F:1","label":"","color":{"color":"#ebf8b6","highlight":"#d7f26d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x16A9545F\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f396","from":"0x16A9545F:0","to":"0x16A9545F:2","label":"","color":{"color":"#ebf8b6","highlight":"#d7f26d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x16A9545F\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f397","from":"0xDB:0","to":"0xDB:2","label":"","color":{"color":"#f8b6c0","highlight":"#f26d82"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x00DB\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f398","from":"0xDB:0","to":"0xDB:4","label":"","color":{"color":"#f8b6c0","highlight":"#f26d82"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x00DB\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f399","from":"0x545:0","to":"0x545:4","label":"","color":{"color":"#ecb6f8","highlight":"#d96df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0545\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f400","from":"0x545:0","to":"0x545:2","label":"","color":{"color":"#ecb6f8","highlight":"#d96df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0545\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f401","from":"0x116:0","to":"0x116:2","label":"","color":{"color":"#f8b9b6","highlight":"#f2746d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0116\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f402","from":"0x116:0","to":"0x116:4","label":"","color":{"color":"#f8b9b6","highlight":"#f2746d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0116\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f403","from":"0x3FB:0","to":"0x3FB:1","label":"","color":{"color":"#d9b6f8","highlight":"#b46df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x03FB\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f404","from":"0x3FB:0","to":"0x3FB:4","label":"","color":{"color":"#d9b6f8","highlight":"#b46df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x03FB\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f405","from":"0x12DD5501:0","to":"0x12DD5501:1","label":"","color":{"color":"#f8d8b6","highlight":"#f2b16d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD5501\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f406","from":"0x12DD5501:0","to":"0x12DD5501:2","label":"","color":{"color":"#f8d8b6","highlight":"#f2b16d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD5501\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f407","from":"0x12DD5501:0","to":"0x12DD5501:4","label":"","color":{"color":"#f8d8b6","highlight":"#f2b16d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD5501\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f408","from":"0x12DD54D6:0","to":"0x12DD54D6:4","label":"","color":{"color":"#f8d0b6","highlight":"#f2a16d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD54D6\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f409","from":"0x12DD54D6:0","to":"0x12DD54D6:2","label":"","color":{"color":"#f8d0b6","highlight":"#f2a16d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD54D6\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f410","from":"0x17F00010:1","to":"0x17F00010:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x17F00010\nsrc_domain: 1\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f411","from":"0x17F00010:1","to":"0x17F00010:4","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x17F00010\nsrc_domain: 1\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f412","from":"0x14D:0","to":"0x14D:2","label":"","color":{"color":"#f8efb6","highlight":"#f2e06d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x014D\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f413","from":"0x14D:0","to":"0x14D:4","label":"","color":{"color":"#f8efb6","highlight":"#f2e06d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x014D\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f414","from":"0x14D:0","to":"0x14D:1","label":"","color":{"color":"#f8efb6","highlight":"#f2e06d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x014D\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f415","from":"0x303:0","to":"0x303:4","label":"","color":{"color":"#b6bcf8","highlight":"#6d79f2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0303\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f416","from":"0x303:0","to":"0x303:2","label":"","color":{"color":"#b6bcf8","highlight":"#6d79f2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0303\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f417","from":"0x3E5:0","to":"0x3E5:4","label":"","color":{"color":"#d6b6f8","highlight":"#ad6df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x03E5\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f418","from":"0x3E5:0","to":"0x3E5:2","label":"","color":{"color":"#d6b6f8","highlight":"#ad6df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x03E5\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f419","from":"0x12DD5497:0","to":"0x12DD5497:1","label":"","color":{"color":"#f8c5b6","highlight":"#f28c6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD5497\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f420","from":"0x12DD5497:0","to":"0x12DD5497:2","label":"","color":{"color":"#f8c5b6","highlight":"#f28c6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD5497\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f421","from":"0x1A555548:0","to":"0x1A555548:4","label":"","color":{"color":"#b6f8db","highlight":"#6df2b8"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A555548\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f422","from":"0x1A555548:0","to":"0x1A555548:2","label":"","color":{"color":"#b6f8db","highlight":"#6df2b8"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A555548\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f423","from":"0x40:0","to":"0x40:4","label":"","color":{"color":"#dcb6f8","highlight":"#ba6df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0040\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f424","from":"0x40:0","to":"0x40:1","label":"","color":{"color":"#dcb6f8","highlight":"#ba6df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0040\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f425","from":"0x40:0","to":"0x40:2","label":"","color":{"color":"#dcb6f8","highlight":"#ba6df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0040\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f426","from":"0x1A5555BF:0","to":"0x1A5555BF:2","label":"","color":{"color":"#b6f8ef","highlight":"#6df2df"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5555BF\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f427","from":"0x1A5555BF:0","to":"0x1A5555BF:4","label":"","color":{"color":"#b6f8ef","highlight":"#6df2df"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5555BF\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f428","from":"0xFC:0","to":"0xFC:1","label":"","color":{"color":"#f8b6b8","highlight":"#f26d72"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x00FC\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f429","from":"0xFC:0","to":"0xFC:2","label":"","color":{"color":"#f8b6b8","highlight":"#f26d72"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x00FC\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f430","from":"0xFC:0","to":"0xFC:4","label":"","color":{"color":"#f8b6b8","highlight":"#f26d72"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x00FC\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f431","from":"0x32A:0","to":"0x32A:4","label":"","color":{"color":"#b6b6f8","highlight":"#6d6ef2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x032A\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f432","from":"0x32A:0","to":"0x32A:2","label":"","color":{"color":"#b6b6f8","highlight":"#6d6ef2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x032A\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f433","from":"0x1A5556EA:0","to":"0x1A5556EA:2","label":"","color":{"color":"#b6f7f8","highlight":"#6deff2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5556EA\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f434","from":"0x1A5556EA:0","to":"0x1A5556EA:3","label":"","color":{"color":"#b6f7f8","highlight":"#6deff2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5556EA\nsrc_domain: 0\ndst_domain: 3\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f435","from":"0x1A5556EA:0","to":"0x1A5556EA:4","label":"","color":{"color":"#b6f7f8","highlight":"#6deff2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5556EA\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f436","from":"0x1A5556EA:0","to":"0x1A5556EA:1","label":"","color":{"color":"#b6f7f8","highlight":"#6deff2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5556EA\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f437","from":"0x670:0","to":"0x670:1","label":"","color":{"color":"#f8b6dc","highlight":"#f26db9"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0670\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f438","from":"0x670:0","to":"0x670:2","label":"","color":{"color":"#f8b6dc","highlight":"#f26db9"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0670\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f439","from":"0x670:0","to":"0x670:4","label":"","color":{"color":"#f8b6dc","highlight":"#f26db9"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0670\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f440","from":"0x3D4:0","to":"0x3D4:4","label":"","color":{"color":"#cfb6f8","highlight":"#9f6df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x03D4\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f441","from":"0x3D4:0","to":"0x3D4:1","label":"","color":{"color":"#cfb6f8","highlight":"#9f6df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x03D4\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f442","from":"0x12DD54C9:0","to":"0x12DD54C9:4","label":"","color":{"color":"#f8ccb6","highlight":"#f2996d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD54C9\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f443","from":"0x12DD54C9:0","to":"0x12DD54C9:2","label":"","color":{"color":"#f8ccb6","highlight":"#f2996d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD54C9\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f444","from":"0x3F:0","to":"0x3F:1","label":"","color":{"color":"#d8b6f8","highlight":"#b26df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x003F\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f445","from":"0x3F:0","to":"0x3F:2","label":"","color":{"color":"#d8b6f8","highlight":"#b26df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x003F\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f446","from":"0x138:0","to":"0x138:1","label":"","color":{"color":"#f8e5b6","highlight":"#f2cb6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0138\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f447","from":"0x138:0","to":"0x138:2","label":"","color":{"color":"#f8e5b6","highlight":"#f2cb6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0138\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f448","from":"0x1A5555AC:0","to":"0x1A5555AC:1","label":"","color":{"color":"#b6f8e7","highlight":"#6df2d0"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5555AC\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f449","from":"0x1A5555AC:0","to":"0x1A5555AC:2","label":"","color":{"color":"#b6f8e7","highlight":"#6df2d0"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5555AC\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f450","from":"0x1A5555AC:0","to":"0x1A5555AC:4","label":"","color":{"color":"#b6f8e7","highlight":"#6df2d0"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5555AC\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f451","from":"0x139:0","to":"0x139:1","label":"","color":{"color":"#f8e6b6","highlight":"#f2ce6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0139\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f452","from":"0x139:0","to":"0x139:2","label":"","color":{"color":"#f8e6b6","highlight":"#f2ce6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0139\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f453","from":"0x139:0","to":"0x139:4","label":"","color":{"color":"#f8e6b6","highlight":"#f2ce6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0139\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f454","from":"0x5BE:0","to":"0x5BE:1","label":"","color":{"color":"#f8b6f1","highlight":"#f26de3"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x05BE\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f455","from":"0x5BE:0","to":"0x5BE:2","label":"","color":{"color":"#f8b6f1","highlight":"#f26de3"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x05BE\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f456","from":"0x2C2:0","to":"0x2C2:1","label":"","color":{"color":"#b6c0f8","highlight":"#6d81f2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x02C2\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f457","from":"0x2C2:0","to":"0x2C2:2","label":"","color":{"color":"#b6c0f8","highlight":"#6d81f2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x02C2\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f458","from":"0x12DD553D:0","to":"0x12DD553D:4","label":"","color":{"color":"#f8dcb6","highlight":"#f2b96d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD553D\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f459","from":"0x12DD553D:0","to":"0x12DD553D:1","label":"","color":{"color":"#f8dcb6","highlight":"#f2b96d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD553D\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f460","from":"0x397:0","to":"0x397:2","label":"","color":{"color":"#c7b6f8","highlight":"#906df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0397\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f461","from":"0x397:0","to":"0x397:4","label":"","color":{"color":"#c7b6f8","highlight":"#906df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0397\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f462","from":"0x1A555541:0","to":"0x1A555541:4","label":"","color":{"color":"#b6f8da","highlight":"#6df2b5"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A555541\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f463","from":"0x1A555541:0","to":"0x1A555541:1","label":"","color":{"color":"#b6f8da","highlight":"#6df2b5"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A555541\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f464","from":"0x1A555541:0","to":"0x1A555541:2","label":"","color":{"color":"#b6f8da","highlight":"#6df2b5"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A555541\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"}]; |
| |
| const container = document.getElementById("network"); |
| const options = { |
| nodes: { |
| shape: "dot", |
| size: 16, |
| font: { size: 14, face: "Times New Roman", color: "#222", bold: true }, |
| borderWidth: 0, |
| chosen: false |
| }, |
| edges: { |
| arrows: { to: { enabled: true, scaleFactor: 0.8 } }, |
| smooth: { enabled: true, type: "dynamic" }, |
| font: { size: 11, align: "middle" } |
| }, |
| interaction: { |
| hover: true, |
| tooltipDelay: 200 |
| }, |
| physics: { |
| enabled: true, |
| barnesHut: { |
| gravitationalConstant: -2600, |
| centralGravity: 0.58, |
| springLength: 110, |
| springConstant: 0.065, |
| damping: 0.42, |
| avoidOverlap: 0.30 |
| }, |
| maxVelocity: 8, |
| timestep: 0.35, |
| adaptiveTimestep: false, |
| stabilization: { |
| enabled: true, |
| iterations: 520 |
| } |
| } |
| }; |
| |
| const network = new vis.Network(container, { nodes: nodesDataset, edges: edgesDataset }, options); |
| sccGlowSvg = document.createElementNS("http://www.w3.org/2000/svg", "svg"); |
| sccGlowSvg.classList.add("scc-glow-layer"); |
| sccGlowSvg.setAttribute("aria-hidden", "true"); |
| sccGlowDefs = document.createElementNS("http://www.w3.org/2000/svg", "defs"); |
| sccGlowSvg.appendChild(sccGlowDefs); |
| container.insertBefore(sccGlowSvg, container.firstChild); |
| initSccGlowDefs(); |
| |
| function canonicalCanId(text) { |
| const s = String(text || "").trim(); |
| if (!s) return ""; |
| let v; |
| if (/^0x/i.test(s)) { |
| v = parseInt(s, 16); |
| } else if (/^\d+$/.test(s)) { |
| v = parseInt(s, 10); |
| } else { |
| try { v = parseInt(s, 16); } catch (e) { return s.toUpperCase(); } |
| } |
| if (!Number.isFinite(v)) return s.toUpperCase(); |
| return "0x" + v.toString(16).toUpperCase(); |
| } |
| |
| function clusterKeyFromNodeId(nodeId) { |
| const s = String(nodeId || ""); |
| const i = s.lastIndexOf(":"); |
| return i >= 0 ? s.slice(0, i) : s; |
| } |
| |
| function focusCanIdCluster(inputCanId) { |
| const target = canonicalCanId(inputCanId); |
| if (!target) { |
| showError("Enter a CAN-ID to focus."); |
| return; |
| } |
| const matchedNodeIds = []; |
| nodesDataset.forEach((node) => { |
| const key = clusterKeyFromNodeId(node.id); |
| if (key === target || canonicalCanId(key) === target) { |
| matchedNodeIds.push(node.id); |
| } |
| }); |
| if (matchedNodeIds.length === 0) { |
| showError(`No nodes for CAN-ID=${target} in forwarding graph.`); |
| return; |
| } |
| |
| const matchedNodeSet = new Set(matchedNodeIds); |
| const matchedEdgeIds = []; |
| edgesDataset.forEach((edge) => { |
| if (edge.kind !== "cohesion" && (matchedNodeSet.has(edge.from) || matchedNodeSet.has(edge.to))) { |
| matchedEdgeIds.push(edge.id); |
| } |
| }); |
| |
| hideError(); |
| focusedCanId = target; |
| scheduleGlowUpdate(); |
| network.redraw(); |
| network.selectNodes(matchedNodeIds, false); |
| network.selectEdges(matchedEdgeIds); |
| network.fit({ |
| nodes: matchedNodeIds, |
| animation: { |
| duration: 600, |
| easingFunction: "easeInOutQuad", |
| }, |
| }); |
| } |
| |
| function escapeHtml(value) { |
| return String(value ?? "").replace(/[&<>"']/g, (ch) => ({ |
| "&": "&", |
| "<": "<", |
| ">": ">", |
| '"': """, |
| "'": "'", |
| }[ch])); |
| } |
| |
| function nodeDomainFromId(nodeId) { |
| const parts = String(nodeId || "").split(":"); |
| return parts.length ? parts[parts.length - 1].replace(/^x/, "") : String(nodeId || ""); |
| } |
| |
| function displayNodeLabel(node) { |
| if (!node) return ""; |
| const label = String(node.label || node.id || "").replace(/\n/g, " / "); |
| return label.replace("Domain-", "D"); |
| } |
| |
| function focusNodes(nodeIds) { |
| const ids = [...new Set(nodeIds)].filter(Boolean); |
| if (!ids.length) return; |
| const idSet = new Set(ids); |
| const edgeIds = []; |
| edgesDataset.forEach((edge) => { |
| if (edge.kind !== "cohesion" && (idSet.has(edge.from) || idSet.has(edge.to))) { |
| edgeIds.push(edge.id); |
| } |
| }); |
| hideError(); |
| network.selectNodes(ids, false); |
| network.selectEdges(edgeIds); |
| network.fit({ |
| nodes: ids, |
| animation: { |
| duration: 650, |
| easingFunction: "easeInOutQuad", |
| }, |
| }); |
| } |
| |
| function classify_scc(scc) { |
| const breakdown = scc.edge_breakdown || {}; |
| return ((breakdown.normal || 0) + (breakdown.virtual || 0) + (breakdown.potential || 0)) > 0 ? "unknown" : "broadcast"; |
| } |
| |
| function sccTypeLabel(type) { |
| return type === "broadcast" ? "Co-source Broadcast" : "Potential Forwarding"; |
| } |
| |
| function groupCanId(group) { |
| const canIds = [...new Set(group.map((id) => clusterKeyFromNodeId(id)))].sort((a, b) => a.localeCompare(b)); |
| return canIds.length === 1 ? canIds[0] : canIds.join(", "); |
| } |
| |
| function edgeBreakdownForGroup(group, edges) { |
| const nodeSet = new Set(group); |
| const breakdown = { broadcast: 0, normal: 0, virtual: 0, potential: 0 }; |
| const groupEdges = []; |
| for (const edge of edges) { |
| if (!nodeSet.has(edge.from) || !nodeSet.has(edge.to)) continue; |
| if (edge.kind === "broadcast") breakdown.broadcast += 1; |
| else if (edge.kind === "potential") breakdown.potential += 1; |
| else if (edge.kind === "virtual") breakdown.virtual += 1; |
| else if (edge.kind === "forwarding") breakdown.normal += 1; |
| else continue; |
| groupEdges.push(edge); |
| } |
| return { breakdown, groupEdges }; |
| } |
| |
| function makeSccObject(group, edges, idx, preferredType = null) { |
| const sortedNodes = [...new Set(group)].sort((a, b) => nodeDomainFromId(a).localeCompare(nodeDomainFromId(b), undefined, { numeric: true })); |
| const edgeInfo = edgeBreakdownForGroup(sortedNodes, edges); |
| const scc = { |
| scc_id: `scc_${String(idx + 1).padStart(3, "0")}`, |
| can_id: groupCanId(sortedNodes), |
| nodes: sortedNodes, |
| edges: edgeInfo.groupEdges, |
| edge_breakdown: edgeInfo.breakdown, |
| }; |
| const computedType = classify_scc(scc); |
| scc.scc_type = preferredType === "broadcast" ? computedType : (preferredType || computedType); |
| return scc; |
| } |
| |
| function buildSccGroups(nodes, edges) { |
| const byKey = new Map(); |
| const addGroup = (group, preferredType) => { |
| if (!group || group.length < 2) return; |
| const key = [...new Set(group)].sort().join("|"); |
| const existing = byKey.get(key); |
| const scc = makeSccObject(group, edges, byKey.size, preferredType); |
| if (!existing || (existing.scc_type === "broadcast" && scc.scc_type === "unknown")) { |
| byKey.set(key, scc); |
| } |
| }; |
| connectedGroups(nodes, edges, (edge) => edge.kind === "broadcast").forEach((group) => addGroup(group, "broadcast")); |
| stronglyConnectedComponents(nodes, edges).forEach((group) => addGroup(group, null)); |
| const groups = [...byKey.values()]; |
| groups.forEach((group, idx) => { group.scc_id = `scc_${String(idx + 1).padStart(3, "0")}`; }); |
| return groups.sort((a, b) => { |
| if (a.scc_type !== b.scc_type) return a.scc_type === "unknown" ? -1 : 1; |
| if (a.scc_type === "unknown") return b.nodes.length - a.nodes.length || a.can_id.localeCompare(b.can_id); |
| return a.can_id.localeCompare(b.can_id); |
| }); |
| } |
| |
| function createCohesionEdges(sccGroups) { |
| const cohesionEdges = []; |
| for (const group of sccGroups) { |
| for (let i = 0; i < group.nodes.length; i += 1) { |
| for (let j = i + 1; j < group.nodes.length; j += 1) { |
| cohesionEdges.push({ |
| id: `cohesion_${group.scc_id}_${i}_${j}`, |
| from: group.nodes[i], |
| to: group.nodes[j], |
| kind: "cohesion", |
| label: "", |
| title: "", |
| color: { color: "rgba(0,0,0,0)", highlight: "rgba(0,0,0,0)", hover: "rgba(0,0,0,0)" }, |
| width: 0.1, |
| arrows: { to: { enabled: false } }, |
| smooth: false, |
| physics: true, |
| length: 44, |
| springConstant: 0.85, |
| chosen: false, |
| hoverWidth: 0, |
| selectionWidth: 0, |
| }); |
| } |
| } |
| } |
| return cohesionEdges; |
| } |
| |
| function sccIsVisible(group) { |
| if (sccHullMode === "Off") return false; |
| if (sccHullMode === "OnlyBroadcast") return group.scc_type === "broadcast"; |
| if (sccHullMode === "OnlyUnknown") return group.scc_type === "unknown"; |
| return true; |
| } |
| |
| function visibleSccGroups() { |
| return sccGroupsCache.filter((group) => sccIsVisible(group)); |
| } |
| |
| function svgEl(tag) { |
| return document.createElementNS("http://www.w3.org/2000/svg", tag); |
| } |
| |
| function initSccGlowDefs() { |
| if (!sccGlowDefs) return; |
| sccGlowDefs.innerHTML = ""; |
| const specs = [ |
| { type: "unknown", color: "#FB923C" }, |
| { type: "broadcast", color: "#A78BFA" }, |
| ]; |
| for (const spec of specs) { |
| for (const layer of ["core", "halo"]) { |
| const gradient = svgEl("radialGradient"); |
| gradient.id = `scc-glow-${layer}-${spec.type}`; |
| gradient.setAttribute("cx", "46%"); |
| gradient.setAttribute("cy", "42%"); |
| gradient.setAttribute("r", "62%"); |
| gradient.setAttribute("gradientUnits", "objectBoundingBox"); |
| [ |
| ["0%", 1], |
| ["36%", layer === "core" ? 0.82 : 0.70], |
| ["72%", layer === "core" ? 0.36 : 0.30], |
| ["100%", 0], |
| ].forEach(([offset, opacity]) => { |
| const stop = svgEl("stop"); |
| stop.setAttribute("offset", offset); |
| stop.setAttribute("stop-color", spec.color); |
| stop.setAttribute("stop-opacity", String(opacity)); |
| gradient.appendChild(stop); |
| }); |
| sccGlowDefs.appendChild(gradient); |
| } |
| const filter = svgEl("filter"); |
| filter.id = `scc-glow-${spec.type}`; |
| filter.setAttribute("x", "-50%"); |
| filter.setAttribute("y", "-50%"); |
| filter.setAttribute("width", "200%"); |
| filter.setAttribute("height", "200%"); |
| const blur = svgEl("feGaussianBlur"); |
| blur.setAttribute("stdDeviation", spec.type === "unknown" ? "8" : "7"); |
| const transfer = svgEl("feComponentTransfer"); |
| const alpha = svgEl("feFuncA"); |
| alpha.setAttribute("type", "gamma"); |
| alpha.setAttribute("amplitude", "1.2"); |
| alpha.setAttribute("exponent", "0.85"); |
| transfer.appendChild(alpha); |
| filter.appendChild(blur); |
| filter.appendChild(transfer); |
| sccGlowDefs.appendChild(filter); |
| } |
| } |
| |
| function circleFrom2(a, b) { |
| return { |
| x: (a.x + b.x) / 2, |
| y: (a.y + b.y) / 2, |
| r: Math.hypot(a.x - b.x, a.y - b.y) / 2, |
| }; |
| } |
| |
| function circleFrom3(a, b, c) { |
| const d = 2 * (a.x * (b.y - c.y) + b.x * (c.y - a.y) + c.x * (a.y - b.y)); |
| if (Math.abs(d) < 0.0001) { |
| return [circleFrom2(a, b), circleFrom2(a, c), circleFrom2(b, c)] |
| .sort((m, n) => n.r - m.r)[0]; |
| } |
| const ax2ay2 = a.x * a.x + a.y * a.y; |
| const bx2by2 = b.x * b.x + b.y * b.y; |
| const cx2cy2 = c.x * c.x + c.y * c.y; |
| const x = (ax2ay2 * (b.y - c.y) + bx2by2 * (c.y - a.y) + cx2cy2 * (a.y - b.y)) / d; |
| const y = (ax2ay2 * (c.x - b.x) + bx2by2 * (a.x - c.x) + cx2cy2 * (b.x - a.x)) / d; |
| return { x, y, r: Math.hypot(x - a.x, y - a.y) }; |
| } |
| |
| function pointInCircle(point, circle) { |
| return Math.hypot(point.x - circle.x, point.y - circle.y) <= circle.r + 0.5; |
| } |
| |
| function minimumEnclosingCircle(points) { |
| if (!points.length) return null; |
| let circle = { x: points[0].x, y: points[0].y, r: 0 }; |
| for (let i = 0; i < points.length; i += 1) { |
| if (pointInCircle(points[i], circle)) continue; |
| circle = { x: points[i].x, y: points[i].y, r: 0 }; |
| for (let j = 0; j < i; j += 1) { |
| if (pointInCircle(points[j], circle)) continue; |
| circle = circleFrom2(points[i], points[j]); |
| for (let k = 0; k < j; k += 1) { |
| if (!pointInCircle(points[k], circle)) circle = circleFrom3(points[i], points[j], points[k]); |
| } |
| } |
| } |
| return circle; |
| } |
| |
| function buildGlowGeometry(group, positions = null) { |
| const pos = positions || network.getPositions(group.nodes); |
| const points = group.nodes.map((id) => pos[id]).filter(Boolean); |
| if (points.length < 2) return null; |
| if (points.length === 2) { |
| const [a, b] = points; |
| const cx = (a.x + b.x) / 2; |
| const cy = (a.y + b.y) / 2; |
| const distance = Math.hypot(a.x - b.x, a.y - b.y); |
| const rx = distance / 2 + 42; |
| const ry = 36; |
| const angle = Math.atan2(b.y - a.y, b.x - a.x); |
| const maxRadius = Math.max(rx, ry) + 18; |
| return { |
| shape: "ellipse", |
| cx, |
| cy, |
| rx, |
| ry, |
| angle, |
| labelPoint: { x: cx + Math.cos(angle) * rx, y: cy + Math.sin(angle) * rx - ry }, |
| bounds: { minX: cx - maxRadius, minY: cy - maxRadius, maxX: cx + maxRadius, maxY: cy + maxRadius }, |
| }; |
| } |
| const circle = minimumEnclosingCircle(points); |
| if (!circle) return null; |
| const r = circle.r + 38; |
| return { |
| shape: "circle", |
| cx: circle.x, |
| cy: circle.y, |
| rx: r, |
| ry: r, |
| angle: 0, |
| labelPoint: { x: circle.x + r, y: circle.y - r }, |
| bounds: { minX: circle.x - r - 18, minY: circle.y - r - 18, maxX: circle.x + r + 18, maxY: circle.y + r + 18 }, |
| }; |
| } |
| |
| function ensureGlowGroup(group) { |
| if (!sccGlowSvg) return null; |
| let g = sccGlowSvg.querySelector(`g.scc-glow[data-scc-id="${group.scc_id}"]`); |
| if (g) return g; |
| g = svgEl("g"); |
| g.classList.add("scc-glow"); |
| g.dataset.sccId = group.scc_id; |
| g.dataset.sccType = group.scc_type; |
| g.dataset.canId = group.can_id; |
| const halo = svgEl("ellipse"); |
| halo.classList.add("halo"); |
| const core = svgEl("ellipse"); |
| core.classList.add("core"); |
| g.appendChild(halo); |
| g.appendChild(core); |
| sccGlowSvg.appendChild(g); |
| return g; |
| } |
| |
| function currentGlowState(group, timeMs) { |
| const isUnknown = group.scc_type === "unknown"; |
| const reduceMotion = window.matchMedia("(prefers-reduced-motion: reduce)").matches; |
| const baseCore = isUnknown ? 0.42 : 0.34; |
| let coreOpacity = baseCore; |
| let haloOpacity = isUnknown ? 0.20 : 0.16; |
| let scale = 1; |
| if (isUnknown && breathingEnabled && !reduceMotion) { |
| const t = (Math.sin(timeMs / 4000 * Math.PI * 2) + 1) / 2; |
| coreOpacity = 0.36 + t * 0.12; |
| scale = 1 + t * 0.018; |
| } |
| if (focusedCanId && canonicalCanId(group.can_id) !== focusedCanId) { |
| coreOpacity = Math.min(coreOpacity, 0.08); |
| haloOpacity = Math.min(haloOpacity, 0.04); |
| } |
| if (hoveredSccId) { |
| if (hoveredSccId === group.scc_id) { |
| coreOpacity = 0.62; |
| haloOpacity = Math.max(haloOpacity, 0.28); |
| scale = Math.max(scale, 1.05); |
| } else { |
| coreOpacity = 0.05; |
| haloOpacity = 0.03; |
| } |
| } |
| if (flashSccId === group.scc_id && !reduceMotion) { |
| const elapsed = timeMs - flashStartedAt; |
| if (elapsed < 800) { |
| const flash = Math.sin((elapsed / 800) * Math.PI); |
| coreOpacity = Math.max(coreOpacity, 0.28 + flash * 0.27); |
| haloOpacity = Math.max(haloOpacity, 0.12 + flash * 0.18); |
| } else { |
| flashSccId = null; |
| } |
| } |
| return { coreOpacity, haloOpacity, scale }; |
| } |
| |
| function positionGlowGroup(g, geometry) { |
| const scale = network.getScale(); |
| const center = network.canvasToDOM({ x: geometry.cx, y: geometry.cy }); |
| const angle = geometry.angle * 180 / Math.PI; |
| g.setAttribute("transform", `translate(${center.x} ${center.y}) rotate(${angle})`); |
| return scale; |
| } |
| |
| function updateGlowElement(el, geometry, radiusOffset, opacity, fillId, filterId, scale, scaleBoost) { |
| const rx = Math.max(1, (geometry.rx + radiusOffset) * scale * scaleBoost); |
| const ry = Math.max(1, (geometry.ry + radiusOffset) * scale * scaleBoost); |
| el.setAttribute("cx", "0"); |
| el.setAttribute("cy", "0"); |
| el.setAttribute("rx", String(rx)); |
| el.setAttribute("ry", String(ry)); |
| el.setAttribute("fill", `url(#${fillId})`); |
| el.setAttribute("filter", `url(#${filterId})`); |
| el.setAttribute("opacity", String(opacity)); |
| el.setAttribute("stroke", "none"); |
| el.removeAttribute("transform"); |
| } |
| |
| function renderSccGlows() { |
| if (!sccGlowSvg || !sccGlowDefs) return; |
| const rect = container.getBoundingClientRect(); |
| sccGlowSvg.setAttribute("viewBox", `0 0 ${rect.width} ${rect.height}`); |
| sccGlowSvg.setAttribute("width", String(rect.width)); |
| sccGlowSvg.setAttribute("height", String(rect.height)); |
| const groups = visibleSccGroups(); |
| const visibleIds = new Set(groups.map((group) => group.scc_id)); |
| sccGlowSvg.querySelectorAll("g.scc-glow").forEach((g) => { |
| if (!visibleIds.has(g.dataset.sccId)) g.remove(); |
| }); |
| const timeMs = performance.now(); |
| const positions = network.getPositions(groups.flatMap((group) => group.nodes)); |
| for (const group of groups) { |
| const geometry = buildGlowGeometry(group, positions); |
| if (!geometry) continue; |
| const g = ensureGlowGroup(group); |
| if (!g) continue; |
| g.dataset.sccType = group.scc_type; |
| g.dataset.canId = group.can_id; |
| const state = currentGlowState(group, timeMs); |
| const fillType = group.scc_type === "unknown" ? "unknown" : "broadcast"; |
| const scale = positionGlowGroup(g, geometry); |
| updateGlowElement(g.querySelector(".halo"), geometry, 18, state.haloOpacity, `scc-glow-halo-${fillType}`, `scc-glow-${fillType}`, scale, state.scale); |
| updateGlowElement(g.querySelector(".core"), geometry, 0, state.coreOpacity, `scc-glow-core-${fillType}`, `scc-glow-${fillType}`, scale, state.scale); |
| } |
| if ( |
| groups.some((group) => group.scc_type === "unknown") |
| && breathingEnabled |
| && !window.matchMedia("(prefers-reduced-motion: reduce)").matches |
| ) { |
| scheduleGlowUpdate(); |
| } |
| } |
| |
| function scheduleGlowUpdate() { |
| if (glowRafPending) return; |
| glowRafPending = true; |
| requestAnimationFrame(() => { |
| glowRafPending = false; |
| renderSccGlows(); |
| }); |
| } |
| |
| function sccOrdinal(group) { |
| const match = String(group?.scc_id || "").match(/(\d+)$/); |
| return match ? String(parseInt(match[1], 10)) : ""; |
| } |
| |
| function sccTitle(group) { |
| const name = `${sccTypeLabel(group?.scc_type)} SCC`; |
| const ordinal = sccOrdinal(group); |
| return ordinal ? `${name} #${ordinal}` : name; |
| } |
| |
| function sccNodesText(group) { |
| return (group?.nodes || []) |
| .map((id) => { |
| const domain = nodeDomainFromId(id); |
| return domain === "0" ? "virtual" : `D${domain}`; |
| }) |
| .join(", "); |
| } |
| |
| function sccBreakdownText(group, includeVirtual = false) { |
| const breakdown = group?.edge_breakdown || {}; |
| const parts = [ |
| `${breakdown.normal || 0} forwarding`, |
| `${breakdown.potential || 0} potential forwarding`, |
| `${breakdown.broadcast || 0} co-source broadcast`, |
| ]; |
| if (includeVirtual) parts.push(`${breakdown.virtual || 0} virtual`); |
| return parts.join(" · "); |
| } |
| |
| function showSccTooltip(group, domPoint) { |
| if (!sccTooltip || !group || !domPoint) return; |
| sccTooltip.innerHTML = ` |
| <b>${escapeHtml(sccTitle(group))}</b> |
| <div class="tooltip-line">CAN-ID: ${escapeHtml(group.can_id)}</div> |
| <div class="tooltip-line">Nodes: ${escapeHtml(sccNodesText(group))}</div> |
| <div class="tooltip-line">Edges: ${escapeHtml(sccBreakdownText(group, false))}</div> |
| `; |
| sccTooltip.style.display = "block"; |
| const tooltipRect = sccTooltip.getBoundingClientRect(); |
| const containerRect = container.getBoundingClientRect(); |
| const x = Math.min(Math.max(8, domPoint.x + 10), Math.max(8, containerRect.width - tooltipRect.width - 8)); |
| const y = Math.max(8, domPoint.y - tooltipRect.height - 12); |
| sccTooltip.style.left = `${x}px`; |
| sccTooltip.style.top = `${y}px`; |
| } |
| |
| function hideSccTooltip() { |
| if (!sccTooltip) return; |
| sccTooltip.style.display = "none"; |
| sccTooltip.innerHTML = ""; |
| } |
| |
| function pointInBounds(point, bounds) { |
| return point.x >= bounds.minX && point.x <= bounds.maxX && point.y >= bounds.minY && point.y <= bounds.maxY; |
| } |
| |
| function pointInGlowGeometry(point, geometry) { |
| if (!pointInBounds(point, geometry.bounds)) return false; |
| const dx = point.x - geometry.cx; |
| const dy = point.y - geometry.cy; |
| const cos = Math.cos(-geometry.angle); |
| const sin = Math.sin(-geometry.angle); |
| const localX = dx * cos - dy * sin; |
| const localY = dx * sin + dy * cos; |
| const rx = geometry.rx + 18; |
| const ry = geometry.ry + 18; |
| return (localX * localX) / (rx * rx) + (localY * localY) / (ry * ry) <= 1; |
| } |
| |
| function findSccAtPoint(point) { |
| for (const group of visibleSccGroups().slice().reverse()) { |
| const geometry = buildGlowGeometry(group); |
| if (geometry && pointInGlowGeometry(point, geometry)) return group; |
| } |
| return null; |
| } |
| |
| function findSccByNodeId(nodeId) { |
| return visibleSccGroups().find((group) => group.nodes.includes(nodeId)) || null; |
| } |
| |
| function setHoveredScc(sccId) { |
| if (hoveredSccId === sccId) return; |
| hoveredSccId = sccId; |
| scheduleGlowUpdate(); |
| structurePanel?.querySelectorAll(".group-card").forEach((card) => card.classList.toggle("active", card.dataset.sccId === sccId)); |
| network.redraw(); |
| } |
| |
| function pulseScc(sccId) { |
| flashSccId = sccId; |
| flashStartedAt = performance.now(); |
| scheduleGlowUpdate(); |
| network.redraw(); |
| window.setTimeout(() => { |
| if (flashSccId === sccId) flashSccId = null; |
| scheduleGlowUpdate(); |
| network.redraw(); |
| }, 820); |
| } |
| |
| function pulseNode(nodeId) { |
| const node = nodesDataset.get(nodeId); |
| if (!node) return; |
| const originalBorderWidth = node.borderWidth; |
| const originalShadow = Object.prototype.hasOwnProperty.call(node, "shadow") ? node.shadow : false; |
| nodesDataset.update({ |
| id: nodeId, |
| borderWidth: Math.max((node.borderWidth || 2) + 4, 7), |
| shadow: { |
| enabled: true, |
| color: "rgba(37, 99, 235, 0.35)", |
| size: 16, |
| x: 0, |
| y: 0, |
| }, |
| }); |
| window.setTimeout(() => { |
| nodesDataset.update({ |
| id: nodeId, |
| borderWidth: originalBorderWidth, |
| shadow: originalShadow, |
| }); |
| }, 360); |
| } |
| |
| function focusSccGroup(group, scrollCard = false) { |
| if (!group) return; |
| focusedCanId = canonicalCanId(group.can_id); |
| focusNodes(group.nodes); |
| pulseScc(group.scc_id); |
| setHoveredScc(group.scc_id); |
| if (scrollCard) { |
| const card = structurePanel?.querySelector(`[data-scc-id="${group.scc_id}"]`); |
| card?.scrollIntoView({ block: "center", behavior: "smooth" }); |
| } |
| } |
| |
| function connectedGroups(nodes, edges, edgePredicate) { |
| const adjacency = new Map(nodes.map((node) => [node.id, new Set()])); |
| for (const edge of edges) { |
| if (!edgePredicate(edge)) continue; |
| if (!adjacency.has(edge.from) || !adjacency.has(edge.to)) continue; |
| adjacency.get(edge.from).add(edge.to); |
| adjacency.get(edge.to).add(edge.from); |
| } |
| |
| const visited = new Set(); |
| const groups = []; |
| for (const node of nodes) { |
| if (visited.has(node.id) || !adjacency.get(node.id)?.size) continue; |
| const stack = [node.id]; |
| const group = []; |
| visited.add(node.id); |
| while (stack.length) { |
| const id = stack.pop(); |
| group.push(id); |
| for (const nextId of adjacency.get(id) || []) { |
| if (visited.has(nextId)) continue; |
| visited.add(nextId); |
| stack.push(nextId); |
| } |
| } |
| if (group.length > 1) groups.push(group); |
| } |
| return groups.sort((a, b) => b.length - a.length || String(a[0]).localeCompare(String(b[0]))); |
| } |
| |
| function stronglyConnectedComponents(nodes, edges) { |
| const adjacency = new Map(nodes.map((node) => [node.id, []])); |
| for (const edge of edges) { |
| if (edge.kind && edge.kind !== "forwarding" && edge.kind !== "virtual" && edge.kind !== "potential") continue; |
| if (!adjacency.has(edge.from) || !adjacency.has(edge.to)) continue; |
| adjacency.get(edge.from).push(edge.to); |
| if (edge.kind === "potential" && edge.arrows?.from?.enabled) adjacency.get(edge.to).push(edge.from); |
| } |
| |
| let index = 0; |
| const stack = []; |
| const onStack = new Set(); |
| const indexes = new Map(); |
| const lowlinks = new Map(); |
| const groups = []; |
| |
| function visit(nodeId) { |
| indexes.set(nodeId, index); |
| lowlinks.set(nodeId, index); |
| index += 1; |
| stack.push(nodeId); |
| onStack.add(nodeId); |
| |
| for (const nextId of adjacency.get(nodeId) || []) { |
| if (!indexes.has(nextId)) { |
| visit(nextId); |
| lowlinks.set(nodeId, Math.min(lowlinks.get(nodeId), lowlinks.get(nextId))); |
| } else if (onStack.has(nextId)) { |
| lowlinks.set(nodeId, Math.min(lowlinks.get(nodeId), indexes.get(nextId))); |
| } |
| } |
| |
| if (lowlinks.get(nodeId) === indexes.get(nodeId)) { |
| const group = []; |
| let popped = null; |
| do { |
| popped = stack.pop(); |
| onStack.delete(popped); |
| group.push(popped); |
| } while (popped !== nodeId); |
| if (group.length > 1) groups.push(group); |
| } |
| } |
| |
| for (const node of nodes) { |
| if (!indexes.has(node.id)) visit(node.id); |
| } |
| return groups.sort((a, b) => b.length - a.length || String(a[0]).localeCompare(String(b[0]))); |
| } |
| |
| function renderGroupCards(title, type, groups, nodesById, emptyText, collapsed = false) { |
| const sectionClass = type === "broadcast" ? "broadcast" : "unknown"; |
| const hiddenStyle = collapsed ? "display:none;" : ""; |
| const badge = type === "unknown" && groups.length > 0 |
| ? `<span class="badge"><span class="alert-dot"></span>${groups.length}</span>` |
| : `<span class="badge">${groups.length}</span>`; |
| let htmlText = ` |
| <section class="structure-section" data-section-type="${sectionClass}"> |
| <button class="section-toggle ${sectionClass}" type="button" data-toggle-section="${sectionClass}"> |
| <span>${collapsed ? ">" : "v"} ${escapeHtml(title)} SCC</span> |
| ${badge} |
| </button> |
| <div class="section-body" style="${hiddenStyle}">`; |
| if (!groups.length) { |
| htmlText += `<div class="empty-note">${escapeHtml(emptyText)}</div></div></section>`; |
| return htmlText; |
| } |
| groups.forEach((group, idx) => { |
| const chips = group.nodes |
| .map((id) => { |
| const node = nodesById.get(id); |
| const domain = nodeDomainFromId(id); |
| const cls = domain === "0" ? "node-chip virtual" : "node-chip"; |
| return `<span class="${cls}" data-node-id="${escapeHtml(id)}" title="${escapeHtml(displayNodeLabel(node))}">${escapeHtml(domain === "0" ? "virtual" : `D${domain}`)}</span>`; |
| }) |
| .join(""); |
| const label = sccTypeLabel(type); |
| const breakdown = sccBreakdownText(group, true); |
| htmlText += ` |
| <div class="group-card ${sectionClass}" data-scc-id="${escapeHtml(group.scc_id)}" data-node-ids="${escapeHtml(JSON.stringify(group.nodes))}"> |
| <div class="group-head"> |
| <span>${escapeHtml(label)} #${idx + 1}</span> |
| <span class="group-meta">${group.nodes.length} nodes · ${escapeHtml(group.can_id)}</span> |
| </div> |
| <div class="group-breakdown">${escapeHtml(breakdown)}</div> |
| <div class="node-chips">${chips}</div> |
| </div>`; |
| }); |
| htmlText += "</div></section>"; |
| return htmlText; |
| } |
| |
| function renderStructurePanel(current) { |
| if (!structurePanel) return; |
| const nodes = current.nodes || []; |
| const nodesById = new Map(nodes.map((node) => [node.id, node])); |
| const broadcastGroups = sccGroupsCache.filter((group) => group.scc_type === "broadcast").sort((a, b) => a.can_id.localeCompare(b.can_id)); |
| const unknownGroups = sccGroupsCache.filter((group) => group.scc_type === "unknown").sort((a, b) => b.nodes.length - a.nodes.length || a.can_id.localeCompare(b.can_id)); |
| const broadcastCollapsed = sccHullMode === "OnlyUnknown" || broadcastGroups.length > 0; |
| const unknownCollapsed = sccHullMode === "OnlyBroadcast"; |
| structurePanel.innerHTML = ` |
| <div class="panel-title"> |
| <b>Structure Overview</b> |
| <span>Click a card to focus; hover to link with the graph</span> |
| </div> |
| ${renderGroupCards("Co-source Broadcast", "broadcast", broadcastGroups, nodesById, "No co-source broadcast groups formed by broadcast_edge in the current view.", broadcastCollapsed)} |
| ${renderGroupCards("Potential Forwarding", "unknown", unknownGroups, nodesById, "No potential forwarding components in the current view.", unknownCollapsed)} |
| `; |
| structurePanel.querySelectorAll("[data-toggle-section]").forEach((button) => { |
| button.addEventListener("click", () => { |
| const body = button.parentElement?.querySelector(".section-body"); |
| if (!body) return; |
| const willOpen = body.style.display === "none"; |
| body.style.display = willOpen ? "" : "none"; |
| const text = button.querySelector("span"); |
| if (text) text.textContent = text.textContent.replace(willOpen ? ">" : "v", willOpen ? "v" : ">"); |
| }); |
| }); |
| structurePanel.querySelectorAll(".group-card").forEach((card) => { |
| card.addEventListener("mouseenter", () => setHoveredScc(card.dataset.sccId)); |
| card.addEventListener("mouseleave", () => setHoveredScc(null)); |
| card.addEventListener("click", () => { |
| try { |
| const group = sccGroupsCache.find((item) => item.scc_id === card.dataset.sccId); |
| focusSccGroup(group, false); |
| } catch (e) { |
| showError("Failed to focus group: " + String(e)); |
| } |
| }); |
| }); |
| structurePanel.querySelectorAll(".node-chip[data-node-id]").forEach((chip) => { |
| chip.addEventListener("mouseenter", (event) => { |
| event.stopPropagation(); |
| pulseNode(chip.dataset.nodeId); |
| }); |
| }); |
| } |
| |
| function loadGraph() { |
| focusedCanId = ""; |
| hoveredSccId = null; |
| flashSccId = null; |
| hideSccTooltip(); |
| sccGroupsCache = buildSccGroups(graphNodes, graphEdges); |
| const renderedEdges = graphEdges.concat(createCohesionEdges(sccGroupsCache)); |
| nodesDataset = new vis.DataSet(graphNodes); |
| edgesDataset = new vis.DataSet(renderedEdges); |
| network.setData({ nodes: nodesDataset, edges: edgesDataset }); |
| network.unselectAll(); |
| hideError(); |
| nodeCountEl.textContent = graphNodes.length; |
| edgeCountEl.textContent = graphEdges.length; |
| if (btnJumpUnknown) { |
| btnJumpUnknown.disabled = !sccGroupsCache.some((group) => group.scc_type === "unknown"); |
| } |
| renderStructurePanel({ nodes: graphNodes, edges: graphEdges }); |
| scheduleGlowUpdate(); |
| network.redraw(); |
| } |
| |
| network.on("afterDrawing", () => { |
| scheduleGlowUpdate(); |
| }); |
| network.on("dragging", () => { |
| scheduleGlowUpdate(); |
| }); |
| network.on("zoom", () => { |
| scheduleGlowUpdate(); |
| }); |
| network.on("release", () => { |
| scheduleGlowUpdate(); |
| }); |
| network.on("mousemove", (params) => { |
| const hoveredNodeId = network.getNodeAt(params.pointer.DOM); |
| if (hoveredNodeId) { |
| const nodeGroup = findSccByNodeId(hoveredNodeId); |
| if (nodeGroup) { |
| setHoveredScc(nodeGroup.scc_id); |
| showSccTooltip(nodeGroup, params.pointer.DOM); |
| container.style.cursor = ""; |
| return; |
| } |
| } |
| const group = findSccAtPoint(params.pointer.canvas); |
| setHoveredScc(group ? group.scc_id : null); |
| if (group) showSccTooltip(group, params.pointer.DOM); |
| else hideSccTooltip(); |
| container.style.cursor = group ? "pointer" : ""; |
| }); |
| network.on("hoverNode", (params) => { |
| const group = findSccByNodeId(params.node); |
| if (group) setHoveredScc(group.scc_id); |
| }); |
| network.on("blurNode", () => { |
| setHoveredScc(null); |
| hideSccTooltip(); |
| }); |
| container.addEventListener("mouseleave", () => { |
| setHoveredScc(null); |
| hideSccTooltip(); |
| container.style.cursor = ""; |
| }); |
| network.on("click", (params) => { |
| if (params.nodes?.length || params.edges?.length) return; |
| const group = findSccAtPoint(params.pointer.canvas); |
| if (group) focusSccGroup(group, true); |
| }); |
| |
| btnFocusCanId.addEventListener("click", () => focusCanIdCluster(searchCanIdInput.value)); |
| sccHullModeSelect?.addEventListener("change", () => { |
| sccHullMode = sccHullModeSelect.value; |
| renderStructurePanel({ nodes: graphNodes, edges: graphEdges }); |
| scheduleGlowUpdate(); |
| hideSccTooltip(); |
| network.redraw(); |
| }); |
| toggleBreathing?.addEventListener("change", () => { |
| breathingEnabled = !!toggleBreathing.checked; |
| scheduleGlowUpdate(); |
| network.redraw(); |
| }); |
| btnJumpUnknown?.addEventListener("click", () => { |
| const unknownGroups = sccGroupsCache.filter((group) => group.scc_type === "unknown"); |
| if (!unknownGroups.length) { |
| showError("No Potential Forwarding SCC in the current view."); |
| return; |
| } |
| unknownJumpIndex = (unknownJumpIndex + 1) % unknownGroups.length; |
| focusSccGroup(unknownGroups[unknownJumpIndex], true); |
| }); |
| searchCanIdInput.addEventListener("keydown", (event) => { |
| if (event.key === "Enter") { |
| focusCanIdCluster(searchCanIdInput.value); |
| } |
| }); |
| loadGraph(); |
| } catch (err) { |
| showError("Render error: " + (err && err.stack ? err.stack : String(err))); |
| } |
| })(); |
| </script> |
| </body> |
| </html> |
|
|