From 878ce80ef3ca88a2c108fbc713cd6ea461c44de1 Mon Sep 17 00:00:00 2001 From: ZZJ <zzjdsg2300@163.com> Date: 星期三, 13 十月 2021 13:51:03 +0800 Subject: [PATCH] 拓扑图 --- src/pages/settings/views/clusterManagement.vue | 13 src/pages/settings/components/netNodeData.js | 6808 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ src/pages/vindicate/index/App.vue | 37 src/pages/vindicate/views/sysInfo.vue | 2 src/pages/settings/components/NetNode.vue | 281 ++ src/pages/settings/views/deviceInfo.vue | 293 -- src/pages/settings/views/NetSettings.vue | 60 src/pages/settings/index/index.vue | 41 8 files changed, 7,235 insertions(+), 300 deletions(-) diff --git a/src/pages/settings/components/NetNode.vue b/src/pages/settings/components/NetNode.vue new file mode 100644 index 0000000..c4a42cf --- /dev/null +++ b/src/pages/settings/components/NetNode.vue @@ -0,0 +1,281 @@ +<template> + <div class="net-node"> + <div class="vue-d3-network"> + <D3Network + ref='net' + :net-nodes="nodes" + :net-links="links" + :options="options" + /> + </div> + + <span class="icon iconfont zoom-in" + @click="changeForce(1)" + :class="{'zoom-disabled' + :disabled.zoomIn}"></span> + + <span class="icon iconfont zoom-out" + @click="changeForce(0)" + :class="{'zoom-disabled' + :disabled.zoomOut}"></span> + + <div class="illustrate"> + <div> + <span class="illu-server"></span> 鏈嶅姟鍣� + </div> + + <div> + <span class="analysis"></span> 鍒嗘瀽鐩掑瓙 + </div> + </div> + + </div> +</template> + +<script> +import D3Network from 'vue-d3-network' +import {nodes,links} from './netNodeData' + +export default { +created () { + this.reset() +}, + +props:{ + innerNodes:Array +}, + +data () { + return { + // settings: { + // maxLinks: 2, + // maxNodes: 130 + // }, + nodes, + links, + options: { + size: { + w: 600, + h: 240 + }, + offset: { + x: 0, + y: 0 + }, + nodeSize: 18, + force: 300, + nodeLabels: true + }, + disabled:{ + zoomIn:false, + zoomOut:false + } + } + +}, + +components: { + D3Network +}, + +methods: { + // 鍒濆鍖� + // reset () { + // this.nodes = this.makeRandomNodes(this.settings.maxNodes) + // this.links = this.makeRandomLinks(this.nodes, this.settings.maxLinks) + // console.log(this.nodes); + // console.log(this.links); + // }, + + // 闅忔満鐢熸垚鑺傜偣 + // makeRandomNodes (maxNodes) { + // let nodes = Array.apply(null, { length: maxNodes }) + // .map((value, index) => { return this.newNode(index) }) + // return nodes + // }, + // newNode (nodeId) { + // return { id: nodeId, name: this.newNodeName(),_cssClass:"node-default" } + // }, + // newNodeName () { + // return Math.random().toString(36).substring(7) + // }, + + // 闅忔満鐢熸垚杩炵嚎 + // newLink (id, sid, tid) { + // return { id, sid, tid,_color:"rgb(90,90,90)" } + // }, + // makeRandomLinks (nodes, maxLinks) { + // let links = [] + // let id = 0 + // for (let node of nodes) { + // let total = Math.floor(Math.random() * maxLinks) + // for (let i = 0; i <= total; i++) { + // let target = Math.floor(Math.random() * nodes.length) + // let source = node.id + // id++ + // links.push(this.newLink(id, source, target)) + // } + // } + // return links + // }, + + // 鍒濆鍖� + reset() { + let linkId = 200 + this.innerNodes.forEach((item,index) => { + if (index === 0) { + this.nodes = this.addNode(item,"server") + this.links = this.addLink(linkId,6,`${item.node_id}`,"rgba(90,90,90,.6)") + this.links = this.addLink(linkId+1,8,`${item.node_id}`,"rgba(90,90,90,.6)") + linkId+=2 + } + else { + this.nodes = this.addNode(item,"server") + this.links = this.addLink(linkId,item.node_id,this.innerNodes[index-1].node_id,"#4E94FF") + linkId+=1 + } + }) + }, + + // 娣诲姞鏂拌妭鐐� + addNode(newNode,type) { + return [...this.nodes,{ + "id": `${newNode.node_id}`, + "name": `${newNode.nodeName}`, + "_cssClass": `node-${type}`, + "_labelClass": `label-${type}`, + "x": 400, + "y": 100 + }] + }, + + // 娣诲姞鏂拌繛绾� + addLink(id,sid,tid,color) { + return [...this.links,{ + "id": id, + "sid": sid, + "tid": tid, + "_color": color, + "_svgAttrs": {"stroke-width": 2} + }] + }, + + // 璋冩暣浣滅敤鍔� + changeForce(judge) { + if(judge && this.options.nodeSize >25) { + this.disabled.zoomIn = true + return + } + if(!judge && this.options.nodeSize <11) { + this.disabled.zoomOut = true + return + } + const force =judge? this.options.force + 70 : this.options.force - 70 + let nodeSize = judge? this.options.nodeSize + 2 : this.options.nodeSize - 2 + this.disabled.zoomOut = this.disabled.zoomIn = false + this.options = { + size: { + w: 600, + h: 240 + }, + offset: { + x: 0, + y: 0 + }, + nodeSize: nodeSize, + force + } + console.log( this.options); + }, + + } +} +</script> + +<style lang="scss" scoped> +.net-node { + position: relative; + overflow: hidden; + margin-top:10px ; + margin-bottom:4px ; + padding-top:10px ; + height: 240px; + background-color: rgba(255, 255, 255, 0.719); + + ::v-deep .node-default { + fill: #fff; + stroke: rgb(90,90,90); + stroke-width: 1px; + } + + ::v-deep .node-server { + fill: #fff; + stroke: #4E94FF; + stroke-width: 2px; + } + + ::v-deep .label-default { + display: none; + } + + ::v-deep .label-server { + font-weight: 700; + } + + .zoom-in,.zoom-out { + position: absolute; + font-size: 21px; + cursor: pointer; + color: #333; + + &:hover { + color: var(--colorCard); + } + + &.zoom-disabled:hover { + color: #333; + cursor: not-allowed; + } + } + + .zoom-in { + top: 20px; + right: 20px; + } + + .zoom-out { + top: 50px; + right: 20px; + } + + .illustrate { + position: absolute; + display: flex; + flex-direction: column; + justify-content: center; + padding-left:8px ; + top: 180px; + right: 20px; + height: 40px; + width: 68px; + background-color: #fff; + text-align: left; + font-weight: bold; + font-size: 12px; + .illu-server { + display: inline-block; + width: 4px; + height: 4px; + border: 2px solid #4E94FF; + border-radius:4px ; + } + .analysis { + display: inline-block; + width: 4px; + height: 4px; + border: 2px solid #4EF4FF; + border-radius:4px ; + } + } +} +</style> \ No newline at end of file diff --git a/src/pages/settings/components/netNodeData.js b/src/pages/settings/components/netNodeData.js new file mode 100644 index 0000000..3bab124 --- /dev/null +++ b/src/pages/settings/components/netNodeData.js @@ -0,0 +1,6808 @@ +export const nodes = [ + { + "id": 0, + "name": "3ewbs", + "_cssClass": "node-default", + "x": 422.01253554268953, + "y": 88.10556780015368, + "index": 0, + "vy": -0.0010237605843004755, + "vx": -0.0009648805175385389, + "_labelClass": "label-default" + }, + { + "id": 1, + "name": "h5kcti", + "_cssClass": "node-default", + "x": 324.69261359002604, + "y": 143.09245078600944, + "index": 1, + "vy": 0.00026069014262276787, + "vx": -0.0014271999617400638, + "_labelClass": "label-default" + }, + { + "id": 2, + "name": "a5a1d", + "_cssClass": "node-default", + "x": 404.401794337228, + "y": 80.66370037646838, + "index": 2, + "vy": -0.0004845293171897977, + "vx": -0.0011132594486890951, + "_labelClass": "label-default" + }, + { + "id": 3, + "name": "1vtjdq", + "_cssClass": "node-default", + "x": 422.64284117780306, + "y": 7.993895693208014, + "index": 3, + "vy": -0.00035637587410694864, + "vx": 0.0013389237299256667, + "_labelClass": "label-default" + }, + { + "id": 4, + "name": "ssb7vc", + "_cssClass": "node-default", + "x": 472.67738529913123, + "y": 105.37737605085815, + "index": 4, + "vy": -0.00025867755193498666, + "vx": -0.0003002416371407169, + "_labelClass": "label-default" + }, + { + "id": 5, + "name": "voood", + "_cssClass": "node-default", + "x": 450.58566284013995, + "y": 122.14626093581273, + "index": 5, + "vy": 0.0020162552921259304, + "vx": -0.0021563528745758833, + "_labelClass": "label-default" + }, + { + "id": 6, + "name": "1f8plb", + "_cssClass": "node-default", + "x": 419.3690378335888, + "y": 100.89538003936742, + "index": 6, + "vy": -0.0004761935796058073, + "vx": 0.00009557000898578836, + "_labelClass": "label-default" + }, + { + "id": 7, + "name": "y8mlsf", + "_cssClass": "node-default", + "x": 358.08549555229735, + "y": 186.5025401308263, + "index": 7, + "vy": -0.00028203682173126256, + "vx": -0.0003959854210866148, + "_labelClass": "label-default" + }, + { + "id": 8, + "name": "cu8am9", + "_cssClass": "node-default", + "x": 382.2662926382867, + "y": 80.8524305753426, + "index": 8, + "vy": 0.0003693381330250343, + "vx": 0.0006304414182809675, + "_labelClass": "label-default" + }, + { + "id": 9, + "name": "pk1n5", + "_cssClass": "node-default", + "x": 388.7537286336332, + "y": 188.80009976092967, + "index": 9, + "vy": -0.0003866928363919554, + "vx": 0.0005470303527312677, + "_labelClass": "label-default" + }, + { + "id": 10, + "name": "i0dfne", + "_cssClass": "node-default", + "x": 418.86171828639556, + "y": 33.72242296464376, + "index": 10, + "vy": 0.0005271632237496902, + "vx": -0.0008080711284006966, + "_labelClass": "label-default" + }, + { + "id": 11, + "name": "jxxzb", + "_cssClass": "node-default", + "x": 482.128924244494, + "y": 146.21276878686498, + "index": 11, + "vy": 0.0007980401904977962, + "vx": 0.0004424984014921577, + "_labelClass": "label-default" + }, + { + "id": 12, + "name": "2fz8ne", + "_cssClass": "node-default", + "x": 360.86665518438684, + "y": 148.1798285112359, + "index": 12, + "vy": -0.002324658468922165, + "vx": 0.0001257618608468293, + "_labelClass": "label-default" + }, + { + "id": 13, + "name": "tcnoc7", + "_cssClass": "node-default", + "x": 454.28635204029194, + "y": 158.97814534364144, + "index": 13, + "vy": 0.00018190949989821612, + "vx": 0.000012202304067601179, + "_labelClass": "label-default" + }, + { + "id": 14, + "name": "ll4ktv", + "_cssClass": "node-default", + "x": 438.7226407781981, + "y": 160.42480450002898, + "index": 14, + "vy": 0.00009701617268557783, + "vx": 0.00006174252811402955, + "_labelClass": "label-default" + }, + { + "id": 15, + "name": "8jy9ob", + "_cssClass": "node-default", + "x": 396.7480321052754, + "y": 107.87846674460806, + "index": 15, + "vy": -0.002373859653690779, + "vx": -0.00188436163075548, + "_labelClass": "label-default" + }, + { + "id": 16, + "name": "s2hn4c", + "_cssClass": "node-default", + "x": 494.9111466825618, + "y": 129.82091612477453, + "index": 16, + "vy": -0.00009148179241610281, + "vx": 0.0012916874033135504, + "_labelClass": "label-default" + }, + { + "id": 17, + "name": "a9odiq", + "_cssClass": "node-default", + "x": 470.44343326891715, + "y": 92.56607180575435, + "index": 17, + "vy": -0.00106567171330581, + "vx": 0.001426285466651893, + "_labelClass": "label-default" + }, + { + "id": 18, + "name": "ztpf7", + "_cssClass": "node-default", + "x": 419.4791784573061, + "y": 118.32398142271929, + "index": 18, + "vy": -0.0007819185029179276, + "vx": -0.0005113027003699465, + "_labelClass": "label-default" + }, + { + "id": 19, + "name": "brb6to", + "_cssClass": "node-default", + "x": 457.3591613872679, + "y": 127.08840609683716, + "index": 19, + "vy": -0.0021883400230721605, + "vx": 0.0015539098326503183, + "_labelClass": "label-default" + }, + { + "id": 20, + "name": "8f4y2", + "_cssClass": "node-default", + "x": 408.12211516621596, + "y": 54.690970519310305, + "index": 20, + "vy": 0.003604347438191066, + "vx": -0.0021813439378349448, + "_labelClass": "label-default" + }, + { + "id": 21, + "name": "xvdeiq", + "_cssClass": "node-default", + "x": 312.6748618447365, + "y": 93.27627716694421, + "index": 21, + "vy": 0.00024305035981515093, + "vx": -0.0004358354374676498, + "_labelClass": "label-default" + }, + { + "id": 22, + "name": "uscwy8", + "_cssClass": "node-default", + "x": 378.66112307490727, + "y": 48.98850133613222, + "index": 22, + "vy": 0.0018549358398967995, + "vx": -0.0021338026211870486, + "_labelClass": "label-default" + }, + { + "id": 23, + "name": "t1bztl", + "_cssClass": "node-default", + "x": 321.8446808951692, + "y": 104.16535338094326, + "index": 23, + "vy": -0.0002661625450488337, + "vx": 0.0005380718866437213, + "_labelClass": "label-default" + }, + { + "id": 24, + "name": "1gly0b", + "_cssClass": "node-default", + "x": 476.50230982431583, + "y": 118.96601371169992, + "index": 24, + "vy": -0.00031233926444791004, + "vx": 0.00003798945404152481, + "_labelClass": "label-default" + }, + { + "id": 25, + "name": "jqomga", + "_cssClass": "node-default", + "x": 428.42093033885055, + "y": 194.99999204768278, + "index": 25, + "vy": 0.000548465163146758, + "vx": -0.0022072771302044302, + "_labelClass": "label-default" + }, + { + "id": 26, + "name": "y2nd8g", + "_cssClass": "node-default", + "x": 471.3402484451996, + "y": 141.08475179347056, + "index": 26, + "vy": 0.00011256728106117254, + "vx": 0.0007402418637824623, + "_labelClass": "label-default" + }, + { + "id": 27, + "name": "akbowc", + "_cssClass": "node-default", + "x": 398.86007975189455, + "y": 197.3770240196186, + "index": 27, + "vy": 0.00063760569431356, + "vx": -0.00014824543279184587, + "_labelClass": "label-default" + }, + { + "id": 28, + "name": "vft56h", + "_cssClass": "node-default", + "x": 334.91215210125836, + "y": 94.78799453050524, + "index": 28, + "vy": 0.0004206903587722468, + "vx": -0.0004321766587990987, + "_labelClass": "label-default" + }, + { + "id": 29, + "name": "r1z7yl", + "_cssClass": "node-default", + "x": 377.1848955941488, + "y": 139.11517817251956, + "index": 29, + "vy": -0.001486177029779658, + "vx": -0.001285401274143028, + "_labelClass": "label-default" + }, + { + "id": 30, + "name": "e3k6gs", + "_cssClass": "node-default", + "x": 359.29605838063947, + "y": 51.383446502734046, + "index": 30, + "vy": 0.0006207190223016245, + "vx": -0.0005948619806342337, + "_labelClass": "label-default" + }, + { + "id": 31, + "name": "1vzuis", + "_cssClass": "node-default", + "x": 413.35696830849855, + "y": 162.56363617154489, + "index": 31, + "vy": 0.0012927978231972175, + "vx": 0.002862121987339709, + "_labelClass": "label-default" + }, + { + "id": 32, + "name": "scov3l", + "_cssClass": "node-default", + "x": 335.6704041745352, + "y": 147.16812970958085, + "index": 32, + "vy": -0.0010394381944780738, + "vx": 0.000229906671212502, + "_labelClass": "label-default" + }, + { + "id": 33, + "name": "xpjqd8", + "_cssClass": "node-default", + "x": 364.065615643236, + "y": 78.25483748403657, + "index": 33, + "vy": 0.0015722616769229755, + "vx": -0.0005926762763703718, + "_labelClass": "label-default" + }, + { + "id": 34, + "name": "c4t0db", + "_cssClass": "node-default", + "x": 407.71593835565795, + "y": 89.3581174996468, + "index": 34, + "vy": -0.0006378202227727299, + "vx": 0.0011318414892146121, + "_labelClass": "label-default" + }, + { + "id": 35, + "name": "p2ntca", + "_cssClass": "node-default", + "x": 339.83329103159014, + "y": 84.17167889646394, + "index": 35, + "vy": 0.0027909507327354478, + "vx": 0.0006219240238672614, + "_labelClass": "label-default" + }, + { + "id": 36, + "name": "w0smur", + "_cssClass": "node-default", + "x": 351.2904393264253, + "y": 149.99414490258798, + "index": 36, + "vy": 0.0021089006852110354, + "vx": 0.0004921125103322079, + "_labelClass": "label-default" + }, + { + "id": 37, + "name": "zv4m1", + "_cssClass": "node-default", + "x": 400.80454497191204, + "y": 126.98802530439765, + "index": 37, + "vy": 0.0016773976351753467, + "vx": 0.00009419227079291966, + "_labelClass": "label-default" + }, + { + "id": 38, + "name": "xg40lh", + "_cssClass": "node-default", + "x": 391.96136260156425, + "y": 136.4161715417628, + "index": 38, + "vy": 0.0025656288951290303, + "vx": 0.0017825907618016883, + "_labelClass": "label-default" + }, + { + "id": 39, + "name": "ay8hte", + "_cssClass": "node-default", + "x": 418.9221043612044, + "y": 131.9147807937393, + "index": 39, + "vy": -0.0016490563440478545, + "vx": 0.0003953293187439443, + "_labelClass": "label-default" + }, + { + "id": 40, + "name": "sqvpw9", + "_cssClass": "node-default", + "x": 366.5962091417913, + "y": 120.50301481262845, + "index": 40, + "vy": 0.0011065427207375342, + "vx": 0.0014132258392817927, + "_labelClass": "label-default" + }, + { + "id": 41, + "name": "frw91b", + "_cssClass": "node-default", + "x": 434.7157419001991, + "y": 183.47913761161396, + "index": 41, + "vy": 0.0005897599522614899, + "vx": -0.001763864955179206, + "_labelClass": "label-default" + }, + { + "id": 42, + "name": "russxb", + "_cssClass": "node-default", + "x": 386.8241736002237, + "y": 9.287072170277991, + "index": 42, + "vy": -0.0008506479421310095, + "vx": 0.0014609767407860786, + "_labelClass": "label-default" + }, + { + "id": 43, + "name": "k56yu", + "_cssClass": "node-default", + "x": 393.24584720881927, + "y": 52.643023022817445, + "index": 43, + "vy": -0.004397938077465979, + "vx": -0.003180881936537989, + "_labelClass": "label-default" + }, + { + "id": 44, + "name": "xv51pi", + "_cssClass": "node-default", + "x": 403.6636290633953, + "y": 105.05217025407296, + "index": 44, + "vy": 0.0016320852538551584, + "vx": 0.00019719991528111244, + "_labelClass": "label-default" + }, + { + "id": 45, + "name": "vk9cvp", + "_cssClass": "node-default", + "x": 423.3171253838341, + "y": 174.9140851563324, + "index": 45, + "vy": -0.00018419740803327474, + "vx": 0.000834983448552739, + "_labelClass": "label-default" + }, + { + "id": 46, + "name": "xc59pf", + "_cssClass": "node-default", + "x": 357.48298081551957, + "y": 26.342609431393047, + "index": 46, + "vy": -0.0007772230755213379, + "vx": 0.0017126314462751547, + "_labelClass": "label-default" + }, + { + "id": 47, + "name": "4uhxms", + "_cssClass": "node-default", + "x": 447.22992390718656, + "y": 60.821700455399736, + "index": 47, + "vy": -0.0005119168833543581, + "vx": -0.0009814853288081034, + "_labelClass": "label-default" + }, + { + "id": 48, + "name": "6afq0t", + "_cssClass": "node-default", + "x": 341.25085799536197, + "y": 119.86120126045859, + "index": 48, + "vy": 0.0013711913894302009, + "vx": -0.001725790931595739, + "_labelClass": "label-default" + }, + { + "id": 49, + "name": "lbx718", + "_cssClass": "node-default", + "x": 366.2630180273298, + "y": 8.908857881041254, + "index": 49, + "vy": 0.001427883845516788, + "vx": -0.0007987373267056354, + "_labelClass": "label-default" + }, + { + "id": 50, + "name": "ibc8r", + "_cssClass": "node-default", + "x": 332.0263323055659, + "y": 65.61504321746638, + "index": 50, + "vy": -0.000026546641697859596, + "vx": 0.0006373098081729345, + "_labelClass": "label-default" + }, + { + "id": 51, + "name": "b8sl9g", + "_cssClass": "node-default", + "x": 386.47191810177776, + "y": 122.43365121912518, + "index": 51, + "vy": 0.0015885805390337474, + "vx": 0.0018828203815383837, + "_labelClass": "label-default" + }, + { + "id": 52, + "name": "ehzeu9", + "_cssClass": "node-default", + "x": 446.11979707003525, + "y": 70.2778090953105, + "index": 52, + "vy": -0.00005623283043909057, + "vx": 0.0005720538248760969, + "_labelClass": "label-default" + }, + { + "id": 53, + "name": "y2hmhc", + "_cssClass": "node-default", + "x": 363.7305210730842, + "y": 166.05936104778976, + "index": 53, + "vy": 0.000149637829782774, + "vx": 0.0002489504546362025, + "_labelClass": "label-default" + }, + { + "id": 54, + "name": "vtctfb", + "_cssClass": "node-default", + "x": 374.32030556085584, + "y": 34.47872906620214, + "index": 54, + "vy": -0.001145434927459863, + "vx": 0.0004057080543375439, + "_labelClass": "label-default" + }, + { + "id": 55, + "name": "c8lg2n", + "_cssClass": "node-default", + "x": 474.69788997032816, + "y": 157.3618645610254, + "index": 55, + "vy": 0.00019327458187630696, + "vx": -0.0005529571268271102, + "_labelClass": "label-default" + }, + { + "id": 56, + "name": "2i7xxf", + "_cssClass": "node-default", + "x": 432.26476869168636, + "y": 103.63154494542478, + "index": 56, + "vy": -0.0014922259447731395, + "vx": -0.00032965128783252564, + "_labelClass": "label-default" + }, + { + "id": 57, + "name": "15o205", + "_cssClass": "node-default", + "x": 345.99213960256526, + "y": 54.95639016418944, + "index": 57, + "vy": -0.00262501835450807, + "vx": -0.0025895198166709372, + "_labelClass": "label-default" + }, + { + "id": 58, + "name": "5oqiij", + "_cssClass": "node-default", + "x": 313.3069355707377, + "y": 114.86284791746603, + "index": 58, + "vy": -0.0003911618412998401, + "vx": 0.00006082498045766422, + "_labelClass": "label-default" + }, + { + "id": 59, + "name": "yhrqy", + "_cssClass": "node-default", + "x": 432.5580402287739, + "y": 62.36869389088665, + "index": 59, + "vy": 0.0014011562797538837, + "vx": -0.0005274949402863141, + "_labelClass": "label-default" + }, + { + "id": 60, + "name": "h31uwq", + "_cssClass": "node-default", + "x": 436.1368378458145, + "y": 147.20217446303099, + "index": 60, + "vy": -0.000586207030619241, + "vx": 0.00005713936640884803, + "_labelClass": "label-default" + }, + { + "id": 61, + "name": "8nw06w", + "_cssClass": "node-default", + "x": 420.93258433898137, + "y": 56.81810132485101, + "index": 61, + "vy": -0.0021445188829768216, + "vx": 0.00015373371619042527, + "_labelClass": "label-default" + }, + { + "id": 62, + "name": "yumqq", + "_cssClass": "node-default", + "x": 445.49976838577857, + "y": 29.734343687539, + "index": 62, + "vy": 0.0010580639981790146, + "vx": -0.00012451829253081652, + "_labelClass": "label-default" + }, + { + "id": 63, + "name": "aw0z1k", + "_cssClass": "node-default", + "x": 441.36731816648586, + "y": 96.38620688338307, + "index": 63, + "vy": 0.00045627521030140185, + "vx": 0.00041039672116841025, + "_labelClass": "label-default" + }, + { + "id": 64, + "name": "0xrzbo", + "_cssClass": "node-default", + "x": 459.19723280369874, + "y": 26.896325390043806, + "index": 64, + "vy": -0.000559596823748406, + "vx": 0.000029107665176433904, + "_labelClass": "label-default" + }, + { + "id": 65, + "name": "5wyl65", + "_cssClass": "node-default", + "x": 377.6095411853096, + "y": 96.81220616934351, + "index": 65, + "vy": 0.003230079185842613, + "vx": -0.006125089265439184, + "_labelClass": "label-default" + }, + { + "id": 66, + "name": "p6dodm", + "_cssClass": "node-default", + "x": 455.2899440030924, + "y": 44.70411800414369, + "index": 66, + "vy": -0.00028572453273449275, + "vx": 0.0005491524593119674, + "_labelClass": "label-default" + }, + { + "id": 67, + "name": "b6guzw", + "_cssClass": "node-default", + "x": 395.49272484733274, + "y": 75.29769227611484, + "index": 67, + "vy": 0.0006425768525723398, + "vx": -0.0006753486194254999, + "_labelClass": "label-default" + }, + { + "id": 68, + "name": "mreqlo", + "_cssClass": "node-default", + "x": 352.50146006068564, + "y": 78.22049677624157, + "index": 68, + "vy": -0.002644912358949254, + "vx": 0.00031686184886548484, + "_labelClass": "label-default" + }, + { + "id": 69, + "name": "9j21vf", + "_cssClass": "node-default", + "x": 450.44725584469757, + "y": 145.57970509606318, + "index": 69, + "vy": 0.0001700571243308062, + "vx": 0.00019249639324993574, + "_labelClass": "label-default" + }, + { + "id": 70, + "name": "d0jzkl", + "_cssClass": "node-default", + "x": 363.3538889691174, + "y": 106.08365180082812, + "index": 70, + "vy": 0.00033839690627108945, + "vx": -0.0009029225950710417, + "_labelClass": "label-default" + }, + { + "id": 71, + "name": "or1dmn", + "_cssClass": "node-default", + "x": 404.1488627414665, + "y": 32.47629808338597, + "index": 71, + "vy": -0.0006540414903631997, + "vx": -0.00094750751491176, + "_labelClass": "label-default" + }, + { + "id": 72, + "name": "uvrywb", + "_cssClass": "node-default", + "x": 448.2627232592923, + "y": 175.78267323522766, + "index": 72, + "vy": 0.0007406765191427057, + "vx": -0.0007764888820319345, + "_labelClass": "label-default" + }, + { + "id": 73, + "name": "yys08", + "_cssClass": "node-default", + "x": 341.3298802727589, + "y": 107.62805750590552, + "index": 73, + "vy": 0.00009587129044351271, + "vx": 0.002288453395588852, + "_labelClass": "label-default" + }, + { + "id": 74, + "name": "1n3bmj", + "_cssClass": "node-default", + "x": 502.6054581784044, + "y": 75.80234949264454, + "index": 74, + "vy": -0.0012962258868852016, + "vx": -0.0007533886402494137, + "_labelClass": "label-default" + }, + { + "id": 75, + "name": "pruhz", + "_cssClass": "node-default", + "x": 343.5251914265343, + "y": 69.57334171727193, + "index": 75, + "vy": 0.000590097517322836, + "vx": -0.0014956145166388837, + "_labelClass": "label-default" + }, + { + "id": 76, + "name": "gu2w8g", + "_cssClass": "node-default", + "x": 470.2184956730566, + "y": 36.93693419664406, + "index": 76, + "vy": 0.00006316093941055207, + "vx": -0.00019376400961581262, + "_labelClass": "label-default" + }, + { + "id": 77, + "name": "pnadp", + "_cssClass": "node-default", + "x": 369.1080660151795, + "y": 150.13023681276306, + "index": 77, + "vy": 0.0015766992856047577, + "vx": -0.0003680983177578539, + "_labelClass": "label-default" + }, + { + "id": 78, + "name": "sb4qpe", + "_cssClass": "node-default", + "x": 312.05124837616717, + "y": 76.10720488453013, + "index": 78, + "vy": -0.0008002779750596909, + "vx": -0.00025546217247657087, + "_labelClass": "label-default" + }, + { + "id": 79, + "name": "9m3cp8", + "_cssClass": "node-default", + "x": 436.8841291842744, + "y": 116.81853904111713, + "index": 79, + "vy": -0.000981975739541365, + "vx": 0.00013639146411162495, + "_labelClass": "label-default" + }, + { + "id": 80, + "name": "23vky", + "_cssClass": "node-default", + "x": 450.86433323424893, + "y": 107.243245609569, + "index": 80, + "vy": 0.00020337951000286682, + "vx": 0.0008451919003263546, + "_labelClass": "label-default" + }, + { + "id": 81, + "name": "a4vll", + "_cssClass": "node-default", + "x": 489.7113378822183, + "y": 59.88085082884674, + "index": 81, + "vy": 0.001023457914546018, + "vx": 0.0008212159224022978, + "_labelClass": "label-default" + }, + { + "id": 82, + "name": "ttgp7l", + "_cssClass": "node-default", + "x": 464.3928357258118, + "y": 171.23511945063356, + "index": 82, + "vy": 0.00005142173753058801, + "vx": -0.0001770230700598425, + "_labelClass": "label-default" + }, + { + "id": 83, + "name": "vjrdcg", + "_cssClass": "node-default", + "x": 399.1257105976218, + "y": 11.054317729495068, + "index": 83, + "vy": 0.0011986399194118492, + "vx": 0.0009509273857036342, + "_labelClass": "label-default" + }, + { + "id": 84, + "name": "hw3sdm", + "_cssClass": "node-default", + "x": 318.8685929277688, + "y": 51.63819201492711, + "index": 84, + "vy": -0.00023649097784260182, + "vx": 0.00044472190216029246, + "_labelClass": "label-default" + }, + { + "id": 85, + "name": "p74m89", + "_cssClass": "node-default", + "x": 361.91032775517766, + "y": 133.81090396599456, + "index": 85, + "vy": 0.0012356147663703852, + "vx": -0.0016963492722738111, + "_labelClass": "label-default" + }, + { + "id": 86, + "name": "wyl1t", + "_cssClass": "node-default", + "x": 459.43234075702264, + "y": 59.54227682675203, + "index": 86, + "vy": -0.0012005128249364646, + "vx": -0.0005761539614976196, + "_labelClass": "label-default" + }, + { + "id": 87, + "name": "39wty", + "_cssClass": "node-default", + "x": 430.4269232899492, + "y": 125.71738051153952, + "index": 87, + "vy": -0.0012286330900336802, + "vx": 0.0010563740053582793, + "_labelClass": "label-default" + }, + { + "id": 88, + "name": "78fse", + "_cssClass": "node-default", + "x": 486.581524201113, + "y": 92.96847387758625, + "index": 88, + "vy": 0.0012881685506142282, + "vx": 0.0011787691669973986, + "_labelClass": "label-default" + }, + { + "id": 89, + "name": "pli4ch", + "_cssClass": "node-default", + "x": 501.33718996918066, + "y": 105.84497975231498, + "index": 89, + "vy": -0.0007557397305931611, + "vx": -0.0005161289887960603, + "_labelClass": "label-default" + }, + { + "id": 90, + "name": "xptukg", + "_cssClass": "node-default", + "x": 381.7679281519114, + "y": 110.17180373213485, + "index": 90, + "vy": 0.001265858047697888, + "vx": -0.0012255173350965015, + "_labelClass": "label-default" + }, + { + "id": 91, + "name": "rw3bso", + "_cssClass": "node-default", + "x": 320.4038567317048, + "y": 132.24764163145755, + "index": 91, + "vy": -0.0005268347432469368, + "vx": 0.00017028455387216792, + "_labelClass": "label-default" + }, + { + "id": 92, + "name": "ey0tyj", + "_cssClass": "node-default", + "x": 433.8856211532221, + "y": 12.58560774926412, + "index": 92, + "vy": 0.0009153659243341323, + "vx": 0.001380926706959042, + "_labelClass": "label-default" + }, + { + "id": 93, + "name": "gfdgxo", + "_cssClass": "node-default", + "x": 370.759320680256, + "y": 69.59352315113334, + "index": 93, + "vy": 0.0015148778541772157, + "vx": -0.000200979043049152, + "_labelClass": "label-default" + }, + { + "id": 94, + "name": "1y9qv", + "_cssClass": "node-default", + "x": 489.26667993724465, + "y": 81.80041035697003, + "index": 94, + "vy": -0.00018473408587352775, + "vx": -0.0009940591800940684, + "_labelClass": "label-default" + }, + { + "id": 95, + "name": "7cheg", + "_cssClass": "node-default", + "x": 329.0757712915332, + "y": 126.59991503956542, + "index": 95, + "vy": -0.0003250837220471308, + "vx": -0.00047457427358009777, + "_labelClass": "label-default" + }, + { + "id": 96, + "name": "6o6d1e", + "_cssClass": "node-default", + "x": 385.97315150410753, + "y": 67.06042099216737, + "index": 96, + "vy": -0.0011948193726409432, + "vx": 0.0004819620423771164, + "_labelClass": "label-default" + }, + { + "id": 97, + "name": "f71bad", + "_cssClass": "node-default", + "x": 415.4867143165565, + "y": 188.47730629377153, + "index": 97, + "vy": -0.0007678347407443995, + "vx": -0.0009779384407759915, + "_labelClass": "label-default" + }, + { + "id": 98, + "name": "kbityr", + "_cssClass": "node-default", + "x": 409.85195183361606, + "y": 14.61077609817812, + "index": 98, + "vy": -0.001376195788273088, + "vx": 0.0024053320319524234, + "_labelClass": "label-default" + }, + { + "id": 99, + "name": "5fj0wg", + "_cssClass": "node-default", + "x": 457.94478144152043, + "y": 90.26579902966293, + "index": 99, + "vy": 0.000714789380758797, + "vx": 0.00005732300294071081, + "_labelClass": "label-default" + }, + { + "id": 100, + "name": "5gbc6s", + "_cssClass": "node-default", + "x": 428.1014889800924, + "y": 28.67914111403817, + "index": 100, + "vy": 0.0008355041716365296, + "vx": -0.0006370436928820524, + "_labelClass": "label-default" + }, + { + "id": 101, + "name": "pvk3e", + "_cssClass": "node-default", + "x": 326.37908742614735, + "y": 84.53019823462743, + "index": 101, + "vy": 0.00017741969277072938, + "vx": -0.0010132050331023116, + "_labelClass": "label-default" + }, + { + "id": 102, + "name": "wyvqyi", + "_cssClass": "node-default", + "x": 491.2443274138911, + "y": 119.53783100663522, + "index": 102, + "vy": 0.00016977783160061392, + "vx": -0.0006582960103637408, + "_labelClass": "label-default" + }, + { + "id": 103, + "name": "4cbq46", + "_cssClass": "node-default", + "x": 477.78705433793357, + "y": 65.18454629843094, + "index": 103, + "vy": -0.0007850662182903728, + "vx": -0.0014451972355932628, + "_labelClass": "label-default" + }, + { + "id": 104, + "name": "2d98q", + "_cssClass": "node-default", + "x": 439.109944123908, + "y": 136.56040667258483, + "index": 104, + "vy": -0.00016914067580904926, + "vx": 0.00025090712732196236, + "_labelClass": "label-default" + }, + { + "id": 105, + "name": "7q0tz8", + "_cssClass": "node-default", + "x": 409.5417589854022, + "y": 138.69022823727812, + "index": 105, + "vy": -0.00011195493338983812, + "vx": 0.0019153236236903943, + "_labelClass": "label-default" + }, + { + "id": 106, + "name": "3s7lhm", + "_cssClass": "node-default", + "x": 383.51395771871216, + "y": 22.71761336266484, + "index": 106, + "vy": -0.0011827610222116917, + "vx": -0.0006026911066586968, + "_labelClass": "label-default" + }, + { + "id": 107, + "name": "9cawc", + "_cssClass": "node-default", + "x": 416.7527119697291, + "y": 71.02207068120077, + "index": 107, + "vy": -0.0012936065373925286, + "vx": 0.0004615278892764726, + "_labelClass": "label-default" + }, + { + "id": 108, + "name": "6438nh", + "_cssClass": "node-default", + "x": 359.4319377220432, + "y": 93.25756899913982, + "index": 108, + "vy": 0.000603481694535167, + "vx": -0.000053881522856263203, + "_labelClass": "label-default" + }, + { + "id": 109, + "name": "597up9", + "_cssClass": "node-default", + "x": 372.0934444736955, + "y": 56.297929198452024, + "index": 109, + "vy": 0.0020243123204494594, + "vx": -0.0004029132617732315, + "_labelClass": "label-default" + }, + { + "id": 110, + "name": "cf59xr", + "_cssClass": "node-default", + "x": 437.8761787943288, + "y": 82.08800003843403, + "index": 110, + "vy": 0.00005939994533229026, + "vx": 0.0008087911250739717, + "_labelClass": "label-default" + }, + { + "id": 111, + "name": "i38fp2", + "_cssClass": "node-default", + "x": 430.8158684900311, + "y": 42.59825198035904, + "index": 111, + "vy": 0.00013202903917029153, + "vx": -0.0007238981075793837, + "_labelClass": "label-default" + }, + { + "id": 112, + "name": "jx9h7", + "_cssClass": "node-default", + "x": 333.1458845987688, + "y": 49.17330980593839, + "index": 112, + "vy": 0.000040674972035327274, + "vx": -0.00034618837008050746, + "_labelClass": "label-default" + }, + { + "id": 113, + "name": "n449wi", + "_cssClass": "node-default", + "x": 469.7399012130191, + "y": 129.5223138302524, + "index": 113, + "vy": 0.0005311173990175625, + "vx": -0.00006069342199331831, + "_labelClass": "label-default" + }, + { + "id": 114, + "name": "8tnwwa", + "_cssClass": "node-default", + "x": 364.72038529101707, + "y": 38.971962568504026, + "index": 114, + "vy": 0.0026126151929759243, + "vx": 0.001681533499333042, + "_labelClass": "label-default" + }, + { + "id": 115, + "name": "x48fwb", + "_cssClass": "node-default", + "x": 473.3490789955173, + "y": 50.05604632662714, + "index": 115, + "vy": -0.0000016926091072967967, + "vx": 0.0010049349078720233, + "_labelClass": "label-default" + }, + { + "id": 116, + "name": "3b20r9", + "_cssClass": "node-default", + "x": 400.4071919097737, + "y": 164.70791776589687, + "index": 116, + "vy": -0.0010493563825812416, + "vx": 0.0013756943144831203, + "_labelClass": "label-default" + }, + { + "id": 117, + "name": "dx14l9", + "_cssClass": "node-default", + "x": 350.91757906606557, + "y": 37.013353227470795, + "index": 117, + "vy": -0.000538370716777779, + "vx": 0.0014152631786866733, + "_labelClass": "label-default" + }, + { + "id": 118, + "name": "6b6pdb", + "_cssClass": "node-default", + "x": 399.91601740471026, + "y": 43.976426041301664, + "index": 118, + "vy": -0.00016200057665345275, + "vx": 0.002672394527024542, + "_labelClass": "label-default" + }, + { + "id": 119, + "name": "zbz8m", + "_cssClass": "node-default", + "x": 386.3012747208951, + "y": 156.09711303404814, + "index": 119, + "vy": 0.00040873039766288786, + "vx": 0.0007659940262447019, + "_labelClass": "label-default" + }, + { + "id": 120, + "name": "1bbh8n", + "_cssClass": "node-default", + "x": 375.5122919700059, + "y": 88.31646383801142, + "index": 120, + "vy": -0.002714663904673482, + "vx": 0.003028589600808529, + "_labelClass": "label-default" + }, + { + "id": 121, + "name": "bs3ne", + "_cssClass": "node-default", + "x": 371.0641455910165, + "y": 183.92101002226804, + "index": 121, + "vy": 0.0004917506738684137, + "vx": -0.0001243500714726591, + "_labelClass": "label-default" + }, + { + "id": 122, + "name": "4gfcc", + "_cssClass": "node-default", + "x": 351.35665172280244, + "y": 127.42555421866795, + "index": 122, + "vy": -0.0012330522105253089, + "vx": 0.0003255024404983422, + "_labelClass": "label-default" + }, + { + "id": 123, + "name": "pymhas", + "_cssClass": "node-default", + "x": 334.1828999031232, + "y": 169.9207795449143, + "index": 123, + "vy": -0.0006044267193045355, + "vx": -0.0006162021511709476, + "_labelClass": "label-default" + }, + { + "id": 124, + "name": "vd7a0i", + "_cssClass": "node-default", + "x": 383.84824846133034, + "y": 169.4013382026788, + "index": 124, + "vy": 0.0002595848450843291, + "vx": -0.0003979095581848599, + "_labelClass": "label-default" + }, + { + "id": 125, + "name": "elt442j", + "_cssClass": "node-default", + "x": 467.6071824039861, + "y": 77.56598748640742, + "index": 125, + "vy": 0.00023013866063458023, + "vx": -0.0006436037468483931, + "_labelClass": "label-default" + }, + { + "id": 126, + "name": "o0wl79", + "_cssClass": "node-default", + "x": 402.7910296551747, + "y": 151.2388104697141, + "index": 126, + "vy": -0.0005243527724045418, + "vx": 0.0023035350941074876, + "_labelClass": "label-default" + }, + { + "id": 127, + "name": "6kg11", + "_cssClass": "node-default", + "x": 418.7606291087565, + "y": 150.6557891761223, + "index": 127, + "vy": -0.0009138465961746308, + "vx": 0.0007356342537692401, + "_labelClass": "label-default" + }, + { + "id": 128, + "name": "s84wi6", + "_cssClass": "node-default", + "x": 345.4700778894336, + "y": 165.02255347209484, + "index": 128, + "vy": 0.00030302430613308827, + "vx": -0.0005485776723737187, + "_labelClass": "label-default" + }, + { + "id": 129, + "name": "7pysu4", + "_cssClass": "node-default", + "x": 400.3125970462809, + "y": 178.10910880170385, + "index": 129, + "vy": -0.0002361055842115393, + "vx": -0.0025354340897428998, + "_labelClass": "label-default" + } +] + +export const links = [ + { + "id": 1, + "sid": 0, + "tid": 61, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 0, + "name": "3ewbs", + "_cssClass": "node-default", + "x": 422.01253554268953, + "y": 88.10556780015368, + "index": 0, + "vy": -0.0010237605843004755, + "vx": -0.0009648805175385389 + }, + "target": { + "id": 61, + "name": "8nw06w", + "_cssClass": "node-default", + "x": 420.93258433898137, + "y": 56.81810132485101, + "index": 61, + "vy": -0.0021445188829768216, + "vx": 0.00015373371619042527 + }, + "index": 0 + }, + { + "id": 2, + "sid": 0, + "tid": 90, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 0, + "name": "3ewbs", + "_cssClass": "node-default", + "x": 422.01253554268953, + "y": 88.10556780015368, + "index": 0, + "vy": -0.0010237605843004755, + "vx": -0.0009648805175385389 + }, + "target": { + "id": 90, + "name": "xptukg", + "_cssClass": "node-default", + "x": 381.7679281519114, + "y": 110.17180373213485, + "index": 90, + "vy": 0.001265858047697888, + "vx": -0.0012255173350965015 + }, + "index": 1 + }, + { + "id": 3, + "sid": 1, + "tid": 128, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 1, + "name": "h5kcti", + "_cssClass": "node-default", + "x": 324.69261359002604, + "y": 143.09245078600944, + "index": 1, + "vy": 0.00026069014262276787, + "vx": -0.0014271999617400638 + }, + "target": { + "id": 128, + "name": "s84wi6", + "_cssClass": "node-default", + "x": 345.4700778894336, + "y": 165.02255347209484, + "index": 128, + "vy": 0.00030302430613308827, + "vx": -0.0005485776723737187 + }, + "index": 2 + }, + { + "id": 4, + "sid": 1, + "tid": 35, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 1, + "name": "h5kcti", + "_cssClass": "node-default", + "x": 324.69261359002604, + "y": 143.09245078600944, + "index": 1, + "vy": 0.00026069014262276787, + "vx": -0.0014271999617400638 + }, + "target": { + "id": 35, + "name": "p2ntca", + "_cssClass": "node-default", + "x": 339.83329103159014, + "y": 84.17167889646394, + "index": 35, + "vy": 0.0027909507327354478, + "vx": 0.0006219240238672614 + }, + "index": 3 + }, + { + "id": 5, + "sid": 2, + "tid": 59, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 2, + "name": "a5a1d", + "_cssClass": "node-default", + "x": 404.401794337228, + "y": 80.66370037646838, + "index": 2, + "vy": -0.0004845293171897977, + "vx": -0.0011132594486890951 + }, + "target": { + "id": 59, + "name": "yhrqy", + "_cssClass": "node-default", + "x": 432.5580402287739, + "y": 62.36869389088665, + "index": 59, + "vy": 0.0014011562797538837, + "vx": -0.0005274949402863141 + }, + "index": 4 + }, + { + "id": 6, + "sid": 2, + "tid": 63, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 2, + "name": "a5a1d", + "_cssClass": "node-default", + "x": 404.401794337228, + "y": 80.66370037646838, + "index": 2, + "vy": -0.0004845293171897977, + "vx": -0.0011132594486890951 + }, + "target": { + "id": 63, + "name": "aw0z1k", + "_cssClass": "node-default", + "x": 441.36731816648586, + "y": 96.38620688338307, + "index": 63, + "vy": 0.00045627521030140185, + "vx": 0.00041039672116841025 + }, + "index": 5 + }, + { + "id": 7, + "sid": 3, + "tid": 64, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 3, + "name": "1vtjdq", + "_cssClass": "node-default", + "x": 422.64284117780306, + "y": 7.993895693208014, + "index": 3, + "vy": -0.00035637587410694864, + "vx": 0.0013389237299256667 + }, + "target": { + "id": 64, + "name": "0xrzbo", + "_cssClass": "node-default", + "x": 459.19723280369874, + "y": 26.896325390043806, + "index": 64, + "vy": -0.000559596823748406, + "vx": 0.000029107665176433904 + }, + "index": 6 + }, + { + "id": 8, + "sid": 3, + "tid": 42, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 3, + "name": "1vtjdq", + "_cssClass": "node-default", + "x": 422.64284117780306, + "y": 7.993895693208014, + "index": 3, + "vy": -0.00035637587410694864, + "vx": 0.0013389237299256667 + }, + "target": { + "id": 42, + "name": "russxb", + "_cssClass": "node-default", + "x": 386.8241736002237, + "y": 9.287072170277991, + "index": 42, + "vy": -0.0008506479421310095, + "vx": 0.0014609767407860786 + }, + "index": 7 + }, + { + "id": 9, + "sid": 4, + "tid": 56, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 4, + "name": "ssb7vc", + "_cssClass": "node-default", + "x": 472.67738529913123, + "y": 105.37737605085815, + "index": 4, + "vy": -0.00025867755193498666, + "vx": -0.0003002416371407169 + }, + "target": { + "id": 56, + "name": "2i7xxf", + "_cssClass": "node-default", + "x": 432.26476869168636, + "y": 103.63154494542478, + "index": 56, + "vy": -0.0014922259447731395, + "vx": -0.00032965128783252564 + }, + "index": 8 + }, + { + "id": 10, + "sid": 5, + "tid": 14, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 5, + "name": "voood", + "_cssClass": "node-default", + "x": 450.58566284013995, + "y": 122.14626093581273, + "index": 5, + "vy": 0.0020162552921259304, + "vx": -0.0021563528745758833 + }, + "target": { + "id": 14, + "name": "ll4ktv", + "_cssClass": "node-default", + "x": 438.7226407781981, + "y": 160.42480450002898, + "index": 14, + "vy": 0.00009701617268557783, + "vx": 0.00006174252811402955 + }, + "index": 9 + }, + { + "id": 11, + "sid": 5, + "tid": 6, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 5, + "name": "voood", + "_cssClass": "node-default", + "x": 450.58566284013995, + "y": 122.14626093581273, + "index": 5, + "vy": 0.0020162552921259304, + "vx": -0.0021563528745758833 + }, + "target": { + "id": 6, + "name": "1f8plb", + "_cssClass": "node-default", + "x": 419.3690378335888, + "y": 100.89538003936742, + "index": 6, + "vy": -0.0004761935796058073, + "vx": 0.00009557000898578836 + }, + "index": 10 + }, + { + "id": 12, + "sid": 6, + "tid": 33, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 6, + "name": "1f8plb", + "_cssClass": "node-default", + "x": 419.3690378335888, + "y": 100.89538003936742, + "index": 6, + "vy": -0.0004761935796058073, + "vx": 0.00009557000898578836 + }, + "target": { + "id": 33, + "name": "xpjqd8", + "_cssClass": "node-default", + "x": 364.065615643236, + "y": 78.25483748403657, + "index": 33, + "vy": 0.0015722616769229755, + "vx": -0.0005926762763703718 + }, + "index": 11 + }, + { + "id": 13, + "sid": 6, + "tid": 19, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 6, + "name": "1f8plb", + "_cssClass": "node-default", + "x": 419.3690378335888, + "y": 100.89538003936742, + "index": 6, + "vy": -0.0004761935796058073, + "vx": 0.00009557000898578836 + }, + "target": { + "id": 19, + "name": "brb6to", + "_cssClass": "node-default", + "x": 457.3591613872679, + "y": 127.08840609683716, + "index": 19, + "vy": -0.0021883400230721605, + "vx": 0.0015539098326503183 + }, + "index": 12 + }, + { + "id": 14, + "sid": 7, + "tid": 124, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 7, + "name": "y8mlsf", + "_cssClass": "node-default", + "x": 358.08549555229735, + "y": 186.5025401308263, + "index": 7, + "vy": -0.00028203682173126256, + "vx": -0.0003959854210866148 + }, + "target": { + "id": 124, + "name": "vd7a0i", + "_cssClass": "node-default", + "x": 383.84824846133034, + "y": 169.4013382026788, + "index": 124, + "vy": 0.0002595848450843291, + "vx": -0.0003979095581848599 + }, + "index": 13 + }, + { + "id": 15, + "sid": 8, + "tid": 50, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 8, + "name": "cu8am9", + "_cssClass": "node-default", + "x": 382.2662926382867, + "y": 80.8524305753426, + "index": 8, + "vy": 0.0003693381330250343, + "vx": 0.0006304414182809675 + }, + "target": { + "id": 50, + "name": "ibc8r", + "_cssClass": "node-default", + "x": 332.0263323055659, + "y": 65.61504321746638, + "index": 50, + "vy": -0.000026546641697859596, + "vx": 0.0006373098081729345 + }, + "index": 14 + }, + { + "id": 16, + "sid": 8, + "tid": 35, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 8, + "name": "cu8am9", + "_cssClass": "node-default", + "x": 382.2662926382867, + "y": 80.8524305753426, + "index": 8, + "vy": 0.0003693381330250343, + "vx": 0.0006304414182809675 + }, + "target": { + "id": 35, + "name": "p2ntca", + "_cssClass": "node-default", + "x": 339.83329103159014, + "y": 84.17167889646394, + "index": 35, + "vy": 0.0027909507327354478, + "vx": 0.0006219240238672614 + }, + "index": 15 + }, + { + "id": 17, + "sid": 9, + "tid": 45, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 9, + "name": "pk1n5", + "_cssClass": "node-default", + "x": 388.7537286336332, + "y": 188.80009976092967, + "index": 9, + "vy": -0.0003866928363919554, + "vx": 0.0005470303527312677 + }, + "target": { + "id": 45, + "name": "vk9cvp", + "_cssClass": "node-default", + "x": 423.3171253838341, + "y": 174.9140851563324, + "index": 45, + "vy": -0.00018419740803327474, + "vx": 0.000834983448552739 + }, + "index": 16 + }, + { + "id": 18, + "sid": 9, + "tid": 119, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 9, + "name": "pk1n5", + "_cssClass": "node-default", + "x": 388.7537286336332, + "y": 188.80009976092967, + "index": 9, + "vy": -0.0003866928363919554, + "vx": 0.0005470303527312677 + }, + "target": { + "id": 119, + "name": "zbz8m", + "_cssClass": "node-default", + "x": 386.3012747208951, + "y": 156.09711303404814, + "index": 119, + "vy": 0.00040873039766288786, + "vx": 0.0007659940262447019 + }, + "index": 17 + }, + { + "id": 19, + "sid": 10, + "tid": 86, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 10, + "name": "i0dfne", + "_cssClass": "node-default", + "x": 418.86171828639556, + "y": 33.72242296464376, + "index": 10, + "vy": 0.0005271632237496902, + "vx": -0.0008080711284006966 + }, + "target": { + "id": 86, + "name": "wyl1t", + "_cssClass": "node-default", + "x": 459.43234075702264, + "y": 59.54227682675203, + "index": 86, + "vy": -0.0012005128249364646, + "vx": -0.0005761539614976196 + }, + "index": 18 + }, + { + "id": 20, + "sid": 11, + "tid": 80, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 11, + "name": "jxxzb", + "_cssClass": "node-default", + "x": 482.128924244494, + "y": 146.21276878686498, + "index": 11, + "vy": 0.0007980401904977962, + "vx": 0.0004424984014921577 + }, + "target": { + "id": 80, + "name": "23vky", + "_cssClass": "node-default", + "x": 450.86433323424893, + "y": 107.243245609569, + "index": 80, + "vy": 0.00020337951000286682, + "vx": 0.0008451919003263546 + }, + "index": 19 + }, + { + "id": 21, + "sid": 11, + "tid": 24, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 11, + "name": "jxxzb", + "_cssClass": "node-default", + "x": 482.128924244494, + "y": 146.21276878686498, + "index": 11, + "vy": 0.0007980401904977962, + "vx": 0.0004424984014921577 + }, + "target": { + "id": 24, + "name": "1gly0b", + "_cssClass": "node-default", + "x": 476.50230982431583, + "y": 118.96601371169992, + "index": 24, + "vy": -0.00031233926444791004, + "vx": 0.00003798945404152481 + }, + "index": 20 + }, + { + "id": 22, + "sid": 12, + "tid": 123, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 12, + "name": "2fz8ne", + "_cssClass": "node-default", + "x": 360.86665518438684, + "y": 148.1798285112359, + "index": 12, + "vy": -0.002324658468922165, + "vx": 0.0001257618608468293 + }, + "target": { + "id": 123, + "name": "pymhas", + "_cssClass": "node-default", + "x": 334.1828999031232, + "y": 169.9207795449143, + "index": 123, + "vy": -0.0006044267193045355, + "vx": -0.0006162021511709476 + }, + "index": 21 + }, + { + "id": 23, + "sid": 12, + "tid": 44, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 12, + "name": "2fz8ne", + "_cssClass": "node-default", + "x": 360.86665518438684, + "y": 148.1798285112359, + "index": 12, + "vy": -0.002324658468922165, + "vx": 0.0001257618608468293 + }, + "target": { + "id": 44, + "name": "xv51pi", + "_cssClass": "node-default", + "x": 403.6636290633953, + "y": 105.05217025407296, + "index": 44, + "vy": 0.0016320852538551584, + "vx": 0.00019719991528111244 + }, + "index": 22 + }, + { + "id": 24, + "sid": 13, + "tid": 113, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 13, + "name": "tcnoc7", + "_cssClass": "node-default", + "x": 454.28635204029194, + "y": 158.97814534364144, + "index": 13, + "vy": 0.00018190949989821612, + "vx": 0.000012202304067601179 + }, + "target": { + "id": 113, + "name": "n449wi", + "_cssClass": "node-default", + "x": 469.7399012130191, + "y": 129.5223138302524, + "index": 113, + "vy": 0.0005311173990175625, + "vx": -0.00006069342199331831 + }, + "index": 23 + }, + { + "id": 25, + "sid": 13, + "tid": 126, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 13, + "name": "tcnoc7", + "_cssClass": "node-default", + "x": 454.28635204029194, + "y": 158.97814534364144, + "index": 13, + "vy": 0.00018190949989821612, + "vx": 0.000012202304067601179 + }, + "target": { + "id": 126, + "name": "o0wl79", + "_cssClass": "node-default", + "x": 402.7910296551747, + "y": 151.2388104697141, + "index": 126, + "vy": -0.0005243527724045418, + "vx": 0.0023035350941074876 + }, + "index": 24 + }, + { + "id": 26, + "sid": 14, + "tid": 79, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 14, + "name": "ll4ktv", + "_cssClass": "node-default", + "x": 438.7226407781981, + "y": 160.42480450002898, + "index": 14, + "vy": 0.00009701617268557783, + "vx": 0.00006174252811402955 + }, + "target": { + "id": 79, + "name": "9m3cp8", + "_cssClass": "node-default", + "x": 436.8841291842744, + "y": 116.81853904111713, + "index": 79, + "vy": -0.000981975739541365, + "vx": 0.00013639146411162495 + }, + "index": 25 + }, + { + "id": 27, + "sid": 14, + "tid": 39, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 14, + "name": "ll4ktv", + "_cssClass": "node-default", + "x": 438.7226407781981, + "y": 160.42480450002898, + "index": 14, + "vy": 0.00009701617268557783, + "vx": 0.00006174252811402955 + }, + "target": { + "id": 39, + "name": "ay8hte", + "_cssClass": "node-default", + "x": 418.9221043612044, + "y": 131.9147807937393, + "index": 39, + "vy": -0.0016490563440478545, + "vx": 0.0003953293187439443 + }, + "index": 26 + }, + { + "id": 28, + "sid": 15, + "tid": 60, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 15, + "name": "8jy9ob", + "_cssClass": "node-default", + "x": 396.7480321052754, + "y": 107.87846674460806, + "index": 15, + "vy": -0.002373859653690779, + "vx": -0.00188436163075548 + }, + "target": { + "id": 60, + "name": "h31uwq", + "_cssClass": "node-default", + "x": 436.1368378458145, + "y": 147.20217446303099, + "index": 60, + "vy": -0.000586207030619241, + "vx": 0.00005713936640884803 + }, + "index": 27 + }, + { + "id": 29, + "sid": 15, + "tid": 68, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 15, + "name": "8jy9ob", + "_cssClass": "node-default", + "x": 396.7480321052754, + "y": 107.87846674460806, + "index": 15, + "vy": -0.002373859653690779, + "vx": -0.00188436163075548 + }, + "target": { + "id": 68, + "name": "mreqlo", + "_cssClass": "node-default", + "x": 352.50146006068564, + "y": 78.22049677624157, + "index": 68, + "vy": -0.002644912358949254, + "vx": 0.00031686184886548484 + }, + "index": 28 + }, + { + "id": 30, + "sid": 16, + "tid": 26, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 16, + "name": "s2hn4c", + "_cssClass": "node-default", + "x": 494.9111466825618, + "y": 129.82091612477453, + "index": 16, + "vy": -0.00009148179241610281, + "vx": 0.0012916874033135504 + }, + "target": { + "id": 26, + "name": "y2nd8g", + "_cssClass": "node-default", + "x": 471.3402484451996, + "y": 141.08475179347056, + "index": 26, + "vy": 0.00011256728106117254, + "vx": 0.0007402418637824623 + }, + "index": 29 + }, + { + "id": 31, + "sid": 17, + "tid": 66, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 17, + "name": "a9odiq", + "_cssClass": "node-default", + "x": 470.44343326891715, + "y": 92.56607180575435, + "index": 17, + "vy": -0.00106567171330581, + "vx": 0.001426285466651893 + }, + "target": { + "id": 66, + "name": "p6dodm", + "_cssClass": "node-default", + "x": 455.2899440030924, + "y": 44.70411800414369, + "index": 66, + "vy": -0.00028572453273449275, + "vx": 0.0005491524593119674 + }, + "index": 30 + }, + { + "id": 32, + "sid": 17, + "tid": 26, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 17, + "name": "a9odiq", + "_cssClass": "node-default", + "x": 470.44343326891715, + "y": 92.56607180575435, + "index": 17, + "vy": -0.00106567171330581, + "vx": 0.001426285466651893 + }, + "target": { + "id": 26, + "name": "y2nd8g", + "_cssClass": "node-default", + "x": 471.3402484451996, + "y": 141.08475179347056, + "index": 26, + "vy": 0.00011256728106117254, + "vx": 0.0007402418637824623 + }, + "index": 31 + }, + { + "id": 33, + "sid": 18, + "tid": 119, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 18, + "name": "ztpf7", + "_cssClass": "node-default", + "x": 419.4791784573061, + "y": 118.32398142271929, + "index": 18, + "vy": -0.0007819185029179276, + "vx": -0.0005113027003699465 + }, + "target": { + "id": 119, + "name": "zbz8m", + "_cssClass": "node-default", + "x": 386.3012747208951, + "y": 156.09711303404814, + "index": 119, + "vy": 0.00040873039766288786, + "vx": 0.0007659940262447019 + }, + "index": 32 + }, + { + "id": 34, + "sid": 19, + "tid": 17, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 19, + "name": "brb6to", + "_cssClass": "node-default", + "x": 457.3591613872679, + "y": 127.08840609683716, + "index": 19, + "vy": -0.0021883400230721605, + "vx": 0.0015539098326503183 + }, + "target": { + "id": 17, + "name": "a9odiq", + "_cssClass": "node-default", + "x": 470.44343326891715, + "y": 92.56607180575435, + "index": 17, + "vy": -0.00106567171330581, + "vx": 0.001426285466651893 + }, + "index": 33 + }, + { + "id": 35, + "sid": 20, + "tid": 70, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 20, + "name": "8f4y2", + "_cssClass": "node-default", + "x": 408.12211516621596, + "y": 54.690970519310305, + "index": 20, + "vy": 0.003604347438191066, + "vx": -0.0021813439378349448 + }, + "target": { + "id": 70, + "name": "d0jzkl", + "_cssClass": "node-default", + "x": 363.3538889691174, + "y": 106.08365180082812, + "index": 70, + "vy": 0.00033839690627108945, + "vx": -0.0009029225950710417 + }, + "index": 34 + }, + { + "id": 36, + "sid": 20, + "tid": 47, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 20, + "name": "8f4y2", + "_cssClass": "node-default", + "x": 408.12211516621596, + "y": 54.690970519310305, + "index": 20, + "vy": 0.003604347438191066, + "vx": -0.0021813439378349448 + }, + "target": { + "id": 47, + "name": "4uhxms", + "_cssClass": "node-default", + "x": 447.22992390718656, + "y": 60.821700455399736, + "index": 47, + "vy": -0.0005119168833543581, + "vx": -0.0009814853288081034 + }, + "index": 35 + }, + { + "id": 37, + "sid": 21, + "tid": 35, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 21, + "name": "xvdeiq", + "_cssClass": "node-default", + "x": 312.6748618447365, + "y": 93.27627716694421, + "index": 21, + "vy": 0.00024305035981515093, + "vx": -0.0004358354374676498 + }, + "target": { + "id": 35, + "name": "p2ntca", + "_cssClass": "node-default", + "x": 339.83329103159014, + "y": 84.17167889646394, + "index": 35, + "vy": 0.0027909507327354478, + "vx": 0.0006219240238672614 + }, + "index": 36 + }, + { + "id": 38, + "sid": 21, + "tid": 108, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 21, + "name": "xvdeiq", + "_cssClass": "node-default", + "x": 312.6748618447365, + "y": 93.27627716694421, + "index": 21, + "vy": 0.00024305035981515093, + "vx": -0.0004358354374676498 + }, + "target": { + "id": 108, + "name": "6438nh", + "_cssClass": "node-default", + "x": 359.4319377220432, + "y": 93.25756899913982, + "index": 108, + "vy": 0.000603481694535167, + "vx": -0.000053881522856263203 + }, + "index": 37 + }, + { + "id": 39, + "sid": 22, + "tid": 65, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 22, + "name": "uscwy8", + "_cssClass": "node-default", + "x": 378.66112307490727, + "y": 48.98850133613222, + "index": 22, + "vy": 0.0018549358398967995, + "vx": -0.0021338026211870486 + }, + "target": { + "id": 65, + "name": "5wyl65", + "_cssClass": "node-default", + "x": 377.6095411853096, + "y": 96.81220616934351, + "index": 65, + "vy": 0.003230079185842613, + "vx": -0.006125089265439184 + }, + "index": 38 + }, + { + "id": 40, + "sid": 23, + "tid": 50, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 23, + "name": "t1bztl", + "_cssClass": "node-default", + "x": 321.8446808951692, + "y": 104.16535338094326, + "index": 23, + "vy": -0.0002661625450488337, + "vx": 0.0005380718866437213 + }, + "target": { + "id": 50, + "name": "ibc8r", + "_cssClass": "node-default", + "x": 332.0263323055659, + "y": 65.61504321746638, + "index": 50, + "vy": -0.000026546641697859596, + "vx": 0.0006373098081729345 + }, + "index": 39 + }, + { + "id": 41, + "sid": 24, + "tid": 13, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 24, + "name": "1gly0b", + "_cssClass": "node-default", + "x": 476.50230982431583, + "y": 118.96601371169992, + "index": 24, + "vy": -0.00031233926444791004, + "vx": 0.00003798945404152481 + }, + "target": { + "id": 13, + "name": "tcnoc7", + "_cssClass": "node-default", + "x": 454.28635204029194, + "y": 158.97814534364144, + "index": 13, + "vy": 0.00018190949989821612, + "vx": 0.000012202304067601179 + }, + "index": 40 + }, + { + "id": 42, + "sid": 25, + "tid": 129, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 25, + "name": "jqomga", + "_cssClass": "node-default", + "x": 428.42093033885055, + "y": 194.99999204768278, + "index": 25, + "vy": 0.000548465163146758, + "vx": -0.0022072771302044302 + }, + "target": { + "id": 129, + "name": "7pysu4", + "_cssClass": "node-default", + "x": 400.3125970462809, + "y": 178.10910880170385, + "index": 129, + "vy": -0.0002361055842115393, + "vx": -0.0025354340897428998 + }, + "index": 41 + }, + { + "id": 43, + "sid": 26, + "tid": 82, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 26, + "name": "y2nd8g", + "_cssClass": "node-default", + "x": 471.3402484451996, + "y": 141.08475179347056, + "index": 26, + "vy": 0.00011256728106117254, + "vx": 0.0007402418637824623 + }, + "target": { + "id": 82, + "name": "ttgp7l", + "_cssClass": "node-default", + "x": 464.3928357258118, + "y": 171.23511945063356, + "index": 82, + "vy": 0.00005142173753058801, + "vx": -0.0001770230700598425 + }, + "index": 42 + }, + { + "id": 44, + "sid": 27, + "tid": 121, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 27, + "name": "akbowc", + "_cssClass": "node-default", + "x": 398.86007975189455, + "y": 197.3770240196186, + "index": 27, + "vy": 0.00063760569431356, + "vx": -0.00014824543279184587 + }, + "target": { + "id": 121, + "name": "bs3ne", + "_cssClass": "node-default", + "x": 371.0641455910165, + "y": 183.92101002226804, + "index": 121, + "vy": 0.0004917506738684137, + "vx": -0.0001243500714726591 + }, + "index": 43 + }, + { + "id": 45, + "sid": 28, + "tid": 33, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 28, + "name": "vft56h", + "_cssClass": "node-default", + "x": 334.91215210125836, + "y": 94.78799453050524, + "index": 28, + "vy": 0.0004206903587722468, + "vx": -0.0004321766587990987 + }, + "target": { + "id": 33, + "name": "xpjqd8", + "_cssClass": "node-default", + "x": 364.065615643236, + "y": 78.25483748403657, + "index": 33, + "vy": 0.0015722616769229755, + "vx": -0.0005926762763703718 + }, + "index": 44 + }, + { + "id": 46, + "sid": 29, + "tid": 128, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 29, + "name": "r1z7yl", + "_cssClass": "node-default", + "x": 377.1848955941488, + "y": 139.11517817251956, + "index": 29, + "vy": -0.001486177029779658, + "vx": -0.001285401274143028 + }, + "target": { + "id": 128, + "name": "s84wi6", + "_cssClass": "node-default", + "x": 345.4700778894336, + "y": 165.02255347209484, + "index": 128, + "vy": 0.00030302430613308827, + "vx": -0.0005485776723737187 + }, + "index": 45 + }, + { + "id": 47, + "sid": 29, + "tid": 44, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 29, + "name": "r1z7yl", + "_cssClass": "node-default", + "x": 377.1848955941488, + "y": 139.11517817251956, + "index": 29, + "vy": -0.001486177029779658, + "vx": -0.001285401274143028 + }, + "target": { + "id": 44, + "name": "xv51pi", + "_cssClass": "node-default", + "x": 403.6636290633953, + "y": 105.05217025407296, + "index": 44, + "vy": 0.0016320852538551584, + "vx": 0.00019719991528111244 + }, + "index": 46 + }, + { + "id": 48, + "sid": 30, + "tid": 108, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 30, + "name": "e3k6gs", + "_cssClass": "node-default", + "x": 359.29605838063947, + "y": 51.383446502734046, + "index": 30, + "vy": 0.0006207190223016245, + "vx": -0.0005948619806342337 + }, + "target": { + "id": 108, + "name": "6438nh", + "_cssClass": "node-default", + "x": 359.4319377220432, + "y": 93.25756899913982, + "index": 108, + "vy": 0.000603481694535167, + "vx": -0.000053881522856263203 + }, + "index": 47 + }, + { + "id": 49, + "sid": 30, + "tid": 20, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 30, + "name": "e3k6gs", + "_cssClass": "node-default", + "x": 359.29605838063947, + "y": 51.383446502734046, + "index": 30, + "vy": 0.0006207190223016245, + "vx": -0.0005948619806342337 + }, + "target": { + "id": 20, + "name": "8f4y2", + "_cssClass": "node-default", + "x": 408.12211516621596, + "y": 54.690970519310305, + "index": 20, + "vy": 0.003604347438191066, + "vx": -0.0021813439378349448 + }, + "index": 48 + }, + { + "id": 50, + "sid": 31, + "tid": 104, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 31, + "name": "1vzuis", + "_cssClass": "node-default", + "x": 413.35696830849855, + "y": 162.56363617154489, + "index": 31, + "vy": 0.0012927978231972175, + "vx": 0.002862121987339709 + }, + "target": { + "id": 104, + "name": "2d98q", + "_cssClass": "node-default", + "x": 439.109944123908, + "y": 136.56040667258483, + "index": 104, + "vy": -0.00016914067580904926, + "vx": 0.00025090712732196236 + }, + "index": 49 + }, + { + "id": 51, + "sid": 32, + "tid": 77, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 32, + "name": "scov3l", + "_cssClass": "node-default", + "x": 335.6704041745352, + "y": 147.16812970958085, + "index": 32, + "vy": -0.0010394381944780738, + "vx": 0.000229906671212502 + }, + "target": { + "id": 77, + "name": "pnadp", + "_cssClass": "node-default", + "x": 369.1080660151795, + "y": 150.13023681276306, + "index": 77, + "vy": 0.0015766992856047577, + "vx": -0.0003680983177578539 + }, + "index": 50 + }, + { + "id": 52, + "sid": 32, + "tid": 73, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 32, + "name": "scov3l", + "_cssClass": "node-default", + "x": 335.6704041745352, + "y": 147.16812970958085, + "index": 32, + "vy": -0.0010394381944780738, + "vx": 0.000229906671212502 + }, + "target": { + "id": 73, + "name": "yys08", + "_cssClass": "node-default", + "x": 341.3298802727589, + "y": 107.62805750590552, + "index": 73, + "vy": 0.00009587129044351271, + "vx": 0.002288453395588852 + }, + "index": 51 + }, + { + "id": 53, + "sid": 33, + "tid": 2, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 33, + "name": "xpjqd8", + "_cssClass": "node-default", + "x": 364.065615643236, + "y": 78.25483748403657, + "index": 33, + "vy": 0.0015722616769229755, + "vx": -0.0005926762763703718 + }, + "target": { + "id": 2, + "name": "a5a1d", + "_cssClass": "node-default", + "x": 404.401794337228, + "y": 80.66370037646838, + "index": 2, + "vy": -0.0004845293171897977, + "vx": -0.0011132594486890951 + }, + "index": 52 + }, + { + "id": 54, + "sid": 34, + "tid": 87, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 34, + "name": "c4t0db", + "_cssClass": "node-default", + "x": 407.71593835565795, + "y": 89.3581174996468, + "index": 34, + "vy": -0.0006378202227727299, + "vx": 0.0011318414892146121 + }, + "target": { + "id": 87, + "name": "39wty", + "_cssClass": "node-default", + "x": 430.4269232899492, + "y": 125.71738051153952, + "index": 87, + "vy": -0.0012286330900336802, + "vx": 0.0010563740053582793 + }, + "index": 53 + }, + { + "id": 55, + "sid": 34, + "tid": 120, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 34, + "name": "c4t0db", + "_cssClass": "node-default", + "x": 407.71593835565795, + "y": 89.3581174996468, + "index": 34, + "vy": -0.0006378202227727299, + "vx": 0.0011318414892146121 + }, + "target": { + "id": 120, + "name": "1bbh8n", + "_cssClass": "node-default", + "x": 375.5122919700059, + "y": 88.31646383801142, + "index": 120, + "vy": -0.002714663904673482, + "vx": 0.003028589600808529 + }, + "index": 54 + }, + { + "id": 56, + "sid": 35, + "tid": 22, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 35, + "name": "p2ntca", + "_cssClass": "node-default", + "x": 339.83329103159014, + "y": 84.17167889646394, + "index": 35, + "vy": 0.0027909507327354478, + "vx": 0.0006219240238672614 + }, + "target": { + "id": 22, + "name": "uscwy8", + "_cssClass": "node-default", + "x": 378.66112307490727, + "y": 48.98850133613222, + "index": 22, + "vy": 0.0018549358398967995, + "vx": -0.0021338026211870486 + }, + "index": 55 + }, + { + "id": 57, + "sid": 36, + "tid": 119, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 36, + "name": "w0smur", + "_cssClass": "node-default", + "x": 351.2904393264253, + "y": 149.99414490258798, + "index": 36, + "vy": 0.0021089006852110354, + "vx": 0.0004921125103322079 + }, + "target": { + "id": 119, + "name": "zbz8m", + "_cssClass": "node-default", + "x": 386.3012747208951, + "y": 156.09711303404814, + "index": 119, + "vy": 0.00040873039766288786, + "vx": 0.0007659940262447019 + }, + "index": 56 + }, + { + "id": 58, + "sid": 37, + "tid": 93, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 37, + "name": "zv4m1", + "_cssClass": "node-default", + "x": 400.80454497191204, + "y": 126.98802530439765, + "index": 37, + "vy": 0.0016773976351753467, + "vx": 0.00009419227079291966 + }, + "target": { + "id": 93, + "name": "gfdgxo", + "_cssClass": "node-default", + "x": 370.759320680256, + "y": 69.59352315113334, + "index": 93, + "vy": 0.0015148778541772157, + "vx": -0.000200979043049152 + }, + "index": 57 + }, + { + "id": 59, + "sid": 37, + "tid": 124, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 37, + "name": "zv4m1", + "_cssClass": "node-default", + "x": 400.80454497191204, + "y": 126.98802530439765, + "index": 37, + "vy": 0.0016773976351753467, + "vx": 0.00009419227079291966 + }, + "target": { + "id": 124, + "name": "vd7a0i", + "_cssClass": "node-default", + "x": 383.84824846133034, + "y": 169.4013382026788, + "index": 124, + "vy": 0.0002595848450843291, + "vx": -0.0003979095581848599 + }, + "index": 58 + }, + { + "id": 60, + "sid": 38, + "tid": 31, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 38, + "name": "xg40lh", + "_cssClass": "node-default", + "x": 391.96136260156425, + "y": 136.4161715417628, + "index": 38, + "vy": 0.0025656288951290303, + "vx": 0.0017825907618016883 + }, + "target": { + "id": 31, + "name": "1vzuis", + "_cssClass": "node-default", + "x": 413.35696830849855, + "y": 162.56363617154489, + "index": 31, + "vy": 0.0012927978231972175, + "vx": 0.002862121987339709 + }, + "index": 59 + }, + { + "id": 61, + "sid": 38, + "tid": 36, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 38, + "name": "xg40lh", + "_cssClass": "node-default", + "x": 391.96136260156425, + "y": 136.4161715417628, + "index": 38, + "vy": 0.0025656288951290303, + "vx": 0.0017825907618016883 + }, + "target": { + "id": 36, + "name": "w0smur", + "_cssClass": "node-default", + "x": 351.2904393264253, + "y": 149.99414490258798, + "index": 36, + "vy": 0.0021089006852110354, + "vx": 0.0004921125103322079 + }, + "index": 60 + }, + { + "id": 62, + "sid": 39, + "tid": 47, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 39, + "name": "ay8hte", + "_cssClass": "node-default", + "x": 418.9221043612044, + "y": 131.9147807937393, + "index": 39, + "vy": -0.0016490563440478545, + "vx": 0.0003953293187439443 + }, + "target": { + "id": 47, + "name": "4uhxms", + "_cssClass": "node-default", + "x": 447.22992390718656, + "y": 60.821700455399736, + "index": 47, + "vy": -0.0005119168833543581, + "vx": -0.0009814853288081034 + }, + "index": 61 + }, + { + "id": 63, + "sid": 40, + "tid": 2, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 40, + "name": "sqvpw9", + "_cssClass": "node-default", + "x": 366.5962091417913, + "y": 120.50301481262845, + "index": 40, + "vy": 0.0011065427207375342, + "vx": 0.0014132258392817927 + }, + "target": { + "id": 2, + "name": "a5a1d", + "_cssClass": "node-default", + "x": 404.401794337228, + "y": 80.66370037646838, + "index": 2, + "vy": -0.0004845293171897977, + "vx": -0.0011132594486890951 + }, + "index": 62 + }, + { + "id": 64, + "sid": 41, + "tid": 129, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 41, + "name": "frw91b", + "_cssClass": "node-default", + "x": 434.7157419001991, + "y": 183.47913761161396, + "index": 41, + "vy": 0.0005897599522614899, + "vx": -0.001763864955179206 + }, + "target": { + "id": 129, + "name": "7pysu4", + "_cssClass": "node-default", + "x": 400.3125970462809, + "y": 178.10910880170385, + "index": 129, + "vy": -0.0002361055842115393, + "vx": -0.0025354340897428998 + }, + "index": 63 + }, + { + "id": 65, + "sid": 42, + "tid": 92, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 42, + "name": "russxb", + "_cssClass": "node-default", + "x": 386.8241736002237, + "y": 9.287072170277991, + "index": 42, + "vy": -0.0008506479421310095, + "vx": 0.0014609767407860786 + }, + "target": { + "id": 92, + "name": "ey0tyj", + "_cssClass": "node-default", + "x": 433.8856211532221, + "y": 12.58560774926412, + "index": 92, + "vy": 0.0009153659243341323, + "vx": 0.001380926706959042 + }, + "index": 64 + }, + { + "id": 66, + "sid": 42, + "tid": 117, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 42, + "name": "russxb", + "_cssClass": "node-default", + "x": 386.8241736002237, + "y": 9.287072170277991, + "index": 42, + "vy": -0.0008506479421310095, + "vx": 0.0014609767407860786 + }, + "target": { + "id": 117, + "name": "dx14l9", + "_cssClass": "node-default", + "x": 350.91757906606557, + "y": 37.013353227470795, + "index": 117, + "vy": -0.000538370716777779, + "vx": 0.0014152631786866733 + }, + "index": 65 + }, + { + "id": 67, + "sid": 43, + "tid": 111, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 43, + "name": "k56yu", + "_cssClass": "node-default", + "x": 393.24584720881927, + "y": 52.643023022817445, + "index": 43, + "vy": -0.004397938077465979, + "vx": -0.003180881936537989 + }, + "target": { + "id": 111, + "name": "i38fp2", + "_cssClass": "node-default", + "x": 430.8158684900311, + "y": 42.59825198035904, + "index": 111, + "vy": 0.00013202903917029153, + "vx": -0.0007238981075793837 + }, + "index": 66 + }, + { + "id": 68, + "sid": 43, + "tid": 57, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 43, + "name": "k56yu", + "_cssClass": "node-default", + "x": 393.24584720881927, + "y": 52.643023022817445, + "index": 43, + "vy": -0.004397938077465979, + "vx": -0.003180881936537989 + }, + "target": { + "id": 57, + "name": "15o205", + "_cssClass": "node-default", + "x": 345.99213960256526, + "y": 54.95639016418944, + "index": 57, + "vy": -0.00262501835450807, + "vx": -0.0025895198166709372 + }, + "index": 67 + }, + { + "id": 69, + "sid": 44, + "tid": 59, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 44, + "name": "xv51pi", + "_cssClass": "node-default", + "x": 403.6636290633953, + "y": 105.05217025407296, + "index": 44, + "vy": 0.0016320852538551584, + "vx": 0.00019719991528111244 + }, + "target": { + "id": 59, + "name": "yhrqy", + "_cssClass": "node-default", + "x": 432.5580402287739, + "y": 62.36869389088665, + "index": 59, + "vy": 0.0014011562797538837, + "vx": -0.0005274949402863141 + }, + "index": 68 + }, + { + "id": 70, + "sid": 45, + "tid": 113, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 45, + "name": "vk9cvp", + "_cssClass": "node-default", + "x": 423.3171253838341, + "y": 174.9140851563324, + "index": 45, + "vy": -0.00018419740803327474, + "vx": 0.000834983448552739 + }, + "target": { + "id": 113, + "name": "n449wi", + "_cssClass": "node-default", + "x": 469.7399012130191, + "y": 129.5223138302524, + "index": 113, + "vy": 0.0005311173990175625, + "vx": -0.00006069342199331831 + }, + "index": 69 + }, + { + "id": 71, + "sid": 45, + "tid": 31, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 45, + "name": "vk9cvp", + "_cssClass": "node-default", + "x": 423.3171253838341, + "y": 174.9140851563324, + "index": 45, + "vy": -0.00018419740803327474, + "vx": 0.000834983448552739 + }, + "target": { + "id": 31, + "name": "1vzuis", + "_cssClass": "node-default", + "x": 413.35696830849855, + "y": 162.56363617154489, + "index": 31, + "vy": 0.0012927978231972175, + "vx": 0.002862121987339709 + }, + "index": 70 + }, + { + "id": 72, + "sid": 46, + "tid": 83, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 46, + "name": "xc59pf", + "_cssClass": "node-default", + "x": 357.48298081551957, + "y": 26.342609431393047, + "index": 46, + "vy": -0.0007772230755213379, + "vx": 0.0017126314462751547 + }, + "target": { + "id": 83, + "name": "vjrdcg", + "_cssClass": "node-default", + "x": 399.1257105976218, + "y": 11.054317729495068, + "index": 83, + "vy": 0.0011986399194118492, + "vx": 0.0009509273857036342 + }, + "index": 71 + }, + { + "id": 73, + "sid": 47, + "tid": 17, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 47, + "name": "4uhxms", + "_cssClass": "node-default", + "x": 447.22992390718656, + "y": 60.821700455399736, + "index": 47, + "vy": -0.0005119168833543581, + "vx": -0.0009814853288081034 + }, + "target": { + "id": 17, + "name": "a9odiq", + "_cssClass": "node-default", + "x": 470.44343326891715, + "y": 92.56607180575435, + "index": 17, + "vy": -0.00106567171330581, + "vx": 0.001426285466651893 + }, + "index": 72 + }, + { + "id": 74, + "sid": 47, + "tid": 99, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 47, + "name": "4uhxms", + "_cssClass": "node-default", + "x": 447.22992390718656, + "y": 60.821700455399736, + "index": 47, + "vy": -0.0005119168833543581, + "vx": -0.0009814853288081034 + }, + "target": { + "id": 99, + "name": "5fj0wg", + "_cssClass": "node-default", + "x": 457.94478144152043, + "y": 90.26579902966293, + "index": 99, + "vy": 0.000714789380758797, + "vx": 0.00005732300294071081 + }, + "index": 73 + }, + { + "id": 75, + "sid": 48, + "tid": 77, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 48, + "name": "6afq0t", + "_cssClass": "node-default", + "x": 341.25085799536197, + "y": 119.86120126045859, + "index": 48, + "vy": 0.0013711913894302009, + "vx": -0.001725790931595739 + }, + "target": { + "id": 77, + "name": "pnadp", + "_cssClass": "node-default", + "x": 369.1080660151795, + "y": 150.13023681276306, + "index": 77, + "vy": 0.0015766992856047577, + "vx": -0.0003680983177578539 + }, + "index": 74 + }, + { + "id": 76, + "sid": 49, + "tid": 114, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 49, + "name": "lbx718", + "_cssClass": "node-default", + "x": 366.2630180273298, + "y": 8.908857881041254, + "index": 49, + "vy": 0.001427883845516788, + "vx": -0.0007987373267056354 + }, + "target": { + "id": 114, + "name": "8tnwwa", + "_cssClass": "node-default", + "x": 364.72038529101707, + "y": 38.971962568504026, + "index": 114, + "vy": 0.0026126151929759243, + "vx": 0.001681533499333042 + }, + "index": 75 + }, + { + "id": 77, + "sid": 50, + "tid": 73, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 50, + "name": "ibc8r", + "_cssClass": "node-default", + "x": 332.0263323055659, + "y": 65.61504321746638, + "index": 50, + "vy": -0.000026546641697859596, + "vx": 0.0006373098081729345 + }, + "target": { + "id": 73, + "name": "yys08", + "_cssClass": "node-default", + "x": 341.3298802727589, + "y": 107.62805750590552, + "index": 73, + "vy": 0.00009587129044351271, + "vx": 0.002288453395588852 + }, + "index": 76 + }, + { + "id": 78, + "sid": 50, + "tid": 21, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 50, + "name": "ibc8r", + "_cssClass": "node-default", + "x": 332.0263323055659, + "y": 65.61504321746638, + "index": 50, + "vy": -0.000026546641697859596, + "vx": 0.0006373098081729345 + }, + "target": { + "id": 21, + "name": "xvdeiq", + "_cssClass": "node-default", + "x": 312.6748618447365, + "y": 93.27627716694421, + "index": 21, + "vy": 0.00024305035981515093, + "vx": -0.0004358354374676498 + }, + "index": 77 + }, + { + "id": 79, + "sid": 51, + "tid": 65, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 51, + "name": "b8sl9g", + "_cssClass": "node-default", + "x": 386.47191810177776, + "y": 122.43365121912518, + "index": 51, + "vy": 0.0015885805390337474, + "vx": 0.0018828203815383837 + }, + "target": { + "id": 65, + "name": "5wyl65", + "_cssClass": "node-default", + "x": 377.6095411853096, + "y": 96.81220616934351, + "index": 65, + "vy": 0.003230079185842613, + "vx": -0.006125089265439184 + }, + "index": 78 + }, + { + "id": 80, + "sid": 52, + "tid": 125, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 52, + "name": "ehzeu9", + "_cssClass": "node-default", + "x": 446.11979707003525, + "y": 70.2778090953105, + "index": 52, + "vy": -0.00005623283043909057, + "vx": 0.0005720538248760969 + }, + "target": { + "id": 125, + "name": "elt442j", + "_cssClass": "node-default", + "x": 467.6071824039861, + "y": 77.56598748640742, + "index": 125, + "vy": 0.00023013866063458023, + "vx": -0.0006436037468483931 + }, + "index": 79 + }, + { + "id": 81, + "sid": 52, + "tid": 107, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 52, + "name": "ehzeu9", + "_cssClass": "node-default", + "x": 446.11979707003525, + "y": 70.2778090953105, + "index": 52, + "vy": -0.00005623283043909057, + "vx": 0.0005720538248760969 + }, + "target": { + "id": 107, + "name": "9cawc", + "_cssClass": "node-default", + "x": 416.7527119697291, + "y": 71.02207068120077, + "index": 107, + "vy": -0.0012936065373925286, + "vx": 0.0004615278892764726 + }, + "index": 80 + }, + { + "id": 82, + "sid": 53, + "tid": 45, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 53, + "name": "y2hmhc", + "_cssClass": "node-default", + "x": 363.7305210730842, + "y": 166.05936104778976, + "index": 53, + "vy": 0.000149637829782774, + "vx": 0.0002489504546362025 + }, + "target": { + "id": 45, + "name": "vk9cvp", + "_cssClass": "node-default", + "x": 423.3171253838341, + "y": 174.9140851563324, + "index": 45, + "vy": -0.00018419740803327474, + "vx": 0.000834983448552739 + }, + "index": 81 + }, + { + "id": 83, + "sid": 53, + "tid": 1, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 53, + "name": "y2hmhc", + "_cssClass": "node-default", + "x": 363.7305210730842, + "y": 166.05936104778976, + "index": 53, + "vy": 0.000149637829782774, + "vx": 0.0002489504546362025 + }, + "target": { + "id": 1, + "name": "h5kcti", + "_cssClass": "node-default", + "x": 324.69261359002604, + "y": 143.09245078600944, + "index": 1, + "vy": 0.00026069014262276787, + "vx": -0.0014271999617400638 + }, + "index": 82 + }, + { + "id": 84, + "sid": 54, + "tid": 10, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 54, + "name": "vtctfb", + "_cssClass": "node-default", + "x": 374.32030556085584, + "y": 34.47872906620214, + "index": 54, + "vy": -0.001145434927459863, + "vx": 0.0004057080543375439 + }, + "target": { + "id": 10, + "name": "i0dfne", + "_cssClass": "node-default", + "x": 418.86171828639556, + "y": 33.72242296464376, + "index": 10, + "vy": 0.0005271632237496902, + "vx": -0.0008080711284006966 + }, + "index": 83 + }, + { + "id": 85, + "sid": 54, + "tid": 50, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 54, + "name": "vtctfb", + "_cssClass": "node-default", + "x": 374.32030556085584, + "y": 34.47872906620214, + "index": 54, + "vy": -0.001145434927459863, + "vx": 0.0004057080543375439 + }, + "target": { + "id": 50, + "name": "ibc8r", + "_cssClass": "node-default", + "x": 332.0263323055659, + "y": 65.61504321746638, + "index": 50, + "vy": -0.000026546641697859596, + "vx": 0.0006373098081729345 + }, + "index": 84 + }, + { + "id": 86, + "sid": 55, + "tid": 104, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 55, + "name": "c8lg2n", + "_cssClass": "node-default", + "x": 474.69788997032816, + "y": 157.3618645610254, + "index": 55, + "vy": 0.00019327458187630696, + "vx": -0.0005529571268271102 + }, + "target": { + "id": 104, + "name": "2d98q", + "_cssClass": "node-default", + "x": 439.109944123908, + "y": 136.56040667258483, + "index": 104, + "vy": -0.00016914067580904926, + "vx": 0.00025090712732196236 + }, + "index": 85 + }, + { + "id": 87, + "sid": 55, + "tid": 102, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 55, + "name": "c8lg2n", + "_cssClass": "node-default", + "x": 474.69788997032816, + "y": 157.3618645610254, + "index": 55, + "vy": 0.00019327458187630696, + "vx": -0.0005529571268271102 + }, + "target": { + "id": 102, + "name": "wyvqyi", + "_cssClass": "node-default", + "x": 491.2443274138911, + "y": 119.53783100663522, + "index": 102, + "vy": 0.00016977783160061392, + "vx": -0.0006582960103637408 + }, + "index": 86 + }, + { + "id": 88, + "sid": 56, + "tid": 107, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 56, + "name": "2i7xxf", + "_cssClass": "node-default", + "x": 432.26476869168636, + "y": 103.63154494542478, + "index": 56, + "vy": -0.0014922259447731395, + "vx": -0.00032965128783252564 + }, + "target": { + "id": 107, + "name": "9cawc", + "_cssClass": "node-default", + "x": 416.7527119697291, + "y": 71.02207068120077, + "index": 107, + "vy": -0.0012936065373925286, + "vx": 0.0004615278892764726 + }, + "index": 87 + }, + { + "id": 89, + "sid": 56, + "tid": 51, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 56, + "name": "2i7xxf", + "_cssClass": "node-default", + "x": 432.26476869168636, + "y": 103.63154494542478, + "index": 56, + "vy": -0.0014922259447731395, + "vx": -0.00032965128783252564 + }, + "target": { + "id": 51, + "name": "b8sl9g", + "_cssClass": "node-default", + "x": 386.47191810177776, + "y": 122.43365121912518, + "index": 51, + "vy": 0.0015885805390337474, + "vx": 0.0018828203815383837 + }, + "index": 88 + }, + { + "id": 90, + "sid": 57, + "tid": 101, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 57, + "name": "15o205", + "_cssClass": "node-default", + "x": 345.99213960256526, + "y": 54.95639016418944, + "index": 57, + "vy": -0.00262501835450807, + "vx": -0.0025895198166709372 + }, + "target": { + "id": 101, + "name": "pvk3e", + "_cssClass": "node-default", + "x": 326.37908742614735, + "y": 84.53019823462743, + "index": 101, + "vy": 0.00017741969277072938, + "vx": -0.0010132050331023116 + }, + "index": 89 + }, + { + "id": 91, + "sid": 58, + "tid": 78, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 58, + "name": "5oqiij", + "_cssClass": "node-default", + "x": 313.3069355707377, + "y": 114.86284791746603, + "index": 58, + "vy": -0.0003911618412998401, + "vx": 0.00006082498045766422 + }, + "target": { + "id": 78, + "name": "sb4qpe", + "_cssClass": "node-default", + "x": 312.05124837616717, + "y": 76.10720488453013, + "index": 78, + "vy": -0.0008002779750596909, + "vx": -0.00025546217247657087 + }, + "index": 90 + }, + { + "id": 92, + "sid": 58, + "tid": 122, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 58, + "name": "5oqiij", + "_cssClass": "node-default", + "x": 313.3069355707377, + "y": 114.86284791746603, + "index": 58, + "vy": -0.0003911618412998401, + "vx": 0.00006082498045766422 + }, + "target": { + "id": 122, + "name": "4gfcc", + "_cssClass": "node-default", + "x": 351.35665172280244, + "y": 127.42555421866795, + "index": 122, + "vy": -0.0012330522105253089, + "vx": 0.0003255024404983422 + }, + "index": 91 + }, + { + "id": 93, + "sid": 59, + "tid": 62, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 59, + "name": "yhrqy", + "_cssClass": "node-default", + "x": 432.5580402287739, + "y": 62.36869389088665, + "index": 59, + "vy": 0.0014011562797538837, + "vx": -0.0005274949402863141 + }, + "target": { + "id": 62, + "name": "yumqq", + "_cssClass": "node-default", + "x": 445.49976838577857, + "y": 29.734343687539, + "index": 62, + "vy": 0.0010580639981790146, + "vx": -0.00012451829253081652 + }, + "index": 92 + }, + { + "id": 94, + "sid": 59, + "tid": 10, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 59, + "name": "yhrqy", + "_cssClass": "node-default", + "x": 432.5580402287739, + "y": 62.36869389088665, + "index": 59, + "vy": 0.0014011562797538837, + "vx": -0.0005274949402863141 + }, + "target": { + "id": 10, + "name": "i0dfne", + "_cssClass": "node-default", + "x": 418.86171828639556, + "y": 33.72242296464376, + "index": 10, + "vy": 0.0005271632237496902, + "vx": -0.0008080711284006966 + }, + "index": 93 + }, + { + "id": 95, + "sid": 60, + "tid": 11, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 60, + "name": "h31uwq", + "_cssClass": "node-default", + "x": 436.1368378458145, + "y": 147.20217446303099, + "index": 60, + "vy": -0.000586207030619241, + "vx": 0.00005713936640884803 + }, + "target": { + "id": 11, + "name": "jxxzb", + "_cssClass": "node-default", + "x": 482.128924244494, + "y": 146.21276878686498, + "index": 11, + "vy": 0.0007980401904977962, + "vx": 0.0004424984014921577 + }, + "index": 94 + }, + { + "id": 96, + "sid": 61, + "tid": 114, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 61, + "name": "8nw06w", + "_cssClass": "node-default", + "x": 420.93258433898137, + "y": 56.81810132485101, + "index": 61, + "vy": -0.0021445188829768216, + "vx": 0.00015373371619042527 + }, + "target": { + "id": 114, + "name": "8tnwwa", + "_cssClass": "node-default", + "x": 364.72038529101707, + "y": 38.971962568504026, + "index": 114, + "vy": 0.0026126151929759243, + "vx": 0.001681533499333042 + }, + "index": 95 + }, + { + "id": 97, + "sid": 61, + "tid": 15, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 61, + "name": "8nw06w", + "_cssClass": "node-default", + "x": 420.93258433898137, + "y": 56.81810132485101, + "index": 61, + "vy": -0.0021445188829768216, + "vx": 0.00015373371619042527 + }, + "target": { + "id": 15, + "name": "8jy9ob", + "_cssClass": "node-default", + "x": 396.7480321052754, + "y": 107.87846674460806, + "index": 15, + "vy": -0.002373859653690779, + "vx": -0.00188436163075548 + }, + "index": 96 + }, + { + "id": 98, + "sid": 62, + "tid": 59, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 62, + "name": "yumqq", + "_cssClass": "node-default", + "x": 445.49976838577857, + "y": 29.734343687539, + "index": 62, + "vy": 0.0010580639981790146, + "vx": -0.00012451829253081652 + }, + "target": { + "id": 59, + "name": "yhrqy", + "_cssClass": "node-default", + "x": 432.5580402287739, + "y": 62.36869389088665, + "index": 59, + "vy": 0.0014011562797538837, + "vx": -0.0005274949402863141 + }, + "index": 97 + }, + { + "id": 99, + "sid": 63, + "tid": 24, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 63, + "name": "aw0z1k", + "_cssClass": "node-default", + "x": 441.36731816648586, + "y": 96.38620688338307, + "index": 63, + "vy": 0.00045627521030140185, + "vx": 0.00041039672116841025 + }, + "target": { + "id": 24, + "name": "1gly0b", + "_cssClass": "node-default", + "x": 476.50230982431583, + "y": 118.96601371169992, + "index": 24, + "vy": -0.00031233926444791004, + "vx": 0.00003798945404152481 + }, + "index": 98 + }, + { + "id": 100, + "sid": 63, + "tid": 38, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 63, + "name": "aw0z1k", + "_cssClass": "node-default", + "x": 441.36731816648586, + "y": 96.38620688338307, + "index": 63, + "vy": 0.00045627521030140185, + "vx": 0.00041039672116841025 + }, + "target": { + "id": 38, + "name": "xg40lh", + "_cssClass": "node-default", + "x": 391.96136260156425, + "y": 136.4161715417628, + "index": 38, + "vy": 0.0025656288951290303, + "vx": 0.0017825907618016883 + }, + "index": 99 + }, + { + "id": 101, + "sid": 64, + "tid": 103, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 64, + "name": "0xrzbo", + "_cssClass": "node-default", + "x": 459.19723280369874, + "y": 26.896325390043806, + "index": 64, + "vy": -0.000559596823748406, + "vx": 0.000029107665176433904 + }, + "target": { + "id": 103, + "name": "4cbq46", + "_cssClass": "node-default", + "x": 477.78705433793357, + "y": 65.18454629843094, + "index": 103, + "vy": -0.0007850662182903728, + "vx": -0.0014451972355932628 + }, + "index": 100 + }, + { + "id": 102, + "sid": 65, + "tid": 29, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 65, + "name": "5wyl65", + "_cssClass": "node-default", + "x": 377.6095411853096, + "y": 96.81220616934351, + "index": 65, + "vy": 0.003230079185842613, + "vx": -0.006125089265439184 + }, + "target": { + "id": 29, + "name": "r1z7yl", + "_cssClass": "node-default", + "x": 377.1848955941488, + "y": 139.11517817251956, + "index": 29, + "vy": -0.001486177029779658, + "vx": -0.001285401274143028 + }, + "index": 101 + }, + { + "id": 103, + "sid": 66, + "tid": 100, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 66, + "name": "p6dodm", + "_cssClass": "node-default", + "x": 455.2899440030924, + "y": 44.70411800414369, + "index": 66, + "vy": -0.00028572453273449275, + "vx": 0.0005491524593119674 + }, + "target": { + "id": 100, + "name": "5gbc6s", + "_cssClass": "node-default", + "x": 428.1014889800924, + "y": 28.67914111403817, + "index": 100, + "vy": 0.0008355041716365296, + "vx": -0.0006370436928820524 + }, + "index": 102 + }, + { + "id": 104, + "sid": 67, + "tid": 59, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 67, + "name": "b6guzw", + "_cssClass": "node-default", + "x": 395.49272484733274, + "y": 75.29769227611484, + "index": 67, + "vy": 0.0006425768525723398, + "vx": -0.0006753486194254999 + }, + "target": { + "id": 59, + "name": "yhrqy", + "_cssClass": "node-default", + "x": 432.5580402287739, + "y": 62.36869389088665, + "index": 59, + "vy": 0.0014011562797538837, + "vx": -0.0005274949402863141 + }, + "index": 103 + }, + { + "id": 105, + "sid": 68, + "tid": 46, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 68, + "name": "mreqlo", + "_cssClass": "node-default", + "x": 352.50146006068564, + "y": 78.22049677624157, + "index": 68, + "vy": -0.002644912358949254, + "vx": 0.00031686184886548484 + }, + "target": { + "id": 46, + "name": "xc59pf", + "_cssClass": "node-default", + "x": 357.48298081551957, + "y": 26.342609431393047, + "index": 46, + "vy": -0.0007772230755213379, + "vx": 0.0017126314462751547 + }, + "index": 104 + }, + { + "id": 106, + "sid": 68, + "tid": 30, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 68, + "name": "mreqlo", + "_cssClass": "node-default", + "x": 352.50146006068564, + "y": 78.22049677624157, + "index": 68, + "vy": -0.002644912358949254, + "vx": 0.00031686184886548484 + }, + "target": { + "id": 30, + "name": "e3k6gs", + "_cssClass": "node-default", + "x": 359.29605838063947, + "y": 51.383446502734046, + "index": 30, + "vy": 0.0006207190223016245, + "vx": -0.0005948619806342337 + }, + "index": 105 + }, + { + "id": 107, + "sid": 69, + "tid": 80, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 69, + "name": "9j21vf", + "_cssClass": "node-default", + "x": 450.44725584469757, + "y": 145.57970509606318, + "index": 69, + "vy": 0.0001700571243308062, + "vx": 0.00019249639324993574 + }, + "target": { + "id": 80, + "name": "23vky", + "_cssClass": "node-default", + "x": 450.86433323424893, + "y": 107.243245609569, + "index": 80, + "vy": 0.00020337951000286682, + "vx": 0.0008451919003263546 + }, + "index": 106 + }, + { + "id": 108, + "sid": 69, + "tid": 37, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 69, + "name": "9j21vf", + "_cssClass": "node-default", + "x": 450.44725584469757, + "y": 145.57970509606318, + "index": 69, + "vy": 0.0001700571243308062, + "vx": 0.00019249639324993574 + }, + "target": { + "id": 37, + "name": "zv4m1", + "_cssClass": "node-default", + "x": 400.80454497191204, + "y": 126.98802530439765, + "index": 37, + "vy": 0.0016773976351753467, + "vx": 0.00009419227079291966 + }, + "index": 107 + }, + { + "id": 109, + "sid": 70, + "tid": 12, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 70, + "name": "d0jzkl", + "_cssClass": "node-default", + "x": 363.3538889691174, + "y": 106.08365180082812, + "index": 70, + "vy": 0.00033839690627108945, + "vx": -0.0009029225950710417 + }, + "target": { + "id": 12, + "name": "2fz8ne", + "_cssClass": "node-default", + "x": 360.86665518438684, + "y": 148.1798285112359, + "index": 12, + "vy": -0.002324658468922165, + "vx": 0.0001257618608468293 + }, + "index": 108 + }, + { + "id": 110, + "sid": 71, + "tid": 22, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 71, + "name": "or1dmn", + "_cssClass": "node-default", + "x": 404.1488627414665, + "y": 32.47629808338597, + "index": 71, + "vy": -0.0006540414903631997, + "vx": -0.00094750751491176 + }, + "target": { + "id": 22, + "name": "uscwy8", + "_cssClass": "node-default", + "x": 378.66112307490727, + "y": 48.98850133613222, + "index": 22, + "vy": 0.0018549358398967995, + "vx": -0.0021338026211870486 + }, + "index": 109 + }, + { + "id": 111, + "sid": 71, + "tid": 106, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 71, + "name": "or1dmn", + "_cssClass": "node-default", + "x": 404.1488627414665, + "y": 32.47629808338597, + "index": 71, + "vy": -0.0006540414903631997, + "vx": -0.00094750751491176 + }, + "target": { + "id": 106, + "name": "3s7lhm", + "_cssClass": "node-default", + "x": 383.51395771871216, + "y": 22.71761336266484, + "index": 106, + "vy": -0.0011827610222116917, + "vx": -0.0006026911066586968 + }, + "index": 110 + }, + { + "id": 112, + "sid": 72, + "tid": 55, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 72, + "name": "uvrywb", + "_cssClass": "node-default", + "x": 448.2627232592923, + "y": 175.78267323522766, + "index": 72, + "vy": 0.0007406765191427057, + "vx": -0.0007764888820319345 + }, + "target": { + "id": 55, + "name": "c8lg2n", + "_cssClass": "node-default", + "x": 474.69788997032816, + "y": 157.3618645610254, + "index": 55, + "vy": 0.00019327458187630696, + "vx": -0.0005529571268271102 + }, + "index": 111 + }, + { + "id": 113, + "sid": 72, + "tid": 127, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 72, + "name": "uvrywb", + "_cssClass": "node-default", + "x": 448.2627232592923, + "y": 175.78267323522766, + "index": 72, + "vy": 0.0007406765191427057, + "vx": -0.0007764888820319345 + }, + "target": { + "id": 127, + "name": "6kg11", + "_cssClass": "node-default", + "x": 418.7606291087565, + "y": 150.6557891761223, + "index": 127, + "vy": -0.0009138465961746308, + "vx": 0.0007356342537692401 + }, + "index": 112 + }, + { + "id": 114, + "sid": 73, + "tid": 53, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 73, + "name": "yys08", + "_cssClass": "node-default", + "x": 341.3298802727589, + "y": 107.62805750590552, + "index": 73, + "vy": 0.00009587129044351271, + "vx": 0.002288453395588852 + }, + "target": { + "id": 53, + "name": "y2hmhc", + "_cssClass": "node-default", + "x": 363.7305210730842, + "y": 166.05936104778976, + "index": 53, + "vy": 0.000149637829782774, + "vx": 0.0002489504546362025 + }, + "index": 113 + }, + { + "id": 115, + "sid": 73, + "tid": 109, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 73, + "name": "yys08", + "_cssClass": "node-default", + "x": 341.3298802727589, + "y": 107.62805750590552, + "index": 73, + "vy": 0.00009587129044351271, + "vx": 0.002288453395588852 + }, + "target": { + "id": 109, + "name": "597up9", + "_cssClass": "node-default", + "x": 372.0934444736955, + "y": 56.297929198452024, + "index": 109, + "vy": 0.0020243123204494594, + "vx": -0.0004029132617732315 + }, + "index": 114 + }, + { + "id": 116, + "sid": 74, + "tid": 88, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 74, + "name": "1n3bmj", + "_cssClass": "node-default", + "x": 502.6054581784044, + "y": 75.80234949264454, + "index": 74, + "vy": -0.0012962258868852016, + "vx": -0.0007533886402494137 + }, + "target": { + "id": 88, + "name": "78fse", + "_cssClass": "node-default", + "x": 486.581524201113, + "y": 92.96847387758625, + "index": 88, + "vy": 0.0012881685506142282, + "vx": 0.0011787691669973986 + }, + "index": 115 + }, + { + "id": 117, + "sid": 75, + "tid": 70, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 75, + "name": "pruhz", + "_cssClass": "node-default", + "x": 343.5251914265343, + "y": 69.57334171727193, + "index": 75, + "vy": 0.000590097517322836, + "vx": -0.0014956145166388837 + }, + "target": { + "id": 70, + "name": "d0jzkl", + "_cssClass": "node-default", + "x": 363.3538889691174, + "y": 106.08365180082812, + "index": 70, + "vy": 0.00033839690627108945, + "vx": -0.0009029225950710417 + }, + "index": 116 + }, + { + "id": 118, + "sid": 76, + "tid": 47, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 76, + "name": "gu2w8g", + "_cssClass": "node-default", + "x": 470.2184956730566, + "y": 36.93693419664406, + "index": 76, + "vy": 0.00006316093941055207, + "vx": -0.00019376400961581262 + }, + "target": { + "id": 47, + "name": "4uhxms", + "_cssClass": "node-default", + "x": 447.22992390718656, + "y": 60.821700455399736, + "index": 47, + "vy": -0.0005119168833543581, + "vx": -0.0009814853288081034 + }, + "index": 117 + }, + { + "id": 119, + "sid": 77, + "tid": 128, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 77, + "name": "pnadp", + "_cssClass": "node-default", + "x": 369.1080660151795, + "y": 150.13023681276306, + "index": 77, + "vy": 0.0015766992856047577, + "vx": -0.0003680983177578539 + }, + "target": { + "id": 128, + "name": "s84wi6", + "_cssClass": "node-default", + "x": 345.4700778894336, + "y": 165.02255347209484, + "index": 128, + "vy": 0.00030302430613308827, + "vx": -0.0005485776723737187 + }, + "index": 118 + }, + { + "id": 120, + "sid": 77, + "tid": 70, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 77, + "name": "pnadp", + "_cssClass": "node-default", + "x": 369.1080660151795, + "y": 150.13023681276306, + "index": 77, + "vy": 0.0015766992856047577, + "vx": -0.0003680983177578539 + }, + "target": { + "id": 70, + "name": "d0jzkl", + "_cssClass": "node-default", + "x": 363.3538889691174, + "y": 106.08365180082812, + "index": 70, + "vy": 0.00033839690627108945, + "vx": -0.0009029225950710417 + }, + "index": 119 + }, + { + "id": 121, + "sid": 78, + "tid": 84, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 78, + "name": "sb4qpe", + "_cssClass": "node-default", + "x": 312.05124837616717, + "y": 76.10720488453013, + "index": 78, + "vy": -0.0008002779750596909, + "vx": -0.00025546217247657087 + }, + "target": { + "id": 84, + "name": "hw3sdm", + "_cssClass": "node-default", + "x": 318.8685929277688, + "y": 51.63819201492711, + "index": 84, + "vy": -0.00023649097784260182, + "vx": 0.00044472190216029246 + }, + "index": 120 + }, + { + "id": 122, + "sid": 78, + "tid": 57, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 78, + "name": "sb4qpe", + "_cssClass": "node-default", + "x": 312.05124837616717, + "y": 76.10720488453013, + "index": 78, + "vy": -0.0008002779750596909, + "vx": -0.00025546217247657087 + }, + "target": { + "id": 57, + "name": "15o205", + "_cssClass": "node-default", + "x": 345.99213960256526, + "y": 54.95639016418944, + "index": 57, + "vy": -0.00262501835450807, + "vx": -0.0025895198166709372 + }, + "index": 121 + }, + { + "id": 123, + "sid": 79, + "tid": 59, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 79, + "name": "9m3cp8", + "_cssClass": "node-default", + "x": 436.8841291842744, + "y": 116.81853904111713, + "index": 79, + "vy": -0.000981975739541365, + "vx": 0.00013639146411162495 + }, + "target": { + "id": 59, + "name": "yhrqy", + "_cssClass": "node-default", + "x": 432.5580402287739, + "y": 62.36869389088665, + "index": 59, + "vy": 0.0014011562797538837, + "vx": -0.0005274949402863141 + }, + "index": 122 + }, + { + "id": 124, + "sid": 79, + "tid": 110, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 79, + "name": "9m3cp8", + "_cssClass": "node-default", + "x": 436.8841291842744, + "y": 116.81853904111713, + "index": 79, + "vy": -0.000981975739541365, + "vx": 0.00013639146411162495 + }, + "target": { + "id": 110, + "name": "cf59xr", + "_cssClass": "node-default", + "x": 437.8761787943288, + "y": 82.08800003843403, + "index": 110, + "vy": 0.00005939994533229026, + "vx": 0.0008087911250739717 + }, + "index": 123 + }, + { + "id": 125, + "sid": 80, + "tid": 8, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 80, + "name": "23vky", + "_cssClass": "node-default", + "x": 450.86433323424893, + "y": 107.243245609569, + "index": 80, + "vy": 0.00020337951000286682, + "vx": 0.0008451919003263546 + }, + "target": { + "id": 8, + "name": "cu8am9", + "_cssClass": "node-default", + "x": 382.2662926382867, + "y": 80.8524305753426, + "index": 8, + "vy": 0.0003693381330250343, + "vx": 0.0006304414182809675 + }, + "index": 124 + }, + { + "id": 126, + "sid": 81, + "tid": 88, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 81, + "name": "a4vll", + "_cssClass": "node-default", + "x": 489.7113378822183, + "y": 59.88085082884674, + "index": 81, + "vy": 0.001023457914546018, + "vx": 0.0008212159224022978 + }, + "target": { + "id": 88, + "name": "78fse", + "_cssClass": "node-default", + "x": 486.581524201113, + "y": 92.96847387758625, + "index": 88, + "vy": 0.0012881685506142282, + "vx": 0.0011787691669973986 + }, + "index": 125 + }, + { + "id": 127, + "sid": 82, + "tid": 69, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 82, + "name": "ttgp7l", + "_cssClass": "node-default", + "x": 464.3928357258118, + "y": 171.23511945063356, + "index": 82, + "vy": 0.00005142173753058801, + "vx": -0.0001770230700598425 + }, + "target": { + "id": 69, + "name": "9j21vf", + "_cssClass": "node-default", + "x": 450.44725584469757, + "y": 145.57970509606318, + "index": 69, + "vy": 0.0001700571243308062, + "vx": 0.00019249639324993574 + }, + "index": 126 + }, + { + "id": 128, + "sid": 82, + "tid": 104, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 82, + "name": "ttgp7l", + "_cssClass": "node-default", + "x": 464.3928357258118, + "y": 171.23511945063356, + "index": 82, + "vy": 0.00005142173753058801, + "vx": -0.0001770230700598425 + }, + "target": { + "id": 104, + "name": "2d98q", + "_cssClass": "node-default", + "x": 439.109944123908, + "y": 136.56040667258483, + "index": 104, + "vy": -0.00016914067580904926, + "vx": 0.00025090712732196236 + }, + "index": 127 + }, + { + "id": 129, + "sid": 83, + "tid": 92, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 83, + "name": "vjrdcg", + "_cssClass": "node-default", + "x": 399.1257105976218, + "y": 11.054317729495068, + "index": 83, + "vy": 0.0011986399194118492, + "vx": 0.0009509273857036342 + }, + "target": { + "id": 92, + "name": "ey0tyj", + "_cssClass": "node-default", + "x": 433.8856211532221, + "y": 12.58560774926412, + "index": 92, + "vy": 0.0009153659243341323, + "vx": 0.001380926706959042 + }, + "index": 128 + }, + { + "id": 130, + "sid": 84, + "tid": 101, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 84, + "name": "hw3sdm", + "_cssClass": "node-default", + "x": 318.8685929277688, + "y": 51.63819201492711, + "index": 84, + "vy": -0.00023649097784260182, + "vx": 0.00044472190216029246 + }, + "target": { + "id": 101, + "name": "pvk3e", + "_cssClass": "node-default", + "x": 326.37908742614735, + "y": 84.53019823462743, + "index": 101, + "vy": 0.00017741969277072938, + "vx": -0.0010132050331023116 + }, + "index": 129 + }, + { + "id": 131, + "sid": 85, + "tid": 90, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 85, + "name": "p74m89", + "_cssClass": "node-default", + "x": 361.91032775517766, + "y": 133.81090396599456, + "index": 85, + "vy": 0.0012356147663703852, + "vx": -0.0016963492722738111 + }, + "target": { + "id": 90, + "name": "xptukg", + "_cssClass": "node-default", + "x": 381.7679281519114, + "y": 110.17180373213485, + "index": 90, + "vy": 0.001265858047697888, + "vx": -0.0012255173350965015 + }, + "index": 130 + }, + { + "id": 132, + "sid": 86, + "tid": 94, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 86, + "name": "wyl1t", + "_cssClass": "node-default", + "x": 459.43234075702264, + "y": 59.54227682675203, + "index": 86, + "vy": -0.0012005128249364646, + "vx": -0.0005761539614976196 + }, + "target": { + "id": 94, + "name": "1y9qv", + "_cssClass": "node-default", + "x": 489.26667993724465, + "y": 81.80041035697003, + "index": 94, + "vy": -0.00018473408587352775, + "vx": -0.0009940591800940684 + }, + "index": 131 + }, + { + "id": 133, + "sid": 86, + "tid": 115, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 86, + "name": "wyl1t", + "_cssClass": "node-default", + "x": 459.43234075702264, + "y": 59.54227682675203, + "index": 86, + "vy": -0.0012005128249364646, + "vx": -0.0005761539614976196 + }, + "target": { + "id": 115, + "name": "x48fwb", + "_cssClass": "node-default", + "x": 473.3490789955173, + "y": 50.05604632662714, + "index": 115, + "vy": -0.0000016926091072967967, + "vx": 0.0010049349078720233 + }, + "index": 132 + }, + { + "id": 134, + "sid": 87, + "tid": 110, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 87, + "name": "39wty", + "_cssClass": "node-default", + "x": 430.4269232899492, + "y": 125.71738051153952, + "index": 87, + "vy": -0.0012286330900336802, + "vx": 0.0010563740053582793 + }, + "target": { + "id": 110, + "name": "cf59xr", + "_cssClass": "node-default", + "x": 437.8761787943288, + "y": 82.08800003843403, + "index": 110, + "vy": 0.00005939994533229026, + "vx": 0.0008087911250739717 + }, + "index": 133 + }, + { + "id": 135, + "sid": 87, + "tid": 56, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 87, + "name": "39wty", + "_cssClass": "node-default", + "x": 430.4269232899492, + "y": 125.71738051153952, + "index": 87, + "vy": -0.0012286330900336802, + "vx": 0.0010563740053582793 + }, + "target": { + "id": 56, + "name": "2i7xxf", + "_cssClass": "node-default", + "x": 432.26476869168636, + "y": 103.63154494542478, + "index": 56, + "vy": -0.0014922259447731395, + "vx": -0.00032965128783252564 + }, + "index": 134 + }, + { + "id": 136, + "sid": 88, + "tid": 16, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 88, + "name": "78fse", + "_cssClass": "node-default", + "x": 486.581524201113, + "y": 92.96847387758625, + "index": 88, + "vy": 0.0012881685506142282, + "vx": 0.0011787691669973986 + }, + "target": { + "id": 16, + "name": "s2hn4c", + "_cssClass": "node-default", + "x": 494.9111466825618, + "y": 129.82091612477453, + "index": 16, + "vy": -0.00009148179241610281, + "vx": 0.0012916874033135504 + }, + "index": 135 + }, + { + "id": 137, + "sid": 88, + "tid": 115, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 88, + "name": "78fse", + "_cssClass": "node-default", + "x": 486.581524201113, + "y": 92.96847387758625, + "index": 88, + "vy": 0.0012881685506142282, + "vx": 0.0011787691669973986 + }, + "target": { + "id": 115, + "name": "x48fwb", + "_cssClass": "node-default", + "x": 473.3490789955173, + "y": 50.05604632662714, + "index": 115, + "vy": -0.0000016926091072967967, + "vx": 0.0010049349078720233 + }, + "index": 136 + }, + { + "id": 138, + "sid": 89, + "tid": 4, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 89, + "name": "pli4ch", + "_cssClass": "node-default", + "x": 501.33718996918066, + "y": 105.84497975231498, + "index": 89, + "vy": -0.0007557397305931611, + "vx": -0.0005161289887960603 + }, + "target": { + "id": 4, + "name": "ssb7vc", + "_cssClass": "node-default", + "x": 472.67738529913123, + "y": 105.37737605085815, + "index": 4, + "vy": -0.00025867755193498666, + "vx": -0.0003002416371407169 + }, + "index": 137 + }, + { + "id": 139, + "sid": 89, + "tid": 74, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 89, + "name": "pli4ch", + "_cssClass": "node-default", + "x": 501.33718996918066, + "y": 105.84497975231498, + "index": 89, + "vy": -0.0007557397305931611, + "vx": -0.0005161289887960603 + }, + "target": { + "id": 74, + "name": "1n3bmj", + "_cssClass": "node-default", + "x": 502.6054581784044, + "y": 75.80234949264454, + "index": 74, + "vy": -0.0012962258868852016, + "vx": -0.0007533886402494137 + }, + "index": 138 + }, + { + "id": 140, + "sid": 90, + "tid": 122, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 90, + "name": "xptukg", + "_cssClass": "node-default", + "x": 381.7679281519114, + "y": 110.17180373213485, + "index": 90, + "vy": 0.001265858047697888, + "vx": -0.0012255173350965015 + }, + "target": { + "id": 122, + "name": "4gfcc", + "_cssClass": "node-default", + "x": 351.35665172280244, + "y": 127.42555421866795, + "index": 122, + "vy": -0.0012330522105253089, + "vx": 0.0003255024404983422 + }, + "index": 139 + }, + { + "id": 141, + "sid": 91, + "tid": 40, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 91, + "name": "rw3bso", + "_cssClass": "node-default", + "x": 320.4038567317048, + "y": 132.24764163145755, + "index": 91, + "vy": -0.0005268347432469368, + "vx": 0.00017028455387216792 + }, + "target": { + "id": 40, + "name": "sqvpw9", + "_cssClass": "node-default", + "x": 366.5962091417913, + "y": 120.50301481262845, + "index": 40, + "vy": 0.0011065427207375342, + "vx": 0.0014132258392817927 + }, + "index": 140 + }, + { + "id": 142, + "sid": 91, + "tid": 122, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 91, + "name": "rw3bso", + "_cssClass": "node-default", + "x": 320.4038567317048, + "y": 132.24764163145755, + "index": 91, + "vy": -0.0005268347432469368, + "vx": 0.00017028455387216792 + }, + "target": { + "id": 122, + "name": "4gfcc", + "_cssClass": "node-default", + "x": 351.35665172280244, + "y": 127.42555421866795, + "index": 122, + "vy": -0.0012330522105253089, + "vx": 0.0003255024404983422 + }, + "index": 141 + }, + { + "id": 143, + "sid": 92, + "tid": 66, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 92, + "name": "ey0tyj", + "_cssClass": "node-default", + "x": 433.8856211532221, + "y": 12.58560774926412, + "index": 92, + "vy": 0.0009153659243341323, + "vx": 0.001380926706959042 + }, + "target": { + "id": 66, + "name": "p6dodm", + "_cssClass": "node-default", + "x": 455.2899440030924, + "y": 44.70411800414369, + "index": 66, + "vy": -0.00028572453273449275, + "vx": 0.0005491524593119674 + }, + "index": 142 + }, + { + "id": 144, + "sid": 93, + "tid": 71, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 93, + "name": "gfdgxo", + "_cssClass": "node-default", + "x": 370.759320680256, + "y": 69.59352315113334, + "index": 93, + "vy": 0.0015148778541772157, + "vx": -0.000200979043049152 + }, + "target": { + "id": 71, + "name": "or1dmn", + "_cssClass": "node-default", + "x": 404.1488627414665, + "y": 32.47629808338597, + "index": 71, + "vy": -0.0006540414903631997, + "vx": -0.00094750751491176 + }, + "index": 143 + }, + { + "id": 145, + "sid": 93, + "tid": 101, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 93, + "name": "gfdgxo", + "_cssClass": "node-default", + "x": 370.759320680256, + "y": 69.59352315113334, + "index": 93, + "vy": 0.0015148778541772157, + "vx": -0.000200979043049152 + }, + "target": { + "id": 101, + "name": "pvk3e", + "_cssClass": "node-default", + "x": 326.37908742614735, + "y": 84.53019823462743, + "index": 101, + "vy": 0.00017741969277072938, + "vx": -0.0010132050331023116 + }, + "index": 144 + }, + { + "id": 146, + "sid": 94, + "tid": 99, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 94, + "name": "1y9qv", + "_cssClass": "node-default", + "x": 489.26667993724465, + "y": 81.80041035697003, + "index": 94, + "vy": -0.00018473408587352775, + "vx": -0.0009940591800940684 + }, + "target": { + "id": 99, + "name": "5fj0wg", + "_cssClass": "node-default", + "x": 457.94478144152043, + "y": 90.26579902966293, + "index": 99, + "vy": 0.000714789380758797, + "vx": 0.00005732300294071081 + }, + "index": 145 + }, + { + "id": 147, + "sid": 95, + "tid": 101, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 95, + "name": "7cheg", + "_cssClass": "node-default", + "x": 329.0757712915332, + "y": 126.59991503956542, + "index": 95, + "vy": -0.0003250837220471308, + "vx": -0.00047457427358009777 + }, + "target": { + "id": 101, + "name": "pvk3e", + "_cssClass": "node-default", + "x": 326.37908742614735, + "y": 84.53019823462743, + "index": 101, + "vy": 0.00017741969277072938, + "vx": -0.0010132050331023116 + }, + "index": 146 + }, + { + "id": 148, + "sid": 95, + "tid": 128, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 95, + "name": "7cheg", + "_cssClass": "node-default", + "x": 329.0757712915332, + "y": 126.59991503956542, + "index": 95, + "vy": -0.0003250837220471308, + "vx": -0.00047457427358009777 + }, + "target": { + "id": 128, + "name": "s84wi6", + "_cssClass": "node-default", + "x": 345.4700778894336, + "y": 165.02255347209484, + "index": 128, + "vy": 0.00030302430613308827, + "vx": -0.0005485776723737187 + }, + "index": 147 + }, + { + "id": 149, + "sid": 96, + "tid": 106, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 96, + "name": "6o6d1e", + "_cssClass": "node-default", + "x": 385.97315150410753, + "y": 67.06042099216737, + "index": 96, + "vy": -0.0011948193726409432, + "vx": 0.0004819620423771164 + }, + "target": { + "id": 106, + "name": "3s7lhm", + "_cssClass": "node-default", + "x": 383.51395771871216, + "y": 22.71761336266484, + "index": 106, + "vy": -0.0011827610222116917, + "vx": -0.0006026911066586968 + }, + "index": 148 + }, + { + "id": 150, + "sid": 96, + "tid": 111, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 96, + "name": "6o6d1e", + "_cssClass": "node-default", + "x": 385.97315150410753, + "y": 67.06042099216737, + "index": 96, + "vy": -0.0011948193726409432, + "vx": 0.0004819620423771164 + }, + "target": { + "id": 111, + "name": "i38fp2", + "_cssClass": "node-default", + "x": 430.8158684900311, + "y": 42.59825198035904, + "index": 111, + "vy": 0.00013202903917029153, + "vx": -0.0007238981075793837 + }, + "index": 149 + }, + { + "id": 151, + "sid": 97, + "tid": 116, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 97, + "name": "f71bad", + "_cssClass": "node-default", + "x": 415.4867143165565, + "y": 188.47730629377153, + "index": 97, + "vy": -0.0007678347407443995, + "vx": -0.0009779384407759915 + }, + "target": { + "id": 116, + "name": "3b20r9", + "_cssClass": "node-default", + "x": 400.4071919097737, + "y": 164.70791776589687, + "index": 116, + "vy": -0.0010493563825812416, + "vx": 0.0013756943144831203 + }, + "index": 150 + }, + { + "id": 152, + "sid": 98, + "tid": 118, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 98, + "name": "kbityr", + "_cssClass": "node-default", + "x": 409.85195183361606, + "y": 14.61077609817812, + "index": 98, + "vy": -0.001376195788273088, + "vx": 0.0024053320319524234 + }, + "target": { + "id": 118, + "name": "6b6pdb", + "_cssClass": "node-default", + "x": 399.91601740471026, + "y": 43.976426041301664, + "index": 118, + "vy": -0.00016200057665345275, + "vx": 0.002672394527024542 + }, + "index": 151 + }, + { + "id": 153, + "sid": 99, + "tid": 52, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 99, + "name": "5fj0wg", + "_cssClass": "node-default", + "x": 457.94478144152043, + "y": 90.26579902966293, + "index": 99, + "vy": 0.000714789380758797, + "vx": 0.00005732300294071081 + }, + "target": { + "id": 52, + "name": "ehzeu9", + "_cssClass": "node-default", + "x": 446.11979707003525, + "y": 70.2778090953105, + "index": 52, + "vy": -0.00005623283043909057, + "vx": 0.0005720538248760969 + }, + "index": 152 + }, + { + "id": 154, + "sid": 99, + "tid": 18, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 99, + "name": "5fj0wg", + "_cssClass": "node-default", + "x": 457.94478144152043, + "y": 90.26579902966293, + "index": 99, + "vy": 0.000714789380758797, + "vx": 0.00005732300294071081 + }, + "target": { + "id": 18, + "name": "ztpf7", + "_cssClass": "node-default", + "x": 419.4791784573061, + "y": 118.32398142271929, + "index": 18, + "vy": -0.0007819185029179276, + "vx": -0.0005113027003699465 + }, + "index": 153 + }, + { + "id": 155, + "sid": 100, + "tid": 47, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 100, + "name": "5gbc6s", + "_cssClass": "node-default", + "x": 428.1014889800924, + "y": 28.67914111403817, + "index": 100, + "vy": 0.0008355041716365296, + "vx": -0.0006370436928820524 + }, + "target": { + "id": 47, + "name": "4uhxms", + "_cssClass": "node-default", + "x": 447.22992390718656, + "y": 60.821700455399736, + "index": 47, + "vy": -0.0005119168833543581, + "vx": -0.0009814853288081034 + }, + "index": 154 + }, + { + "id": 156, + "sid": 101, + "tid": 65, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 101, + "name": "pvk3e", + "_cssClass": "node-default", + "x": 326.37908742614735, + "y": 84.53019823462743, + "index": 101, + "vy": 0.00017741969277072938, + "vx": -0.0010132050331023116 + }, + "target": { + "id": 65, + "name": "5wyl65", + "_cssClass": "node-default", + "x": 377.6095411853096, + "y": 96.81220616934351, + "index": 65, + "vy": 0.003230079185842613, + "vx": -0.006125089265439184 + }, + "index": 155 + }, + { + "id": 157, + "sid": 101, + "tid": 48, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 101, + "name": "pvk3e", + "_cssClass": "node-default", + "x": 326.37908742614735, + "y": 84.53019823462743, + "index": 101, + "vy": 0.00017741969277072938, + "vx": -0.0010132050331023116 + }, + "target": { + "id": 48, + "name": "6afq0t", + "_cssClass": "node-default", + "x": 341.25085799536197, + "y": 119.86120126045859, + "index": 48, + "vy": 0.0013711913894302009, + "vx": -0.001725790931595739 + }, + "index": 156 + }, + { + "id": 158, + "sid": 102, + "tid": 94, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 102, + "name": "wyvqyi", + "_cssClass": "node-default", + "x": 491.2443274138911, + "y": 119.53783100663522, + "index": 102, + "vy": 0.00016977783160061392, + "vx": -0.0006582960103637408 + }, + "target": { + "id": 94, + "name": "1y9qv", + "_cssClass": "node-default", + "x": 489.26667993724465, + "y": 81.80041035697003, + "index": 94, + "vy": -0.00018473408587352775, + "vx": -0.0009940591800940684 + }, + "index": 157 + }, + { + "id": 159, + "sid": 103, + "tid": 4, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 103, + "name": "4cbq46", + "_cssClass": "node-default", + "x": 477.78705433793357, + "y": 65.18454629843094, + "index": 103, + "vy": -0.0007850662182903728, + "vx": -0.0014451972355932628 + }, + "target": { + "id": 4, + "name": "ssb7vc", + "_cssClass": "node-default", + "x": 472.67738529913123, + "y": 105.37737605085815, + "index": 4, + "vy": -0.00025867755193498666, + "vx": -0.0003002416371407169 + }, + "index": 158 + }, + { + "id": 160, + "sid": 103, + "tid": 99, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 103, + "name": "4cbq46", + "_cssClass": "node-default", + "x": 477.78705433793357, + "y": 65.18454629843094, + "index": 103, + "vy": -0.0007850662182903728, + "vx": -0.0014451972355932628 + }, + "target": { + "id": 99, + "name": "5fj0wg", + "_cssClass": "node-default", + "x": 457.94478144152043, + "y": 90.26579902966293, + "index": 99, + "vy": 0.000714789380758797, + "vx": 0.00005732300294071081 + }, + "index": 159 + }, + { + "id": 161, + "sid": 104, + "tid": 108, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 104, + "name": "2d98q", + "_cssClass": "node-default", + "x": 439.109944123908, + "y": 136.56040667258483, + "index": 104, + "vy": -0.00016914067580904926, + "vx": 0.00025090712732196236 + }, + "target": { + "id": 108, + "name": "6438nh", + "_cssClass": "node-default", + "x": 359.4319377220432, + "y": 93.25756899913982, + "index": 108, + "vy": 0.000603481694535167, + "vx": -0.000053881522856263203 + }, + "index": 160 + }, + { + "id": 162, + "sid": 104, + "tid": 4, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 104, + "name": "2d98q", + "_cssClass": "node-default", + "x": 439.109944123908, + "y": 136.56040667258483, + "index": 104, + "vy": -0.00016914067580904926, + "vx": 0.00025090712732196236 + }, + "target": { + "id": 4, + "name": "ssb7vc", + "_cssClass": "node-default", + "x": 472.67738529913123, + "y": 105.37737605085815, + "index": 4, + "vy": -0.00025867755193498666, + "vx": -0.0003002416371407169 + }, + "index": 161 + }, + { + "id": 163, + "sid": 105, + "tid": 56, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 105, + "name": "7q0tz8", + "_cssClass": "node-default", + "x": 409.5417589854022, + "y": 138.69022823727812, + "index": 105, + "vy": -0.00011195493338983812, + "vx": 0.0019153236236903943 + }, + "target": { + "id": 56, + "name": "2i7xxf", + "_cssClass": "node-default", + "x": 432.26476869168636, + "y": 103.63154494542478, + "index": 56, + "vy": -0.0014922259447731395, + "vx": -0.00032965128783252564 + }, + "index": 162 + }, + { + "id": 164, + "sid": 105, + "tid": 51, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 105, + "name": "7q0tz8", + "_cssClass": "node-default", + "x": 409.5417589854022, + "y": 138.69022823727812, + "index": 105, + "vy": -0.00011195493338983812, + "vx": 0.0019153236236903943 + }, + "target": { + "id": 51, + "name": "b8sl9g", + "_cssClass": "node-default", + "x": 386.47191810177776, + "y": 122.43365121912518, + "index": 51, + "vy": 0.0015885805390337474, + "vx": 0.0018828203815383837 + }, + "index": 163 + }, + { + "id": 165, + "sid": 106, + "tid": 114, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 106, + "name": "3s7lhm", + "_cssClass": "node-default", + "x": 383.51395771871216, + "y": 22.71761336266484, + "index": 106, + "vy": -0.0011827610222116917, + "vx": -0.0006026911066586968 + }, + "target": { + "id": 114, + "name": "8tnwwa", + "_cssClass": "node-default", + "x": 364.72038529101707, + "y": 38.971962568504026, + "index": 114, + "vy": 0.0026126151929759243, + "vx": 0.001681533499333042 + }, + "index": 164 + }, + { + "id": 166, + "sid": 107, + "tid": 71, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 107, + "name": "9cawc", + "_cssClass": "node-default", + "x": 416.7527119697291, + "y": 71.02207068120077, + "index": 107, + "vy": -0.0012936065373925286, + "vx": 0.0004615278892764726 + }, + "target": { + "id": 71, + "name": "or1dmn", + "_cssClass": "node-default", + "x": 404.1488627414665, + "y": 32.47629808338597, + "index": 71, + "vy": -0.0006540414903631997, + "vx": -0.00094750751491176 + }, + "index": 165 + }, + { + "id": 167, + "sid": 108, + "tid": 67, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 108, + "name": "6438nh", + "_cssClass": "node-default", + "x": 359.4319377220432, + "y": 93.25756899913982, + "index": 108, + "vy": 0.000603481694535167, + "vx": -0.000053881522856263203 + }, + "target": { + "id": 67, + "name": "b6guzw", + "_cssClass": "node-default", + "x": 395.49272484733274, + "y": 75.29769227611484, + "index": 67, + "vy": 0.0006425768525723398, + "vx": -0.0006753486194254999 + }, + "index": 166 + }, + { + "id": 168, + "sid": 109, + "tid": 100, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 109, + "name": "597up9", + "_cssClass": "node-default", + "x": 372.0934444736955, + "y": 56.297929198452024, + "index": 109, + "vy": 0.0020243123204494594, + "vx": -0.0004029132617732315 + }, + "target": { + "id": 100, + "name": "5gbc6s", + "_cssClass": "node-default", + "x": 428.1014889800924, + "y": 28.67914111403817, + "index": 100, + "vy": 0.0008355041716365296, + "vx": -0.0006370436928820524 + }, + "index": 167 + }, + { + "id": 169, + "sid": 109, + "tid": 67, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 109, + "name": "597up9", + "_cssClass": "node-default", + "x": 372.0934444736955, + "y": 56.297929198452024, + "index": 109, + "vy": 0.0020243123204494594, + "vx": -0.0004029132617732315 + }, + "target": { + "id": 67, + "name": "b6guzw", + "_cssClass": "node-default", + "x": 395.49272484733274, + "y": 75.29769227611484, + "index": 67, + "vy": 0.0006425768525723398, + "vx": -0.0006753486194254999 + }, + "index": 168 + }, + { + "id": 170, + "sid": 110, + "tid": 20, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 110, + "name": "cf59xr", + "_cssClass": "node-default", + "x": 437.8761787943288, + "y": 82.08800003843403, + "index": 110, + "vy": 0.00005939994533229026, + "vx": 0.0008087911250739717 + }, + "target": { + "id": 20, + "name": "8f4y2", + "_cssClass": "node-default", + "x": 408.12211516621596, + "y": 54.690970519310305, + "index": 20, + "vy": 0.003604347438191066, + "vx": -0.0021813439378349448 + }, + "index": 169 + }, + { + "id": 171, + "sid": 111, + "tid": 47, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 111, + "name": "i38fp2", + "_cssClass": "node-default", + "x": 430.8158684900311, + "y": 42.59825198035904, + "index": 111, + "vy": 0.00013202903917029153, + "vx": -0.0007238981075793837 + }, + "target": { + "id": 47, + "name": "4uhxms", + "_cssClass": "node-default", + "x": 447.22992390718656, + "y": 60.821700455399736, + "index": 47, + "vy": -0.0005119168833543581, + "vx": -0.0009814853288081034 + }, + "index": 170 + }, + { + "id": 172, + "sid": 111, + "tid": 83, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 111, + "name": "i38fp2", + "_cssClass": "node-default", + "x": 430.8158684900311, + "y": 42.59825198035904, + "index": 111, + "vy": 0.00013202903917029153, + "vx": -0.0007238981075793837 + }, + "target": { + "id": 83, + "name": "vjrdcg", + "_cssClass": "node-default", + "x": 399.1257105976218, + "y": 11.054317729495068, + "index": 83, + "vy": 0.0011986399194118492, + "vx": 0.0009509273857036342 + }, + "index": 171 + }, + { + "id": 173, + "sid": 112, + "tid": 33, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 112, + "name": "jx9h7", + "_cssClass": "node-default", + "x": 333.1458845987688, + "y": 49.17330980593839, + "index": 112, + "vy": 0.000040674972035327274, + "vx": -0.00034618837008050746 + }, + "target": { + "id": 33, + "name": "xpjqd8", + "_cssClass": "node-default", + "x": 364.065615643236, + "y": 78.25483748403657, + "index": 33, + "vy": 0.0015722616769229755, + "vx": -0.0005926762763703718 + }, + "index": 172 + }, + { + "id": 174, + "sid": 112, + "tid": 78, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 112, + "name": "jx9h7", + "_cssClass": "node-default", + "x": 333.1458845987688, + "y": 49.17330980593839, + "index": 112, + "vy": 0.000040674972035327274, + "vx": -0.00034618837008050746 + }, + "target": { + "id": 78, + "name": "sb4qpe", + "_cssClass": "node-default", + "x": 312.05124837616717, + "y": 76.10720488453013, + "index": 78, + "vy": -0.0008002779750596909, + "vx": -0.00025546217247657087 + }, + "index": 173 + }, + { + "id": 175, + "sid": 113, + "tid": 11, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 113, + "name": "n449wi", + "_cssClass": "node-default", + "x": 469.7399012130191, + "y": 129.5223138302524, + "index": 113, + "vy": 0.0005311173990175625, + "vx": -0.00006069342199331831 + }, + "target": { + "id": 11, + "name": "jxxzb", + "_cssClass": "node-default", + "x": 482.128924244494, + "y": 146.21276878686498, + "index": 11, + "vy": 0.0007980401904977962, + "vx": 0.0004424984014921577 + }, + "index": 174 + }, + { + "id": 176, + "sid": 114, + "tid": 108, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 114, + "name": "8tnwwa", + "_cssClass": "node-default", + "x": 364.72038529101707, + "y": 38.971962568504026, + "index": 114, + "vy": 0.0026126151929759243, + "vx": 0.001681533499333042 + }, + "target": { + "id": 108, + "name": "6438nh", + "_cssClass": "node-default", + "x": 359.4319377220432, + "y": 93.25756899913982, + "index": 108, + "vy": 0.000603481694535167, + "vx": -0.000053881522856263203 + }, + "index": 175 + }, + { + "id": 177, + "sid": 115, + "tid": 61, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 115, + "name": "x48fwb", + "_cssClass": "node-default", + "x": 473.3490789955173, + "y": 50.05604632662714, + "index": 115, + "vy": -0.0000016926091072967967, + "vx": 0.0010049349078720233 + }, + "target": { + "id": 61, + "name": "8nw06w", + "_cssClass": "node-default", + "x": 420.93258433898137, + "y": 56.81810132485101, + "index": 61, + "vy": -0.0021445188829768216, + "vx": 0.00015373371619042527 + }, + "index": 176 + }, + { + "id": 178, + "sid": 116, + "tid": 53, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 116, + "name": "3b20r9", + "_cssClass": "node-default", + "x": 400.4071919097737, + "y": 164.70791776589687, + "index": 116, + "vy": -0.0010493563825812416, + "vx": 0.0013756943144831203 + }, + "target": { + "id": 53, + "name": "y2hmhc", + "_cssClass": "node-default", + "x": 363.7305210730842, + "y": 166.05936104778976, + "index": 53, + "vy": 0.000149637829782774, + "vx": 0.0002489504546362025 + }, + "index": 177 + }, + { + "id": 179, + "sid": 116, + "tid": 79, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 116, + "name": "3b20r9", + "_cssClass": "node-default", + "x": 400.4071919097737, + "y": 164.70791776589687, + "index": 116, + "vy": -0.0010493563825812416, + "vx": 0.0013756943144831203 + }, + "target": { + "id": 79, + "name": "9m3cp8", + "_cssClass": "node-default", + "x": 436.8841291842744, + "y": 116.81853904111713, + "index": 79, + "vy": -0.000981975739541365, + "vx": 0.00013639146411162495 + }, + "index": 178 + }, + { + "id": 180, + "sid": 117, + "tid": 75, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 117, + "name": "dx14l9", + "_cssClass": "node-default", + "x": 350.91757906606557, + "y": 37.013353227470795, + "index": 117, + "vy": -0.000538370716777779, + "vx": 0.0014152631786866733 + }, + "target": { + "id": 75, + "name": "pruhz", + "_cssClass": "node-default", + "x": 343.5251914265343, + "y": 69.57334171727193, + "index": 75, + "vy": 0.000590097517322836, + "vx": -0.0014956145166388837 + }, + "index": 179 + }, + { + "id": 181, + "sid": 117, + "tid": 67, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 117, + "name": "dx14l9", + "_cssClass": "node-default", + "x": 350.91757906606557, + "y": 37.013353227470795, + "index": 117, + "vy": -0.000538370716777779, + "vx": 0.0014152631786866733 + }, + "target": { + "id": 67, + "name": "b6guzw", + "_cssClass": "node-default", + "x": 395.49272484733274, + "y": 75.29769227611484, + "index": 67, + "vy": 0.0006425768525723398, + "vx": -0.0006753486194254999 + }, + "index": 180 + }, + { + "id": 182, + "sid": 118, + "tid": 34, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 118, + "name": "6b6pdb", + "_cssClass": "node-default", + "x": 399.91601740471026, + "y": 43.976426041301664, + "index": 118, + "vy": -0.00016200057665345275, + "vx": 0.002672394527024542 + }, + "target": { + "id": 34, + "name": "c4t0db", + "_cssClass": "node-default", + "x": 407.71593835565795, + "y": 89.3581174996468, + "index": 34, + "vy": -0.0006378202227727299, + "vx": 0.0011318414892146121 + }, + "index": 181 + }, + { + "id": 183, + "sid": 119, + "tid": 39, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 119, + "name": "zbz8m", + "_cssClass": "node-default", + "x": 386.3012747208951, + "y": 156.09711303404814, + "index": 119, + "vy": 0.00040873039766288786, + "vx": 0.0007659940262447019 + }, + "target": { + "id": 39, + "name": "ay8hte", + "_cssClass": "node-default", + "x": 418.9221043612044, + "y": 131.9147807937393, + "index": 39, + "vy": -0.0016490563440478545, + "vx": 0.0003953293187439443 + }, + "index": 182 + }, + { + "id": 184, + "sid": 120, + "tid": 107, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 120, + "name": "1bbh8n", + "_cssClass": "node-default", + "x": 375.5122919700059, + "y": 88.31646383801142, + "index": 120, + "vy": -0.002714663904673482, + "vx": 0.003028589600808529 + }, + "target": { + "id": 107, + "name": "9cawc", + "_cssClass": "node-default", + "x": 416.7527119697291, + "y": 71.02207068120077, + "index": 107, + "vy": -0.0012936065373925286, + "vx": 0.0004615278892764726 + }, + "index": 183 + }, + { + "id": 185, + "sid": 121, + "tid": 12, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 121, + "name": "bs3ne", + "_cssClass": "node-default", + "x": 371.0641455910165, + "y": 183.92101002226804, + "index": 121, + "vy": 0.0004917506738684137, + "vx": -0.0001243500714726591 + }, + "target": { + "id": 12, + "name": "2fz8ne", + "_cssClass": "node-default", + "x": 360.86665518438684, + "y": 148.1798285112359, + "index": 12, + "vy": -0.002324658468922165, + "vx": 0.0001257618608468293 + }, + "index": 184 + }, + { + "id": 186, + "sid": 122, + "tid": 96, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 122, + "name": "4gfcc", + "_cssClass": "node-default", + "x": 351.35665172280244, + "y": 127.42555421866795, + "index": 122, + "vy": -0.0012330522105253089, + "vx": 0.0003255024404983422 + }, + "target": { + "id": 96, + "name": "6o6d1e", + "_cssClass": "node-default", + "x": 385.97315150410753, + "y": 67.06042099216737, + "index": 96, + "vy": -0.0011948193726409432, + "vx": 0.0004819620423771164 + }, + "index": 185 + }, + { + "id": 187, + "sid": 122, + "tid": 23, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 122, + "name": "4gfcc", + "_cssClass": "node-default", + "x": 351.35665172280244, + "y": 127.42555421866795, + "index": 122, + "vy": -0.0012330522105253089, + "vx": 0.0003255024404983422 + }, + "target": { + "id": 23, + "name": "t1bztl", + "_cssClass": "node-default", + "x": 321.8446808951692, + "y": 104.16535338094326, + "index": 23, + "vy": -0.0002661625450488337, + "vx": 0.0005380718866437213 + }, + "index": 186 + }, + { + "id": 188, + "sid": 123, + "tid": 1, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 123, + "name": "pymhas", + "_cssClass": "node-default", + "x": 334.1828999031232, + "y": 169.9207795449143, + "index": 123, + "vy": -0.0006044267193045355, + "vx": -0.0006162021511709476 + }, + "target": { + "id": 1, + "name": "h5kcti", + "_cssClass": "node-default", + "x": 324.69261359002604, + "y": 143.09245078600944, + "index": 1, + "vy": 0.00026069014262276787, + "vx": -0.0014271999617400638 + }, + "index": 187 + }, + { + "id": 189, + "sid": 123, + "tid": 7, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 123, + "name": "pymhas", + "_cssClass": "node-default", + "x": 334.1828999031232, + "y": 169.9207795449143, + "index": 123, + "vy": -0.0006044267193045355, + "vx": -0.0006162021511709476 + }, + "target": { + "id": 7, + "name": "y8mlsf", + "_cssClass": "node-default", + "x": 358.08549555229735, + "y": 186.5025401308263, + "index": 7, + "vy": -0.00028203682173126256, + "vx": -0.0003959854210866148 + }, + "index": 188 + }, + { + "id": 190, + "sid": 124, + "tid": 39, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 124, + "name": "vd7a0i", + "_cssClass": "node-default", + "x": 383.84824846133034, + "y": 169.4013382026788, + "index": 124, + "vy": 0.0002595848450843291, + "vx": -0.0003979095581848599 + }, + "target": { + "id": 39, + "name": "ay8hte", + "_cssClass": "node-default", + "x": 418.9221043612044, + "y": 131.9147807937393, + "index": 39, + "vy": -0.0016490563440478545, + "vx": 0.0003953293187439443 + }, + "index": 189 + }, + { + "id": 191, + "sid": 124, + "tid": 127, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 124, + "name": "vd7a0i", + "_cssClass": "node-default", + "x": 383.84824846133034, + "y": 169.4013382026788, + "index": 124, + "vy": 0.0002595848450843291, + "vx": -0.0003979095581848599 + }, + "target": { + "id": 127, + "name": "6kg11", + "_cssClass": "node-default", + "x": 418.7606291087565, + "y": 150.6557891761223, + "index": 127, + "vy": -0.0009138465961746308, + "vx": 0.0007356342537692401 + }, + "index": 190 + }, + { + "id": 192, + "sid": 125, + "tid": 111, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 125, + "name": "elt442j", + "_cssClass": "node-default", + "x": 467.6071824039861, + "y": 77.56598748640742, + "index": 125, + "vy": 0.00023013866063458023, + "vx": -0.0006436037468483931 + }, + "target": { + "id": 111, + "name": "i38fp2", + "_cssClass": "node-default", + "x": 430.8158684900311, + "y": 42.59825198035904, + "index": 111, + "vy": 0.00013202903917029153, + "vx": -0.0007238981075793837 + }, + "index": 191 + }, + { + "id": 193, + "sid": 125, + "tid": 113, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 125, + "name": "elt442j", + "_cssClass": "node-default", + "x": 467.6071824039861, + "y": 77.56598748640742, + "index": 125, + "vy": 0.00023013866063458023, + "vx": -0.0006436037468483931 + }, + "target": { + "id": 113, + "name": "n449wi", + "_cssClass": "node-default", + "x": 469.7399012130191, + "y": 129.5223138302524, + "index": 113, + "vy": 0.0005311173990175625, + "vx": -0.00006069342199331831 + }, + "index": 192 + }, + { + "id": 194, + "sid": 126, + "tid": 40, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 126, + "name": "o0wl79", + "_cssClass": "node-default", + "x": 402.7910296551747, + "y": 151.2388104697141, + "index": 126, + "vy": -0.0005243527724045418, + "vx": 0.0023035350941074876 + }, + "target": { + "id": 40, + "name": "sqvpw9", + "_cssClass": "node-default", + "x": 366.5962091417913, + "y": 120.50301481262845, + "index": 40, + "vy": 0.0011065427207375342, + "vx": 0.0014132258392817927 + }, + "index": 193 + }, + { + "id": 195, + "sid": 127, + "tid": 97, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 127, + "name": "6kg11", + "_cssClass": "node-default", + "x": 418.7606291087565, + "y": 150.6557891761223, + "index": 127, + "vy": -0.0009138465961746308, + "vx": 0.0007356342537692401 + }, + "target": { + "id": 97, + "name": "f71bad", + "_cssClass": "node-default", + "x": 415.4867143165565, + "y": 188.47730629377153, + "index": 97, + "vy": -0.0007678347407443995, + "vx": -0.0009779384407759915 + }, + "index": 194 + }, + { + "id": 196, + "sid": 127, + "tid": 67, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 127, + "name": "6kg11", + "_cssClass": "node-default", + "x": 418.7606291087565, + "y": 150.6557891761223, + "index": 127, + "vy": -0.0009138465961746308, + "vx": 0.0007356342537692401 + }, + "target": { + "id": 67, + "name": "b6guzw", + "_cssClass": "node-default", + "x": 395.49272484733274, + "y": 75.29769227611484, + "index": 67, + "vy": 0.0006425768525723398, + "vx": -0.0006753486194254999 + }, + "index": 195 + }, + { + "id": 197, + "sid": 128, + "tid": 121, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 128, + "name": "s84wi6", + "_cssClass": "node-default", + "x": 345.4700778894336, + "y": 165.02255347209484, + "index": 128, + "vy": 0.00030302430613308827, + "vx": -0.0005485776723737187 + }, + "target": { + "id": 121, + "name": "bs3ne", + "_cssClass": "node-default", + "x": 371.0641455910165, + "y": 183.92101002226804, + "index": 121, + "vy": 0.0004917506738684137, + "vx": -0.0001243500714726591 + }, + "index": 196 + }, + { + "id": 198, + "sid": 129, + "tid": 122, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 129, + "name": "7pysu4", + "_cssClass": "node-default", + "x": 400.3125970462809, + "y": 178.10910880170385, + "index": 129, + "vy": -0.0002361055842115393, + "vx": -0.0025354340897428998 + }, + "target": { + "id": 122, + "name": "4gfcc", + "_cssClass": "node-default", + "x": 351.35665172280244, + "y": 127.42555421866795, + "index": 122, + "vy": -0.0012330522105253089, + "vx": 0.0003255024404983422 + }, + "index": 197 + }, + { + "id": 199, + "sid": 129, + "tid": 124, + "_color": "rgba(90,90,90,.5)", + "source": { + "id": 129, + "name": "7pysu4", + "_cssClass": "node-default", + "x": 400.3125970462809, + "y": 178.10910880170385, + "index": 129, + "vy": -0.0002361055842115393, + "vx": -0.0025354340897428998 + }, + "target": { + "id": 124, + "name": "vd7a0i", + "_cssClass": "node-default", + "x": 383.84824846133034, + "y": 169.4013382026788, + "index": 124, + "vy": 0.0002595848450843291, + "vx": -0.0003979095581848599 + }, + "index": 198 + } +] \ No newline at end of file diff --git a/src/pages/settings/index/index.vue b/src/pages/settings/index/index.vue index 86db67b..1e4076b 100644 --- a/src/pages/settings/index/index.vue +++ b/src/pages/settings/index/index.vue @@ -1544,7 +1544,7 @@ background-color: rgba(255, 255, 255, 0.9); backdrop-filter: blur(4px); .border-change { - border-radius: 20px !important; + border-radius: 15px !important; } .search-box { width: 332px; @@ -1552,12 +1552,15 @@ position: fixed; left: calc(50% - 166px); top: 50px; - background: rgba(255, 255, 255, 0.8); border: 2px solid var(--colorCard); box-sizing: border-box; backdrop-filter: blur(4px); border-radius: 40px; + + .search-res { + background-color: rgba(255,255,255,.5); + } .search-input { font-size: 14px; .el-input--mini .el-input__inner { @@ -1585,6 +1588,30 @@ transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); width: 100%; font-weight: bold; + + &::-webkit-input-placeholder { /* WebKit browsers */ + color: #828282; + font-weight: normal; + font-size: 14px; + } + &:-moz-placeholder { /* Mozilla Firefox 4 to 18 */ + color: #828282; + font-weight: normal; + font-size: 14px; + } + &::-moz-placeholder { /* Mozilla Firefox 19+ */ + color: #828282; + font-weight: normal; + font-size: 14px; + } + &:-ms-input-placeholder { /* Internet Explorer 10+ */ + color: #828282; + font-weight: normal; + font-size: 14px; + + } + + } .el-input__suffix { display: flex; @@ -1648,6 +1675,12 @@ justify-content: center; align-items: center; cursor: pointer; + border: 2px solid #F2F2F7; + + &:hover { + border: 2px solid #4E94FF; + background: #F2F2F7; + } .child-info { display: flex; @@ -1659,7 +1692,7 @@ img { width: 64px; margin: 0 auto; - margin-top: 65px; + margin-top: 61px; height: 50px; } .welcome-title { @@ -2589,8 +2622,6 @@ background: #fbfaff; padding: 0; } -} -.del-account-message-box { } </style> diff --git a/src/pages/settings/views/NetSettings.vue b/src/pages/settings/views/NetSettings.vue index 1aa1240..5d283e1 100644 --- a/src/pages/settings/views/NetSettings.vue +++ b/src/pages/settings/views/NetSettings.vue @@ -79,7 +79,7 @@ </div> </div> </div> - <div class="wifi-detail" v-if="activePage == 1 && inWifiDetail"> + <div class="wifi-detail" v-if="activePage == 1 && inWifiDetail" ref="ipvHolder"> <div class="title">鏃犵嚎缃戠粶</div> <div class="btns"> <div class="cancel">鍒犻櫎</div> @@ -91,7 +91,6 @@ <el-form :model="wifiForm" - :rules="wifiFormRules" ref="wifiForm" class="join-form" > @@ -119,12 +118,14 @@ <switchBar :barName="`楂樼骇璁剧疆`" - @switchChange="highClassSetting" :value="isHighClass" ></switchBar> - <div class="general-box"> - <div class="in-title">IPV4</div> + <div class="general-box fold" :class="{'hidden':IPV4_hid}" > + <div class="in-title">IPV4 + <span class="icon iconfont icon-fold" + @click="toggleFold('IPV4_hid')"></span> + </div> <el-form :model="ipv4Form" :rules="ipv4FormRules" ref="ipv4Form"> <el-form-item> @@ -177,10 +178,13 @@ </el-form> </div> - <div class="general-box"> - <div class="in-title">IPV6</div> + <div class="general-box fold" :class="{'hidden':IPV6_hid}" ref="ipv6Holder"> + <div class="in-title">IPV6 + <span class="icon iconfont icon-fold" + @click="toggleFold('IPV6_hid')"></span> + </div> - <el-form :model="ipv6Form" :rules="ipv6FormRules" ref="ipv4Form"> + <el-form :model="ipv6Form" :rules="ipv6FormRules" ref="ipv6Form"> <el-form-item> <div class="p-title">鏂规硶</div> <el-select v-model="value" placeholder="璇烽�夋嫨" size="small"> @@ -414,6 +418,8 @@ }, ], value: "", + IPV4_hid: false, + IPV6_hid: false }; }, components: { @@ -489,10 +495,15 @@ }); }, openRight(i) { - this.activePage = i; + if (i == 0) { + this.ruleForm.deviceName = ""; + this.ruleForm.port = ""; + this.getCurServer() + } if (i == 1) { this.inWifiDetail = false; } + this.activePage = i; }, saveWire(ifname) { let data = { @@ -549,6 +560,17 @@ this.openWireDetail(item); }); }, + toggleFold(tog) { + const demo = this.$refs.ipvHolder + if(!(this.IPV4_hid&&!this.IPV6_hid)){ + setTimeout(() => { + demo.scrollIntoView({block: "end", inline: "nearest",behavior: 'smooth'}) + }, 300); + } + this[tog] = !this[tog] + + + } }, computed: { showStatus() { @@ -814,11 +836,30 @@ .wifi-detail { max-width: 600px; margin: 0 auto; + transition: all 0.3s linear 0s; .general-box { + overflow: hidden; + transition: all 0.3s linear 0s; background: #f2f2f7; border-radius: 8px; padding-bottom: 10px; margin-bottom: 20px; + &.fold { + height: 342px; + .icon-fold { + display: inline-block; + font-size: 14px; + margin-left: 360px; + transition: all 0.3s linear 0s; + cursor: pointer; + } + } + &.hidden { + height: 34px; + .icon-fold { + transform: rotate(180deg); + } + } .el-form-item { margin-bottom: 0px; } @@ -879,6 +920,7 @@ line-height: 48px; } .ad { + margin-top: 10px; height: 32px; /* margin: 4px 0px 4px 5px; */ /* border-radius: 5px; */ diff --git a/src/pages/settings/views/clusterManagement.vue b/src/pages/settings/views/clusterManagement.vue index 1c396a2..970ca94 100644 --- a/src/pages/settings/views/clusterManagement.vue +++ b/src/pages/settings/views/clusterManagement.vue @@ -2,7 +2,8 @@ <div class="all"> <!-- --> <div class="cluster-guanli" v-if="showCurCluster && isHasColony"> - <cloud-node :nodes="innerNodes"></cloud-node> + <!-- <cloud-node :nodes="innerNodes"></cloud-node> --> + <net-node :innerNodes="innerNodes"></net-node> <div class="cls-bar">瑙嗛鍒嗘瀽闆嗙兢绠$悊</div> @@ -222,7 +223,8 @@ updateClusterName, joinCluster, } from "@/api/clusterManage"; -import cloudNode from "../components/CloudNode"; +// import cloudNode from "../components/CloudNode"; +import NetNode from '../components/NetNode' import ipInput from "../components/IPInput"; import { isIPv4 } from "@/scripts/validate"; @@ -296,8 +298,9 @@ }; }, components: { - cloudNode, - ipInput, + // cloudNode, + NetNode, + ipInput }, mounted() { this.findCluster(); @@ -773,8 +776,6 @@ .el-form-item__label-wrap > .el-form-item__label:before { display: none; - } - .create-new { } .el-form-item__content { diff --git a/src/pages/settings/views/deviceInfo.vue b/src/pages/settings/views/deviceInfo.vue index 24a2499..1514332 100644 --- a/src/pages/settings/views/deviceInfo.vue +++ b/src/pages/settings/views/deviceInfo.vue @@ -8,43 +8,43 @@ <span class="general-info">璁惧淇℃伅</span> </div> <div class=" info-bar"> - <span class="name">璁惧ID</span> + <span class="name">璁惧ID锛�</span> <span class="desc">{{ deviceInfo.server_id }}</span> </div> <div class=" info-bar"> - <span class="name">璁惧鍨嬪彿</span> + <span class="name">璁惧鍨嬪彿锛�</span> <span class="desc">{{ deviceInfo.deviceModel }}</span> </div> - <div class=" info-bar"> - <span class="name">璁惧绫诲瀷</span> + <div class="info-bar"> + <span class="name">璁惧绫诲瀷锛�</span> <span class="desc">{{ deviceInfo.deviceDesc }}</span> </div> <div class=" info-bar"> - <span class="name">閫氶亾涓暟</span> + <span class="name">閫氶亾涓暟锛�</span> <span class="desc">{{ deviceInfo.channelCount }}</span> </div> <div class=" info-bar"> - <span class="name">涓绘帶鐗堟湰</span> + <span class="name">涓绘帶鐗堟湰锛�</span> <span class="desc">{{ deviceInfo.masterVersion }}</span> </div> <div class=" info-bar"> - <span class="name">web鐗堟湰</span> + <span class="name">web鐗堟湰锛�</span> <span class="desc">{{ deviceInfo.webVersion }}</span> </div> <div class=" info-bar"> - <span class="name">纭洏淇℃伅</span> + <span class="name">纭洏淇℃伅锛�</span> <span class="desc">{{ deviceInfo.disks }}</span> </div> <div class=" info-bar"> - <span class="name">CPU</span> + <span class="name">CPU锛�</span> <span class="desc">{{ deviceInfo.cpu }}</span> </div> <div class=" info-bar"> - <span class="name">鍐呭瓨</span> + <span class="name">鍐呭瓨锛�</span> <span class="desc">{{ deviceInfo.memory }}</span> </div> <div class=" info-bar"> - <span class="name">杩愯鏃堕棿</span> + <span class="name">杩愯鏃堕棿锛�</span> <span class="desc">{{ deviceInfo.runningTime }}</span> </div> </div> @@ -215,273 +215,14 @@ overflow: auto; box-sizing: border-box; padding: 10px 15px !important; - /* .el-form-item.is-required:not(.is-no-asterisk) - > .el-form-item__label:before, - .el-form-item.is-required:not(.is-no-asterisk) - .el-form-item__label-wrap - > .el-form-item__label:before { - display: none; - } - .el-select { - width: 100%; - } - .el-form-item { - margin-bottom: 10px; - height: 50px; - background: #f8f8f8; - padding: 4px 20px; - -webkit-box-sizing: border-box; - box-sizing: border-box; - border-radius: 10px; - .el-form-item__label { - text-align: left; - line-height: 42px; - } - } - .el-form-item__content { - line-height: 40px; - position: relative; - font-size: 14px; - } - .ip-input-container { - max-width: none !important; - } - .lang { - position: relative; - height: calc(83% - 0px); - .title { - height: 35px; - line-height: 35px; - font-size: 16px; - text-align: left; - margin-bottom: 5px; - } - .bar-group { - overflow: auto; - height: 100%; - } - .bar { - height: 44px; - background-color: #f8f8f8; - border-radius: 10px; - line-height: 44px; - box-sizing: border-box; - padding: 0 30px 0 20px; - display: flex; - justify-content: space-between; - margin-bottom: 10px; - .left-part { - .icon { - color: rgba(191, 191, 191, 1); - font-size: 16px; - margin-right: 5px; - } - } - .name { - font-size: 15px; - } - .btns { - width: 50px; - display: flex; - justify-content: space-between; - color: rgba(191, 191, 191, 1); - .el-icon-video-pause { - cursor: pointer; - font-size: 23px; - vertical-align: middle; - color: #409eff; - } - .el-icon-video-play { - cursor: pointer; - font-size: 23px; - vertical-align: middle; - color: #409eff; - } - } - .desc { - font-size: 14px; - color: rgba(134, 134, 134, 1); - } - } - .bar:hover { - background-color: rgba(233, 233, 233, 1); - } - .add-group { - margin: 10px auto; - width: fit-content; - } - .upload-demo { - -webkit-transition: all 0.3s; - transition: all 0.5s; - position: absolute; - bottom: -40px; + } - left: calc(50% - 145px); - .el-upload-dragger { - width: 290px; - } - } - .add-btn { - height: 40px; - line-height: 40px; - margin: 0 auto; - cursor: pointer; - width: fit-content; - .icon { - font-size: 32px; - color: rgba(61, 104, 225, 1); - } - } - .min-dur { - box-sizing: border-box; - padding: 0 20px; - background-color: rgba(248, 248, 248, 1); - height: 105px; - margin-bottom: 20px; - border-radius: 15px; - .title { - height: 45px; - line-height: 45px; + .info-bar { + border-radius: 8px; + } - text-align: left; - box-sizing: border-box; - padding: 0 6px; - font-size: 14px; - } - } - - .min-dur:hover { - background-color: rgba(233, 233, 233, 1); - } - - .entity { - display: flex; - align-items: center; - height: 30px; - - .sec { - min-width: 30px; - line-height: 80px; - margin-right: 10px; - color: rgba(120, 120, 120, 1); - font-size: 14px; - } - .block { - flex: 1; - margin: 0 20px 0 6px; - } - .el-input-number--small { - width: 100px; - } - .el-input-number.is-controls-right .el-input__inner { - padding-left: 16px; - } - #cut_min_duration { - .el-slider__bar { - background-color: #3d68e1; - } - .el-slider__button-wrapper .el-tooltip { - width: 18px; - height: 18px; - border: 4px solid #3d68e1; - box-sizing: border-box; - } - } - - #cut_max_duration { - .el-slider__bar { - background-color: #ff9e6e; - } - .el-slider__button-wrapper .el-tooltip { - width: 18px; - height: 18px; - border: 4px solid #ff9e6e; - box-sizing: border-box; - } - } - } - } - .save-btn { - background-color: #3d68e1; - width: 240px; - height: 40px; - margin: 0 auto; - border-radius: 10px; - color: #fff; - line-height: 40px; - cursor: pointer; - font-size: 14px; - margin-top: 20px; - } - .self-setting { - .top-title { - font-size: 16px; - height: 30px; - line-height: 30px; - margin-bottom: 10px; - } - .icon-bar:hover { - background-color: rgba(233, 233, 233, 1); - } - .icon-bar { - cursor: pointer; - background-color: rgba(248, 248, 248, 1); - box-sizing: border-box; - padding: 15px 25px; - border-radius: 12px; - margin-bottom: 12px; - .bar-title { - line-height: 20px; - height: 20px; - margin-bottom: 10px; - display: flex; - justify-content: space-between; - .title { - font-size: 14px; - } - } - .entity { - display: flex; - .entity-img { - background-color: rgba(248, 248, 248, 1); - width: 50px; - height: 50px; - margin-right: 10px; - img { - width: 50px; - height: 50px; - } - } - } - } - .bg-bar { - background-color: rgba(248, 248, 248, 1); - box-sizing: border-box; - padding: 15px 25px; - border-radius: 12px; - margin-bottom: 12px; - .bg-list { - display: flex; - .bg-img { - margin-right: 12px; - cursor: pointer; - // width: 120px; - height: 80px; - border: 2px solid transparent; - img { - border-radius: 5px; - height: 100%; - } - } - .bg-img:hover { - border: 2px solid yellow; - } - .bg-list-active { - border: 2px solid yellow; - } - } - } - } */ + .info-bar .name { + color: #4F4F4F; } } </style> diff --git a/src/pages/vindicate/index/App.vue b/src/pages/vindicate/index/App.vue index a8a86ce..2509b6e 100644 --- a/src/pages/vindicate/index/App.vue +++ b/src/pages/vindicate/index/App.vue @@ -20,7 +20,7 @@ <sysInfo v-if="activePage == 3" style="width: 100%" ref="view_3"></sysInfo> </div> - <div class="welcome-page" v-else ref="curPage"> + <div class="welcome-page" v-else ref="curPage" @click="showRecomand = false"> <div class="search-box" :class="showRecomand ? 'border-change' : ''" @@ -110,6 +110,7 @@ full: 0, showWelcome:true, searchText:'', + showRecomand:false }; }, created() { @@ -198,7 +199,7 @@ position: fixed; left: calc(50% - 166px); top: 50px; - background: rgba(255, 255, 255, 0.8); + opacity: 0.8; border: 2px solid #4e94ff; box-sizing: border-box; @@ -231,6 +232,29 @@ transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); width: 100%; font-weight: bold; + + &::-webkit-input-placeholder { /* WebKit browsers */ + color: #828282; + font-weight: normal; + font-size: 14px; + } + &:-moz-placeholder { /* Mozilla Firefox 4 to 18 */ + color: #828282; + font-weight: normal; + font-size: 14px; + } + &::-moz-placeholder { /* Mozilla Firefox 19+ */ + color: #828282; + font-weight: normal; + font-size: 14px; + } + &:-ms-input-placeholder { /* Internet Explorer 10+ */ + color: #828282; + font-weight: normal; + font-size: 14px; + + } + } .el-input__suffix { display: flex; @@ -253,6 +277,7 @@ .search-res { max-height: 240px; overflow: auto; + background-color: rgba(255, 255, 255, 0.5); .res-bar { height: 40px; line-height: 40px; @@ -297,6 +322,12 @@ justify-content: center; align-items: center; cursor: pointer; + border: 2px solid #F2F2F7; + + &:hover { + border: 2px solid #4E94FF; + background: #F2F2F7; + } // box-shadow: 2px 2px 4px rgb(226, 226, 226); .child-info { @@ -310,7 +341,7 @@ img { width: 64px; margin: 0 auto; - margin-top: 65px; + margin-top: 61px; height: 50px; } .welcome-title { diff --git a/src/pages/vindicate/views/sysInfo.vue b/src/pages/vindicate/views/sysInfo.vue index d9a327a..88d08e5 100644 --- a/src/pages/vindicate/views/sysInfo.vue +++ b/src/pages/vindicate/views/sysInfo.vue @@ -4,7 +4,7 @@ <div class="sys-right"> <div class="auto"> <div class="title-bg"> - <div class="title">SmartAIOS</div> + <div class="title">Smart AIOS</div> <div class="desc">Copyright 漏 璐濇�濈鎶�鏈湁闄愬叕鍙�</div> </div> <div class="bar" style="background-color: #F2F2F7;"> -- Gitblit v1.8.0