From 1db7db4bf02259e47d5d906d6b21ecc6451b0a09 Mon Sep 17 00:00:00 2001
From: zhangzengfei <zhangzengfei@smartai.com>
Date: 星期一, 23 十月 2023 15:26:46 +0800
Subject: [PATCH] 添加集群手动选主节点, 无线网络显示ip
---
src/pages/settings/views/clusterManagement.vue | 41
src/pages/settings/components/netNodeData.js | 13212 ++++++++++++++++++++++++++++----------------------------
src/api/clusterManage.ts | 44
src/pages/settings/components/NetNode.vue | 427
src/pages/settings/views/NetSettings.vue | 66
5 files changed, 6,938 insertions(+), 6,852 deletions(-)
diff --git a/src/api/clusterManage.ts b/src/api/clusterManage.ts
index 3c5300a..755301c 100644
--- a/src/api/clusterManage.ts
+++ b/src/api/clusterManage.ts
@@ -1,5 +1,5 @@
-import request from "@/scripts/httpRequest";
-import qs from "qs";
+import request from "@/scripts/httpRequest"
+import qs from "qs"
// 鑾峰彇闅忔満瀵嗙爜
export const randomPwd = (query: any) => {
@@ -7,8 +7,8 @@
url: "/data/api-v/cluster/randomPwd",
method: "get",
params: query
- });
-};
+ })
+}
// 鍒涘缓闆嗙兢
export const createSerfCluster = (query: any) => {
@@ -17,7 +17,7 @@
method: "post",
data: query
})
-};
+}
// 鎼滅储闆嗙兢
export const search = (query: any) => {
@@ -26,7 +26,7 @@
method: "post",
data: query
})
-};
+}
// 璋僺earch鍚庯紝閫氳繃姝ゆ帴鍙h幏鍙栨煡鍒扮殑闆嗙兢鑺傜偣淇℃伅
export const getSearchNodes = (query: any) => {
@@ -34,8 +34,8 @@
url: "/data/api-v/cluster/getSearchNodes",
method: "get",
params: query
- });
-};
+ })
+}
// 鍋滄鎼滅储
export const stopSearching = (query: any) => {
@@ -44,7 +44,7 @@
method: "post",
data: query
})
-};
+}
// 鏌ヨ鏈湴闆嗙兢
export const findCluster = (query: any) => {
@@ -52,17 +52,17 @@
url: "/data/api-v/cluster/findCluster",
method: "get",
params: query
- });
-};
+ })
+}
// 淇濆瓨闆嗙兢鍚嶇О
export const updateClusterName = (query: any) => {
return request({
- url: '/data/api-v/cluster/updateClusterName',
- method: 'post',
+ url: "/data/api-v/cluster/updateClusterName",
+ method: "post",
data: qs.stringify(query)
})
-};
+}
// 鍔犲叆闆嗙兢
export const joinCluster = (query: any) => {
@@ -74,7 +74,7 @@
},
data: query
})
-};
+}
export const leave = (query: any) => {
return request({
@@ -82,15 +82,23 @@
method: "post",
data: query
})
-};
+}
+// 鑾峰彇ES闆嗙兢淇℃伅
+export const update2Master = (data: any) => {
+ return request({
+ url: "/data/api-v/cluster/update2Master",
+ method: "post",
+ data
+ })
+}
// 鑾峰彇婕傜Щip璁剧疆
export const getVrrp = () => {
return request({
url: "/vrrp",
method: "get"
})
-};
+}
// 璁剧疆婕傜Щip璁剧疆
export const setVrrp = (data: any) => {
@@ -126,4 +134,4 @@
method: "post",
data
})
-}
\ No newline at end of file
+}
diff --git a/src/pages/settings/components/NetNode.vue b/src/pages/settings/components/NetNode.vue
index c4a42cf..8f32ea6 100644
--- a/src/pages/settings/components/NetNode.vue
+++ b/src/pages/settings/components/NetNode.vue
@@ -1,84 +1,73 @@
<template>
<div class="net-node">
- <div class="vue-d3-network">
- <D3Network
- ref='net'
- :net-nodes="nodes"
- :net-links="links"
- :options="options"
- />
- </div>
+ <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-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>
+ <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 class="illustrate">
+ <div><span class="illu-server"></span> APS鏅鸿兘缁堢</div>
- <div>
+ <!-- <div>
<span class="analysis"></span> 鍒嗘瀽鐩掑瓙
- </div>
- </div>
-
+ </div> -->
+ </div>
</div>
</template>
<script>
-import D3Network from 'vue-d3-network'
-import {nodes,links} from './netNodeData'
+import D3Network from "vue-d3-network"
+import { nodes, links } from "./netNodeData"
export default {
-created () {
+ created() {
this.reset()
-},
+ },
-props:{
- innerNodes:Array
-},
+ props: {
+ innerNodes: Array
+ },
-data () {
- return {
- // settings: {
- // maxLinks: 2,
- // maxNodes: 130
- // },
+ data() {
+ return {
+ settings: {
+ maxLinks: 2,
+ maxNodes: 15
+ },
nodes,
links,
options: {
- size: {
- w: 600,
- h: 240
+ size: {
+ w: 600,
+ h: 240
},
offset: {
- x: 0,
- y: 0
+ x: 0,
+ y: 0
},
nodeSize: 18,
force: 300,
nodeLabels: true
},
- disabled:{
- zoomIn:false,
- zoomOut:false
- }
- }
-
-},
+ disabled: {
+ zoomIn: false,
+ zoomOut: false
+ }
+ }
+ },
-components: {
+ components: {
D3Network
-},
+ },
-methods: {
+ methods: {
// 鍒濆鍖�
// reset () {
// this.nodes = this.makeRandomNodes(this.settings.maxNodes)
@@ -88,194 +77,224 @@
// },
// 闅忔満鐢熸垚鑺傜偣
- // 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)
- // },
+ 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" }
+ return {
+ id: nodeId,
+ name: this.newNodeName(),
+ _cssClass: "node-default",
+ index: nodeId,
+ _labelClass: "label-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
- // },
+ //闅忔満鐢熸垚杩炵嚎
+ 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) => {
+ this.nodes = this.makeRandomNodes(this.settings.maxNodes)
+ this.links = this.makeRandomLinks(this.nodes, this.settings.maxLinks)
+
+ let linkId = 200
+ let lastId = -1
+ 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
+ this.nodes = this.addNode(item, item.online ? "server" : "offline")
+ 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, item.online ? "server" : "offline")
+ this.links = this.addLink(linkId, item.node_id, this.innerNodes[index - 1].node_id, "#4E94FF")
+ this.links = this.addLink(linkId, index, this.innerNodes[index - 1].node_id, "rgba(90,90,90,.6)")
+ linkId += 1
}
- else {
- this.nodes = this.addNode(item,"server")
- this.links = this.addLink(linkId,item.node_id,this.innerNodes[index-1].node_id,"#4E94FF")
- linkId+=1
- }
- })
+
+ lastId = index
+ })
+
+ this.links = this.addLink(linkId + 1, 0, this.innerNodes[lastId].node_id, "rgba(90,90,90,.6)")
},
-
+
// 娣诲姞鏂拌妭鐐�
- addNode(newNode,type) {
- return [...this.nodes,{
- "id": `${newNode.node_id}`,
- "name": `${newNode.nodeName}`,
- "_cssClass": `node-${type}`,
- "_labelClass": `label-${type}`,
- "x": 400,
- "y": 100
- }]
+ 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}
- }]
+ 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) {
+ if (judge && this.options.nodeSize > 25) {
this.disabled.zoomIn = true
return
- }
- if(!judge && this.options.nodeSize <11) {
+ }
+ 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
+ }
+ 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
+ x: 0,
+ y: 0
},
nodeSize: nodeSize,
force
}
- console.log( this.options);
- },
-
+ 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);
+ 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-default {
+ fill: #fff;
+ stroke: rgb(90, 90, 90);
+ stroke-width: 1px;
+ }
+
+ ::v-deep .node-server {
+ fill: #fff;
+ stroke: #4e94ff;
+ stroke-width: 2px;
+ }
+
+ ::v-deep .node-offline {
+ fill: #fff;
+ stroke: #b33030;
+ 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);
}
- ::v-deep .node-server {
- fill: #fff;
- stroke: #4E94FF;
- stroke-width: 2px;
+ &.zoom-disabled:hover {
+ color: #333;
+ cursor: not-allowed;
}
+ }
- ::v-deep .label-default {
- display: none;
+ .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: 100px;
+ 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;
}
-
- ::v-deep .label-server {
- font-weight: 700;
+ .analysis {
+ display: inline-block;
+ width: 4px;
+ height: 4px;
+ border: 2px solid #4ef4ff;
+ border-radius: 4px;
}
-
- .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
+</style>
diff --git a/src/pages/settings/components/netNodeData.js b/src/pages/settings/components/netNodeData.js
index 3bab124..de076d5 100644
--- a/src/pages/settings/components/netNodeData.js
+++ b/src/pages/settings/components/netNodeData.js
@@ -1,6808 +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"
- }
+ {
+ 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: 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
},
- {
- "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
+ target: {
+ id: 61,
+ name: "8nw06w",
+ _cssClass: "node-default",
+ x: 420.93258433898137,
+ y: 56.81810132485101,
+ index: 61,
+ vy: -0.0021445188829768216,
+ vx: 0.00015373371619042527
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 90,
+ name: "xptukg",
+ _cssClass: "node-default",
+ x: 381.7679281519114,
+ y: 110.17180373213485,
+ index: 90,
+ vy: 0.001265858047697888,
+ vx: -0.0012255173350965015
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 128,
+ name: "s84wi6",
+ _cssClass: "node-default",
+ x: 345.4700778894336,
+ y: 165.02255347209484,
+ index: 128,
+ vy: 0.00030302430613308827,
+ vx: -0.0005485776723737187
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 35,
+ name: "p2ntca",
+ _cssClass: "node-default",
+ x: 339.83329103159014,
+ y: 84.17167889646394,
+ index: 35,
+ vy: 0.0027909507327354478,
+ vx: 0.0006219240238672614
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 59,
+ name: "yhrqy",
+ _cssClass: "node-default",
+ x: 432.5580402287739,
+ y: 62.36869389088665,
+ index: 59,
+ vy: 0.0014011562797538837,
+ vx: -0.0005274949402863141
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 63,
+ name: "aw0z1k",
+ _cssClass: "node-default",
+ x: 441.36731816648586,
+ y: 96.38620688338307,
+ index: 63,
+ vy: 0.00045627521030140185,
+ vx: 0.00041039672116841025
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 64,
+ name: "0xrzbo",
+ _cssClass: "node-default",
+ x: 459.19723280369874,
+ y: 26.896325390043806,
+ index: 64,
+ vy: -0.000559596823748406,
+ vx: 0.000029107665176433904
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 42,
+ name: "russxb",
+ _cssClass: "node-default",
+ x: 386.8241736002237,
+ y: 9.287072170277991,
+ index: 42,
+ vy: -0.0008506479421310095,
+ vx: 0.0014609767407860786
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 56,
+ name: "2i7xxf",
+ _cssClass: "node-default",
+ x: 432.26476869168636,
+ y: 103.63154494542478,
+ index: 56,
+ vy: -0.0014922259447731395,
+ vx: -0.00032965128783252564
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 14,
+ name: "ll4ktv",
+ _cssClass: "node-default",
+ x: 438.7226407781981,
+ y: 160.42480450002898,
+ index: 14,
+ vy: 0.00009701617268557783,
+ vx: 0.00006174252811402955
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 6,
+ name: "1f8plb",
+ _cssClass: "node-default",
+ x: 419.3690378335888,
+ y: 100.89538003936742,
+ index: 6,
+ vy: -0.0004761935796058073,
+ vx: 0.00009557000898578836
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 33,
+ name: "xpjqd8",
+ _cssClass: "node-default",
+ x: 364.065615643236,
+ y: 78.25483748403657,
+ index: 33,
+ vy: 0.0015722616769229755,
+ vx: -0.0005926762763703718
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 19,
+ name: "brb6to",
+ _cssClass: "node-default",
+ x: 457.3591613872679,
+ y: 127.08840609683716,
+ index: 19,
+ vy: -0.0021883400230721605,
+ vx: 0.0015539098326503183
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 124,
+ name: "vd7a0i",
+ _cssClass: "node-default",
+ x: 383.84824846133034,
+ y: 169.4013382026788,
+ index: 124,
+ vy: 0.0002595848450843291,
+ vx: -0.0003979095581848599
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 50,
+ name: "ibc8r",
+ _cssClass: "node-default",
+ x: 332.0263323055659,
+ y: 65.61504321746638,
+ index: 50,
+ vy: -0.000026546641697859596,
+ vx: 0.0006373098081729345
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 35,
+ name: "p2ntca",
+ _cssClass: "node-default",
+ x: 339.83329103159014,
+ y: 84.17167889646394,
+ index: 35,
+ vy: 0.0027909507327354478,
+ vx: 0.0006219240238672614
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 45,
+ name: "vk9cvp",
+ _cssClass: "node-default",
+ x: 423.3171253838341,
+ y: 174.9140851563324,
+ index: 45,
+ vy: -0.00018419740803327474,
+ vx: 0.000834983448552739
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 119,
+ name: "zbz8m",
+ _cssClass: "node-default",
+ x: 386.3012747208951,
+ y: 156.09711303404814,
+ index: 119,
+ vy: 0.00040873039766288786,
+ vx: 0.0007659940262447019
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 86,
+ name: "wyl1t",
+ _cssClass: "node-default",
+ x: 459.43234075702264,
+ y: 59.54227682675203,
+ index: 86,
+ vy: -0.0012005128249364646,
+ vx: -0.0005761539614976196
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 80,
+ name: "23vky",
+ _cssClass: "node-default",
+ x: 450.86433323424893,
+ y: 107.243245609569,
+ index: 80,
+ vy: 0.00020337951000286682,
+ vx: 0.0008451919003263546
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 24,
+ name: "1gly0b",
+ _cssClass: "node-default",
+ x: 476.50230982431583,
+ y: 118.96601371169992,
+ index: 24,
+ vy: -0.00031233926444791004,
+ vx: 0.00003798945404152481
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 123,
+ name: "pymhas",
+ _cssClass: "node-default",
+ x: 334.1828999031232,
+ y: 169.9207795449143,
+ index: 123,
+ vy: -0.0006044267193045355,
+ vx: -0.0006162021511709476
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 44,
+ name: "xv51pi",
+ _cssClass: "node-default",
+ x: 403.6636290633953,
+ y: 105.05217025407296,
+ index: 44,
+ vy: 0.0016320852538551584,
+ vx: 0.00019719991528111244
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 113,
+ name: "n449wi",
+ _cssClass: "node-default",
+ x: 469.7399012130191,
+ y: 129.5223138302524,
+ index: 113,
+ vy: 0.0005311173990175625,
+ vx: -0.00006069342199331831
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 126,
+ name: "o0wl79",
+ _cssClass: "node-default",
+ x: 402.7910296551747,
+ y: 151.2388104697141,
+ index: 126,
+ vy: -0.0005243527724045418,
+ vx: 0.0023035350941074876
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 79,
+ name: "9m3cp8",
+ _cssClass: "node-default",
+ x: 436.8841291842744,
+ y: 116.81853904111713,
+ index: 79,
+ vy: -0.000981975739541365,
+ vx: 0.00013639146411162495
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 39,
+ name: "ay8hte",
+ _cssClass: "node-default",
+ x: 418.9221043612044,
+ y: 131.9147807937393,
+ index: 39,
+ vy: -0.0016490563440478545,
+ vx: 0.0003953293187439443
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 60,
+ name: "h31uwq",
+ _cssClass: "node-default",
+ x: 436.1368378458145,
+ y: 147.20217446303099,
+ index: 60,
+ vy: -0.000586207030619241,
+ vx: 0.00005713936640884803
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 68,
+ name: "mreqlo",
+ _cssClass: "node-default",
+ x: 352.50146006068564,
+ y: 78.22049677624157,
+ index: 68,
+ vy: -0.002644912358949254,
+ vx: 0.00031686184886548484
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 26,
+ name: "y2nd8g",
+ _cssClass: "node-default",
+ x: 471.3402484451996,
+ y: 141.08475179347056,
+ index: 26,
+ vy: 0.00011256728106117254,
+ vx: 0.0007402418637824623
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 66,
+ name: "p6dodm",
+ _cssClass: "node-default",
+ x: 455.2899440030924,
+ y: 44.70411800414369,
+ index: 66,
+ vy: -0.00028572453273449275,
+ vx: 0.0005491524593119674
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 26,
+ name: "y2nd8g",
+ _cssClass: "node-default",
+ x: 471.3402484451996,
+ y: 141.08475179347056,
+ index: 26,
+ vy: 0.00011256728106117254,
+ vx: 0.0007402418637824623
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 115,
+ name: "x48fwb",
+ _cssClass: "node-default",
+ x: 473.3490789955173,
+ y: 50.05604632662714,
+ index: 115,
+ vy: -0.0000016926091072967967,
+ vx: 0.0010049349078720233
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 110,
+ name: "cf59xr",
+ _cssClass: "node-default",
+ x: 437.8761787943288,
+ y: 82.08800003843403,
+ index: 110,
+ vy: 0.00005939994533229026,
+ vx: 0.0008087911250739717
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 56,
+ name: "2i7xxf",
+ _cssClass: "node-default",
+ x: 432.26476869168636,
+ y: 103.63154494542478,
+ index: 56,
+ vy: -0.0014922259447731395,
+ vx: -0.00032965128783252564
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 16,
+ name: "s2hn4c",
+ _cssClass: "node-default",
+ x: 494.9111466825618,
+ y: 129.82091612477453,
+ index: 16,
+ vy: -0.00009148179241610281,
+ vx: 0.0012916874033135504
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 115,
+ name: "x48fwb",
+ _cssClass: "node-default",
+ x: 473.3490789955173,
+ y: 50.05604632662714,
+ index: 115,
+ vy: -0.0000016926091072967967,
+ vx: 0.0010049349078720233
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 4,
+ name: "ssb7vc",
+ _cssClass: "node-default",
+ x: 472.67738529913123,
+ y: 105.37737605085815,
+ index: 4,
+ vy: -0.00025867755193498666,
+ vx: -0.0003002416371407169
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 74,
+ name: "1n3bmj",
+ _cssClass: "node-default",
+ x: 502.6054581784044,
+ y: 75.80234949264454,
+ index: 74,
+ vy: -0.0012962258868852016,
+ vx: -0.0007533886402494137
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 122,
+ name: "4gfcc",
+ _cssClass: "node-default",
+ x: 351.35665172280244,
+ y: 127.42555421866795,
+ index: 122,
+ vy: -0.0012330522105253089,
+ vx: 0.0003255024404983422
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 40,
+ name: "sqvpw9",
+ _cssClass: "node-default",
+ x: 366.5962091417913,
+ y: 120.50301481262845,
+ index: 40,
+ vy: 0.0011065427207375342,
+ vx: 0.0014132258392817927
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 122,
+ name: "4gfcc",
+ _cssClass: "node-default",
+ x: 351.35665172280244,
+ y: 127.42555421866795,
+ index: 122,
+ vy: -0.0012330522105253089,
+ vx: 0.0003255024404983422
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 66,
+ name: "p6dodm",
+ _cssClass: "node-default",
+ x: 455.2899440030924,
+ y: 44.70411800414369,
+ index: 66,
+ vy: -0.00028572453273449275,
+ vx: 0.0005491524593119674
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 71,
+ name: "or1dmn",
+ _cssClass: "node-default",
+ x: 404.1488627414665,
+ y: 32.47629808338597,
+ index: 71,
+ vy: -0.0006540414903631997,
+ vx: -0.00094750751491176
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 101,
+ name: "pvk3e",
+ _cssClass: "node-default",
+ x: 326.37908742614735,
+ y: 84.53019823462743,
+ index: 101,
+ vy: 0.00017741969277072938,
+ vx: -0.0010132050331023116
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 99,
+ name: "5fj0wg",
+ _cssClass: "node-default",
+ x: 457.94478144152043,
+ y: 90.26579902966293,
+ index: 99,
+ vy: 0.000714789380758797,
+ vx: 0.00005732300294071081
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 101,
+ name: "pvk3e",
+ _cssClass: "node-default",
+ x: 326.37908742614735,
+ y: 84.53019823462743,
+ index: 101,
+ vy: 0.00017741969277072938,
+ vx: -0.0010132050331023116
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 128,
+ name: "s84wi6",
+ _cssClass: "node-default",
+ x: 345.4700778894336,
+ y: 165.02255347209484,
+ index: 128,
+ vy: 0.00030302430613308827,
+ vx: -0.0005485776723737187
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 106,
+ name: "3s7lhm",
+ _cssClass: "node-default",
+ x: 383.51395771871216,
+ y: 22.71761336266484,
+ index: 106,
+ vy: -0.0011827610222116917,
+ vx: -0.0006026911066586968
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 111,
+ name: "i38fp2",
+ _cssClass: "node-default",
+ x: 430.8158684900311,
+ y: 42.59825198035904,
+ index: 111,
+ vy: 0.00013202903917029153,
+ vx: -0.0007238981075793837
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 116,
+ name: "3b20r9",
+ _cssClass: "node-default",
+ x: 400.4071919097737,
+ y: 164.70791776589687,
+ index: 116,
+ vy: -0.0010493563825812416,
+ vx: 0.0013756943144831203
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 118,
+ name: "6b6pdb",
+ _cssClass: "node-default",
+ x: 399.91601740471026,
+ y: 43.976426041301664,
+ index: 118,
+ vy: -0.00016200057665345275,
+ vx: 0.002672394527024542
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 52,
+ name: "ehzeu9",
+ _cssClass: "node-default",
+ x: 446.11979707003525,
+ y: 70.2778090953105,
+ index: 52,
+ vy: -0.00005623283043909057,
+ vx: 0.0005720538248760969
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 18,
+ name: "ztpf7",
+ _cssClass: "node-default",
+ x: 419.4791784573061,
+ y: 118.32398142271929,
+ index: 18,
+ vy: -0.0007819185029179276,
+ vx: -0.0005113027003699465
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 47,
+ name: "4uhxms",
+ _cssClass: "node-default",
+ x: 447.22992390718656,
+ y: 60.821700455399736,
+ index: 47,
+ vy: -0.0005119168833543581,
+ vx: -0.0009814853288081034
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 65,
+ name: "5wyl65",
+ _cssClass: "node-default",
+ x: 377.6095411853096,
+ y: 96.81220616934351,
+ index: 65,
+ vy: 0.003230079185842613,
+ vx: -0.006125089265439184
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 48,
+ name: "6afq0t",
+ _cssClass: "node-default",
+ x: 341.25085799536197,
+ y: 119.86120126045859,
+ index: 48,
+ vy: 0.0013711913894302009,
+ vx: -0.001725790931595739
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 94,
+ name: "1y9qv",
+ _cssClass: "node-default",
+ x: 489.26667993724465,
+ y: 81.80041035697003,
+ index: 94,
+ vy: -0.00018473408587352775,
+ vx: -0.0009940591800940684
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 4,
+ name: "ssb7vc",
+ _cssClass: "node-default",
+ x: 472.67738529913123,
+ y: 105.37737605085815,
+ index: 4,
+ vy: -0.00025867755193498666,
+ vx: -0.0003002416371407169
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 99,
+ name: "5fj0wg",
+ _cssClass: "node-default",
+ x: 457.94478144152043,
+ y: 90.26579902966293,
+ index: 99,
+ vy: 0.000714789380758797,
+ vx: 0.00005732300294071081
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 108,
+ name: "6438nh",
+ _cssClass: "node-default",
+ x: 359.4319377220432,
+ y: 93.25756899913982,
+ index: 108,
+ vy: 0.000603481694535167,
+ vx: -0.000053881522856263203
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 4,
+ name: "ssb7vc",
+ _cssClass: "node-default",
+ x: 472.67738529913123,
+ y: 105.37737605085815,
+ index: 4,
+ vy: -0.00025867755193498666,
+ vx: -0.0003002416371407169
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 56,
+ name: "2i7xxf",
+ _cssClass: "node-default",
+ x: 432.26476869168636,
+ y: 103.63154494542478,
+ index: 56,
+ vy: -0.0014922259447731395,
+ vx: -0.00032965128783252564
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 51,
+ name: "b8sl9g",
+ _cssClass: "node-default",
+ x: 386.47191810177776,
+ y: 122.43365121912518,
+ index: 51,
+ vy: 0.0015885805390337474,
+ vx: 0.0018828203815383837
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 114,
+ name: "8tnwwa",
+ _cssClass: "node-default",
+ x: 364.72038529101707,
+ y: 38.971962568504026,
+ index: 114,
+ vy: 0.0026126151929759243,
+ vx: 0.001681533499333042
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 71,
+ name: "or1dmn",
+ _cssClass: "node-default",
+ x: 404.1488627414665,
+ y: 32.47629808338597,
+ index: 71,
+ vy: -0.0006540414903631997,
+ vx: -0.00094750751491176
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 67,
+ name: "b6guzw",
+ _cssClass: "node-default",
+ x: 395.49272484733274,
+ y: 75.29769227611484,
+ index: 67,
+ vy: 0.0006425768525723398,
+ vx: -0.0006753486194254999
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 100,
+ name: "5gbc6s",
+ _cssClass: "node-default",
+ x: 428.1014889800924,
+ y: 28.67914111403817,
+ index: 100,
+ vy: 0.0008355041716365296,
+ vx: -0.0006370436928820524
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 67,
+ name: "b6guzw",
+ _cssClass: "node-default",
+ x: 395.49272484733274,
+ y: 75.29769227611484,
+ index: 67,
+ vy: 0.0006425768525723398,
+ vx: -0.0006753486194254999
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 20,
+ name: "8f4y2",
+ _cssClass: "node-default",
+ x: 408.12211516621596,
+ y: 54.690970519310305,
+ index: 20,
+ vy: 0.003604347438191066,
+ vx: -0.0021813439378349448
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 47,
+ name: "4uhxms",
+ _cssClass: "node-default",
+ x: 447.22992390718656,
+ y: 60.821700455399736,
+ index: 47,
+ vy: -0.0005119168833543581,
+ vx: -0.0009814853288081034
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 83,
+ name: "vjrdcg",
+ _cssClass: "node-default",
+ x: 399.1257105976218,
+ y: 11.054317729495068,
+ index: 83,
+ vy: 0.0011986399194118492,
+ vx: 0.0009509273857036342
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 33,
+ name: "xpjqd8",
+ _cssClass: "node-default",
+ x: 364.065615643236,
+ y: 78.25483748403657,
+ index: 33,
+ vy: 0.0015722616769229755,
+ vx: -0.0005926762763703718
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 78,
+ name: "sb4qpe",
+ _cssClass: "node-default",
+ x: 312.05124837616717,
+ y: 76.10720488453013,
+ index: 78,
+ vy: -0.0008002779750596909,
+ vx: -0.00025546217247657087
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 11,
+ name: "jxxzb",
+ _cssClass: "node-default",
+ x: 482.128924244494,
+ y: 146.21276878686498,
+ index: 11,
+ vy: 0.0007980401904977962,
+ vx: 0.0004424984014921577
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 108,
+ name: "6438nh",
+ _cssClass: "node-default",
+ x: 359.4319377220432,
+ y: 93.25756899913982,
+ index: 108,
+ vy: 0.000603481694535167,
+ vx: -0.000053881522856263203
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 61,
+ name: "8nw06w",
+ _cssClass: "node-default",
+ x: 420.93258433898137,
+ y: 56.81810132485101,
+ index: 61,
+ vy: -0.0021445188829768216,
+ vx: 0.00015373371619042527
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 53,
+ name: "y2hmhc",
+ _cssClass: "node-default",
+ x: 363.7305210730842,
+ y: 166.05936104778976,
+ index: 53,
+ vy: 0.000149637829782774,
+ vx: 0.0002489504546362025
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 79,
+ name: "9m3cp8",
+ _cssClass: "node-default",
+ x: 436.8841291842744,
+ y: 116.81853904111713,
+ index: 79,
+ vy: -0.000981975739541365,
+ vx: 0.00013639146411162495
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 75,
+ name: "pruhz",
+ _cssClass: "node-default",
+ x: 343.5251914265343,
+ y: 69.57334171727193,
+ index: 75,
+ vy: 0.000590097517322836,
+ vx: -0.0014956145166388837
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 67,
+ name: "b6guzw",
+ _cssClass: "node-default",
+ x: 395.49272484733274,
+ y: 75.29769227611484,
+ index: 67,
+ vy: 0.0006425768525723398,
+ vx: -0.0006753486194254999
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 34,
+ name: "c4t0db",
+ _cssClass: "node-default",
+ x: 407.71593835565795,
+ y: 89.3581174996468,
+ index: 34,
+ vy: -0.0006378202227727299,
+ vx: 0.0011318414892146121
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 39,
+ name: "ay8hte",
+ _cssClass: "node-default",
+ x: 418.9221043612044,
+ y: 131.9147807937393,
+ index: 39,
+ vy: -0.0016490563440478545,
+ vx: 0.0003953293187439443
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 107,
+ name: "9cawc",
+ _cssClass: "node-default",
+ x: 416.7527119697291,
+ y: 71.02207068120077,
+ index: 107,
+ vy: -0.0012936065373925286,
+ vx: 0.0004615278892764726
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 12,
+ name: "2fz8ne",
+ _cssClass: "node-default",
+ x: 360.86665518438684,
+ y: 148.1798285112359,
+ index: 12,
+ vy: -0.002324658468922165,
+ vx: 0.0001257618608468293
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 96,
+ name: "6o6d1e",
+ _cssClass: "node-default",
+ x: 385.97315150410753,
+ y: 67.06042099216737,
+ index: 96,
+ vy: -0.0011948193726409432,
+ vx: 0.0004819620423771164
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 23,
+ name: "t1bztl",
+ _cssClass: "node-default",
+ x: 321.8446808951692,
+ y: 104.16535338094326,
+ index: 23,
+ vy: -0.0002661625450488337,
+ vx: 0.0005380718866437213
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 1,
+ name: "h5kcti",
+ _cssClass: "node-default",
+ x: 324.69261359002604,
+ y: 143.09245078600944,
+ index: 1,
+ vy: 0.00026069014262276787,
+ vx: -0.0014271999617400638
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 7,
+ name: "y8mlsf",
+ _cssClass: "node-default",
+ x: 358.08549555229735,
+ y: 186.5025401308263,
+ index: 7,
+ vy: -0.00028203682173126256,
+ vx: -0.0003959854210866148
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 39,
+ name: "ay8hte",
+ _cssClass: "node-default",
+ x: 418.9221043612044,
+ y: 131.9147807937393,
+ index: 39,
+ vy: -0.0016490563440478545,
+ vx: 0.0003953293187439443
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 127,
+ name: "6kg11",
+ _cssClass: "node-default",
+ x: 418.7606291087565,
+ y: 150.6557891761223,
+ index: 127,
+ vy: -0.0009138465961746308,
+ vx: 0.0007356342537692401
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 111,
+ name: "i38fp2",
+ _cssClass: "node-default",
+ x: 430.8158684900311,
+ y: 42.59825198035904,
+ index: 111,
+ vy: 0.00013202903917029153,
+ vx: -0.0007238981075793837
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 113,
+ name: "n449wi",
+ _cssClass: "node-default",
+ x: 469.7399012130191,
+ y: 129.5223138302524,
+ index: 113,
+ vy: 0.0005311173990175625,
+ vx: -0.00006069342199331831
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 40,
+ name: "sqvpw9",
+ _cssClass: "node-default",
+ x: 366.5962091417913,
+ y: 120.50301481262845,
+ index: 40,
+ vy: 0.0011065427207375342,
+ vx: 0.0014132258392817927
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 97,
+ name: "f71bad",
+ _cssClass: "node-default",
+ x: 415.4867143165565,
+ y: 188.47730629377153,
+ index: 97,
+ vy: -0.0007678347407443995,
+ vx: -0.0009779384407759915
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 67,
+ name: "b6guzw",
+ _cssClass: "node-default",
+ x: 395.49272484733274,
+ y: 75.29769227611484,
+ index: 67,
+ vy: 0.0006425768525723398,
+ vx: -0.0006753486194254999
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 121,
+ name: "bs3ne",
+ _cssClass: "node-default",
+ x: 371.0641455910165,
+ y: 183.92101002226804,
+ index: 121,
+ vy: 0.0004917506738684137,
+ vx: -0.0001243500714726591
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 122,
+ name: "4gfcc",
+ _cssClass: "node-default",
+ x: 351.35665172280244,
+ y: 127.42555421866795,
+ index: 122,
+ vy: -0.0012330522105253089,
+ vx: 0.0003255024404983422
},
- {
- "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
+ 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
},
- {
- "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
+ target: {
+ id: 124,
+ name: "vd7a0i",
+ _cssClass: "node-default",
+ x: 383.84824846133034,
+ y: 169.4013382026788,
+ index: 124,
+ vy: 0.0002595848450843291,
+ vx: -0.0003979095581848599
},
- {
- "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
+ index: 198
+ }
+]
diff --git a/src/pages/settings/views/NetSettings.vue b/src/pages/settings/views/NetSettings.vue
index 042ec4d..aec11cf 100644
--- a/src/pages/settings/views/NetSettings.vue
+++ b/src/pages/settings/views/NetSettings.vue
@@ -83,7 +83,7 @@
</el-form>
</div>
- <!-- <switchBar :barName="`楂樼骇璁剧疆`" :value="isHighClass"></switchBar>
+ <!-- <switchBar :barName="`楂樼骇璁剧疆`" :value="isHighClass"></switchBar> -->
<div class="general-box fold" :class="{ hidden: IPV4_hid }">
<div class="in-title">
@@ -91,10 +91,16 @@
<span class="icon iconfont icon-fold" @click="toggleFold('IPV4_hid')"></span>
</div>
- <el-form :model="ipv4Form" :rules="ipv4FormRules" ref="ipv4Form">
+ <el-form :model="wirelessForm" ref="wirelessForm">
<el-form-item>
<div class="p-title">鏂规硶</div>
- <el-select v-model="value" placeholder="璇烽�夋嫨" size="small" :popper-append-to-body="false">
+ <el-select
+ v-model="wifiProto"
+ placeholder="璇烽�夋嫨"
+ size="small"
+ :popper-append-to-body="false"
+ :disabled="wifiProto == 'dhcp'"
+ >
<el-option
v-for="item in options"
:key="item.value"
@@ -105,27 +111,47 @@
</el-form-item>
<el-form-item prop="ip">
<div class="p-title">IP</div>
- <ip-input :ip="ipv4Form.ip" @on-blur="ipv4Form.ip = arguments[0]"></ip-input>
+ <ip-input
+ :ip="wirelessForm.ip"
+ @on-blur="wirelessForm.ip = arguments[0]"
+ :disabled="wifiProto == 'dhcp'"
+ ></ip-input>
</el-form-item>
<el-form-item prop="subMask">
<div class="p-title">瀛愮綉鎺╃爜</div>
- <ip-input :ip="ipv4Form.subMask" @on-blur="ipv4Form.subMask = arguments[0]"></ip-input>
+ <ip-input
+ :ip="wirelessForm.subMask"
+ @on-blur="wirelessForm.subMask = arguments[0]"
+ :disabled="wifiProto == 'dhcp'"
+ ></ip-input>
</el-form-item>
<el-form-item prop="gateway">
<div class="p-title">缃戝叧</div>
- <ip-input :ip="ipv4Form.gateway" @on-blur="ipv4Form.gateway = arguments[0]"></ip-input>
+ <ip-input
+ :ip="wirelessForm.gateway"
+ @on-blur="wirelessForm.gateway = arguments[0]"
+ :disabled="wifiProto == 'dhcp'"
+ ></ip-input>
</el-form-item>
<el-form-item prop="dns">
<div class="p-title">棣栭�塂NS</div>
- <ip-input :ip="ipv4Form.dns1" @on-blur="ipv4Form.dns1 = arguments[0]"></ip-input>
+ <ip-input
+ :ip="wirelessForm.dns1"
+ @on-blur="wirelessForm.dns1 = arguments[0]"
+ :disabled="wifiProto == 'dhcp'"
+ ></ip-input>
</el-form-item>
<el-form-item prop="dns">
<div class="p-title">澶囩敤DNS</div>
- <ip-input :ip="ipv4Form.dns2" @on-blur="ipv4Form.dns2 = arguments[0]"></ip-input>
+ <ip-input
+ :ip="wirelessForm.dns2"
+ @on-blur="wirelessForm.dns2 = arguments[0]"
+ :disabled="wifiProto == 'dhcp'"
+ ></ip-input>
</el-form-item>
</el-form>
- </div> -->
+ </div>
<div class="btns">
<div class="cancel" @click="inWifiDetail = false">鍙栨秷</div>
@@ -248,10 +274,6 @@
deviceName: "",
port: ""
},
- wifiForm: {
- name: "",
- password: ""
- },
wireArr: [],
inWifiDetail: false,
selectedWifi: {},
@@ -308,7 +330,7 @@
rules: {
deviceName: [{ required: true, message: "璇疯緭鍏ヨ澶囧悕绉�", trigger: "change" }]
},
- ipv4Form: {},
+ wirelessForm: {},
ipv6Form: {},
ipv4FormRules: {},
tabList: [
@@ -322,15 +344,15 @@
ipv6FormRules: {},
options: [
{
- value: "閫夐」1",
+ value: "dhcp",
label: "鑷姩"
},
{
- value: "閫夐」2",
+ value: "static",
label: "鎵嬪姩"
}
],
- value: "",
+ wifiProto: "dhcp",
IPV4_hid: true,
IPV6_hid: false,
configLoading: false
@@ -513,6 +535,16 @@
checkWifi(item) {
this.inWifiDetail = true
this.selectedWifi = item
+ getNetWorkCardInfo({
+ ifname: this.wifiIfname
+ }).then((res) => {
+ if (res && res.success) {
+ this.wirelessForm.ip = res.data.ip
+ this.wirelessForm.gateway = res.data.gateway
+ this.wirelessForm.dns = res.data.dns
+ this.wirelessForm.subMask = res.data.subMask
+ }
+ })
},
openWireDetail(item) {
this.inWireDetail = true
diff --git a/src/pages/settings/views/clusterManagement.vue b/src/pages/settings/views/clusterManagement.vue
index bec9238..ec80f34 100644
--- a/src/pages/settings/views/clusterManagement.vue
+++ b/src/pages/settings/views/clusterManagement.vue
@@ -5,8 +5,16 @@
<!-- <cloud-node :nodes="innerNodes"></cloud-node> -->
<net-node :innerNodes="innerNodes"></net-node>
- <div class="cls-bar">瑙嗛鍒嗘瀽闆嗙兢绠$悊</div>
-
+ <div class="cls-bar">
+ <div class="title">鑺傜偣鐘舵��</div>
+ <div class="input-area">
+ <div class="text" v-show="!isFillingName">
+ {{ ruleForm.state }}
+ </div>
+ <el-switch v-model="masterNode" :disabled="masterNode" style="margin-top:5px" @change="change2Master">
+ </el-switch>
+ </div>
+ </div>
<div class="cls-bar">
<div class="title">闆嗙兢鍚嶇О</div>
<div class="input-area">
@@ -168,7 +176,8 @@
stopSearching,
findCluster,
updateClusterName,
- joinCluster
+ joinCluster,
+ update2Master
} from "@/api/clusterManage"
// import cloudNode from "../components/CloudNode";
import NetNode from "../components/NetNode"
@@ -195,6 +204,7 @@
}
}
return {
+ masterNode: false,
innerNodes: [],
intervalTimer: null,
isFillingName: false,
@@ -210,7 +220,9 @@
ruleForm: {
clustername: "",
clusterpwd: "",
- virtualIp: ""
+ virtualIp: "",
+ state: "",
+ localId: ""
},
selfForm: {
virtualIp: "",
@@ -222,7 +234,7 @@
clusterpwd: ""
},
isSearch: false,
- showCurCluster: true,
+ showCurCluster: false,
loading: false,
joinLoading: false,
isHasColony: false,
@@ -349,7 +361,6 @@
})
},
join(formName) {
- console.log("join", formName)
let _this = this
_this.joinLoading = true
let data = {
@@ -357,7 +368,6 @@
password: _this.joinForm.clusterpwd,
nodeIps: [_this.joinForm.clusterip]
}
- console.log("body:", data)
_this
.joinCluster(data)
.then(() => {
@@ -590,6 +600,7 @@
if (res && res.success) {
if (res.data && res.data.clusterId) {
this.isHasColony = true
+ this.showCurCluster = true
this.clusterid = res.data.clusterId
this.ruleForm.clustername = res.data.clusterName
this.ruleForm.clusterpwd = "******"
@@ -609,6 +620,13 @@
obj.nodeName = i.node_name
obj.Address = i.node_ip
obj.role = i.drift_state ? i.drift_state : "pc"
+ obj.online = i.online
+
+ if (obj.id == res.data.localId) {
+ this.ruleForm.state = i.drift_state
+ this.ruleForm.localId = res.data.localId
+ this.masterNode = i.drift_state === "master"
+ }
return obj
})
} else {
@@ -618,6 +636,15 @@
},
clearInnerNodes() {
this.innerNodes = []
+ },
+ async change2Master() {
+ let res = await update2Master({ clusterId: this.clusterid, nodeId: this.ruleForm.localId })
+ if (res && res.success) {
+ this.$message.success("鍒囨崲鎴愬姛")
+ this.findCluster()
+ } else {
+ this.$message.warning("鍒囨崲澶辫触")
+ }
}
}
}
--
Gitblit v1.8.0