-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompass-knowledge-graph.html
More file actions
257 lines (247 loc) · 366 KB
/
compass-knowledge-graph.html
File metadata and controls
257 lines (247 loc) · 366 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>graphify - /Users/stephensookra/Desktop/Compass/Compass-OG-/graphify-out/graph.html</title>
<script src="https://unpkg.com/vis-network/standalone/umd/vis-network.min.js"></script>
<style>
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: #0f0f1a; color: #e0e0e0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; display: flex; height: 100vh; overflow: hidden; }
#graph { flex: 1; }
#sidebar { width: 280px; background: #1a1a2e; border-left: 1px solid #2a2a4e; display: flex; flex-direction: column; overflow: hidden; }
#search-wrap { padding: 12px; border-bottom: 1px solid #2a2a4e; }
#search { width: 100%; background: #0f0f1a; border: 1px solid #3a3a5e; color: #e0e0e0; padding: 7px 10px; border-radius: 6px; font-size: 13px; outline: none; }
#search:focus { border-color: #4E79A7; }
#search-results { max-height: 140px; overflow-y: auto; padding: 4px 12px; border-bottom: 1px solid #2a2a4e; display: none; }
.search-item { padding: 4px 6px; cursor: pointer; border-radius: 4px; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-item:hover { background: #2a2a4e; }
#info-panel { padding: 14px; border-bottom: 1px solid #2a2a4e; min-height: 140px; }
#info-panel h3 { font-size: 13px; color: #aaa; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
#info-content { font-size: 13px; color: #ccc; line-height: 1.6; }
#info-content .field { margin-bottom: 5px; }
#info-content .field b { color: #e0e0e0; }
#info-content .empty { color: #555; font-style: italic; }
.neighbor-link { display: block; padding: 2px 6px; margin: 2px 0; border-radius: 3px; cursor: pointer; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; border-left: 3px solid #333; }
.neighbor-link:hover { background: #2a2a4e; }
#neighbors-list { max-height: 160px; overflow-y: auto; margin-top: 4px; }
#legend-wrap { flex: 1; overflow-y: auto; padding: 12px; }
#legend-wrap h3 { font-size: 13px; color: #aaa; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.legend-item { display: flex; align-items: center; gap: 8px; padding: 4px 0; cursor: pointer; border-radius: 4px; font-size: 12px; }
.legend-item:hover { background: #2a2a4e; padding-left: 4px; }
.legend-item.dimmed { opacity: 0.35; }
.legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.legend-label { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.legend-count { color: #666; font-size: 11px; }
#stats { padding: 10px 14px; border-top: 1px solid #2a2a4e; font-size: 11px; color: #555; }
</style>
</head>
<body>
<div id="graph"></div>
<div id="sidebar">
<div id="search-wrap">
<input id="search" type="text" placeholder="Search nodes..." autocomplete="off">
<div id="search-results"></div>
</div>
<div id="info-panel">
<h3>Node Info</h3>
<div id="info-content"><span class="empty">Click a node to inspect it</span></div>
</div>
<div id="legend-wrap">
<h3>Communities</h3>
<div id="legend"></div>
</div>
<div id="stats">484 nodes · 491 edges · 132 communities</div>
</div>
<script>
const RAW_NODES = [{"id": "users_stephensookra_desktop_compass_compass_og_app_postcss_config_mjs", "label": "postcss.config.mjs", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "postcss.config.mjs", "community": 70, "community_name": "Community 70", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/postcss.config.mjs", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_app_next_env_d_ts", "label": "next-env.d.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "next-env.d.ts", "community": 71, "community_name": "Community 71", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/next-env.d.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_app_playwright_config_ts", "label": "playwright.config.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "playwright.config.ts", "community": 72, "community_name": "Community 72", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/playwright.config.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_app_vitest_config_ts", "label": "vitest.config.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "vitest.config.ts", "community": 73, "community_name": "Community 73", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/vitest.config.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_app_eslint_config_mjs", "label": "eslint.config.mjs", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint.config.mjs", "community": 74, "community_name": "Community 74", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/eslint.config.mjs", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_app_next_config_ts", "label": "next.config.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "next.config.ts", "community": 75, "community_name": "Community 75", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/next.config.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_app_tests_e2e_pages_spec_ts", "label": "pages.spec.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "pages.spec.ts", "community": 76, "community_name": "Community 76", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/tests/e2e/pages.spec.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_app_tests_e2e_crypto_spec_ts", "label": "crypto.spec.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "crypto.spec.ts", "community": 77, "community_name": "Community 77", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/tests/e2e/crypto.spec.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_app_tests_e2e_api_spec_ts", "label": "api.spec.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "api.spec.ts", "community": 78, "community_name": "Community 78", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/tests/e2e/api.spec.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_robots_ts", "label": "robots.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "robots.ts", "community": 36, "community_name": "Community 36", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/robots.ts", "file_type": "code", "degree": 1}, {"id": "robots_robots", "label": "robots()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "robots()", "community": 36, "community_name": "Community 36", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/robots.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_apple_icon_tsx", "label": "apple-icon.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "apple-icon.tsx", "community": 37, "community_name": "Community 37", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/apple-icon.tsx", "file_type": "code", "degree": 1}, {"id": "apple_icon_appleicon", "label": "AppleIcon()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "AppleIcon()", "community": 37, "community_name": "Community 37", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/apple-icon.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_icon_tsx", "label": "icon.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "icon.tsx", "community": 38, "community_name": "Community 38", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/icon.tsx", "file_type": "code", "degree": 1}, {"id": "icon_icon", "label": "Icon()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Icon()", "community": 38, "community_name": "Community 38", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/icon.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_opengraph_image_tsx", "label": "opengraph-image.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "opengraph-image.tsx", "community": 10, "community_name": "Community 10", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/opengraph-image.tsx", "file_type": "code", "degree": 1}, {"id": "opengraph_image_image", "label": "Image()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Image()", "community": 10, "community_name": "Community 10", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/clinic/subpoena/opengraph-image.tsx", "file_type": "code", "degree": 9}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_sitemap_ts", "label": "sitemap.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "sitemap.ts", "community": 39, "community_name": "Community 39", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/sitemap.ts", "file_type": "code", "degree": 1}, {"id": "sitemap_sitemap", "label": "sitemap()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "sitemap()", "community": 39, "community_name": "Community 39", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/sitemap.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_layout_tsx", "label": "layout.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "layout.tsx", "community": 40, "community_name": "Community 40", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/layout.tsx", "file_type": "code", "degree": 1}, {"id": "layout_rootlayout", "label": "RootLayout()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "RootLayout()", "community": 40, "community_name": "Community 40", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/layout.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_error_tsx", "label": "error.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "error.tsx", "community": 41, "community_name": "Community 41", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/error.tsx", "file_type": "code", "degree": 1}, {"id": "error_globalerror", "label": "GlobalError()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "GlobalError()", "community": 41, "community_name": "Community 41", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/error.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_manifest_ts", "label": "manifest.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "manifest.ts", "community": 42, "community_name": "Community 42", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/manifest.ts", "file_type": "code", "degree": 1}, {"id": "manifest_manifest", "label": "manifest()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "manifest()", "community": 42, "community_name": "Community 42", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/manifest.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_page_tsx", "label": "page.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 79, "community_name": "Community 79", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/page.tsx", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_not_found_tsx", "label": "not-found.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "not-found.tsx", "community": 43, "community_name": "Community 43", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/not-found.tsx", "file_type": "code", "degree": 1}, {"id": "not_found_notfound", "label": "NotFound()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "NotFound()", "community": 43, "community_name": "Community 43", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/not-found.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_demo_opengraph_image_tsx", "label": "opengraph-image.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "opengraph-image.tsx", "community": 10, "community_name": "Community 10", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/demo/opengraph-image.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_demo_page_tsx", "label": "page.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 80, "community_name": "Community 80", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/demo/page.tsx", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_verify_opengraph_image_tsx", "label": "opengraph-image.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "opengraph-image.tsx", "community": 10, "community_name": "Community 10", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/verify/opengraph-image.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_verify_page_tsx", "label": "page.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "page.tsx", "community": 4, "community_name": "Community 4", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/verify/page.tsx", "file_type": "code", "degree": 6}, {"id": "page_loadsample", "label": "loadSample()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "loadSample()", "community": 4, "community_name": "Community 4", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/verify/page.tsx", "file_type": "code", "degree": 1}, {"id": "page_onbundleedit", "label": "onBundleEdit()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "onBundleEdit()", "community": 4, "community_name": "Community 4", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/verify/page.tsx", "file_type": "code", "degree": 1}, {"id": "page_oncomposeedit", "label": "onComposeEdit()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "onComposeEdit()", "community": 4, "community_name": "Community 4", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/verify/page.tsx", "file_type": "code", "degree": 1}, {"id": "page_runverify", "label": "runVerify()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "runVerify()", "community": 4, "community_name": "Community 4", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/verify/page.tsx", "file_type": "code", "degree": 3}, {"id": "page_handlefile", "label": "handleFile()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleFile()", "community": 4, "community_name": "Community 4", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/verify/page.tsx", "file_type": "code", "degree": 2}, {"id": "page_ondrop", "label": "onDrop()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "onDrop()", "community": 4, "community_name": "Community 4", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/verify/page.tsx", "file_type": "code", "degree": 2}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_roadmap_opengraph_image_tsx", "label": "opengraph-image.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "opengraph-image.tsx", "community": 10, "community_name": "Community 10", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/roadmap/opengraph-image.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_roadmap_page_tsx", "label": "page.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 81, "community_name": "Community 81", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/roadmap/page.tsx", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_faq_opengraph_image_tsx", "label": "opengraph-image.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "opengraph-image.tsx", "community": 10, "community_name": "Community 10", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/faq/opengraph-image.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_faq_page_tsx", "label": "page.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 82, "community_name": "Community 82", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/faq/page.tsx", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_about_opengraph_image_tsx", "label": "opengraph-image.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "opengraph-image.tsx", "community": 10, "community_name": "Community 10", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/about/opengraph-image.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_about_page_tsx", "label": "page.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 83, "community_name": "Community 83", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/about/page.tsx", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_onboard_opengraph_image_tsx", "label": "opengraph-image.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "opengraph-image.tsx", "community": 10, "community_name": "Community 10", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/onboard/opengraph-image.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_onboard_error_tsx", "label": "error.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "error.tsx", "community": 44, "community_name": "Community 44", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/onboard/error.tsx", "file_type": "code", "degree": 1}, {"id": "error_onboarderror", "label": "OnboardError()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "OnboardError()", "community": 44, "community_name": "Community 44", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/onboard/error.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_onboard_page_tsx", "label": "page.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "page.tsx", "community": 19, "community_name": "Community 19", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/onboard/page.tsx", "file_type": "code", "degree": 3}, {"id": "page_labelfor", "label": "labelFor()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "labelFor()", "community": 19, "community_name": "Community 19", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/onboard/page.tsx", "file_type": "code", "degree": 1}, {"id": "page_start", "label": "start()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "start()", "community": 19, "community_name": "Community 19", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/onboard/page.tsx", "file_type": "code", "degree": 1}, {"id": "page_reset", "label": "reset()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "reset()", "community": 19, "community_name": "Community 19", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/onboard/page.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_policies_slug_page_tsx", "label": "page.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 29, "community_name": "Community 29", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/policies/[slug]/page.tsx", "file_type": "code", "degree": 1}, {"id": "page_generatestaticparams", "label": "generateStaticParams()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "generateStaticParams()", "community": 29, "community_name": "Community 29", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/receipt/[id]/page.tsx", "file_type": "code", "degree": 2}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_receipt_id_page_tsx", "label": "page.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 29, "community_name": "Community 29", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/receipt/[id]/page.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_audit_opengraph_image_tsx", "label": "opengraph-image.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "opengraph-image.tsx", "community": 10, "community_name": "Community 10", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/audit/opengraph-image.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_audit_page_tsx", "label": "page.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 84, "community_name": "Community 84", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/audit/page.tsx", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_api_tee_status_route_ts", "label": "route.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "route.ts", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/api/tee-status/route.ts", "file_type": "code", "degree": 1}, {"id": "route_get", "label": "GET()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 28.3, "font": {"size": 12, "color": "#ffffff"}, "title": "GET()", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/api/tee-status/route.ts", "file_type": "code", "degree": 11}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_api_issue_route_ts", "label": "route.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 18.3, "font": {"size": 12, "color": "#ffffff"}, "title": "route.ts", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/api/issue/route.ts", "file_type": "code", "degree": 5}, {"id": "route_base58btcencode", "label": "base58btcEncode()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "base58btcEncode()", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/api/issue/route.ts", "file_type": "code", "degree": 2}, {"id": "route_ed25519publickeytodidkey", "label": "ed25519PublicKeyToDidKey()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "ed25519PublicKeyToDidKey()", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/api/issue/route.ts", "file_type": "code", "degree": 3}, {"id": "route_makesigner", "label": "makeSigner()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "makeSigner()", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/api/issue/route.ts", "file_type": "code", "degree": 2}, {"id": "route_loadissuerkey", "label": "loadIssuerKey()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "loadIssuerKey()", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/api/issue/route.ts", "file_type": "code", "degree": 2}, {"id": "route_post", "label": "POST()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 40.0, "font": {"size": 12, "color": "#ffffff"}, "title": "POST()", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/api/csp-report/route.ts", "file_type": "code", "degree": 18}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_api_consume_route_ts", "label": "route.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 16.7, "font": {"size": 12, "color": "#ffffff"}, "title": "route.ts", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/api/consume/route.ts", "file_type": "code", "degree": 4}, {"id": "route_loadproviderkey", "label": "loadProviderKey()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "loadProviderKey()", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/api/consume/route.ts", "file_type": "code", "degree": 2}, {"id": "route_isplainbytes32", "label": "isPlainBytes32()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isPlainBytes32()", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/api/consume/route.ts", "file_type": "code", "degree": 2}, {"id": "route_validategrant", "label": "validateGrant()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "validateGrant()", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/api/consume/route.ts", "file_type": "code", "degree": 3}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_api_csp_report_route_ts", "label": "route.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "route.ts", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/api/csp-report/route.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_kiosk_layout_tsx", "label": "layout.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "layout.tsx", "community": 45, "community_name": "Community 45", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/kiosk/layout.tsx", "file_type": "code", "degree": 1}, {"id": "layout_kiosklayout", "label": "KioskLayout()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "KioskLayout()", "community": 45, "community_name": "Community 45", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/kiosk/layout.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_kiosk_page_tsx", "label": "page.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 85, "community_name": "Community 85", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/kiosk/page.tsx", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_clinic_page_tsx", "label": "page.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 46, "community_name": "Community 46", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/clinic/page.tsx", "file_type": "code", "degree": 1}, {"id": "page_clinicindexpage", "label": "ClinicIndexPage()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ClinicIndexPage()", "community": 46, "community_name": "Community 46", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/clinic/page.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_clinic_inbox_page_tsx", "label": "page.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 86, "community_name": "Community 86", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/clinic/inbox/page.tsx", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_clinic_subpoena_opengraph_image_tsx", "label": "opengraph-image.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "opengraph-image.tsx", "community": 10, "community_name": "Community 10", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/clinic/subpoena/opengraph-image.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_clinic_subpoena_page_tsx", "label": "page.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 47, "community_name": "Community 47", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/clinic/subpoena/page.tsx", "file_type": "code", "degree": 1}, {"id": "page_subpoenapage", "label": "SubpoenaPage()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "SubpoenaPage()", "community": 47, "community_name": "Community 47", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/clinic/subpoena/page.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_clinic_policies_page_tsx", "label": "page.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 87, "community_name": "Community 87", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/clinic/policies/page.tsx", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_vault_page_tsx", "label": "page.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 48, "community_name": "Community 48", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/vault/page.tsx", "file_type": "code", "degree": 1}, {"id": "page_vaultpage", "label": "VaultPage()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "VaultPage()", "community": 48, "community_name": "Community 48", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/vault/page.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_app_analytics_page_tsx", "label": "page.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/analytics/page.tsx", "file_type": "code", "degree": 1}, {"id": "page_buildbuckets", "label": "buildBuckets()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "buildBuckets()", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/app/analytics/page.tsx", "file_type": "code", "degree": 2}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_components_providers_privyclientprovider_tsx", "label": "PrivyClientProvider.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "PrivyClientProvider.tsx", "community": 49, "community_name": "Community 49", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/providers/PrivyClientProvider.tsx", "file_type": "code", "degree": 1}, {"id": "privyclientprovider_privyclientprovider", "label": "PrivyClientProvider()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "PrivyClientProvider()", "community": 49, "community_name": "Community 49", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/providers/PrivyClientProvider.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_components_about_splinescene_tsx", "label": "SplineScene.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "SplineScene.tsx", "community": 50, "community_name": "Community 50", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/about/SplineScene.tsx", "file_type": "code", "degree": 1}, {"id": "splinescene_splinescene", "label": "SplineScene()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "SplineScene()", "community": 50, "community_name": "Community 50", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/about/SplineScene.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_components_about_architecturediagram_tsx", "label": "ArchitectureDiagram.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ArchitectureDiagram.tsx", "community": 51, "community_name": "Community 51", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/about/ArchitectureDiagram.tsx", "file_type": "code", "degree": 1}, {"id": "architecturediagram_layery", "label": "layerY()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "layerY()", "community": 51, "community_name": "Community 51", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/about/ArchitectureDiagram.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_components_about_teestatusbadge_tsx", "label": "TeeStatusBadge.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "TeeStatusBadge.tsx", "community": 52, "community_name": "Community 52", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/about/TeeStatusBadge.tsx", "file_type": "code", "degree": 1}, {"id": "teestatusbadge_teestatusbadge", "label": "TeeStatusBadge()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "TeeStatusBadge()", "community": 52, "community_name": "Community 52", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/about/TeeStatusBadge.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_components_onboard_privyconnectbutton_tsx", "label": "PrivyConnectButton.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "PrivyConnectButton.tsx", "community": 53, "community_name": "Community 53", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/onboard/PrivyConnectButton.tsx", "file_type": "code", "degree": 1}, {"id": "privyconnectbutton_privyconnectbutton", "label": "PrivyConnectButton()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "PrivyConnectButton()", "community": 53, "community_name": "Community 53", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/onboard/PrivyConnectButton.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_components_onboard_requesteligibilitybutton_tsx", "label": "RequestEligibilityButton.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "RequestEligibilityButton.tsx", "community": 7, "community_name": "Community 7", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/onboard/RequestEligibilityButton.tsx", "file_type": "code", "degree": 3}, {"id": "requesteligibilitybutton_explorertxbase", "label": "explorerTxBase()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "explorerTxBase()", "community": 7, "community_name": "Community 7", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/onboard/RequestEligibilityButton.tsx", "file_type": "code", "degree": 2}, {"id": "requesteligibilitybutton_buildnullifier", "label": "buildNullifier()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "buildNullifier()", "community": 7, "community_name": "Community 7", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/onboard/RequestEligibilityButton.tsx", "file_type": "code", "degree": 2}, {"id": "requesteligibilitybutton_request", "label": "request()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 16.7, "font": {"size": 12, "color": "#ffffff"}, "title": "request()", "community": 7, "community_name": "Community 7", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/onboard/RequestEligibilityButton.tsx", "file_type": "code", "degree": 4}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_components_onboard_mintagentbutton_tsx", "label": "MintAgentButton.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 16.7, "font": {"size": 12, "color": "#ffffff"}, "title": "MintAgentButton.tsx", "community": 7, "community_name": "Community 7", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/onboard/MintAgentButton.tsx", "file_type": "code", "degree": 4}, {"id": "mintagentbutton_explorertxbase", "label": "explorerTxBase()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "explorerTxBase()", "community": 7, "community_name": "Community 7", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/onboard/MintAgentButton.tsx", "file_type": "code", "degree": 2}, {"id": "mintagentbutton_getpublicclient", "label": "getPublicClient()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 16.7, "font": {"size": 12, "color": "#ffffff"}, "title": "getPublicClient()", "community": 7, "community_name": "Community 7", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/onboard/MintAgentButton.tsx", "file_type": "code", "degree": 4}, {"id": "mintagentbutton_refreshbalance", "label": "refreshBalance()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "refreshBalance()", "community": 7, "community_name": "Community 7", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/onboard/MintAgentButton.tsx", "file_type": "code", "degree": 3}, {"id": "mintagentbutton_mint", "label": "mint()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 16.7, "font": {"size": 12, "color": "#ffffff"}, "title": "mint()", "community": 7, "community_name": "Community 7", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/onboard/MintAgentButton.tsx", "file_type": "code", "degree": 4}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_components_primitives_magneticbutton_tsx", "label": "MagneticButton.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "MagneticButton.tsx", "community": 54, "community_name": "Community 54", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/primitives/MagneticButton.tsx", "file_type": "code", "degree": 1}, {"id": "magneticbutton_magneticbutton", "label": "MagneticButton()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "MagneticButton()", "community": 54, "community_name": "Community 54", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/primitives/MagneticButton.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_components_primitives_democta_tsx", "label": "DemoCta.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "DemoCta.tsx", "community": 55, "community_name": "Community 55", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/primitives/DemoCta.tsx", "file_type": "code", "degree": 1}, {"id": "democta_democta", "label": "DemoCta()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "DemoCta()", "community": 55, "community_name": "Community 55", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/primitives/DemoCta.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_components_primitives_ambientsphere_tsx", "label": "AmbientSphere.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "AmbientSphere.tsx", "community": 56, "community_name": "Community 56", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/primitives/AmbientSphere.tsx", "file_type": "code", "degree": 1}, {"id": "ambientsphere_ambientsphere", "label": "AmbientSphere()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "AmbientSphere()", "community": 56, "community_name": "Community 56", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/primitives/AmbientSphere.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_components_primitives_blurtext_tsx", "label": "BlurText.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "BlurText.tsx", "community": 88, "community_name": "Community 88", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/primitives/BlurText.tsx", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_components_primitives_teebadge_tsx", "label": "TEEBadge.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "TEEBadge.tsx", "community": 57, "community_name": "Community 57", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/primitives/TEEBadge.tsx", "file_type": "code", "degree": 1}, {"id": "teebadge_teebadge", "label": "TEEBadge()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "TEEBadge()", "community": 57, "community_name": "Community 57", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/primitives/TEEBadge.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_components_primitives_term_tsx", "label": "Term.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Term.tsx", "community": 30, "community_name": "Community 30", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/primitives/Term.tsx", "file_type": "code", "degree": 2}, {"id": "term_term", "label": "Term()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Term()", "community": 30, "community_name": "Community 30", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/primitives/Term.tsx", "file_type": "code", "degree": 1}, {"id": "term_termprovider", "label": "TermProvider()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "TermProvider()", "community": 30, "community_name": "Community 30", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/primitives/Term.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_components_primitives_cursorspotlight_tsx", "label": "CursorSpotlight.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "CursorSpotlight.tsx", "community": 58, "community_name": "Community 58", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/primitives/CursorSpotlight.tsx", "file_type": "code", "degree": 1}, {"id": "cursorspotlight_cursorspotlight", "label": "CursorSpotlight()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "CursorSpotlight()", "community": 58, "community_name": "Community 58", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/primitives/CursorSpotlight.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_components_primitives_fadingvideo_tsx", "label": "FadingVideo.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "FadingVideo.tsx", "community": 59, "community_name": "Community 59", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/primitives/FadingVideo.tsx", "file_type": "code", "degree": 1}, {"id": "fadingvideo_fadingvideo", "label": "FadingVideo()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "FadingVideo()", "community": 59, "community_name": "Community 59", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/primitives/FadingVideo.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_components_primitives_revealtext_tsx", "label": "RevealText.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "RevealText.tsx", "community": 60, "community_name": "Community 60", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/primitives/RevealText.tsx", "file_type": "code", "degree": 1}, {"id": "revealtext_revealtext", "label": "RevealText()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "RevealText()", "community": 60, "community_name": "Community 60", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/primitives/RevealText.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_components_primitives_th_tsx", "label": "Th.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Th.tsx", "community": 61, "community_name": "Community 61", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/primitives/Th.tsx", "file_type": "code", "degree": 1}, {"id": "th_th", "label": "Th()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Th()", "community": 61, "community_name": "Community 61", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/primitives/Th.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_components_primitives_stat_tsx", "label": "Stat.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Stat.tsx", "community": 62, "community_name": "Community 62", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/primitives/Stat.tsx", "file_type": "code", "degree": 1}, {"id": "stat_stat", "label": "Stat()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Stat()", "community": 62, "community_name": "Community 62", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/primitives/Stat.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_components_primitives_skeleton_tsx", "label": "Skeleton.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Skeleton.tsx", "community": 31, "community_name": "Community 31", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/primitives/Skeleton.tsx", "file_type": "code", "degree": 2}, {"id": "skeleton_skeleton", "label": "Skeleton()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Skeleton()", "community": 31, "community_name": "Community 31", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/primitives/Skeleton.tsx", "file_type": "code", "degree": 1}, {"id": "skeleton_credentialcardskeleton", "label": "CredentialCardSkeleton()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "CredentialCardSkeleton()", "community": 31, "community_name": "Community 31", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/primitives/Skeleton.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_components_primitives_reveal_tsx", "label": "Reveal.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Reveal.tsx", "community": 63, "community_name": "Community 63", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/primitives/Reveal.tsx", "file_type": "code", "degree": 1}, {"id": "reveal_reveal", "label": "Reveal()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Reveal()", "community": 63, "community_name": "Community 63", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/primitives/Reveal.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_components_primitives_liquidglass_tsx", "label": "LiquidGlass.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "LiquidGlass.tsx", "community": 64, "community_name": "Community 64", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/primitives/LiquidGlass.tsx", "file_type": "code", "degree": 1}, {"id": "liquidglass_liquidglass", "label": "LiquidGlass()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "LiquidGlass()", "community": 64, "community_name": "Community 64", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/primitives/LiquidGlass.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_components_primitives_videobackground_tsx", "label": "VideoBackground.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "VideoBackground.tsx", "community": 32, "community_name": "Community 32", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/primitives/VideoBackground.tsx", "file_type": "code", "degree": 2}, {"id": "videobackground_videobackground", "label": "VideoBackground()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "VideoBackground()", "community": 32, "community_name": "Community 32", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/primitives/VideoBackground.tsx", "file_type": "code", "degree": 1}, {"id": "videobackground_herovideoenabled", "label": "heroVideoEnabled()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "heroVideoEnabled()", "community": 32, "community_name": "Community 32", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/primitives/VideoBackground.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_components_clinic_statusbadge_tsx", "label": "StatusBadge.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "StatusBadge.tsx", "community": 65, "community_name": "Community 65", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/clinic/StatusBadge.tsx", "file_type": "code", "degree": 1}, {"id": "statusbadge_statusbadge", "label": "StatusBadge()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "StatusBadge()", "community": 65, "community_name": "Community 65", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/clinic/StatusBadge.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_components_clinic_clinicheader_tsx", "label": "ClinicHeader.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ClinicHeader.tsx", "community": 66, "community_name": "Community 66", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/clinic/ClinicHeader.tsx", "file_type": "code", "degree": 1}, {"id": "clinicheader_clinicheader", "label": "ClinicHeader()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ClinicHeader()", "community": 66, "community_name": "Community 66", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/components/clinic/ClinicHeader.tsx", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_lib_glossary_ts", "label": "glossary.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "glossary.ts", "community": 89, "community_name": "Community 89", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/glossary.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_lib_compassenclave_ts", "label": "compassEnclave.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 16.7, "font": {"size": 12, "color": "#ffffff"}, "title": "compassEnclave.ts", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/compassEnclave.ts", "file_type": "code", "degree": 4}, {"id": "compassenclave_helplegalaidpolicy", "label": "helpLegalAidPolicy()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "helpLegalAidPolicy()", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/compassEnclave.ts", "file_type": "code", "degree": 2}, {"id": "compassenclave_getenclaveurl", "label": "getEnclaveUrl()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "getEnclaveUrl()", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/compassEnclave.ts", "file_type": "code", "degree": 3}, {"id": "compassenclave_callenclave", "label": "callEnclave()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "callEnclave()", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/compassEnclave.ts", "file_type": "code", "degree": 3}, {"id": "compassenclave_probeenclavehealth", "label": "probeEnclaveHealth()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "probeEnclaveHealth()", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/compassEnclave.ts", "file_type": "code", "degree": 2}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_lib_contracts_ts", "label": "contracts.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "contracts.ts", "community": 7, "community_name": "Community 7", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/contracts.ts", "file_type": "code", "degree": 2}, {"id": "contracts_activeagentregistry", "label": "activeAgentRegistry()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "activeAgentRegistry()", "community": 7, "community_name": "Community 7", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/contracts.ts", "file_type": "code", "degree": 3}, {"id": "contracts_activecompasshub", "label": "activeCompassHub()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 16.7, "font": {"size": 12, "color": "#ffffff"}, "title": "activeCompassHub()", "community": 7, "community_name": "Community 7", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/contracts.ts", "file_type": "code", "degree": 4}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_lib_verifyreceipt_ts", "label": "verifyReceipt.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 28.3, "font": {"size": 12, "color": "#ffffff"}, "title": "verifyReceipt.ts", "community": 4, "community_name": "Community 4", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/verifyReceipt.ts", "file_type": "code", "degree": 11}, {"id": "verifyreceipt_hextobytes", "label": "hexToBytes()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 18.3, "font": {"size": 12, "color": "#ffffff"}, "title": "hexToBytes()", "community": 4, "community_name": "Community 4", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/verifyReceipt.ts", "file_type": "code", "degree": 5}, {"id": "verifyreceipt_bytestohex", "label": "bytesToHex()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 16.7, "font": {"size": 12, "color": "#ffffff"}, "title": "bytesToHex()", "community": 4, "community_name": "Community 4", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/verifyReceipt.ts", "file_type": "code", "degree": 4}, {"id": "verifyreceipt_canonicalize", "label": "canonicalize()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "canonicalize()", "community": 4, "community_name": "Community 4", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/verifyReceipt.ts", "file_type": "code", "degree": 2}, {"id": "verifyreceipt_attestationdigestof", "label": "attestationDigestOf()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 16.7, "font": {"size": 12, "color": "#ffffff"}, "title": "attestationDigestOf()", "community": 4, "community_name": "Community 4", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/verifyReceipt.ts", "file_type": "code", "degree": 4}, {"id": "verifyreceipt_deriveethaddressfromuncompressed", "label": "deriveEthAddressFromUncompressed()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "deriveEthAddressFromUncompressed()", "community": 4, "community_name": "Community 4", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/verifyReceipt.ts", "file_type": "code", "degree": 3}, {"id": "verifyreceipt_recoverethaddress", "label": "recoverEthAddress()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 16.7, "font": {"size": 12, "color": "#ffffff"}, "title": "recoverEthAddress()", "community": 4, "community_name": "Community 4", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/verifyReceipt.ts", "file_type": "code", "degree": 4}, {"id": "verifyreceipt_quotecommitmentfromquotehex", "label": "quoteCommitmentFromQuoteHex()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 16.7, "font": {"size": 12, "color": "#ffffff"}, "title": "quoteCommitmentFromQuoteHex()", "community": 4, "community_name": "Community 4", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/verifyReceipt.ts", "file_type": "code", "degree": 4}, {"id": "verifyreceipt_extractreportdata", "label": "extractReportData()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "extractReportData()", "community": 4, "community_name": "Community 4", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/verifyReceipt.ts", "file_type": "code", "degree": 3}, {"id": "verifyreceipt_verifyperreceiptquotebinding", "label": "verifyPerReceiptQuoteBinding()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 16.7, "font": {"size": 12, "color": "#ffffff"}, "title": "verifyPerReceiptQuoteBinding()", "community": 4, "community_name": "Community 4", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/verifyReceipt.ts", "file_type": "code", "degree": 4}, {"id": "verifyreceipt_verifybundle", "label": "verifyBundle()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "verifyBundle()", "community": 4, "community_name": "Community 4", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/verifyReceipt.ts", "file_type": "code", "degree": 6}, {"id": "verifyreceipt_parsebundle", "label": "parseBundle()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "parseBundle()", "community": 4, "community_name": "Community 4", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/verifyReceipt.ts", "file_type": "code", "degree": 3}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_lib_ratelimit_ts", "label": "ratelimit.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 18.3, "font": {"size": 12, "color": "#ffffff"}, "title": "ratelimit.ts", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/ratelimit.ts", "file_type": "code", "degree": 5}, {"id": "ratelimit_createbucketstore", "label": "createBucketStore()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "createBucketStore()", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/ratelimit.ts", "file_type": "code", "degree": 1}, {"id": "ratelimit_extractclientip", "label": "extractClientIp()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "extractClientIp()", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/ratelimit.ts", "file_type": "code", "degree": 3}, {"id": "ratelimit_check", "label": "check()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 16.7, "font": {"size": 12, "color": "#ffffff"}, "title": "check()", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/ratelimit.ts", "file_type": "code", "degree": 4}, {"id": "ratelimit_evictoldest", "label": "evictOldest()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "evictOldest()", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/ratelimit.ts", "file_type": "code", "degree": 2}, {"id": "ratelimit_forcelruevict", "label": "forceLruEvict()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "forceLruEvict()", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/ratelimit.ts", "file_type": "code", "degree": 2}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_lib_chains_ts", "label": "chains.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 16.7, "font": {"size": 12, "color": "#ffffff"}, "title": "chains.ts", "community": 7, "community_name": "Community 7", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/chains.ts", "file_type": "code", "degree": 4}, {"id": "chains_isprivyenabled", "label": "isPrivyEnabled()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "isPrivyEnabled()", "community": 7, "community_name": "Community 7", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/chains.ts", "file_type": "code", "degree": 1}, {"id": "chains_usemainnet", "label": "useMainnet()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 21.7, "font": {"size": 12, "color": "#ffffff"}, "title": "useMainnet()", "community": 7, "community_name": "Community 7", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/chains.ts", "file_type": "code", "degree": 7}, {"id": "chains_activenetwork", "label": "activeNetwork()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "activeNetwork()", "community": 7, "community_name": "Community 7", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/chains.ts", "file_type": "code", "degree": 2}, {"id": "chains_activechain", "label": "activeChain()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 23.3, "font": {"size": 12, "color": "#ffffff"}, "title": "activeChain()", "community": 7, "community_name": "Community 7", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/chains.ts", "file_type": "code", "degree": 8}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_lib_og_tsx", "label": "og.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "og.tsx", "community": 90, "community_name": "Community 90", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/og.tsx", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_lib_crypto_vault_ts", "label": "vault.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "vault.ts", "community": 11, "community_name": "Community 11", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/crypto/vault.ts", "file_type": "code", "degree": 9}, {"id": "vault_opendb", "label": "openDb()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "openDb()", "community": 11, "community_name": "Community 11", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/crypto/vault.ts", "file_type": "code", "degree": 3}, {"id": "vault_idbget", "label": "idbGet()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "idbGet()", "community": 11, "community_name": "Community 11", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/crypto/vault.ts", "file_type": "code", "degree": 3}, {"id": "vault_idbput", "label": "idbPut()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "idbPut()", "community": 11, "community_name": "Community 11", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/crypto/vault.ts", "file_type": "code", "degree": 3}, {"id": "vault_getorcreatevaultkey", "label": "getOrCreateVaultKey()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "getOrCreateVaultKey()", "community": 11, "community_name": "Community 11", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/crypto/vault.ts", "file_type": "code", "degree": 3}, {"id": "vault_bytestobase64url", "label": "bytesToBase64Url()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "bytesToBase64Url()", "community": 11, "community_name": "Community 11", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/crypto/vault.ts", "file_type": "code", "degree": 2}, {"id": "vault_base64urltobytes", "label": "base64UrlToBytes()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "base64UrlToBytes()", "community": 11, "community_name": "Community 11", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/crypto/vault.ts", "file_type": "code", "degree": 2}, {"id": "vault_encrypttext", "label": "encryptText()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "encryptText()", "community": 11, "community_name": "Community 11", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/crypto/vault.ts", "file_type": "code", "degree": 2}, {"id": "vault_decrypttext", "label": "decryptText()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "decryptText()", "community": 11, "community_name": "Community 11", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/crypto/vault.ts", "file_type": "code", "degree": 2}, {"id": "vault_isstoredlivecredential", "label": "isStoredLiveCredential()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "isStoredLiveCredential()", "community": 11, "community_name": "Community 11", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/crypto/vault.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_lib_tests_ratelimit_test_ts", "label": "ratelimit.test.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ratelimit.test.ts", "community": 91, "community_name": "Community 91", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/__tests__/ratelimit.test.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_lib_tests_verifyreceipt_test_ts", "label": "verifyReceipt.test.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "verifyReceipt.test.ts", "community": 4, "community_name": "Community 4", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/__tests__/verifyReceipt.test.ts", "file_type": "code", "degree": 2}, {"id": "verifyreceipt_test_loadsample", "label": "loadSample()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "loadSample()", "community": 4, "community_name": "Community 4", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/__tests__/verifyReceipt.test.ts", "file_type": "code", "degree": 2}, {"id": "verifyreceipt_test_clone", "label": "clone()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "clone()", "community": 4, "community_name": "Community 4", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/__tests__/verifyReceipt.test.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_lib_fixtures_policies_ts", "label": "policies.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "policies.ts", "community": 20, "community_name": "Community 20", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/fixtures/policies.ts", "file_type": "code", "degree": 3}, {"id": "policies_predicateexpression", "label": "predicateExpression()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "predicateExpression()", "community": 20, "community_name": "Community 20", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/fixtures/policies.ts", "file_type": "code", "degree": 1}, {"id": "policies_getpolicybyid", "label": "getPolicyById()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "getPolicyById()", "community": 20, "community_name": "Community 20", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/fixtures/policies.ts", "file_type": "code", "degree": 1}, {"id": "policies_getpolicybyslug", "label": "getPolicyBySlug()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "getPolicyBySlug()", "community": 20, "community_name": "Community 20", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/fixtures/policies.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_lib_fixtures_claims_ts", "label": "claims.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "claims.ts", "community": 92, "community_name": "Community 92", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/fixtures/claims.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_lib_fixtures_receipts_ts", "label": "receipts.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "receipts.ts", "community": 21, "community_name": "Community 21", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/fixtures/receipts.ts", "file_type": "code", "degree": 3}, {"id": "receipts_shortenhex", "label": "shortenHex()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "shortenHex()", "community": 21, "community_name": "Community 21", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/fixtures/receipts.ts", "file_type": "code", "degree": 1}, {"id": "receipts_formatexpiry", "label": "formatExpiry()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "formatExpiry()", "community": 21, "community_name": "Community 21", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/fixtures/receipts.ts", "file_type": "code", "degree": 1}, {"id": "receipts_formatbucket", "label": "formatBucket()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "formatBucket()", "community": 21, "community_name": "Community 21", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/fixtures/receipts.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_app_src_lib_i18n_kiosk_strings_ts", "label": "kiosk-strings.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "kiosk-strings.ts", "community": 33, "community_name": "Community 33", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/i18n/kiosk-strings.ts", "file_type": "code", "degree": 2}, {"id": "kiosk_strings_getkioskstrings", "label": "getKioskStrings()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "getKioskStrings()", "community": 33, "community_name": "Community 33", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/i18n/kiosk-strings.ts", "file_type": "code", "degree": 1}, {"id": "kiosk_strings_islocale", "label": "isLocale()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "isLocale()", "community": 33, "community_name": "Community 33", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/app/src/lib/i18n/kiosk-strings.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_vitest_config_ts", "label": "vitest.config.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "vitest.config.ts", "community": 93, "community_name": "Community 93", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/vitest.config.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_test_e2e_spec_ts", "label": "e2e.spec.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "e2e.spec.ts", "community": 6, "community_name": "Community 6", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/test/e2e.spec.ts", "file_type": "code", "degree": 2}, {"id": "e2e_spec_buildverifier", "label": "buildVerifier()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "buildVerifier()", "community": 6, "community_name": "Community 6", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/test/e2e.spec.ts", "file_type": "code", "degree": 2}, {"id": "e2e_spec_issueandpresent", "label": "issueAndPresent()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "issueAndPresent()", "community": 6, "community_name": "Community 6", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/test/e2e.spec.ts", "file_type": "code", "degree": 3}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_test_policy_spec_ts", "label": "policy.spec.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "policy.spec.ts", "community": 94, "community_name": "Community 94", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/test/policy.spec.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_test_status_list_spec_ts", "label": "status-list.spec.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "status-list.spec.ts", "community": 34, "community_name": "Community 34", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/test/status-list.spec.ts", "file_type": "code", "degree": 2}, {"id": "status_list_spec_fakestatuslist", "label": "fakeStatusList()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "fakeStatusList()", "community": 34, "community_name": "Community 34", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/test/status-list.spec.ts", "file_type": "code", "degree": 1}, {"id": "status_list_spec_mk", "label": "mk()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "mk()", "community": 34, "community_name": "Community 34", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/test/status-list.spec.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_test_storage_spec_ts", "label": "storage.spec.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "storage.spec.ts", "community": 95, "community_name": "Community 95", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/test/storage.spec.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_test_attestation_spec_ts", "label": "attestation.spec.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "attestation.spec.ts", "community": 2, "community_name": "Community 2", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/test/attestation.spec.ts", "file_type": "code", "degree": 3}, {"id": "attestation_spec_fakequote", "label": "fakeQuote()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fakeQuote()", "community": 2, "community_name": "Community 2", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/test/attestation.spec.ts", "file_type": "code", "degree": 2}, {"id": "attestation_spec_syntheticreportdata", "label": "syntheticReportData()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "syntheticReportData()", "community": 2, "community_name": "Community 2", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/test/attestation.spec.ts", "file_type": "code", "degree": 2}, {"id": "attestation_spec_fakeperreceiptquote", "label": "fakePerReceiptQuote()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "fakePerReceiptQuote()", "community": 2, "community_name": "Community 2", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/test/attestation.spec.ts", "file_type": "code", "degree": 3}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_test_crypto_spec_ts", "label": "crypto.spec.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "crypto.spec.ts", "community": 96, "community_name": "Community 96", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/test/crypto.spec.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_test_server_spec_ts", "label": "server.spec.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 18.3, "font": {"size": 12, "color": "#ffffff"}, "title": "server.spec.ts", "community": 2, "community_name": "Community 2", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/test/server.spec.ts", "file_type": "code", "degree": 5}, {"id": "server_spec_fakeenvsigner", "label": "fakeEnvSigner()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "fakeEnvSigner()", "community": 2, "community_name": "Community 2", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/test/server.spec.ts", "file_type": "code", "degree": 1}, {"id": "server_spec_fakequotev4forreceipt", "label": "fakeQuoteV4ForReceipt()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fakeQuoteV4ForReceipt()", "community": 2, "community_name": "Community 2", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/test/server.spec.ts", "file_type": "code", "degree": 2}, {"id": "server_spec_fakebootquotev4", "label": "fakeBootQuoteV4()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fakeBootQuoteV4()", "community": 2, "community_name": "Community 2", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/test/server.spec.ts", "file_type": "code", "degree": 2}, {"id": "server_spec_faketeesigner", "label": "fakeTeeSigner()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fakeTeeSigner()", "community": 2, "community_name": "Community 2", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/test/server.spec.ts", "file_type": "code", "degree": 2}, {"id": "server_spec_validpayload", "label": "validPayload()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "validPayload()", "community": 2, "community_name": "Community 2", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/test/server.spec.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_scripts_repro_compute_sdk_ts", "label": "repro-compute-sdk.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "repro-compute-sdk.ts", "community": 67, "community_name": "Community 67", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/scripts/repro-compute-sdk.ts", "file_type": "code", "degree": 1}, {"id": "repro_compute_sdk_main", "label": "main()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 67, "community_name": "Community 67", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/scripts/repro-compute-sdk.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_scripts_probe_broker_ts", "label": "probe-broker.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "probe-broker.ts", "community": 1, "community_name": "Community 1", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/scripts/probe-broker.ts", "file_type": "code", "degree": 3}, {"id": "probe_broker_bigintreplacer", "label": "bigintReplacer()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "bigintReplacer()", "community": 1, "community_name": "Community 1", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/scripts/probe-broker.ts", "file_type": "code", "degree": 1}, {"id": "probe_broker_withtimeout", "label": "withTimeout()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "withTimeout()", "community": 1, "community_name": "Community 1", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/scripts/probe-broker.ts", "file_type": "code", "degree": 2}, {"id": "probe_broker_main", "label": "main()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "main()", "community": 1, "community_name": "Community 1", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/scripts/probe-broker.ts", "file_type": "code", "degree": 3}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_scripts_verify_receipt_ts", "label": "verify-receipt.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 21.7, "font": {"size": 12, "color": "#ffffff"}, "title": "verify-receipt.ts", "community": 1, "community_name": "Community 1", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/scripts/verify-receipt.ts", "file_type": "code", "degree": 7}, {"id": "verify_receipt_recoverethaddress", "label": "recoverEthAddress()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "recoverEthAddress()", "community": 1, "community_name": "Community 1", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/scripts/verify-receipt.ts", "file_type": "code", "degree": 3}, {"id": "verify_receipt_buildfixturepayload", "label": "buildFixturePayload()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "buildFixturePayload()", "community": 1, "community_name": "Community 1", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/scripts/verify-receipt.ts", "file_type": "code", "degree": 2}, {"id": "verify_receipt_mintlive", "label": "mintLive()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "mintLive()", "community": 1, "community_name": "Community 1", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/scripts/verify-receipt.ts", "file_type": "code", "degree": 3}, {"id": "verify_receipt_loadsample", "label": "loadSample()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "loadSample()", "community": 1, "community_name": "Community 1", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/scripts/verify-receipt.ts", "file_type": "code", "degree": 3}, {"id": "verify_receipt_step", "label": "step()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "step()", "community": 1, "community_name": "Community 1", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/scripts/verify-receipt.ts", "file_type": "code", "degree": 2}, {"id": "verify_receipt_loadbundle", "label": "loadBundle()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "loadBundle()", "community": 1, "community_name": "Community 1", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/scripts/verify-receipt.ts", "file_type": "code", "degree": 3}, {"id": "verify_receipt_main", "label": "main()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 26.7, "font": {"size": 12, "color": "#ffffff"}, "title": "main()", "community": 1, "community_name": "Community 1", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/scripts/verify-receipt.ts", "file_type": "code", "degree": 10}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_scripts_repro_storage_sdk_ts", "label": "repro-storage-sdk.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "repro-storage-sdk.ts", "community": 5, "community_name": "Community 5", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/scripts/repro-storage-sdk.ts", "file_type": "code", "degree": 1}, {"id": "repro_storage_sdk_main", "label": "main()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 5, "community_name": "Community 5", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/scripts/repro-storage-sdk.ts", "file_type": "code", "degree": 2}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_scripts_mint_with_storage_ts", "label": "mint-with-storage.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 16.7, "font": {"size": 12, "color": "#ffffff"}, "title": "mint-with-storage.ts", "community": 5, "community_name": "Community 5", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/scripts/mint-with-storage.ts", "file_type": "code", "degree": 4}, {"id": "mint_with_storage_hexlify", "label": "hexlify()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "hexlify()", "community": 5, "community_name": "Community 5", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/scripts/mint-with-storage.ts", "file_type": "code", "degree": 2}, {"id": "mint_with_storage_readdeployments", "label": "readDeployments()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "readDeployments()", "community": 5, "community_name": "Community 5", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/scripts/mint-with-storage.ts", "file_type": "code", "degree": 3}, {"id": "mint_with_storage_loadagentregistryabi", "label": "loadAgentRegistryAbi()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "loadAgentRegistryAbi()", "community": 5, "community_name": "Community 5", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/scripts/mint-with-storage.ts", "file_type": "code", "degree": 3}, {"id": "mint_with_storage_main", "label": "main()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 21.7, "font": {"size": 12, "color": "#ffffff"}, "title": "main()", "community": 5, "community_name": "Community 5", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/scripts/mint-with-storage.ts", "file_type": "code", "degree": 7}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_scripts_mint_sample_receipt_ts", "label": "mint-sample-receipt.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "mint-sample-receipt.ts", "community": 9, "community_name": "Community 9", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/scripts/mint-sample-receipt.ts", "file_type": "code", "degree": 3}, {"id": "mint_sample_receipt_buildperreceiptquote", "label": "buildPerReceiptQuote()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "buildPerReceiptQuote()", "community": 9, "community_name": "Community 9", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/scripts/mint-sample-receipt.ts", "file_type": "code", "degree": 2}, {"id": "mint_sample_receipt_signreceipt", "label": "signReceipt()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "signReceipt()", "community": 9, "community_name": "Community 9", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/scripts/mint-sample-receipt.ts", "file_type": "code", "degree": 2}, {"id": "mint_sample_receipt_main", "label": "main()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "main()", "community": 9, "community_name": "Community 9", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/scripts/mint-sample-receipt.ts", "file_type": "code", "degree": 9}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_phala_scripts_verify_deploy_ts", "label": "verify-deploy.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "verify-deploy.ts", "community": 1, "community_name": "Community 1", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/phala/scripts/verify-deploy.ts", "file_type": "code", "degree": 1}, {"id": "verify_deploy_main", "label": "main()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "main()", "community": 1, "community_name": "Community 1", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/phala/scripts/verify-deploy.ts", "file_type": "code", "degree": 3}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_src_verifier_ts", "label": "verifier.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "verifier.ts", "community": 8, "community_name": "Community 8", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/verifier.ts", "file_type": "code", "degree": 6}, {"id": "verifier_decodejsonsegment", "label": "decodeJsonSegment()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "decodeJsonSegment()", "community": 8, "community_name": "Community 8", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/verifier.ts", "file_type": "code", "degree": 3}, {"id": "verifier_precheckkbjwt", "label": "preCheckKbJwt()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 16.7, "font": {"size": 12, "color": "#ffffff"}, "title": "preCheckKbJwt()", "community": 8, "community_name": "Community 8", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/verifier.ts", "file_type": "code", "degree": 4}, {"id": "verifier_makeissuerverifier", "label": "makeIssuerVerifier()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "makeIssuerVerifier()", "community": 8, "community_name": "Community 8", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/verifier.ts", "file_type": "code", "degree": 2}, {"id": "verifier_makecnfboundkbverifier", "label": "makeCnfBoundKbVerifier()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "makeCnfBoundKbVerifier()", "community": 8, "community_name": "Community 8", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/verifier.ts", "file_type": "code", "degree": 3}, {"id": "verifier_compassverifier", "label": "CompassVerifier", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "CompassVerifier", "community": 8, "community_name": "Community 8", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/verifier.ts", "file_type": "code", "degree": 3}, {"id": "verifier_compassverifier_constructor", "label": ".constructor()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 8, "community_name": "Community 8", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/verifier.ts", "file_type": "code", "degree": 1}, {"id": "verifier_compassverifier_verifyandevaluate", "label": ".verifyAndEvaluate()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 23.3, "font": {"size": 12, "color": "#ffffff"}, "title": ".verifyAndEvaluate()", "community": 8, "community_name": "Community 8", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/verifier.ts", "file_type": "code", "degree": 8}, {"id": "verifier_buildfixtureverifier", "label": "buildFixtureVerifier()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "buildFixtureVerifier()", "community": 8, "community_name": "Community 8", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/verifier.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_src_fixtures_ts", "label": "fixtures.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fixtures.ts", "community": 35, "community_name": "Community 35", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/fixtures.ts", "file_type": "code", "degree": 2}, {"id": "fixtures_issuerforpolicy", "label": "issuerForPolicy()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "issuerForPolicy()", "community": 35, "community_name": "Community 35", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/fixtures.ts", "file_type": "code", "degree": 1}, {"id": "fixtures_claimsforpolicy", "label": "claimsForPolicy()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "claimsForPolicy()", "community": 35, "community_name": "Community 35", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/fixtures.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_src_eth_address_ts", "label": "eth-address.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "eth-address.ts", "community": 2, "community_name": "Community 2", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/eth-address.ts", "file_type": "code", "degree": 1}, {"id": "eth_address_deriveethaddressfromuncompressed", "label": "deriveEthAddressFromUncompressed()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 18.3, "font": {"size": 12, "color": "#ffffff"}, "title": "deriveEthAddressFromUncompressed()", "community": 2, "community_name": "Community 2", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/eth-address.ts", "file_type": "code", "degree": 5}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_src_holder_ts", "label": "holder.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "holder.ts", "community": 6, "community_name": "Community 6", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/holder.ts", "file_type": "code", "degree": 2}, {"id": "holder_makekbsigner", "label": "makeKBSigner()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "makeKBSigner()", "community": 6, "community_name": "Community 6", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/holder.ts", "file_type": "code", "degree": 2}, {"id": "holder_compassholder", "label": "CompassHolder", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "CompassHolder", "community": 6, "community_name": "Community 6", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/holder.ts", "file_type": "code", "degree": 3}, {"id": "holder_compassholder_constructor", "label": ".constructor()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 6, "community_name": "Community 6", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/holder.ts", "file_type": "code", "degree": 2}, {"id": "holder_compassholder_present", "label": ".present()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".present()", "community": 6, "community_name": "Community 6", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/holder.ts", "file_type": "code", "degree": 2}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_src_dstack_ts", "label": "dstack.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "dstack.ts", "community": 2, "community_name": "Community 2", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/dstack.ts", "file_type": "code", "degree": 3}, {"id": "dstack_bootreportdatainput", "label": "bootReportDataInput()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "bootReportDataInput()", "community": 2, "community_name": "Community 2", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/dstack.ts", "file_type": "code", "degree": 3}, {"id": "dstack_buildperreceiptreportdatainput", "label": "buildPerReceiptReportDataInput()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "buildPerReceiptReportDataInput()", "community": 2, "community_name": "Community 2", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/dstack.ts", "file_type": "code", "degree": 3}, {"id": "dstack_tryloadattestedsigner", "label": "tryLoadAttestedSigner()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 18.3, "font": {"size": 12, "color": "#ffffff"}, "title": "tryLoadAttestedSigner()", "community": 2, "community_name": "Community 2", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/dstack.ts", "file_type": "code", "degree": 5}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_src_receipt_ts", "label": "receipt.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "receipt.ts", "community": 9, "community_name": "Community 9", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/receipt.ts", "file_type": "code", "degree": 6}, {"id": "receipt_canonicalizationerror", "label": "CanonicalizationError", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "CanonicalizationError", "community": 9, "community_name": "Community 9", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/receipt.ts", "file_type": "code", "degree": 1}, {"id": "receipt_canonicalize", "label": "canonicalize()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "canonicalize()", "community": 9, "community_name": "Community 9", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/receipt.ts", "file_type": "code", "degree": 3}, {"id": "receipt_hexlify", "label": "hexlify()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 16.7, "font": {"size": 12, "color": "#ffffff"}, "title": "hexlify()", "community": 9, "community_name": "Community 9", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/receipt.ts", "file_type": "code", "degree": 4}, {"id": "receipt_attestationdigest", "label": "attestationDigest()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 18.3, "font": {"size": 12, "color": "#ffffff"}, "title": "attestationDigest()", "community": 9, "community_name": "Community 9", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/receipt.ts", "file_type": "code", "degree": 5}, {"id": "receipt_buildreceiptdocument", "label": "buildReceiptDocument()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 16.7, "font": {"size": 12, "color": "#ffffff"}, "title": "buildReceiptDocument()", "community": 9, "community_name": "Community 9", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/receipt.ts", "file_type": "code", "degree": 4}, {"id": "receipt_quotecommitmentfromquotehex", "label": "quoteCommitmentFromQuoteHex()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "quoteCommitmentFromQuoteHex()", "community": 9, "community_name": "Community 9", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/receipt.ts", "file_type": "code", "degree": 3}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_src_storage_ts", "label": "storage.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "storage.ts", "community": 5, "community_name": "Community 5", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/storage.ts", "file_type": "code", "degree": 3}, {"id": "storage_sdkerrormessage", "label": "sdkErrorMessage()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "sdkErrorMessage()", "community": 5, "community_name": "Community 5", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/storage.ts", "file_type": "code", "degree": 3}, {"id": "storage_compassstorage", "label": "CompassStorage", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "CompassStorage", "community": 5, "community_name": "Community 5", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/storage.ts", "file_type": "code", "degree": 6}, {"id": "storage_compassstorage_constructor", "label": ".constructor()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 5, "community_name": "Community 5", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/storage.ts", "file_type": "code", "degree": 1}, {"id": "storage_compassstorage_inspect_custom", "label": ".[inspect.custom]()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".[inspect.custom]()", "community": 5, "community_name": "Community 5", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/storage.ts", "file_type": "code", "degree": 1}, {"id": "storage_compassstorage_upload", "label": ".upload()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 16.7, "font": {"size": 12, "color": "#ffffff"}, "title": ".upload()", "community": 5, "community_name": "Community 5", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/storage.ts", "file_type": "code", "degree": 4}, {"id": "storage_compassstorage_download", "label": ".download()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".download()", "community": 5, "community_name": "Community 5", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/storage.ts", "file_type": "code", "degree": 2}, {"id": "storage_compassstorage_address", "label": ".address()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".address()", "community": 5, "community_name": "Community 5", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/storage.ts", "file_type": "code", "degree": 1}, {"id": "storage_compassstoragefromenv", "label": "compassStorageFromEnv()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "compassStorageFromEnv()", "community": 5, "community_name": "Community 5", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/storage.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_src_generate_wallet_ts", "label": "generate-wallet.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "generate-wallet.ts", "community": 97, "community_name": "Community 97", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/generate-wallet.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_src_trust_ts", "label": "trust.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "trust.ts", "community": 6, "community_name": "Community 6", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/trust.ts", "file_type": "code", "degree": 2}, {"id": "trust_trustlist", "label": "TrustList", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 16.7, "font": {"size": 12, "color": "#ffffff"}, "title": "TrustList", "community": 6, "community_name": "Community 6", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/trust.ts", "file_type": "code", "degree": 4}, {"id": "trust_trustlist_constructor", "label": ".constructor()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 6, "community_name": "Community 6", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/trust.ts", "file_type": "code", "degree": 1}, {"id": "trust_trustlist_istrusted", "label": ".isTrusted()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".isTrusted()", "community": 6, "community_name": "Community 6", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/trust.ts", "file_type": "code", "degree": 2}, {"id": "trust_trustlist_size", "label": ".size()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".size()", "community": 6, "community_name": "Community 6", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/trust.ts", "file_type": "code", "degree": 2}, {"id": "trust_buildtrustlist", "label": "buildTrustList()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "buildTrustList()", "community": 6, "community_name": "Community 6", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/trust.ts", "file_type": "code", "degree": 2}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_src_verify_attestation_ts", "label": "verify-attestation.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 23.3, "font": {"size": 12, "color": "#ffffff"}, "title": "verify-attestation.ts", "community": 1, "community_name": "Community 1", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/verify-attestation.ts", "file_type": "code", "degree": 8}, {"id": "verify_attestation_verificationerror", "label": "VerificationError", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "VerificationError", "community": 1, "community_name": "Community 1", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/verify-attestation.ts", "file_type": "code", "degree": 2}, {"id": "verify_attestation_verificationerror_constructor", "label": ".constructor()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 1, "community_name": "Community 1", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/verify-attestation.ts", "file_type": "code", "degree": 1}, {"id": "verify_attestation_hextobytes", "label": "hexToBytes()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 18.3, "font": {"size": 12, "color": "#ffffff"}, "title": "hexToBytes()", "community": 1, "community_name": "Community 1", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/verify-attestation.ts", "file_type": "code", "degree": 5}, {"id": "verify_attestation_parsequoteversion", "label": "parseQuoteVersion()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "parseQuoteVersion()", "community": 1, "community_name": "Community 1", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/verify-attestation.ts", "file_type": "code", "degree": 2}, {"id": "verify_attestation_extractreportdata", "label": "extractReportData()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 18.3, "font": {"size": 12, "color": "#ffffff"}, "title": "extractReportData()", "community": 1, "community_name": "Community 1", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/verify-attestation.ts", "file_type": "code", "degree": 5}, {"id": "verify_attestation_buildexpectedreportdata", "label": "buildExpectedReportData()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "buildExpectedReportData()", "community": 1, "community_name": "Community 1", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/verify-attestation.ts", "file_type": "code", "degree": 3}, {"id": "verify_attestation_verifyquotecommitment", "label": "verifyQuoteCommitment()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "verifyQuoteCommitment()", "community": 1, "community_name": "Community 1", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/verify-attestation.ts", "file_type": "code", "degree": 3}, {"id": "verify_attestation_verifyperreceiptquotebinding", "label": "verifyPerReceiptQuoteBinding()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 16.7, "font": {"size": 12, "color": "#ffffff"}, "title": "verifyPerReceiptQuoteBinding()", "community": 1, "community_name": "Community 1", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/verify-attestation.ts", "file_type": "code", "degree": 4}, {"id": "verify_attestation_verifyreportdatabinding", "label": "verifyReportDataBinding()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 18.3, "font": {"size": 12, "color": "#ffffff"}, "title": "verifyReportDataBinding()", "community": 1, "community_name": "Community 1", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/verify-attestation.ts", "file_type": "code", "degree": 5}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_src_crypto_ts", "label": "crypto.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 18.3, "font": {"size": 12, "color": "#ffffff"}, "title": "crypto.ts", "community": 5, "community_name": "Community 5", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/crypto.ts", "file_type": "code", "degree": 5}, {"id": "crypto_derivekey", "label": "deriveKey()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "deriveKey()", "community": 5, "community_name": "Community 5", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/crypto.ts", "file_type": "code", "degree": 3}, {"id": "crypto_encryptvault", "label": "encryptVault()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "encryptVault()", "community": 5, "community_name": "Community 5", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/crypto.ts", "file_type": "code", "degree": 3}, {"id": "crypto_decryptvault", "label": "decryptVault()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "decryptVault()", "community": 5, "community_name": "Community 5", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/crypto.ts", "file_type": "code", "degree": 2}, {"id": "crypto_serializevault", "label": "serializeVault()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "serializeVault()", "community": 5, "community_name": "Community 5", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/crypto.ts", "file_type": "code", "degree": 2}, {"id": "crypto_deserializevault", "label": "deserializeVault()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "deserializeVault()", "community": 5, "community_name": "Community 5", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/crypto.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_src_types_ts", "label": "types.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "types.ts", "community": 98, "community_name": "Community 98", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/types.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_src_smoke_test_ts", "label": "smoke-test.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "smoke-test.ts", "community": 1, "community_name": "Community 1", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/smoke-test.ts", "file_type": "code", "degree": 3}, {"id": "smoke_test_bigintreplacer", "label": "bigintReplacer()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "bigintReplacer()", "community": 1, "community_name": "Community 1", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/smoke-test.ts", "file_type": "code", "degree": 1}, {"id": "smoke_test_writenotes", "label": "writeNotes()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "writeNotes()", "community": 1, "community_name": "Community 1", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/smoke-test.ts", "file_type": "code", "degree": 2}, {"id": "smoke_test_main", "label": "main()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "main()", "community": 1, "community_name": "Community 1", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/smoke-test.ts", "file_type": "code", "degree": 3}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_src_keys_ts", "label": "keys.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 18.3, "font": {"size": 12, "color": "#ffffff"}, "title": "keys.ts", "community": 18, "community_name": "Community 18", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/keys.ts", "file_type": "code", "degree": 5}, {"id": "keys_ed25519didkey", "label": "ed25519DidKey()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "ed25519DidKey()", "community": 18, "community_name": "Community 18", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/keys.ts", "file_type": "code", "degree": 3}, {"id": "keys_generateissuerkeypair", "label": "generateIssuerKeyPair()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "generateIssuerKeyPair()", "community": 18, "community_name": "Community 18", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/keys.ts", "file_type": "code", "degree": 2}, {"id": "keys_insecure_fixture_deterministicissuerkeypair", "label": "INSECURE_FIXTURE_deterministicIssuerKeyPair()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "INSECURE_FIXTURE_deterministicIssuerKeyPair()", "community": 18, "community_name": "Community 18", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/keys.ts", "file_type": "code", "degree": 2}, {"id": "keys_generateholderkeypair", "label": "generateHolderKeyPair()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "generateHolderKeyPair()", "community": 18, "community_name": "Community 18", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/keys.ts", "file_type": "code", "degree": 1}, {"id": "keys_insecure_fixture_deterministicholderkeypair", "label": "INSECURE_FIXTURE_deterministicHolderKeyPair()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "INSECURE_FIXTURE_deterministicHolderKeyPair()", "community": 18, "community_name": "Community 18", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/keys.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_src_policy_ts", "label": "policy.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 18.3, "font": {"size": 12, "color": "#ffffff"}, "title": "policy.ts", "community": 8, "community_name": "Community 8", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/policy.ts", "file_type": "code", "degree": 5}, {"id": "policy_malformedpredicateerror", "label": "MalformedPredicateError", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "MalformedPredicateError", "community": 8, "community_name": "Community 8", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/policy.ts", "file_type": "code", "degree": 1}, {"id": "policy_isleaf", "label": "isLeaf()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "isLeaf()", "community": 8, "community_name": "Community 8", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/policy.ts", "file_type": "code", "degree": 3}, {"id": "policy_evalnode", "label": "evalNode()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "evalNode()", "community": 8, "community_name": "Community 8", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/policy.ts", "file_type": "code", "degree": 3}, {"id": "policy_collectclaimnames", "label": "collectClaimNames()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "collectClaimNames()", "community": 8, "community_name": "Community 8", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/policy.ts", "file_type": "code", "degree": 3}, {"id": "policy_evaluatepolicy", "label": "evaluatePolicy()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 18.3, "font": {"size": 12, "color": "#ffffff"}, "title": "evaluatePolicy()", "community": 8, "community_name": "Community 8", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/policy.ts", "file_type": "code", "degree": 5}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_src_status_list_ts", "label": "status-list.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "status-list.ts", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/status-list.ts", "file_type": "code", "degree": 2}, {"id": "status_list_statuslistclient", "label": "StatusListClient", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 21.7, "font": {"size": 12, "color": "#ffffff"}, "title": "StatusListClient", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/status-list.ts", "file_type": "code", "degree": 7}, {"id": "status_list_statuslistclient_constructor", "label": ".constructor()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/status-list.ts", "file_type": "code", "degree": 1}, {"id": "status_list_statuslistclient_resolvebatch", "label": ".resolveBatch()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": ".resolveBatch()", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/status-list.ts", "file_type": "code", "degree": 3}, {"id": "status_list_statuslistclient_resolve", "label": ".resolve()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 30.0, "font": {"size": 12, "color": "#ffffff"}, "title": ".resolve()", "community": 1, "community_name": "Community 1", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/status-list.ts", "file_type": "code", "degree": 12}, {"id": "status_list_statuslistclient_invalidate", "label": ".invalidate()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".invalidate()", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/status-list.ts", "file_type": "code", "degree": 1}, {"id": "status_list_statuslistclient_invalidateall", "label": ".invalidateAll()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".invalidateAll()", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/status-list.ts", "file_type": "code", "degree": 1}, {"id": "status_list_statuslistclient_getlist", "label": ".getList()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getList()", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/status-list.ts", "file_type": "code", "degree": 2}, {"id": "status_list_statuslistfetcherror", "label": "StatusListFetchError", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "StatusListFetchError", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/status-list.ts", "file_type": "code", "degree": 2}, {"id": "status_list_statuslistfetcherror_constructor", "label": ".constructor()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 0, "community_name": "Community 0", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/status-list.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_src_issuer_ts", "label": "issuer.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "issuer.ts", "community": 6, "community_name": "Community 6", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/issuer.ts", "file_type": "code", "degree": 2}, {"id": "issuer_makesigner", "label": "makeSigner()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "makeSigner()", "community": 6, "community_name": "Community 6", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/issuer.ts", "file_type": "code", "degree": 2}, {"id": "issuer_compassissuer", "label": "CompassIssuer", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "CompassIssuer", "community": 6, "community_name": "Community 6", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/issuer.ts", "file_type": "code", "degree": 3}, {"id": "issuer_compassissuer_constructor", "label": ".constructor()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 6, "community_name": "Community 6", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/issuer.ts", "file_type": "code", "degree": 2}, {"id": "issuer_compassissuer_issue", "label": ".issue()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": ".issue()", "community": 6, "community_name": "Community 6", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/issuer.ts", "file_type": "code", "degree": 3}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_src_server_ts", "label": "server.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 23.3, "font": {"size": 12, "color": "#ffffff"}, "title": "server.ts", "community": 2, "community_name": "Community 2", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/server.ts", "file_type": "code", "degree": 8}, {"id": "server_payloadvalidationerror", "label": "PayloadValidationError", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "PayloadValidationError", "community": 2, "community_name": "Community 2", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/server.ts", "file_type": "code", "degree": 1}, {"id": "server_isforcelocal", "label": "isForceLocal()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isForceLocal()", "community": 2, "community_name": "Community 2", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/server.ts", "file_type": "code", "degree": 2}, {"id": "server_loadenvsigner", "label": "loadEnvSigner()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "loadEnvSigner()", "community": 2, "community_name": "Community 2", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/server.ts", "file_type": "code", "degree": 3}, {"id": "server_loadsigner", "label": "loadSigner()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 18.3, "font": {"size": 12, "color": "#ffffff"}, "title": "loadSigner()", "community": 2, "community_name": "Community 2", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/server.ts", "file_type": "code", "degree": 5}, {"id": "server_signreceipt", "label": "signReceipt()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "signReceipt()", "community": 2, "community_name": "Community 2", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/server.ts", "file_type": "code", "degree": 1}, {"id": "server_validatecompasspayload", "label": "validateCompassPayload()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "validateCompassPayload()", "community": 2, "community_name": "Community 2", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/server.ts", "file_type": "code", "degree": 1}, {"id": "server_buildapp", "label": "buildApp()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 16.7, "font": {"size": 12, "color": "#ffffff"}, "title": "buildApp()", "community": 2, "community_name": "Community 2", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/server.ts", "file_type": "code", "degree": 4}, {"id": "server_bootstrap", "label": "bootstrap()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "bootstrap()", "community": 2, "community_name": "Community 2", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/server.ts", "file_type": "code", "degree": 3}, {"id": "users_stephensookra_desktop_compass_compass_og_enclave_src_types_0g_ts_sdk_d_ts", "label": "0g-ts-sdk.d.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "0g-ts-sdk.d.ts", "community": 99, "community_name": "Community 99", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/enclave/src/types/0g-ts-sdk.d.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_hardhat_config_ts", "label": "hardhat.config.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "hardhat.config.ts", "community": 100, "community_name": "Community 100", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/hardhat.config.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_test_agentregistry_t_ts", "label": "AgentRegistry.t.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "AgentRegistry.t.ts", "community": 68, "community_name": "Community 68", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/test/AgentRegistry.t.ts", "file_type": "code", "degree": 1}, {"id": "agentregistry_t_deploy", "label": "deploy()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "deploy()", "community": 68, "community_name": "Community 68", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/test/AgentRegistry.t.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_test_compasshub_authwit_t_ts", "label": "CompassHub.authwit.t.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 18.3, "font": {"size": 12, "color": "#ffffff"}, "title": "CompassHub.authwit.t.ts", "community": 3, "community_name": "Community 3", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/test/CompassHub.authwit.t.ts", "file_type": "code", "degree": 5}, {"id": "compasshub_authwit_t_deploy", "label": "deploy()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "deploy()", "community": 3, "community_name": "Community 3", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/test/CompassHub.authwit.t.ts", "file_type": "code", "degree": 2}, {"id": "compasshub_authwit_t_buildgrant", "label": "buildGrant()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "buildGrant()", "community": 3, "community_name": "Community 3", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/test/CompassHub.authwit.t.ts", "file_type": "code", "degree": 1}, {"id": "compasshub_authwit_t_buildreceipt", "label": "buildReceipt()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "buildReceipt()", "community": 3, "community_name": "Community 3", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/test/CompassHub.authwit.t.ts", "file_type": "code", "degree": 1}, {"id": "compasshub_authwit_t_signgrant", "label": "signGrant()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "signGrant()", "community": 3, "community_name": "Community 3", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/test/CompassHub.authwit.t.ts", "file_type": "code", "degree": 1}, {"id": "compasshub_authwit_t_registerhelppolicy", "label": "registerHelpPolicy()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "registerHelpPolicy()", "community": 3, "community_name": "Community 3", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/test/CompassHub.authwit.t.ts", "file_type": "code", "degree": 2}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_test_compasshub_policy_t_ts", "label": "CompassHub.policy.t.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "CompassHub.policy.t.ts", "community": 69, "community_name": "Community 69", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/test/CompassHub.policy.t.ts", "file_type": "code", "degree": 1}, {"id": "compasshub_policy_t_deploy", "label": "deploy()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "deploy()", "community": 69, "community_name": "Community 69", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/test/CompassHub.policy.t.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_test_invariants_t_ts", "label": "invariants.t.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "invariants.t.ts", "community": 3, "community_name": "Community 3", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/test/invariants.t.ts", "file_type": "code", "degree": 3}, {"id": "invariants_t_deploystack", "label": "deployStack()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "deployStack()", "community": 3, "community_name": "Community 3", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/test/invariants.t.ts", "file_type": "code", "degree": 3}, {"id": "invariants_t_setup", "label": "setup()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "setup()", "community": 3, "community_name": "Community 3", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/test/invariants.t.ts", "file_type": "code", "degree": 3}, {"id": "invariants_t_buildsignedgrant", "label": "buildSignedGrant()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "buildSignedGrant()", "community": 3, "community_name": "Community 3", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/test/invariants.t.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_scripts_deploy_deploy_ts", "label": "deploy.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "deploy.ts", "community": 3, "community_name": "Community 3", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/scripts/deploy/deploy.ts", "file_type": "code", "degree": 1}, {"id": "deploy_main", "label": "main()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "main()", "community": 3, "community_name": "Community 3", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/scripts/deploy/deploy.ts", "file_type": "code", "degree": 3}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_hardhat_d_ts", "label": "hardhat.d.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "hardhat.d.ts", "community": 101, "community_name": "Community 101", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/hardhat.d.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_common_ts", "label": "common.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "common.ts", "community": 102, "community_name": "Community 102", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/common.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_index_ts", "label": "index.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 103, "community_name": "Community 103", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/index.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_contracts_compasshub_ts", "label": "CompassHub.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "CompassHub.ts", "community": 104, "community_name": "Community 104", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/contracts/CompassHub.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_contracts_index_ts", "label": "index.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 105, "community_name": "Community 105", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/contracts/index.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_contracts_iagentregistry_ts", "label": "IAgentRegistry.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "IAgentRegistry.ts", "community": 106, "community_name": "Community 106", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/contracts/IAgentRegistry.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_contracts_agentregistry_ts", "label": "AgentRegistry.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "AgentRegistry.ts", "community": 107, "community_name": "Community 107", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/contracts/AgentRegistry.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_openzeppelin_index_ts", "label": "index.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 108, "community_name": "Community 108", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/@openzeppelin/index.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_openzeppelin_contracts_index_ts", "label": "index.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 109, "community_name": "Community 109", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/@openzeppelin/contracts/index.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_openzeppelin_contracts_utils_strings_ts", "label": "Strings.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Strings.ts", "community": 110, "community_name": "Community 110", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/@openzeppelin/contracts/utils/Strings.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_openzeppelin_contracts_utils_shortstrings_ts", "label": "ShortStrings.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ShortStrings.ts", "community": 111, "community_name": "Community 111", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/@openzeppelin/contracts/utils/ShortStrings.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_openzeppelin_contracts_utils_index_ts", "label": "index.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 112, "community_name": "Community 112", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/@openzeppelin/contracts/utils/index.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_openzeppelin_contracts_utils_introspection_index_ts", "label": "index.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 113, "community_name": "Community 113", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/@openzeppelin/contracts/utils/introspection/index.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_openzeppelin_contracts_utils_introspection_erc165_ts", "label": "ERC165.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ERC165.ts", "community": 114, "community_name": "Community 114", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/@openzeppelin/contracts/utils/introspection/ERC165.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_openzeppelin_contracts_utils_introspection_ierc165_ts", "label": "IERC165.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "IERC165.ts", "community": 115, "community_name": "Community 115", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/@openzeppelin/contracts/utils/introspection/IERC165.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_openzeppelin_contracts_interfaces_ierc5267_ts", "label": "IERC5267.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "IERC5267.ts", "community": 116, "community_name": "Community 116", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/@openzeppelin/contracts/interfaces/IERC5267.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_openzeppelin_contracts_interfaces_index_ts", "label": "index.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 117, "community_name": "Community 117", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/@openzeppelin/contracts/interfaces/index.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_openzeppelin_contracts_interfaces_draft_ierc6093_sol_ierc1155errors_ts", "label": "IERC1155Errors.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "IERC1155Errors.ts", "community": 118, "community_name": "Community 118", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_openzeppelin_contracts_interfaces_draft_ierc6093_sol_ierc721errors_ts", "label": "IERC721Errors.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "IERC721Errors.ts", "community": 119, "community_name": "Community 119", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_openzeppelin_contracts_interfaces_draft_ierc6093_sol_ierc20errors_ts", "label": "IERC20Errors.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "IERC20Errors.ts", "community": 120, "community_name": "Community 120", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_openzeppelin_contracts_interfaces_draft_ierc6093_sol_index_ts", "label": "index.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 121, "community_name": "Community 121", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_index_ts", "label": "index.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 122, "community_name": "Community 122", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/index.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_contracts_iagentregistry_factory_ts", "label": "IAgentRegistry__factory.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "IAgentRegistry__factory.ts", "community": 22, "community_name": "Community 22", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/contracts/IAgentRegistry__factory.ts", "file_type": "code", "degree": 1}, {"id": "iagentregistry_factory_iagentregistry_factory", "label": "IAgentRegistry__factory", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "IAgentRegistry__factory", "community": 22, "community_name": "Community 22", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/contracts/IAgentRegistry__factory.ts", "file_type": "code", "degree": 3}, {"id": "iagentregistry_factory_iagentregistry_factory_createinterface", "label": ".createInterface()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".createInterface()", "community": 22, "community_name": "Community 22", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/contracts/IAgentRegistry__factory.ts", "file_type": "code", "degree": 1}, {"id": "iagentregistry_factory_iagentregistry_factory_connect", "label": ".connect()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".connect()", "community": 22, "community_name": "Community 22", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/contracts/IAgentRegistry__factory.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_contracts_compasshub_factory_ts", "label": "CompassHub__factory.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CompassHub__factory.ts", "community": 12, "community_name": "Community 12", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/contracts/CompassHub__factory.ts", "file_type": "code", "degree": 2}, {"id": "compasshub_factory_issuperargs", "label": "isSuperArgs()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isSuperArgs()", "community": 12, "community_name": "Community 12", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/contracts/CompassHub__factory.ts", "file_type": "code", "degree": 2}, {"id": "compasshub_factory_compasshub_factory", "label": "CompassHub__factory", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "CompassHub__factory", "community": 12, "community_name": "Community 12", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/contracts/CompassHub__factory.ts", "file_type": "code", "degree": 6}, {"id": "compasshub_factory_compasshub_factory_constructor", "label": ".constructor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 12, "community_name": "Community 12", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/contracts/CompassHub__factory.ts", "file_type": "code", "degree": 2}, {"id": "compasshub_factory_compasshub_factory_getdeploytransaction", "label": ".getDeployTransaction()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".getDeployTransaction()", "community": 12, "community_name": "Community 12", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/contracts/CompassHub__factory.ts", "file_type": "code", "degree": 1}, {"id": "compasshub_factory_compasshub_factory_deploy", "label": ".deploy()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".deploy()", "community": 12, "community_name": "Community 12", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/contracts/CompassHub__factory.ts", "file_type": "code", "degree": 1}, {"id": "compasshub_factory_compasshub_factory_connect", "label": ".connect()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".connect()", "community": 12, "community_name": "Community 12", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/contracts/CompassHub__factory.ts", "file_type": "code", "degree": 1}, {"id": "compasshub_factory_compasshub_factory_createinterface", "label": ".createInterface()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".createInterface()", "community": 12, "community_name": "Community 12", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/contracts/CompassHub__factory.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_contracts_index_ts", "label": "index.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 123, "community_name": "Community 123", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/contracts/index.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_contracts_agentregistry_factory_ts", "label": "AgentRegistry__factory.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AgentRegistry__factory.ts", "community": 13, "community_name": "Community 13", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/contracts/AgentRegistry__factory.ts", "file_type": "code", "degree": 2}, {"id": "agentregistry_factory_issuperargs", "label": "isSuperArgs()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isSuperArgs()", "community": 13, "community_name": "Community 13", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/contracts/AgentRegistry__factory.ts", "file_type": "code", "degree": 2}, {"id": "agentregistry_factory_agentregistry_factory", "label": "AgentRegistry__factory", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "AgentRegistry__factory", "community": 13, "community_name": "Community 13", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/contracts/AgentRegistry__factory.ts", "file_type": "code", "degree": 6}, {"id": "agentregistry_factory_agentregistry_factory_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 13, "community_name": "Community 13", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/contracts/AgentRegistry__factory.ts", "file_type": "code", "degree": 2}, {"id": "agentregistry_factory_agentregistry_factory_getdeploytransaction", "label": ".getDeployTransaction()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".getDeployTransaction()", "community": 13, "community_name": "Community 13", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/contracts/AgentRegistry__factory.ts", "file_type": "code", "degree": 1}, {"id": "agentregistry_factory_agentregistry_factory_deploy", "label": ".deploy()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".deploy()", "community": 13, "community_name": "Community 13", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/contracts/AgentRegistry__factory.ts", "file_type": "code", "degree": 1}, {"id": "agentregistry_factory_agentregistry_factory_connect", "label": ".connect()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".connect()", "community": 13, "community_name": "Community 13", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/contracts/AgentRegistry__factory.ts", "file_type": "code", "degree": 1}, {"id": "agentregistry_factory_agentregistry_factory_createinterface", "label": ".createInterface()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".createInterface()", "community": 13, "community_name": "Community 13", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/contracts/AgentRegistry__factory.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_index_ts", "label": "index.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 124, "community_name": "Community 124", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/index.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_index_ts", "label": "index.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 125, "community_name": "Community 125", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/index.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_utils_strings_factory_ts", "label": "Strings__factory.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Strings__factory.ts", "community": 14, "community_name": "Community 14", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.ts", "file_type": "code", "degree": 2}, {"id": "strings_factory_issuperargs", "label": "isSuperArgs()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isSuperArgs()", "community": 14, "community_name": "Community 14", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.ts", "file_type": "code", "degree": 2}, {"id": "strings_factory_strings_factory", "label": "Strings__factory", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Strings__factory", "community": 14, "community_name": "Community 14", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.ts", "file_type": "code", "degree": 6}, {"id": "strings_factory_strings_factory_constructor", "label": ".constructor()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 14, "community_name": "Community 14", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.ts", "file_type": "code", "degree": 2}, {"id": "strings_factory_strings_factory_getdeploytransaction", "label": ".getDeployTransaction()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".getDeployTransaction()", "community": 14, "community_name": "Community 14", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.ts", "file_type": "code", "degree": 1}, {"id": "strings_factory_strings_factory_deploy", "label": ".deploy()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".deploy()", "community": 14, "community_name": "Community 14", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.ts", "file_type": "code", "degree": 1}, {"id": "strings_factory_strings_factory_connect", "label": ".connect()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".connect()", "community": 14, "community_name": "Community 14", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.ts", "file_type": "code", "degree": 1}, {"id": "strings_factory_strings_factory_createinterface", "label": ".createInterface()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".createInterface()", "community": 14, "community_name": "Community 14", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_utils_index_ts", "label": "index.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 126, "community_name": "Community 126", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/index.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_utils_shortstrings_factory_ts", "label": "ShortStrings__factory.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ShortStrings__factory.ts", "community": 15, "community_name": "Community 15", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.ts", "file_type": "code", "degree": 2}, {"id": "shortstrings_factory_issuperargs", "label": "isSuperArgs()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isSuperArgs()", "community": 15, "community_name": "Community 15", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.ts", "file_type": "code", "degree": 2}, {"id": "shortstrings_factory_shortstrings_factory", "label": "ShortStrings__factory", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "ShortStrings__factory", "community": 15, "community_name": "Community 15", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.ts", "file_type": "code", "degree": 6}, {"id": "shortstrings_factory_shortstrings_factory_constructor", "label": ".constructor()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 15, "community_name": "Community 15", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.ts", "file_type": "code", "degree": 2}, {"id": "shortstrings_factory_shortstrings_factory_getdeploytransaction", "label": ".getDeployTransaction()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".getDeployTransaction()", "community": 15, "community_name": "Community 15", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.ts", "file_type": "code", "degree": 1}, {"id": "shortstrings_factory_shortstrings_factory_deploy", "label": ".deploy()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".deploy()", "community": 15, "community_name": "Community 15", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.ts", "file_type": "code", "degree": 1}, {"id": "shortstrings_factory_shortstrings_factory_connect", "label": ".connect()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".connect()", "community": 15, "community_name": "Community 15", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.ts", "file_type": "code", "degree": 1}, {"id": "shortstrings_factory_shortstrings_factory_createinterface", "label": ".createInterface()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".createInterface()", "community": 15, "community_name": "Community 15", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_utils_cryptography_messagehashutils_factory_ts", "label": "MessageHashUtils__factory.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MessageHashUtils__factory.ts", "community": 16, "community_name": "Community 16", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/MessageHashUtils__factory.ts", "file_type": "code", "degree": 2}, {"id": "messagehashutils_factory_issuperargs", "label": "isSuperArgs()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isSuperArgs()", "community": 16, "community_name": "Community 16", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/MessageHashUtils__factory.ts", "file_type": "code", "degree": 2}, {"id": "messagehashutils_factory_messagehashutils_factory", "label": "MessageHashUtils__factory", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "MessageHashUtils__factory", "community": 16, "community_name": "Community 16", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/MessageHashUtils__factory.ts", "file_type": "code", "degree": 6}, {"id": "messagehashutils_factory_messagehashutils_factory_constructor", "label": ".constructor()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 16, "community_name": "Community 16", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/MessageHashUtils__factory.ts", "file_type": "code", "degree": 2}, {"id": "messagehashutils_factory_messagehashutils_factory_getdeploytransaction", "label": ".getDeployTransaction()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".getDeployTransaction()", "community": 16, "community_name": "Community 16", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/MessageHashUtils__factory.ts", "file_type": "code", "degree": 1}, {"id": "messagehashutils_factory_messagehashutils_factory_deploy", "label": ".deploy()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".deploy()", "community": 16, "community_name": "Community 16", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/MessageHashUtils__factory.ts", "file_type": "code", "degree": 1}, {"id": "messagehashutils_factory_messagehashutils_factory_connect", "label": ".connect()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".connect()", "community": 16, "community_name": "Community 16", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/MessageHashUtils__factory.ts", "file_type": "code", "degree": 1}, {"id": "messagehashutils_factory_messagehashutils_factory_createinterface", "label": ".createInterface()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".createInterface()", "community": 16, "community_name": "Community 16", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/MessageHashUtils__factory.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_utils_cryptography_ecdsa_factory_ts", "label": "ECDSA__factory.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ECDSA__factory.ts", "community": 17, "community_name": "Community 17", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.ts", "file_type": "code", "degree": 2}, {"id": "ecdsa_factory_issuperargs", "label": "isSuperArgs()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isSuperArgs()", "community": 17, "community_name": "Community 17", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.ts", "file_type": "code", "degree": 2}, {"id": "ecdsa_factory_ecdsa_factory", "label": "ECDSA__factory", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "ECDSA__factory", "community": 17, "community_name": "Community 17", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.ts", "file_type": "code", "degree": 6}, {"id": "ecdsa_factory_ecdsa_factory_constructor", "label": ".constructor()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 17, "community_name": "Community 17", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.ts", "file_type": "code", "degree": 2}, {"id": "ecdsa_factory_ecdsa_factory_getdeploytransaction", "label": ".getDeployTransaction()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".getDeployTransaction()", "community": 17, "community_name": "Community 17", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.ts", "file_type": "code", "degree": 1}, {"id": "ecdsa_factory_ecdsa_factory_deploy", "label": ".deploy()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".deploy()", "community": 17, "community_name": "Community 17", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.ts", "file_type": "code", "degree": 1}, {"id": "ecdsa_factory_ecdsa_factory_connect", "label": ".connect()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".connect()", "community": 17, "community_name": "Community 17", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.ts", "file_type": "code", "degree": 1}, {"id": "ecdsa_factory_ecdsa_factory_createinterface", "label": ".createInterface()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".createInterface()", "community": 17, "community_name": "Community 17", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_utils_cryptography_index_ts", "label": "index.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 127, "community_name": "Community 127", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/index.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_utils_cryptography_eip712_factory_ts", "label": "EIP712__factory.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "EIP712__factory.ts", "community": 23, "community_name": "Community 23", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/EIP712__factory.ts", "file_type": "code", "degree": 1}, {"id": "eip712_factory_eip712_factory", "label": "EIP712__factory", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "EIP712__factory", "community": 23, "community_name": "Community 23", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/EIP712__factory.ts", "file_type": "code", "degree": 3}, {"id": "eip712_factory_eip712_factory_createinterface", "label": ".createInterface()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".createInterface()", "community": 23, "community_name": "Community 23", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/EIP712__factory.ts", "file_type": "code", "degree": 1}, {"id": "eip712_factory_eip712_factory_connect", "label": ".connect()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".connect()", "community": 23, "community_name": "Community 23", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/EIP712__factory.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_utils_introspection_erc165_factory_ts", "label": "ERC165__factory.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ERC165__factory.ts", "community": 24, "community_name": "Community 24", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/introspection/ERC165__factory.ts", "file_type": "code", "degree": 1}, {"id": "erc165_factory_erc165_factory", "label": "ERC165__factory", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "ERC165__factory", "community": 24, "community_name": "Community 24", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/introspection/ERC165__factory.ts", "file_type": "code", "degree": 3}, {"id": "erc165_factory_erc165_factory_createinterface", "label": ".createInterface()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".createInterface()", "community": 24, "community_name": "Community 24", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/introspection/ERC165__factory.ts", "file_type": "code", "degree": 1}, {"id": "erc165_factory_erc165_factory_connect", "label": ".connect()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".connect()", "community": 24, "community_name": "Community 24", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/introspection/ERC165__factory.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_utils_introspection_ierc165_factory_ts", "label": "IERC165__factory.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "IERC165__factory.ts", "community": 25, "community_name": "Community 25", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.ts", "file_type": "code", "degree": 1}, {"id": "ierc165_factory_ierc165_factory", "label": "IERC165__factory", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "IERC165__factory", "community": 25, "community_name": "Community 25", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.ts", "file_type": "code", "degree": 3}, {"id": "ierc165_factory_ierc165_factory_createinterface", "label": ".createInterface()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".createInterface()", "community": 25, "community_name": "Community 25", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.ts", "file_type": "code", "degree": 1}, {"id": "ierc165_factory_ierc165_factory_connect", "label": ".connect()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".connect()", "community": 25, "community_name": "Community 25", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_utils_introspection_index_ts", "label": "index.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 128, "community_name": "Community 128", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/introspection/index.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_utils_math_safecast_factory_ts", "label": "SafeCast__factory.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SafeCast__factory.ts", "community": 3, "community_name": "Community 3", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.ts", "file_type": "code", "degree": 2}, {"id": "safecast_factory_issuperargs", "label": "isSuperArgs()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isSuperArgs()", "community": 3, "community_name": "Community 3", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.ts", "file_type": "code", "degree": 2}, {"id": "safecast_factory_safecast_factory", "label": "SafeCast__factory", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "SafeCast__factory", "community": 3, "community_name": "Community 3", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.ts", "file_type": "code", "degree": 6}, {"id": "safecast_factory_safecast_factory_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 3, "community_name": "Community 3", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.ts", "file_type": "code", "degree": 2}, {"id": "safecast_factory_safecast_factory_getdeploytransaction", "label": ".getDeployTransaction()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".getDeployTransaction()", "community": 3, "community_name": "Community 3", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.ts", "file_type": "code", "degree": 1}, {"id": "safecast_factory_safecast_factory_deploy", "label": ".deploy()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": ".deploy()", "community": 3, "community_name": "Community 3", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.ts", "file_type": "code", "degree": 3}, {"id": "safecast_factory_safecast_factory_connect", "label": ".connect()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".connect()", "community": 3, "community_name": "Community 3", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.ts", "file_type": "code", "degree": 1}, {"id": "safecast_factory_safecast_factory_createinterface", "label": ".createInterface()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".createInterface()", "community": 3, "community_name": "Community 3", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_utils_math_index_ts", "label": "index.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 129, "community_name": "Community 129", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/utils/math/index.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_interfaces_ierc5267_factory_ts", "label": "IERC5267__factory.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "IERC5267__factory.ts", "community": 26, "community_name": "Community 26", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC5267__factory.ts", "file_type": "code", "degree": 1}, {"id": "ierc5267_factory_ierc5267_factory", "label": "IERC5267__factory", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "IERC5267__factory", "community": 26, "community_name": "Community 26", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC5267__factory.ts", "file_type": "code", "degree": 3}, {"id": "ierc5267_factory_ierc5267_factory_createinterface", "label": ".createInterface()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".createInterface()", "community": 26, "community_name": "Community 26", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC5267__factory.ts", "file_type": "code", "degree": 1}, {"id": "ierc5267_factory_ierc5267_factory_connect", "label": ".connect()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".connect()", "community": 26, "community_name": "Community 26", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC5267__factory.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_interfaces_index_ts", "label": "index.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 130, "community_name": "Community 130", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/index.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_interfaces_draft_ierc6093_sol_ierc20errors_factory_ts", "label": "IERC20Errors__factory.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "IERC20Errors__factory.ts", "community": 27, "community_name": "Community 27", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors__factory.ts", "file_type": "code", "degree": 1}, {"id": "ierc20errors_factory_ierc20errors_factory", "label": "IERC20Errors__factory", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "IERC20Errors__factory", "community": 27, "community_name": "Community 27", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors__factory.ts", "file_type": "code", "degree": 3}, {"id": "ierc20errors_factory_ierc20errors_factory_createinterface", "label": ".createInterface()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".createInterface()", "community": 27, "community_name": "Community 27", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors__factory.ts", "file_type": "code", "degree": 1}, {"id": "ierc20errors_factory_ierc20errors_factory_connect", "label": ".connect()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".connect()", "community": 27, "community_name": "Community 27", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors__factory.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_interfaces_draft_ierc6093_sol_ierc1155errors_factory_ts", "label": "IERC1155Errors__factory.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "IERC1155Errors__factory.ts", "community": 28, "community_name": "Community 28", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors__factory.ts", "file_type": "code", "degree": 1}, {"id": "ierc1155errors_factory_ierc1155errors_factory", "label": "IERC1155Errors__factory", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "IERC1155Errors__factory", "community": 28, "community_name": "Community 28", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors__factory.ts", "file_type": "code", "degree": 3}, {"id": "ierc1155errors_factory_ierc1155errors_factory_createinterface", "label": ".createInterface()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".createInterface()", "community": 28, "community_name": "Community 28", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors__factory.ts", "file_type": "code", "degree": 1}, {"id": "ierc1155errors_factory_ierc1155errors_factory_connect", "label": ".connect()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".connect()", "community": 28, "community_name": "Community 28", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors__factory.ts", "file_type": "code", "degree": 1}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_interfaces_draft_ierc6093_sol_index_ts", "label": "index.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 131, "community_name": "Community 131", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.ts", "file_type": "code", "degree": 0}, {"id": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_interfaces_draft_ierc6093_sol_ierc721errors_factory_ts", "label": "IERC721Errors__factory.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "IERC721Errors__factory.ts", "community": 3, "community_name": "Community 3", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors__factory.ts", "file_type": "code", "degree": 1}, {"id": "ierc721errors_factory_ierc721errors_factory", "label": "IERC721Errors__factory", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "IERC721Errors__factory", "community": 3, "community_name": "Community 3", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors__factory.ts", "file_type": "code", "degree": 3}, {"id": "ierc721errors_factory_ierc721errors_factory_createinterface", "label": ".createInterface()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".createInterface()", "community": 3, "community_name": "Community 3", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors__factory.ts", "file_type": "code", "degree": 1}, {"id": "ierc721errors_factory_ierc721errors_factory_connect", "label": ".connect()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 16.7, "font": {"size": 12, "color": "#ffffff"}, "title": ".connect()", "community": 3, "community_name": "Community 3", "source_file": "/Users/stephensookra/Desktop/Compass/Compass-OG-/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors__factory.ts", "file_type": "code", "degree": 4}];
const RAW_EDGES = [{"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_robots_ts", "to": "robots_robots", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_apple_icon_tsx", "to": "apple_icon_appleicon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_icon_tsx", "to": "icon_icon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_opengraph_image_tsx", "to": "opengraph_image_image", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "opengraph_image_image", "to": "users_stephensookra_desktop_compass_compass_og_app_src_app_demo_opengraph_image_tsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "opengraph_image_image", "to": "users_stephensookra_desktop_compass_compass_og_app_src_app_verify_opengraph_image_tsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "opengraph_image_image", "to": "users_stephensookra_desktop_compass_compass_og_app_src_app_roadmap_opengraph_image_tsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "opengraph_image_image", "to": "users_stephensookra_desktop_compass_compass_og_app_src_app_faq_opengraph_image_tsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "opengraph_image_image", "to": "users_stephensookra_desktop_compass_compass_og_app_src_app_about_opengraph_image_tsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "opengraph_image_image", "to": "users_stephensookra_desktop_compass_compass_og_app_src_app_onboard_opengraph_image_tsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "opengraph_image_image", "to": "users_stephensookra_desktop_compass_compass_og_app_src_app_audit_opengraph_image_tsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "opengraph_image_image", "to": "users_stephensookra_desktop_compass_compass_og_app_src_app_clinic_subpoena_opengraph_image_tsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_sitemap_ts", "to": "sitemap_sitemap", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_layout_tsx", "to": "layout_rootlayout", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_error_tsx", "to": "error_globalerror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_manifest_ts", "to": "manifest_manifest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_not_found_tsx", "to": "not_found_notfound", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_verify_page_tsx", "to": "page_loadsample", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_verify_page_tsx", "to": "page_onbundleedit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_verify_page_tsx", "to": "page_oncomposeedit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_verify_page_tsx", "to": "page_runverify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_verify_page_tsx", "to": "page_handlefile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_verify_page_tsx", "to": "page_ondrop", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "page_runverify", "to": "verifyreceipt_parsebundle", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "page_runverify", "to": "verifyreceipt_verifybundle", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "page_handlefile", "to": "page_ondrop", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_onboard_error_tsx", "to": "error_onboarderror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_onboard_page_tsx", "to": "page_labelfor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_onboard_page_tsx", "to": "page_start", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_onboard_page_tsx", "to": "page_reset", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_policies_slug_page_tsx", "to": "page_generatestaticparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "page_generatestaticparams", "to": "users_stephensookra_desktop_compass_compass_og_app_src_app_receipt_id_page_tsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_api_tee_status_route_ts", "to": "route_get", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "route_get", "to": "ratelimit_extractclientip", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "route_get", "to": "compassenclave_getenclaveurl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "route_get", "to": "compassenclave_probeenclavehealth", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "route_get", "to": "route_post", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "route_get", "to": "page_buildbuckets", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "route_get", "to": "ratelimit_check", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "route_get", "to": "verifier_compassverifier_verifyandevaluate", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "route_get", "to": "status_list_statuslistclient_resolvebatch", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "route_get", "to": "status_list_statuslistclient_getlist", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "route_get", "to": "server_buildapp", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_api_issue_route_ts", "to": "route_base58btcencode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_api_issue_route_ts", "to": "route_ed25519publickeytodidkey", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_api_issue_route_ts", "to": "route_makesigner", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_api_issue_route_ts", "to": "route_loadissuerkey", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_api_issue_route_ts", "to": "route_post", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "route_base58btcencode", "to": "route_ed25519publickeytodidkey", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "route_ed25519publickeytodidkey", "to": "route_post", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "route_makesigner", "to": "route_post", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "route_loadissuerkey", "to": "route_post", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "route_post", "to": "users_stephensookra_desktop_compass_compass_og_app_src_app_api_consume_route_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "route_post", "to": "route_loadproviderkey", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "route_post", "to": "route_validategrant", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "route_post", "to": "users_stephensookra_desktop_compass_compass_og_app_src_app_api_csp_report_route_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "route_post", "to": "ratelimit_extractclientip", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "route_post", "to": "issuer_compassissuer_issue", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "route_post", "to": "trust_trustlist_size", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "route_post", "to": "chains_activechain", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "route_post", "to": "contracts_activecompasshub", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "route_post", "to": "compassenclave_getenclaveurl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "route_post", "to": "compassenclave_callenclave", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "route_post", "to": "chains_usemainnet", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "route_post", "to": "server_buildapp", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_api_consume_route_ts", "to": "route_loadproviderkey", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_api_consume_route_ts", "to": "route_isplainbytes32", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_api_consume_route_ts", "to": "route_validategrant", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "route_isplainbytes32", "to": "route_validategrant", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_kiosk_layout_tsx", "to": "layout_kiosklayout", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_clinic_page_tsx", "to": "page_clinicindexpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_clinic_subpoena_page_tsx", "to": "page_subpoenapage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_vault_page_tsx", "to": "page_vaultpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_app_analytics_page_tsx", "to": "page_buildbuckets", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_components_providers_privyclientprovider_tsx", "to": "privyclientprovider_privyclientprovider", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_components_about_splinescene_tsx", "to": "splinescene_splinescene", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_components_about_architecturediagram_tsx", "to": "architecturediagram_layery", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_components_about_teestatusbadge_tsx", "to": "teestatusbadge_teestatusbadge", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_components_onboard_privyconnectbutton_tsx", "to": "privyconnectbutton_privyconnectbutton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_components_onboard_requesteligibilitybutton_tsx", "to": "requesteligibilitybutton_explorertxbase", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_components_onboard_requesteligibilitybutton_tsx", "to": "requesteligibilitybutton_buildnullifier", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_components_onboard_requesteligibilitybutton_tsx", "to": "requesteligibilitybutton_request", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "requesteligibilitybutton_explorertxbase", "to": "chains_activechain", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "requesteligibilitybutton_buildnullifier", "to": "requesteligibilitybutton_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "requesteligibilitybutton_request", "to": "chains_activechain", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "requesteligibilitybutton_request", "to": "contracts_activecompasshub", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_components_onboard_mintagentbutton_tsx", "to": "mintagentbutton_explorertxbase", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_components_onboard_mintagentbutton_tsx", "to": "mintagentbutton_getpublicclient", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_components_onboard_mintagentbutton_tsx", "to": "mintagentbutton_refreshbalance", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_components_onboard_mintagentbutton_tsx", "to": "mintagentbutton_mint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mintagentbutton_explorertxbase", "to": "chains_activechain", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "mintagentbutton_getpublicclient", "to": "mintagentbutton_refreshbalance", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mintagentbutton_getpublicclient", "to": "mintagentbutton_mint", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mintagentbutton_getpublicclient", "to": "chains_activechain", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "mintagentbutton_refreshbalance", "to": "chains_usemainnet", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "mintagentbutton_mint", "to": "chains_activechain", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "mintagentbutton_mint", "to": "contracts_activeagentregistry", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_components_primitives_magneticbutton_tsx", "to": "magneticbutton_magneticbutton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_components_primitives_democta_tsx", "to": "democta_democta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_components_primitives_ambientsphere_tsx", "to": "ambientsphere_ambientsphere", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_components_primitives_teebadge_tsx", "to": "teebadge_teebadge", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_components_primitives_term_tsx", "to": "term_term", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_components_primitives_term_tsx", "to": "term_termprovider", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_components_primitives_cursorspotlight_tsx", "to": "cursorspotlight_cursorspotlight", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_components_primitives_fadingvideo_tsx", "to": "fadingvideo_fadingvideo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_components_primitives_revealtext_tsx", "to": "revealtext_revealtext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_components_primitives_th_tsx", "to": "th_th", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_components_primitives_stat_tsx", "to": "stat_stat", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_components_primitives_skeleton_tsx", "to": "skeleton_skeleton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_components_primitives_skeleton_tsx", "to": "skeleton_credentialcardskeleton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_components_primitives_reveal_tsx", "to": "reveal_reveal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_components_primitives_liquidglass_tsx", "to": "liquidglass_liquidglass", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_components_primitives_videobackground_tsx", "to": "videobackground_videobackground", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_components_primitives_videobackground_tsx", "to": "videobackground_herovideoenabled", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_components_clinic_statusbadge_tsx", "to": "statusbadge_statusbadge", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_components_clinic_clinicheader_tsx", "to": "clinicheader_clinicheader", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_compassenclave_ts", "to": "compassenclave_helplegalaidpolicy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_compassenclave_ts", "to": "compassenclave_getenclaveurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_compassenclave_ts", "to": "compassenclave_callenclave", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_compassenclave_ts", "to": "compassenclave_probeenclavehealth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "compassenclave_helplegalaidpolicy", "to": "compassenclave_callenclave", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_contracts_ts", "to": "contracts_activeagentregistry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_contracts_ts", "to": "contracts_activecompasshub", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contracts_activeagentregistry", "to": "chains_usemainnet", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "contracts_activecompasshub", "to": "chains_usemainnet", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_verifyreceipt_ts", "to": "verifyreceipt_hextobytes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_verifyreceipt_ts", "to": "verifyreceipt_bytestohex", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_verifyreceipt_ts", "to": "verifyreceipt_canonicalize", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_verifyreceipt_ts", "to": "verifyreceipt_attestationdigestof", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_verifyreceipt_ts", "to": "verifyreceipt_deriveethaddressfromuncompressed", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_verifyreceipt_ts", "to": "verifyreceipt_recoverethaddress", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_verifyreceipt_ts", "to": "verifyreceipt_quotecommitmentfromquotehex", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_verifyreceipt_ts", "to": "verifyreceipt_extractreportdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_verifyreceipt_ts", "to": "verifyreceipt_verifyperreceiptquotebinding", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_verifyreceipt_ts", "to": "verifyreceipt_verifybundle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_verifyreceipt_ts", "to": "verifyreceipt_parsebundle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verifyreceipt_hextobytes", "to": "verifyreceipt_recoverethaddress", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verifyreceipt_hextobytes", "to": "verifyreceipt_quotecommitmentfromquotehex", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verifyreceipt_hextobytes", "to": "verifyreceipt_extractreportdata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verifyreceipt_hextobytes", "to": "verifyreceipt_verifyperreceiptquotebinding", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verifyreceipt_bytestohex", "to": "verifyreceipt_attestationdigestof", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verifyreceipt_bytestohex", "to": "verifyreceipt_deriveethaddressfromuncompressed", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verifyreceipt_bytestohex", "to": "verifyreceipt_quotecommitmentfromquotehex", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verifyreceipt_canonicalize", "to": "verifyreceipt_attestationdigestof", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verifyreceipt_attestationdigestof", "to": "verifyreceipt_verifybundle", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verifyreceipt_deriveethaddressfromuncompressed", "to": "verifyreceipt_recoverethaddress", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verifyreceipt_recoverethaddress", "to": "verifyreceipt_verifybundle", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verifyreceipt_quotecommitmentfromquotehex", "to": "verifyreceipt_verifybundle", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verifyreceipt_extractreportdata", "to": "verifyreceipt_verifyperreceiptquotebinding", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verifyreceipt_verifyperreceiptquotebinding", "to": "verifyreceipt_verifybundle", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verifyreceipt_parsebundle", "to": "verifyreceipt_test_loadsample", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_ratelimit_ts", "to": "ratelimit_createbucketstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_ratelimit_ts", "to": "ratelimit_extractclientip", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_ratelimit_ts", "to": "ratelimit_check", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_ratelimit_ts", "to": "ratelimit_evictoldest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_ratelimit_ts", "to": "ratelimit_forcelruevict", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ratelimit_check", "to": "ratelimit_evictoldest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ratelimit_check", "to": "ratelimit_forcelruevict", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_chains_ts", "to": "chains_isprivyenabled", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_chains_ts", "to": "chains_usemainnet", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_chains_ts", "to": "chains_activenetwork", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_chains_ts", "to": "chains_activechain", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "chains_usemainnet", "to": "chains_activenetwork", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "chains_usemainnet", "to": "chains_activechain", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_crypto_vault_ts", "to": "vault_opendb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_crypto_vault_ts", "to": "vault_idbget", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_crypto_vault_ts", "to": "vault_idbput", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_crypto_vault_ts", "to": "vault_getorcreatevaultkey", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_crypto_vault_ts", "to": "vault_bytestobase64url", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_crypto_vault_ts", "to": "vault_base64urltobytes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_crypto_vault_ts", "to": "vault_encrypttext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_crypto_vault_ts", "to": "vault_decrypttext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_crypto_vault_ts", "to": "vault_isstoredlivecredential", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "vault_opendb", "to": "vault_idbget", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "vault_opendb", "to": "vault_idbput", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "vault_idbget", "to": "vault_getorcreatevaultkey", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "vault_idbput", "to": "vault_getorcreatevaultkey", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "vault_bytestobase64url", "to": "vault_encrypttext", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "vault_base64urltobytes", "to": "vault_decrypttext", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_tests_verifyreceipt_test_ts", "to": "verifyreceipt_test_loadsample", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_tests_verifyreceipt_test_ts", "to": "verifyreceipt_test_clone", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_fixtures_policies_ts", "to": "policies_predicateexpression", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_fixtures_policies_ts", "to": "policies_getpolicybyid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_fixtures_policies_ts", "to": "policies_getpolicybyslug", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_fixtures_receipts_ts", "to": "receipts_shortenhex", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_fixtures_receipts_ts", "to": "receipts_formatexpiry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_fixtures_receipts_ts", "to": "receipts_formatbucket", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_i18n_kiosk_strings_ts", "to": "kiosk_strings_getkioskstrings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_app_src_lib_i18n_kiosk_strings_ts", "to": "kiosk_strings_islocale", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_test_e2e_spec_ts", "to": "e2e_spec_buildverifier", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_test_e2e_spec_ts", "to": "e2e_spec_issueandpresent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "e2e_spec_buildverifier", "to": "trust_buildtrustlist", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "e2e_spec_issueandpresent", "to": "issuer_compassissuer_issue", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "e2e_spec_issueandpresent", "to": "holder_compassholder_present", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_test_status_list_spec_ts", "to": "status_list_spec_fakestatuslist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_test_status_list_spec_ts", "to": "status_list_spec_mk", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_test_attestation_spec_ts", "to": "attestation_spec_fakequote", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_test_attestation_spec_ts", "to": "attestation_spec_syntheticreportdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_test_attestation_spec_ts", "to": "attestation_spec_fakeperreceiptquote", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "attestation_spec_fakequote", "to": "attestation_spec_fakeperreceiptquote", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "attestation_spec_syntheticreportdata", "to": "dstack_bootreportdatainput", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "attestation_spec_fakeperreceiptquote", "to": "dstack_buildperreceiptreportdatainput", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_test_server_spec_ts", "to": "server_spec_fakeenvsigner", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_test_server_spec_ts", "to": "server_spec_fakequotev4forreceipt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_test_server_spec_ts", "to": "server_spec_fakebootquotev4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_test_server_spec_ts", "to": "server_spec_faketeesigner", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_test_server_spec_ts", "to": "server_spec_validpayload", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_spec_fakequotev4forreceipt", "to": "dstack_buildperreceiptreportdatainput", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "server_spec_fakebootquotev4", "to": "server_spec_faketeesigner", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_scripts_repro_compute_sdk_ts", "to": "repro_compute_sdk_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_scripts_probe_broker_ts", "to": "probe_broker_bigintreplacer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_scripts_probe_broker_ts", "to": "probe_broker_withtimeout", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_scripts_probe_broker_ts", "to": "probe_broker_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "probe_broker_withtimeout", "to": "probe_broker_main", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "probe_broker_main", "to": "status_list_statuslistclient_resolve", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_scripts_verify_receipt_ts", "to": "verify_receipt_recoverethaddress", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_scripts_verify_receipt_ts", "to": "verify_receipt_buildfixturepayload", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_scripts_verify_receipt_ts", "to": "verify_receipt_mintlive", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_scripts_verify_receipt_ts", "to": "verify_receipt_loadsample", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_scripts_verify_receipt_ts", "to": "verify_receipt_step", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_scripts_verify_receipt_ts", "to": "verify_receipt_loadbundle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_scripts_verify_receipt_ts", "to": "verify_receipt_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verify_receipt_recoverethaddress", "to": "verify_receipt_main", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verify_receipt_recoverethaddress", "to": "eth_address_deriveethaddressfromuncompressed", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "verify_receipt_buildfixturepayload", "to": "verify_receipt_mintlive", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verify_receipt_mintlive", "to": "verify_receipt_main", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verify_receipt_loadsample", "to": "verify_receipt_main", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verify_receipt_loadsample", "to": "status_list_statuslistclient_resolve", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "verify_receipt_step", "to": "verify_receipt_main", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verify_receipt_loadbundle", "to": "verify_receipt_main", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verify_receipt_loadbundle", "to": "status_list_statuslistclient_resolve", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "verify_receipt_main", "to": "receipt_attestationdigest", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "verify_receipt_main", "to": "verify_attestation_verifyquotecommitment", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "verify_receipt_main", "to": "verify_attestation_verifyperreceiptquotebinding", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "verify_receipt_main", "to": "status_list_statuslistclient_resolve", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_scripts_repro_storage_sdk_ts", "to": "repro_storage_sdk_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "repro_storage_sdk_main", "to": "storage_compassstorage_upload", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_scripts_mint_with_storage_ts", "to": "mint_with_storage_hexlify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_scripts_mint_with_storage_ts", "to": "mint_with_storage_readdeployments", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_scripts_mint_with_storage_ts", "to": "mint_with_storage_loadagentregistryabi", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_scripts_mint_with_storage_ts", "to": "mint_with_storage_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mint_with_storage_hexlify", "to": "mint_with_storage_main", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mint_with_storage_readdeployments", "to": "mint_with_storage_main", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mint_with_storage_readdeployments", "to": "status_list_statuslistclient_resolve", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "mint_with_storage_loadagentregistryabi", "to": "mint_with_storage_main", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mint_with_storage_loadagentregistryabi", "to": "status_list_statuslistclient_resolve", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "mint_with_storage_main", "to": "crypto_encryptvault", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "mint_with_storage_main", "to": "crypto_serializevault", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "mint_with_storage_main", "to": "storage_compassstorage_upload", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_scripts_mint_sample_receipt_ts", "to": "mint_sample_receipt_buildperreceiptquote", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_scripts_mint_sample_receipt_ts", "to": "mint_sample_receipt_signreceipt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_scripts_mint_sample_receipt_ts", "to": "mint_sample_receipt_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mint_sample_receipt_buildperreceiptquote", "to": "mint_sample_receipt_main", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mint_sample_receipt_signreceipt", "to": "mint_sample_receipt_main", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mint_sample_receipt_main", "to": "eth_address_deriveethaddressfromuncompressed", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "mint_sample_receipt_main", "to": "policy_evaluatepolicy", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "mint_sample_receipt_main", "to": "receipt_quotecommitmentfromquotehex", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "mint_sample_receipt_main", "to": "receipt_buildreceiptdocument", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "mint_sample_receipt_main", "to": "receipt_attestationdigest", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "mint_sample_receipt_main", "to": "status_list_statuslistclient_resolve", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_phala_scripts_verify_deploy_ts", "to": "verify_deploy_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verify_deploy_main", "to": "verify_attestation_verifyreportdatabinding", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "verify_deploy_main", "to": "status_list_statuslistclient_resolve", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_verifier_ts", "to": "verifier_decodejsonsegment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_verifier_ts", "to": "verifier_precheckkbjwt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_verifier_ts", "to": "verifier_makeissuerverifier", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_verifier_ts", "to": "verifier_makecnfboundkbverifier", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_verifier_ts", "to": "verifier_compassverifier", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_verifier_ts", "to": "verifier_buildfixtureverifier", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verifier_decodejsonsegment", "to": "verifier_precheckkbjwt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verifier_decodejsonsegment", "to": "verifier_compassverifier_verifyandevaluate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verifier_precheckkbjwt", "to": "verifier_makecnfboundkbverifier", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verifier_precheckkbjwt", "to": "verifier_compassverifier_verifyandevaluate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verifier_makeissuerverifier", "to": "verifier_compassverifier_verifyandevaluate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verifier_makecnfboundkbverifier", "to": "verifier_compassverifier_verifyandevaluate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verifier_compassverifier", "to": "verifier_compassverifier_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verifier_compassverifier", "to": "verifier_compassverifier_verifyandevaluate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verifier_compassverifier_verifyandevaluate", "to": "trust_trustlist_istrusted", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "verifier_compassverifier_verifyandevaluate", "to": "policy_evaluatepolicy", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_fixtures_ts", "to": "fixtures_issuerforpolicy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_fixtures_ts", "to": "fixtures_claimsforpolicy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_eth_address_ts", "to": "eth_address_deriveethaddressfromuncompressed", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "eth_address_deriveethaddressfromuncompressed", "to": "dstack_tryloadattestedsigner", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "eth_address_deriveethaddressfromuncompressed", "to": "server_loadenvsigner", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_holder_ts", "to": "holder_makekbsigner", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_holder_ts", "to": "holder_compassholder", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "holder_makekbsigner", "to": "holder_compassholder_constructor", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "holder_compassholder", "to": "holder_compassholder_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "holder_compassholder", "to": "holder_compassholder_present", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_dstack_ts", "to": "dstack_bootreportdatainput", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_dstack_ts", "to": "dstack_buildperreceiptreportdatainput", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_dstack_ts", "to": "dstack_tryloadattestedsigner", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dstack_bootreportdatainput", "to": "dstack_tryloadattestedsigner", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dstack_tryloadattestedsigner", "to": "verify_attestation_verifyreportdatabinding", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "dstack_tryloadattestedsigner", "to": "server_loadsigner", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_receipt_ts", "to": "receipt_canonicalizationerror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_receipt_ts", "to": "receipt_canonicalize", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_receipt_ts", "to": "receipt_hexlify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_receipt_ts", "to": "receipt_attestationdigest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_receipt_ts", "to": "receipt_buildreceiptdocument", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_receipt_ts", "to": "receipt_quotecommitmentfromquotehex", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "receipt_canonicalize", "to": "receipt_attestationdigest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "receipt_canonicalize", "to": "receipt_buildreceiptdocument", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "receipt_hexlify", "to": "receipt_attestationdigest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "receipt_hexlify", "to": "receipt_buildreceiptdocument", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "receipt_hexlify", "to": "receipt_quotecommitmentfromquotehex", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_storage_ts", "to": "storage_sdkerrormessage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_storage_ts", "to": "storage_compassstorage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_storage_ts", "to": "storage_compassstoragefromenv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "storage_sdkerrormessage", "to": "storage_compassstorage_upload", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "storage_sdkerrormessage", "to": "storage_compassstorage_download", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "storage_compassstorage", "to": "storage_compassstorage_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "storage_compassstorage", "to": "storage_compassstorage_inspect_custom", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "storage_compassstorage", "to": "storage_compassstorage_upload", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "storage_compassstorage", "to": "storage_compassstorage_download", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "storage_compassstorage", "to": "storage_compassstorage_address", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_trust_ts", "to": "trust_trustlist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_trust_ts", "to": "trust_buildtrustlist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "trust_trustlist", "to": "trust_trustlist_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "trust_trustlist", "to": "trust_trustlist_istrusted", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "trust_trustlist", "to": "trust_trustlist_size", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_verify_attestation_ts", "to": "verify_attestation_verificationerror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_verify_attestation_ts", "to": "verify_attestation_hextobytes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_verify_attestation_ts", "to": "verify_attestation_parsequoteversion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_verify_attestation_ts", "to": "verify_attestation_extractreportdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_verify_attestation_ts", "to": "verify_attestation_buildexpectedreportdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_verify_attestation_ts", "to": "verify_attestation_verifyquotecommitment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_verify_attestation_ts", "to": "verify_attestation_verifyperreceiptquotebinding", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_verify_attestation_ts", "to": "verify_attestation_verifyreportdatabinding", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verify_attestation_verificationerror", "to": "verify_attestation_verificationerror_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verify_attestation_hextobytes", "to": "verify_attestation_extractreportdata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verify_attestation_hextobytes", "to": "verify_attestation_buildexpectedreportdata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verify_attestation_hextobytes", "to": "verify_attestation_verifyquotecommitment", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verify_attestation_hextobytes", "to": "verify_attestation_verifyperreceiptquotebinding", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verify_attestation_parsequoteversion", "to": "verify_attestation_extractreportdata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verify_attestation_extractreportdata", "to": "verify_attestation_verifyperreceiptquotebinding", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verify_attestation_extractreportdata", "to": "verify_attestation_verifyreportdatabinding", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verify_attestation_buildexpectedreportdata", "to": "verify_attestation_verifyreportdatabinding", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_crypto_ts", "to": "crypto_derivekey", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_crypto_ts", "to": "crypto_encryptvault", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_crypto_ts", "to": "crypto_decryptvault", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_crypto_ts", "to": "crypto_serializevault", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_crypto_ts", "to": "crypto_deserializevault", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "crypto_derivekey", "to": "crypto_encryptvault", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "crypto_derivekey", "to": "crypto_decryptvault", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_smoke_test_ts", "to": "smoke_test_bigintreplacer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_smoke_test_ts", "to": "smoke_test_writenotes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_smoke_test_ts", "to": "smoke_test_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "smoke_test_writenotes", "to": "smoke_test_main", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "smoke_test_main", "to": "status_list_statuslistclient_resolve", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_keys_ts", "to": "keys_ed25519didkey", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_keys_ts", "to": "keys_generateissuerkeypair", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_keys_ts", "to": "keys_insecure_fixture_deterministicissuerkeypair", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_keys_ts", "to": "keys_generateholderkeypair", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_keys_ts", "to": "keys_insecure_fixture_deterministicholderkeypair", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "keys_ed25519didkey", "to": "keys_generateissuerkeypair", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "keys_ed25519didkey", "to": "keys_insecure_fixture_deterministicissuerkeypair", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_policy_ts", "to": "policy_malformedpredicateerror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_policy_ts", "to": "policy_isleaf", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_policy_ts", "to": "policy_evalnode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_policy_ts", "to": "policy_collectclaimnames", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_policy_ts", "to": "policy_evaluatepolicy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "policy_isleaf", "to": "policy_evalnode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "policy_isleaf", "to": "policy_collectclaimnames", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "policy_evalnode", "to": "policy_evaluatepolicy", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "policy_collectclaimnames", "to": "policy_evaluatepolicy", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_status_list_ts", "to": "status_list_statuslistclient", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_status_list_ts", "to": "status_list_statuslistfetcherror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "status_list_statuslistclient", "to": "status_list_statuslistclient_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "status_list_statuslistclient", "to": "status_list_statuslistclient_resolvebatch", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "status_list_statuslistclient", "to": "status_list_statuslistclient_resolve", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "status_list_statuslistclient", "to": "status_list_statuslistclient_invalidate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "status_list_statuslistclient", "to": "status_list_statuslistclient_invalidateall", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "status_list_statuslistclient", "to": "status_list_statuslistclient_getlist", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "status_list_statuslistclient_resolvebatch", "to": "status_list_statuslistclient_resolve", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "status_list_statuslistclient_resolve", "to": "deploy_main", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "status_list_statuslistfetcherror", "to": "status_list_statuslistfetcherror_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_issuer_ts", "to": "issuer_makesigner", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_issuer_ts", "to": "issuer_compassissuer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "issuer_makesigner", "to": "issuer_compassissuer_constructor", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "issuer_compassissuer", "to": "issuer_compassissuer_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "issuer_compassissuer", "to": "issuer_compassissuer_issue", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_server_ts", "to": "server_payloadvalidationerror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_server_ts", "to": "server_isforcelocal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_server_ts", "to": "server_loadenvsigner", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_server_ts", "to": "server_loadsigner", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_server_ts", "to": "server_signreceipt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_server_ts", "to": "server_validatecompasspayload", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_server_ts", "to": "server_buildapp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_enclave_src_server_ts", "to": "server_bootstrap", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_isforcelocal", "to": "server_loadsigner", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_loadenvsigner", "to": "server_loadsigner", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_loadsigner", "to": "server_bootstrap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "server_buildapp", "to": "server_bootstrap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_test_agentregistry_t_ts", "to": "agentregistry_t_deploy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_test_compasshub_authwit_t_ts", "to": "compasshub_authwit_t_deploy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_test_compasshub_authwit_t_ts", "to": "compasshub_authwit_t_buildgrant", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_test_compasshub_authwit_t_ts", "to": "compasshub_authwit_t_buildreceipt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_test_compasshub_authwit_t_ts", "to": "compasshub_authwit_t_signgrant", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_test_compasshub_authwit_t_ts", "to": "compasshub_authwit_t_registerhelppolicy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "compasshub_authwit_t_deploy", "to": "ierc721errors_factory_ierc721errors_factory_connect", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "compasshub_authwit_t_registerhelppolicy", "to": "ierc721errors_factory_ierc721errors_factory_connect", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_test_compasshub_policy_t_ts", "to": "compasshub_policy_t_deploy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_test_invariants_t_ts", "to": "invariants_t_deploystack", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_test_invariants_t_ts", "to": "invariants_t_setup", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_test_invariants_t_ts", "to": "invariants_t_buildsignedgrant", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "invariants_t_deploystack", "to": "invariants_t_setup", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "invariants_t_deploystack", "to": "safecast_factory_safecast_factory_deploy", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "invariants_t_setup", "to": "ierc721errors_factory_ierc721errors_factory_connect", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_scripts_deploy_deploy_ts", "to": "deploy_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "deploy_main", "to": "safecast_factory_safecast_factory_deploy", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_contracts_iagentregistry_factory_ts", "to": "iagentregistry_factory_iagentregistry_factory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "iagentregistry_factory_iagentregistry_factory", "to": "iagentregistry_factory_iagentregistry_factory_createinterface", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "iagentregistry_factory_iagentregistry_factory", "to": "iagentregistry_factory_iagentregistry_factory_connect", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_contracts_compasshub_factory_ts", "to": "compasshub_factory_issuperargs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_contracts_compasshub_factory_ts", "to": "compasshub_factory_compasshub_factory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "compasshub_factory_issuperargs", "to": "compasshub_factory_compasshub_factory_constructor", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "compasshub_factory_compasshub_factory", "to": "compasshub_factory_compasshub_factory_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "compasshub_factory_compasshub_factory", "to": "compasshub_factory_compasshub_factory_getdeploytransaction", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "compasshub_factory_compasshub_factory", "to": "compasshub_factory_compasshub_factory_deploy", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "compasshub_factory_compasshub_factory", "to": "compasshub_factory_compasshub_factory_connect", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "compasshub_factory_compasshub_factory", "to": "compasshub_factory_compasshub_factory_createinterface", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_contracts_agentregistry_factory_ts", "to": "agentregistry_factory_issuperargs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_contracts_agentregistry_factory_ts", "to": "agentregistry_factory_agentregistry_factory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agentregistry_factory_issuperargs", "to": "agentregistry_factory_agentregistry_factory_constructor", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agentregistry_factory_agentregistry_factory", "to": "agentregistry_factory_agentregistry_factory_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agentregistry_factory_agentregistry_factory", "to": "agentregistry_factory_agentregistry_factory_getdeploytransaction", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agentregistry_factory_agentregistry_factory", "to": "agentregistry_factory_agentregistry_factory_deploy", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agentregistry_factory_agentregistry_factory", "to": "agentregistry_factory_agentregistry_factory_connect", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agentregistry_factory_agentregistry_factory", "to": "agentregistry_factory_agentregistry_factory_createinterface", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_utils_strings_factory_ts", "to": "strings_factory_issuperargs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_utils_strings_factory_ts", "to": "strings_factory_strings_factory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "strings_factory_issuperargs", "to": "strings_factory_strings_factory_constructor", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "strings_factory_strings_factory", "to": "strings_factory_strings_factory_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "strings_factory_strings_factory", "to": "strings_factory_strings_factory_getdeploytransaction", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "strings_factory_strings_factory", "to": "strings_factory_strings_factory_deploy", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "strings_factory_strings_factory", "to": "strings_factory_strings_factory_connect", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "strings_factory_strings_factory", "to": "strings_factory_strings_factory_createinterface", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_utils_shortstrings_factory_ts", "to": "shortstrings_factory_issuperargs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_utils_shortstrings_factory_ts", "to": "shortstrings_factory_shortstrings_factory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shortstrings_factory_issuperargs", "to": "shortstrings_factory_shortstrings_factory_constructor", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shortstrings_factory_shortstrings_factory", "to": "shortstrings_factory_shortstrings_factory_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shortstrings_factory_shortstrings_factory", "to": "shortstrings_factory_shortstrings_factory_getdeploytransaction", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shortstrings_factory_shortstrings_factory", "to": "shortstrings_factory_shortstrings_factory_deploy", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shortstrings_factory_shortstrings_factory", "to": "shortstrings_factory_shortstrings_factory_connect", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shortstrings_factory_shortstrings_factory", "to": "shortstrings_factory_shortstrings_factory_createinterface", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_utils_cryptography_messagehashutils_factory_ts", "to": "messagehashutils_factory_issuperargs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_utils_cryptography_messagehashutils_factory_ts", "to": "messagehashutils_factory_messagehashutils_factory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "messagehashutils_factory_issuperargs", "to": "messagehashutils_factory_messagehashutils_factory_constructor", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "messagehashutils_factory_messagehashutils_factory", "to": "messagehashutils_factory_messagehashutils_factory_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "messagehashutils_factory_messagehashutils_factory", "to": "messagehashutils_factory_messagehashutils_factory_getdeploytransaction", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "messagehashutils_factory_messagehashutils_factory", "to": "messagehashutils_factory_messagehashutils_factory_deploy", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "messagehashutils_factory_messagehashutils_factory", "to": "messagehashutils_factory_messagehashutils_factory_connect", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "messagehashutils_factory_messagehashutils_factory", "to": "messagehashutils_factory_messagehashutils_factory_createinterface", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_utils_cryptography_ecdsa_factory_ts", "to": "ecdsa_factory_issuperargs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_utils_cryptography_ecdsa_factory_ts", "to": "ecdsa_factory_ecdsa_factory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ecdsa_factory_issuperargs", "to": "ecdsa_factory_ecdsa_factory_constructor", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ecdsa_factory_ecdsa_factory", "to": "ecdsa_factory_ecdsa_factory_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ecdsa_factory_ecdsa_factory", "to": "ecdsa_factory_ecdsa_factory_getdeploytransaction", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ecdsa_factory_ecdsa_factory", "to": "ecdsa_factory_ecdsa_factory_deploy", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ecdsa_factory_ecdsa_factory", "to": "ecdsa_factory_ecdsa_factory_connect", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ecdsa_factory_ecdsa_factory", "to": "ecdsa_factory_ecdsa_factory_createinterface", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_utils_cryptography_eip712_factory_ts", "to": "eip712_factory_eip712_factory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "eip712_factory_eip712_factory", "to": "eip712_factory_eip712_factory_createinterface", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "eip712_factory_eip712_factory", "to": "eip712_factory_eip712_factory_connect", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_utils_introspection_erc165_factory_ts", "to": "erc165_factory_erc165_factory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "erc165_factory_erc165_factory", "to": "erc165_factory_erc165_factory_createinterface", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "erc165_factory_erc165_factory", "to": "erc165_factory_erc165_factory_connect", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_utils_introspection_ierc165_factory_ts", "to": "ierc165_factory_ierc165_factory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ierc165_factory_ierc165_factory", "to": "ierc165_factory_ierc165_factory_createinterface", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ierc165_factory_ierc165_factory", "to": "ierc165_factory_ierc165_factory_connect", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_utils_math_safecast_factory_ts", "to": "safecast_factory_issuperargs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_utils_math_safecast_factory_ts", "to": "safecast_factory_safecast_factory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "safecast_factory_issuperargs", "to": "safecast_factory_safecast_factory_constructor", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "safecast_factory_safecast_factory", "to": "safecast_factory_safecast_factory_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "safecast_factory_safecast_factory", "to": "safecast_factory_safecast_factory_getdeploytransaction", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "safecast_factory_safecast_factory", "to": "safecast_factory_safecast_factory_deploy", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "safecast_factory_safecast_factory", "to": "safecast_factory_safecast_factory_connect", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "safecast_factory_safecast_factory", "to": "safecast_factory_safecast_factory_createinterface", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_interfaces_ierc5267_factory_ts", "to": "ierc5267_factory_ierc5267_factory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ierc5267_factory_ierc5267_factory", "to": "ierc5267_factory_ierc5267_factory_createinterface", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ierc5267_factory_ierc5267_factory", "to": "ierc5267_factory_ierc5267_factory_connect", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_interfaces_draft_ierc6093_sol_ierc20errors_factory_ts", "to": "ierc20errors_factory_ierc20errors_factory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ierc20errors_factory_ierc20errors_factory", "to": "ierc20errors_factory_ierc20errors_factory_createinterface", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ierc20errors_factory_ierc20errors_factory", "to": "ierc20errors_factory_ierc20errors_factory_connect", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_interfaces_draft_ierc6093_sol_ierc1155errors_factory_ts", "to": "ierc1155errors_factory_ierc1155errors_factory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ierc1155errors_factory_ierc1155errors_factory", "to": "ierc1155errors_factory_ierc1155errors_factory_createinterface", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ierc1155errors_factory_ierc1155errors_factory", "to": "ierc1155errors_factory_ierc1155errors_factory_connect", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_stephensookra_desktop_compass_compass_og_contracts_typechain_types_factories_openzeppelin_contracts_interfaces_draft_ierc6093_sol_ierc721errors_factory_ts", "to": "ierc721errors_factory_ierc721errors_factory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ierc721errors_factory_ierc721errors_factory", "to": "ierc721errors_factory_ierc721errors_factory_createinterface", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ierc721errors_factory_ierc721errors_factory", "to": "ierc721errors_factory_ierc721errors_factory_connect", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}];
const LEGEND = [{"cid": 0, "color": "#4E79A7", "label": "Community 0", "count": 35}, {"cid": 1, "color": "#F28E2B", "label": "Community 1", "count": 29}, {"cid": 2, "color": "#E15759", "label": "Community 2", "count": 25}, {"cid": 3, "color": "#76B7B2", "label": "Community 3", "count": 24}, {"cid": 4, "color": "#59A14F", "label": "Community 4", "count": 22}, {"cid": 5, "color": "#EDC948", "label": "Community 5", "count": 22}, {"cid": 6, "color": "#B07AA1", "label": "Community 6", "count": 19}, {"cid": 7, "color": "#FF9DA7", "label": "Community 7", "count": 17}, {"cid": 8, "color": "#9C755F", "label": "Community 8", "count": 15}, {"cid": 9, "color": "#BAB0AC", "label": "Community 9", "count": 11}, {"cid": 10, "color": "#4E79A7", "label": "Community 10", "count": 10}, {"cid": 11, "color": "#F28E2B", "label": "Community 11", "count": 10}, {"cid": 12, "color": "#E15759", "label": "Community 12", "count": 8}, {"cid": 13, "color": "#76B7B2", "label": "Community 13", "count": 8}, {"cid": 14, "color": "#59A14F", "label": "Community 14", "count": 8}, {"cid": 15, "color": "#EDC948", "label": "Community 15", "count": 8}, {"cid": 16, "color": "#B07AA1", "label": "Community 16", "count": 8}, {"cid": 17, "color": "#FF9DA7", "label": "Community 17", "count": 8}, {"cid": 18, "color": "#9C755F", "label": "Community 18", "count": 6}, {"cid": 19, "color": "#BAB0AC", "label": "Community 19", "count": 4}, {"cid": 20, "color": "#4E79A7", "label": "Community 20", "count": 4}, {"cid": 21, "color": "#F28E2B", "label": "Community 21", "count": 4}, {"cid": 22, "color": "#E15759", "label": "Community 22", "count": 4}, {"cid": 23, "color": "#76B7B2", "label": "Community 23", "count": 4}, {"cid": 24, "color": "#59A14F", "label": "Community 24", "count": 4}, {"cid": 25, "color": "#EDC948", "label": "Community 25", "count": 4}, {"cid": 26, "color": "#B07AA1", "label": "Community 26", "count": 4}, {"cid": 27, "color": "#FF9DA7", "label": "Community 27", "count": 4}, {"cid": 28, "color": "#9C755F", "label": "Community 28", "count": 4}, {"cid": 29, "color": "#BAB0AC", "label": "Community 29", "count": 3}, {"cid": 30, "color": "#4E79A7", "label": "Community 30", "count": 3}, {"cid": 31, "color": "#F28E2B", "label": "Community 31", "count": 3}, {"cid": 32, "color": "#E15759", "label": "Community 32", "count": 3}, {"cid": 33, "color": "#76B7B2", "label": "Community 33", "count": 3}, {"cid": 34, "color": "#59A14F", "label": "Community 34", "count": 3}, {"cid": 35, "color": "#EDC948", "label": "Community 35", "count": 3}, {"cid": 36, "color": "#B07AA1", "label": "Community 36", "count": 2}, {"cid": 37, "color": "#FF9DA7", "label": "Community 37", "count": 2}, {"cid": 38, "color": "#9C755F", "label": "Community 38", "count": 2}, {"cid": 39, "color": "#BAB0AC", "label": "Community 39", "count": 2}, {"cid": 40, "color": "#4E79A7", "label": "Community 40", "count": 2}, {"cid": 41, "color": "#F28E2B", "label": "Community 41", "count": 2}, {"cid": 42, "color": "#E15759", "label": "Community 42", "count": 2}, {"cid": 43, "color": "#76B7B2", "label": "Community 43", "count": 2}, {"cid": 44, "color": "#59A14F", "label": "Community 44", "count": 2}, {"cid": 45, "color": "#EDC948", "label": "Community 45", "count": 2}, {"cid": 46, "color": "#B07AA1", "label": "Community 46", "count": 2}, {"cid": 47, "color": "#FF9DA7", "label": "Community 47", "count": 2}, {"cid": 48, "color": "#9C755F", "label": "Community 48", "count": 2}, {"cid": 49, "color": "#BAB0AC", "label": "Community 49", "count": 2}, {"cid": 50, "color": "#4E79A7", "label": "Community 50", "count": 2}, {"cid": 51, "color": "#F28E2B", "label": "Community 51", "count": 2}, {"cid": 52, "color": "#E15759", "label": "Community 52", "count": 2}, {"cid": 53, "color": "#76B7B2", "label": "Community 53", "count": 2}, {"cid": 54, "color": "#59A14F", "label": "Community 54", "count": 2}, {"cid": 55, "color": "#EDC948", "label": "Community 55", "count": 2}, {"cid": 56, "color": "#B07AA1", "label": "Community 56", "count": 2}, {"cid": 57, "color": "#FF9DA7", "label": "Community 57", "count": 2}, {"cid": 58, "color": "#9C755F", "label": "Community 58", "count": 2}, {"cid": 59, "color": "#BAB0AC", "label": "Community 59", "count": 2}, {"cid": 60, "color": "#4E79A7", "label": "Community 60", "count": 2}, {"cid": 61, "color": "#F28E2B", "label": "Community 61", "count": 2}, {"cid": 62, "color": "#E15759", "label": "Community 62", "count": 2}, {"cid": 63, "color": "#76B7B2", "label": "Community 63", "count": 2}, {"cid": 64, "color": "#59A14F", "label": "Community 64", "count": 2}, {"cid": 65, "color": "#EDC948", "label": "Community 65", "count": 2}, {"cid": 66, "color": "#B07AA1", "label": "Community 66", "count": 2}, {"cid": 67, "color": "#FF9DA7", "label": "Community 67", "count": 2}, {"cid": 68, "color": "#9C755F", "label": "Community 68", "count": 2}, {"cid": 69, "color": "#BAB0AC", "label": "Community 69", "count": 2}, {"cid": 70, "color": "#4E79A7", "label": "Community 70", "count": 1}, {"cid": 71, "color": "#F28E2B", "label": "Community 71", "count": 1}, {"cid": 72, "color": "#E15759", "label": "Community 72", "count": 1}, {"cid": 73, "color": "#76B7B2", "label": "Community 73", "count": 1}, {"cid": 74, "color": "#59A14F", "label": "Community 74", "count": 1}, {"cid": 75, "color": "#EDC948", "label": "Community 75", "count": 1}, {"cid": 76, "color": "#B07AA1", "label": "Community 76", "count": 1}, {"cid": 77, "color": "#FF9DA7", "label": "Community 77", "count": 1}, {"cid": 78, "color": "#9C755F", "label": "Community 78", "count": 1}, {"cid": 79, "color": "#BAB0AC", "label": "Community 79", "count": 1}, {"cid": 80, "color": "#4E79A7", "label": "Community 80", "count": 1}, {"cid": 81, "color": "#F28E2B", "label": "Community 81", "count": 1}, {"cid": 82, "color": "#E15759", "label": "Community 82", "count": 1}, {"cid": 83, "color": "#76B7B2", "label": "Community 83", "count": 1}, {"cid": 84, "color": "#59A14F", "label": "Community 84", "count": 1}, {"cid": 85, "color": "#EDC948", "label": "Community 85", "count": 1}, {"cid": 86, "color": "#B07AA1", "label": "Community 86", "count": 1}, {"cid": 87, "color": "#FF9DA7", "label": "Community 87", "count": 1}, {"cid": 88, "color": "#9C755F", "label": "Community 88", "count": 1}, {"cid": 89, "color": "#BAB0AC", "label": "Community 89", "count": 1}, {"cid": 90, "color": "#4E79A7", "label": "Community 90", "count": 1}, {"cid": 91, "color": "#F28E2B", "label": "Community 91", "count": 1}, {"cid": 92, "color": "#E15759", "label": "Community 92", "count": 1}, {"cid": 93, "color": "#76B7B2", "label": "Community 93", "count": 1}, {"cid": 94, "color": "#59A14F", "label": "Community 94", "count": 1}, {"cid": 95, "color": "#EDC948", "label": "Community 95", "count": 1}, {"cid": 96, "color": "#B07AA1", "label": "Community 96", "count": 1}, {"cid": 97, "color": "#FF9DA7", "label": "Community 97", "count": 1}, {"cid": 98, "color": "#9C755F", "label": "Community 98", "count": 1}, {"cid": 99, "color": "#BAB0AC", "label": "Community 99", "count": 1}, {"cid": 100, "color": "#4E79A7", "label": "Community 100", "count": 1}, {"cid": 101, "color": "#F28E2B", "label": "Community 101", "count": 1}, {"cid": 102, "color": "#E15759", "label": "Community 102", "count": 1}, {"cid": 103, "color": "#76B7B2", "label": "Community 103", "count": 1}, {"cid": 104, "color": "#59A14F", "label": "Community 104", "count": 1}, {"cid": 105, "color": "#EDC948", "label": "Community 105", "count": 1}, {"cid": 106, "color": "#B07AA1", "label": "Community 106", "count": 1}, {"cid": 107, "color": "#FF9DA7", "label": "Community 107", "count": 1}, {"cid": 108, "color": "#9C755F", "label": "Community 108", "count": 1}, {"cid": 109, "color": "#BAB0AC", "label": "Community 109", "count": 1}, {"cid": 110, "color": "#4E79A7", "label": "Community 110", "count": 1}, {"cid": 111, "color": "#F28E2B", "label": "Community 111", "count": 1}, {"cid": 112, "color": "#E15759", "label": "Community 112", "count": 1}, {"cid": 113, "color": "#76B7B2", "label": "Community 113", "count": 1}, {"cid": 114, "color": "#59A14F", "label": "Community 114", "count": 1}, {"cid": 115, "color": "#EDC948", "label": "Community 115", "count": 1}, {"cid": 116, "color": "#B07AA1", "label": "Community 116", "count": 1}, {"cid": 117, "color": "#FF9DA7", "label": "Community 117", "count": 1}, {"cid": 118, "color": "#9C755F", "label": "Community 118", "count": 1}, {"cid": 119, "color": "#BAB0AC", "label": "Community 119", "count": 1}, {"cid": 120, "color": "#4E79A7", "label": "Community 120", "count": 1}, {"cid": 121, "color": "#F28E2B", "label": "Community 121", "count": 1}, {"cid": 122, "color": "#E15759", "label": "Community 122", "count": 1}, {"cid": 123, "color": "#76B7B2", "label": "Community 123", "count": 1}, {"cid": 124, "color": "#59A14F", "label": "Community 124", "count": 1}, {"cid": 125, "color": "#EDC948", "label": "Community 125", "count": 1}, {"cid": 126, "color": "#B07AA1", "label": "Community 126", "count": 1}, {"cid": 127, "color": "#FF9DA7", "label": "Community 127", "count": 1}, {"cid": 128, "color": "#9C755F", "label": "Community 128", "count": 1}, {"cid": 129, "color": "#BAB0AC", "label": "Community 129", "count": 1}, {"cid": 130, "color": "#4E79A7", "label": "Community 130", "count": 1}, {"cid": 131, "color": "#F28E2B", "label": "Community 131", "count": 1}];
// HTML-escape helper — prevents XSS when injecting graph data into innerHTML
function esc(s) {
return String(s).replace(/&/g,'&').replace(/</g,'<').replace(/>/g,'>').replace(/"/g,'"').replace(/'/g,''');
}
// Build vis datasets
const nodesDS = new vis.DataSet(RAW_NODES.map(n => ({
id: n.id, label: n.label, color: n.color, size: n.size,
font: n.font, title: n.title,
_community: n.community, _community_name: n.community_name,
_source_file: n.source_file, _file_type: n.file_type, _degree: n.degree,
})));
const edgesDS = new vis.DataSet(RAW_EDGES.map((e, i) => ({
id: i, from: e.from, to: e.to,
label: '',
title: e.title,
dashes: e.dashes,
width: e.width,
color: e.color,
arrows: { to: { enabled: true, scaleFactor: 0.5 } },
})));
const container = document.getElementById('graph');
const network = new vis.Network(container, { nodes: nodesDS, edges: edgesDS }, {
physics: {
enabled: true,
solver: 'forceAtlas2Based',
forceAtlas2Based: {
gravitationalConstant: -60,
centralGravity: 0.005,
springLength: 120,
springConstant: 0.08,
damping: 0.4,
avoidOverlap: 0.8,
},
stabilization: { iterations: 200, fit: true },
},
interaction: {
hover: true,
tooltipDelay: 100,
hideEdgesOnDrag: true,
navigationButtons: false,
keyboard: false,
},
nodes: { shape: 'dot', borderWidth: 1.5 },
edges: { smooth: { type: 'continuous', roundness: 0.2 }, selectionWidth: 3 },
});
network.once('stabilizationIterationsDone', () => {
network.setOptions({ physics: { enabled: false } });
});
function showInfo(nodeId) {
const n = nodesDS.get(nodeId);
if (!n) return;
const neighborIds = network.getConnectedNodes(nodeId);
const neighborItems = neighborIds.map(nid => {
const nb = nodesDS.get(nid);
const color = nb ? nb.color.background : '#555';
return `<span class="neighbor-link" style="border-left-color:${esc(color)}" onclick="focusNode(${JSON.stringify(nid)})">${esc(nb ? nb.label : nid)}</span>`;
}).join('');
document.getElementById('info-content').innerHTML = `
<div class="field"><b>${esc(n.label)}</b></div>
<div class="field">Type: ${esc(n._file_type || 'unknown')}</div>
<div class="field">Community: ${esc(n._community_name)}</div>
<div class="field">Source: ${esc(n._source_file || '-')}</div>
<div class="field">Degree: ${n._degree}</div>
${neighborIds.length ? `<div class="field" style="margin-top:8px;color:#aaa;font-size:11px">Neighbors (${neighborIds.length})</div><div id="neighbors-list">${neighborItems}</div>` : ''}
`;
}
function focusNode(nodeId) {
network.focus(nodeId, { scale: 1.4, animation: true });
network.selectNodes([nodeId]);
showInfo(nodeId);
}
// Track hovered node — hover detection is more reliable than click params
let hoveredNodeId = null;
network.on('hoverNode', params => {
hoveredNodeId = params.node;
container.style.cursor = 'pointer';
});
network.on('blurNode', () => {
hoveredNodeId = null;
container.style.cursor = 'default';
});
container.addEventListener('click', () => {
if (hoveredNodeId !== null) {
showInfo(hoveredNodeId);
network.selectNodes([hoveredNodeId]);
}
});
network.on('click', params => {
if (params.nodes.length > 0) {
showInfo(params.nodes[0]);
} else if (hoveredNodeId === null) {
document.getElementById('info-content').innerHTML = '<span class="empty">Click a node to inspect it</span>';
}
});
const searchInput = document.getElementById('search');
const searchResults = document.getElementById('search-results');
searchInput.addEventListener('input', () => {
const q = searchInput.value.toLowerCase().trim();
searchResults.innerHTML = '';
if (!q) { searchResults.style.display = 'none'; return; }
const matches = RAW_NODES.filter(n => n.label.toLowerCase().includes(q)).slice(0, 20);
if (!matches.length) { searchResults.style.display = 'none'; return; }
searchResults.style.display = 'block';
matches.forEach(n => {
const el = document.createElement('div');
el.className = 'search-item';
el.textContent = n.label;
el.style.borderLeft = `3px solid ${n.color.background}`;
el.style.paddingLeft = '8px';
el.onclick = () => {
network.focus(n.id, { scale: 1.5, animation: true });
network.selectNodes([n.id]);
showInfo(n.id);
searchResults.style.display = 'none';
searchInput.value = '';
};
searchResults.appendChild(el);
});
});
document.addEventListener('click', e => {
if (!searchResults.contains(e.target) && e.target !== searchInput)
searchResults.style.display = 'none';
});
const hiddenCommunities = new Set();
const legendEl = document.getElementById('legend');
LEGEND.forEach(c => {
const item = document.createElement('div');
item.className = 'legend-item';
item.innerHTML = `<div class="legend-dot" style="background:${c.color}"></div>
<span class="legend-label">${c.label}</span>
<span class="legend-count">${c.count}</span>`;
item.onclick = () => {
if (hiddenCommunities.has(c.cid)) {
hiddenCommunities.delete(c.cid);
item.classList.remove('dimmed');
} else {
hiddenCommunities.add(c.cid);
item.classList.add('dimmed');
}
const updates = RAW_NODES
.filter(n => n.community === c.cid)
.map(n => ({ id: n.id, hidden: hiddenCommunities.has(c.cid) }));
nodesDS.update(updates);
};
legendEl.appendChild(item);
});
</script>
<script>
// Render hyperedges as shaded regions
const hyperedges = [];
// afterDrawing passes ctx already transformed to network coordinate space.
// Draw node positions raw — no manual pan/zoom/DPR math needed.
network.on('afterDrawing', function(ctx) {
hyperedges.forEach(h => {
const positions = h.nodes
.map(nid => network.getPositions([nid])[nid])
.filter(p => p !== undefined);
if (positions.length < 2) return;
ctx.save();
ctx.globalAlpha = 0.12;
ctx.fillStyle = '#6366f1';
ctx.strokeStyle = '#6366f1';
ctx.lineWidth = 2;
ctx.beginPath();
// Centroid and expanded hull in network coordinates
const cx = positions.reduce((s, p) => s + p.x, 0) / positions.length;
const cy = positions.reduce((s, p) => s + p.y, 0) / positions.length;
const expanded = positions.map(p => ({
x: cx + (p.x - cx) * 1.15,
y: cy + (p.y - cy) * 1.15
}));
ctx.moveTo(expanded[0].x, expanded[0].y);
expanded.slice(1).forEach(p => ctx.lineTo(p.x, p.y));
ctx.closePath();
ctx.fill();
ctx.globalAlpha = 0.4;
ctx.stroke();
// Label
ctx.globalAlpha = 0.8;
ctx.fillStyle = '#4f46e5';
ctx.font = 'bold 11px sans-serif';
ctx.textAlign = 'center';
ctx.fillText(h.label, cx, cy - 5);
ctx.restore();
});
});
</script>
</body>
</html>