| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>graphify - 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; }
- #legend-controls { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; padding: 4px 0; }
- #legend-controls label { display: flex; align-items: center; gap: 6px; cursor: pointer; font-size: 12px; color: #aaa; user-select: none; }
- #legend-controls label:hover { color: #e0e0e0; }
- .legend-cb, #select-all-cb { appearance: none; -webkit-appearance: none; width: 14px; height: 14px; border: 1.5px solid #3a3a5e; border-radius: 3px; background: #0f0f1a; cursor: pointer; position: relative; flex-shrink: 0; }
- .legend-cb:checked, #select-all-cb:checked { background: #4E79A7; border-color: #4E79A7; }
- .legend-cb:checked::after, #select-all-cb:checked::after { content: ''; position: absolute; left: 3.5px; top: 1px; width: 4px; height: 7px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
- #select-all-cb:indeterminate { background: #4E79A7; border-color: #4E79A7; }
- #select-all-cb:indeterminate::after { content: ''; position: absolute; left: 2px; top: 5px; width: 8px; height: 2px; background: #fff; border: none; transform: none; }
- </style>
- </head>
- <body>
- <div id="graph"></div>
- <div id="sidebar">
- <div id="search-wrap">
- <input id="search" type="text" placeholder="Search nodes..." autocomplete="off">
- <div id="search-results"></div>
- </div>
- <div id="info-panel">
- <h3>Node Info</h3>
- <div id="info-content"><span class="empty">Click a node to inspect it</span></div>
- </div>
- <div id="legend-wrap">
- <h3>Communities</h3>
- <div id="legend-controls">
- <label><input type="checkbox" id="select-all-cb" checked onchange="toggleAllCommunities(!this.checked)">Select All</label>
- </div>
- <div id="legend"></div>
- </div>
- <div id="stats">854 nodes · 1442 edges · 57 communities</div>
- </div>
- <script>
- const RAW_NODES = [{"id": "tailwind_config_js", "label": "tailwind.config.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "tailwind.config.js", "community": 39, "community_name": "Community 39", "source_file": "tailwind.config.js", "file_type": "code", "degree": 0}, {"id": "app_py", "label": "app.py", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "app.py", "community": 5, "community_name": "Community 5", "source_file": "app.py", "file_type": "code", "degree": 2}, {"id": "pedidos_express_server_app_create_app", "label": "create_app()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "create_app()", "community": 5, "community_name": "Community 5", "source_file": "app.py", "file_type": "code", "degree": 4}, {"id": "pedidos_express_server_app_setup_routes", "label": "setup_routes()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "setup_routes()", "community": 5, "community_name": "Community 5", "source_file": "app.py", "file_type": "code", "degree": 3}, {"id": "pedidos_express_server_app_rationale_17", "label": "Create and configure FastAPI application", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Create and configure FastAPI application", "community": 5, "community_name": "Community 5", "source_file": "app.py", "file_type": "rationale", "degree": 1}, {"id": "pedidos_express_server_app_rationale_87", "label": "Setup all application routes", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Setup all application routes", "community": 5, "community_name": "Community 5", "source_file": "app.py", "file_type": "rationale", "degree": 1}, {"id": "load_products_py", "label": "load_products.py", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "load_products.py", "community": 40, "community_name": "Community 40", "source_file": "load_products.py", "file_type": "code", "degree": 0}, {"id": "main_py", "label": "main.py", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "main.py", "community": 5, "community_name": "Community 5", "source_file": "main.py", "file_type": "code", "degree": 1}, {"id": "pedidos_express_server_main_main", "label": "main()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 5, "community_name": "Community 5", "source_file": "main.py", "file_type": "code", "degree": 6}, {"id": "pedidos_express_server_main_rationale_14", "label": "testing Main application entry point", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "testing Main application entry point", "community": 5, "community_name": "Community 5", "source_file": "main.py", "file_type": "rationale", "degree": 1}, {"id": "update_prices_py", "label": "update_prices.py", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "update_prices.py", "community": 36, "community_name": "Community 36", "source_file": "update_prices.py", "file_type": "code", "degree": 2}, {"id": "pedidos_express_server_update_prices_update_prices", "label": "update_prices()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "update_prices()", "community": 36, "community_name": "Community 36", "source_file": "update_prices.py", "file_type": "code", "degree": 1}, {"id": "pedidos_express_server_update_prices_add_missing_products", "label": "add_missing_products()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "add_missing_products()", "community": 36, "community_name": "Community 36", "source_file": "update_prices.py", "file_type": "code", "degree": 2}, {"id": "pedidos_express_server_update_prices_rationale_39", "label": "Verifica qu\u00e9 productos de 'indexed_products' no existen en la DB local y los", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Verifica qu\u00e9 productos de 'indexed_products' no existen en la DB local y los", "community": 36, "community_name": "Community 36", "source_file": "update_prices.py", "file_type": "rationale", "degree": 1}, {"id": "enums_locations_py", "label": "locations.py", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "locations.py", "community": 34, "community_name": "Community 34", "source_file": "enums/locations.py", "file_type": "code", "degree": 3}, {"id": "enums_locations_locations", "label": "Locations", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Locations", "community": 34, "community_name": "Community 34", "source_file": "enums/locations.py", "file_type": "code", "degree": 3}, {"id": "enum", "label": "Enum", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Enum", "community": 34, "community_name": "Community 34", "source_file": "", "file_type": "code", "degree": 2}, {"id": "enums_locations_get_all", "label": "get_all()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "get_all()", "community": 34, "community_name": "Community 34", "source_file": "enums/locations.py", "file_type": "code", "degree": 1}, {"id": "enums_locations_rationale_4", "label": "Locations for the printer service", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Locations for the printer service", "community": 34, "community_name": "Community 34", "source_file": "enums/locations.py", "file_type": "rationale", "degree": 1}, {"id": "enums_locations_rationale_12", "label": "Return all locations as a list", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Return all locations as a list", "community": 41, "community_name": "Community 41", "source_file": "enums/locations.py", "file_type": "rationale", "degree": 0}, {"id": "services_recovery_service_py", "label": "recovery_service.py", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "recovery_service.py", "community": 1, "community_name": "Community 1", "source_file": "services/recovery_service.py", "file_type": "code", "degree": 5}, {"id": "services_recovery_service_redisrecoverydata", "label": "RedisRecoveryData", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "RedisRecoveryData", "community": 1, "community_name": "Community 1", "source_file": "services/recovery_service.py", "file_type": "code", "degree": 3}, {"id": "basemodel", "label": "BaseModel", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "BaseModel", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "code", "degree": 28}, {"id": "services_recovery_service_generate_recovery_key", "label": "generate_recovery_key()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "generate_recovery_key()", "community": 1, "community_name": "Community 1", "source_file": "services/recovery_service.py", "file_type": "code", "degree": 1}, {"id": "services_recovery_service_add_token", "label": "add_token()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "add_token()", "community": 1, "community_name": "Community 1", "source_file": "services/recovery_service.py", "file_type": "code", "degree": 1}, {"id": "services_recovery_service_get_token", "label": "get_token()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "get_token()", "community": 1, "community_name": "Community 1", "source_file": "services/recovery_service.py", "file_type": "code", "degree": 1}, {"id": "services_recovery_service_get_recovery_data", "label": "get_recovery_data()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "get_recovery_data()", "community": 1, "community_name": "Community 1", "source_file": "services/recovery_service.py", "file_type": "code", "degree": 2}, {"id": "services_fudo_service_py", "label": "fudo_service.py", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fudo_service.py", "community": 1, "community_name": "Community 1", "source_file": "services/fudo_service.py", "file_type": "code", "degree": 2}, {"id": "services_fudo_service_add_product_to_fudo", "label": "add_product_to_fudo()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "add_product_to_fudo()", "community": 1, "community_name": "Community 1", "source_file": "services/fudo_service.py", "file_type": "code", "degree": 3}, {"id": "services_fudo_service_get_products_by_table", "label": "get_products_by_table()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "get_products_by_table()", "community": 1, "community_name": "Community 1", "source_file": "services/fudo_service.py", "file_type": "code", "degree": 3}, {"id": "services_fudo_service_rationale_7", "label": "Add a product to Fudo system", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Add a product to Fudo system", "community": 1, "community_name": "Community 1", "source_file": "services/fudo_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_fudo_service_rationale_28", "label": "Get products for a specific table", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Get products for a specific table", "community": 1, "community_name": "Community 1", "source_file": "services/fudo_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_email_service_py", "label": "email_service.py", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "email_service.py", "community": 5, "community_name": "Community 5", "source_file": "services/email_service.py", "file_type": "code", "degree": 4}, {"id": "services_email_service_emailsender", "label": "EmailSender", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "EmailSender", "community": 5, "community_name": "Community 5", "source_file": "services/email_service.py", "file_type": "code", "degree": 16}, {"id": "services_email_service_emailsender_init", "label": ".__init__()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 5, "community_name": "Community 5", "source_file": "services/email_service.py", "file_type": "code", "degree": 2}, {"id": "services_email_service_emailsender_connect", "label": ".connect()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".connect()", "community": 5, "community_name": "Community 5", "source_file": "services/email_service.py", "file_type": "code", "degree": 3}, {"id": "services_email_service_emailsender_close", "label": ".close()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".close()", "community": 5, "community_name": "Community 5", "source_file": "services/email_service.py", "file_type": "code", "degree": 3}, {"id": "services_email_service_emailsender_create_fresh_connection", "label": "._create_fresh_connection()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._create_fresh_connection()", "community": 5, "community_name": "Community 5", "source_file": "services/email_service.py", "file_type": "code", "degree": 4}, {"id": "services_email_service_emailsender_start_queue_worker", "label": "._start_queue_worker()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._start_queue_worker()", "community": 5, "community_name": "Community 5", "source_file": "services/email_service.py", "file_type": "code", "degree": 3}, {"id": "services_email_service_emailsender_stop_queue_worker", "label": "._stop_queue_worker()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._stop_queue_worker()", "community": 5, "community_name": "Community 5", "source_file": "services/email_service.py", "file_type": "code", "degree": 3}, {"id": "services_email_service_emailsender_process_email_queue", "label": "._process_email_queue()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._process_email_queue()", "community": 5, "community_name": "Community 5", "source_file": "services/email_service.py", "file_type": "code", "degree": 3}, {"id": "services_email_service_emailsender_send_email_with_retry", "label": "._send_email_with_retry()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._send_email_with_retry()", "community": 5, "community_name": "Community 5", "source_file": "services/email_service.py", "file_type": "code", "degree": 4}, {"id": "services_email_service_emailsender_send_email_immediately", "label": "._send_email_immediately()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._send_email_immediately()", "community": 5, "community_name": "Community 5", "source_file": "services/email_service.py", "file_type": "code", "degree": 4}, {"id": "services_email_service_emailsender_send_email", "label": ".send_email()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".send_email()", "community": 5, "community_name": "Community 5", "source_file": "services/email_service.py", "file_type": "code", "degree": 2}, {"id": "services_email_service_emailsender_send_email_sync", "label": ".send_email_sync()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".send_email_sync()", "community": 5, "community_name": "Community 5", "source_file": "services/email_service.py", "file_type": "code", "degree": 3}, {"id": "services_email_service_emailsender_get_queue_size", "label": ".get_queue_size()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_queue_size()", "community": 5, "community_name": "Community 5", "source_file": "services/email_service.py", "file_type": "code", "degree": 2}, {"id": "services_email_service_emailsender_is_queue_processing", "label": ".is_queue_processing()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".is_queue_processing()", "community": 5, "community_name": "Community 5", "source_file": "services/email_service.py", "file_type": "code", "degree": 2}, {"id": "services_email_service_emailsender_clear_queue", "label": ".clear_queue()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".clear_queue()", "community": 5, "community_name": "Community 5", "source_file": "services/email_service.py", "file_type": "code", "degree": 2}, {"id": "services_email_service_initialize_email_sender", "label": "initialize_email_sender()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "initialize_email_sender()", "community": 5, "community_name": "Community 5", "source_file": "services/email_service.py", "file_type": "code", "degree": 6}, {"id": "services_email_service_get_email_sender", "label": "get_email_sender()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "get_email_sender()", "community": 0, "community_name": "Community 0", "source_file": "services/email_service.py", "file_type": "code", "degree": 7}, {"id": "services_email_service_rationale_1", "label": "Email Service with Asynchronous Queue Processing This service provides email se", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Email Service with Asynchronous Queue Processing This service provides email se", "community": 5, "community_name": "Community 5", "source_file": "services/email_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_email_service_rationale_66", "label": "Establish SMTP connection - kept for compatibility but not used for persistent c", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Establish SMTP connection - kept for compatibility but not used for persistent c", "community": 5, "community_name": "Community 5", "source_file": "services/email_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_email_service_rationale_91", "label": "Close SMTP connection and stop queue worker", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Close SMTP connection and stop queue worker", "community": 5, "community_name": "Community 5", "source_file": "services/email_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_email_service_rationale_108", "label": "Create a fresh SMTP connection for each email send", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Create a fresh SMTP connection for each email send", "community": 5, "community_name": "Community 5", "source_file": "services/email_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_email_service_rationale_120", "label": "Start the background thread to process email queue", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Start the background thread to process email queue", "community": 5, "community_name": "Community 5", "source_file": "services/email_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_email_service_rationale_129", "label": "Stop the background thread processing email queue", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Stop the background thread processing email queue", "community": 5, "community_name": "Community 5", "source_file": "services/email_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_email_service_rationale_148", "label": "Background worker that processes emails from the queue with 10-second delays", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Background worker that processes emails from the queue with 10-second delays", "community": 5, "community_name": "Community 5", "source_file": "services/email_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_email_service_rationale_187", "label": "Send email with retry logic using fresh connections", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Send email with retry logic using fresh connections", "community": 5, "community_name": "Community 5", "source_file": "services/email_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_email_service_rationale_202", "label": "Send email immediately using a fresh SMTP connection", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Send email immediately using a fresh SMTP connection", "community": 5, "community_name": "Community 5", "source_file": "services/email_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_email_service_rationale_238", "label": "Add email to queue for asynchronous sending with 10-second delays", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Add email to queue for asynchronous sending with 10-second delays", "community": 5, "community_name": "Community 5", "source_file": "services/email_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_email_service_rationale_254", "label": "Send email immediately (synchronous) using fresh connection", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Send email immediately (synchronous) using fresh connection", "community": 5, "community_name": "Community 5", "source_file": "services/email_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_email_service_rationale_287", "label": "Get the current number of emails in the queue", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Get the current number of emails in the queue", "community": 5, "community_name": "Community 5", "source_file": "services/email_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_email_service_rationale_291", "label": "Check if the queue worker is currently processing emails", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Check if the queue worker is currently processing emails", "community": 5, "community_name": "Community 5", "source_file": "services/email_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_email_service_rationale_295", "label": "Clear all pending emails from the queue", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Clear all pending emails from the queue", "community": 5, "community_name": "Community 5", "source_file": "services/email_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_email_service_rationale_311", "label": "Initialize the global email sender instance", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Initialize the global email sender instance", "community": 5, "community_name": "Community 5", "source_file": "services/email_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_email_service_rationale_323", "label": "Get the global email sender instance, initialize if needed", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Get the global email sender instance, initialize if needed", "community": 0, "community_name": "Community 0", "source_file": "services/email_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_print_service_py", "label": "print_service.py", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "print_service.py", "community": 0, "community_name": "Community 0", "source_file": "services/print_service.py", "file_type": "code", "degree": 5}, {"id": "services_print_service_get_printer_url", "label": "get_printer_url()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "get_printer_url()", "community": 0, "community_name": "Community 0", "source_file": "services/print_service.py", "file_type": "code", "degree": 5}, {"id": "services_print_service_print_order", "label": "print_order()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "print_order()", "community": 0, "community_name": "Community 0", "source_file": "services/print_service.py", "file_type": "code", "degree": 3}, {"id": "services_print_service_print_ticket", "label": "print_ticket()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "print_ticket()", "community": 0, "community_name": "Community 0", "source_file": "services/print_service.py", "file_type": "code", "degree": 5}, {"id": "services_print_service_print_billing", "label": "print_billing()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "print_billing()", "community": 0, "community_name": "Community 0", "source_file": "services/print_service.py", "file_type": "code", "degree": 3}, {"id": "services_print_service_get_status", "label": "get_status()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "get_status()", "community": 0, "community_name": "Community 0", "source_file": "services/print_service.py", "file_type": "code", "degree": 3}, {"id": "services_print_service_rationale_20", "label": "Send order to printer", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Send order to printer", "community": 0, "community_name": "Community 0", "source_file": "services/print_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_print_service_rationale_73", "label": "Send a ticket to the printer", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Send a ticket to the printer", "community": 0, "community_name": "Community 0", "source_file": "services/print_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_print_service_rationale_107", "label": "Send billing order to printer", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Send billing order to printer", "community": 0, "community_name": "Community 0", "source_file": "services/print_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_print_service_rationale_146", "label": "Get the status of the printer service", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Get the status of the printer service", "community": 0, "community_name": "Community 0", "source_file": "services/print_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_py", "label": "data_service.py", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "data_service.py", "community": 8, "community_name": "Community 8", "source_file": "services/data_service.py", "file_type": "code", "degree": 13}, {"id": "services_data_service_basedataservice", "label": "BaseDataService", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "BaseDataService", "community": 8, "community_name": "Community 8", "source_file": "services/data_service.py", "file_type": "code", "degree": 13}, {"id": "abc", "label": "ABC", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ABC", "community": 8, "community_name": "Community 8", "source_file": "", "file_type": "code", "degree": 2}, {"id": "services_data_service_basedataservice_init", "label": ".__init__()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 8, "community_name": "Community 8", "source_file": "services/data_service.py", "file_type": "code", "degree": 1}, {"id": "services_data_service_basedataservice_get_connection", "label": "._get_connection()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "._get_connection()", "community": 7, "community_name": "Community 7", "source_file": "services/data_service.py", "file_type": "code", "degree": 46}, {"id": "services_data_service_userdataservice", "label": "UserDataService", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "UserDataService", "community": 11, "community_name": "Community 11", "source_file": "services/data_service.py", "file_type": "code", "degree": 22}, {"id": "services_data_service_userdataservice_create", "label": ".create()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 11, "community_name": "Community 11", "source_file": "services/data_service.py", "file_type": "code", "degree": 3}, {"id": "services_data_service_userdataservice_get_all", "label": ".get_all()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_all()", "community": 11, "community_name": "Community 11", "source_file": "services/data_service.py", "file_type": "code", "degree": 4}, {"id": "services_data_service_userdataservice_get_by_id", "label": ".get_by_id()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_by_id()", "community": 11, "community_name": "Community 11", "source_file": "services/data_service.py", "file_type": "code", "degree": 4}, {"id": "services_data_service_userdataservice_get_by_email", "label": ".get_by_email()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_by_email()", "community": 11, "community_name": "Community 11", "source_file": "services/data_service.py", "file_type": "code", "degree": 4}, {"id": "services_data_service_userdataservice_login", "label": ".login()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".login()", "community": 11, "community_name": "Community 11", "source_file": "services/data_service.py", "file_type": "code", "degree": 3}, {"id": "services_data_service_userdataservice_permissions", "label": ".permissions()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".permissions()", "community": 11, "community_name": "Community 11", "source_file": "services/data_service.py", "file_type": "code", "degree": 2}, {"id": "services_data_service_userdataservice_get_by_rut", "label": ".get_by_rut()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_by_rut()", "community": 11, "community_name": "Community 11", "source_file": "services/data_service.py", "file_type": "code", "degree": 3}, {"id": "services_data_service_userdataservice_get_next_id", "label": ".get_next_id()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_next_id()", "community": 11, "community_name": "Community 11", "source_file": "services/data_service.py", "file_type": "code", "degree": 2}, {"id": "services_data_service_userdataservice_update", "label": ".update()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 11, "community_name": "Community 11", "source_file": "services/data_service.py", "file_type": "code", "degree": 3}, {"id": "services_data_service_userdataservice_set_reward_progress", "label": ".set_reward_progress()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".set_reward_progress()", "community": 11, "community_name": "Community 11", "source_file": "services/data_service.py", "file_type": "code", "degree": 3}, {"id": "services_data_service_userdataservice_delete", "label": ".delete()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".delete()", "community": 11, "community_name": "Community 11", "source_file": "services/data_service.py", "file_type": "code", "degree": 3}, {"id": "services_data_service_userdataservice_update_kleincoins", "label": ".update_kleincoins()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".update_kleincoins()", "community": 11, "community_name": "Community 11", "source_file": "services/data_service.py", "file_type": "code", "degree": 3}, {"id": "services_data_service_userdataservice_get_kleincoins", "label": ".get_kleincoins()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_kleincoins()", "community": 11, "community_name": "Community 11", "source_file": "services/data_service.py", "file_type": "code", "degree": 3}, {"id": "services_data_service_blacklistdataservice", "label": "BlacklistDataService", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BlacklistDataService", "community": 8, "community_name": "Community 8", "source_file": "services/data_service.py", "file_type": "code", "degree": 16}, {"id": "services_data_service_blacklistdataservice_create", "label": ".create()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 8, "community_name": "Community 8", "source_file": "services/data_service.py", "file_type": "code", "degree": 3}, {"id": "services_data_service_blacklistdataservice_get_all", "label": ".get_all()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_all()", "community": 8, "community_name": "Community 8", "source_file": "services/data_service.py", "file_type": "code", "degree": 4}, {"id": "services_data_service_blacklistdataservice_get_by_id", "label": ".get_by_id()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_by_id()", "community": 8, "community_name": "Community 8", "source_file": "services/data_service.py", "file_type": "code", "degree": 4}, {"id": "services_data_service_blacklistdataservice_get_blacklisted_user_ids", "label": ".get_blacklisted_user_ids()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_blacklisted_user_ids()", "community": 8, "community_name": "Community 8", "source_file": "services/data_service.py", "file_type": "code", "degree": 3}, {"id": "services_data_service_blacklistdataservice_is_user_blacklisted", "label": ".is_user_blacklisted()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".is_user_blacklisted()", "community": 8, "community_name": "Community 8", "source_file": "services/data_service.py", "file_type": "code", "degree": 3}, {"id": "services_data_service_blacklistdataservice_update", "label": ".update()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 8, "community_name": "Community 8", "source_file": "services/data_service.py", "file_type": "code", "degree": 2}, {"id": "services_data_service_blacklistdataservice_delete", "label": ".delete()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".delete()", "community": 8, "community_name": "Community 8", "source_file": "services/data_service.py", "file_type": "code", "degree": 3}, {"id": "services_data_service_blacklistdataservice_remove_user_from_blacklist", "label": ".remove_user_from_blacklist()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove_user_from_blacklist()", "community": 8, "community_name": "Community 8", "source_file": "services/data_service.py", "file_type": "code", "degree": 3}, {"id": "services_data_service_productdataservice", "label": "ProductDataService", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductDataService", "community": 14, "community_name": "Community 14", "source_file": "services/data_service.py", "file_type": "code", "degree": 25}, {"id": "services_data_service_productdataservice_create", "label": ".create()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 14, "community_name": "Community 14", "source_file": "services/data_service.py", "file_type": "code", "degree": 4}, {"id": "services_data_service_productdataservice_load_data", "label": ".load_data()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".load_data()", "community": 35, "community_name": "Community 35", "source_file": "services/data_service.py", "file_type": "code", "degree": 5}, {"id": "services_data_service_productdataservice_get_all", "label": ".get_all()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_all()", "community": 14, "community_name": "Community 14", "source_file": "services/data_service.py", "file_type": "code", "degree": 3}, {"id": "services_data_service_productdataservice_get_by_id", "label": ".get_by_id()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_by_id()", "community": 14, "community_name": "Community 14", "source_file": "services/data_service.py", "file_type": "code", "degree": 3}, {"id": "services_data_service_productdataservice_get_by_type", "label": ".get_by_type()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_by_type()", "community": 14, "community_name": "Community 14", "source_file": "services/data_service.py", "file_type": "code", "degree": 3}, {"id": "services_data_service_productdataservice_search_by_name", "label": ".search_by_name()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".search_by_name()", "community": 14, "community_name": "Community 14", "source_file": "services/data_service.py", "file_type": "code", "degree": 4}, {"id": "services_data_service_productdataservice_get_products", "label": ".get_products()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_products()", "community": 14, "community_name": "Community 14", "source_file": "services/data_service.py", "file_type": "code", "degree": 3}, {"id": "services_data_service_productdataservice_image_process", "label": "._image_process()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._image_process()", "community": 14, "community_name": "Community 14", "source_file": "services/data_service.py", "file_type": "code", "degree": 4}, {"id": "services_data_service_productdataservice_update", "label": ".update()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 14, "community_name": "Community 14", "source_file": "services/data_service.py", "file_type": "code", "degree": 5}, {"id": "services_data_service_productdataservice_get_active_products", "label": ".get_active_products()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_active_products()", "community": 14, "community_name": "Community 14", "source_file": "services/data_service.py", "file_type": "code", "degree": 4}, {"id": "services_data_service_productdataservice_get_inactive_products", "label": ".get_inactive_products()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_inactive_products()", "community": 14, "community_name": "Community 14", "source_file": "services/data_service.py", "file_type": "code", "degree": 4}, {"id": "services_data_service_productdataservice_activate_product", "label": ".activate_product()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".activate_product()", "community": 33, "community_name": "Community 33", "source_file": "services/data_service.py", "file_type": "code", "degree": 3}, {"id": "services_data_service_productdataservice_deactivate_product", "label": ".deactivate_product()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".deactivate_product()", "community": 33, "community_name": "Community 33", "source_file": "services/data_service.py", "file_type": "code", "degree": 3}, {"id": "services_data_service_productdataservice_is_product_active", "label": ".is_product_active()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".is_product_active()", "community": 14, "community_name": "Community 14", "source_file": "services/data_service.py", "file_type": "code", "degree": 3}, {"id": "services_data_service_productdataservice_update_cache", "label": ".update_cache()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".update_cache()", "community": 14, "community_name": "Community 14", "source_file": "services/data_service.py", "file_type": "code", "degree": 2}, {"id": "services_data_service_productdataservice_delete", "label": ".delete()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".delete()", "community": 7, "community_name": "Community 7", "source_file": "services/data_service.py", "file_type": "code", "degree": 4}, {"id": "services_data_service_salesdataservice", "label": "SalesDataService", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SalesDataService", "community": 7, "community_name": "Community 7", "source_file": "services/data_service.py", "file_type": "code", "degree": 24}, {"id": "services_data_service_salesdataservice_create", "label": ".create()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 35, "community_name": "Community 35", "source_file": "services/data_service.py", "file_type": "code", "degree": 4}, {"id": "services_data_service_salesdataservice_add_product_to_sale", "label": ".add_product_to_sale()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".add_product_to_sale()", "community": 7, "community_name": "Community 7", "source_file": "services/data_service.py", "file_type": "code", "degree": 3}, {"id": "services_data_service_salesdataservice_add_products_to_sale", "label": ".add_products_to_sale()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".add_products_to_sale()", "community": 7, "community_name": "Community 7", "source_file": "services/data_service.py", "file_type": "code", "degree": 3}, {"id": "services_data_service_salesdataservice_get_all", "label": ".get_all()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_all()", "community": 7, "community_name": "Community 7", "source_file": "services/data_service.py", "file_type": "code", "degree": 7}, {"id": "services_data_service_salesdataservice_get_by_id", "label": ".get_by_id()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_by_id()", "community": 7, "community_name": "Community 7", "source_file": "services/data_service.py", "file_type": "code", "degree": 6}, {"id": "services_data_service_salesdataservice_get_by_fudo_id", "label": ".get_by_fudo_id()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_by_fudo_id()", "community": 7, "community_name": "Community 7", "source_file": "services/data_service.py", "file_type": "code", "degree": 3}, {"id": "services_data_service_salesdataservice_get_by_user", "label": ".get_by_user()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_by_user()", "community": 7, "community_name": "Community 7", "source_file": "services/data_service.py", "file_type": "code", "degree": 4}, {"id": "services_data_service_salesdataservice_get_sale_products_ids", "label": ".get_sale_products_ids()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_sale_products_ids()", "community": 7, "community_name": "Community 7", "source_file": "services/data_service.py", "file_type": "code", "degree": 3}, {"id": "services_data_service_salesdataservice_get_sale_products", "label": ".get_sale_products()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_sale_products()", "community": 7, "community_name": "Community 7", "source_file": "services/data_service.py", "file_type": "code", "degree": 6}, {"id": "services_data_service_salesdataservice_get_by_table", "label": ".get_by_table()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_by_table()", "community": 7, "community_name": "Community 7", "source_file": "services/data_service.py", "file_type": "code", "degree": 4}, {"id": "services_data_service_salesdataservice_update_product_quantity", "label": ".update_product_quantity()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".update_product_quantity()", "community": 7, "community_name": "Community 7", "source_file": "services/data_service.py", "file_type": "code", "degree": 3}, {"id": "services_data_service_salesdataservice_get_product_quantity_in_sale", "label": ".get_product_quantity_in_sale()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_product_quantity_in_sale()", "community": 7, "community_name": "Community 7", "source_file": "services/data_service.py", "file_type": "code", "degree": 3}, {"id": "services_data_service_salesdataservice_update", "label": ".update()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 33, "community_name": "Community 33", "source_file": "services/data_service.py", "file_type": "code", "degree": 5}, {"id": "services_data_service_salesdataservice_delete", "label": ".delete()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".delete()", "community": 7, "community_name": "Community 7", "source_file": "services/data_service.py", "file_type": "code", "degree": 3}, {"id": "services_data_service_salesdataservice_remove_product_from_sale", "label": ".remove_product_from_sale()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove_product_from_sale()", "community": 7, "community_name": "Community 7", "source_file": "services/data_service.py", "file_type": "code", "degree": 3}, {"id": "services_data_service_salesdataservice_decrease_product_quantity", "label": ".decrease_product_quantity()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".decrease_product_quantity()", "community": 7, "community_name": "Community 7", "source_file": "services/data_service.py", "file_type": "code", "degree": 3}, {"id": "services_data_service_dataservicefactory", "label": "DataServiceFactory", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "DataServiceFactory", "community": 8, "community_name": "Community 8", "source_file": "services/data_service.py", "file_type": "code", "degree": 7}, {"id": "services_data_service_get_user_service", "label": "get_user_service()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "get_user_service()", "community": 8, "community_name": "Community 8", "source_file": "services/data_service.py", "file_type": "code", "degree": 2}, {"id": "services_data_service_get_blacklist_service", "label": "get_blacklist_service()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "get_blacklist_service()", "community": 8, "community_name": "Community 8", "source_file": "services/data_service.py", "file_type": "code", "degree": 2}, {"id": "services_data_service_get_product_service", "label": "get_product_service()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "get_product_service()", "community": 8, "community_name": "Community 8", "source_file": "services/data_service.py", "file_type": "code", "degree": 2}, {"id": "services_data_service_get_sales_service", "label": "get_sales_service()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "get_sales_service()", "community": 8, "community_name": "Community 8", "source_file": "services/data_service.py", "file_type": "code", "degree": 2}, {"id": "services_data_service_load_bg_data", "label": "load_bg_data()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "load_bg_data()", "community": 8, "community_name": "Community 8", "source_file": "services/data_service.py", "file_type": "code", "degree": 2}, {"id": "services_data_service_initialize_db", "label": "initialize_db()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "initialize_db()", "community": 35, "community_name": "Community 35", "source_file": "services/data_service.py", "file_type": "code", "degree": 4}, {"id": "services_data_service_rationale_88", "label": "Abstract base class for data services", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Abstract base class for data services", "community": 8, "community_name": "Community 8", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_94", "label": "Get database connection", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Get database connection", "community": 7, "community_name": "Community 7", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_107", "label": "Service for managing user data", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Service for managing user data", "community": 11, "community_name": "Community 11", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_110", "label": "Add a new user to the database", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Add a new user to the database", "community": 11, "community_name": "Community 11", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_135", "label": "Get all users from the database", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Get all users from the database", "community": 11, "community_name": "Community 11", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_156", "label": "Get user data from the database", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Get user data from the database", "community": 11, "community_name": "Community 11", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_199", "label": "Login user by email and pin hash", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Login user by email and pin hash", "community": 11, "community_name": "Community 11", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_265", "label": "Update user information in the database", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Update user information in the database", "community": 11, "community_name": "Community 11", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_303", "label": "Add progress to user's reward", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Add progress to user's reward", "community": 11, "community_name": "Community 11", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_322", "label": "Delete a user from the database", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete a user from the database", "community": 11, "community_name": "Community 11", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_336", "label": "Update user's kleincoins", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Update user's kleincoins", "community": 11, "community_name": "Community 11", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_356", "label": "Get user's kleincoins", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Get user's kleincoins", "community": 11, "community_name": "Community 11", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_373", "label": "Service for managing blacklisted users", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Service for managing blacklisted users", "community": 8, "community_name": "Community 8", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_376", "label": "Add a user to the blacklist", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Add a user to the blacklist", "community": 8, "community_name": "Community 8", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_397", "label": "Get all blacklisted users", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Get all blacklisted users", "community": 8, "community_name": "Community 8", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_418", "label": "Get blacklist entry by ID", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Get blacklist entry by ID", "community": 8, "community_name": "Community 8", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_440", "label": "Get a list of blacklisted user IDs", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Get a list of blacklisted user IDs", "community": 8, "community_name": "Community 8", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_449", "label": "Check if a user is blacklisted", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Check if a user is blacklisted", "community": 8, "community_name": "Community 8", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_459", "label": "Update blacklist entry (not commonly used)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Update blacklist entry (not commonly used)", "community": 8, "community_name": "Community 8", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_465", "label": "Remove a blacklist entry by ID", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Remove a blacklist entry by ID", "community": 8, "community_name": "Community 8", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_479", "label": "Remove a user from the blacklist", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Remove a user from the blacklist", "community": 8, "community_name": "Community 8", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_503", "label": "Add a new product to the database", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Add a new product to the database", "community": 14, "community_name": "Community 14", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_531", "label": "Load multiple products from a list of dictionaries", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Load multiple products from a list of dictionaries", "community": 35, "community_name": "Community 35", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_551", "label": "Get all products from the database", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Get all products from the database", "community": 14, "community_name": "Community 14", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_637", "label": "Search products by name", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Search products by name", "community": 14, "community_name": "Community 14", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_659", "label": "Get multiple products by their IDs", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Get multiple products by their IDs", "community": 14, "community_name": "Community 14", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_666", "label": "Process image for storage", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Process image for storage", "community": 14, "community_name": "Community 14", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_677", "label": "Update product information", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Update product information", "community": 14, "community_name": "Community 14", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_735", "label": "Get only active products (status = 1)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Get only active products (status = 1)", "community": 14, "community_name": "Community 14", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_757", "label": "Get only inactive products (status = 0)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Get only inactive products (status = 0)", "community": 14, "community_name": "Community 14", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_779", "label": "Activate a product (set status to 1)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Activate a product (set status to 1)", "community": 33, "community_name": "Community 33", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_783", "label": "Deactivate a product (set status to 0)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Deactivate a product (set status to 0)", "community": 33, "community_name": "Community 33", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_787", "label": "Check if a product is active", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Check if a product is active", "community": 14, "community_name": "Community 14", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_798", "label": "Delete a product from the database", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete a product from the database", "community": 7, "community_name": "Community 7", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_817", "label": "Service for managing sales", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Service for managing sales", "community": 7, "community_name": "Community 7", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_820", "label": "Create a new sale with products and quantities", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Create a new sale with products and quantities", "community": 35, "community_name": "Community 35", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_862", "label": "Add a product to an existing sale with quantity", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Add a product to an existing sale with quantity", "community": 7, "community_name": "Community 7", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_882", "label": "Add multiple products to an existing sale with quantities", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Add multiple products to an existing sale with quantities", "community": 7, "community_name": "Community 7", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_909", "label": "Get all sales from the database", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Get all sales from the database", "community": 7, "community_name": "Community 7", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_1017", "label": "Get product IDs for a specific sale", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Get product IDs for a specific sale", "community": 7, "community_name": "Community 7", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_1028", "label": "Get products for a specific sale with quantities", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Get products for a specific sale with quantities", "community": 7, "community_name": "Community 7", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_1056", "label": "Get sales by table number", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Get sales by table number", "community": 7, "community_name": "Community 7", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_1085", "label": "Update quantity of a product in a sale", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Update quantity of a product in a sale", "community": 7, "community_name": "Community 7", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_1105", "label": "Get quantity of a specific product in a sale", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Get quantity of a specific product in a sale", "community": 7, "community_name": "Community 7", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_1118", "label": "Update sale information (products should be updated via specific methods)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Update sale information (products should be updated via specific methods)", "community": 33, "community_name": "Community 33", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_1150", "label": "Delete a sale and its product relationships", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete a sale and its product relationships", "community": 7, "community_name": "Community 7", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_1172", "label": "Remove a product from a sale (removes all quantity)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Remove a product from a sale (removes all quantity)", "community": 7, "community_name": "Community 7", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_1189", "label": "Decrease quantity of a product in a sale, removes if quantity becomes 0 or less", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Decrease quantity of a product in a sale, removes if quantity becomes 0 or less", "community": 7, "community_name": "Community 7", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_1232", "label": "Factory class to create data service instances", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Factory class to create data service instances", "community": 8, "community_name": "Community 8", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_data_service_rationale_1236", "label": "Get user data service instance", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Get user data service instance", "community": 42, "community_name": "Community 42", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 0}, {"id": "services_data_service_rationale_1241", "label": "Get blacklist data service instance", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Get blacklist data service instance", "community": 43, "community_name": "Community 43", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 0}, {"id": "services_data_service_rationale_1246", "label": "Get product data service instance", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Get product data service instance", "community": 44, "community_name": "Community 44", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 0}, {"id": "services_data_service_rationale_1251", "label": "Get sales data service instance", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Get sales data service instance", "community": 45, "community_name": "Community 45", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 0}, {"id": "services_data_service_rationale_1257", "label": "Load background data for AI assistant", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Load background data for AI assistant", "community": 8, "community_name": "Community 8", "source_file": "services/data_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_init_py", "label": "__init__.py", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "__init__.py", "community": 46, "community_name": "Community 46", "source_file": "services/__init__.py", "file_type": "code", "degree": 0}, {"id": "services_openai_service_openai_service_py", "label": "openai_service.py", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "openai_service.py", "community": 6, "community_name": "Community 6", "source_file": "services/openai_service/openai_service.py", "file_type": "code", "degree": 3}, {"id": "openai_service_openai_service_get_relevant_context", "label": "get_relevant_context()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "get_relevant_context()", "community": 6, "community_name": "Community 6", "source_file": "services/openai_service/openai_service.py", "file_type": "code", "degree": 2}, {"id": "openai_service_openai_service_generate_completion", "label": "generate_completion()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "generate_completion()", "community": 6, "community_name": "Community 6", "source_file": "services/openai_service/openai_service.py", "file_type": "code", "degree": 3}, {"id": "openai_service_openai_service_admin_completion", "label": "admin_completion()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "admin_completion()", "community": 6, "community_name": "Community 6", "source_file": "services/openai_service/openai_service.py", "file_type": "code", "degree": 3}, {"id": "openai_service_openai_service_rationale_123", "label": "Generate OpenAI admin completion", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Generate OpenAI admin completion", "community": 6, "community_name": "Community 6", "source_file": "services/openai_service/openai_service.py", "file_type": "rationale", "degree": 1}, {"id": "services_openai_service_openai_tools_py", "label": "openai_tools.py", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "openai_tools.py", "community": 38, "community_name": "Community 38", "source_file": "services/openai_service/openai_tools.py", "file_type": "code", "degree": 1}, {"id": "openai_service_openai_tools_feedback", "label": "feedback()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "feedback()", "community": 38, "community_name": "Community 38", "source_file": "services/openai_service/openai_tools.py", "file_type": "code", "degree": 2}, {"id": "openai_service_openai_tools_rationale_24", "label": "Send feedback about the app. Args: message (str): The feedback", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Send feedback about the app. Args: message (str): The feedback", "community": 38, "community_name": "Community 38", "source_file": "services/openai_service/openai_tools.py", "file_type": "rationale", "degree": 1}, {"id": "services_openai_service_init_py", "label": "__init__.py", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "__init__.py", "community": 47, "community_name": "Community 47", "source_file": "services/openai_service/__init__.py", "file_type": "code", "degree": 0}, {"id": "routes_products_py", "label": "products.py", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "products.py", "community": 0, "community_name": "Community 0", "source_file": "routes/products.py", "file_type": "code", "degree": 10}, {"id": "routes_products_apply_promo_price", "label": "apply_promo_price()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "apply_promo_price()", "community": 0, "community_name": "Community 0", "source_file": "routes/products.py", "file_type": "code", "degree": 2}, {"id": "routes_products_get_products", "label": "get_products()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "get_products()", "community": 0, "community_name": "Community 0", "source_file": "routes/products.py", "file_type": "code", "degree": 3}, {"id": "routes_products_get_product", "label": "get_product()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "get_product()", "community": 0, "community_name": "Community 0", "source_file": "routes/products.py", "file_type": "code", "degree": 4}, {"id": "routes_products_get_free_beer", "label": "get_free_beer()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "get_free_beer()", "community": 0, "community_name": "Community 0", "source_file": "routes/products.py", "file_type": "code", "degree": 5}, {"id": "routes_products_create_product", "label": "create_product()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "create_product()", "community": 0, "community_name": "Community 0", "source_file": "routes/products.py", "file_type": "code", "degree": 4}, {"id": "routes_products_switch_product_status", "label": "switch_product_status()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "switch_product_status()", "community": 0, "community_name": "Community 0", "source_file": "routes/products.py", "file_type": "code", "degree": 4}, {"id": "routes_products_delete_product", "label": "delete_product()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "delete_product()", "community": 0, "community_name": "Community 0", "source_file": "routes/products.py", "file_type": "code", "degree": 4}, {"id": "routes_products_edit_product", "label": "edit_product()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "edit_product()", "community": 0, "community_name": "Community 0", "source_file": "routes/products.py", "file_type": "code", "degree": 4}, {"id": "routes_products_get_table_items", "label": "get_table_items()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "get_table_items()", "community": 0, "community_name": "Community 0", "source_file": "routes/products.py", "file_type": "code", "degree": 5}, {"id": "routes_products_rationale_3", "label": "Product Routes Module This module defines all API endpoints for product managem", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Product Routes Module This module defines all API endpoints for product managem", "community": 0, "community_name": "Community 0", "source_file": "routes/products.py", "file_type": "rationale", "degree": 1}, {"id": "routes_products_rationale_47", "label": "Apply promotional price to a product if applicable.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Apply promotional price to a product if applicable.", "community": 0, "community_name": "Community 0", "source_file": "routes/products.py", "file_type": "rationale", "degree": 1}, {"id": "routes_products_rationale_62", "label": "Get all products - Available to all authenticated users Returns: JS", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Get all products - Available to all authenticated users Returns: JS", "community": 0, "community_name": "Community 0", "source_file": "routes/products.py", "file_type": "rationale", "degree": 1}, {"id": "routes_products_rationale_83", "label": "Get a specific product by ID - Available to all authenticated users Args:", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Get a specific product by ID - Available to all authenticated users Args:", "community": 0, "community_name": "Community 0", "source_file": "routes/products.py", "file_type": "rationale", "degree": 1}, {"id": "routes_products_rationale_107", "label": "Get the free beer product - Available to all authenticated users Returns:", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Get the free beer product - Available to all authenticated users Returns:", "community": 0, "community_name": "Community 0", "source_file": "routes/products.py", "file_type": "rationale", "degree": 1}, {"id": "routes_products_rationale_129", "label": "Create a new product - Requires manager permissions (level >= 1) Args:", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Create a new product - Requires manager permissions (level >= 1) Args:", "community": 0, "community_name": "Community 0", "source_file": "routes/products.py", "file_type": "rationale", "degree": 1}, {"id": "routes_products_rationale_153", "label": "Toggle product status between active/inactive - Requires manager permissions (le", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Toggle product status between active/inactive - Requires manager permissions (le", "community": 0, "community_name": "Community 0", "source_file": "routes/products.py", "file_type": "rationale", "degree": 1}, {"id": "routes_products_rationale_184", "label": "Delete a product permanently - Requires admin permissions (level == 2)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete a product permanently - Requires admin permissions (level == 2)", "community": 0, "community_name": "Community 0", "source_file": "routes/products.py", "file_type": "rationale", "degree": 1}, {"id": "routes_products_rationale_211", "label": "Edit an existing product - Requires manager permissions (level >= 1) Ar", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Edit an existing product - Requires manager permissions (level >= 1) Ar", "community": 0, "community_name": "Community 0", "source_file": "routes/products.py", "file_type": "rationale", "degree": 1}, {"id": "routes_products_rationale_243", "label": "Get items for a specific table", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Get items for a specific table", "community": 0, "community_name": "Community 0", "source_file": "routes/products.py", "file_type": "rationale", "degree": 1}, {"id": "routes_sales_py", "label": "sales.py", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "sales.py", "community": 0, "community_name": "Community 0", "source_file": "routes/sales.py", "file_type": "code", "degree": 1}, {"id": "routes_sales_get_user_sales", "label": "get_user_sales()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "get_user_sales()", "community": 0, "community_name": "Community 0", "source_file": "routes/sales.py", "file_type": "code", "degree": 3}, {"id": "routes_debug_py", "label": "debug.py", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "debug.py", "community": 37, "community_name": "Community 37", "source_file": "routes/debug.py", "file_type": "code", "degree": 2}, {"id": "routes_debug_validate_ws_token", "label": "validate_ws_token()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "validate_ws_token()", "community": 37, "community_name": "Community 37", "source_file": "routes/debug.py", "file_type": "code", "degree": 3}, {"id": "routes_debug_websocket_endpoint", "label": "websocket_endpoint()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "websocket_endpoint()", "community": 37, "community_name": "Community 37", "source_file": "routes/debug.py", "file_type": "code", "degree": 2}, {"id": "routes_debug_rationale_16", "label": "Valida el token manualmente para WebSocket ya que no usan HTTPBearer standard", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Valida el token manualmente para WebSocket ya que no usan HTTPBearer standard", "community": 37, "community_name": "Community 37", "source_file": "routes/debug.py", "file_type": "rationale", "degree": 1}, {"id": "routes_static_py", "label": "static.py", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "static.py", "community": 20, "community_name": "Community 20", "source_file": "routes/static.py", "file_type": "code", "degree": 6}, {"id": "routes_static_nocachestaticfiles", "label": "NoCacheStaticFiles", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "NoCacheStaticFiles", "community": 20, "community_name": "Community 20", "source_file": "routes/static.py", "file_type": "code", "degree": 6}, {"id": "staticfiles", "label": "StaticFiles", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "StaticFiles", "community": 20, "community_name": "Community 20", "source_file": "", "file_type": "code", "degree": 1}, {"id": "routes_static_nocachestaticfiles_get_response", "label": ".get_response()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_response()", "community": 20, "community_name": "Community 20", "source_file": "routes/static.py", "file_type": "code", "degree": 2}, {"id": "routes_static_serve_app_html", "label": "serve_app_html()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "serve_app_html()", "community": 20, "community_name": "Community 20", "source_file": "routes/static.py", "file_type": "code", "degree": 2}, {"id": "routes_static_serve_register_html", "label": "serve_register_html()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "serve_register_html()", "community": 20, "community_name": "Community 20", "source_file": "routes/static.py", "file_type": "code", "degree": 2}, {"id": "routes_static_mount_register_static_files", "label": "mount_register_static_files()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "mount_register_static_files()", "community": 20, "community_name": "Community 20", "source_file": "routes/static.py", "file_type": "code", "degree": 3}, {"id": "routes_static_mount_main_static_files", "label": "mount_main_static_files()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "mount_main_static_files()", "community": 20, "community_name": "Community 20", "source_file": "routes/static.py", "file_type": "code", "degree": 2}, {"id": "routes_static_serve_image", "label": "serve_image()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "serve_image()", "community": 20, "community_name": "Community 20", "source_file": "routes/static.py", "file_type": "code", "degree": 2}, {"id": "routes_static_rationale_10", "label": "StaticFiles que agrega headers para evitar cache", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "StaticFiles que agrega headers para evitar cache", "community": 20, "community_name": "Community 20", "source_file": "routes/static.py", "file_type": "rationale", "degree": 1}, {"id": "routes_static_rationale_13", "label": "Override para agregar headers de no-cache", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Override para agregar headers de no-cache", "community": 20, "community_name": "Community 20", "source_file": "routes/static.py", "file_type": "rationale", "degree": 1}, {"id": "routes_static_rationale_25", "label": "Serve the main HTML file", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Serve the main HTML file", "community": 20, "community_name": "Community 20", "source_file": "routes/static.py", "file_type": "rationale", "degree": 1}, {"id": "routes_static_rationale_39", "label": "Serve the register HTML file", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Serve the register HTML file", "community": 20, "community_name": "Community 20", "source_file": "routes/static.py", "file_type": "rationale", "degree": 1}, {"id": "routes_static_rationale_53", "label": "Mount static files for the register page", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Mount static files for the register page", "community": 20, "community_name": "Community 20", "source_file": "routes/static.py", "file_type": "rationale", "degree": 1}, {"id": "routes_static_rationale_61", "label": "Serve images from the public/images directory", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Serve images from the public/images directory", "community": 20, "community_name": "Community 20", "source_file": "routes/static.py", "file_type": "rationale", "degree": 1}, {"id": "routes_orders_py", "label": "orders.py", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "orders.py", "community": 1, "community_name": "Community 1", "source_file": "routes/orders.py", "file_type": "code", "degree": 3}, {"id": "routes_orders_comparepricesresponse", "label": "ComparePricesResponse", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ComparePricesResponse", "community": 1, "community_name": "Community 1", "source_file": "routes/orders.py", "file_type": "code", "degree": 12}, {"id": "routes_orders_compare_prices", "label": "compare_prices()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "compare_prices()", "community": 1, "community_name": "Community 1", "source_file": "routes/orders.py", "file_type": "code", "degree": 4}, {"id": "routes_orders_printer_order", "label": "printer_order()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "printer_order()", "community": 1, "community_name": "Community 1", "source_file": "routes/orders.py", "file_type": "code", "degree": 9}, {"id": "routes_orders_rationale_45", "label": "Compare prices of products and items and return the cheapest product", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Compare prices of products and items and return the cheapest product", "community": 1, "community_name": "Community 1", "source_file": "routes/orders.py", "file_type": "rationale", "degree": 1}, {"id": "routes_orders_rationale_74", "label": "Process printer order", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Process printer order", "community": 1, "community_name": "Community 1", "source_file": "routes/orders.py", "file_type": "rationale", "degree": 1}, {"id": "routes_chat_py", "label": "chat.py", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "chat.py", "community": 6, "community_name": "Community 6", "source_file": "routes/chat.py", "file_type": "code", "degree": 4}, {"id": "routes_chat_chat_irc_endpoint", "label": "chat_irc_endpoint()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "chat_irc_endpoint()", "community": 6, "community_name": "Community 6", "source_file": "routes/chat.py", "file_type": "code", "degree": 4}, {"id": "routes_chat_notify_users", "label": "notify_users()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "notify_users()", "community": 6, "community_name": "Community 6", "source_file": "routes/chat.py", "file_type": "code", "degree": 3}, {"id": "routes_chat_get_connected_users", "label": "get__connected_users()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "get__connected_users()", "community": 6, "community_name": "Community 6", "source_file": "routes/chat.py", "file_type": "code", "degree": 3}, {"id": "routes_chat_get_online_user_count", "label": "get_online_user_count()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "get_online_user_count()", "community": 6, "community_name": "Community 6", "source_file": "routes/chat.py", "file_type": "code", "degree": 3}, {"id": "routes_chat_rationale_24", "label": "WebSocket endpoint for real-time chat interactions", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "WebSocket endpoint for real-time chat interactions", "community": 6, "community_name": "Community 6", "source_file": "routes/chat.py", "file_type": "rationale", "degree": 1}, {"id": "routes_chat_rationale_164", "label": "Get a list of connected users (solo local al worker)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Get a list of connected users (solo local al worker)", "community": 6, "community_name": "Community 6", "source_file": "routes/chat.py", "file_type": "rationale", "degree": 1}, {"id": "routes_chat_rationale_175", "label": "Get the count of online users (solo local al worker)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Get the count of online users (solo local al worker)", "community": 6, "community_name": "Community 6", "source_file": "routes/chat.py", "file_type": "rationale", "degree": 1}, {"id": "routes_users_py", "label": "users.py", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "users.py", "community": 0, "community_name": "Community 0", "source_file": "routes/users.py", "file_type": "code", "degree": 16}, {"id": "routes_users_exists_user", "label": "exists_user()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "exists_user()", "community": 0, "community_name": "Community 0", "source_file": "routes/users.py", "file_type": "code", "degree": 3}, {"id": "routes_users_register_user", "label": "register_user()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "register_user()", "community": 0, "community_name": "Community 0", "source_file": "routes/users.py", "file_type": "code", "degree": 5}, {"id": "routes_users_create_user", "label": "create_user()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "create_user()", "community": 0, "community_name": "Community 0", "source_file": "routes/users.py", "file_type": "code", "degree": 5}, {"id": "routes_users_force_register_user", "label": "force_register_user()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "force_register_user()", "community": 0, "community_name": "Community 0", "source_file": "routes/users.py", "file_type": "code", "degree": 5}, {"id": "routes_users_login_user", "label": "login_user()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "login_user()", "community": 0, "community_name": "Community 0", "source_file": "routes/users.py", "file_type": "code", "degree": 5}, {"id": "routes_users_guest_login", "label": "guest_login()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "guest_login()", "community": 0, "community_name": "Community 0", "source_file": "routes/users.py", "file_type": "code", "degree": 3}, {"id": "routes_users_delete_user", "label": "delete_user()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "delete_user()", "community": 0, "community_name": "Community 0", "source_file": "routes/users.py", "file_type": "code", "degree": 3}, {"id": "routes_users_change_pin", "label": "change_pin()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "change_pin()", "community": 0, "community_name": "Community 0", "source_file": "routes/users.py", "file_type": "code", "degree": 4}, {"id": "routes_users_reward_user", "label": "reward_user()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "reward_user()", "community": 0, "community_name": "Community 0", "source_file": "routes/users.py", "file_type": "code", "degree": 5}, {"id": "routes_users_get_cur_user", "label": "get_cur_user()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "get_cur_user()", "community": 0, "community_name": "Community 0", "source_file": "routes/users.py", "file_type": "code", "degree": 3}, {"id": "routes_users_get_all_users", "label": "get_all_users()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "get_all_users()", "community": 0, "community_name": "Community 0", "source_file": "routes/users.py", "file_type": "code", "degree": 2}, {"id": "routes_users_get_next_user_id", "label": "get_next_user_id()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "get_next_user_id()", "community": 0, "community_name": "Community 0", "source_file": "routes/users.py", "file_type": "code", "degree": 2}, {"id": "routes_users_verify_user", "label": "verify_user()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "verify_user()", "community": 0, "community_name": "Community 0", "source_file": "routes/users.py", "file_type": "code", "degree": 1}, {"id": "routes_users_pin_forgot_get", "label": "pin_forgot_get()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "pin_forgot_get()", "community": 0, "community_name": "Community 0", "source_file": "routes/users.py", "file_type": "code", "degree": 2}, {"id": "routes_users_pin_forgot_post", "label": "pin_forgot_post()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "pin_forgot_post()", "community": 0, "community_name": "Community 0", "source_file": "routes/users.py", "file_type": "code", "degree": 5}, {"id": "routes_users_pin_forgot_validate", "label": "pin_forgot_validate()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "pin_forgot_validate()", "community": 0, "community_name": "Community 0", "source_file": "routes/users.py", "file_type": "code", "degree": 4}, {"id": "routes_users_rationale_114", "label": "Create a new user with PIN", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Create a new user with PIN", "community": 0, "community_name": "Community 0", "source_file": "routes/users.py", "file_type": "rationale", "degree": 1}, {"id": "routes_users_rationale_143", "label": "Force register a new user", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Force register a new user", "community": 0, "community_name": "Community 0", "source_file": "routes/users.py", "file_type": "rationale", "degree": 1}, {"id": "routes_users_rationale_168", "label": "Login user with email and PIN", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Login user with email and PIN", "community": 0, "community_name": "Community 0", "source_file": "routes/users.py", "file_type": "rationale", "degree": 1}, {"id": "routes_users_rationale_306", "label": "Reward a user with 1 free beer", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Reward a user with 1 free beer", "community": 0, "community_name": "Community 0", "source_file": "routes/users.py", "file_type": "rationale", "degree": 1}, {"id": "routes_users_rationale_323", "label": "Get current user information", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Get current user information", "community": 0, "community_name": "Community 0", "source_file": "routes/users.py", "file_type": "rationale", "degree": 1}, {"id": "routes_users_rationale_359", "label": "Render the PIN forgot page", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Render the PIN forgot page", "community": 0, "community_name": "Community 0", "source_file": "routes/users.py", "file_type": "rationale", "degree": 1}, {"id": "routes_users_rationale_367", "label": "Handle the PIN forgot form submission", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Handle the PIN forgot form submission", "community": 0, "community_name": "Community 0", "source_file": "routes/users.py", "file_type": "rationale", "degree": 1}, {"id": "routes_users_rationale_385", "label": "Validate the PIN recovery code", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Validate the PIN recovery code", "community": 0, "community_name": "Community 0", "source_file": "routes/users.py", "file_type": "rationale", "degree": 1}, {"id": "routes_init_py", "label": "__init__.py", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "__init__.py", "community": 48, "community_name": "Community 48", "source_file": "routes/__init__.py", "file_type": "code", "degree": 0}, {"id": "routes_store_py", "label": "store.py", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "store.py", "community": 0, "community_name": "Community 0", "source_file": "routes/store.py", "file_type": "code", "degree": 5}, {"id": "routes_store_appstatebody", "label": "AppStateBody", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "AppStateBody", "community": 11, "community_name": "Community 11", "source_file": "routes/store.py", "file_type": "code", "degree": 4}, {"id": "routes_store_set_store_state", "label": "set_store_state()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "set_store_state()", "community": 0, "community_name": "Community 0", "source_file": "routes/store.py", "file_type": "code", "degree": 2}, {"id": "routes_store_update_cache", "label": "update_cache()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "update_cache()", "community": 0, "community_name": "Community 0", "source_file": "routes/store.py", "file_type": "code", "degree": 2}, {"id": "routes_store_get_table_exists", "label": "get_table_exists()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "get_table_exists()", "community": 0, "community_name": "Community 0", "source_file": "routes/store.py", "file_type": "code", "degree": 2}, {"id": "routes_store_get_store_state", "label": "get_store_state()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "get_store_state()", "community": 0, "community_name": "Community 0", "source_file": "routes/store.py", "file_type": "code", "degree": 2}, {"id": "toteat_toteat_py", "label": "toteat.py", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.5, "font": {"size": 0, "color": "#ffffff"}, "title": "toteat.py", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 33}, {"id": "toteat_toteat_auth_params", "label": "_auth_params()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_auth_params()", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 3}, {"id": "toteat_toteat_get", "label": "_get()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "_get()", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 6}, {"id": "toteat_toteat_post", "label": "_post()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_post()", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 3}, {"id": "toteat_toteat_persist_table_order", "label": "_persist_table_order()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_persist_table_order()", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 3}, {"id": "toteat_toteat_load_table_order", "label": "_load_table_order()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_load_table_order()", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 3}, {"id": "toteat_toteat_clear_table_order", "label": "_clear_table_order()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_clear_table_order()", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 1}, {"id": "toteat_toteat_to_fudo_product", "label": "_to_fudo_product()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_to_fudo_product()", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 5}, {"id": "toteat_toteat_get_token", "label": "get_token()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "get_token()", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 3}, {"id": "toteat_toteat_clear_token", "label": "clear_token()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "clear_token()", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 2}, {"id": "toteat_toteat_fetch_menu", "label": "_fetch_menu()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "_fetch_menu()", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 6}, {"id": "toteat_toteat_get_modifiers", "label": "get_modifiers()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "get_modifiers()", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 5}, {"id": "toteat_toteat_get_categories", "label": "get_categories()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "get_categories()", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 6}, {"id": "toteat_toteat_get_category_dict", "label": "get_category_dict()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "get_category_dict()", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 3}, {"id": "toteat_toteat_get_category", "label": "get_category()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "get_category()", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 3}, {"id": "toteat_toteat_get_product", "label": "get_product()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "get_product()", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 6}, {"id": "toteat_toteat_get_products", "label": "get_products()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "get_products()", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 5}, {"id": "toteat_toteat_get_all_indexed_products", "label": "get_all_indexed_products()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "get_all_indexed_products()", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 5}, {"id": "toteat_toteat_get_all_products", "label": "get_all_products()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "get_all_products()", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 3}, {"id": "toteat_toteat_fetch_tables", "label": "_fetch_tables()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_fetch_tables()", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 4}, {"id": "toteat_toteat_to_fudo_table", "label": "_to_fudo_table()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "_to_fudo_table()", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 6}, {"id": "toteat_toteat_discover_open_order_for_table", "label": "_discover_open_order_for_table()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_discover_open_order_for_table()", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 4}, {"id": "toteat_toteat_get_table", "label": "get_table()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "get_table()", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 5}, {"id": "toteat_toteat_get_active_sale", "label": "get_active_sale()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "get_active_sale()", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 3}, {"id": "toteat_toteat_get_sale", "label": "get_sale()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "get_sale()", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 4}, {"id": "toteat_toteat_table_id_for_pending", "label": "_table_id_for_pending()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_table_id_for_pending()", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 1}, {"id": "toteat_toteat_create_sale", "label": "create_sale()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "create_sale()", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 3}, {"id": "toteat_toteat_build_line", "label": "_build_line()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "_build_line()", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 2}, {"id": "toteat_toteat_post_order", "label": "_post_order()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_post_order()", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 3}, {"id": "toteat_toteat_create_item", "label": "create_item()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "create_item()", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 6}, {"id": "toteat_toteat_get_table_items", "label": "get_table_items()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "get_table_items()", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 6}, {"id": "toteat_toteat_fetch_page", "label": "fetch_page()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fetch_page()", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 2}, {"id": "toteat_toteat_smoke_tests", "label": "_smoke_tests()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "_smoke_tests()", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "code", "degree": 13}, {"id": "toteat_toteat_rationale_1", "label": "Cliente para la API de Toteat POS. Expone la misma superficie p\u00fablica que `fudo", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Cliente para la API de Toteat POS. Expone la misma superficie p\u00fablica que `fudo", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "rationale", "degree": 1}, {"id": "toteat_toteat_rationale_233", "label": "Toteat no usa OAuth; mantenemos la firma para compatibilidad.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Toteat no usa OAuth; mantenemos la firma para compatibilidad.", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "rationale", "degree": 1}, {"id": "toteat_toteat_rationale_238", "label": "No-op para compatibilidad con fudo.fudo.clear_token.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "No-op para compatibilidad con fudo.fudo.clear_token.", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "rationale", "degree": 1}, {"id": "toteat_toteat_rationale_259", "label": "En Toteat los modificadores vienen embebidos en `/products`. Para mantener c", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "En Toteat los modificadores vienen embebidos en `/products`. Para mantener c", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "rationale", "degree": 1}, {"id": "toteat_toteat_rationale_267", "label": "Devuelve las categor\u00edas derivadas del men\u00fa de Toteat en forma JSON:API.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Devuelve las categor\u00edas derivadas del men\u00fa de Toteat en forma JSON:API.", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "rationale", "degree": 1}, {"id": "toteat_toteat_rationale_328", "label": "Toteat no pagina /products; devolvemos todo en page=1 y vac\u00edo despu\u00e9s para m", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Toteat no pagina /products; devolvemos todo en page=1 y vac\u00edo despu\u00e9s para m", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "rationale", "degree": 1}, {"id": "toteat_toteat_rationale_336", "label": "Equivalente al m\u00e9todo async de Fudo. Como Toteat trae todo en una sola reque", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Equivalente al m\u00e9todo async de Fudo. Como Toteat trae todo en una sola reque", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "rationale", "degree": 1}, {"id": "toteat_toteat_rationale_373", "label": "Toteat /tables devuelve registros con campos como `tableId`, `name`, `availa", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Toteat /tables devuelve registros con campos como `tableId`, `name`, `availa", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "rationale", "degree": 1}, {"id": "toteat_toteat_rationale_419", "label": "Busca en Toteat \u00f3rdenes abiertas y filtra por tableId.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Busca en Toteat \u00f3rdenes abiertas y filtra por tableId.", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "rationale", "degree": 1}, {"id": "toteat_toteat_rationale_491", "label": "Equivalente a `fudo.create_sale`. No hace HTTP: registra una venta pendiente", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Equivalente a `fudo.create_sale`. No hace HTTP: registra una venta pendiente", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "rationale", "degree": 1}, {"id": "toteat_toteat_rationale_555", "label": "Agrega un producto a una venta. Si la venta es pendiente (todav\u00eda no existe", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Agrega un producto a una venta. Si la venta es pendiente (todav\u00eda no existe", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "rationale", "degree": 1}, {"id": "toteat_toteat_rationale_603", "label": "Equivalente a `fudo.get_table_items`. Resuelve la mesa, encuentra su orden a", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Equivalente a `fudo.get_table_items`. Resuelve la mesa, encuentra su orden a", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "rationale", "degree": 1}, {"id": "toteat_toteat_rationale_647", "label": "Stub de paridad. Toteat no expone /products paginado; devolvemos listas vac\u00ed", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Stub de paridad. Toteat no expone /products paginado; devolvemos listas vac\u00ed", "community": 4, "community_name": "Community 4", "source_file": "toteat/toteat.py", "file_type": "rationale", "degree": 1}, {"id": "toteat_init_py", "label": "__init__.py", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "__init__.py", "community": 49, "community_name": "Community 49", "source_file": "toteat/__init__.py", "file_type": "code", "degree": 0}, {"id": "utils_rut_py", "label": "rut.py", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "rut.py", "community": 0, "community_name": "Community 0", "source_file": "utils/rut.py", "file_type": "code", "degree": 1}, {"id": "utils_rut_validate_rut", "label": "validate_rut()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "validate_rut()", "community": 0, "community_name": "Community 0", "source_file": "utils/rut.py", "file_type": "code", "degree": 3}, {"id": "utils_rut_rationale_2", "label": "Validates a Chilean RUT (Rol \u00danico Tributario). Args: rut (str)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Validates a Chilean RUT (Rol \u00danico Tributario). Args: rut (str)", "community": 0, "community_name": "Community 0", "source_file": "utils/rut.py", "file_type": "rationale", "degree": 1}, {"id": "utils_responses_py", "label": "responses.py", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "responses.py", "community": 0, "community_name": "Community 0", "source_file": "utils/responses.py", "file_type": "code", "degree": 2}, {"id": "utils_responses_success_response", "label": "success_response()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "success_response()", "community": 0, "community_name": "Community 0", "source_file": "utils/responses.py", "file_type": "code", "degree": 32}, {"id": "utils_responses_error_response", "label": "error_response()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "error_response()", "community": 0, "community_name": "Community 0", "source_file": "utils/responses.py", "file_type": "code", "degree": 20}, {"id": "public_register_app_js", "label": "app.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "app.js", "community": 23, "community_name": "Community 23", "source_file": "public/register/app.js", "file_type": "code", "degree": 11}, {"id": "register_app_showerrormessage", "label": "showErrorMessage()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "showErrorMessage()", "community": 23, "community_name": "Community 23", "source_file": "public/register/app.js", "file_type": "code", "degree": 1}, {"id": "register_app_showregistermodal", "label": "showRegisterModal()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "showRegisterModal()", "community": 23, "community_name": "Community 23", "source_file": "public/register/app.js", "file_type": "code", "degree": 1}, {"id": "register_app_hideregistermodal", "label": "hideRegisterModal()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "hideRegisterModal()", "community": 23, "community_name": "Community 23", "source_file": "public/register/app.js", "file_type": "code", "degree": 1}, {"id": "register_app_rut", "label": "rut", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "rut", "community": 23, "community_name": "Community 23", "source_file": "public/register/app.js", "file_type": "code", "degree": 1}, {"id": "register_app_body", "label": "body", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "body", "community": 23, "community_name": "Community 23", "source_file": "public/register/app.js", "file_type": "code", "degree": 1}, {"id": "register_app_dv", "label": "dv", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "dv", "community": 23, "community_name": "Community 23", "source_file": "public/register/app.js", "file_type": "code", "degree": 1}, {"id": "register_app_formdata", "label": "formData", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "formData", "community": 23, "community_name": "Community 23", "source_file": "public/register/app.js", "file_type": "code", "degree": 1}, {"id": "register_app_data", "label": "data", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "data", "community": 23, "community_name": "Community 23", "source_file": "public/register/app.js", "file_type": "code", "degree": 1}, {"id": "register_app_creategloballoader", "label": "createGlobalLoader()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createGlobalLoader()", "community": 23, "community_name": "Community 23", "source_file": "public/register/app.js", "file_type": "code", "degree": 2}, {"id": "register_app_showgloballoader", "label": "showGlobalLoader()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "showGlobalLoader()", "community": 23, "community_name": "Community 23", "source_file": "public/register/app.js", "file_type": "code", "degree": 2}, {"id": "register_app_hidegloballoader", "label": "hideGlobalLoader()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "hideGlobalLoader()", "community": 23, "community_name": "Community 23", "source_file": "public/register/app.js", "file_type": "code", "degree": 1}, {"id": "public_main_assets_index_lc7je4q6_js", "label": "index-LC7je4Q6.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 40.0, "font": {"size": 12, "color": "#ffffff"}, "title": "index-LC7je4Q6.js", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 222}, {"id": "assets_index_lc7je4q6_o", "label": "o()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "o()", "community": 10, "community_name": "Community 10", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 4}, {"id": "assets_index_lc7je4q6_r", "label": "r()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "r()", "community": 10, "community_name": "Community 10", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 7}, {"id": "assets_index_lc7je4q6_dh", "label": "dh()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "dh()", "community": 16, "community_name": "Community 16", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 6}, {"id": "assets_index_lc7je4q6_zy", "label": "zy()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "zy()", "community": 24, "community_name": "Community 24", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 4}, {"id": "assets_index_lc7je4q6_my", "label": "My()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "My()", "community": 24, "community_name": "Community 24", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_oy", "label": "Oy()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Oy()", "community": 10, "community_name": "Community 10", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 10}, {"id": "assets_index_lc7je4q6_ry", "label": "Ry()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Ry()", "community": 10, "community_name": "Community 10", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_dy", "label": "Dy()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Dy()", "community": 10, "community_name": "Community 10", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 4}, {"id": "assets_index_lc7je4q6_oo", "label": "Oo()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Oo()", "community": 10, "community_name": "Community 10", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 4}, {"id": "assets_index_lc7je4q6_by", "label": "By()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "By()", "community": 10, "community_name": "Community 10", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 8}, {"id": "assets_index_lc7je4q6_uy", "label": "Uy()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Uy()", "community": 10, "community_name": "Community 10", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_ly", "label": "Ly()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Ly()", "community": 10, "community_name": "Community 10", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 14}, {"id": "assets_index_lc7je4q6_hy", "label": "Hy()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Hy()", "community": 10, "community_name": "Community 10", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_qy", "label": "qy", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "qy", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_be", "label": "Be", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Be", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_qt", "label": "qt()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "qt()", "community": 9, "community_name": "Community 9", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 8}, {"id": "assets_index_lc7je4q6_hh", "label": "hh", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "hh", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_si", "label": "si()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "si()", "community": 9, "community_name": "Community 9", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 6}, {"id": "assets_index_lc7je4q6_yy", "label": "Yy()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Yy()", "community": 9, "community_name": "Community 9", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_gy", "label": "Gy()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Gy()", "community": 9, "community_name": "Community 9", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_xy", "label": "Xy()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Xy()", "community": 9, "community_name": "Community 9", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_pa", "label": "pa()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "pa()", "community": 22, "community_name": "Community 22", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 8}, {"id": "assets_index_lc7je4q6_vy", "label": "Vy()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Vy()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_kt", "label": "Kt()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Kt()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 7}, {"id": "assets_index_lc7je4q6_ph", "label": "ph()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ph()", "community": 26, "community_name": "Community 26", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_yh", "label": "yh()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "yh()", "community": 24, "community_name": "Community 24", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 5}, {"id": "assets_index_lc7je4q6_ky", "label": "Ky()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Ky()", "community": 24, "community_name": "Community 24", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_t", "label": "_t()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_t()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 5}, {"id": "assets_index_lc7je4q6_yo", "label": "yo()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "yo()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_gh", "label": "gh()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "gh()", "community": 16, "community_name": "Community 16", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 14}, {"id": "assets_index_lc7je4q6_y", "label": "$y()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "$y()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_fy", "label": "Fy()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Fy()", "community": 19, "community_name": "Community 19", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_wy", "label": "Wy()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Wy()", "community": 22, "community_name": "Community 22", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_iy", "label": "Iy()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Iy()", "community": 22, "community_name": "Community 22", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_py", "label": "Py", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Py", "community": 24, "community_name": "Community 24", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 5}, {"id": "assets_index_lc7je4q6_py_constructor", "label": ".constructor()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 24, "community_name": "Community 24", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_py_get", "label": ".get()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".get()", "community": 26, "community_name": "Community 26", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 8}, {"id": "assets_index_lc7je4q6_py_keys", "label": ".keys()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".keys()", "community": 24, "community_name": "Community 24", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 5}, {"id": "assets_index_lc7je4q6_py_tojson", "label": ".toJSON()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".toJSON()", "community": 24, "community_name": "Community 24", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_vh", "label": "vh()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "vh()", "community": 22, "community_name": "Community 22", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 10}, {"id": "assets_index_lc7je4q6_im", "label": "Im()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Im()", "community": 22, "community_name": "Community 22", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_bo", "label": "bo()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "bo()", "community": 22, "community_name": "Community 22", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 7}, {"id": "assets_index_lc7je4q6_eg", "label": "eg()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "eg()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_tg", "label": "tg", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "tg", "community": 24, "community_name": "Community 24", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 4}, {"id": "assets_index_lc7je4q6_ag", "label": "ag", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ag", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_lg", "label": "lg", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "lg", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_ng", "label": "ng", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ng", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_sg", "label": "sg()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "sg()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 5}, {"id": "assets_index_lc7je4q6_ro", "label": "Ro", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Ro", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 13}, {"id": "assets_index_lc7je4q6_ro_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_ro_setsources", "label": ".setSources()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".setSources()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_ro_setindexrecords", "label": ".setIndexRecords()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".setIndexRecords()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_ro_setkeys", "label": ".setKeys()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".setKeys()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_ro_create", "label": ".create()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_ro_add", "label": ".add()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".add()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 5}, {"id": "assets_index_lc7je4q6_ro_removeat", "label": ".removeAt()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".removeAt()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_ro_getvalueforitematkeyid", "label": ".getValueForItemAtKeyId()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getValueForItemAtKeyId()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_ro_size", "label": ".size()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".size()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_ro_addstring", "label": "._addString()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "._addString()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 5}, {"id": "assets_index_lc7je4q6_ro_addobject", "label": "._addObject()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "._addObject()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_ro_tojson", "label": ".toJSON()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".toJSON()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_xh", "label": "xh()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "xh()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 5}, {"id": "assets_index_lc7je4q6_ug", "label": "ug()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ug()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_ms", "label": "Ms()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Ms()", "community": 19, "community_name": "Community 19", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_rg", "label": "rg()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "rg()", "community": 19, "community_name": "Community 19", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 4}, {"id": "assets_index_lc7je4q6_og", "label": "og()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "og()", "community": 19, "community_name": "Community 19", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 6}, {"id": "assets_index_lc7je4q6_cg", "label": "cg()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "cg()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_bh", "label": "bh", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "bh", "community": 10, "community_name": "Community 10", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_bh_constructor", "label": ".constructor()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 10, "community_name": "Community 10", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_bh_searchin", "label": ".searchIn()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".searchIn()", "community": 10, "community_name": "Community 10", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_va", "label": "Va", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Va", "community": 27, "community_name": "Community 27", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 5}, {"id": "assets_index_lc7je4q6_va_constructor", "label": ".constructor()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 27, "community_name": "Community 27", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_va_ismultimatch", "label": ".isMultiMatch()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".isMultiMatch()", "community": 27, "community_name": "Community 27", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_va_issinglematch", "label": ".isSingleMatch()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".isSingleMatch()", "community": 27, "community_name": "Community 27", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_va_search", "label": ".search()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".search()", "community": 27, "community_name": "Community 27", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_pm", "label": "Pm()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Pm()", "community": 27, "community_name": "Community 27", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_fg", "label": "fg", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "fg", "community": 28, "community_name": "Community 28", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 6}, {"id": "assets_index_lc7je4q6_fg_constructor", "label": ".constructor()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 28, "community_name": "Community 28", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_fg_type", "label": ".type()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".type()", "community": 28, "community_name": "Community 28", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_fg_multiregex", "label": ".multiRegex()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".multiRegex()", "community": 28, "community_name": "Community 28", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_fg_singleregex", "label": ".singleRegex()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".singleRegex()", "community": 28, "community_name": "Community 28", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_fg_search", "label": ".search()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".search()", "community": 28, "community_name": "Community 28", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_dg", "label": "dg", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "dg", "community": 19, "community_name": "Community 19", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 8}, {"id": "assets_index_lc7je4q6_dg_constructor", "label": ".constructor()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 19, "community_name": "Community 19", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_dg_type", "label": ".type()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".type()", "community": 19, "community_name": "Community 19", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_dg_multiregex", "label": ".multiRegex()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".multiRegex()", "community": 19, "community_name": "Community 19", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_dg_singleregex", "label": ".singleRegex()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".singleRegex()", "community": 19, "community_name": "Community 19", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_dg_search", "label": ".search()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".search()", "community": 19, "community_name": "Community 19", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_mg", "label": "mg", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "mg", "community": 29, "community_name": "Community 29", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 6}, {"id": "assets_index_lc7je4q6_mg_constructor", "label": ".constructor()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 29, "community_name": "Community 29", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_mg_type", "label": ".type()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".type()", "community": 29, "community_name": "Community 29", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_mg_multiregex", "label": ".multiRegex()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".multiRegex()", "community": 29, "community_name": "Community 29", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_mg_singleregex", "label": ".singleRegex()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".singleRegex()", "community": 29, "community_name": "Community 29", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_mg_search", "label": ".search()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".search()", "community": 29, "community_name": "Community 29", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_hg", "label": "hg", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "hg", "community": 30, "community_name": "Community 30", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 6}, {"id": "assets_index_lc7je4q6_hg_constructor", "label": ".constructor()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 30, "community_name": "Community 30", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_hg_type", "label": ".type()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".type()", "community": 30, "community_name": "Community 30", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_hg_multiregex", "label": ".multiRegex()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".multiRegex()", "community": 30, "community_name": "Community 30", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_hg_singleregex", "label": ".singleRegex()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".singleRegex()", "community": 30, "community_name": "Community 30", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_hg_search", "label": ".search()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".search()", "community": 30, "community_name": "Community 30", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_pg", "label": "pg", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "pg", "community": 31, "community_name": "Community 31", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 6}, {"id": "assets_index_lc7je4q6_pg_constructor", "label": ".constructor()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 31, "community_name": "Community 31", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_pg_type", "label": ".type()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".type()", "community": 31, "community_name": "Community 31", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_pg_multiregex", "label": ".multiRegex()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".multiRegex()", "community": 31, "community_name": "Community 31", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_pg_singleregex", "label": ".singleRegex()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".singleRegex()", "community": 31, "community_name": "Community 31", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_pg_search", "label": ".search()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".search()", "community": 31, "community_name": "Community 31", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_yg", "label": "yg", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "yg", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 8}, {"id": "assets_index_lc7je4q6_yg_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_yg_type", "label": ".type()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".type()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_yg_multiregex", "label": ".multiRegex()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".multiRegex()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_yg_singleregex", "label": ".singleRegex()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".singleRegex()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_yg_search", "label": ".search()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".search()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_sh", "label": "Sh", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Sh", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 6}, {"id": "assets_index_lc7je4q6_sh_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_sh_type", "label": ".type()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".type()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_sh_multiregex", "label": ".multiRegex()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".multiRegex()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_sh_singleregex", "label": ".singleRegex()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".singleRegex()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_sh_search", "label": ".search()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".search()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_eh", "label": "Eh", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Eh", "community": 32, "community_name": "Community 32", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 6}, {"id": "assets_index_lc7je4q6_eh_constructor", "label": ".constructor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 32, "community_name": "Community 32", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_eh_type", "label": ".type()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".type()", "community": 32, "community_name": "Community 32", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_eh_multiregex", "label": ".multiRegex()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".multiRegex()", "community": 32, "community_name": "Community 32", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_eh_singleregex", "label": ".singleRegex()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".singleRegex()", "community": 32, "community_name": "Community 32", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_eh_search", "label": ".search()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".search()", "community": 32, "community_name": "Community 32", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_so", "label": "So", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "So", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_xg", "label": "xg()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "xg()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_bg", "label": "bg", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "bg", "community": 19, "community_name": "Community 19", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_sg_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_sg_condition", "label": ".condition()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".condition()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_sg_searchin", "label": ".searchIn()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".searchIn()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 4}, {"id": "assets_index_lc7je4q6_eo", "label": "Eo", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Eo", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_hs", "label": "Hs", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Hs", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_to", "label": "To", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "To", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_no", "label": "No()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "No()", "community": 24, "community_name": "Community 24", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_g", "label": "_g()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "_g()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_th", "label": "th()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "th()", "community": 24, "community_name": "Community 24", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_h", "label": "_h()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "_h()", "community": 24, "community_name": "Community 24", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 5}, {"id": "assets_index_lc7je4q6_jg", "label": "jg()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "jg()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_an", "label": "an", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "an", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 13}, {"id": "assets_index_lc7je4q6_an_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_an_setcollection", "label": ".setCollection()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".setCollection()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_an_add", "label": ".add()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".add()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_an_remove", "label": ".remove()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_an_removeat", "label": ".removeAt()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".removeAt()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_an_getindex", "label": ".getIndex()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getIndex()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_an_search", "label": ".search()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".search()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 9}, {"id": "assets_index_lc7je4q6_an_searchstringlist", "label": "._searchStringList()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "._searchStringList()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_an_searchlogical", "label": "._searchLogical()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._searchLogical()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_an_searchobjectlist", "label": "._searchObjectList()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "._searchObjectList()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_an_findmatches", "label": "._findMatches()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "._findMatches()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 4}, {"id": "assets_index_lc7je4q6_wg", "label": "wg()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "wg()", "community": 9, "community_name": "Community 9", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_za", "label": "Za()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Za()", "community": 19, "community_name": "Community 19", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 7}, {"id": "assets_index_lc7je4q6_zg", "label": "zg()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "zg()", "community": 16, "community_name": "Community 16", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_ln", "label": "ln()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ln()", "community": 19, "community_name": "Community 19", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 7}, {"id": "assets_index_lc7je4q6_nh", "label": "Nh()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Nh()", "community": 19, "community_name": "Community 19", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_jh", "label": "jh()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "jh()", "community": 19, "community_name": "Community 19", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 7}, {"id": "assets_index_lc7je4q6_ch", "label": "Ch", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Ch", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_tt", "label": "Tt()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Tt()", "community": 9, "community_name": "Community 9", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 12}, {"id": "assets_index_lc7je4q6_li", "label": "li", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "li", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_os", "label": "Os", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Os", "community": 10, "community_name": "Community 10", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_kg", "label": "kg()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "kg()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_ah", "label": "Ah", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Ah", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_qg", "label": "qg()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "qg()", "community": 21, "community_name": "Community 21", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_ui", "label": "ui()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ui()", "community": 9, "community_name": "Community 9", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 6}, {"id": "assets_index_lc7je4q6_le", "label": "Le()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Le()", "community": 21, "community_name": "Community 21", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 17}, {"id": "assets_index_lc7je4q6_yt", "label": "Yt()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Yt()", "community": 16, "community_name": "Community 16", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 9}, {"id": "assets_index_lc7je4q6_gg", "label": "Gg()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Gg()", "community": 10, "community_name": "Community 10", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_lh", "label": "lh()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "lh()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_jo", "label": "jo()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "jo()", "community": 10, "community_name": "Community 10", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 4}, {"id": "assets_index_lc7je4q6_ni", "label": "ni()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ni()", "community": 21, "community_name": "Community 21", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_nn", "label": "nn()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "nn()", "community": 16, "community_name": "Community 16", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 7}, {"id": "assets_index_lc7je4q6_wh", "label": "wh()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "wh()", "community": 16, "community_name": "Community 16", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 4}, {"id": "assets_index_lc7je4q6_vg", "label": "Vg()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Vg()", "community": 16, "community_name": "Community 16", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 8}, {"id": "assets_index_lc7je4q6_zh", "label": "zh()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "zh()", "community": 22, "community_name": "Community 22", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 5}, {"id": "assets_index_lc7je4q6_mh", "label": "Mh()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Mh()", "community": 16, "community_name": "Community 16", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_ev", "label": "ev()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ev()", "community": 9, "community_name": "Community 9", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 7}, {"id": "assets_index_lc7je4q6_tv", "label": "tv()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "tv()", "community": 21, "community_name": "Community 21", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 6}, {"id": "assets_index_lc7je4q6_ks", "label": "ks()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ks()", "community": 21, "community_name": "Community 21", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 4}, {"id": "assets_index_lc7je4q6_av", "label": "av()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "av()", "community": 16, "community_name": "Community 16", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 7}, {"id": "assets_index_lc7je4q6_lv", "label": "lv()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "lv()", "community": 16, "community_name": "Community 16", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 6}, {"id": "assets_index_lc7je4q6_ya", "label": "ya()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ya()", "community": 25, "community_name": "Community 25", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 6}, {"id": "assets_index_lc7je4q6_iv", "label": "iv()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "iv()", "community": 16, "community_name": "Community 16", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 8}, {"id": "assets_index_lc7je4q6_ih", "label": "ih()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ih()", "community": 16, "community_name": "Community 16", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 5}, {"id": "assets_index_lc7je4q6_go", "label": "go()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "go()", "community": 16, "community_name": "Community 16", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_sv", "label": "sv()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "sv()", "community": 9, "community_name": "Community 9", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 5}, {"id": "assets_index_lc7je4q6_rh", "label": "Rh()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Rh()", "community": 9, "community_name": "Community 9", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 5}, {"id": "assets_index_lc7je4q6_constructor", "label": "constructor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "constructor()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_fv", "label": "fv()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "fv()", "community": 21, "community_name": "Community 21", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_dv", "label": "dv()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "dv()", "community": 21, "community_name": "Community 21", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 6}, {"id": "assets_index_lc7je4q6_uh", "label": "Uh()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Uh()", "community": 25, "community_name": "Community 25", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 4}, {"id": "assets_index_lc7je4q6_xv", "label": "xv()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "xv()", "community": 25, "community_name": "Community 25", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_bv", "label": "bv()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "bv()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_oi", "label": "oi()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "oi()", "community": 9, "community_name": "Community 9", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 6}, {"id": "assets_index_lc7je4q6_ka", "label": "Ka()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Ka()", "community": 9, "community_name": "Community 9", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 10}, {"id": "assets_index_lc7je4q6_ja", "label": "Ja()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Ja()", "community": 9, "community_name": "Community 9", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 11}, {"id": "assets_index_lc7je4q6_ci", "label": "ci()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ci()", "community": 9, "community_name": "Community 9", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 7}, {"id": "assets_index_lc7je4q6_v", "label": "_v()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_v()", "community": 16, "community_name": "Community 16", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 4}, {"id": "assets_index_lc7je4q6_getderivedstatefromerror", "label": "getDerivedStateFromError()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "getDerivedStateFromError()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_getderivedstatefromprops", "label": "getDerivedStateFromProps()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "getDerivedStateFromProps()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_componentdidcatch", "label": "componentDidCatch()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "componentDidCatch()", "community": 18, "community_name": "Community 18", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_render", "label": "render()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "render()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_jv", "label": "jv()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "jv()", "community": 25, "community_name": "Community 25", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 4}, {"id": "assets_index_lc7je4q6_cv", "label": "Cv()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Cv()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_wv", "label": "wv()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "wv()", "community": 21, "community_name": "Community 21", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 5}, {"id": "assets_index_lc7je4q6_zv", "label": "zv()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "zv()", "community": 21, "community_name": "Community 21", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 5}, {"id": "assets_index_lc7je4q6_mv", "label": "Mv()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Mv()", "community": 21, "community_name": "Community 21", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 4}, {"id": "assets_index_lc7je4q6_uo", "label": "Uo()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Uo()", "community": 21, "community_name": "Community 21", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 6}, {"id": "assets_index_lc7je4q6_ov", "label": "Ov()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Ov()", "community": 26, "community_name": "Community 26", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 4}, {"id": "assets_index_lc7je4q6_rv", "label": "Rv()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Rv()", "community": 21, "community_name": "Community 21", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 5}, {"id": "assets_index_lc7je4q6_qh", "label": "Qh()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Qh()", "community": 16, "community_name": "Community 16", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_uv", "label": "Uv()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Uv()", "community": 21, "community_name": "Community 21", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 6}, {"id": "assets_index_lc7je4q6_co", "label": "Co()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Co()", "community": 16, "community_name": "Community 16", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_ys", "label": "Ys()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Ys()", "community": 25, "community_name": "Community 25", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 5}, {"id": "assets_index_lc7je4q6_hv", "label": "Hv()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Hv()", "community": 25, "community_name": "Community 25", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_kv", "label": "kv()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "kv()", "community": 25, "community_name": "Community 25", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_qv", "label": "qv()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "qv()", "community": 25, "community_name": "Community 25", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_yv", "label": "Yv()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Yv()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_gv", "label": "Gv()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Gv()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_xo", "label": "xo()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "xo()", "community": 25, "community_name": "Community 25", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_vv", "label": "Vv()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Vv()", "community": 25, "community_name": "Community 25", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 8}, {"id": "assets_index_lc7je4q6_lo", "label": "Lo()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Lo()", "community": 22, "community_name": "Community 22", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 4}, {"id": "assets_index_lc7je4q6_pv", "label": "Pv()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Pv()", "community": 16, "community_name": "Community 16", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_ex", "label": "ex()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ex()", "community": 22, "community_name": "Community 22", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_tx", "label": "tx()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tx()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_ai", "label": "ai()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ai()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_ax", "label": "ax()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ax()", "community": 22, "community_name": "Community 22", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_lx", "label": "lx()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "lx()", "community": 22, "community_name": "Community 22", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 5}, {"id": "assets_index_lc7je4q6_nx", "label": "nx()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "nx()", "community": 22, "community_name": "Community 22", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 6}, {"id": "assets_index_lc7je4q6_ix", "label": "ix()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ix()", "community": 9, "community_name": "Community 9", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_ux", "label": "ux()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ux()", "community": 26, "community_name": "Community 26", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_basename_d_unstable_usetransitions_x", "label": "{basename:D,unstable_useTransitions:X}", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "{basename:D,unstable_useTransitions:X}", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_k", "label": "k", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "k", "community": 10, "community_name": "Community 10", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_m", "label": "M", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "M", "community": 10, "community_name": "Community 10", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 4}, {"id": "assets_index_lc7je4q6_u_z_k", "label": "[U,Z,K]", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "[U,Z,K]", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_f", "label": "F()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "F()", "community": 10, "community_name": "Community 10", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_te", "label": "te", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "te", "community": 10, "community_name": "Community 10", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_b", "label": "b", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "b", "community": 10, "community_name": "Community 10", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 4}, {"id": "assets_index_lc7je4q6_j", "label": "j", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "j", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_z", "label": "z", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "z", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_navigator_q_basename_d", "label": "{navigator:q,basename:D}", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "{navigator:q,basename:D}", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_unstable_usetransitions_d", "label": "{unstable_useTransitions:D}", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "{unstable_useTransitions:D}", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_x", "label": "X", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "X", "community": 10, "community_name": "Community 10", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 4}, {"id": "assets_index_lc7je4q6_u", "label": "U()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "U()", "community": 10, "community_name": "Community 10", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 5}, {"id": "assets_index_lc7je4q6_cx", "label": "cx()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "cx()", "community": 19, "community_name": "Community 19", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_fx", "label": "fx()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "fx()", "community": 9, "community_name": "Community 9", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 4}, {"id": "assets_index_lc7je4q6_hx", "label": "hx()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "hx()", "community": 26, "community_name": "Community 26", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 4}, {"id": "assets_index_lc7je4q6_px", "label": "px()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "px()", "community": 9, "community_name": "Community 9", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 10}, {"id": "assets_index_lc7je4q6_yx", "label": "yx()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "yx()", "community": 21, "community_name": "Community 21", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 6}, {"id": "assets_index_lc7je4q6_pl", "label": "pl()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "pl()", "community": 10, "community_name": "Community 10", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_gx", "label": "gx()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "gx()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_bx", "label": "bx()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "bx()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_sx", "label": "Sx()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Sx()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_fh", "label": "Fh()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Fh()", "community": 9, "community_name": "Community 9", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 4}, {"id": "assets_index_lc7je4q6_wx", "label": "wx()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "wx()", "community": 26, "community_name": "Community 26", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 5}, {"id": "assets_index_lc7je4q6_e0", "label": "e0()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "e0()", "community": 16, "community_name": "Community 16", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_mx", "label": "Mx()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Mx()", "community": 26, "community_name": "Community 26", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_t0", "label": "t0()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "t0()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_ox", "label": "Ox()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Ox()", "community": 22, "community_name": "Community 22", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_rx", "label": "Rx()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Rx()", "community": 3, "community_name": "Community 3", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_dx", "label": "Dx()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Dx()", "community": 16, "community_name": "Community 16", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_di", "label": "di()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "di()", "community": 16, "community_name": "Community 16", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_gs", "label": "Gs()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Gs()", "community": 16, "community_name": "Community 16", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_xs", "label": "Xs()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Xs()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_oe", "label": "oe()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "oe()", "community": 16, "community_name": "Community 16", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_qx", "label": "qx()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "qx()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_xx", "label": "Xx()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Xx()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_zx", "label": "Zx()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Zx()", "community": 10, "community_name": "Community 10", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_isrunning_u_preventexittransition_o_toastref_r_eventhandlers_d_playtoast_m", "label": "{isRunning:u,preventExitTransition:o,toastRef:r,eventHandlers:d,playToast:m}", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "{isRunning:u,preventExitTransition:o,toastRef:r,eventHandlers:d,playToast:m}", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_me", "label": "Me", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Me", "community": 10, "community_name": "Community 10", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6", "label": "$", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "$", "community": 10, "community_name": "Community 10", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_a0", "label": "a0", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "a0", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_gl", "label": "gl()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "gl()", "community": 9, "community_name": "Community 9", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 8}, {"id": "assets_index_lc7je4q6_eb", "label": "eb", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "eb", "community": 18, "community_name": "Community 18", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 22}, {"id": "assets_index_lc7je4q6_eb_constructor", "label": ".constructor()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 18, "community_name": "Community 18", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_eb_connect", "label": ".connect()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".connect()", "community": 18, "community_name": "Community 18", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_eb_send", "label": ".send()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".send()", "community": 18, "community_name": "Community 18", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 7}, {"id": "assets_index_lc7je4q6_eb_join", "label": ".join()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".join()", "community": 16, "community_name": "Community 16", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 12}, {"id": "assets_index_lc7je4q6_eb_sendmessage", "label": ".sendMessage()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".sendMessage()", "community": 18, "community_name": "Community 18", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_eb_sendaimessage", "label": ".sendAiMessage()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".sendAiMessage()", "community": 18, "community_name": "Community 18", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_eb_sendmention", "label": ".sendMention()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".sendMention()", "community": 18, "community_name": "Community 18", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_eb_leave", "label": ".leave()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".leave()", "community": 18, "community_name": "Community 18", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_eb_disconnect", "label": ".disconnect()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".disconnect()", "community": 18, "community_name": "Community 18", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_eb_onmessage", "label": ".onMessage()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".onMessage()", "community": 18, "community_name": "Community 18", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_eb_onerror", "label": ".onError()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".onError()", "community": 18, "community_name": "Community 18", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_eb_onclose", "label": ".onClose()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".onClose()", "community": 18, "community_name": "Community 18", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_eb_onmention", "label": ".onMention()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".onMention()", "community": 18, "community_name": "Community 18", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_eb_getconnectedusers", "label": ".getConnectedUsers()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getConnectedUsers()", "community": 18, "community_name": "Community 18", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_eb_getonlinecount", "label": ".getOnlineCount()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getOnlineCount()", "community": 18, "community_name": "Community 18", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_eb_mention", "label": ".mention()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".mention()", "community": 18, "community_name": "Community 18", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_at", "label": "at", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "at", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_l0", "label": "l0", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "l0", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_tb", "label": "tb()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "tb()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_ab", "label": "ab()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ab()", "community": 9, "community_name": "Community 9", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_lb", "label": "lb()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "lb()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_nb", "label": "nb()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "nb()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_ib", "label": "ib()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ib()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_sb", "label": "sb()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "sb()", "community": 9, "community_name": "Community 9", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 4}, {"id": "assets_index_lc7je4q6_ub", "label": "ub()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ub()", "community": 9, "community_name": "Community 9", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 6}, {"id": "assets_index_lc7je4q6_cb", "label": "cb()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "cb()", "community": 26, "community_name": "Community 26", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_n0", "label": "n0()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "n0()", "community": 26, "community_name": "Community 26", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_fb", "label": "fb()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "fb()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_db", "label": "db()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "db()", "community": 9, "community_name": "Community 9", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_mb", "label": "mb()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "mb()", "community": 9, "community_name": "Community 9", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 7}, {"id": "assets_index_lc7je4q6_hb", "label": "hb()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "hb()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_pb", "label": "pb()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "pb()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_yb", "label": "yb()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "yb()", "community": 9, "community_name": "Community 9", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 4}, {"id": "assets_index_lc7je4q6_i0", "label": "i0()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "i0()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_gb", "label": "gb()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "gb()", "community": 9, "community_name": "Community 9", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 3}, {"id": "assets_index_lc7je4q6_vb", "label": "vb()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "vb()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_xb", "label": "xb()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "xb()", "community": 9, "community_name": "Community 9", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_bb", "label": "bb()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "bb()", "community": 9, "community_name": "Community 9", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 2}, {"id": "assets_index_lc7je4q6_jb", "label": "jb()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "jb()", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "assets_index_lc7je4q6_ds", "label": "Ds()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Ds()", "community": 9, "community_name": "Community 9", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 4}, {"id": "assets_index_lc7je4q6_s0", "label": "s0", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "s0", "community": 2, "community_name": "Community 2", "source_file": "public/main/assets/index-LC7je4Q6.js", "file_type": "code", "degree": 1}, {"id": "middleware_in_time_py", "label": "in_time.py", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "in_time.py", "community": 6, "community_name": "Community 6", "source_file": "middleware/in_time.py", "file_type": "code", "degree": 3}, {"id": "middleware_in_time_emptyuser", "label": "EmptyUser", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "EmptyUser", "community": 6, "community_name": "Community 6", "source_file": "middleware/in_time.py", "file_type": "code", "degree": 3}, {"id": "middleware_in_time_emptyuser_init", "label": ".__init__()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 6, "community_name": "Community 6", "source_file": "middleware/in_time.py", "file_type": "code", "degree": 1}, {"id": "middleware_in_time_intimemiddleware", "label": "InTimeMiddleware", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "InTimeMiddleware", "community": 6, "community_name": "Community 6", "source_file": "middleware/in_time.py", "file_type": "code", "degree": 4}, {"id": "basehttpmiddleware", "label": "BaseHTTPMiddleware", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BaseHTTPMiddleware", "community": 6, "community_name": "Community 6", "source_file": "", "file_type": "code", "degree": 2}, {"id": "middleware_in_time_intimemiddleware_dispatch", "label": ".dispatch()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".dispatch()", "community": 6, "community_name": "Community 6", "source_file": "middleware/in_time.py", "file_type": "code", "degree": 3}, {"id": "middleware_in_time_rationale_1", "label": "Middleware para agregar headers de no-cache a las respuestas", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Middleware para agregar headers de no-cache a las respuestas", "community": 6, "community_name": "Community 6", "source_file": "middleware/in_time.py", "file_type": "rationale", "degree": 1}, {"id": "middleware_in_time_rationale_24", "label": "Middleware que revisa si la peticion se hizo dentro del horario de funcionamient", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Middleware que revisa si la peticion se hizo dentro del horario de funcionamient", "community": 6, "community_name": "Community 6", "source_file": "middleware/in_time.py", "file_type": "rationale", "degree": 1}, {"id": "middleware_init_py", "label": "__init__.py", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "__init__.py", "community": 6, "community_name": "Community 6", "source_file": "middleware/__init__.py", "file_type": "code", "degree": 1}, {"id": "middleware_no_cache_py", "label": "no_cache.py", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "no_cache.py", "community": 6, "community_name": "Community 6", "source_file": "middleware/no_cache.py", "file_type": "code", "degree": 3}, {"id": "middleware_no_cache_nocachemiddleware", "label": "NoCacheMiddleware", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "NoCacheMiddleware", "community": 6, "community_name": "Community 6", "source_file": "middleware/no_cache.py", "file_type": "code", "degree": 4}, {"id": "middleware_no_cache_nocachemiddleware_dispatch", "label": ".dispatch()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".dispatch()", "community": 6, "community_name": "Community 6", "source_file": "middleware/no_cache.py", "file_type": "code", "degree": 1}, {"id": "middleware_no_cache_rationale_1", "label": "Middleware para agregar headers de no-cache a las respuestas", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Middleware para agregar headers de no-cache a las respuestas", "community": 6, "community_name": "Community 6", "source_file": "middleware/no_cache.py", "file_type": "rationale", "degree": 1}, {"id": "middleware_no_cache_rationale_10", "label": "Middleware que agrega headers de no-cache a todas las respuestas que sirven", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Middleware que agrega headers de no-cache a todas las respuestas que sirven", "community": 6, "community_name": "Community 6", "source_file": "middleware/no_cache.py", "file_type": "rationale", "degree": 1}, {"id": "fudo_fudo_py", "label": "fudo.py", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "fudo.py", "community": 13, "community_name": "Community 13", "source_file": "fudo/fudo.py", "file_type": "code", "degree": 18}, {"id": "fudo_fudo_get_token", "label": "get_token()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "get_token()", "community": 13, "community_name": "Community 13", "source_file": "fudo/fudo.py", "file_type": "code", "degree": 13}, {"id": "fudo_fudo_get_modifiers", "label": "get_modifiers()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "get_modifiers()", "community": 13, "community_name": "Community 13", "source_file": "fudo/fudo.py", "file_type": "code", "degree": 2}, {"id": "fudo_fudo_get_categories", "label": "get_categories()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "get_categories()", "community": 13, "community_name": "Community 13", "source_file": "fudo/fudo.py", "file_type": "code", "degree": 3}, {"id": "fudo_fudo_get_category_dict", "label": "get_category_dict()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "get_category_dict()", "community": 13, "community_name": "Community 13", "source_file": "fudo/fudo.py", "file_type": "code", "degree": 2}, {"id": "fudo_fudo_get_category", "label": "get_category()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "get_category()", "community": 13, "community_name": "Community 13", "source_file": "fudo/fudo.py", "file_type": "code", "degree": 3}, {"id": "fudo_fudo_get_product", "label": "get_product()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "get_product()", "community": 13, "community_name": "Community 13", "source_file": "fudo/fudo.py", "file_type": "code", "degree": 4}, {"id": "fudo_fudo_get_products", "label": "get_products()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "get_products()", "community": 13, "community_name": "Community 13", "source_file": "fudo/fudo.py", "file_type": "code", "degree": 2}, {"id": "fudo_fudo_fetch_page", "label": "fetch_page()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "fetch_page()", "community": 13, "community_name": "Community 13", "source_file": "fudo/fudo.py", "file_type": "code", "degree": 3}, {"id": "fudo_fudo_get_all_indexed_products", "label": "get_all_indexed_products()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "get_all_indexed_products()", "community": 13, "community_name": "Community 13", "source_file": "fudo/fudo.py", "file_type": "code", "degree": 4}, {"id": "fudo_fudo_get_all_products", "label": "get_all_products()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "get_all_products()", "community": 13, "community_name": "Community 13", "source_file": "fudo/fudo.py", "file_type": "code", "degree": 3}, {"id": "fudo_fudo_get_page_bounds", "label": "_get_page_bounds()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "_get_page_bounds()", "community": 13, "community_name": "Community 13", "source_file": "fudo/fudo.py", "file_type": "code", "degree": 3}, {"id": "fudo_fudo_get_table", "label": "get_table()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "get_table()", "community": 13, "community_name": "Community 13", "source_file": "fudo/fudo.py", "file_type": "code", "degree": 4}, {"id": "fudo_fudo_get_table_items", "label": "get_table_items()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "get_table_items()", "community": 13, "community_name": "Community 13", "source_file": "fudo/fudo.py", "file_type": "code", "degree": 5}, {"id": "fudo_fudo_get_sale", "label": "get_sale()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "get_sale()", "community": 13, "community_name": "Community 13", "source_file": "fudo/fudo.py", "file_type": "code", "degree": 3}, {"id": "fudo_fudo_create_sale", "label": "create_sale()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "create_sale()", "community": 13, "community_name": "Community 13", "source_file": "fudo/fudo.py", "file_type": "code", "degree": 2}, {"id": "fudo_fudo_create_item", "label": "create_item()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "create_item()", "community": 13, "community_name": "Community 13", "source_file": "fudo/fudo.py", "file_type": "code", "degree": 2}, {"id": "fudo_fudo_get_active_sale", "label": "get_active_sale()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "get_active_sale()", "community": 13, "community_name": "Community 13", "source_file": "fudo/fudo.py", "file_type": "code", "degree": 2}, {"id": "fudo_fudo_clear_token", "label": "clear_token()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "clear_token()", "community": 13, "community_name": "Community 13", "source_file": "fudo/fudo.py", "file_type": "code", "degree": 2}, {"id": "fudo_fudo_rationale_31", "label": "Obtiene el token de autenticaci\u00f3n de Fudo API. Primero verifica si existe un", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Obtiene el token de autenticaci\u00f3n de Fudo API. Primero verifica si existe un", "community": 13, "community_name": "Community 13", "source_file": "fudo/fudo.py", "file_type": "rationale", "degree": 1}, {"id": "fudo_fudo_rationale_164", "label": "Realiza la petici\u00f3n de una sola p\u00e1gina de forma as\u00edncrona. Retorna una tupla", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Realiza la petici\u00f3n de una sola p\u00e1gina de forma as\u00edncrona. Retorna una tupla", "community": 13, "community_name": "Community 13", "source_file": "fudo/fudo.py", "file_type": "rationale", "degree": 1}, {"id": "fudo_fudo_rationale_235", "label": "M\u00e9todo para obtener todos los productos de la base de datos.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "M\u00e9todo para obtener todos los productos de la base de datos.", "community": 13, "community_name": "Community 13", "source_file": "fudo/fudo.py", "file_type": "rationale", "degree": 1}, {"id": "fudo_fudo_rationale_240", "label": "Funci\u00f3n helper: Obtiene una p\u00e1gina y devuelve el primer y \u00faltimo n\u00famero de", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Funci\u00f3n helper: Obtiene una p\u00e1gina y devuelve el primer y \u00faltimo n\u00famero de", "community": 13, "community_name": "Community 13", "source_file": "fudo/fudo.py", "file_type": "rationale", "degree": 1}, {"id": "fudo_fudo_rationale_487", "label": "Elimina el token cached de Redis. \u00datil cuando el token es inv\u00e1lido o se nece", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Elimina el token cached de Redis. \u00datil cuando el token es inv\u00e1lido o se nece", "community": 13, "community_name": "Community 13", "source_file": "fudo/fudo.py", "file_type": "rationale", "degree": 1}, {"id": "fudo_init_py", "label": "__init__.py", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "__init__.py", "community": 50, "community_name": "Community 50", "source_file": "fudo/__init__.py", "file_type": "code", "degree": 0}, {"id": "auth_security_py", "label": "security.py", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "security.py", "community": 6, "community_name": "Community 6", "source_file": "auth/security.py", "file_type": "code", "degree": 6}, {"id": "auth_security_tokendata", "label": "TokenData", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "TokenData", "community": 6, "community_name": "Community 6", "source_file": "auth/security.py", "file_type": "code", "degree": 5}, {"id": "auth_security_hash_password", "label": "hash_password()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "hash_password()", "community": 6, "community_name": "Community 6", "source_file": "auth/security.py", "file_type": "code", "degree": 2}, {"id": "auth_security_generate_token", "label": "generate_token()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "generate_token()", "community": 0, "community_name": "Community 0", "source_file": "auth/security.py", "file_type": "code", "degree": 7}, {"id": "auth_security_create_access_token", "label": "create_access_token()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "create_access_token()", "community": 6, "community_name": "Community 6", "source_file": "auth/security.py", "file_type": "code", "degree": 3}, {"id": "auth_security_authenticate_user", "label": "authenticate_user()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "authenticate_user()", "community": 6, "community_name": "Community 6", "source_file": "auth/security.py", "file_type": "code", "degree": 2}, {"id": "auth_security_get_current_user", "label": "get_current_user()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "get_current_user()", "community": 6, "community_name": "Community 6", "source_file": "auth/security.py", "file_type": "code", "degree": 4}, {"id": "auth_security_rationale_28", "label": "Hash a password using bcrypt.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Hash a password using bcrypt.", "community": 6, "community_name": "Community 6", "source_file": "auth/security.py", "file_type": "rationale", "degree": 1}, {"id": "auth_security_rationale_32", "label": "Generate a JWT token for user authentication.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Generate a JWT token for user authentication.", "community": 0, "community_name": "Community 0", "source_file": "auth/security.py", "file_type": "rationale", "degree": 1}, {"id": "auth_security_rationale_51", "label": "Create a JWT access token.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Create a JWT access token.", "community": 6, "community_name": "Community 6", "source_file": "auth/security.py", "file_type": "rationale", "degree": 1}, {"id": "auth_security_rationale_64", "label": "Authenticate a user by email and password.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Authenticate a user by email and password.", "community": 6, "community_name": "Community 6", "source_file": "auth/security.py", "file_type": "rationale", "degree": 1}, {"id": "auth_init_py", "label": "__init__.py", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "__init__.py", "community": 51, "community_name": "Community 51", "source_file": "auth/__init__.py", "file_type": "code", "degree": 0}, {"id": "config_settings_py", "label": "settings.py", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "settings.py", "community": 5, "community_name": "Community 5", "source_file": "config/settings.py", "file_type": "code", "degree": 1}, {"id": "config_settings_validate_config", "label": "validate_config()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "validate_config()", "community": 5, "community_name": "Community 5", "source_file": "config/settings.py", "file_type": "code", "degree": 2}, {"id": "config_messages_py", "label": "messages.py", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "messages.py", "community": 1, "community_name": "Community 1", "source_file": "config/messages.py", "file_type": "code", "degree": 3}, {"id": "config_messages_errorresponse", "label": "ErrorResponse", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ErrorResponse", "community": 1, "community_name": "Community 1", "source_file": "config/messages.py", "file_type": "code", "degree": 3}, {"id": "config_messages_successresponse", "label": "SuccessResponse", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "SuccessResponse", "community": 1, "community_name": "Community 1", "source_file": "config/messages.py", "file_type": "code", "degree": 3}, {"id": "config_messages_userresponse", "label": "UserResponse", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UserResponse", "community": 1, "community_name": "Community 1", "source_file": "config/messages.py", "file_type": "code", "degree": 2}, {"id": "config_messages_rationale_2", "label": "Class to handle error messages in the response.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Class to handle error messages in the response.", "community": 1, "community_name": "Community 1", "source_file": "config/messages.py", "file_type": "rationale", "degree": 1}, {"id": "config_messages_rationale_18", "label": "Class to handle success messages in the response.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Class to handle success messages in the response.", "community": 1, "community_name": "Community 1", "source_file": "config/messages.py", "file_type": "rationale", "degree": 1}, {"id": "config_messages_rationale_33", "label": "Class to handle user-related messages in the response.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Class to handle user-related messages in the response.", "community": 1, "community_name": "Community 1", "source_file": "config/messages.py", "file_type": "rationale", "degree": 1}, {"id": "config_mails_py", "label": "mails.py", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "mails.py", "community": 52, "community_name": "Community 52", "source_file": "config/mails.py", "file_type": "code", "degree": 0}, {"id": "config_init_py", "label": "__init__.py", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "__init__.py", "community": 53, "community_name": "Community 53", "source_file": "config/__init__.py", "file_type": "code", "degree": 0}, {"id": "data_product_category_py", "label": "product_category.py", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "product_category.py", "community": 54, "community_name": "Community 54", "source_file": "data/product_category.py", "file_type": "code", "degree": 0}, {"id": "models_items_py", "label": "items.py", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "items.py", "community": 1, "community_name": "Community 1", "source_file": "models/items.py", "file_type": "code", "degree": 9}, {"id": "models_items_item", "label": "Item", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Item", "community": 1, "community_name": "Community 1", "source_file": "models/items.py", "file_type": "code", "degree": 4}, {"id": "models_items_order", "label": "Order", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Order", "community": 1, "community_name": "Community 1", "source_file": "models/items.py", "file_type": "code", "degree": 5}, {"id": "models_items_orderbilling", "label": "OrderBilling", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "OrderBilling", "community": 1, "community_name": "Community 1", "source_file": "models/items.py", "file_type": "code", "degree": 3}, {"id": "models_items_product", "label": "Product", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Product", "community": 14, "community_name": "Community 14", "source_file": "models/items.py", "file_type": "code", "degree": 23}, {"id": "models_items_producteditrequest", "label": "ProductEditRequest", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductEditRequest", "community": 1, "community_name": "Community 1", "source_file": "models/items.py", "file_type": "code", "degree": 3}, {"id": "models_items_productcreaterequest", "label": "ProductCreateRequest", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductCreateRequest", "community": 1, "community_name": "Community 1", "source_file": "models/items.py", "file_type": "code", "degree": 3}, {"id": "models_items_producttypes", "label": "ProductTypes", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductTypes", "community": 1, "community_name": "Community 1", "source_file": "models/items.py", "file_type": "code", "degree": 2}, {"id": "models_items_get_all_types", "label": "get_all_types()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "get_all_types()", "community": 1, "community_name": "Community 1", "source_file": "models/items.py", "file_type": "code", "degree": 1}, {"id": "models_items_rationale_14", "label": "Order model matching the database schema", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Order model matching the database schema", "community": 1, "community_name": "Community 1", "source_file": "models/items.py", "file_type": "rationale", "degree": 1}, {"id": "models_items_rationale_23", "label": "Order model matching the database schema", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Order model matching the database schema", "community": 1, "community_name": "Community 1", "source_file": "models/items.py", "file_type": "rationale", "degree": 1}, {"id": "models_items_rationale_29", "label": "Product model matching the database schema", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Product model matching the database schema", "community": 14, "community_name": "Community 14", "source_file": "models/items.py", "file_type": "rationale", "degree": 1}, {"id": "models_items_rationale_45", "label": "Request model for editing a product", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Request model for editing a product", "community": 1, "community_name": "Community 1", "source_file": "models/items.py", "file_type": "rationale", "degree": 1}, {"id": "models_items_rationale_56", "label": "Request model for creating a new product", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Request model for creating a new product", "community": 1, "community_name": "Community 1", "source_file": "models/items.py", "file_type": "rationale", "degree": 1}, {"id": "models_items_rationale_68", "label": "Enumeration of product types", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Enumeration of product types", "community": 1, "community_name": "Community 1", "source_file": "models/items.py", "file_type": "rationale", "degree": 1}, {"id": "models_items_rationale_74", "label": "Returns a list of all product types", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Returns a list of all product types", "community": 55, "community_name": "Community 55", "source_file": "models/items.py", "file_type": "rationale", "degree": 0}, {"id": "models_blacklist_py", "label": "blacklist.py", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "blacklist.py", "community": 1, "community_name": "Community 1", "source_file": "models/blacklist.py", "file_type": "code", "degree": 2}, {"id": "models_blacklist_blacklist", "label": "Blacklist", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Blacklist", "community": 8, "community_name": "Community 8", "source_file": "models/blacklist.py", "file_type": "code", "degree": 11}, {"id": "models_blacklist_rationale_5", "label": "Blacklist model matching the database schema", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Blacklist model matching the database schema", "community": 8, "community_name": "Community 8", "source_file": "models/blacklist.py", "file_type": "rationale", "degree": 1}, {"id": "models_sales_py", "label": "sales.py", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "sales.py", "community": 1, "community_name": "Community 1", "source_file": "models/sales.py", "file_type": "code", "degree": 5}, {"id": "models_sales_promotion", "label": "Promotion", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Promotion", "community": 1, "community_name": "Community 1", "source_file": "models/sales.py", "file_type": "code", "degree": 3}, {"id": "models_sales_itemweb", "label": "ItemWeb", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ItemWeb", "community": 1, "community_name": "Community 1", "source_file": "models/sales.py", "file_type": "code", "degree": 4}, {"id": "models_sales_orderweb", "label": "OrderWeb", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "OrderWeb", "community": 1, "community_name": "Community 1", "source_file": "models/sales.py", "file_type": "code", "degree": 4}, {"id": "models_sales_sale", "label": "Sale", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Sale", "community": 7, "community_name": "Community 7", "source_file": "models/sales.py", "file_type": "code", "degree": 15}, {"id": "models_sales_rationale_28", "label": "Sale model matching the database schema", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Sale model matching the database schema", "community": 7, "community_name": "Community 7", "source_file": "models/sales.py", "file_type": "rationale", "degree": 1}, {"id": "models_chat_py", "label": "chat.py", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "chat.py", "community": 1, "community_name": "Community 1", "source_file": "models/chat.py", "file_type": "code", "degree": 4}, {"id": "models_chat_message", "label": "Message", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Message", "community": 1, "community_name": "Community 1", "source_file": "models/chat.py", "file_type": "code", "degree": 2}, {"id": "models_chat_chatcompletionrequest", "label": "ChatCompletionRequest", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ChatCompletionRequest", "community": 1, "community_name": "Community 1", "source_file": "models/chat.py", "file_type": "code", "degree": 2}, {"id": "models_chat_notifyrequest", "label": "NotifyRequest", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "NotifyRequest", "community": 1, "community_name": "Community 1", "source_file": "models/chat.py", "file_type": "code", "degree": 2}, {"id": "models_init_py", "label": "__init__.py", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "__init__.py", "community": 1, "community_name": "Community 1", "source_file": "models/__init__.py", "file_type": "code", "degree": 5}, {"id": "models_user_py", "label": "user.py", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "user.py", "community": 1, "community_name": "Community 1", "source_file": "models/user.py", "file_type": "code", "degree": 11}, {"id": "models_user_useridrequest", "label": "UserIDRequest", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UserIDRequest", "community": 1, "community_name": "Community 1", "source_file": "models/user.py", "file_type": "code", "degree": 2}, {"id": "models_user_registeruserrequest", "label": "RegisterUserRequest", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "RegisterUserRequest", "community": 1, "community_name": "Community 1", "source_file": "models/user.py", "file_type": "code", "degree": 2}, {"id": "models_user_forceregisteruserrequest", "label": "ForceRegisterUserRequest", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ForceRegisterUserRequest", "community": 1, "community_name": "Community 1", "source_file": "models/user.py", "file_type": "code", "degree": 2}, {"id": "models_user_userrewardrequest", "label": "UserRewardRequest", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UserRewardRequest", "community": 1, "community_name": "Community 1", "source_file": "models/user.py", "file_type": "code", "degree": 2}, {"id": "models_user_pinuserrequest", "label": "PinUserRequest", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PinUserRequest", "community": 1, "community_name": "Community 1", "source_file": "models/user.py", "file_type": "code", "degree": 2}, {"id": "models_user_user", "label": "User", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "User", "community": 11, "community_name": "Community 11", "source_file": "models/user.py", "file_type": "code", "degree": 16}, {"id": "models_user_usermail", "label": "UserMail", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UserMail", "community": 1, "community_name": "Community 1", "source_file": "models/user.py", "file_type": "code", "degree": 2}, {"id": "models_user_loginrequest", "label": "LoginRequest", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "LoginRequest", "community": 1, "community_name": "Community 1", "source_file": "models/user.py", "file_type": "code", "degree": 2}, {"id": "models_user_pinrecoveryrequest", "label": "PinRecoveryRequest", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PinRecoveryRequest", "community": 1, "community_name": "Community 1", "source_file": "models/user.py", "file_type": "code", "degree": 2}, {"id": "models_user_pinrecoveryvalidaterequest", "label": "PinRecoveryValidateRequest", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PinRecoveryValidateRequest", "community": 1, "community_name": "Community 1", "source_file": "models/user.py", "file_type": "code", "degree": 2}, {"id": "models_user_rationale_26", "label": "User model matching the database schema", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "User model matching the database schema", "community": 11, "community_name": "Community 11", "source_file": "models/user.py", "file_type": "rationale", "degree": 1}, {"id": "claude_md", "label": "CLAUDE.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "CLAUDE.md", "community": 17, "community_name": "Community 17", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "pedidos_express_server_claude_claude_md", "label": "CLAUDE.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CLAUDE.md", "community": 17, "community_name": "Community 17", "source_file": "CLAUDE.md", "file_type": "document", "degree": 7}, {"id": "pedidos_express_server_claude_project_overview", "label": "Project Overview", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Project Overview", "community": 17, "community_name": "Community 17", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "pedidos_express_server_claude_commands", "label": "Commands", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Commands", "community": 17, "community_name": "Community 17", "source_file": "CLAUDE.md", "file_type": "document", "degree": 5}, {"id": "pedidos_express_server_claude_development", "label": "Development", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Development", "community": 17, "community_name": "Community 17", "source_file": "CLAUDE.md", "file_type": "document", "degree": 2}, {"id": "pedidos_express_server_claude_codeblock_1", "label": "code:bash (python main.py)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "code:bash (python main.py)", "community": 17, "community_name": "Community 17", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "pedidos_express_server_claude_production", "label": "Production", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Production", "community": 17, "community_name": "Community 17", "source_file": "CLAUDE.md", "file_type": "document", "degree": 2}, {"id": "pedidos_express_server_claude_codeblock_2", "label": "code:bash (gunicorn -w 4 -k uvicorn.workers.UvicornWorker app:app --bin)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "code:bash (gunicorn -w 4 -k uvicorn.workers.UvicornWorker app:app --bin)", "community": 17, "community_name": "Community 17", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "pedidos_express_server_claude_frontend_tailwind_css", "label": "Frontend (Tailwind CSS)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend (Tailwind CSS)", "community": 17, "community_name": "Community 17", "source_file": "CLAUDE.md", "file_type": "document", "degree": 2}, {"id": "pedidos_express_server_claude_codeblock_3", "label": "code:bash (npm install)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "code:bash (npm install)", "community": 17, "community_name": "Community 17", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "pedidos_express_server_claude_requirements", "label": "Requirements", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Requirements", "community": 17, "community_name": "Community 17", "source_file": "CLAUDE.md", "file_type": "document", "degree": 2}, {"id": "pedidos_express_server_claude_codeblock_4", "label": "code:bash (pip install -r requirements.txt)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "code:bash (pip install -r requirements.txt)", "community": 17, "community_name": "Community 17", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "pedidos_express_server_claude_architecture", "label": "Architecture", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Architecture", "community": 17, "community_name": "Community 17", "source_file": "CLAUDE.md", "file_type": "document", "degree": 6}, {"id": "pedidos_express_server_claude_entry_point_flow", "label": "Entry Point Flow", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Entry Point Flow", "community": 17, "community_name": "Community 17", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "pedidos_express_server_claude_key_directories", "label": "Key Directories", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Key Directories", "community": 17, "community_name": "Community 17", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "pedidos_express_server_claude_dependencies", "label": "Dependencies", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Dependencies", "community": 17, "community_name": "Community 17", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "pedidos_express_server_claude_route_protection", "label": "Route Protection", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Route Protection", "community": 17, "community_name": "Community 17", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "pedidos_express_server_claude_configuration", "label": "Configuration", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Configuration", "community": 17, "community_name": "Community 17", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "pedidos_express_server_claude_commit_convention", "label": "Commit Convention", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Commit Convention", "community": 17, "community_name": "Community 17", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "pedidos_express_server_claude_database", "label": "Database", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Database", "community": 17, "community_name": "Community 17", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "pedidos_express_server_claude_graphify", "label": "graphify", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "graphify", "community": 17, "community_name": "Community 17", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "readme_md", "label": "README.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "README.md", "community": 15, "community_name": "Community 15", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "pedidos_express_server_readme_biergarten_klein_sistema_de_pedidos_express", "label": "**Biergarten Klein \\- Sistema de Pedidos Express**", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "**Biergarten Klein \\- Sistema de Pedidos Express**", "community": 15, "community_name": "Community 15", "source_file": "README.md", "file_type": "document", "degree": 7}, {"id": "pedidos_express_server_readme_puesta_en_marcha_getting_started", "label": "**\ud83d\ude80 Puesta en Marcha (Getting Started)**", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "**\ud83d\ude80 Puesta en Marcha (Getting Started)**", "community": 15, "community_name": "Community 15", "source_file": "README.md", "file_type": "document", "degree": 5}, {"id": "pedidos_express_server_readme_1_prerrequisitos", "label": "**1\\. Prerrequisitos**", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "**1\\. Prerrequisitos**", "community": 15, "community_name": "Community 15", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "pedidos_express_server_readme_2_instalaci_n", "label": "**2\\. Instalaci\u00f3n**", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "**2\\. Instalaci\u00f3n**", "community": 15, "community_name": "Community 15", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "pedidos_express_server_readme_3_variables_de_entorno_env", "label": "**3\\. Variables de Entorno (.env)**", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "**3\\. Variables de Entorno (.env)**", "community": 15, "community_name": "Community 15", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "pedidos_express_server_readme_4_ejecuci_n", "label": "**4\\. Ejecuci\u00f3n**", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "**4\\. Ejecuci\u00f3n**", "community": 15, "community_name": "Community 15", "source_file": "README.md", "file_type": "document", "degree": 3}, {"id": "pedidos_express_server_readme_modo_desarrollo", "label": "**Modo Desarrollo**", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "**Modo Desarrollo**", "community": 15, "community_name": "Community 15", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "pedidos_express_server_readme_modo_producci_n", "label": "**Modo Producci\u00f3n**", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "**Modo Producci\u00f3n**", "community": 15, "community_name": "Community 15", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "pedidos_express_server_readme_resumen_de_la_arquitectura", "label": "**\ud83c\udfd7\ufe0f Resumen de la Arquitectura**", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "**\ud83c\udfd7\ufe0f Resumen de la Arquitectura**", "community": 15, "community_name": "Community 15", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "pedidos_express_server_readme_caracter_sticas_principales", "label": "**\ud83e\udd16 Caracter\u00edsticas Principales**", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "**\ud83e\udd16 Caracter\u00edsticas Principales**", "community": 15, "community_name": "Community 15", "source_file": "README.md", "file_type": "document", "degree": 5}, {"id": "pedidos_express_server_readme_asistente_de_ia_camilo_klein", "label": "**Asistente de IA (Camilo Klein)**", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "**Asistente de IA (Camilo Klein)**", "community": 15, "community_name": "Community 15", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "pedidos_express_server_readme_gesti_n_de_pedidos_y_productos", "label": "**Gesti\u00f3n de Pedidos y Productos**", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "**Gesti\u00f3n de Pedidos y Productos**", "community": 15, "community_name": "Community 15", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "pedidos_express_server_readme_integraciones_de_hardware_y_externas", "label": "**Integraciones de Hardware y Externas**", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "**Integraciones de Hardware y Externas**", "community": 15, "community_name": "Community 15", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "pedidos_express_server_readme_seguridad", "label": "**Seguridad**", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "**Seguridad**", "community": 15, "community_name": "Community 15", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "pedidos_express_server_readme_api_endpoints_resumen", "label": "**\ud83d\udd0c API Endpoints (Resumen)**", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "**\ud83d\udd0c API Endpoints (Resumen)**", "community": 15, "community_name": "Community 15", "source_file": "README.md", "file_type": "document", "degree": 7}, {"id": "pedidos_express_server_readme_chat_asistente_ia", "label": "**Chat (Asistente IA)**", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "**Chat (Asistente IA)**", "community": 15, "community_name": "Community 15", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "pedidos_express_server_readme_productos", "label": "**Productos**", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "**Productos**", "community": 15, "community_name": "Community 15", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "pedidos_express_server_readme_pedidos", "label": "**Pedidos**", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "**Pedidos**", "community": 15, "community_name": "Community 15", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "pedidos_express_server_readme_usuarios", "label": "**Usuarios**", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "**Usuarios**", "community": 15, "community_name": "Community 15", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "pedidos_express_server_readme_ventas_sales", "label": "**Ventas (Sales)**", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "**Ventas (Sales)**", "community": 15, "community_name": "Community 15", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "pedidos_express_server_readme_frontend", "label": "**Frontend**", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "**Frontend**", "community": 15, "community_name": "Community 15", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "pedidos_express_server_readme_tecnolog_as_utilizadas", "label": "**\ud83d\udee0\ufe0f Tecnolog\u00edas Utilizadas**", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "**\ud83d\udee0\ufe0f Tecnolog\u00edas Utilizadas**", "community": 15, "community_name": "Community 15", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "pedidos_express_server_readme_logging_y_monitoreo", "label": "**\ud83d\udcdd Logging y Monitoreo**", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "**\ud83d\udcdd Logging y Monitoreo**", "community": 15, "community_name": "Community 15", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "agents_md", "label": "AGENTS.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "AGENTS.md", "community": 56, "community_name": "Community 56", "source_file": "AGENTS.md", "file_type": "document", "degree": 0}, {"id": "docs_migracion_fudo_toteat_md", "label": "migracion_fudo_toteat.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "migracion_fudo_toteat.md", "community": 12, "community_name": "Community 12", "source_file": "docs/migracion_fudo_toteat.md", "file_type": "document", "degree": 1}, {"id": "docs_migracion_fudo_toteat_auditor_a_fudo_toteat_e_impresoras", "label": "Auditor\u00eda Fudo \u2192 Toteat e Impresoras", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Auditor\u00eda Fudo \u2192 Toteat e Impresoras", "community": 12, "community_name": "Community 12", "source_file": "docs/migracion_fudo_toteat.md", "file_type": "document", "degree": 4}, {"id": "docs_migracion_fudo_toteat_1_auditor_a_del_uso_de_la_api_de_fudo", "label": "1. Auditor\u00eda del uso de la API de Fudo", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Auditor\u00eda del uso de la API de Fudo", "community": 12, "community_name": "Community 12", "source_file": "docs/migracion_fudo_toteat.md", "file_type": "document", "degree": 5}, {"id": "docs_migracion_fudo_toteat_1_1_funciones_definidas_en_fudo_fudo_py", "label": "1.1 Funciones definidas en `fudo/fudo.py`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "1.1 Funciones definidas en `fudo/fudo.py`", "community": 12, "community_name": "Community 12", "source_file": "docs/migracion_fudo_toteat.md", "file_type": "document", "degree": 1}, {"id": "docs_migracion_fudo_toteat_1_2_uso_por_archivo", "label": "1.2 Uso por archivo", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "1.2 Uso por archivo", "community": 12, "community_name": "Community 12", "source_file": "docs/migracion_fudo_toteat.md", "file_type": "document", "degree": 8}, {"id": "docs_migracion_fudo_toteat_routes_orders_py", "label": "`routes/orders.py`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "`routes/orders.py`", "community": 12, "community_name": "Community 12", "source_file": "docs/migracion_fudo_toteat.md", "file_type": "document", "degree": 1}, {"id": "docs_migracion_fudo_toteat_routes_products_py", "label": "`routes/products.py`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "`routes/products.py`", "community": 12, "community_name": "Community 12", "source_file": "docs/migracion_fudo_toteat.md", "file_type": "document", "degree": 1}, {"id": "docs_migracion_fudo_toteat_routes_store_py", "label": "`routes/store.py`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "`routes/store.py`", "community": 12, "community_name": "Community 12", "source_file": "docs/migracion_fudo_toteat.md", "file_type": "document", "degree": 1}, {"id": "docs_migracion_fudo_toteat_services_fudo_service_py", "label": "`services/fudo_service.py`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "`services/fudo_service.py`", "community": 12, "community_name": "Community 12", "source_file": "docs/migracion_fudo_toteat.md", "file_type": "document", "degree": 1}, {"id": "docs_migracion_fudo_toteat_services_data_service_py", "label": "`services/data_service.py`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "`services/data_service.py`", "community": 12, "community_name": "Community 12", "source_file": "docs/migracion_fudo_toteat.md", "file_type": "document", "degree": 1}, {"id": "docs_migracion_fudo_toteat_load_products_py", "label": "`load_products.py`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "`load_products.py`", "community": 12, "community_name": "Community 12", "source_file": "docs/migracion_fudo_toteat.md", "file_type": "document", "degree": 1}, {"id": "docs_migracion_fudo_toteat_update_prices_py", "label": "`update_prices.py`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "`update_prices.py`", "community": 12, "community_name": "Community 12", "source_file": "docs/migracion_fudo_toteat.md", "file_type": "document", "degree": 1}, {"id": "docs_migracion_fudo_toteat_1_3_resumen_por_funci_n", "label": "1.3 Resumen por funci\u00f3n", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "1.3 Resumen por funci\u00f3n", "community": 12, "community_name": "Community 12", "source_file": "docs/migracion_fudo_toteat.md", "file_type": "document", "degree": 1}, {"id": "docs_migracion_fudo_toteat_1_4_transformaciones_notables", "label": "1.4 Transformaciones notables", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "1.4 Transformaciones notables", "community": 12, "community_name": "Community 12", "source_file": "docs/migracion_fudo_toteat.md", "file_type": "document", "degree": 1}, {"id": "docs_migracion_fudo_toteat_2_sistema_de_impresoras", "label": "2. Sistema de impresoras", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Sistema de impresoras", "community": 12, "community_name": "Community 12", "source_file": "docs/migracion_fudo_toteat.md", "file_type": "document", "degree": 6}, {"id": "docs_migracion_fudo_toteat_2_1_arquitectura", "label": "2.1 Arquitectura", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "2.1 Arquitectura", "community": 12, "community_name": "Community 12", "source_file": "docs/migracion_fudo_toteat.md", "file_type": "document", "degree": 1}, {"id": "docs_migracion_fudo_toteat_2_2_endpoints_del_servidor_de_impresi_n", "label": "2.2 Endpoints del servidor de impresi\u00f3n", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "2.2 Endpoints del servidor de impresi\u00f3n", "community": 12, "community_name": "Community 12", "source_file": "docs/migracion_fudo_toteat.md", "file_type": "document", "degree": 1}, {"id": "docs_migracion_fudo_toteat_2_3_validaci_n_de_conectividad", "label": "2.3 Validaci\u00f3n de conectividad", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2.3 Validaci\u00f3n de conectividad", "community": 12, "community_name": "Community 12", "source_file": "docs/migracion_fudo_toteat.md", "file_type": "document", "degree": 2}, {"id": "docs_migracion_fudo_toteat_codeblock_1", "label": "code:python (printers = {\"ServerPrincipal\": \"10.10.12.3\"})", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "code:python (printers = {"ServerPrincipal": "10.10.12.3"})", "community": 12, "community_name": "Community 12", "source_file": "docs/migracion_fudo_toteat.md", "file_type": "document", "degree": 1}, {"id": "docs_migracion_fudo_toteat_2_4_acoplamiento_con_fudo", "label": "2.4 Acoplamiento con Fudo", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "2.4 Acoplamiento con Fudo", "community": 12, "community_name": "Community 12", "source_file": "docs/migracion_fudo_toteat.md", "file_type": "document", "degree": 1}, {"id": "docs_migracion_fudo_toteat_2_5_configuraci_n", "label": "2.5 Configuraci\u00f3n", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "2.5 Configuraci\u00f3n", "community": 12, "community_name": "Community 12", "source_file": "docs/migracion_fudo_toteat.md", "file_type": "document", "degree": 1}, {"id": "docs_migracion_fudo_toteat_3_plan_de_migraci_n_usando_toteat_toteat_py", "label": "3. Plan de migraci\u00f3n usando `toteat/toteat.py`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Plan de migraci\u00f3n usando `toteat/toteat.py`", "community": 12, "community_name": "Community 12", "source_file": "docs/migracion_fudo_toteat.md", "file_type": "document", "degree": 5}, {"id": "docs_migracion_fudo_toteat_3_1_variables_de_entorno_nuevas", "label": "3.1 Variables de entorno nuevas", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3.1 Variables de entorno nuevas", "community": 12, "community_name": "Community 12", "source_file": "docs/migracion_fudo_toteat.md", "file_type": "document", "degree": 2}, {"id": "docs_migracion_fudo_toteat_codeblock_2", "label": "code:env (TOTEAT_API_TOKEN=...)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "code:env (TOTEAT_API_TOKEN=...)", "community": 12, "community_name": "Community 12", "source_file": "docs/migracion_fudo_toteat.md", "file_type": "document", "degree": 1}, {"id": "docs_migracion_fudo_toteat_3_2_equivalencias", "label": "3.2 Equivalencias", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "3.2 Equivalencias", "community": 12, "community_name": "Community 12", "source_file": "docs/migracion_fudo_toteat.md", "file_type": "document", "degree": 1}, {"id": "docs_migracion_fudo_toteat_3_3_diferencias_funcionales_conocidas", "label": "3.3 Diferencias funcionales conocidas", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "3.3 Diferencias funcionales conocidas", "community": 12, "community_name": "Community 12", "source_file": "docs/migracion_fudo_toteat.md", "file_type": "document", "degree": 1}, {"id": "docs_migracion_fudo_toteat_3_4_auditor_a_r_pida_post_migraci_n", "label": "3.4 Auditor\u00eda r\u00e1pida post-migraci\u00f3n", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 0, "color": "#ffffff"}, "title": "3.4 Auditor\u00eda r\u00e1pida post-migraci\u00f3n", "community": 12, "community_name": "Community 12", "source_file": "docs/migracion_fudo_toteat.md", "file_type": "document", "degree": 1}];
- const RAW_EDGES = [{"from": "app_py", "to": "pedidos_express_server_app_create_app", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_py", "to": "pedidos_express_server_app_setup_routes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_app_rationale_17", "to": "pedidos_express_server_app_create_app", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_app_create_app", "to": "services_email_service_initialize_email_sender", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "pedidos_express_server_main_main", "to": "pedidos_express_server_app_create_app", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "pedidos_express_server_app_rationale_87", "to": "pedidos_express_server_app_setup_routes", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_main_main", "to": "pedidos_express_server_app_setup_routes", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "main_py", "to": "pedidos_express_server_main_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_main_rationale_14", "to": "pedidos_express_server_main_main", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_main_main", "to": "config_settings_validate_config", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "pedidos_express_server_main_main", "to": "services_data_service_initialize_db", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "update_prices_py", "to": "pedidos_express_server_update_prices_update_prices", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "update_prices_py", "to": "pedidos_express_server_update_prices_add_missing_products", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_update_prices_rationale_39", "to": "pedidos_express_server_update_prices_add_missing_products", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "enums_locations_py", "to": "enum", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "enums_locations_py", "to": "enums_locations_locations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "enums_locations_py", "to": "enums_locations_get_all", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "enums_locations_locations", "to": "enum", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "enums_locations_rationale_4", "to": "enums_locations_locations", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_recovery_service_py", "to": "services_recovery_service_redisrecoverydata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_recovery_service_py", "to": "services_recovery_service_generate_recovery_key", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_recovery_service_py", "to": "services_recovery_service_add_token", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_recovery_service_py", "to": "services_recovery_service_get_token", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_recovery_service_py", "to": "services_recovery_service_get_recovery_data", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_recovery_service_redisrecoverydata", "to": "basemodel", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_recovery_service_get_recovery_data", "to": "services_recovery_service_redisrecoverydata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_orders_comparepricesresponse", "to": "basemodel", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_store_appstatebody", "to": "basemodel", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_security_tokendata", "to": "basemodel", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_items_item", "to": "basemodel", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_items_order", "to": "basemodel", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_items_orderbilling", "to": "basemodel", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_items_product", "to": "basemodel", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_items_producteditrequest", "to": "basemodel", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_items_productcreaterequest", "to": "basemodel", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_blacklist_blacklist", "to": "basemodel", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_sales_promotion", "to": "basemodel", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_sales_itemweb", "to": "basemodel", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_sales_orderweb", "to": "basemodel", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_sales_sale", "to": "basemodel", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_chat_message", "to": "basemodel", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_chat_chatcompletionrequest", "to": "basemodel", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_chat_notifyrequest", "to": "basemodel", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_user_useridrequest", "to": "basemodel", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_user_registeruserrequest", "to": "basemodel", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_user_forceregisteruserrequest", "to": "basemodel", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_user_userrewardrequest", "to": "basemodel", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_user_pinuserrequest", "to": "basemodel", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_user_user", "to": "basemodel", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_user_usermail", "to": "basemodel", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_user_loginrequest", "to": "basemodel", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_user_pinrecoveryrequest", "to": "basemodel", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_user_pinrecoveryvalidaterequest", "to": "basemodel", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_fudo_service_py", "to": "services_fudo_service_add_product_to_fudo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_fudo_service_py", "to": "services_fudo_service_get_products_by_table", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_fudo_service_rationale_7", "to": "services_fudo_service_add_product_to_fudo", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_orders_printer_order", "to": "services_fudo_service_add_product_to_fudo", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_fudo_service_rationale_28", "to": "services_fudo_service_get_products_by_table", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_products_get_table_items", "to": "services_fudo_service_get_products_by_table", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_email_service_py", "to": "services_email_service_emailsender", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_py", "to": "services_email_service_initialize_email_sender", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_py", "to": "services_email_service_get_email_sender", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_rationale_1", "to": "services_email_service_py", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_emailsender", "to": "services_email_service_emailsender_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_emailsender", "to": "services_email_service_emailsender_connect", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_emailsender", "to": "services_email_service_emailsender_close", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_emailsender", "to": "services_email_service_emailsender_create_fresh_connection", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_emailsender", "to": "services_email_service_emailsender_start_queue_worker", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_emailsender", "to": "services_email_service_emailsender_stop_queue_worker", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_emailsender", "to": "services_email_service_emailsender_process_email_queue", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_emailsender", "to": "services_email_service_emailsender_send_email_with_retry", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_emailsender", "to": "services_email_service_emailsender_send_email_immediately", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_emailsender", "to": "services_email_service_emailsender_send_email", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_emailsender", "to": "services_email_service_emailsender_send_email_sync", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_emailsender", "to": "services_email_service_emailsender_get_queue_size", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_emailsender", "to": "services_email_service_emailsender_is_queue_processing", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_emailsender", "to": "services_email_service_emailsender_clear_queue", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_initialize_email_sender", "to": "services_email_service_emailsender", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_emailsender_init", "to": "services_email_service_emailsender_start_queue_worker", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_initialize_email_sender", "to": "services_email_service_emailsender_connect", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_rationale_66", "to": "services_email_service_emailsender_connect", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_emailsender_close", "to": "services_email_service_emailsender_stop_queue_worker", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_rationale_91", "to": "services_email_service_emailsender_close", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_emailsender_send_email_immediately", "to": "services_email_service_emailsender_create_fresh_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_emailsender_send_email_sync", "to": "services_email_service_emailsender_create_fresh_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_rationale_108", "to": "services_email_service_emailsender_create_fresh_connection", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_rationale_120", "to": "services_email_service_emailsender_start_queue_worker", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_rationale_129", "to": "services_email_service_emailsender_stop_queue_worker", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_emailsender_process_email_queue", "to": "services_email_service_emailsender_send_email_with_retry", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_rationale_148", "to": "services_email_service_emailsender_process_email_queue", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_emailsender_send_email_with_retry", "to": "services_email_service_emailsender_send_email_immediately", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_rationale_187", "to": "services_email_service_emailsender_send_email_with_retry", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_rationale_202", "to": "services_email_service_emailsender_send_email_immediately", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_rationale_238", "to": "services_email_service_emailsender_send_email", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_rationale_254", "to": "services_email_service_emailsender_send_email_sync", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_rationale_287", "to": "services_email_service_emailsender_get_queue_size", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_rationale_291", "to": "services_email_service_emailsender_is_queue_processing", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_rationale_295", "to": "services_email_service_emailsender_clear_queue", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_get_email_sender", "to": "services_email_service_initialize_email_sender", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_rationale_311", "to": "services_email_service_initialize_email_sender", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_email_service_rationale_323", "to": "services_email_service_get_email_sender", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_orders_printer_order", "to": "services_email_service_get_email_sender", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_register_user", "to": "services_email_service_get_email_sender", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_change_pin", "to": "services_email_service_get_email_sender", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_pin_forgot_post", "to": "services_email_service_get_email_sender", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_print_service_py", "to": "services_print_service_get_printer_url", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_print_service_py", "to": "services_print_service_print_order", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_print_service_py", "to": "services_print_service_print_ticket", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_print_service_py", "to": "services_print_service_print_billing", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_print_service_py", "to": "services_print_service_get_status", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_print_service_print_order", "to": "services_print_service_get_printer_url", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_print_service_print_ticket", "to": "services_print_service_get_printer_url", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_print_service_print_billing", "to": "services_print_service_get_printer_url", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_print_service_get_status", "to": "services_print_service_get_printer_url", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_print_service_rationale_20", "to": "services_print_service_print_order", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_print_service_rationale_73", "to": "services_print_service_print_ticket", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_products_get_free_beer", "to": "services_print_service_print_ticket", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_reward_user", "to": "services_print_service_print_ticket", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_print_service_rationale_107", "to": "services_print_service_print_billing", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_print_service_rationale_146", "to": "services_print_service_get_status", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_py", "to": "abc", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_py", "to": "services_data_service_basedataservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_py", "to": "services_data_service_userdataservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_py", "to": "services_data_service_blacklistdataservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_py", "to": "services_data_service_productdataservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_py", "to": "services_data_service_salesdataservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_py", "to": "services_data_service_dataservicefactory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_py", "to": "services_data_service_get_user_service", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_py", "to": "services_data_service_get_blacklist_service", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_py", "to": "services_data_service_get_product_service", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_py", "to": "services_data_service_get_sales_service", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_py", "to": "services_data_service_load_bg_data", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_py", "to": "services_data_service_initialize_db", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_basedataservice", "to": "abc", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_basedataservice", "to": "services_data_service_basedataservice_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_basedataservice", "to": "services_data_service_basedataservice_get_connection", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_userdataservice", "to": "services_data_service_basedataservice", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_blacklistdataservice", "to": "services_data_service_basedataservice", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice", "to": "services_data_service_basedataservice", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice", "to": "services_data_service_basedataservice", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_88", "to": "services_data_service_basedataservice", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_basedataservice", "to": "models_user_user", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_basedataservice", "to": "models_items_product", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_basedataservice", "to": "models_sales_sale", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_basedataservice", "to": "models_blacklist_blacklist", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_userdataservice_create", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_userdataservice_get_all", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_userdataservice_get_by_id", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_userdataservice_get_by_email", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_userdataservice_permissions", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_userdataservice_get_by_rut", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_userdataservice_get_next_id", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_userdataservice_update", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_userdataservice_set_reward_progress", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_userdataservice_delete", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_userdataservice_update_kleincoins", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_userdataservice_get_kleincoins", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_blacklistdataservice_create", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_blacklistdataservice_get_all", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_blacklistdataservice_get_by_id", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_blacklistdataservice_get_blacklisted_user_ids", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_blacklistdataservice_is_user_blacklisted", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_blacklistdataservice_delete", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_blacklistdataservice_remove_user_from_blacklist", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice_create", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice_load_data", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice_get_by_id", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice_get_by_type", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice_search_by_name", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice_update", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice_get_active_products", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice_get_inactive_products", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice_delete", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice_create", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice_add_product_to_sale", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice_add_products_to_sale", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice_get_all", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice_get_by_id", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice_get_by_fudo_id", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice_get_by_user", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice_get_sale_products_ids", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice_get_sale_products", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice_get_by_table", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice_update_product_quantity", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice_get_product_quantity_in_sale", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice_update", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice_delete", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice_remove_product_from_sale", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice_decrease_product_quantity", "to": "services_data_service_basedataservice_get_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_94", "to": "services_data_service_basedataservice_get_connection", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_userdataservice", "to": "services_data_service_userdataservice_create", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_userdataservice", "to": "services_data_service_userdataservice_get_all", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_userdataservice", "to": "services_data_service_userdataservice_get_by_id", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_userdataservice", "to": "services_data_service_userdataservice_get_by_email", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_userdataservice", "to": "services_data_service_userdataservice_login", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_userdataservice", "to": "services_data_service_userdataservice_permissions", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_userdataservice", "to": "services_data_service_userdataservice_get_by_rut", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_userdataservice", "to": "services_data_service_userdataservice_get_next_id", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_userdataservice", "to": "services_data_service_userdataservice_update", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_userdataservice", "to": "services_data_service_userdataservice_set_reward_progress", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_userdataservice", "to": "services_data_service_userdataservice_delete", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_userdataservice", "to": "services_data_service_userdataservice_update_kleincoins", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_userdataservice", "to": "services_data_service_userdataservice_get_kleincoins", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_get_user_service", "to": "services_data_service_userdataservice", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_107", "to": "services_data_service_userdataservice", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_userdataservice", "to": "models_user_user", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_userdataservice", "to": "models_items_product", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_userdataservice", "to": "models_sales_sale", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_userdataservice", "to": "models_blacklist_blacklist", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "auth_security_tokendata", "to": "services_data_service_userdataservice", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_rationale_110", "to": "services_data_service_userdataservice_create", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_135", "to": "services_data_service_userdataservice_get_all", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_userdataservice_get_all", "to": "models_user_user", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_rationale_156", "to": "services_data_service_userdataservice_get_by_id", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_userdataservice_get_by_id", "to": "models_user_user", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_userdataservice_login", "to": "services_data_service_userdataservice_get_by_email", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_userdataservice_get_by_email", "to": "models_user_user", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_rationale_199", "to": "services_data_service_userdataservice_login", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_userdataservice_get_by_rut", "to": "models_user_user", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_rationale_265", "to": "services_data_service_userdataservice_update", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_303", "to": "services_data_service_userdataservice_set_reward_progress", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_322", "to": "services_data_service_userdataservice_delete", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_336", "to": "services_data_service_userdataservice_update_kleincoins", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_356", "to": "services_data_service_userdataservice_get_kleincoins", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_blacklistdataservice", "to": "services_data_service_blacklistdataservice_create", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_blacklistdataservice", "to": "services_data_service_blacklistdataservice_get_all", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_blacklistdataservice", "to": "services_data_service_blacklistdataservice_get_by_id", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_blacklistdataservice", "to": "services_data_service_blacklistdataservice_get_blacklisted_user_ids", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_blacklistdataservice", "to": "services_data_service_blacklistdataservice_is_user_blacklisted", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_blacklistdataservice", "to": "services_data_service_blacklistdataservice_update", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_blacklistdataservice", "to": "services_data_service_blacklistdataservice_delete", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_blacklistdataservice", "to": "services_data_service_blacklistdataservice_remove_user_from_blacklist", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_get_blacklist_service", "to": "services_data_service_blacklistdataservice", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_373", "to": "services_data_service_blacklistdataservice", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_blacklistdataservice", "to": "models_user_user", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_blacklistdataservice", "to": "models_items_product", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_blacklistdataservice", "to": "models_sales_sale", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_blacklistdataservice", "to": "models_blacklist_blacklist", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_rationale_376", "to": "services_data_service_blacklistdataservice_create", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_397", "to": "services_data_service_blacklistdataservice_get_all", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_blacklistdataservice_get_all", "to": "models_blacklist_blacklist", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_rationale_418", "to": "services_data_service_blacklistdataservice_get_by_id", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_blacklistdataservice_get_by_id", "to": "models_blacklist_blacklist", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_rationale_440", "to": "services_data_service_blacklistdataservice_get_blacklisted_user_ids", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_449", "to": "services_data_service_blacklistdataservice_is_user_blacklisted", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_459", "to": "services_data_service_blacklistdataservice_update", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_465", "to": "services_data_service_blacklistdataservice_delete", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_479", "to": "services_data_service_blacklistdataservice_remove_user_from_blacklist", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice", "to": "services_data_service_productdataservice_create", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice", "to": "services_data_service_productdataservice_load_data", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice", "to": "services_data_service_productdataservice_get_all", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice", "to": "services_data_service_productdataservice_get_by_id", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice", "to": "services_data_service_productdataservice_get_by_type", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice", "to": "services_data_service_productdataservice_search_by_name", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice", "to": "services_data_service_productdataservice_get_products", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice", "to": "services_data_service_productdataservice_image_process", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice", "to": "services_data_service_productdataservice_update", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice", "to": "services_data_service_productdataservice_get_active_products", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice", "to": "services_data_service_productdataservice_get_inactive_products", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice", "to": "services_data_service_productdataservice_activate_product", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice", "to": "services_data_service_productdataservice_deactivate_product", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice", "to": "services_data_service_productdataservice_is_product_active", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice", "to": "services_data_service_productdataservice_update_cache", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice", "to": "services_data_service_productdataservice_delete", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_get_product_service", "to": "services_data_service_productdataservice", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_initialize_db", "to": "services_data_service_productdataservice", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice", "to": "models_user_user", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_productdataservice", "to": "models_items_product", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_productdataservice", "to": "models_sales_sale", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_productdataservice", "to": "models_blacklist_blacklist", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_store_appstatebody", "to": "services_data_service_productdataservice", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_productdataservice_create", "to": "services_data_service_productdataservice_image_process", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_503", "to": "services_data_service_productdataservice_create", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice_load_data", "to": "services_data_service_salesdataservice_create", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_initialize_db", "to": "services_data_service_productdataservice_load_data", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_531", "to": "services_data_service_productdataservice_load_data", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_551", "to": "services_data_service_productdataservice_get_all", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice_get_all", "to": "models_items_product", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_productdataservice_get_by_id", "to": "models_items_product", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_productdataservice_get_by_type", "to": "models_items_product", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_rationale_637", "to": "services_data_service_productdataservice_search_by_name", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice_search_by_name", "to": "models_items_product", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_productdataservice_get_products", "to": "services_data_service_salesdataservice_get_all", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_659", "to": "services_data_service_productdataservice_get_products", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice_update", "to": "services_data_service_productdataservice_image_process", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_666", "to": "services_data_service_productdataservice_image_process", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice_update", "to": "services_data_service_salesdataservice_get_by_id", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_677", "to": "services_data_service_productdataservice_update", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_735", "to": "services_data_service_productdataservice_get_active_products", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice_get_active_products", "to": "models_items_product", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_rationale_757", "to": "services_data_service_productdataservice_get_inactive_products", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice_get_inactive_products", "to": "models_items_product", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_productdataservice_activate_product", "to": "services_data_service_salesdataservice_update", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_779", "to": "services_data_service_productdataservice_activate_product", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice_deactivate_product", "to": "services_data_service_salesdataservice_update", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_783", "to": "services_data_service_productdataservice_deactivate_product", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice_is_product_active", "to": "services_data_service_salesdataservice_get_by_id", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_787", "to": "services_data_service_productdataservice_is_product_active", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice_update_cache", "to": "services_data_service_salesdataservice_get_all", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_productdataservice_delete", "to": "services_data_service_salesdataservice_get_by_id", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_798", "to": "services_data_service_productdataservice_delete", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice", "to": "services_data_service_salesdataservice_create", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice", "to": "services_data_service_salesdataservice_add_product_to_sale", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice", "to": "services_data_service_salesdataservice_add_products_to_sale", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice", "to": "services_data_service_salesdataservice_get_all", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice", "to": "services_data_service_salesdataservice_get_by_id", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice", "to": "services_data_service_salesdataservice_get_by_fudo_id", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice", "to": "services_data_service_salesdataservice_get_by_user", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice", "to": "services_data_service_salesdataservice_get_sale_products_ids", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice", "to": "services_data_service_salesdataservice_get_sale_products", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice", "to": "services_data_service_salesdataservice_get_by_table", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice", "to": "services_data_service_salesdataservice_update_product_quantity", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice", "to": "services_data_service_salesdataservice_get_product_quantity_in_sale", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice", "to": "services_data_service_salesdataservice_update", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice", "to": "services_data_service_salesdataservice_delete", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice", "to": "services_data_service_salesdataservice_remove_product_from_sale", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice", "to": "services_data_service_salesdataservice_decrease_product_quantity", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_get_sales_service", "to": "services_data_service_salesdataservice", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_817", "to": "services_data_service_salesdataservice", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice", "to": "models_user_user", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_salesdataservice", "to": "models_items_product", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_salesdataservice", "to": "models_sales_sale", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_salesdataservice", "to": "models_blacklist_blacklist", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_rationale_820", "to": "services_data_service_salesdataservice_create", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_862", "to": "services_data_service_salesdataservice_add_product_to_sale", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_882", "to": "services_data_service_salesdataservice_add_products_to_sale", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice_get_all", "to": "services_data_service_salesdataservice_get_sale_products", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_909", "to": "services_data_service_salesdataservice_get_all", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice_get_all", "to": "models_sales_sale", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_salesdataservice_get_by_id", "to": "models_sales_sale", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_salesdataservice_get_by_fudo_id", "to": "models_sales_sale", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_salesdataservice_get_by_user", "to": "services_data_service_salesdataservice_get_sale_products", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice_get_by_user", "to": "models_sales_sale", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_rationale_1017", "to": "services_data_service_salesdataservice_get_sale_products_ids", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_1028", "to": "services_data_service_salesdataservice_get_sale_products", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice_get_sale_products", "to": "models_items_product", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_rationale_1056", "to": "services_data_service_salesdataservice_get_by_table", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_salesdataservice_get_by_table", "to": "models_sales_sale", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_rationale_1085", "to": "services_data_service_salesdataservice_update_product_quantity", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_1105", "to": "services_data_service_salesdataservice_get_product_quantity_in_sale", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_1118", "to": "services_data_service_salesdataservice_update", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_1150", "to": "services_data_service_salesdataservice_delete", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_1172", "to": "services_data_service_salesdataservice_remove_product_from_sale", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_1189", "to": "services_data_service_salesdataservice_decrease_product_quantity", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_rationale_1232", "to": "services_data_service_dataservicefactory", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_data_service_dataservicefactory", "to": "models_user_user", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_dataservicefactory", "to": "models_items_product", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_dataservicefactory", "to": "models_sales_sale", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_dataservicefactory", "to": "models_blacklist_blacklist", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_orders_comparepricesresponse", "to": "services_data_service_dataservicefactory", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_data_service_rationale_1257", "to": "services_data_service_load_bg_data", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_openai_service_openai_service_py", "to": "openai_service_openai_service_get_relevant_context", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_openai_service_openai_service_py", "to": "openai_service_openai_service_generate_completion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_openai_service_openai_service_py", "to": "openai_service_openai_service_admin_completion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "openai_service_openai_service_generate_completion", "to": "openai_service_openai_service_get_relevant_context", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_chat_chat_irc_endpoint", "to": "openai_service_openai_service_generate_completion", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "openai_service_openai_service_rationale_123", "to": "openai_service_openai_service_admin_completion", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_chat_notify_users", "to": "openai_service_openai_service_admin_completion", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_openai_service_openai_tools_py", "to": "openai_service_openai_tools_feedback", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "openai_service_openai_tools_rationale_24", "to": "openai_service_openai_tools_feedback", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_products_py", "to": "routes_products_apply_promo_price", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_products_py", "to": "routes_products_get_products", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_products_py", "to": "routes_products_get_product", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_products_py", "to": "routes_products_get_free_beer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_products_py", "to": "routes_products_create_product", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_products_py", "to": "routes_products_switch_product_status", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_products_py", "to": "routes_products_delete_product", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_products_py", "to": "routes_products_edit_product", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_products_py", "to": "routes_products_get_table_items", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_products_rationale_3", "to": "routes_products_py", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_products_rationale_47", "to": "routes_products_apply_promo_price", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_products_rationale_62", "to": "routes_products_get_products", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_products_get_products", "to": "utils_responses_success_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_products_rationale_83", "to": "routes_products_get_product", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_products_get_product", "to": "utils_responses_success_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_products_get_product", "to": "utils_responses_error_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_products_rationale_107", "to": "routes_products_get_free_beer", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_products_get_free_beer", "to": "utils_responses_success_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_products_get_free_beer", "to": "utils_responses_error_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_products_rationale_129", "to": "routes_products_create_product", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_products_create_product", "to": "utils_responses_success_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_products_create_product", "to": "utils_responses_error_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_products_rationale_153", "to": "routes_products_switch_product_status", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_products_switch_product_status", "to": "utils_responses_error_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_products_switch_product_status", "to": "utils_responses_success_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_products_rationale_184", "to": "routes_products_delete_product", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_products_delete_product", "to": "utils_responses_success_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_products_delete_product", "to": "utils_responses_error_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_products_rationale_211", "to": "routes_products_edit_product", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_products_edit_product", "to": "utils_responses_error_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_products_edit_product", "to": "utils_responses_success_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_products_rationale_243", "to": "routes_products_get_table_items", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_products_get_table_items", "to": "utils_responses_error_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_products_get_table_items", "to": "utils_responses_success_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_sales_py", "to": "routes_sales_get_user_sales", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_sales_get_user_sales", "to": "utils_responses_error_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_sales_get_user_sales", "to": "utils_responses_success_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_debug_py", "to": "routes_debug_validate_ws_token", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_debug_py", "to": "routes_debug_websocket_endpoint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_debug_websocket_endpoint", "to": "routes_debug_validate_ws_token", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_debug_rationale_16", "to": "routes_debug_validate_ws_token", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_static_py", "to": "routes_static_nocachestaticfiles", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_static_py", "to": "routes_static_serve_app_html", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_static_py", "to": "routes_static_serve_register_html", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_static_py", "to": "routes_static_mount_register_static_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_static_py", "to": "routes_static_mount_main_static_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_static_py", "to": "routes_static_serve_image", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_static_nocachestaticfiles", "to": "staticfiles", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_static_nocachestaticfiles", "to": "routes_static_nocachestaticfiles_get_response", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_static_mount_register_static_files", "to": "routes_static_nocachestaticfiles", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_static_mount_main_static_files", "to": "routes_static_nocachestaticfiles", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_static_rationale_10", "to": "routes_static_nocachestaticfiles", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_static_rationale_13", "to": "routes_static_nocachestaticfiles_get_response", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_static_rationale_25", "to": "routes_static_serve_app_html", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_static_rationale_39", "to": "routes_static_serve_register_html", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_static_rationale_53", "to": "routes_static_mount_register_static_files", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_static_rationale_61", "to": "routes_static_serve_image", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_orders_py", "to": "routes_orders_comparepricesresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_orders_py", "to": "routes_orders_compare_prices", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_orders_py", "to": "routes_orders_printer_order", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_orders_compare_prices", "to": "routes_orders_comparepricesresponse", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_orders_comparepricesresponse", "to": "models_sales_itemweb", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_orders_comparepricesresponse", "to": "models_sales_orderweb", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_orders_comparepricesresponse", "to": "models_items_item", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_orders_comparepricesresponse", "to": "models_items_order", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_orders_comparepricesresponse", "to": "models_items_product", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_orders_comparepricesresponse", "to": "models_user_user", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_orders_comparepricesresponse", "to": "config_messages_errorresponse", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_orders_comparepricesresponse", "to": "config_messages_successresponse", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_orders_printer_order", "to": "routes_orders_compare_prices", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_orders_rationale_45", "to": "routes_orders_compare_prices", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_orders_rationale_74", "to": "routes_orders_printer_order", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_orders_printer_order", "to": "utils_responses_error_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_orders_printer_order", "to": "utils_responses_success_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_orders_printer_order", "to": "models_items_item", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_orders_printer_order", "to": "models_items_order", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_chat_py", "to": "routes_chat_chat_irc_endpoint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_chat_py", "to": "routes_chat_notify_users", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_chat_py", "to": "routes_chat_get_connected_users", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_chat_py", "to": "routes_chat_get_online_user_count", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_chat_rationale_24", "to": "routes_chat_chat_irc_endpoint", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_chat_chat_irc_endpoint", "to": "auth_security_get_current_user", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_chat_notify_users", "to": "utils_responses_success_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_chat_rationale_164", "to": "routes_chat_get_connected_users", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_chat_get_connected_users", "to": "utils_responses_success_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_chat_rationale_175", "to": "routes_chat_get_online_user_count", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_chat_get_online_user_count", "to": "utils_responses_success_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_py", "to": "routes_users_exists_user", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_users_py", "to": "routes_users_register_user", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_users_py", "to": "routes_users_create_user", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_users_py", "to": "routes_users_force_register_user", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_users_py", "to": "routes_users_login_user", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_users_py", "to": "routes_users_guest_login", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_users_py", "to": "routes_users_delete_user", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_users_py", "to": "routes_users_change_pin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_users_py", "to": "routes_users_reward_user", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_users_py", "to": "routes_users_get_cur_user", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_users_py", "to": "routes_users_get_all_users", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_users_py", "to": "routes_users_get_next_user_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_users_py", "to": "routes_users_verify_user", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_users_py", "to": "routes_users_pin_forgot_get", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_users_py", "to": "routes_users_pin_forgot_post", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_users_py", "to": "routes_users_pin_forgot_validate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_users_exists_user", "to": "utils_responses_success_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_exists_user", "to": "utils_responses_error_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_register_user", "to": "utils_rut_validate_rut", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_register_user", "to": "utils_responses_error_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_register_user", "to": "utils_responses_success_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_rationale_114", "to": "routes_users_create_user", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_users_create_user", "to": "utils_responses_error_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_create_user", "to": "utils_responses_success_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_create_user", "to": "auth_security_generate_token", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_rationale_143", "to": "routes_users_force_register_user", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_users_force_register_user", "to": "utils_responses_error_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_force_register_user", "to": "utils_responses_success_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_force_register_user", "to": "auth_security_generate_token", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_rationale_168", "to": "routes_users_login_user", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_users_login_user", "to": "utils_responses_error_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_login_user", "to": "utils_responses_success_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_login_user", "to": "auth_security_generate_token", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_guest_login", "to": "auth_security_generate_token", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_guest_login", "to": "utils_responses_success_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_delete_user", "to": "utils_responses_error_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_delete_user", "to": "utils_responses_success_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_change_pin", "to": "utils_responses_error_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_change_pin", "to": "utils_responses_success_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_rationale_306", "to": "routes_users_reward_user", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_users_reward_user", "to": "utils_responses_error_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_reward_user", "to": "utils_responses_success_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_rationale_323", "to": "routes_users_get_cur_user", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_users_get_cur_user", "to": "utils_responses_success_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_get_all_users", "to": "utils_responses_success_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_get_next_user_id", "to": "utils_responses_success_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_rationale_359", "to": "routes_users_pin_forgot_get", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_users_rationale_367", "to": "routes_users_pin_forgot_post", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_users_pin_forgot_post", "to": "utils_responses_error_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_pin_forgot_post", "to": "utils_responses_success_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_rationale_385", "to": "routes_users_pin_forgot_validate", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_users_pin_forgot_validate", "to": "utils_responses_error_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_users_pin_forgot_validate", "to": "utils_responses_success_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_store_py", "to": "routes_store_appstatebody", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_store_py", "to": "routes_store_set_store_state", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_store_py", "to": "routes_store_update_cache", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_store_py", "to": "routes_store_get_table_exists", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_store_py", "to": "routes_store_get_store_state", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routes_store_appstatebody", "to": "models_user_user", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_store_set_store_state", "to": "utils_responses_success_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_store_update_cache", "to": "utils_responses_success_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_store_get_table_exists", "to": "utils_responses_success_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "routes_store_get_store_state", "to": "utils_responses_success_response", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "toteat_toteat_py", "to": "toteat_toteat_auth_params", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_py", "to": "toteat_toteat_get", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_py", "to": "toteat_toteat_post", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_py", "to": "toteat_toteat_persist_table_order", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_py", "to": "toteat_toteat_load_table_order", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_py", "to": "toteat_toteat_clear_table_order", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_py", "to": "toteat_toteat_to_fudo_product", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_py", "to": "toteat_toteat_get_token", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_py", "to": "toteat_toteat_clear_token", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_py", "to": "toteat_toteat_fetch_menu", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_py", "to": "toteat_toteat_get_modifiers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_py", "to": "toteat_toteat_get_categories", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_py", "to": "toteat_toteat_get_category_dict", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_py", "to": "toteat_toteat_get_category", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_py", "to": "toteat_toteat_get_product", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_py", "to": "toteat_toteat_get_products", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_py", "to": "toteat_toteat_get_all_indexed_products", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_py", "to": "toteat_toteat_get_all_products", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_py", "to": "toteat_toteat_fetch_tables", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_py", "to": "toteat_toteat_to_fudo_table", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_py", "to": "toteat_toteat_discover_open_order_for_table", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_py", "to": "toteat_toteat_get_table", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_py", "to": "toteat_toteat_get_active_sale", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_py", "to": "toteat_toteat_get_sale", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_py", "to": "toteat_toteat_table_id_for_pending", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_py", "to": "toteat_toteat_create_sale", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_py", "to": "toteat_toteat_build_line", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_py", "to": "toteat_toteat_post_order", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_py", "to": "toteat_toteat_create_item", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_py", "to": "toteat_toteat_get_table_items", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_py", "to": "toteat_toteat_fetch_page", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_py", "to": "toteat_toteat_smoke_tests", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_rationale_1", "to": "toteat_toteat_py", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_get", "to": "toteat_toteat_auth_params", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_post", "to": "toteat_toteat_auth_params", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_fetch_menu", "to": "toteat_toteat_get", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_fetch_tables", "to": "toteat_toteat_get", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_discover_open_order_for_table", "to": "toteat_toteat_get", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_get_sale", "to": "toteat_toteat_get", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_post_order", "to": "toteat_toteat_post", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_to_fudo_table", "to": "toteat_toteat_persist_table_order", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_create_item", "to": "toteat_toteat_persist_table_order", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_to_fudo_table", "to": "toteat_toteat_load_table_order", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_create_item", "to": "toteat_toteat_load_table_order", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_get_modifiers", "to": "toteat_toteat_to_fudo_product", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_get_product", "to": "toteat_toteat_to_fudo_product", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_get_products", "to": "toteat_toteat_to_fudo_product", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_get_all_indexed_products", "to": "toteat_toteat_to_fudo_product", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_smoke_tests", "to": "toteat_toteat_get_token", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_rationale_233", "to": "toteat_toteat_get_token", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_rationale_238", "to": "toteat_toteat_clear_token", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_get_modifiers", "to": "toteat_toteat_fetch_menu", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_get_categories", "to": "toteat_toteat_fetch_menu", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_get_product", "to": "toteat_toteat_fetch_menu", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_get_products", "to": "toteat_toteat_fetch_menu", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_smoke_tests", "to": "toteat_toteat_get_modifiers", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_rationale_259", "to": "toteat_toteat_get_modifiers", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_get_category_dict", "to": "toteat_toteat_get_categories", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_get_category", "to": "toteat_toteat_get_categories", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_smoke_tests", "to": "toteat_toteat_get_categories", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_rationale_267", "to": "toteat_toteat_get_categories", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_smoke_tests", "to": "toteat_toteat_get_category_dict", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_get_product", "to": "toteat_toteat_get_category", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_smoke_tests", "to": "toteat_toteat_get_product", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_get_product", "to": "models_items_product", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "toteat_toteat_smoke_tests", "to": "toteat_toteat_get_products", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_rationale_328", "to": "toteat_toteat_get_products", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_get_all_products", "to": "toteat_toteat_get_all_indexed_products", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_smoke_tests", "to": "toteat_toteat_get_all_indexed_products", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_rationale_336", "to": "toteat_toteat_get_all_indexed_products", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_smoke_tests", "to": "toteat_toteat_get_all_products", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_get_table", "to": "toteat_toteat_fetch_tables", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_create_sale", "to": "toteat_toteat_fetch_tables", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_to_fudo_table", "to": "toteat_toteat_discover_open_order_for_table", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_get_table", "to": "toteat_toteat_to_fudo_table", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_rationale_373", "to": "toteat_toteat_to_fudo_table", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_rationale_419", "to": "toteat_toteat_discover_open_order_for_table", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_get_table_items", "to": "toteat_toteat_get_table", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_smoke_tests", "to": "toteat_toteat_get_table", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_get_table_items", "to": "toteat_toteat_get_active_sale", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_smoke_tests", "to": "toteat_toteat_get_active_sale", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_get_table_items", "to": "toteat_toteat_get_sale", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_smoke_tests", "to": "toteat_toteat_get_sale", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_rationale_491", "to": "toteat_toteat_create_sale", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_create_item", "to": "toteat_toteat_build_line", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_create_item", "to": "toteat_toteat_post_order", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_rationale_555", "to": "toteat_toteat_create_item", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_smoke_tests", "to": "toteat_toteat_get_table_items", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_rationale_603", "to": "toteat_toteat_get_table_items", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "toteat_toteat_rationale_647", "to": "toteat_toteat_fetch_page", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_rut_py", "to": "utils_rut_validate_rut", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_rut_rationale_2", "to": "utils_rut_validate_rut", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_responses_py", "to": "utils_responses_success_response", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_responses_py", "to": "utils_responses_error_response", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_register_app_js", "to": "register_app_showerrormessage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_register_app_js", "to": "register_app_showregistermodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_register_app_js", "to": "register_app_hideregistermodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_register_app_js", "to": "register_app_rut", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_register_app_js", "to": "register_app_body", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_register_app_js", "to": "register_app_dv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_register_app_js", "to": "register_app_formdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_register_app_js", "to": "register_app_data", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_register_app_js", "to": "register_app_creategloballoader", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_register_app_js", "to": "register_app_showgloballoader", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_register_app_js", "to": "register_app_hidegloballoader", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "register_app_showgloballoader", "to": "register_app_creategloballoader", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_o", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_r", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_dh", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_zy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_my", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_oy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_dy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_oo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_by", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_uy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ly", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_hy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_qy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_be", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_qt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_hh", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_si", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_yy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_gy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_xy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_pa", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_vy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_kt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ph", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_yh", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ky", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_t", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_yo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_gh", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_y", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_fy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_wy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_iy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_vh", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_im", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_bo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_eg", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_tg", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_lg", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ng", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_sg", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ro", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_xh", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ug", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ms", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_rg", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_og", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_cg", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_bh", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_va", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_pm", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_fg", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_dg", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_mg", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_hg", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_pg", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_yg", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_sh", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_eh", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_so", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_xg", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_bg", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_eo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_hs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_to", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_no", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_g", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_th", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_h", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_jg", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_an", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_wg", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_za", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_zg", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ln", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_nh", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_jh", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_tt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_li", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_os", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_kg", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ah", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_qg", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ui", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_le", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_yt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_gg", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_lh", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_jo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ni", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_nn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_wh", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_vg", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_zh", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_mh", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ev", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_tv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_av", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_lv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ya", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_iv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ih", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_go", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_sv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_rh", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_constructor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_fv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_dv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_uh", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_xv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_bv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_oi", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ka", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ja", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ci", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_v", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_getderivedstatefromerror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_getderivedstatefromprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_componentdidcatch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_render", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_jv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_cv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_wv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_zv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_mv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_uo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ov", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_rv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_qh", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_uv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_co", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ys", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_hv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_kv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_qv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_yv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_gv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_xo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_vv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_lo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_pv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ex", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_tx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ai", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ax", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_lx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_nx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ix", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ux", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_basename_d_unstable_usetransitions_x", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_k", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_m", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_u_z_k", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_te", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_j", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_z", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_navigator_q_basename_d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_unstable_usetransitions_d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_x", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_u", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_cx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_fx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_hx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_px", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_yx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_pl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_gx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_bx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_sx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_fh", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_wx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_e0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_mx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_t0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ox", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_rx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_dx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_di", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_gs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_xs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_oe", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_qx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_xx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_zx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_isrunning_u_preventexittransition_o_toastref_r_eventhandlers_d_playtoast_m", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_me", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_a0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_gl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_eb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_at", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_l0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_tb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ab", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_lb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_nb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ib", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_sb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ub", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_cb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_n0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_fb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_db", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_mb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_hb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_pb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_yb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_i0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_gb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_vb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_xb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_bb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_jb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_ds", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_main_assets_index_lc7je4q6_js", "to": "assets_index_lc7je4q6_s0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_r", "to": "assets_index_lc7je4q6_o", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_oy", "to": "assets_index_lc7je4q6_o", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_o", "to": "assets_index_lc7je4q6_sg_condition", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_oy", "to": "assets_index_lc7je4q6_r", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_by", "to": "assets_index_lc7je4q6_r", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ly", "to": "assets_index_lc7je4q6_r", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_h", "to": "assets_index_lc7je4q6_r", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_zx", "to": "assets_index_lc7je4q6_r", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_dh", "to": "assets_index_lc7je4q6_nn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_dh", "to": "assets_index_lc7je4q6_le", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_dh", "to": "assets_index_lc7je4q6_go", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_dh", "to": "assets_index_lc7je4q6_eb_join", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_dh", "to": "assets_index_lc7je4q6_iv", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_my", "to": "assets_index_lc7je4q6_zy", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_zy", "to": "assets_index_lc7je4q6_ky", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_zy", "to": "assets_index_lc7je4q6_gh", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_oy", "to": "assets_index_lc7je4q6_m", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_oy", "to": "assets_index_lc7je4q6_b", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_oy", "to": "assets_index_lc7je4q6", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_oy", "to": "assets_index_lc7je4q6_u", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_oy", "to": "assets_index_lc7je4q6_k", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_oy", "to": "assets_index_lc7je4q6_me", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ry", "to": "assets_index_lc7je4q6_oy", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ly", "to": "assets_index_lc7je4q6_ry", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_dy", "to": "assets_index_lc7je4q6", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_dy", "to": "assets_index_lc7je4q6_te", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_oo", "to": "assets_index_lc7je4q6_dy", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_by", "to": "assets_index_lc7je4q6_oo", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ly", "to": "assets_index_lc7je4q6_oo", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_by", "to": "assets_index_lc7je4q6_u", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_by", "to": "assets_index_lc7je4q6_m", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_by", "to": "assets_index_lc7je4q6_f", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_by", "to": "assets_index_lc7je4q6_x", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_uy", "to": "assets_index_lc7je4q6_by", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ly", "to": "assets_index_lc7je4q6_uy", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ly", "to": "assets_index_lc7je4q6_b", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ly", "to": "assets_index_lc7je4q6_pa", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ly", "to": "assets_index_lc7je4q6_an", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ly", "to": "assets_index_lc7je4q6_py_get", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ly", "to": "assets_index_lc7je4q6_os", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ly", "to": "assets_index_lc7je4q6_jo", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ly", "to": "assets_index_lc7je4q6_eb_join", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ly", "to": "assets_index_lc7je4q6_py_keys", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_hy", "to": "assets_index_lc7je4q6_ly", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_vy", "to": "assets_index_lc7je4q6_qy", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_yy", "to": "assets_index_lc7je4q6_qt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_gy", "to": "assets_index_lc7je4q6_qt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_db", "to": "assets_index_lc7je4q6_qt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_mb", "to": "assets_index_lc7je4q6_qt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_xb", "to": "assets_index_lc7je4q6_qt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_bb", "to": "assets_index_lc7je4q6_qt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_sb", "to": "assets_index_lc7je4q6_qt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_gy", "to": "assets_index_lc7je4q6_si", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ub", "to": "assets_index_lc7je4q6_si", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_mb", "to": "assets_index_lc7je4q6_si", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_yb", "to": "assets_index_lc7je4q6_si", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eb", "to": "assets_index_lc7je4q6_si", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_px", "to": "assets_index_lc7je4q6_xy", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_pa", "to": "assets_index_lc7je4q6_gh", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_vh", "to": "assets_index_lc7je4q6_pa", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_im", "to": "assets_index_lc7je4q6_pa", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_bo", "to": "assets_index_lc7je4q6_pa", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_tg", "to": "assets_index_lc7je4q6_pa", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_an_findmatches", "to": "assets_index_lc7je4q6_pa", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_vh", "to": "assets_index_lc7je4q6_kt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eg", "to": "assets_index_lc7je4q6_kt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ro_create", "to": "assets_index_lc7je4q6_kt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ro_add", "to": "assets_index_lc7je4q6_kt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_an_search", "to": "assets_index_lc7je4q6_kt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_kt", "to": "assets_index_lc7je4q6_le", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_an_search", "to": "assets_index_lc7je4q6_ph", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ph", "to": "assets_index_lc7je4q6_py_get", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ky", "to": "assets_index_lc7je4q6_yh", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_tg", "to": "assets_index_lc7je4q6_yh", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ev", "to": "assets_index_lc7je4q6_yh", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_dv", "to": "assets_index_lc7je4q6_yh", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ro_addstring", "to": "assets_index_lc7je4q6_t", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_jg", "to": "assets_index_lc7je4q6_t", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_an_add", "to": "assets_index_lc7je4q6_t", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_an_findmatches", "to": "assets_index_lc7je4q6_t", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ro_addstring", "to": "assets_index_lc7je4q6_yo", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_v", "to": "assets_index_lc7je4q6_gh", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_gh", "to": "assets_index_lc7je4q6_le", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_gh", "to": "assets_index_lc7je4q6_oi", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_gh", "to": "assets_index_lc7je4q6_qh", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_gh", "to": "assets_index_lc7je4q6_ka", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_gh", "to": "assets_index_lc7je4q6_nn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_gh", "to": "assets_index_lc7je4q6_eb_join", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_gh", "to": "assets_index_lc7je4q6_wh", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_gh", "to": "assets_index_lc7je4q6_yt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_gh", "to": "assets_index_lc7je4q6_av", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_bv", "to": "assets_index_lc7je4q6_gh", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_og", "to": "assets_index_lc7je4q6_fy", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_vh", "to": "assets_index_lc7je4q6_wy", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_vh", "to": "assets_index_lc7je4q6_iy", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_py", "to": "assets_index_lc7je4q6_py_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_py", "to": "assets_index_lc7je4q6_py_get", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_py", "to": "assets_index_lc7je4q6_py_keys", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_py", "to": "assets_index_lc7je4q6_py_tojson", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ro_addstring", "to": "assets_index_lc7je4q6_py_get", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_jv", "to": "assets_index_lc7je4q6_py_get", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_wx", "to": "assets_index_lc7je4q6_py_get", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_mx", "to": "assets_index_lc7je4q6_py_get", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_n0", "to": "assets_index_lc7je4q6_py_get", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_th", "to": "assets_index_lc7je4q6_py_keys", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_av", "to": "assets_index_lc7je4q6_py_keys", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_iv", "to": "assets_index_lc7je4q6_py_keys", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_vh", "to": "assets_index_lc7je4q6_im", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_vh", "to": "assets_index_lc7je4q6_bo", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_vh", "to": "assets_index_lc7je4q6_lo", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ax", "to": "assets_index_lc7je4q6_vh", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_nx", "to": "assets_index_lc7je4q6_vh", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_bo", "to": "assets_index_lc7je4q6_eb_join", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_wv", "to": "assets_index_lc7je4q6_bo", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_zv", "to": "assets_index_lc7je4q6_bo", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_mv", "to": "assets_index_lc7je4q6_bo", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_tg", "to": "assets_index_lc7je4q6_no", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_an_search", "to": "assets_index_lc7je4q6_ag", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_an_search", "to": "assets_index_lc7je4q6_ng", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_sg", "to": "assets_index_lc7je4q6_sg_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_sg", "to": "assets_index_lc7je4q6_sg_condition", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_sg", "to": "assets_index_lc7je4q6_sg_searchin", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ro_constructor", "to": "assets_index_lc7je4q6_sg", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ro", "to": "assets_index_lc7je4q6_ro_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ro", "to": "assets_index_lc7je4q6_ro_setsources", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ro", "to": "assets_index_lc7je4q6_ro_setindexrecords", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ro", "to": "assets_index_lc7je4q6_ro_setkeys", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ro", "to": "assets_index_lc7je4q6_ro_create", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ro", "to": "assets_index_lc7je4q6_ro_add", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ro", "to": "assets_index_lc7je4q6_ro_removeat", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ro", "to": "assets_index_lc7je4q6_ro_getvalueforitematkeyid", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ro", "to": "assets_index_lc7je4q6_ro_size", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ro", "to": "assets_index_lc7je4q6_ro_addstring", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ro", "to": "assets_index_lc7je4q6_ro_addobject", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ro", "to": "assets_index_lc7je4q6_ro_tojson", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ro_constructor", "to": "assets_index_lc7je4q6_ro_setindexrecords", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_xh", "to": "assets_index_lc7je4q6_ro_setsources", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ug", "to": "assets_index_lc7je4q6_ro_setindexrecords", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_xh", "to": "assets_index_lc7je4q6_ro_setkeys", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ug", "to": "assets_index_lc7je4q6_ro_setkeys", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_xh", "to": "assets_index_lc7je4q6_ro_create", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ro_add", "to": "assets_index_lc7je4q6_ro_size", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ro_add", "to": "assets_index_lc7je4q6_ro_addstring", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ro_add", "to": "assets_index_lc7je4q6_ro_addobject", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ro_removeat", "to": "assets_index_lc7je4q6_ro_size", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_an_setcollection", "to": "assets_index_lc7je4q6_xh", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_og", "to": "assets_index_lc7je4q6_ms", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_og", "to": "assets_index_lc7je4q6_rg", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_rg", "to": "assets_index_lc7je4q6_za", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_rg", "to": "assets_index_lc7je4q6_ln", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_og", "to": "assets_index_lc7je4q6_za", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_og", "to": "assets_index_lc7je4q6_ln", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_bh", "to": "assets_index_lc7je4q6_bh_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_bh", "to": "assets_index_lc7je4q6_bh_searchin", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_bh_constructor", "to": "assets_index_lc7je4q6_b", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_va", "to": "assets_index_lc7je4q6_va_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_va", "to": "assets_index_lc7je4q6_va_ismultimatch", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_va", "to": "assets_index_lc7je4q6_va_issinglematch", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_va", "to": "assets_index_lc7je4q6_va_search", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_va_ismultimatch", "to": "assets_index_lc7je4q6_pm", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_va_issinglematch", "to": "assets_index_lc7je4q6_pm", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_fg", "to": "assets_index_lc7je4q6_fg_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_fg", "to": "assets_index_lc7je4q6_fg_type", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_fg", "to": "assets_index_lc7je4q6_fg_multiregex", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_fg", "to": "assets_index_lc7je4q6_fg_singleregex", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_fg", "to": "assets_index_lc7je4q6_fg_search", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_dg", "to": "assets_index_lc7je4q6_dg_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_dg", "to": "assets_index_lc7je4q6_dg_type", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_dg", "to": "assets_index_lc7je4q6_dg_multiregex", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_dg", "to": "assets_index_lc7je4q6_dg_singleregex", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_dg", "to": "assets_index_lc7je4q6_dg_search", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_dg", "to": "assets_index_lc7je4q6_za", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_dg", "to": "assets_index_lc7je4q6_ln", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_mg", "to": "assets_index_lc7je4q6_mg_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_mg", "to": "assets_index_lc7je4q6_mg_type", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_mg", "to": "assets_index_lc7je4q6_mg_multiregex", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_mg", "to": "assets_index_lc7je4q6_mg_singleregex", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_mg", "to": "assets_index_lc7je4q6_mg_search", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_hg", "to": "assets_index_lc7je4q6_hg_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_hg", "to": "assets_index_lc7je4q6_hg_type", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_hg", "to": "assets_index_lc7je4q6_hg_multiregex", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_hg", "to": "assets_index_lc7je4q6_hg_singleregex", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_hg", "to": "assets_index_lc7je4q6_hg_search", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_pg", "to": "assets_index_lc7je4q6_pg_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_pg", "to": "assets_index_lc7je4q6_pg_type", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_pg", "to": "assets_index_lc7je4q6_pg_multiregex", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_pg", "to": "assets_index_lc7je4q6_pg_singleregex", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_pg", "to": "assets_index_lc7je4q6_pg_search", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_yg", "to": "assets_index_lc7je4q6_yg_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_yg", "to": "assets_index_lc7je4q6_yg_type", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_yg", "to": "assets_index_lc7je4q6_yg_multiregex", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_yg", "to": "assets_index_lc7je4q6_yg_singleregex", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_yg", "to": "assets_index_lc7je4q6_yg_search", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_yg", "to": "assets_index_lc7je4q6_xg", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ux", "to": "assets_index_lc7je4q6_yg", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_sh", "to": "assets_index_lc7je4q6_sh_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_sh", "to": "assets_index_lc7je4q6_sh_type", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_sh", "to": "assets_index_lc7je4q6_sh_multiregex", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_sh", "to": "assets_index_lc7je4q6_sh_singleregex", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_sh", "to": "assets_index_lc7je4q6_sh_search", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_sh_search", "to": "assets_index_lc7je4q6_sg_searchin", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eh", "to": "assets_index_lc7je4q6_eh_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eh", "to": "assets_index_lc7je4q6_eh_type", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eh", "to": "assets_index_lc7je4q6_eh_multiregex", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eh", "to": "assets_index_lc7je4q6_eh_singleregex", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eh", "to": "assets_index_lc7je4q6_eh_search", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_sg_constructor", "to": "assets_index_lc7je4q6_xg", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_bg", "to": "assets_index_lc7je4q6_za", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_bg", "to": "assets_index_lc7je4q6_ln", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_sg_searchin", "to": "assets_index_lc7je4q6_an_search", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_an_findmatches", "to": "assets_index_lc7je4q6_sg_searchin", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_h", "to": "assets_index_lc7je4q6_no", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_h", "to": "assets_index_lc7je4q6_th", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_an_searchlogical", "to": "assets_index_lc7je4q6_h", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_an", "to": "assets_index_lc7je4q6_an_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_an", "to": "assets_index_lc7je4q6_an_setcollection", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_an", "to": "assets_index_lc7je4q6_an_add", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_an", "to": "assets_index_lc7je4q6_an_remove", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_an", "to": "assets_index_lc7je4q6_an_removeat", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_an", "to": "assets_index_lc7je4q6_an_getindex", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_an", "to": "assets_index_lc7je4q6_an_search", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_an", "to": "assets_index_lc7je4q6_an_searchstringlist", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_an", "to": "assets_index_lc7je4q6_an_searchlogical", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_an", "to": "assets_index_lc7je4q6_an_searchobjectlist", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_an", "to": "assets_index_lc7je4q6_an_findmatches", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_an_constructor", "to": "assets_index_lc7je4q6_an_setcollection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_rx", "to": "assets_index_lc7je4q6_an_add", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_an_remove", "to": "assets_index_lc7je4q6_u", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_an_remove", "to": "assets_index_lc7je4q6_an_removeat", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_an_search", "to": "assets_index_lc7je4q6_an_searchstringlist", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_an_search", "to": "assets_index_lc7je4q6_an_searchobjectlist", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_an_search", "to": "assets_index_lc7je4q6_an_searchlogical", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_px", "to": "assets_index_lc7je4q6_wg", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_nh", "to": "assets_index_lc7je4q6_za", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_jh", "to": "assets_index_lc7je4q6_za", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_vg", "to": "assets_index_lc7je4q6_zg", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_nh", "to": "assets_index_lc7je4q6_ln", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_jh", "to": "assets_index_lc7je4q6_ln", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_jh", "to": "assets_index_lc7je4q6_le", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_jh", "to": "assets_index_lc7je4q6_cx", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_hx", "to": "assets_index_lc7je4q6_jh", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_yx", "to": "assets_index_lc7je4q6_jh", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_px", "to": "assets_index_lc7je4q6_tt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ab", "to": "assets_index_lc7je4q6_tt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ib", "to": "assets_index_lc7je4q6_tt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_sb", "to": "assets_index_lc7je4q6_tt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ub", "to": "assets_index_lc7je4q6_tt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_mb", "to": "assets_index_lc7je4q6_tt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_fh", "to": "assets_index_lc7je4q6_tt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_yb", "to": "assets_index_lc7je4q6_tt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_gb", "to": "assets_index_lc7je4q6_tt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eb", "to": "assets_index_lc7je4q6_tt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ds", "to": "assets_index_lc7je4q6_tt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_qg", "to": "assets_index_lc7je4q6_le", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_qg", "to": "assets_index_lc7je4q6_ni", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_px", "to": "assets_index_lc7je4q6_ui", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ub", "to": "assets_index_lc7je4q6_ui", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_mb", "to": "assets_index_lc7je4q6_ui", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eb", "to": "assets_index_lc7je4q6_ui", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ds", "to": "assets_index_lc7je4q6_ui", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_sv", "to": "assets_index_lc7je4q6_le", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ka", "to": "assets_index_lc7je4q6_le", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ev", "to": "assets_index_lc7je4q6_le", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_av", "to": "assets_index_lc7je4q6_le", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_wv", "to": "assets_index_lc7je4q6_le", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_zv", "to": "assets_index_lc7je4q6_le", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_mv", "to": "assets_index_lc7je4q6_le", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_uo", "to": "assets_index_lc7je4q6_le", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_uv", "to": "assets_index_lc7je4q6_le", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_px", "to": "assets_index_lc7je4q6_le", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_yx", "to": "assets_index_lc7je4q6_le", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_av", "to": "assets_index_lc7je4q6_yt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_lv", "to": "assets_index_lc7je4q6_yt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_iv", "to": "assets_index_lc7je4q6_yt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_uh", "to": "assets_index_lc7je4q6_yt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_qh", "to": "assets_index_lc7je4q6_yt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_uv", "to": "assets_index_lc7je4q6_yt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_xo", "to": "assets_index_lc7je4q6_yt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_jo", "to": "assets_index_lc7je4q6_gg", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_jo", "to": "assets_index_lc7je4q6_nn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_px", "to": "assets_index_lc7je4q6_ni", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_vg", "to": "assets_index_lc7je4q6_nn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_iv", "to": "assets_index_lc7je4q6_nn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_uv", "to": "assets_index_lc7je4q6_nn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_wh", "to": "assets_index_lc7je4q6_vg", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_dx", "to": "assets_index_lc7je4q6_wh", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_vg", "to": "assets_index_lc7je4q6_ya", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_vg", "to": "assets_index_lc7je4q6_zh", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_vg", "to": "assets_index_lc7je4q6_lv", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_vg", "to": "assets_index_lc7je4q6_tv", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_zh", "to": "assets_index_lc7je4q6_lo", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_lx", "to": "assets_index_lc7je4q6_zh", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_nx", "to": "assets_index_lc7je4q6_zh", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_mh", "to": "assets_index_lc7je4q6_eb_join", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ja", "to": "assets_index_lc7je4q6_ev", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ev", "to": "assets_index_lc7je4q6_oi", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ev", "to": "assets_index_lc7je4q6_ka", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ev", "to": "assets_index_lc7je4q6_rh", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_tv", "to": "assets_index_lc7je4q6_ks", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_tv", "to": "assets_index_lc7je4q6_uv", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_tv", "to": "assets_index_lc7je4q6_rv", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_tv", "to": "assets_index_lc7je4q6_fv", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ks", "to": "assets_index_lc7je4q6_av", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_yx", "to": "assets_index_lc7je4q6_ks", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_av", "to": "assets_index_lc7je4q6_eb_join", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_lv", "to": "assets_index_lc7je4q6_eb_join", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_lv", "to": "assets_index_lc7je4q6_v", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_lv", "to": "assets_index_lc7je4q6_co", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_uh", "to": "assets_index_lc7je4q6_ya", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_vv", "to": "assets_index_lc7je4q6_ya", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_zv", "to": "assets_index_lc7je4q6_ya", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_yx", "to": "assets_index_lc7je4q6_ya", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_iv", "to": "assets_index_lc7je4q6_ih", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_iv", "to": "assets_index_lc7je4q6_rv", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_iv", "to": "assets_index_lc7je4q6_ov", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ih", "to": "assets_index_lc7je4q6_eb_join", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_wx", "to": "assets_index_lc7je4q6_ih", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_e0", "to": "assets_index_lc7je4q6_ih", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_rh", "to": "assets_index_lc7je4q6_sv", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_sv", "to": "assets_index_lc7je4q6_oi", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_sv", "to": "assets_index_lc7je4q6_ci", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ci", "to": "assets_index_lc7je4q6_rh", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_rh", "to": "assets_index_lc7je4q6_fh", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_fv", "to": "assets_index_lc7je4q6_wv", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_dv", "to": "assets_index_lc7je4q6_eb_join", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ja", "to": "assets_index_lc7je4q6_dv", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_dv", "to": "assets_index_lc7je4q6_wv", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_dv", "to": "assets_index_lc7je4q6_uo", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_jv", "to": "assets_index_lc7je4q6_uh", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_jv", "to": "assets_index_lc7je4q6_xv", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_vv", "to": "assets_index_lc7je4q6_xv", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_render", "to": "assets_index_lc7je4q6_bv", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ka", "to": "assets_index_lc7je4q6_oi", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_uv", "to": "assets_index_lc7je4q6_oi", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ci", "to": "assets_index_lc7je4q6_ka", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_nx", "to": "assets_index_lc7je4q6_ka", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_fx", "to": "assets_index_lc7je4q6_ka", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_px", "to": "assets_index_lc7je4q6_ka", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ix", "to": "assets_index_lc7je4q6_ka", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_fx", "to": "assets_index_lc7je4q6_ja", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ix", "to": "assets_index_lc7je4q6_ja", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_sb", "to": "assets_index_lc7je4q6_ja", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ub", "to": "assets_index_lc7je4q6_ja", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_mb", "to": "assets_index_lc7je4q6_ja", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_fh", "to": "assets_index_lc7je4q6_ja", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_gb", "to": "assets_index_lc7je4q6_ja", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eb", "to": "assets_index_lc7je4q6_ja", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_fx", "to": "assets_index_lc7je4q6_ci", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_px", "to": "assets_index_lc7je4q6_ci", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_yx", "to": "assets_index_lc7je4q6_ci", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_v", "to": "assets_index_lc7je4q6_pv", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_componentdidcatch", "to": "assets_index_lc7je4q6_eb_onerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_rv", "to": "assets_index_lc7je4q6_zv", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_uo", "to": "assets_index_lc7je4q6_mv", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ov", "to": "assets_index_lc7je4q6_uo", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_rv", "to": "assets_index_lc7je4q6_uo", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_hx", "to": "assets_index_lc7je4q6_ov", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_hv", "to": "assets_index_lc7je4q6_ys", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_kv", "to": "assets_index_lc7je4q6_ys", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_qv", "to": "assets_index_lc7je4q6_ys", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_vv", "to": "assets_index_lc7je4q6_ys", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_vv", "to": "assets_index_lc7je4q6_hv", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_vv", "to": "assets_index_lc7je4q6_kv", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_vv", "to": "assets_index_lc7je4q6_qv", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_gv", "to": "assets_index_lc7je4q6_yv", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_vv", "to": "assets_index_lc7je4q6_xo", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ex", "to": "assets_index_lc7je4q6_lo", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_nx", "to": "assets_index_lc7je4q6_ex", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_tx", "to": "assets_index_lc7je4q6_ai", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_nx", "to": "assets_index_lc7je4q6_lx", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_lx", "to": "assets_index_lc7je4q6_ox", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_wx", "to": "assets_index_lc7je4q6_lx", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ux", "to": "assets_index_lc7je4q6_wx", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_x", "to": "assets_index_lc7je4q6_m", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_u", "to": "assets_index_lc7je4q6_f", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_x", "to": "assets_index_lc7je4q6_pl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_hx", "to": "assets_index_lc7je4q6_mx", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_px", "to": "assets_index_lc7je4q6_gl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_di", "to": "assets_index_lc7je4q6_e0", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_gs", "to": "assets_index_lc7je4q6_dx", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_oe", "to": "assets_index_lc7je4q6_di", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_oe", "to": "assets_index_lc7je4q6_gs", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ab", "to": "assets_index_lc7je4q6_gl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ub", "to": "assets_index_lc7je4q6_gl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_mb", "to": "assets_index_lc7je4q6_gl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_yb", "to": "assets_index_lc7je4q6_gl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eb", "to": "assets_index_lc7je4q6_gl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ds", "to": "assets_index_lc7je4q6_gl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eb", "to": "assets_index_lc7je4q6_eb_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eb", "to": "assets_index_lc7je4q6_eb_connect", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eb", "to": "assets_index_lc7je4q6_eb_send", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eb", "to": "assets_index_lc7je4q6_eb_join", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eb", "to": "assets_index_lc7je4q6_eb_sendmessage", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eb", "to": "assets_index_lc7je4q6_eb_sendaimessage", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eb", "to": "assets_index_lc7je4q6_eb_sendmention", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eb", "to": "assets_index_lc7je4q6_eb_leave", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eb", "to": "assets_index_lc7je4q6_eb_disconnect", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eb", "to": "assets_index_lc7je4q6_eb_onmessage", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eb", "to": "assets_index_lc7je4q6_eb_onerror", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eb", "to": "assets_index_lc7je4q6_eb_onclose", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eb", "to": "assets_index_lc7je4q6_eb_onmention", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eb", "to": "assets_index_lc7je4q6_eb_getconnectedusers", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eb", "to": "assets_index_lc7je4q6_eb_getonlinecount", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eb", "to": "assets_index_lc7je4q6_eb_mention", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eb_join", "to": "assets_index_lc7je4q6_eb_send", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eb_sendmessage", "to": "assets_index_lc7je4q6_eb_send", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eb_sendaimessage", "to": "assets_index_lc7je4q6_eb_send", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eb_sendmention", "to": "assets_index_lc7je4q6_eb_send", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eb_leave", "to": "assets_index_lc7je4q6_eb_send", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_eb_mention", "to": "assets_index_lc7je4q6_eb_send", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_cb", "to": "assets_index_lc7je4q6_eb_join", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_ib", "to": "assets_index_lc7je4q6_lb", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_lc7je4q6_n0", "to": "assets_index_lc7je4q6_cb", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_in_time_py", "to": "middleware_in_time_emptyuser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_in_time_py", "to": "middleware_in_time_intimemiddleware", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_in_time_rationale_1", "to": "middleware_in_time_py", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_in_time_emptyuser", "to": "middleware_in_time_emptyuser_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_in_time_intimemiddleware_dispatch", "to": "middleware_in_time_emptyuser", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_in_time_intimemiddleware", "to": "basehttpmiddleware", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_in_time_intimemiddleware", "to": "middleware_in_time_intimemiddleware_dispatch", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_in_time_rationale_24", "to": "middleware_in_time_intimemiddleware", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_no_cache_nocachemiddleware", "to": "basehttpmiddleware", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_in_time_intimemiddleware_dispatch", "to": "auth_security_get_current_user", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "middleware_init_py", "to": "middleware_no_cache_py", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_no_cache_py", "to": "middleware_no_cache_nocachemiddleware", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_no_cache_rationale_1", "to": "middleware_no_cache_py", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_no_cache_nocachemiddleware", "to": "middleware_no_cache_nocachemiddleware_dispatch", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_no_cache_rationale_10", "to": "middleware_no_cache_nocachemiddleware", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_py", "to": "fudo_fudo_get_token", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_py", "to": "fudo_fudo_get_modifiers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_py", "to": "fudo_fudo_get_categories", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_py", "to": "fudo_fudo_get_category_dict", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_py", "to": "fudo_fudo_get_category", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_py", "to": "fudo_fudo_get_product", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_py", "to": "fudo_fudo_get_products", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_py", "to": "fudo_fudo_fetch_page", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_py", "to": "fudo_fudo_get_all_indexed_products", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_py", "to": "fudo_fudo_get_all_products", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_py", "to": "fudo_fudo_get_page_bounds", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_py", "to": "fudo_fudo_get_table", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_py", "to": "fudo_fudo_get_table_items", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_py", "to": "fudo_fudo_get_sale", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_py", "to": "fudo_fudo_create_sale", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_py", "to": "fudo_fudo_create_item", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_py", "to": "fudo_fudo_get_active_sale", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_py", "to": "fudo_fudo_clear_token", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_get_modifiers", "to": "fudo_fudo_get_token", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_get_categories", "to": "fudo_fudo_get_token", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_get_category", "to": "fudo_fudo_get_token", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_get_product", "to": "fudo_fudo_get_token", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_get_products", "to": "fudo_fudo_get_token", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_get_all_indexed_products", "to": "fudo_fudo_get_token", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_get_table", "to": "fudo_fudo_get_token", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_get_table_items", "to": "fudo_fudo_get_token", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_get_sale", "to": "fudo_fudo_get_token", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_create_sale", "to": "fudo_fudo_get_token", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_create_item", "to": "fudo_fudo_get_token", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_rationale_31", "to": "fudo_fudo_get_token", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_get_category_dict", "to": "fudo_fudo_get_categories", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_get_product", "to": "fudo_fudo_get_category", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_get_product", "to": "models_items_product", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "fudo_fudo_get_all_indexed_products", "to": "fudo_fudo_fetch_page", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_rationale_164", "to": "fudo_fudo_fetch_page", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_get_all_products", "to": "fudo_fudo_get_all_indexed_products", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_rationale_235", "to": "fudo_fudo_get_all_products", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_get_table", "to": "fudo_fudo_get_page_bounds", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_rationale_240", "to": "fudo_fudo_get_page_bounds", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_get_table_items", "to": "fudo_fudo_get_table", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_get_table_items", "to": "fudo_fudo_get_active_sale", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_get_table_items", "to": "fudo_fudo_get_sale", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fudo_fudo_rationale_487", "to": "fudo_fudo_clear_token", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_security_py", "to": "auth_security_tokendata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_security_py", "to": "auth_security_hash_password", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_security_py", "to": "auth_security_generate_token", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_security_py", "to": "auth_security_create_access_token", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_security_py", "to": "auth_security_authenticate_user", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_security_py", "to": "auth_security_get_current_user", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_security_get_current_user", "to": "auth_security_tokendata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_security_tokendata", "to": "models_user_user", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "auth_security_rationale_28", "to": "auth_security_hash_password", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_security_generate_token", "to": "auth_security_create_access_token", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_security_rationale_32", "to": "auth_security_generate_token", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_security_rationale_51", "to": "auth_security_create_access_token", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_security_rationale_64", "to": "auth_security_authenticate_user", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "config_settings_py", "to": "config_settings_validate_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "config_messages_py", "to": "config_messages_errorresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "config_messages_py", "to": "config_messages_successresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "config_messages_py", "to": "config_messages_userresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "config_messages_rationale_2", "to": "config_messages_errorresponse", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "config_messages_rationale_18", "to": "config_messages_successresponse", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "config_messages_rationale_33", "to": "config_messages_userresponse", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_items_py", "to": "models_items_item", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_items_py", "to": "models_items_order", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_items_py", "to": "models_items_orderbilling", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_items_py", "to": "models_items_product", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_items_py", "to": "models_items_producteditrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_items_py", "to": "models_items_productcreaterequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_items_py", "to": "models_items_producttypes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_items_py", "to": "models_items_get_all_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_init_py", "to": "models_items_py", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_items_rationale_14", "to": "models_items_order", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_items_rationale_23", "to": "models_items_orderbilling", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_items_rationale_29", "to": "models_items_product", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_sales_promotion", "to": "models_items_product", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "models_sales_itemweb", "to": "models_items_product", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "models_sales_orderweb", "to": "models_items_product", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "models_sales_sale", "to": "models_items_product", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "models_items_rationale_45", "to": "models_items_producteditrequest", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_items_rationale_56", "to": "models_items_productcreaterequest", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_items_rationale_68", "to": "models_items_producttypes", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_blacklist_py", "to": "models_blacklist_blacklist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_init_py", "to": "models_blacklist_py", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_blacklist_rationale_5", "to": "models_blacklist_blacklist", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_sales_py", "to": "models_sales_promotion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_sales_py", "to": "models_sales_itemweb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_sales_py", "to": "models_sales_orderweb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_sales_py", "to": "models_sales_sale", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_init_py", "to": "models_sales_py", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_sales_rationale_28", "to": "models_sales_sale", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_chat_py", "to": "models_chat_message", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_chat_py", "to": "models_chat_chatcompletionrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_chat_py", "to": "models_chat_notifyrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_init_py", "to": "models_chat_py", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_init_py", "to": "models_user_py", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_user_py", "to": "models_user_useridrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_user_py", "to": "models_user_registeruserrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_user_py", "to": "models_user_forceregisteruserrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_user_py", "to": "models_user_userrewardrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_user_py", "to": "models_user_pinuserrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_user_py", "to": "models_user_user", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_user_py", "to": "models_user_usermail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_user_py", "to": "models_user_loginrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_user_py", "to": "models_user_pinrecoveryrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_user_py", "to": "models_user_pinrecoveryvalidaterequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_user_rationale_26", "to": "models_user_user", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_md", "to": "pedidos_express_server_claude_claude_md", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_claude_claude_md", "to": "pedidos_express_server_claude_project_overview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_claude_claude_md", "to": "pedidos_express_server_claude_commands", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_claude_claude_md", "to": "pedidos_express_server_claude_architecture", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_claude_claude_md", "to": "pedidos_express_server_claude_commit_convention", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_claude_claude_md", "to": "pedidos_express_server_claude_database", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_claude_claude_md", "to": "pedidos_express_server_claude_graphify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_claude_commands", "to": "pedidos_express_server_claude_development", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_claude_commands", "to": "pedidos_express_server_claude_production", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_claude_commands", "to": "pedidos_express_server_claude_frontend_tailwind_css", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_claude_commands", "to": "pedidos_express_server_claude_requirements", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_claude_development", "to": "pedidos_express_server_claude_codeblock_1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_claude_production", "to": "pedidos_express_server_claude_codeblock_2", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_claude_frontend_tailwind_css", "to": "pedidos_express_server_claude_codeblock_3", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_claude_requirements", "to": "pedidos_express_server_claude_codeblock_4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_claude_architecture", "to": "pedidos_express_server_claude_entry_point_flow", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_claude_architecture", "to": "pedidos_express_server_claude_key_directories", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_claude_architecture", "to": "pedidos_express_server_claude_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_claude_architecture", "to": "pedidos_express_server_claude_route_protection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_claude_architecture", "to": "pedidos_express_server_claude_configuration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_md", "to": "pedidos_express_server_readme_biergarten_klein_sistema_de_pedidos_express", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_readme_biergarten_klein_sistema_de_pedidos_express", "to": "pedidos_express_server_readme_puesta_en_marcha_getting_started", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_readme_biergarten_klein_sistema_de_pedidos_express", "to": "pedidos_express_server_readme_resumen_de_la_arquitectura", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_readme_biergarten_klein_sistema_de_pedidos_express", "to": "pedidos_express_server_readme_caracter_sticas_principales", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_readme_biergarten_klein_sistema_de_pedidos_express", "to": "pedidos_express_server_readme_api_endpoints_resumen", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_readme_biergarten_klein_sistema_de_pedidos_express", "to": "pedidos_express_server_readme_tecnolog_as_utilizadas", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_readme_biergarten_klein_sistema_de_pedidos_express", "to": "pedidos_express_server_readme_logging_y_monitoreo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_readme_puesta_en_marcha_getting_started", "to": "pedidos_express_server_readme_1_prerrequisitos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_readme_puesta_en_marcha_getting_started", "to": "pedidos_express_server_readme_2_instalaci_n", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_readme_puesta_en_marcha_getting_started", "to": "pedidos_express_server_readme_3_variables_de_entorno_env", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_readme_puesta_en_marcha_getting_started", "to": "pedidos_express_server_readme_4_ejecuci_n", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_readme_4_ejecuci_n", "to": "pedidos_express_server_readme_modo_desarrollo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_readme_4_ejecuci_n", "to": "pedidos_express_server_readme_modo_producci_n", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_readme_caracter_sticas_principales", "to": "pedidos_express_server_readme_asistente_de_ia_camilo_klein", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_readme_caracter_sticas_principales", "to": "pedidos_express_server_readme_gesti_n_de_pedidos_y_productos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_readme_caracter_sticas_principales", "to": "pedidos_express_server_readme_integraciones_de_hardware_y_externas", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_readme_caracter_sticas_principales", "to": "pedidos_express_server_readme_seguridad", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_readme_api_endpoints_resumen", "to": "pedidos_express_server_readme_chat_asistente_ia", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_readme_api_endpoints_resumen", "to": "pedidos_express_server_readme_productos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_readme_api_endpoints_resumen", "to": "pedidos_express_server_readme_pedidos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_readme_api_endpoints_resumen", "to": "pedidos_express_server_readme_usuarios", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_readme_api_endpoints_resumen", "to": "pedidos_express_server_readme_ventas_sales", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pedidos_express_server_readme_api_endpoints_resumen", "to": "pedidos_express_server_readme_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_migracion_fudo_toteat_md", "to": "docs_migracion_fudo_toteat_auditor_a_fudo_toteat_e_impresoras", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_migracion_fudo_toteat_auditor_a_fudo_toteat_e_impresoras", "to": "docs_migracion_fudo_toteat_1_auditor_a_del_uso_de_la_api_de_fudo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_migracion_fudo_toteat_auditor_a_fudo_toteat_e_impresoras", "to": "docs_migracion_fudo_toteat_2_sistema_de_impresoras", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_migracion_fudo_toteat_auditor_a_fudo_toteat_e_impresoras", "to": "docs_migracion_fudo_toteat_3_plan_de_migraci_n_usando_toteat_toteat_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_migracion_fudo_toteat_1_auditor_a_del_uso_de_la_api_de_fudo", "to": "docs_migracion_fudo_toteat_1_1_funciones_definidas_en_fudo_fudo_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_migracion_fudo_toteat_1_auditor_a_del_uso_de_la_api_de_fudo", "to": "docs_migracion_fudo_toteat_1_2_uso_por_archivo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_migracion_fudo_toteat_1_auditor_a_del_uso_de_la_api_de_fudo", "to": "docs_migracion_fudo_toteat_1_3_resumen_por_funci_n", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_migracion_fudo_toteat_1_auditor_a_del_uso_de_la_api_de_fudo", "to": "docs_migracion_fudo_toteat_1_4_transformaciones_notables", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_migracion_fudo_toteat_1_2_uso_por_archivo", "to": "docs_migracion_fudo_toteat_routes_orders_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_migracion_fudo_toteat_1_2_uso_por_archivo", "to": "docs_migracion_fudo_toteat_routes_products_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_migracion_fudo_toteat_1_2_uso_por_archivo", "to": "docs_migracion_fudo_toteat_routes_store_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_migracion_fudo_toteat_1_2_uso_por_archivo", "to": "docs_migracion_fudo_toteat_services_fudo_service_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_migracion_fudo_toteat_1_2_uso_por_archivo", "to": "docs_migracion_fudo_toteat_services_data_service_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_migracion_fudo_toteat_1_2_uso_por_archivo", "to": "docs_migracion_fudo_toteat_load_products_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_migracion_fudo_toteat_1_2_uso_por_archivo", "to": "docs_migracion_fudo_toteat_update_prices_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_migracion_fudo_toteat_2_sistema_de_impresoras", "to": "docs_migracion_fudo_toteat_2_1_arquitectura", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_migracion_fudo_toteat_2_sistema_de_impresoras", "to": "docs_migracion_fudo_toteat_2_2_endpoints_del_servidor_de_impresi_n", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_migracion_fudo_toteat_2_sistema_de_impresoras", "to": "docs_migracion_fudo_toteat_2_3_validaci_n_de_conectividad", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_migracion_fudo_toteat_2_sistema_de_impresoras", "to": "docs_migracion_fudo_toteat_2_4_acoplamiento_con_fudo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_migracion_fudo_toteat_2_sistema_de_impresoras", "to": "docs_migracion_fudo_toteat_2_5_configuraci_n", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_migracion_fudo_toteat_2_3_validaci_n_de_conectividad", "to": "docs_migracion_fudo_toteat_codeblock_1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_migracion_fudo_toteat_3_plan_de_migraci_n_usando_toteat_toteat_py", "to": "docs_migracion_fudo_toteat_3_1_variables_de_entorno_nuevas", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_migracion_fudo_toteat_3_plan_de_migraci_n_usando_toteat_toteat_py", "to": "docs_migracion_fudo_toteat_3_2_equivalencias", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_migracion_fudo_toteat_3_plan_de_migraci_n_usando_toteat_toteat_py", "to": "docs_migracion_fudo_toteat_3_3_diferencias_funcionales_conocidas", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_migracion_fudo_toteat_3_plan_de_migraci_n_usando_toteat_toteat_py", "to": "docs_migracion_fudo_toteat_3_4_auditor_a_r_pida_post_migraci_n", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_migracion_fudo_toteat_3_1_variables_de_entorno_nuevas", "to": "docs_migracion_fudo_toteat_codeblock_2", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}];
- const LEGEND = [{"cid": 0, "color": "#4E79A7", "label": "Community 0", "count": 72}, {"cid": 1, "color": "#F28E2B", "label": "Community 1", "count": 58}, {"cid": 2, "color": "#E15759", "label": "Community 2", "count": 56}, {"cid": 3, "color": "#76B7B2", "label": "Community 3", "count": 52}, {"cid": 4, "color": "#59A14F", "label": "Community 4", "count": 46}, {"cid": 5, "color": "#EDC948", "label": "Community 5", "count": 42}, {"cid": 6, "color": "#B07AA1", "label": "Community 6", "count": 36}, {"cid": 7, "color": "#FF9DA7", "label": "Community 7", "count": 33}, {"cid": 8, "color": "#9C755F", "label": "Community 8", "count": 33}, {"cid": 9, "color": "#BAB0AC", "label": "Community 9", "count": 30}, {"cid": 10, "color": "#4E79A7", "label": "Community 10", "count": 27}, {"cid": 11, "color": "#F28E2B", "label": "Community 11", "count": 27}, {"cid": 12, "color": "#E15759", "label": "Community 12", "count": 27}, {"cid": 13, "color": "#76B7B2", "label": "Community 13", "count": 24}, {"cid": 14, "color": "#59A14F", "label": "Community 14", "count": 24}, {"cid": 15, "color": "#EDC948", "label": "Community 15", "count": 24}, {"cid": 16, "color": "#B07AA1", "label": "Community 16", "count": 23}, {"cid": 17, "color": "#FF9DA7", "label": "Community 17", "count": 21}, {"cid": 18, "color": "#9C755F", "label": "Community 18", "count": 17}, {"cid": 19, "color": "#BAB0AC", "label": "Community 19", "count": 16}, {"cid": 20, "color": "#4E79A7", "label": "Community 20", "count": 15}, {"cid": 21, "color": "#F28E2B", "label": "Community 21", "count": 14}, {"cid": 22, "color": "#E15759", "label": "Community 22", "count": 13}, {"cid": 23, "color": "#76B7B2", "label": "Community 23", "count": 12}, {"cid": 24, "color": "#59A14F", "label": "Community 24", "count": 12}, {"cid": 25, "color": "#EDC948", "label": "Community 25", "count": 10}, {"cid": 26, "color": "#B07AA1", "label": "Community 26", "count": 9}, {"cid": 27, "color": "#FF9DA7", "label": "Community 27", "count": 6}, {"cid": 28, "color": "#9C755F", "label": "Community 28", "count": 6}, {"cid": 29, "color": "#BAB0AC", "label": "Community 29", "count": 6}, {"cid": 30, "color": "#4E79A7", "label": "Community 30", "count": 6}, {"cid": 31, "color": "#F28E2B", "label": "Community 31", "count": 6}, {"cid": 32, "color": "#E15759", "label": "Community 32", "count": 6}, {"cid": 33, "color": "#76B7B2", "label": "Community 33", "count": 6}, {"cid": 34, "color": "#59A14F", "label": "Community 34", "count": 5}, {"cid": 35, "color": "#EDC948", "label": "Community 35", "count": 5}, {"cid": 36, "color": "#B07AA1", "label": "Community 36", "count": 4}, {"cid": 37, "color": "#FF9DA7", "label": "Community 37", "count": 4}, {"cid": 38, "color": "#9C755F", "label": "Community 38", "count": 3}, {"cid": 39, "color": "#BAB0AC", "label": "Community 39", "count": 1}, {"cid": 40, "color": "#4E79A7", "label": "Community 40", "count": 1}, {"cid": 41, "color": "#F28E2B", "label": "Community 41", "count": 1}, {"cid": 42, "color": "#E15759", "label": "Community 42", "count": 1}, {"cid": 43, "color": "#76B7B2", "label": "Community 43", "count": 1}, {"cid": 44, "color": "#59A14F", "label": "Community 44", "count": 1}, {"cid": 45, "color": "#EDC948", "label": "Community 45", "count": 1}, {"cid": 46, "color": "#B07AA1", "label": "Community 46", "count": 1}, {"cid": 47, "color": "#FF9DA7", "label": "Community 47", "count": 1}, {"cid": 48, "color": "#9C755F", "label": "Community 48", "count": 1}, {"cid": 49, "color": "#BAB0AC", "label": "Community 49", "count": 1}, {"cid": 50, "color": "#4E79A7", "label": "Community 50", "count": 1}, {"cid": 51, "color": "#F28E2B", "label": "Community 51", "count": 1}, {"cid": 52, "color": "#E15759", "label": "Community 52", "count": 1}, {"cid": 53, "color": "#76B7B2", "label": "Community 53", "count": 1}, {"cid": 54, "color": "#59A14F", "label": "Community 54", "count": 1}, {"cid": 55, "color": "#EDC948", "label": "Community 55", "count": 1}, {"cid": 56, "color": "#B07AA1", "label": "Community 56", "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 selectAllCb = document.getElementById('select-all-cb');
- function updateSelectAllState() {
- const total = LEGEND.length;
- const hidden = hiddenCommunities.size;
- selectAllCb.checked = hidden === 0;
- selectAllCb.indeterminate = hidden > 0 && hidden < total;
- }
- function toggleAllCommunities(hide) {
- document.querySelectorAll('.legend-item').forEach(item => {
- hide ? item.classList.add('dimmed') : item.classList.remove('dimmed');
- });
- document.querySelectorAll('.legend-cb').forEach(cb => {
- cb.checked = !hide;
- });
- LEGEND.forEach(c => {
- if (hide) hiddenCommunities.add(c.cid); else hiddenCommunities.delete(c.cid);
- });
- const updates = RAW_NODES.map(n => ({ id: n.id, hidden: hide }));
- nodesDS.update(updates);
- updateSelectAllState();
- }
- const legendEl = document.getElementById('legend');
- LEGEND.forEach(c => {
- const item = document.createElement('div');
- item.className = 'legend-item';
- const cb = document.createElement('input');
- cb.type = 'checkbox';
- cb.className = 'legend-cb';
- cb.checked = true;
- cb.addEventListener('change', (e) => {
- e.stopPropagation();
- if (cb.checked) {
- hiddenCommunities.delete(c.cid);
- item.classList.remove('dimmed');
- } else {
- hiddenCommunities.add(c.cid);
- item.classList.add('dimmed');
- }
- const updates = RAW_NODES
- .filter(n => n.community === c.cid)
- .map(n => ({ id: n.id, hidden: !cb.checked }));
- nodesDS.update(updates);
- updateSelectAllState();
- });
- item.innerHTML = `<div class="legend-dot" style="background:${c.color}"></div>
- <span class="legend-label">${c.label}</span>
- <span class="legend-count">${c.count}</span>`;
- item.prepend(cb);
- item.onclick = (e) => {
- if (e.target === cb) return;
- cb.checked = !cb.checked;
- cb.dispatchEvent(new Event('change'));
- };
- legendEl.appendChild(item);
- });
- </script>
- <script>
- // Render hyperedges as shaded regions
- const hyperedges = [];
- // afterDrawing passes ctx already transformed to network coordinate space.
- // Draw node positions raw — no manual pan/zoom/DPR math needed.
- network.on('afterDrawing', function(ctx) {
- hyperedges.forEach(h => {
- const positions = h.nodes
- .map(nid => network.getPositions([nid])[nid])
- .filter(p => p !== undefined);
- if (positions.length < 2) return;
- ctx.save();
- ctx.globalAlpha = 0.12;
- ctx.fillStyle = '#6366f1';
- ctx.strokeStyle = '#6366f1';
- ctx.lineWidth = 2;
- ctx.beginPath();
- // Centroid and expanded hull in network coordinates
- const cx = positions.reduce((s, p) => s + p.x, 0) / positions.length;
- const cy = positions.reduce((s, p) => s + p.y, 0) / positions.length;
- const expanded = positions.map(p => ({
- x: cx + (p.x - cx) * 1.15,
- y: cy + (p.y - cy) * 1.15
- }));
- ctx.moveTo(expanded[0].x, expanded[0].y);
- expanded.slice(1).forEach(p => ctx.lineTo(p.x, p.y));
- ctx.closePath();
- ctx.fill();
- ctx.globalAlpha = 0.4;
- ctx.stroke();
- // Label
- ctx.globalAlpha = 0.8;
- ctx.fillStyle = '#4f46e5';
- ctx.font = 'bold 11px sans-serif';
- ctx.textAlign = 'center';
- ctx.fillText(h.label, cx, cy - 5);
- ctx.restore();
- });
- });
- </script>
- </body>
- </html>
|