-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconnection.html
250 lines (194 loc) · 321 KB
/
connection.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
<html>
<head>
<meta charset="utf-8">
<script src="lib/bindings/utils.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/vis-network/9.1.2/dist/dist/vis-network.min.css" integrity="sha512-WgxfT5LWjfszlPHXRmBWHkV2eceiWTOBvrKCNbdgDYTHrT2AeLCGbF4sZlZw3UMN3WtL0tGUoIAKsu8mllg/XA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/vis-network/9.1.2/dist/vis-network.min.js" integrity="sha512-LnvoEWDFrqGHlHmDD2101OrLcbsfkrzoSpvtSQtxK3RMnRV0eOkhhBN2dXHKRrUU8p2DGRTk35n4O8nWSVe1mQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<center>
<h1></h1>
</center>
<!-- <link rel="stylesheet" href="../node_modules/vis/dist/vis.min.css" type="text/css" />
<script type="text/javascript" src="../node_modules/vis/dist/vis.js"> </script>-->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf"
crossorigin="anonymous"
></script>
<center>
<h1></h1>
</center>
<style type="text/css">
#mynetwork {
width: 100%;
height: 600px;
background-color: #ffffff;
border: 1px solid lightgray;
position: relative;
float: left;
}
#loadingBar {
position:absolute;
top:0px;
left:0px;
width: 100%;
height: 600px;
background-color:rgba(200,200,200,0.8);
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
opacity:1;
}
#bar {
position:absolute;
top:0px;
left:0px;
width:20px;
height:20px;
margin:auto auto auto auto;
border-radius:11px;
border:2px solid rgba(30,30,30,0.05);
background: rgb(0, 173, 246); /* Old browsers */
box-shadow: 2px 0px 4px rgba(0,0,0,0.4);
}
#border {
position:absolute;
top:10px;
left:10px;
width:500px;
height:23px;
margin:auto auto auto auto;
box-shadow: 0px 0px 4px rgba(0,0,0,0.2);
border-radius:10px;
}
#text {
position:absolute;
top:8px;
left:530px;
width:30px;
height:50px;
margin:auto auto auto auto;
font-size:22px;
color: #000000;
}
div.outerBorder {
position:relative;
top:400px;
width:600px;
height:44px;
margin:auto auto auto auto;
border:8px solid rgba(0,0,0,0.1);
background: rgb(252,252,252); /* Old browsers */
background: -moz-linear-gradient(top, rgba(252,252,252,1) 0%, rgba(237,237,237,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(252,252,252,1)), color-stop(100%,rgba(237,237,237,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
border-radius:72px;
box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}
</style>
</head>
<body>
<div class="card" style="width: 100%">
<div id="mynetwork" class="card-body"></div>
</div>
<div id="loadingBar">
<div class="outerBorder">
<div id="text">0%</div>
<div id="border">
<div id="bar"></div>
</div>
</div>
</div>
<script type="text/javascript">
// initialize global variables.
var edges;
var nodes;
var allNodes;
var allEdges;
var nodeColors;
var originalNodes;
var network;
var container;
var options, data;
var filter = {
item : '',
property : '',
value : []
};
// This method is responsible for drawing the graph, returns the drawn network
function drawGraph() {
var container = document.getElementById('mynetwork');
// parsing and collecting nodes and edges from the python
nodes = new vis.DataSet([{"color": "#97c2fc", "id": "455", "label": "Level 455", "shape": "dot"}, {"color": "#97c2fc", "id": "3003", "label": "Level 3003", "shape": "dot"}, {"color": "#97c2fc", "id": "93453", "label": "Level 93453", "shape": "dot"}, {"color": "#97c2fc", "id": "1000.1", "label": "Level 1000.1", "shape": "dot"}, {"color": "#97c2fc", "id": "377", "label": "Level 377", "shape": "dot"}, {"color": "#97c2fc", "id": "1100", "label": "Level 1100", "shape": "dot"}, {"color": "#97c2fc", "id": "806", "label": "Level 806", "shape": "dot"}, {"color": "#97c2fc", "id": "570", "label": "Level 570", "shape": "dot"}, {"color": "#97c2fc", "id": "122", "label": "Level 122", "shape": "dot"}, {"color": "#97c2fc", "id": "1008", "label": "Level 1008", "shape": "dot"}, {"color": "#97c2fc", "id": "2.2", "label": "Level 2.2", "shape": "dot"}, {"color": "#97c2fc", "id": "6469", "label": "Level 6469", "shape": "dot"}, {"color": "#97c2fc", "id": "127", "label": "Level 127", "shape": "dot"}, {"color": "#97c2fc", "id": "1297", "label": "Level 1297", "shape": "dot"}, {"color": "#97c2fc", "id": "37.4", "label": "Level 37.4", "shape": "dot"}, {"color": "#97c2fc", "id": "390", "label": "Level 390", "shape": "dot"}, {"color": "#97c2fc", "id": "16.2", "label": "Level 16.2", "shape": "dot"}, {"color": "#97c2fc", "id": "2137.5", "label": "Level 2137.5", "shape": "dot"}, {"color": "#97c2fc", "id": "465", "label": "Level 465", "shape": "dot"}, {"color": "#97c2fc", "id": "736", "label": "Level 736", "shape": "dot"}, {"color": "#97c2fc", "id": "7999", "label": "Level 7999", "shape": "dot"}, {"color": "#97c2fc", "id": "3850", "label": "Level 3850", "shape": "dot"}, {"color": "#97c2fc", "id": "2250", "label": "Level 2250", "shape": "dot"}, {"color": "#97c2fc", "id": "862", "label": "Level 862", "shape": "dot"}, {"color": "#97c2fc", "id": "5026", "label": "Level 5026", "shape": "dot"}, {"color": "#97c2fc", "id": "306", "label": "Level 306", "shape": "dot"}, {"color": "#97c2fc", "id": "385", "label": "Level 385", "shape": "dot"}, {"color": "#97c2fc", "id": "4816", "label": "Level 4816", "shape": "dot"}, {"color": "#97c2fc", "id": "1548", "label": "Level 1548", "shape": "dot"}, {"color": "#97c2fc", "id": "830", "label": "Level 830", "shape": "dot"}, {"color": "#97c2fc", "id": "71", "label": "Level 71", "shape": "dot"}, {"color": "#97c2fc", "id": "8009", "label": "Level 8009", "shape": "dot"}, {"color": "#97c2fc", "id": "998", "label": "Level 998", "shape": "dot"}, {"color": "#97c2fc", "id": "642", "label": "Level 642", "shape": "dot"}, {"color": "#97c2fc", "id": "398", "label": "Level 398", "shape": "dot"}, {"color": "#97c2fc", "id": "3082", "label": "Level 3082", "shape": "dot"}, {"color": "#97c2fc", "id": "923", "label": "Level 923", "shape": "dot"}, {"color": "#97c2fc", "id": "389", "label": "Level 389", "shape": "dot"}, {"color": "#97c2fc", "id": "424", "label": "Level 424", "shape": "dot"}, {"color": "#97c2fc", "id": "2001", "label": "Level 2001", "shape": "dot"}, {"color": "#97c2fc", "id": "8151947", "label": "Level 8151947", "shape": "dot"}, {"color": "#97c2fc", "id": "57", "label": "Level 57", "shape": "dot"}, {"color": "#97c2fc", "id": "273", "label": "Level 273", "shape": "dot"}, {"color": "#97c2fc", "id": "74", "label": "Level 74", "shape": "dot"}, {"color": "#97c2fc", "id": "654", "label": "Level 654", "shape": "dot"}, {"color": "#97c2fc", "id": "91", "label": "Level 91", "shape": "dot"}, {"color": "#97c2fc", "id": "1209", "label": "Level 1209", "shape": "dot"}, {"color": "#97c2fc", "id": "1154", "label": "Level 1154", "shape": "dot"}, {"color": "#97c2fc", "id": "1190", "label": "Level 1190", "shape": "dot"}, {"color": "#97c2fc", "id": "6890", "label": "Level 6890", "shape": "dot"}, {"color": "#97c2fc", "id": "995", "label": "Level 995", "shape": "dot"}, {"color": "#97c2fc", "id": "1092", "label": "Level 1092", "shape": "dot"}, {"color": "#97c2fc", "id": "564", "label": "Level 564", "shape": "dot"}, {"color": "#97c2fc", "id": "556", "label": "Level 556", "shape": "dot"}, {"color": "#97c2fc", "id": "653", "label": "Level 653", "shape": "dot"}, {"color": "#97c2fc", "id": "68", "label": "Level 68", "shape": "dot"}, {"color": "#97c2fc", "id": "3000", "label": "Level 3000", "shape": "dot"}, {"color": "#97c2fc", "id": "0.02", "label": "Level 0.02", "shape": "dot"}, {"color": "#97c2fc", "id": "1814", "label": "Level 1814", "shape": "dot"}, {"color": "#97c2fc", "id": "333.1", "label": "Level 333.1", "shape": "dot"}, {"color": "#97c2fc", "id": "777", "label": "Level 777", "shape": "dot"}, {"color": "#97c2fc", "id": "4749", "label": "Level 4749", "shape": "dot"}, {"color": "#97c2fc", "id": "2201", "label": "Level 2201", "shape": "dot"}, {"color": "#97c2fc", "id": "1945", "label": "Level 1945", "shape": "dot"}, {"color": "#97c2fc", "id": "239", "label": "Level 239", "shape": "dot"}, {"color": "#97c2fc", "id": "6092", "label": "Level 6092", "shape": "dot"}, {"color": "#97c2fc", "id": "1061", "label": "Level 1061", "shape": "dot"}, {"color": "#97c2fc", "id": "613", "label": "Level 613", "shape": "dot"}, {"color": "#97c2fc", "id": "8565.1", "label": "Level 8565.1", "shape": "dot"}, {"color": "#97c2fc", "id": "3636", "label": "Level 3636", "shape": "dot"}, {"color": "#97c2fc", "id": "1.8", "label": "Level 1.8", "shape": "dot"}, {"color": "#97c2fc", "id": "526", "label": "Level 526", "shape": "dot"}, {"color": "#97c2fc", "id": "237", "label": "Level 237", "shape": "dot"}, {"color": "#97c2fc", "id": "814", "label": "Level 814", "shape": "dot"}, {"color": "#97c2fc", "id": "0.03", "label": "Level 0.03", "shape": "dot"}, {"color": "#97c2fc", "id": "340", "label": "Level 340", "shape": "dot"}, {"color": "#97c2fc", "id": "48", "label": "Level 48", "shape": "dot"}, {"color": "#97c2fc", "id": "1066", "label": "Level 1066", "shape": "dot"}, {"color": "#97c2fc", "id": "5938", "label": "Level 5938", "shape": "dot"}, {"color": "#97c2fc", "id": "1597", "label": "Level 1597", "shape": "dot"}, {"color": "#97c2fc", "id": "189", "label": "Level 189", "shape": "dot"}, {"color": "#97c2fc", "id": "1806", "label": "Level 1806", "shape": "dot"}, {"color": "#97c2fc", "id": "152", "label": "Level 152", "shape": "dot"}, {"color": "#97c2fc", "id": "2048", "label": "Level 2048", "shape": "dot"}, {"color": "#97c2fc", "id": "120", "label": "Level 120", "shape": "dot"}, {"color": "#97c2fc", "id": "821.1", "label": "Level 821.1", "shape": "dot"}, {"color": "#97c2fc", "id": "2000", "label": "Level 2000", "shape": "dot"}, {"color": "#97c2fc", "id": "4814", "label": "Level 4814", "shape": "dot"}, {"color": "#97c2fc", "id": "1086", "label": "Level 1086", "shape": "dot"}, {"color": "#97c2fc", "id": "1269", "label": "Level 1269", "shape": "dot"}, {"color": "#97c2fc", "id": "333", "label": "Level 333", "shape": "dot"}, {"color": "#97c2fc", "id": "9001", "label": "Level 9001", "shape": "dot"}, {"color": "#97c2fc", "id": "1399", "label": "Level 1399", "shape": "dot"}, {"color": "#97c2fc", "id": "37.8", "label": "Level 37.8", "shape": "dot"}, {"color": "#97c2fc", "id": "395", "label": "Level 395", "shape": "dot"}, {"color": "#97c2fc", "id": "8402", "label": "Level 8402", "shape": "dot"}, {"color": "#97c2fc", "id": "258.1", "label": "Level 258.1", "shape": "dot"}, {"color": "#97c2fc", "id": "2097", "label": "Level 2097", "shape": "dot"}, {"color": "#97c2fc", "id": "140", "label": "Level 140", "shape": "dot"}, {"color": "#97c2fc", "id": "946", "label": "Level 946", "shape": "dot"}, {"color": "#97c2fc", "id": "1204", "label": "Level 1204", "shape": "dot"}, {"color": "#97c2fc", "id": "4009", "label": "Level 4009", "shape": "dot"}, {"color": "#97c2fc", "id": "1988", "label": "Level 1988", "shape": "dot"}, {"color": "#97c2fc", "id": "604", "label": "Level 604", "shape": "dot"}, {"color": "#97c2fc", "id": "8294", "label": "Level 8294", "shape": "dot"}, {"color": "#97c2fc", "id": "879", "label": "Level 879", "shape": "dot"}, {"color": "#97c2fc", "id": "351", "label": "Level 351", "shape": "dot"}, {"color": "#97c2fc", "id": "962", "label": "Level 962", "shape": "dot"}, {"color": "#97c2fc", "id": "607", "label": "Level 607", "shape": "dot"}, {"color": "#97c2fc", "id": "724", "label": "Level 724", "shape": "dot"}, {"color": "#97c2fc", "id": "1099", "label": "Level 1099", "shape": "dot"}, {"color": "#97c2fc", "id": "1055", "label": "Level 1055", "shape": "dot"}, {"color": "#97c2fc", "id": "976", "label": "Level 976", "shape": "dot"}, {"color": "#97c2fc", "id": "913", "label": "Level 913", "shape": "dot"}, {"color": "#97c2fc", "id": "2982", "label": "Level 2982", "shape": "dot"}, {"color": "#97c2fc", "id": "9223372036854775808", "label": "Level 9223372036854775808", "shape": "dot"}, {"color": "#97c2fc", "id": "2568", "label": "Level 2568", "shape": "dot"}, {"color": "#97c2fc", "id": "9669", "label": "Level 9669", "shape": "dot"}, {"color": "#97c2fc", "id": "92233", "label": "Level 92233", "shape": "dot"}, {"color": "#97c2fc", "id": "564.1", "label": "Level 564.1", "shape": "dot"}, {"color": "#97c2fc", "id": "611.3", "label": "Level 611.3", "shape": "dot"}, {"color": "#97c2fc", "id": "2687", "label": "Level 2687", "shape": "dot"}, {"color": "#97c2fc", "id": "100.2", "label": "Level 100.2", "shape": "dot"}, {"color": "#97c2fc", "id": "832", "label": "Level 832", "shape": "dot"}, {"color": "#97c2fc", "id": "8190", "label": "Level 8190", "shape": "dot"}, {"color": "#97c2fc", "id": "534", "label": "Level 534", "shape": "dot"}, {"color": "#97c2fc", "id": "877", "label": "Level 877", "shape": "dot"}, {"color": "#97c2fc", "id": "1641", "label": "Level 1641", "shape": "dot"}, {"color": "#97c2fc", "id": "84", "label": "Level 84", "shape": "dot"}, {"color": "#97c2fc", "id": "535", "label": "Level 535", "shape": "dot"}, {"color": "#97c2fc", "id": "818", "label": "Level 818", "shape": "dot"}, {"color": "#97c2fc", "id": "174", "label": "Level 174", "shape": "dot"}, {"color": "#97c2fc", "id": "323", "label": "Level 323", "shape": "dot"}, {"color": "#97c2fc", "id": "596.1", "label": "Level 596.1", "shape": "dot"}, {"color": "#97c2fc", "id": "242", "label": "Level 242", "shape": "dot"}, {"color": "#97c2fc", "id": "546", "label": "Level 546", "shape": "dot"}, {"color": "#97c2fc", "id": "953", "label": "Level 953", "shape": "dot"}, {"color": "#97c2fc", "id": "124.1", "label": "Level 124.1", "shape": "dot"}, {"color": "#97c2fc", "id": "11.66", "label": "Level 11.66", "shape": "dot"}, {"color": "#97c2fc", "id": "3998", "label": "Level 3998", "shape": "dot"}, {"color": "#97c2fc", "id": "2031.1", "label": "Level 2031.1", "shape": "dot"}, {"color": "#97c2fc", "id": "1290", "label": "Level 1290", "shape": "dot"}, {"color": "#97c2fc", "id": "828", "label": "Level 828", "shape": "dot"}, {"color": "#97c2fc", "id": "448", "label": "Level 448", "shape": "dot"}, {"color": "#97c2fc", "id": "143", "label": "Level 143", "shape": "dot"}, {"color": "#97c2fc", "id": "533", "label": "Level 533", "shape": "dot"}, {"color": "#97c2fc", "id": "94", "label": "Level 94", "shape": "dot"}, {"color": "#97c2fc", "id": "286", "label": "Level 286", "shape": "dot"}, {"color": "#97c2fc", "id": "1126", "label": "Level 1126", "shape": "dot"}, {"color": "#97c2fc", "id": "5.3", "label": "Level 5.3", "shape": "dot"}, {"color": "#97c2fc", "id": "557", "label": "Level 557", "shape": "dot"}, {"color": "#97c2fc", "id": "3094", "label": "Level 3094", "shape": "dot"}, {"color": "#97c2fc", "id": "679.2", "label": "Level 679.2", "shape": "dot"}, {"color": "#97c2fc", "id": "894", "label": "Level 894", "shape": "dot"}, {"color": "#97c2fc", "id": "25", "label": "Level 25", "shape": "dot"}, {"color": "#97c2fc", "id": "580", "label": "Level 580", "shape": "dot"}, {"color": "#97c2fc", "id": "2999", "label": "Level 2999", "shape": "dot"}, {"color": "#97c2fc", "id": "1007", "label": "Level 1007", "shape": "dot"}, {"color": "#97c2fc", "id": "1343", "label": "Level 1343", "shape": "dot"}, {"color": "#97c2fc", "id": "518", "label": "Level 518", "shape": "dot"}, {"color": "#97c2fc", "id": "10.5", "label": "Level 10.5", "shape": "dot"}, {"color": "#97c2fc", "id": "391", "label": "Level 391", "shape": "dot"}, {"color": "#97c2fc", "id": "1207", "label": "Level 1207", "shape": "dot"}, {"color": "#97c2fc", "id": "2872", "label": "Level 2872", "shape": "dot"}, {"color": "#97c2fc", "id": "436", "label": "Level 436", "shape": "dot"}, {"color": "#97c2fc", "id": "144", "label": "Level 144", "shape": "dot"}, {"color": "#97c2fc", "id": "1819", "label": "Level 1819", "shape": "dot"}, {"color": "#97c2fc", "id": "861", "label": "Level 861", "shape": "dot"}, {"color": "#97c2fc", "id": "7.8", "label": "Level 7.8", "shape": "dot"}, {"color": "#97c2fc", "id": "542", "label": "Level 542", "shape": "dot"}, {"color": "#97c2fc", "id": "759", "label": "Level 759", "shape": "dot"}, {"color": "#97c2fc", "id": "1124", "label": "Level 1124", "shape": "dot"}, {"color": "#97c2fc", "id": "1446", "label": "Level 1446", "shape": "dot"}, {"color": "#97c2fc", "id": "2437", "label": "Level 2437", "shape": "dot"}, {"color": "#97c2fc", "id": "777.1", "label": "Level 777.1", "shape": "dot"}, {"color": "#97c2fc", "id": "254", "label": "Level 254", "shape": "dot"}, {"color": "#97c2fc", "id": "729", "label": "Level 729", "shape": "dot"}, {"color": "#97c2fc", "id": "854", "label": "Level 854", "shape": "dot"}, {"color": "#97c2fc", "id": "1069", "label": "Level 1069", "shape": "dot"}, {"color": "#97c2fc", "id": "501", "label": "Level 501", "shape": "dot"}, {"color": "#97c2fc", "id": "360", "label": "Level 360", "shape": "dot"}, {"color": "#97c2fc", "id": "924721", "label": "Level 924721", "shape": "dot"}, {"color": "#97c2fc", "id": "356", "label": "Level 356", "shape": "dot"}, {"color": "#97c2fc", "id": "85", "label": "Level 85", "shape": "dot"}, {"color": "#97c2fc", "id": "849", "label": "Level 849", "shape": "dot"}, {"color": "#97c2fc", "id": "902", "label": "Level 902", "shape": "dot"}, {"color": "#97c2fc", "id": "6590", "label": "Level 6590", "shape": "dot"}, {"color": "#97c2fc", "id": "370", "label": "Level 370", "shape": "dot"}, {"color": "#97c2fc", "id": "434", "label": "Level 434", "shape": "dot"}, {"color": "#97c2fc", "id": "31", "label": "Level 31", "shape": "dot"}, {"color": "#97c2fc", "id": "0.22", "label": "Level 0.22", "shape": "dot"}, {"color": "#97c2fc", "id": "402", "label": "Level 402", "shape": "dot"}, {"color": "#97c2fc", "id": "4957", "label": "Level 4957", "shape": "dot"}, {"color": "#97c2fc", "id": "1251", "label": "Level 1251", "shape": "dot"}, {"color": "#97c2fc", "id": "655", "label": "Level 655", "shape": "dot"}, {"color": "#97c2fc", "id": "403", "label": "Level 403", "shape": "dot"}, {"color": "#97c2fc", "id": "29", "label": "Level 29", "shape": "dot"}, {"color": "#97c2fc", "id": "1050", "label": "Level 1050", "shape": "dot"}, {"color": "#97c2fc", "id": "3512", "label": "Level 3512", "shape": "dot"}, {"color": "#97c2fc", "id": "850", "label": "Level 850", "shape": "dot"}, {"color": "#97c2fc", "id": "1244", "label": "Level 1244", "shape": "dot"}, {"color": "#97c2fc", "id": "6978", "label": "Level 6978", "shape": "dot"}, {"color": "#97c2fc", "id": "611.2", "label": "Level 611.2", "shape": "dot"}, {"color": "#97c2fc", "id": "456", "label": "Level 456", "shape": "dot"}, {"color": "#97c2fc", "id": "188.3", "label": "Level 188.3", "shape": "dot"}, {"color": "#97c2fc", "id": "4012", "label": "Level 4012", "shape": "dot"}, {"color": "#97c2fc", "id": "1068", "label": "Level 1068", "shape": "dot"}, {"color": "#97c2fc", "id": "2007", "label": "Level 2007", "shape": "dot"}, {"color": "#97c2fc", "id": "8440", "label": "Level 8440", "shape": "dot"}, {"color": "#97c2fc", "id": "344", "label": "Level 344", "shape": "dot"}, {"color": "#97c2fc", "id": "706", "label": "Level 706", "shape": "dot"}, {"color": "#97c2fc", "id": "9", "label": "Level 9", "shape": "dot"}, {"color": "#97c2fc", "id": "4888", "label": "Level 4888", "shape": "dot"}, {"color": "#97c2fc", "id": "37.01", "label": "Level 37.01", "shape": "dot"}, {"color": "#97c2fc", "id": "947", "label": "Level 947", "shape": "dot"}, {"color": "#97c2fc", "id": "9.7", "label": "Level 9.7", "shape": "dot"}, {"color": "#97c2fc", "id": "2895", "label": "Level 2895", "shape": "dot"}, {"color": "#97c2fc", "id": "2091", "label": "Level 2091", "shape": "dot"}, {"color": "#97c2fc", "id": "7.4", "label": "Level 7.4", "shape": "dot"}, {"color": "#97c2fc", "id": "1700", "label": "Level 1700", "shape": "dot"}, {"color": "#97c2fc", "id": "110", "label": "Level 110", "shape": "dot"}, {"color": "#97c2fc", "id": "52.1", "label": "Level 52.1", "shape": "dot"}, {"color": "#97c2fc", "id": "611.5", "label": "Level 611.5", "shape": "dot"}, {"color": "#97c2fc", "id": "80", "label": "Level 80", "shape": "dot"}, {"color": "#97c2fc", "id": "77", "label": "Level 77", "shape": "dot"}, {"color": "#97c2fc", "id": "164.35", "label": "Level 164.35", "shape": "dot"}, {"color": "#97c2fc", "id": "661", "label": "Level 661", "shape": "dot"}, {"color": "#97c2fc", "id": "737", "label": "Level 737", "shape": "dot"}, {"color": "#97c2fc", "id": "502", "label": "Level 502", "shape": "dot"}, {"color": "#97c2fc", "id": "585", "label": "Level 585", "shape": "dot"}, {"color": "#97c2fc", "id": "347", "label": "Level 347", "shape": "dot"}, {"color": "#97c2fc", "id": "218", "label": "Level 218", "shape": "dot"}, {"color": "#97c2fc", "id": "3421", "label": "Level 3421", "shape": "dot"}, {"color": "#97c2fc", "id": "175.1", "label": "Level 175.1", "shape": "dot"}, {"color": "#97c2fc", "id": "260", "label": "Level 260", "shape": "dot"}, {"color": "#97c2fc", "id": "2053", "label": "Level 2053", "shape": "dot"}, {"color": "#97c2fc", "id": "767", "label": "Level 767", "shape": "dot"}, {"color": "#97c2fc", "id": "692.1", "label": "Level 692.1", "shape": "dot"}, {"color": "#97c2fc", "id": "1065", "label": "Level 1065", "shape": "dot"}, {"color": "#97c2fc", "id": "499", "label": "Level 499", "shape": "dot"}, {"color": "#97c2fc", "id": "635", "label": "Level 635", "shape": "dot"}, {"color": "#97c2fc", "id": "945", "label": "Level 945", "shape": "dot"}, {"color": "#97c2fc", "id": "792319", "label": "Level 792319", "shape": "dot"}, {"color": "#97c2fc", "id": "847", "label": "Level 847", "shape": "dot"}, {"color": "#97c2fc", "id": "261", "label": "Level 261", "shape": "dot"}, {"color": "#97c2fc", "id": "7285", "label": "Level 7285", "shape": "dot"}, {"color": "#97c2fc", "id": "708.8", "label": "Level 708.8", "shape": "dot"}, {"color": "#97c2fc", "id": "1049", "label": "Level 1049", "shape": "dot"}, {"color": "#97c2fc", "id": "7.1", "label": "Level 7.1", "shape": "dot"}, {"color": "#97c2fc", "id": "444", "label": "Level 444", "shape": "dot"}, {"color": "#97c2fc", "id": "223", "label": "Level 223", "shape": "dot"}, {"color": "#97c2fc", "id": "801", "label": "Level 801", "shape": "dot"}, {"color": "#97c2fc", "id": "2031", "label": "Level 2031", "shape": "dot"}, {"color": "#97c2fc", "id": "491", "label": "Level 491", "shape": "dot"}, {"color": "#97c2fc", "id": "895", "label": "Level 895", "shape": "dot"}, {"color": "#97c2fc", "id": "308", "label": "Level 308", "shape": "dot"}, {"color": "#97c2fc", "id": "4858", "label": "Level 4858", "shape": "dot"}, {"color": "#97c2fc", "id": "553", "label": "Level 553", "shape": "dot"}, {"color": "#97c2fc", "id": "922", "label": "Level 922", "shape": "dot"}, {"color": "#97c2fc", "id": "4814.1", "label": "Level 4814.1", "shape": "dot"}, {"color": "#97c2fc", "id": "1311", "label": "Level 1311", "shape": "dot"}, {"color": "#97c2fc", "id": "1275", "label": "Level 1275", "shape": "dot"}, {"color": "#97c2fc", "id": "226", "label": "Level 226", "shape": "dot"}, {"color": "#97c2fc", "id": "299", "label": "Level 299", "shape": "dot"}, {"color": "#97c2fc", "id": "633", "label": "Level 633", "shape": "dot"}, {"color": "#97c2fc", "id": "893", "label": "Level 893", "shape": "dot"}, {"color": "#97c2fc", "id": "612", "label": "Level 612", "shape": "dot"}, {"color": "#97c2fc", "id": "2236", "label": "Level 2236", "shape": "dot"}, {"color": "#97c2fc", "id": "157", "label": "Level 157", "shape": "dot"}, {"color": "#97c2fc", "id": "4632", "label": "Level 4632", "shape": "dot"}, {"color": "#97c2fc", "id": "54086546758", "label": "Level 54086546758", "shape": "dot"}, {"color": "#97c2fc", "id": "980", "label": "Level 980", "shape": "dot"}, {"color": "#97c2fc", "id": "175", "label": "Level 175", "shape": "dot"}, {"color": "#97c2fc", "id": "0.3", "label": "Level 0.3", "shape": "dot"}, {"color": "#97c2fc", "id": "1273", "label": "Level 1273", "shape": "dot"}, {"color": "#97c2fc", "id": "748", "label": "Level 748", "shape": "dot"}, {"color": "#97c2fc", "id": "480", "label": "Level 480", "shape": "dot"}, {"color": "#97c2fc", "id": "1022", "label": "Level 1022", "shape": "dot"}, {"color": "#97c2fc", "id": "699", "label": "Level 699", "shape": "dot"}, {"color": "#97c2fc", "id": "559", "label": "Level 559", "shape": "dot"}, {"color": "#97c2fc", "id": "6068", "label": "Level 6068", "shape": "dot"}, {"color": "#97c2fc", "id": "20.5", "label": "Level 20.5", "shape": "dot"}, {"color": "#97c2fc", "id": "405", "label": "Level 405", "shape": "dot"}, {"color": "#97c2fc", "id": "581", "label": "Level 581", "shape": "dot"}, {"color": "#97c2fc", "id": "813", "label": "Level 813", "shape": "dot"}, {"color": "#97c2fc", "id": "3999", "label": "Level 3999", "shape": "dot"}, {"color": "#97c2fc", "id": "194", "label": "Level 194", "shape": "dot"}, {"color": "#97c2fc", "id": "6886", "label": "Level 6886", "shape": "dot"}, {"color": "#97c2fc", "id": "1237.1", "label": "Level 1237.1", "shape": "dot"}, {"color": "#97c2fc", "id": "517.4", "label": "Level 517.4", "shape": "dot"}, {"color": "#97c2fc", "id": "973", "label": "Level 973", "shape": "dot"}, {"color": "#97c2fc", "id": "452", "label": "Level 452", "shape": "dot"}, {"color": "#97c2fc", "id": "685", "label": "Level 685", "shape": "dot"}, {"color": "#97c2fc", "id": "1800", "label": "Level 1800", "shape": "dot"}, {"color": "#97c2fc", "id": "1071", "label": "Level 1071", "shape": "dot"}, {"color": "#97c2fc", "id": "9.11", "label": "Level 9.11", "shape": "dot"}, {"color": "#97c2fc", "id": "236", "label": "Level 236", "shape": "dot"}, {"color": "#97c2fc", "id": "3235", "label": "Level 3235", "shape": "dot"}, {"color": "#97c2fc", "id": "561", "label": "Level 561", "shape": "dot"}, {"color": "#97c2fc", "id": "745", "label": "Level 745", "shape": "dot"}, {"color": "#97c2fc", "id": "882", "label": "Level 882", "shape": "dot"}, {"color": "#97c2fc", "id": "162", "label": "Level 162", "shape": "dot"}, {"color": "#97c2fc", "id": "696", "label": "Level 696", "shape": "dot"}, {"color": "#97c2fc", "id": "197", "label": "Level 197", "shape": "dot"}, {"color": "#97c2fc", "id": "494", "label": "Level 494", "shape": "dot"}, {"color": "#97c2fc", "id": "3495", "label": "Level 3495", "shape": "dot"}, {"color": "#97c2fc", "id": "2023", "label": "Level 2023", "shape": "dot"}, {"color": "#97c2fc", "id": "999999268346852440140098238939136", "label": "Level 999999268346852440140098238939136", "shape": "dot"}, {"color": "#97c2fc", "id": "6666", "label": "Level 6666", "shape": "dot"}, {"color": "#97c2fc", "id": "4.11", "label": "Level 4.11", "shape": "dot"}, {"color": "#97c2fc", "id": "166", "label": "Level 166", "shape": "dot"}, {"color": "#97c2fc", "id": "583", "label": "Level 583", "shape": "dot"}, {"color": "#97c2fc", "id": "422", "label": "Level 422", "shape": "dot"}, {"color": "#97c2fc", "id": "7773", "label": "Level 7773", "shape": "dot"}, {"color": "#97c2fc", "id": "217", "label": "Level 217", "shape": "dot"}, {"color": "#97c2fc", "id": "1380", "label": "Level 1380", "shape": "dot"}, {"color": "#97c2fc", "id": "846", "label": "Level 846", "shape": "dot"}, {"color": "#97c2fc", "id": "960", "label": "Level 960", "shape": "dot"}, {"color": "#97c2fc", "id": "586", "label": "Level 586", "shape": "dot"}, {"color": "#97c2fc", "id": "160", "label": "Level 160", "shape": "dot"}, {"color": "#97c2fc", "id": "399", "label": "Level 399", "shape": "dot"}, {"color": "#97c2fc", "id": "1950", "label": "Level 1950", "shape": "dot"}, {"color": "#97c2fc", "id": "620", "label": "Level 620", "shape": "dot"}, {"color": "#97c2fc", "id": "37.2", "label": "Level 37.2", "shape": "dot"}, {"color": "#97c2fc", "id": "354", "label": "Level 354", "shape": "dot"}, {"color": "#97c2fc", "id": "1004", "label": "Level 1004", "shape": "dot"}, {"color": "#97c2fc", "id": "4271", "label": "Level 4271", "shape": "dot"}, {"color": "#97c2fc", "id": "265", "label": "Level 265", "shape": "dot"}, {"color": "#97c2fc", "id": "447", "label": "Level 447", "shape": "dot"}, {"color": "#97c2fc", "id": "837", "label": "Level 837", "shape": "dot"}, {"color": "#97c2fc", "id": "682", "label": "Level 682", "shape": "dot"}, {"color": "#97c2fc", "id": "4001", "label": "Level 4001", "shape": "dot"}, {"color": "#97c2fc", "id": "883", "label": "Level 883", "shape": "dot"}, {"color": "#97c2fc", "id": "1117", "label": "Level 1117", "shape": "dot"}, {"color": "#97c2fc", "id": "426", "label": "Level 426", "shape": "dot"}, {"color": "#97c2fc", "id": "125", "label": "Level 125", "shape": "dot"}, {"color": "#97c2fc", "id": "1969", "label": "Level 1969", "shape": "dot"}, {"color": "#97c2fc", "id": "429", "label": "Level 429", "shape": "dot"}, {"color": "#97c2fc", "id": "867.5", "label": "Level 867.5", "shape": "dot"}, {"color": "#97c2fc", "id": "481", "label": "Level 481", "shape": "dot"}, {"color": "#97c2fc", "id": "768", "label": "Level 768", "shape": "dot"}, {"color": "#97c2fc", "id": "251", "label": "Level 251", "shape": "dot"}, {"color": "#97c2fc", "id": "569", "label": "Level 569", "shape": "dot"}, {"color": "#97c2fc", "id": "2147483647", "label": "Level 2147483647", "shape": "dot"}, {"color": "#97c2fc", "id": "37.9", "label": "Level 37.9", "shape": "dot"}, {"color": "#97c2fc", "id": "0.04", "label": "Level 0.04", "shape": "dot"}, {"color": "#97c2fc", "id": "168", "label": "Level 168", "shape": "dot"}, {"color": "#97c2fc", "id": "787.42", "label": "Level 787.42", "shape": "dot"}, {"color": "#97c2fc", "id": "628", "label": "Level 628", "shape": "dot"}, {"color": "#97c2fc", "id": "1186", "label": "Level 1186", "shape": "dot"}, {"color": "#97c2fc", "id": "9111", "label": "Level 9111", "shape": "dot"}, {"color": "#97c2fc", "id": "1019", "label": "Level 1019", "shape": "dot"}, {"color": "#97c2fc", "id": "936", "label": "Level 936", "shape": "dot"}, {"color": "#97c2fc", "id": "660", "label": "Level 660", "shape": "dot"}, {"color": "#97c2fc", "id": "6", "label": "Level 6", "shape": "dot"}, {"color": "#97c2fc", "id": "37.55", "label": "Level 37.55", "shape": "dot"}, {"color": "#97c2fc", "id": "41.1", "label": "Level 41.1", "shape": "dot"}, {"color": "#97c2fc", "id": "5304", "label": "Level 5304", "shape": "dot"}, {"color": "#97c2fc", "id": "984", "label": "Level 984", "shape": "dot"}, {"color": "#97c2fc", "id": "1462", "label": "Level 1462", "shape": "dot"}, {"color": "#97c2fc", "id": "22", "label": "Level 22", "shape": "dot"}, {"color": "#97c2fc", "id": "794", "label": "Level 794", "shape": "dot"}, {"color": "#97c2fc", "id": "630", "label": "Level 630", "shape": "dot"}, {"color": "#97c2fc", "id": "1070", "label": "Level 1070", "shape": "dot"}, {"color": "#97c2fc", "id": "611.1", "label": "Level 611.1", "shape": "dot"}, {"color": "#97c2fc", "id": "468", "label": "Level 468", "shape": "dot"}, {"color": "#97c2fc", "id": "1820", "label": "Level 1820", "shape": "dot"}, {"color": "#97c2fc", "id": "245", "label": "Level 245", "shape": "dot"}, {"color": "#97c2fc", "id": "464", "label": "Level 464", "shape": "dot"}, {"color": "#97c2fc", "id": "379.1", "label": "Level 379.1", "shape": "dot"}, {"color": "#97c2fc", "id": "3511", "label": "Level 3511", "shape": "dot"}, {"color": "#97c2fc", "id": "525", "label": "Level 525", "shape": "dot"}, {"color": "#97c2fc", "id": "817", "label": "Level 817", "shape": "dot"}, {"color": "#97c2fc", "id": "18.3", "label": "Level 18.3", "shape": "dot"}, {"color": "#97c2fc", "id": "5.1", "label": "Level 5.1", "shape": "dot"}, {"color": "#97c2fc", "id": "2753", "label": "Level 2753", "shape": "dot"}, {"color": "#97c2fc", "id": "230", "label": "Level 230", "shape": "dot"}, {"color": "#97c2fc", "id": "1347", "label": "Level 1347", "shape": "dot"}, {"color": "#97c2fc", "id": "5.01", "label": "Level 5.01", "shape": "dot"}, {"color": "#97c2fc", "id": "3002", "label": "Level 3002", "shape": "dot"}, {"color": "#97c2fc", "id": "856", "label": "Level 856", "shape": "dot"}, {"color": "#97c2fc", "id": "2088", "label": "Level 2088", "shape": "dot"}, {"color": "#97c2fc", "id": "1394", "label": "Level 1394", "shape": "dot"}, {"color": "#97c2fc", "id": "1376", "label": "Level 1376", "shape": "dot"}, {"color": "#97c2fc", "id": "258", "label": "Level 258", "shape": "dot"}, {"color": "#97c2fc", "id": "869.1", "label": "Level 869.1", "shape": "dot"}, {"color": "#97c2fc", "id": "130.2", "label": "Level 130.2", "shape": "dot"}, {"color": "#97c2fc", "id": "9997", "label": "Level 9997", "shape": "dot"}, {"color": "#97c2fc", "id": "906", "label": "Level 906", "shape": "dot"}, {"color": "#97c2fc", "id": "1077", "label": "Level 1077", "shape": "dot"}, {"color": "#97c2fc", "id": "404", "label": "Level 404", "shape": "dot"}, {"color": "#97c2fc", "id": "227", "label": "Level 227", "shape": "dot"}, {"color": "#97c2fc", "id": "86400", "label": "Level 86400", "shape": "dot"}, {"color": "#97c2fc", "id": "9007199254740992", "label": "Level 9007199254740992", "shape": "dot"}, {"color": "#97c2fc", "id": "504", "label": "Level 504", "shape": "dot"}, {"color": "#97c2fc", "id": "379", "label": "Level 379", "shape": "dot"}, {"color": "#97c2fc", "id": "571", "label": "Level 571", "shape": "dot"}, {"color": "#97c2fc", "id": "637", "label": "Level 637", "shape": "dot"}, {"color": "#97c2fc", "id": "482", "label": "Level 482", "shape": "dot"}, {"color": "#97c2fc", "id": "382", "label": "Level 382", "shape": "dot"}, {"color": "#97c2fc", "id": "173", "label": "Level 173", "shape": "dot"}, {"color": "#97c2fc", "id": "418", "label": "Level 418", "shape": "dot"}, {"color": "#97c2fc", "id": "2050", "label": "Level 2050", "shape": "dot"}, {"color": "#97c2fc", "id": "314", "label": "Level 314", "shape": "dot"}, {"color": "#97c2fc", "id": "764", "label": "Level 764", "shape": "dot"}, {"color": "#97c2fc", "id": "575", "label": "Level 575", "shape": "dot"}, {"color": "#97c2fc", "id": "4002", "label": "Level 4002", "shape": "dot"}, {"color": "#97c2fc", "id": "471", "label": "Level 471", "shape": "dot"}, {"color": "#97c2fc", "id": "324", "label": "Level 324", "shape": "dot"}, {"color": "#97c2fc", "id": "3417", "label": "Level 3417", "shape": "dot"}, {"color": "#97c2fc", "id": "9019", "label": "Level 9019", "shape": "dot"}, {"color": "#97c2fc", "id": "39995.1", "label": "Level 39995.1", "shape": "dot"}, {"color": "#97c2fc", "id": "9645", "label": "Level 9645", "shape": "dot"}, {"color": "#97c2fc", "id": "755", "label": "Level 755", "shape": "dot"}, {"color": "#97c2fc", "id": "3010", "label": "Level 3010", "shape": "dot"}, {"color": "#97c2fc", "id": "582", "label": "Level 582", "shape": "dot"}, {"color": "#97c2fc", "id": "821", "label": "Level 821", "shape": "dot"}, {"color": "#97c2fc", "id": "129", "label": "Level 129", "shape": "dot"}, {"color": "#97c2fc", "id": "198", "label": "Level 198", "shape": "dot"}, {"color": "#97c2fc", "id": "554", "label": "Level 554", "shape": "dot"}, {"color": "#97c2fc", "id": "913.1", "label": "Level 913.1", "shape": "dot"}, {"color": "#97c2fc", "id": "841", "label": "Level 841", "shape": "dot"}, {"color": "#97c2fc", "id": "499.5", "label": "Level 499.5", "shape": "dot"}, {"color": "#97c2fc", "id": "656", "label": "Level 656", "shape": "dot"}, {"color": "#97c2fc", "id": "238", "label": "Level 238", "shape": "dot"}, {"color": "#97c2fc", "id": "6234", "label": "Level 6234", "shape": "dot"}, {"color": "#97c2fc", "id": "2910", "label": "Level 2910", "shape": "dot"}, {"color": "#97c2fc", "id": "840", "label": "Level 840", "shape": "dot"}, {"color": "#97c2fc", "id": "776", "label": "Level 776", "shape": "dot"}, {"color": "#97c2fc", "id": "3.4", "label": "Level 3.4", "shape": "dot"}, {"color": "#97c2fc", "id": "955", "label": "Level 955", "shape": "dot"}, {"color": "#97c2fc", "id": "64", "label": "Level 64", "shape": "dot"}, {"color": "#97c2fc", "id": "1368", "label": "Level 1368", "shape": "dot"}, {"color": "#97c2fc", "id": "154", "label": "Level 154", "shape": "dot"}, {"color": "#97c2fc", "id": "987", "label": "Level 987", "shape": "dot"}, {"color": "#97c2fc", "id": "1170", "label": "Level 1170", "shape": "dot"}, {"color": "#97c2fc", "id": "517", "label": "Level 517", "shape": "dot"}, {"color": "#97c2fc", "id": "1083", "label": "Level 1083", "shape": "dot"}, {"color": "#97c2fc", "id": "2144", "label": "Level 2144", "shape": "dot"}, {"color": "#97c2fc", "id": "12", "label": "Level 12", "shape": "dot"}, {"color": "#97c2fc", "id": "100", "label": "Level 100", "shape": "dot"}, {"color": "#97c2fc", "id": "769", "label": "Level 769", "shape": "dot"}, {"color": "#97c2fc", "id": "285", "label": "Level 285", "shape": "dot"}, {"color": "#97c2fc", "id": "443", "label": "Level 443", "shape": "dot"}, {"color": "#97c2fc", "id": "9.8", "label": "Level 9.8", "shape": "dot"}, {"color": "#97c2fc", "id": "188.5", "label": "Level 188.5", "shape": "dot"}, {"color": "#97c2fc", "id": "739", "label": "Level 739", "shape": "dot"}, {"color": "#97c2fc", "id": "7", "label": "Level 7", "shape": "dot"}, {"color": "#97c2fc", "id": "294", "label": "Level 294", "shape": "dot"}, {"color": "#97c2fc", "id": "662", "label": "Level 662", "shape": "dot"}, {"color": "#97c2fc", "id": "819", "label": "Level 819", "shape": "dot"}, {"color": "#97c2fc", "id": "1993", "label": "Level 1993", "shape": "dot"}, {"color": "#97c2fc", "id": "1848", "label": "Level 1848", "shape": "dot"}, {"color": "#97c2fc", "id": "8001", "label": "Level 8001", "shape": "dot"}, {"color": "#97c2fc", "id": "374", "label": "Level 374", "shape": "dot"}, {"color": "#97c2fc", "id": "3513", "label": "Level 3513", "shape": "dot"}, {"color": "#97c2fc", "id": "1610", "label": "Level 1610", "shape": "dot"}, {"color": "#97c2fc", "id": "8065", "label": "Level 8065", "shape": "dot"}, {"color": "#97c2fc", "id": "1991", "label": "Level 1991", "shape": "dot"}, {"color": "#97c2fc", "id": "687", "label": "Level 687", "shape": "dot"}, {"color": "#97c2fc", "id": "678", "label": "Level 678", "shape": "dot"}, {"color": "#97c2fc", "id": "388", "label": "Level 388", "shape": "dot"}, {"color": "#97c2fc", "id": "165", "label": "Level 165", "shape": "dot"}, {"color": "#97c2fc", "id": "790", "label": "Level 790", "shape": "dot"}, {"color": "#97c2fc", "id": "509", "label": "Level 509", "shape": "dot"}, {"color": "#97c2fc", "id": "1513", "label": "Level 1513", "shape": "dot"}, {"color": "#97c2fc", "id": "1890", "label": "Level 1890", "shape": "dot"}, {"color": "#97c2fc", "id": "865", "label": "Level 865", "shape": "dot"}, {"color": "#97c2fc", "id": "7317", "label": "Level 7317", "shape": "dot"}, {"color": "#97c2fc", "id": "2.6", "label": "Level 2.6", "shape": "dot"}, {"color": "#97c2fc", "id": "487", "label": "Level 487", "shape": "dot"}, {"color": "#97c2fc", "id": "511", "label": "Level 511", "shape": "dot"}, {"color": "#97c2fc", "id": "668", "label": "Level 668", "shape": "dot"}, {"color": "#97c2fc", "id": "641", "label": "Level 641", "shape": "dot"}, {"color": "#97c2fc", "id": "3997", "label": "Level 3997", "shape": "dot"}, {"color": "#97c2fc", "id": "547", "label": "Level 547", "shape": "dot"}, {"color": "#97c2fc", "id": "359.2", "label": "Level 359.2", "shape": "dot"}, {"color": "#97c2fc", "id": "1234", "label": "Level 1234", "shape": "dot"}, {"color": "#97c2fc", "id": "565", "label": "Level 565", "shape": "dot"}, {"color": "#97c2fc", "id": "317", "label": "Level 317", "shape": "dot"}, {"color": "#97c2fc", "id": "211", "label": "Level 211", "shape": "dot"}, {"color": "#97c2fc", "id": "784", "label": "Level 784", "shape": "dot"}, {"color": "#97c2fc", "id": "4242", "label": "Level 4242", "shape": "dot"}, {"color": "#97c2fc", "id": "37.1", "label": "Level 37.1", "shape": "dot"}, {"color": "#97c2fc", "id": "4.12", "label": "Level 4.12", "shape": "dot"}, {"color": "#97c2fc", "id": "72", "label": "Level 72", "shape": "dot"}, {"color": "#97c2fc", "id": "751", "label": "Level 751", "shape": "dot"}, {"color": "#97c2fc", "id": "683", "label": "Level 683", "shape": "dot"}, {"color": "#97c2fc", "id": "782", "label": "Level 782", "shape": "dot"}, {"color": "#97c2fc", "id": "10.6", "label": "Level 10.6", "shape": "dot"}, {"color": "#97c2fc", "id": "253", "label": "Level 253", "shape": "dot"}, {"color": "#97c2fc", "id": "2039", "label": "Level 2039", "shape": "dot"}, {"color": "#97c2fc", "id": "544", "label": "Level 544", "shape": "dot"}, {"color": "#97c2fc", "id": "1026", "label": "Level 1026", "shape": "dot"}, {"color": "#97c2fc", "id": "1978", "label": "Level 1978", "shape": "dot"}, {"color": "#97c2fc", "id": "8191", "label": "Level 8191", "shape": "dot"}, {"color": "#97c2fc", "id": "2323", "label": "Level 2323", "shape": "dot"}, {"color": "#97c2fc", "id": "503", "label": "Level 503", "shape": "dot"}, {"color": "#97c2fc", "id": "221", "label": "Level 221", "shape": "dot"}, {"color": "#97c2fc", "id": "725", "label": "Level 725", "shape": "dot"}, {"color": "#97c2fc", "id": "9670", "label": "Level 9670", "shape": "dot"}, {"color": "#97c2fc", "id": "2787", "label": "Level 2787", "shape": "dot"}, {"color": "#97c2fc", "id": "104", "label": "Level 104", "shape": "dot"}, {"color": "#97c2fc", "id": "159", "label": "Level 159", "shape": "dot"}, {"color": "#97c2fc", "id": "1602", "label": "Level 1602", "shape": "dot"}, {"color": "#97c2fc", "id": "666.6", "label": "Level 666.6", "shape": "dot"}, {"color": "#97c2fc", "id": "3782", "label": "Level 3782", "shape": "dot"}, {"color": "#97c2fc", "id": "116", "label": "Level 116", "shape": "dot"}, {"color": "#97c2fc", "id": "1918", "label": "Level 1918", "shape": "dot"}, {"color": "#97c2fc", "id": "6.2", "label": "Level 6.2", "shape": "dot"}, {"color": "#97c2fc", "id": "512", "label": "Level 512", "shape": "dot"}, {"color": "#97c2fc", "id": "4003", "label": "Level 4003", "shape": "dot"}, {"color": "#97c2fc", "id": "462", "label": "Level 462", "shape": "dot"}, {"color": "#97c2fc", "id": "738", "label": "Level 738", "shape": "dot"}, {"color": "#97c2fc", "id": "1051", "label": "Level 1051", "shape": "dot"}, {"color": "#97c2fc", "id": "880", "label": "Level 880", "shape": "dot"}, {"color": "#97c2fc", "id": "257", "label": "Level 257", "shape": "dot"}, {"color": "#97c2fc", "id": "1041", "label": "Level 1041", "shape": "dot"}, {"color": "#97c2fc", "id": "44.5", "label": "Level 44.5", "shape": "dot"}, {"color": "#97c2fc", "id": "44", "label": "Level 44", "shape": "dot"}, {"color": "#97c2fc", "id": "994", "label": "Level 994", "shape": "dot"}, {"color": "#97c2fc", "id": "1813", "label": "Level 1813", "shape": "dot"}, {"color": "#97c2fc", "id": "86400.1", "label": "Level 86400.1", "shape": "dot"}, {"color": "#97c2fc", "id": "1694", "label": "Level 1694", "shape": "dot"}, {"color": "#97c2fc", "id": "396", "label": "Level 396", "shape": "dot"}, {"color": "#97c2fc", "id": "740", "label": "Level 740", "shape": "dot"}, {"color": "#97c2fc", "id": "7998", "label": "Level 7998", "shape": "dot"}, {"color": "#97c2fc", "id": "903", "label": "Level 903", "shape": "dot"}, {"color": "#97c2fc", "id": "1655", "label": "Level 1655", "shape": "dot"}, {"color": "#97c2fc", "id": "148", "label": "Level 148", "shape": "dot"}, {"color": "#97c2fc", "id": "309", "label": "Level 309", "shape": "dot"}, {"color": "#97c2fc", "id": "0.2", "label": "Level 0.2", "shape": "dot"}, {"color": "#97c2fc", "id": "4000", "label": "Level 4000", "shape": "dot"}, {"color": "#97c2fc", "id": "645", "label": "Level 645", "shape": "dot"}, {"color": "#97c2fc", "id": "454", "label": "Level 454", "shape": "dot"}, {"color": "#97c2fc", "id": "1250", "label": "Level 1250", "shape": "dot"}, {"color": "#97c2fc", "id": "1203", "label": "Level 1203", "shape": "dot"}, {"color": "#97c2fc", "id": "1080", "label": "Level 1080", "shape": "dot"}, {"color": "#97c2fc", "id": "3086", "label": "Level 3086", "shape": "dot"}, {"color": "#97c2fc", "id": "36.5", "label": "Level 36.5", "shape": "dot"}, {"color": "#97c2fc", "id": "887", "label": "Level 887", "shape": "dot"}, {"color": "#97c2fc", "id": "10.001", "label": "Level 10.001", "shape": "dot"}, {"color": "#97c2fc", "id": "1.1", "label": "Level 1.1", "shape": "dot"}, {"color": "#97c2fc", "id": "7.2", "label": "Level 7.2", "shape": "dot"}, {"color": "#97c2fc", "id": "1942", "label": "Level 1942", "shape": "dot"}, {"color": "#97c2fc", "id": "1036", "label": "Level 1036", "shape": "dot"}, {"color": "#97c2fc", "id": "0.666", "label": "Level 0.666", "shape": "dot"}, {"color": "#97c2fc", "id": "989", "label": "Level 989", "shape": "dot"}, {"color": "#97c2fc", "id": "927", "label": "Level 927", "shape": "dot"}, {"color": "#97c2fc", "id": "7005", "label": "Level 7005", "shape": "dot"}, {"color": "#97c2fc", "id": "530", "label": "Level 530", "shape": "dot"}, {"color": "#97c2fc", "id": "1210", "label": "Level 1210", "shape": "dot"}, {"color": "#97c2fc", "id": "1889", "label": "Level 1889", "shape": "dot"}, {"color": "#97c2fc", "id": "928", "label": "Level 928", "shape": "dot"}, {"color": "#97c2fc", "id": "551", "label": "Level 551", "shape": "dot"}, {"color": "#97c2fc", "id": "1039", "label": "Level 1039", "shape": "dot"}, {"color": "#97c2fc", "id": "601", "label": "Level 601", "shape": "dot"}, {"color": "#97c2fc", "id": "463", "label": "Level 463", "shape": "dot"}, {"color": "#97c2fc", "id": "8990", "label": "Level 8990", "shape": "dot"}, {"color": "#97c2fc", "id": "519", "label": "Level 519", "shape": "dot"}, {"color": "#97c2fc", "id": "693", "label": "Level 693", "shape": "dot"}, {"color": "#97c2fc", "id": "270", "label": "Level 270", "shape": "dot"}, {"color": "#97c2fc", "id": "6969696969699420", "label": "Level 6969696969699420", "shape": "dot"}, {"color": "#97c2fc", "id": "3621", "label": "Level 3621", "shape": "dot"}, {"color": "#97c2fc", "id": "568", "label": "Level 568", "shape": "dot"}, {"color": "#97c2fc", "id": "412", "label": "Level 412", "shape": "dot"}, {"color": "#97c2fc", "id": "7776", "label": "Level 7776", "shape": "dot"}, {"color": "#97c2fc", "id": "188", "label": "Level 188", "shape": "dot"}, {"color": "#97c2fc", "id": "136", "label": "Level 136", "shape": "dot"}, {"color": "#97c2fc", "id": "4756", "label": "Level 4756", "shape": "dot"}, {"color": "#97c2fc", "id": "0.7", "label": "Level 0.7", "shape": "dot"}, {"color": "#97c2fc", "id": "772", "label": "Level 772", "shape": "dot"}, {"color": "#97c2fc", "id": "179", "label": "Level 179", "shape": "dot"}, {"color": "#97c2fc", "id": "1314", "label": "Level 1314", "shape": "dot"}, {"color": "#97c2fc", "id": "643", "label": "Level 643", "shape": "dot"}, {"color": "#97c2fc", "id": "1206", "label": "Level 1206", "shape": "dot"}, {"color": "#97c2fc", "id": "1334", "label": "Level 1334", "shape": "dot"}, {"color": "#97c2fc", "id": "1059", "label": "Level 1059", "shape": "dot"}, {"color": "#97c2fc", "id": "703", "label": "Level 703", "shape": "dot"}, {"color": "#97c2fc", "id": "177", "label": "Level 177", "shape": "dot"}, {"color": "#97c2fc", "id": "32.1", "label": "Level 32.1", "shape": "dot"}, {"color": "#97c2fc", "id": "276", "label": "Level 276", "shape": "dot"}, {"color": "#97c2fc", "id": "1109", "label": "Level 1109", "shape": "dot"}, {"color": "#97c2fc", "id": "171", "label": "Level 171", "shape": "dot"}, {"color": "#97c2fc", "id": "974", "label": "Level 974", "shape": "dot"}, {"color": "#97c2fc", "id": "793", "label": "Level 793", "shape": "dot"}, {"color": "#97c2fc", "id": "1018", "label": "Level 1018", "shape": "dot"}, {"color": "#97c2fc", "id": "188.1", "label": "Level 188.1", "shape": "dot"}, {"color": "#97c2fc", "id": "88", "label": "Level 88", "shape": "dot"}, {"color": "#97c2fc", "id": "244", "label": "Level 244", "shape": "dot"}, {"color": "#97c2fc", "id": "372", "label": "Level 372", "shape": "dot"}, {"color": "#97c2fc", "id": "5.98", "label": "Level 5.98", "shape": "dot"}, {"color": "#97c2fc", "id": "341", "label": "Level 341", "shape": "dot"}, {"color": "#97c2fc", "id": "940", "label": "Level 940", "shape": "dot"}, {"color": "#97c2fc", "id": "47", "label": "Level 47", "shape": "dot"}, {"color": "#97c2fc", "id": "917", "label": "Level 917", "shape": "dot"}, {"color": "#97c2fc", "id": "647", "label": "Level 647", "shape": "dot"}, {"color": "#97c2fc", "id": "592", "label": "Level 592", "shape": "dot"}, {"color": "#97c2fc", "id": "539", "label": "Level 539", "shape": "dot"}, {"color": "#97c2fc", "id": "933", "label": "Level 933", "shape": "dot"}, {"color": "#97c2fc", "id": "651", "label": "Level 651", "shape": "dot"}, {"color": "#97c2fc", "id": "746", "label": "Level 746", "shape": "dot"}, {"color": "#97c2fc", "id": "9989", "label": "Level 9989", "shape": "dot"}, {"color": "#97c2fc", "id": "295", "label": "Level 295", "shape": "dot"}, {"color": "#97c2fc", "id": "752", "label": "Level 752", "shape": "dot"}, {"color": "#97c2fc", "id": "888", "label": "Level 888", "shape": "dot"}, {"color": "#97c2fc", "id": "6066", "label": "Level 6066", "shape": "dot"}, {"color": "#97c2fc", "id": "419", "label": "Level 419", "shape": "dot"}, {"color": "#97c2fc", "id": "495", "label": "Level 495", "shape": "dot"}, {"color": "#97c2fc", "id": "807", "label": "Level 807", "shape": "dot"}, {"color": "#97c2fc", "id": "2002", "label": "Level 2002", "shape": "dot"}, {"color": "#97c2fc", "id": "1400", "label": "Level 1400", "shape": "dot"}, {"color": "#97c2fc", "id": "9009", "label": "Level 9009", "shape": "dot"}, {"color": "#97c2fc", "id": "23", "label": "Level 23", "shape": "dot"}, {"color": "#97c2fc", "id": "803", "label": "Level 803", "shape": "dot"}, {"color": "#97c2fc", "id": "1443", "label": "Level 1443", "shape": "dot"}, {"color": "#97c2fc", "id": "5005", "label": "Level 5005", "shape": "dot"}, {"color": "#97c2fc", "id": "4272", "label": "Level 4272", "shape": "dot"}, {"color": "#97c2fc", "id": "4005", "label": "Level 4005", "shape": "dot"}, {"color": "#97c2fc", "id": "488", "label": "Level 488", "shape": "dot"}, {"color": "#97c2fc", "id": "3920", "label": "Level 3920", "shape": "dot"}, {"color": "#97c2fc", "id": "3234", "label": "Level 3234", "shape": "dot"}, {"color": "#97c2fc", "id": "975", "label": "Level 975", "shape": "dot"}, {"color": "#97c2fc", "id": "3666", "label": "Level 3666", "shape": "dot"}, {"color": "#97c2fc", "id": "1370", "label": "Level 1370", "shape": "dot"}, {"color": "#97c2fc", "id": "594", "label": "Level 594", "shape": "dot"}, {"color": "#97c2fc", "id": "730", "label": "Level 730", "shape": "dot"}, {"color": "#97c2fc", "id": "626", "label": "Level 626", "shape": "dot"}, {"color": "#97c2fc", "id": "427", "label": "Level 427", "shape": "dot"}, {"color": "#97c2fc", "id": "770", "label": "Level 770", "shape": "dot"}, {"color": "#97c2fc", "id": "0.69", "label": "Level 0.69", "shape": "dot"}, {"color": "#97c2fc", "id": "108", "label": "Level 108", "shape": "dot"}, {"color": "#97c2fc", "id": "1256", "label": "Level 1256", "shape": "dot"}, {"color": "#97c2fc", "id": "1246", "label": "Level 1246", "shape": "dot"}, {"color": "#97c2fc", "id": "1024", "label": "Level 1024", "shape": "dot"}, {"color": "#97c2fc", "id": "343", "label": "Level 343", "shape": "dot"}, {"color": "#97c2fc", "id": "1739", "label": "Level 1739", "shape": "dot"}, {"color": "#97c2fc", "id": "267", "label": "Level 267", "shape": "dot"}, {"color": "#97c2fc", "id": "675", "label": "Level 675", "shape": "dot"}, {"color": "#97c2fc", "id": "758", "label": "Level 758", "shape": "dot"}, {"color": "#97c2fc", "id": "145", "label": "Level 145", "shape": "dot"}, {"color": "#97c2fc", "id": "1216", "label": "Level 1216", "shape": "dot"}, {"color": "#97c2fc", "id": "796.1", "label": "Level 796.1", "shape": "dot"}, {"color": "#97c2fc", "id": "804", "label": "Level 804", "shape": "dot"}, {"color": "#97c2fc", "id": "1341", "label": "Level 1341", "shape": "dot"}, {"color": "#97c2fc", "id": "1608", "label": "Level 1608", "shape": "dot"}, {"color": "#97c2fc", "id": "158", "label": "Level 158", "shape": "dot"}, {"color": "#97c2fc", "id": "220", "label": "Level 220", "shape": "dot"}, {"color": "#97c2fc", "id": "477", "label": "Level 477", "shape": "dot"}, {"color": "#97c2fc", "id": "470", "label": "Level 470", "shape": "dot"}, {"color": "#97c2fc", "id": "8000", "label": "Level 8000", "shape": "dot"}, {"color": "#97c2fc", "id": "709", "label": "Level 709", "shape": "dot"}, {"color": "#97c2fc", "id": "4681", "label": "Level 4681", "shape": "dot"}, {"color": "#97c2fc", "id": "15.1", "label": "Level 15.1", "shape": "dot"}, {"color": "#97c2fc", "id": "6067", "label": "Level 6067", "shape": "dot"}, {"color": "#97c2fc", "id": "563", "label": "Level 563", "shape": "dot"}, {"color": "#97c2fc", "id": "1283", "label": "Level 1283", "shape": "dot"}, {"color": "#97c2fc", "id": "40.1", "label": "Level 40.1", "shape": "dot"}, {"color": "#97c2fc", "id": "981", "label": "Level 981", "shape": "dot"}, {"color": "#97c2fc", "id": "6073", "label": "Level 6073", "shape": "dot"}, {"color": "#97c2fc", "id": "67", "label": "Level 67", "shape": "dot"}, {"color": "#97c2fc", "id": "476", "label": "Level 476", "shape": "dot"}, {"color": "#97c2fc", "id": "603", "label": "Level 603", "shape": "dot"}, {"color": "#97c2fc", "id": "1515", "label": "Level 1515", "shape": "dot"}, {"color": "#97c2fc", "id": "674", "label": "Level 674", "shape": "dot"}, {"color": "#97c2fc", "id": "493", "label": "Level 493", "shape": "dot"}, {"color": "#97c2fc", "id": "3.14", "label": "Level 3.14", "shape": "dot"}, {"color": "#97c2fc", "id": "909", "label": "Level 909", "shape": "dot"}, {"color": "#97c2fc", "id": "918", "label": "Level 918", "shape": "dot"}, {"color": "#97c2fc", "id": "779", "label": "Level 779", "shape": "dot"}, {"color": "#97c2fc", "id": "113", "label": "Level 113", "shape": "dot"}, {"color": "#97c2fc", "id": "409", "label": "Level 409", "shape": "dot"}, {"color": "#97c2fc", "id": "375", "label": "Level 375", "shape": "dot"}, {"color": "#97c2fc", "id": "318", "label": "Level 318", "shape": "dot"}, {"color": "#97c2fc", "id": "2395", "label": "Level 2395", "shape": "dot"}, {"color": "#97c2fc", "id": "82", "label": "Level 82", "shape": "dot"}, {"color": "#97c2fc", "id": "910", "label": "Level 910", "shape": "dot"}, {"color": "#97c2fc", "id": "791", "label": "Level 791", "shape": "dot"}, {"color": "#97c2fc", "id": "929", "label": "Level 929", "shape": "dot"}, {"color": "#97c2fc", "id": "616", "label": "Level 616", "shape": "dot"}, {"color": "#97c2fc", "id": "1777", "label": "Level 1777", "shape": "dot"}, {"color": "#97c2fc", "id": "2090", "label": "Level 2090", "shape": "dot"}, {"color": "#97c2fc", "id": "9083", "label": "Level 9083", "shape": "dot"}, {"color": "#97c2fc", "id": "4008", "label": "Level 4008", "shape": "dot"}, {"color": "#97c2fc", "id": "1013", "label": "Level 1013", "shape": "dot"}, {"color": "#97c2fc", "id": "446", "label": "Level 446", "shape": "dot"}, {"color": "#97c2fc", "id": "61", "label": "Level 61", "shape": "dot"}, {"color": "#97c2fc", "id": "508", "label": "Level 508", "shape": "dot"}, {"color": "#97c2fc", "id": "798", "label": "Level 798", "shape": "dot"}, {"color": "#97c2fc", "id": "1391", "label": "Level 1391", "shape": "dot"}, {"color": "#97c2fc", "id": "1948", "label": "Level 1948", "shape": "dot"}, {"color": "#97c2fc", "id": "872", "label": "Level 872", "shape": "dot"}, {"color": "#97c2fc", "id": "262", "label": "Level 262", "shape": "dot"}, {"color": "#97c2fc", "id": "6999", "label": "Level 6999", "shape": "dot"}, {"color": "#97c2fc", "id": "780", "label": "Level 780", "shape": "dot"}, {"color": "#97c2fc", "id": "891", "label": "Level 891", "shape": "dot"}, {"color": "#97c2fc", "id": "114", "label": "Level 114", "shape": "dot"}, {"color": "#97c2fc", "id": "6565", "label": "Level 6565", "shape": "dot"}, {"color": "#97c2fc", "id": "88888888", "label": "Level 88888888", "shape": "dot"}, {"color": "#97c2fc", "id": "1228", "label": "Level 1228", "shape": "dot"}, {"color": "#97c2fc", "id": "406", "label": "Level 406", "shape": "dot"}, {"color": "#97c2fc", "id": "2052", "label": "Level 2052", "shape": "dot"}, {"color": "#97c2fc", "id": "849.5", "label": "Level 849.5", "shape": "dot"}, {"color": "#97c2fc", "id": "1646", "label": "Level 1646", "shape": "dot"}, {"color": "#97c2fc", "id": "4011", "label": "Level 4011", "shape": "dot"}, {"color": "#97c2fc", "id": "2335", "label": "Level 2335", "shape": "dot"}, {"color": "#97c2fc", "id": "92704", "label": "Level 92704", "shape": "dot"}, {"color": "#97c2fc", "id": "2827", "label": "Level 2827", "shape": "dot"}, {"color": "#97c2fc", "id": "727", "label": "Level 727", "shape": "dot"}, {"color": "#97c2fc", "id": "473", "label": "Level 473", "shape": "dot"}, {"color": "#97c2fc", "id": "898", "label": "Level 898", "shape": "dot"}, {"color": "#97c2fc", "id": "799", "label": "Level 799", "shape": "dot"}, {"color": "#97c2fc", "id": "319", "label": "Level 319", "shape": "dot"}, {"color": "#97c2fc", "id": "3999.5", "label": "Level 3999.5", "shape": "dot"}, {"color": "#97c2fc", "id": "478", "label": "Level 478", "shape": "dot"}, {"color": "#97c2fc", "id": "1220", "label": "Level 1220", "shape": "dot"}, {"color": "#97c2fc", "id": "489", "label": "Level 489", "shape": "dot"}, {"color": "#97c2fc", "id": "875", "label": "Level 875", "shape": "dot"}, {"color": "#97c2fc", "id": "6712", "label": "Level 6712", "shape": "dot"}, {"color": "#97c2fc", "id": "953.1", "label": "Level 953.1", "shape": "dot"}, {"color": "#97c2fc", "id": "492", "label": "Level 492", "shape": "dot"}, {"color": "#97c2fc", "id": "378", "label": "Level 378", "shape": "dot"}, {"color": "#97c2fc", "id": "11", "label": "Level 11", "shape": "dot"}, {"color": "#97c2fc", "id": "1619", "label": "Level 1619", "shape": "dot"}, {"color": "#97c2fc", "id": "679", "label": "Level 679", "shape": "dot"}, {"color": "#97c2fc", "id": "229", "label": "Level 229", "shape": "dot"}, {"color": "#97c2fc", "id": "9.3", "label": "Level 9.3", "shape": "dot"}, {"color": "#97c2fc", "id": "1259", "label": "Level 1259", "shape": "dot"}, {"color": "#97c2fc", "id": "714", "label": "Level 714", "shape": "dot"}, {"color": "#97c2fc", "id": "209", "label": "Level 209", "shape": "dot"}, {"color": "#97c2fc", "id": "290", "label": "Level 290", "shape": "dot"}, {"color": "#97c2fc", "id": "2251", "label": "Level 2251", "shape": "dot"}, {"color": "#97c2fc", "id": "1738", "label": "Level 1738", "shape": "dot"}, {"color": "#97c2fc", "id": "2468", "label": "Level 2468", "shape": "dot"}, {"color": "#97c2fc", "id": "156", "label": "Level 156", "shape": "dot"}, {"color": "#97c2fc", "id": "17", "label": "Level 17", "shape": "dot"}, {"color": "#97c2fc", "id": "147", "label": "Level 147", "shape": "dot"}, {"color": "#97c2fc", "id": "141", "label": "Level 141", "shape": "dot"}, {"color": "#97c2fc", "id": "193.1", "label": "Level 193.1", "shape": "dot"}, {"color": "#97c2fc", "id": "430", "label": "Level 430", "shape": "dot"}, {"color": "#97c2fc", "id": "1242", "label": "Level 1242", "shape": "dot"}, {"color": "#97c2fc", "id": "1706", "label": "Level 1706", "shape": "dot"}, {"color": "#97c2fc", "id": "4732", "label": "Level 4732", "shape": "dot"}, {"color": "#97c2fc", "id": "1973", "label": "Level 1973", "shape": "dot"}, {"color": "#97c2fc", "id": "589", "label": "Level 589", "shape": "dot"}, {"color": "#97c2fc", "id": "611.4", "label": "Level 611.4", "shape": "dot"}, {"color": "#97c2fc", "id": "186", "label": "Level 186", "shape": "dot"}, {"color": "#97c2fc", "id": "1150", "label": "Level 1150", "shape": "dot"}, {"color": "#97c2fc", "id": "407", "label": "Level 407", "shape": "dot"}, {"color": "#97c2fc", "id": "1088", "label": "Level 1088", "shape": "dot"}, {"color": "#97c2fc", "id": "1857", "label": "Level 1857", "shape": "dot"}, {"color": "#97c2fc", "id": "9223", "label": "Level 9223", "shape": "dot"}, {"color": "#97c2fc", "id": "9476", "label": "Level 9476", "shape": "dot"}, {"color": "#97c2fc", "id": "1205.1", "label": "Level 1205.1", "shape": "dot"}, {"color": "#97c2fc", "id": "1919.5", "label": "Level 1919.5", "shape": "dot"}, {"color": "#97c2fc", "id": "7676", "label": "Level 7676", "shape": "dot"}, {"color": "#97c2fc", "id": "240", "label": "Level 240", "shape": "dot"}, {"color": "#97c2fc", "id": "1181", "label": "Level 1181", "shape": "dot"}, {"color": "#97c2fc", "id": "10.3", "label": "Level 10.3", "shape": "dot"}, {"color": "#97c2fc", "id": "1048", "label": "Level 1048", "shape": "dot"}, {"color": "#97c2fc", "id": "421", "label": "Level 421", "shape": "dot"}, {"color": "#97c2fc", "id": "1315", "label": "Level 1315", "shape": "dot"}, {"color": "#97c2fc", "id": "210", "label": "Level 210", "shape": "dot"}, {"color": "#97c2fc", "id": "997", "label": "Level 997", "shape": "dot"}, {"color": "#97c2fc", "id": "14", "label": "Level 14", "shape": "dot"}, {"color": "#97c2fc", "id": "599", "label": "Level 599", "shape": "dot"}, {"color": "#97c2fc", "id": "5025", "label": "Level 5025", "shape": "dot"}, {"color": "#97c2fc", "id": "201", "label": "Level 201", "shape": "dot"}, {"color": "#97c2fc", "id": "1521", "label": "Level 1521", "shape": "dot"}, {"color": "#97c2fc", "id": "721", "label": "Level 721", "shape": "dot"}, {"color": "#97c2fc", "id": "691", "label": "Level 691", "shape": "dot"}, {"color": "#97c2fc", "id": "2104", "label": "Level 2104", "shape": "dot"}, {"color": "#97c2fc", "id": "1333", "label": "Level 1333", "shape": "dot"}, {"color": "#97c2fc", "id": "956", "label": "Level 956", "shape": "dot"}, {"color": "#97c2fc", "id": "1914", "label": "Level 1914", "shape": "dot"}, {"color": "#97c2fc", "id": "7777", "label": "Level 7777", "shape": "dot"}, {"color": "#97c2fc", "id": "9563", "label": "Level 9563", "shape": "dot"}, {"color": "#97c2fc", "id": "2739", "label": "Level 2739", "shape": "dot"}, {"color": "#97c2fc", "id": "505", "label": "Level 505", "shape": "dot"}, {"color": "#97c2fc", "id": "971.1", "label": "Level 971.1", "shape": "dot"}, {"color": "#97c2fc", "id": "596", "label": "Level 596", "shape": "dot"}, {"color": "#97c2fc", "id": "14.6", "label": "Level 14.6", "shape": "dot"}, {"color": "#97c2fc", "id": "2022", "label": "Level 2022", "shape": "dot"}, {"color": "#97c2fc", "id": "1087", "label": "Level 1087", "shape": "dot"}, {"color": "#97c2fc", "id": "326", "label": "Level 326", "shape": "dot"}, {"color": "#97c2fc", "id": "2049", "label": "Level 2049", "shape": "dot"}, {"color": "#97c2fc", "id": "392", "label": "Level 392", "shape": "dot"}, {"color": "#97c2fc", "id": "783", "label": "Level 783", "shape": "dot"}, {"color": "#97c2fc", "id": "507", "label": "Level 507", "shape": "dot"}, {"color": "#97c2fc", "id": "20", "label": "Level 20", "shape": "dot"}, {"color": "#97c2fc", "id": "355", "label": "Level 355", "shape": "dot"}, {"color": "#97c2fc", "id": "2149", "label": "Level 2149", "shape": "dot"}, {"color": "#97c2fc", "id": "5.2", "label": "Level 5.2", "shape": "dot"}, {"color": "#97c2fc", "id": "50", "label": "Level 50", "shape": "dot"}, {"color": "#97c2fc", "id": "0.1", "label": "Level 0.1", "shape": "dot"}, {"color": "#97c2fc", "id": "1691", "label": "Level 1691", "shape": "dot"}, {"color": "#97c2fc", "id": "329", "label": "Level 329", "shape": "dot"}, {"color": "#97c2fc", "id": "773", "label": "Level 773", "shape": "dot"}, {"color": "#97c2fc", "id": "713", "label": "Level 713", "shape": "dot"}, {"color": "#97c2fc", "id": "266", "label": "Level 266", "shape": "dot"}, {"color": "#97c2fc", "id": "414", "label": "Level 414", "shape": "dot"}, {"color": "#97c2fc", "id": "196", "label": "Level 196", "shape": "dot"}, {"color": "#97c2fc", "id": "797", "label": "Level 797", "shape": "dot"}, {"color": "#97c2fc", "id": "1195", "label": "Level 1195", "shape": "dot"}, {"color": "#97c2fc", "id": "10000", "label": "Level 10000", "shape": "dot"}, {"color": "#97c2fc", "id": "7343", "label": "Level 7343", "shape": "dot"}, {"color": "#97c2fc", "id": "6000.1", "label": "Level 6000.1", "shape": "dot"}, {"color": "#97c2fc", "id": "1913", "label": "Level 1913", "shape": "dot"}, {"color": "#97c2fc", "id": "1765", "label": "Level 1765", "shape": "dot"}, {"color": "#97c2fc", "id": "901", "label": "Level 901", "shape": "dot"}, {"color": "#97c2fc", "id": "1262", "label": "Level 1262", "shape": "dot"}, {"color": "#97c2fc", "id": "657", "label": "Level 657", "shape": "dot"}, {"color": "#97c2fc", "id": "741", "label": "Level 741", "shape": "dot"}, {"color": "#97c2fc", "id": "6.4", "label": "Level 6.4", "shape": "dot"}, {"color": "#97c2fc", "id": "1205", "label": "Level 1205", "shape": "dot"}, {"color": "#97c2fc", "id": "777.5", "label": "Level 777.5", "shape": "dot"}, {"color": "#97c2fc", "id": "970", "label": "Level 970", "shape": "dot"}, {"color": "#97c2fc", "id": "750", "label": "Level 750", "shape": "dot"}, {"color": "#97c2fc", "id": "999", "label": "Level 999", "shape": "dot"}, {"color": "#97c2fc", "id": "900", "label": "Level 900", "shape": "dot"}, {"color": "#97c2fc", "id": "5998", "label": "Level 5998", "shape": "dot"}, {"color": "#97c2fc", "id": "498", "label": "Level 498", "shape": "dot"}, {"color": "#97c2fc", "id": "2754.1", "label": "Level 2754.1", "shape": "dot"}, {"color": "#97c2fc", "id": "520", "label": "Level 520", "shape": "dot"}, {"color": "#97c2fc", "id": "843", "label": "Level 843", "shape": "dot"}, {"color": "#97c2fc", "id": "2525", "label": "Level 2525", "shape": "dot"}, {"color": "#97c2fc", "id": "128", "label": "Level 128", "shape": "dot"}, {"color": "#97c2fc", "id": "855", "label": "Level 855", "shape": "dot"}, {"color": "#97c2fc", "id": "1037", "label": "Level 1037", "shape": "dot"}, {"color": "#97c2fc", "id": "358", "label": "Level 358", "shape": "dot"}, {"color": "#97c2fc", "id": "437", "label": "Level 437", "shape": "dot"}, {"color": "#97c2fc", "id": "793.1", "label": "Level 793.1", "shape": "dot"}, {"color": "#97c2fc", "id": "845", "label": "Level 845", "shape": "dot"}, {"color": "#97c2fc", "id": "1006", "label": "Level 1006", "shape": "dot"}, {"color": "#97c2fc", "id": "5", "label": "Level 5", "shape": "dot"}, {"color": "#97c2fc", "id": "393", "label": "Level 393", "shape": "dot"}, {"color": "#97c2fc", "id": "335", "label": "Level 335", "shape": "dot"}, {"color": "#97c2fc", "id": "2.4", "label": "Level 2.4", "shape": "dot"}, {"color": "#97c2fc", "id": "36", "label": "Level 36", "shape": "dot"}, {"color": "#97c2fc", "id": "37.91", "label": "Level 37.91", "shape": "dot"}, {"color": "#97c2fc", "id": "364", "label": "Level 364", "shape": "dot"}, {"color": "#97c2fc", "id": "1482", "label": "Level 1482", "shape": "dot"}, {"color": "#97c2fc", "id": "500", "label": "Level 500", "shape": "dot"}, {"color": "#97c2fc", "id": "296", "label": "Level 296", "shape": "dot"}, {"color": "#97c2fc", "id": "6182", "label": "Level 6182", "shape": "dot"}, {"color": "#97c2fc", "id": "2027.1", "label": "Level 2027.1", "shape": "dot"}, {"color": "#97c2fc", "id": "106", "label": "Level 106", "shape": "dot"}, {"color": "#97c2fc", "id": "99", "label": "Level 99", "shape": "dot"}, {"color": "#97c2fc", "id": "935", "label": "Level 935", "shape": "dot"}, {"color": "#97c2fc", "id": "595", "label": "Level 595", "shape": "dot"}, {"color": "#97c2fc", "id": "4368", "label": "Level 4368", "shape": "dot"}, {"color": "#97c2fc", "id": "7.3", "label": "Level 7.3", "shape": "dot"}, {"color": "#97c2fc", "id": "105", "label": "Level 105", "shape": "dot"}, {"color": "#97c2fc", "id": "905", "label": "Level 905", "shape": "dot"}, {"color": "#97c2fc", "id": "4081", "label": "Level 4081", "shape": "dot"}, {"color": "#97c2fc", "id": "288", "label": "Level 288", "shape": "dot"}, {"color": "#97c2fc", "id": "631", "label": "Level 631", "shape": "dot"}, {"color": "#97c2fc", "id": "3215", "label": "Level 3215", "shape": "dot"}, {"color": "#97c2fc", "id": "301", "label": "Level 301", "shape": "dot"}, {"color": "#97c2fc", "id": "45", "label": "Level 45", "shape": "dot"}, {"color": "#97c2fc", "id": "35", "label": "Level 35", "shape": "dot"}, {"color": "#97c2fc", "id": "37.5", "label": "Level 37.5", "shape": "dot"}, {"color": "#97c2fc", "id": "235", "label": "Level 235", "shape": "dot"}, {"color": "#97c2fc", "id": "457", "label": "Level 457", "shape": "dot"}, {"color": "#97c2fc", "id": "1002", "label": "Level 1002", "shape": "dot"}, {"color": "#97c2fc", "id": "669", "label": "Level 669", "shape": "dot"}, {"color": "#97c2fc", "id": "3236", "label": "Level 3236", "shape": "dot"}, {"color": "#97c2fc", "id": "441", "label": "Level 441", "shape": "dot"}, {"color": "#97c2fc", "id": "7820", "label": "Level 7820", "shape": "dot"}, {"color": "#97c2fc", "id": "252", "label": "Level 252", "shape": "dot"}, {"color": "#97c2fc", "id": "1756", "label": "Level 1756", "shape": "dot"}, {"color": "#97c2fc", "id": "2992", "label": "Level 2992", "shape": "dot"}, {"color": "#97c2fc", "id": "275", "label": "Level 275", "shape": "dot"}, {"color": "#97c2fc", "id": "185", "label": "Level 185", "shape": "dot"}, {"color": "#97c2fc", "id": "408", "label": "Level 408", "shape": "dot"}, {"color": "#97c2fc", "id": "1.13", "label": "Level 1.13", "shape": "dot"}, {"color": "#97c2fc", "id": "844", "label": "Level 844", "shape": "dot"}, {"color": "#97c2fc", "id": "550", "label": "Level 550", "shape": "dot"}, {"color": "#97c2fc", "id": "2200", "label": "Level 2200", "shape": "dot"}, {"color": "#97c2fc", "id": "649", "label": "Level 649", "shape": "dot"}, {"color": "#97c2fc", "id": "680", "label": "Level 680", "shape": "dot"}, {"color": "#97c2fc", "id": "9472", "label": "Level 9472", "shape": "dot"}, {"color": "#97c2fc", "id": "723", "label": "Level 723", "shape": "dot"}, {"color": "#97c2fc", "id": "1127", "label": "Level 1127", "shape": "dot"}, {"color": "#97c2fc", "id": "40", "label": "Level 40", "shape": "dot"}, {"color": "#97c2fc", "id": "506", "label": "Level 506", "shape": "dot"}, {"color": "#97c2fc", "id": "829", "label": "Level 829", "shape": "dot"}, {"color": "#97c2fc", "id": "4444", "label": "Level 4444", "shape": "dot"}, {"color": "#97c2fc", "id": "8.2e-10", "label": "Level 8.2e-10", "shape": "dot"}, {"color": "#97c2fc", "id": "0.01", "label": "Level 0.01", "shape": "dot"}, {"color": "#97c2fc", "id": "6.7", "label": "Level 6.7", "shape": "dot"}, {"color": "#97c2fc", "id": "451", "label": "Level 451", "shape": "dot"}, {"color": "#97c2fc", "id": "332", "label": "Level 332", "shape": "dot"}, {"color": "#97c2fc", "id": "255", "label": "Level 255", "shape": "dot"}, {"color": "#97c2fc", "id": "1.3", "label": "Level 1.3", "shape": "dot"}, {"color": "#97c2fc", "id": "292", "label": "Level 292", "shape": "dot"}, {"color": "#97c2fc", "id": "8.8", "label": "Level 8.8", "shape": "dot"}, {"color": "#97c2fc", "id": "5.4", "label": "Level 5.4", "shape": "dot"}, {"color": "#97c2fc", "id": "1987", "label": "Level 1987", "shape": "dot"}, {"color": "#97c2fc", "id": "30", "label": "Level 30", "shape": "dot"}, {"color": "#97c2fc", "id": "688", "label": "Level 688", "shape": "dot"}, {"color": "#97c2fc", "id": "3900", "label": "Level 3900", "shape": "dot"}, {"color": "#97c2fc", "id": "3089", "label": "Level 3089", "shape": "dot"}, {"color": "#97c2fc", "id": "2835", "label": "Level 2835", "shape": "dot"}, {"color": "#97c2fc", "id": "1057", "label": "Level 1057", "shape": "dot"}, {"color": "#97c2fc", "id": "926", "label": "Level 926", "shape": "dot"}, {"color": "#97c2fc", "id": "1067", "label": "Level 1067", "shape": "dot"}, {"color": "#97c2fc", "id": "51", "label": "Level 51", "shape": "dot"}, {"color": "#97c2fc", "id": "138", "label": "Level 138", "shape": "dot"}, {"color": "#97c2fc", "id": "123", "label": "Level 123", "shape": "dot"}, {"color": "#97c2fc", "id": "3420", "label": "Level 3420", "shape": "dot"}, {"color": "#97c2fc", "id": "640", "label": "Level 640", "shape": "dot"}, {"color": "#97c2fc", "id": "592.4", "label": "Level 592.4", "shape": "dot"}, {"color": "#97c2fc", "id": "577", "label": "Level 577", "shape": "dot"}, {"color": "#97c2fc", "id": "866", "label": "Level 866", "shape": "dot"}, {"color": "#97c2fc", "id": "2.7", "label": "Level 2.7", "shape": "dot"}, {"color": "#97c2fc", "id": "4007", "label": "Level 4007", "shape": "dot"}, {"color": "#97c2fc", "id": "15", "label": "Level 15", "shape": "dot"}, {"color": "#97c2fc", "id": "1017", "label": "Level 1017", "shape": "dot"}, {"color": "#97c2fc", "id": "4.6", "label": "Level 4.6", "shape": "dot"}, {"color": "#97c2fc", "id": "397", "label": "Level 397", "shape": "dot"}, {"color": "#97c2fc", "id": "79", "label": "Level 79", "shape": "dot"}, {"color": "#97c2fc", "id": "719", "label": "Level 719", "shape": "dot"}, {"color": "#97c2fc", "id": "717", "label": "Level 717", "shape": "dot"}, {"color": "#97c2fc", "id": "990", "label": "Level 990", "shape": "dot"}, {"color": "#97c2fc", "id": "1078", "label": "Level 1078", "shape": "dot"}, {"color": "#97c2fc", "id": "445", "label": "Level 445", "shape": "dot"}, {"color": "#97c2fc", "id": "8902", "label": "Level 8902", "shape": "dot"}, {"color": "#97c2fc", "id": "1980.1", "label": "Level 1980.1", "shape": "dot"}, {"color": "#97c2fc", "id": "937", "label": "Level 937", "shape": "dot"}, {"color": "#97c2fc", "id": "4005.1", "label": "Level 4005.1", "shape": "dot"}, {"color": "#97c2fc", "id": "532", "label": "Level 532", "shape": "dot"}, {"color": "#97c2fc", "id": "611", "label": "Level 611", "shape": "dot"}, {"color": "#97c2fc", "id": "527", "label": "Level 527", "shape": "dot"}, {"color": "#97c2fc", "id": "978", "label": "Level 978", "shape": "dot"}, {"color": "#97c2fc", "id": "188.8", "label": "Level 188.8", "shape": "dot"}, {"color": "#97c2fc", "id": "479", "label": "Level 479", "shape": "dot"}, {"color": "#97c2fc", "id": "1212", "label": "Level 1212", "shape": "dot"}, {"color": "#97c2fc", "id": "0.5", "label": "Level 0.5", "shape": "dot"}, {"color": "#97c2fc", "id": "2666", "label": "Level 2666", "shape": "dot"}, {"color": "#97c2fc", "id": "822", "label": "Level 822", "shape": "dot"}, {"color": "#97c2fc", "id": "0.85", "label": "Level 0.85", "shape": "dot"}, {"color": "#97c2fc", "id": "963", "label": "Level 963", "shape": "dot"}, {"color": "#97c2fc", "id": "1009", "label": "Level 1009", "shape": "dot"}, {"color": "#97c2fc", "id": "13", "label": "Level 13", "shape": "dot"}, {"color": "#97c2fc", "id": "692", "label": "Level 692", "shape": "dot"}, {"color": "#97c2fc", "id": "733", "label": "Level 733", "shape": "dot"}, {"color": "#97c2fc", "id": "548", "label": "Level 548", "shape": "dot"}, {"color": "#97c2fc", "id": "9999.3", "label": "Level 9999.3", "shape": "dot"}, {"color": "#97c2fc", "id": "912", "label": "Level 912", "shape": "dot"}, {"color": "#97c2fc", "id": "919125", "label": "Level 919125", "shape": "dot"}, {"color": "#97c2fc", "id": "2222", "label": "Level 2222", "shape": "dot"}, {"color": "#97c2fc", "id": "646", "label": "Level 646", "shape": "dot"}, {"color": "#97c2fc", "id": "623", "label": "Level 623", "shape": "dot"}, {"color": "#97c2fc", "id": "58730", "label": "Level 58730", "shape": "dot"}, {"color": "#97c2fc", "id": "86", "label": "Level 86", "shape": "dot"}, {"color": "#97c2fc", "id": "37.404", "label": "Level 37.404", "shape": "dot"}, {"color": "#97c2fc", "id": "7373", "label": "Level 7373", "shape": "dot"}, {"color": "#97c2fc", "id": "1939", "label": "Level 1939", "shape": "dot"}, {"color": "#97c2fc", "id": "41", "label": "Level 41", "shape": "dot"}, {"color": "#97c2fc", "id": "516", "label": "Level 516", "shape": "dot"}, {"color": "#97c2fc", "id": "1980", "label": "Level 1980", "shape": "dot"}, {"color": "#97c2fc", "id": "705", "label": "Level 705", "shape": "dot"}, {"color": "#97c2fc", "id": "124", "label": "Level 124", "shape": "dot"}, {"color": "#97c2fc", "id": "562", "label": "Level 562", "shape": "dot"}, {"color": "#97c2fc", "id": "6812", "label": "Level 6812", "shape": "dot"}, {"color": "#97c2fc", "id": "911", "label": "Level 911", "shape": "dot"}, {"color": "#97c2fc", "id": "7191", "label": "Level 7191", "shape": "dot"}, {"color": "#97c2fc", "id": "2006", "label": "Level 2006", "shape": "dot"}, {"color": "#97c2fc", "id": "312", "label": "Level 312", "shape": "dot"}, {"color": "#97c2fc", "id": "567", "label": "Level 567", "shape": "dot"}, {"color": "#97c2fc", "id": "8", "label": "Level 8", "shape": "dot"}, {"color": "#97c2fc", "id": "587", "label": "Level 587", "shape": "dot"}, {"color": "#97c2fc", "id": "274", "label": "Level 274", "shape": "dot"}, {"color": "#97c2fc", "id": "3001", "label": "Level 3001", "shape": "dot"}, {"color": "#97c2fc", "id": "957", "label": "Level 957", "shape": "dot"}, {"color": "#97c2fc", "id": "690", "label": "Level 690", "shape": "dot"}, {"color": "#97c2fc", "id": "1528473", "label": "Level 1528473", "shape": "dot"}, {"color": "#97c2fc", "id": "458", "label": "Level 458", "shape": "dot"}, {"color": "#97c2fc", "id": "1074", "label": "Level 1074", "shape": "dot"}, {"color": "#97c2fc", "id": "164", "label": "Level 164", "shape": "dot"}, {"color": "#97c2fc", "id": "602", "label": "Level 602", "shape": "dot"}, {"color": "#97c2fc", "id": "778", "label": "Level 778", "shape": "dot"}, {"color": "#97c2fc", "id": "771", "label": "Level 771", "shape": "dot"}, {"color": "#97c2fc", "id": "549", "label": "Level 549", "shape": "dot"}, {"color": "#97c2fc", "id": "7192", "label": "Level 7192", "shape": "dot"}, {"color": "#97c2fc", "id": "1033", "label": "Level 1033", "shape": "dot"}, {"color": "#97c2fc", "id": "521", "label": "Level 521", "shape": "dot"}, {"color": "#97c2fc", "id": "781", "label": "Level 781", "shape": "dot"}, {"color": "#97c2fc", "id": "3008", "label": "Level 3008", "shape": "dot"}, {"color": "#97c2fc", "id": "2041", "label": "Level 2041", "shape": "dot"}, {"color": "#97c2fc", "id": "1674", "label": "Level 1674", "shape": "dot"}, {"color": "#97c2fc", "id": "350", "label": "Level 350", "shape": "dot"}, {"color": "#97c2fc", "id": "1.5", "label": "Level 1.5", "shape": "dot"}, {"color": "#97c2fc", "id": "972", "label": "Level 972", "shape": "dot"}, {"color": "#97c2fc", "id": "961", "label": "Level 961", "shape": "dot"}, {"color": "#97c2fc", "id": "1667", "label": "Level 1667", "shape": "dot"}, {"color": "#97c2fc", "id": "442", "label": "Level 442", "shape": "dot"}, {"color": "#97c2fc", "id": "634", "label": "Level 634", "shape": "dot"}, {"color": "#97c2fc", "id": "632", "label": "Level 632", "shape": "dot"}, {"color": "#97c2fc", "id": "6.1", "label": "Level 6.1", "shape": "dot"}, {"color": "#97c2fc", "id": "65", "label": "Level 65", "shape": "dot"}, {"color": "#97c2fc", "id": "1075", "label": "Level 1075", "shape": "dot"}, {"color": "#97c2fc", "id": "1920", "label": "Level 1920", "shape": "dot"}, {"color": "#97c2fc", "id": "1472", "label": "Level 1472", "shape": "dot"}, {"color": "#97c2fc", "id": "1239", "label": "Level 1239", "shape": "dot"}, {"color": "#97c2fc", "id": "3005", "label": "Level 3005", "shape": "dot"}, {"color": "#97c2fc", "id": "1649", "label": "Level 1649", "shape": "dot"}, {"color": "#97c2fc", "id": "627", "label": "Level 627", "shape": "dot"}, {"color": "#97c2fc", "id": "7171", "label": "Level 7171", "shape": "dot"}, {"color": "#97c2fc", "id": "98", "label": "Level 98", "shape": "dot"}, {"color": "#97c2fc", "id": "184", "label": "Level 184", "shape": "dot"}, {"color": "#97c2fc", "id": "256", "label": "Level 256", "shape": "dot"}, {"color": "#97c2fc", "id": "766", "label": "Level 766", "shape": "dot"}, {"color": "#97c2fc", "id": "2187.2", "label": "Level 2187.2", "shape": "dot"}, {"color": "#97c2fc", "id": "3894", "label": "Level 3894", "shape": "dot"}, {"color": "#97c2fc", "id": "884", "label": "Level 884", "shape": "dot"}, {"color": "#97c2fc", "id": "2", "label": "Level 2", "shape": "dot"}, {"color": "#97c2fc", "id": "760", "label": "Level 760", "shape": "dot"}, {"color": "#97c2fc", "id": "24.7", "label": "Level 24.7", "shape": "dot"}, {"color": "#97c2fc", "id": "225", "label": "Level 225", "shape": "dot"}, {"color": "#97c2fc", "id": "944", "label": "Level 944", "shape": "dot"}, {"color": "#97c2fc", "id": "4918", "label": "Level 4918", "shape": "dot"}, {"color": "#97c2fc", "id": "1656", "label": "Level 1656", "shape": "dot"}, {"color": "#97c2fc", "id": "1.001", "label": "Level 1.001", "shape": "dot"}, {"color": "#97c2fc", "id": "386.2", "label": "Level 386.2", "shape": "dot"}, {"color": "#97c2fc", "id": "687.2", "label": "Level 687.2", "shape": "dot"}, {"color": "#97c2fc", "id": "172", "label": "Level 172", "shape": "dot"}, {"color": "#97c2fc", "id": "1.7", "label": "Level 1.7", "shape": "dot"}, {"color": "#97c2fc", "id": "1015", "label": "Level 1015", "shape": "dot"}, {"color": "#97c2fc", "id": "1047", "label": "Level 1047", "shape": "dot"}, {"color": "#97c2fc", "id": "38", "label": "Level 38", "shape": "dot"}, {"color": "#97c2fc", "id": "0.11", "label": "Level 0.11", "shape": "dot"}, {"color": "#97c2fc", "id": "57473", "label": "Level 57473", "shape": "dot"}, {"color": "#97c2fc", "id": "2112", "label": "Level 2112", "shape": "dot"}, {"color": "#97c2fc", "id": "8765", "label": "Level 8765", "shape": "dot"}, {"color": "#97c2fc", "id": "432", "label": "Level 432", "shape": "dot"}, {"color": "#97c2fc", "id": "161", "label": "Level 161", "shape": "dot"}, {"color": "#97c2fc", "id": "1098", "label": "Level 1098", "shape": "dot"}, {"color": "#97c2fc", "id": "515", "label": "Level 515", "shape": "dot"}, {"color": "#97c2fc", "id": "718", "label": "Level 718", "shape": "dot"}, {"color": "#97c2fc", "id": "538", "label": "Level 538", "shape": "dot"}, {"color": "#97c2fc", "id": "0", "label": "Level 0", "shape": "dot"}, {"color": "#97c2fc", "id": "826", "label": "Level 826", "shape": "dot"}, {"color": "#97c2fc", "id": "677", "label": "Level 677", "shape": "dot"}, {"color": "#97c2fc", "id": "304", "label": "Level 304", "shape": "dot"}, {"color": "#97c2fc", "id": "8924", "label": "Level 8924", "shape": "dot"}, {"color": "#97c2fc", "id": "494.1", "label": "Level 494.1", "shape": "dot"}, {"color": "#97c2fc", "id": "37.41", "label": "Level 37.41", "shape": "dot"}, {"color": "#97c2fc", "id": "811", "label": "Level 811", "shape": "dot"}, {"color": "#97c2fc", "id": "349.1", "label": "Level 349.1", "shape": "dot"}, {"color": "#97c2fc", "id": "1463", "label": "Level 1463", "shape": "dot"}, {"color": "#97c2fc", "id": "916", "label": "Level 916", "shape": "dot"}, {"color": "#97c2fc", "id": "624", "label": "Level 624", "shape": "dot"}, {"color": "#97c2fc", "id": "0.6", "label": "Level 0.6", "shape": "dot"}, {"color": "#97c2fc", "id": "1231", "label": "Level 1231", "shape": "dot"}, {"color": "#97c2fc", "id": "896", "label": "Level 896", "shape": "dot"}, {"color": "#97c2fc", "id": "1142", "label": "Level 1142", "shape": "dot"}, {"color": "#97c2fc", "id": "700", "label": "Level 700", "shape": "dot"}, {"color": "#97c2fc", "id": "629", "label": "Level 629", "shape": "dot"}, {"color": "#97c2fc", "id": "8586", "label": "Level 8586", "shape": "dot"}, {"color": "#97c2fc", "id": "1.05", "label": "Level 1.05", "shape": "dot"}, {"color": "#97c2fc", "id": "1032", "label": "Level 1032", "shape": "dot"}, {"color": "#97c2fc", "id": "0.555", "label": "Level 0.555", "shape": "dot"}, {"color": "#97c2fc", "id": "795", "label": "Level 795", "shape": "dot"}, {"color": "#97c2fc", "id": "835", "label": "Level 835", "shape": "dot"}, {"color": "#97c2fc", "id": "1105", "label": "Level 1105", "shape": "dot"}, {"color": "#97c2fc", "id": "536", "label": "Level 536", "shape": "dot"}, {"color": "#97c2fc", "id": "278", "label": "Level 278", "shape": "dot"}, {"color": "#97c2fc", "id": "222", "label": "Level 222", "shape": "dot"}, {"color": "#97c2fc", "id": "404.1", "label": "Level 404.1", "shape": "dot"}, {"color": "#97c2fc", "id": "2019", "label": "Level 2019", "shape": "dot"}, {"color": "#97c2fc", "id": "1000.2", "label": "Level 1000.2", "shape": "dot"}, {"color": "#97c2fc", "id": "558", "label": "Level 558", "shape": "dot"}, {"color": "#97c2fc", "id": "1970", "label": "Level 1970", "shape": "dot"}, {"color": "#97c2fc", "id": "272", "label": "Level 272", "shape": "dot"}, {"color": "#97c2fc", "id": "453", "label": "Level 453", "shape": "dot"}, {"color": "#97c2fc", "id": "857", "label": "Level 857", "shape": "dot"}, {"color": "#97c2fc", "id": "7948", "label": "Level 7948", "shape": "dot"}, {"color": "#97c2fc", "id": "1129", "label": "Level 1129", "shape": "dot"}, {"color": "#97c2fc", "id": "5000", "label": "Level 5000", "shape": "dot"}, {"color": "#97c2fc", "id": "11.5", "label": "Level 11.5", "shape": "dot"}, {"color": "#97c2fc", "id": "1042", "label": "Level 1042", "shape": "dot"}, {"color": "#97c2fc", "id": "53", "label": "Level 53", "shape": "dot"}, {"color": "#97c2fc", "id": "359.1", "label": "Level 359.1", "shape": "dot"}, {"color": "#97c2fc", "id": "3756", "label": "Level 3756", "shape": "dot"}, {"color": "#97c2fc", "id": "4269", "label": "Level 4269", "shape": "dot"}, {"color": "#97c2fc", "id": "1143", "label": "Level 1143", "shape": "dot"}, {"color": "#97c2fc", "id": "4.7", "label": "Level 4.7", "shape": "dot"}, {"color": "#97c2fc", "id": "979", "label": "Level 979", "shape": "dot"}, {"color": "#97c2fc", "id": "2146", "label": "Level 2146", "shape": "dot"}, {"color": "#97c2fc", "id": "3700", "label": "Level 3700", "shape": "dot"}, {"color": "#97c2fc", "id": "1730", "label": "Level 1730", "shape": "dot"}, {"color": "#97c2fc", "id": "517.1", "label": "Level 517.1", "shape": "dot"}, {"color": "#97c2fc", "id": "6173", "label": "Level 6173", "shape": "dot"}, {"color": "#97c2fc", "id": "870", "label": "Level 870", "shape": "dot"}, {"color": "#97c2fc", "id": "9898", "label": "Level 9898", "shape": "dot"}, {"color": "#97c2fc", "id": "151", "label": "Level 151", "shape": "dot"}, {"color": "#97c2fc", "id": "460", "label": "Level 460", "shape": "dot"}, {"color": "#97c2fc", "id": "213", "label": "Level 213", "shape": "dot"}, {"color": "#97c2fc", "id": "212", "label": "Level 212", "shape": "dot"}, {"color": "#97c2fc", "id": "2003", "label": "Level 2003", "shape": "dot"}, {"color": "#97c2fc", "id": "4013", "label": "Level 4013", "shape": "dot"}, {"color": "#97c2fc", "id": "387", "label": "Level 387", "shape": "dot"}, {"color": "#97c2fc", "id": "836", "label": "Level 836", "shape": "dot"}, {"color": "#97c2fc", "id": "2226", "label": "Level 2226", "shape": "dot"}, {"color": "#97c2fc", "id": "8844", "label": "Level 8844", "shape": "dot"}, {"color": "#97c2fc", "id": "7732", "label": "Level 7732", "shape": "dot"}, {"color": "#97c2fc", "id": "11.72", "label": "Level 11.72", "shape": "dot"}, {"color": "#97c2fc", "id": "800", "label": "Level 800", "shape": "dot"}, {"color": "#97c2fc", "id": "14.1", "label": "Level 14.1", "shape": "dot"}, {"color": "#97c2fc", "id": "1976", "label": "Level 1976", "shape": "dot"}, {"color": "#97c2fc", "id": "7237", "label": "Level 7237", "shape": "dot"}, {"color": "#97c2fc", "id": "182", "label": "Level 182", "shape": "dot"}, {"color": "#97c2fc", "id": "810", "label": "Level 810", "shape": "dot"}, {"color": "#97c2fc", "id": "96", "label": "Level 96", "shape": "dot"}, {"color": "#97c2fc", "id": "49", "label": "Level 49", "shape": "dot"}, {"color": "#97c2fc", "id": "695", "label": "Level 695", "shape": "dot"}, {"color": "#97c2fc", "id": "573", "label": "Level 573", "shape": "dot"}, {"color": "#97c2fc", "id": "3494", "label": "Level 3494", "shape": "dot"}, {"color": "#97c2fc", "id": "70", "label": "Level 70", "shape": "dot"}, {"color": "#97c2fc", "id": "359", "label": "Level 359", "shape": "dot"}, {"color": "#97c2fc", "id": "664", "label": "Level 664", "shape": "dot"}, {"color": "#97c2fc", "id": "802", "label": "Level 802", "shape": "dot"}, {"color": "#97c2fc", "id": "4004", "label": "Level 4004", "shape": "dot"}, {"color": "#97c2fc", "id": "279", "label": "Level 279", "shape": "dot"}, {"color": "#97c2fc", "id": "16.1", "label": "Level 16.1", "shape": "dot"}, {"color": "#97c2fc", "id": "400", "label": "Level 400", "shape": "dot"}, {"color": "#97c2fc", "id": "608", "label": "Level 608", "shape": "dot"}, {"color": "#97c2fc", "id": "1001", "label": "Level 1001", "shape": "dot"}, {"color": "#97c2fc", "id": "815", "label": "Level 815", "shape": "dot"}, {"color": "#97c2fc", "id": "1120", "label": "Level 1120", "shape": "dot"}, {"color": "#97c2fc", "id": "4010", "label": "Level 4010", "shape": "dot"}, {"color": "#97c2fc", "id": "4365", "label": "Level 4365", "shape": "dot"}, {"color": "#97c2fc", "id": "167", "label": "Level 167", "shape": "dot"}, {"color": "#97c2fc", "id": "119", "label": "Level 119", "shape": "dot"}, {"color": "#97c2fc", "id": "1236", "label": "Level 1236", "shape": "dot"}, {"color": "#97c2fc", "id": "9996", "label": "Level 9996", "shape": "dot"}, {"color": "#97c2fc", "id": "707", "label": "Level 707", "shape": "dot"}, {"color": "#97c2fc", "id": "1072", "label": "Level 1072", "shape": "dot"}, {"color": "#97c2fc", "id": "824", "label": "Level 824", "shape": "dot"}, {"color": "#97c2fc", "id": "349", "label": "Level 349", "shape": "dot"}, {"color": "#97c2fc", "id": "954", "label": "Level 954", "shape": "dot"}, {"color": "#97c2fc", "id": "345", "label": "Level 345", "shape": "dot"}, {"color": "#97c2fc", "id": "753", "label": "Level 753", "shape": "dot"}, {"color": "#97c2fc", "id": "2187", "label": "Level 2187", "shape": "dot"}, {"color": "#97c2fc", "id": "734", "label": "Level 734", "shape": "dot"}, {"color": "#97c2fc", "id": "376", "label": "Level 376", "shape": "dot"}, {"color": "#97c2fc", "id": "1195.01", "label": "Level 1195.01", "shape": "dot"}, {"color": "#97c2fc", "id": "107", "label": "Level 107", "shape": "dot"}, {"color": "#97c2fc", "id": "63", "label": "Level 63", "shape": "dot"}, {"color": "#97c2fc", "id": "289", "label": "Level 289", "shape": "dot"}, {"color": "#97c2fc", "id": "648", "label": "Level 648", "shape": "dot"}, {"color": "#97c2fc", "id": "228", "label": "Level 228", "shape": "dot"}, {"color": "#97c2fc", "id": "5555", "label": "Level 5555", "shape": "dot"}, {"color": "#97c2fc", "id": "924", "label": "Level 924", "shape": "dot"}, {"color": "#97c2fc", "id": "1684", "label": "Level 1684", "shape": "dot"}, {"color": "#97c2fc", "id": "571.5", "label": "Level 571.5", "shape": "dot"}, {"color": "#97c2fc", "id": "7381", "label": "Level 7381", "shape": "dot"}, {"color": "#97c2fc", "id": "1916", "label": "Level 1916", "shape": "dot"}, {"color": "#97c2fc", "id": "528", "label": "Level 528", "shape": "dot"}, {"color": "#97c2fc", "id": "598", "label": "Level 598", "shape": "dot"}, {"color": "#97c2fc", "id": "744", "label": "Level 744", "shape": "dot"}, {"color": "#97c2fc", "id": "155", "label": "Level 155", "shape": "dot"}, {"color": "#97c2fc", "id": "4014", "label": "Level 4014", "shape": "dot"}, {"color": "#97c2fc", "id": "192", "label": "Level 192", "shape": "dot"}, {"color": "#97c2fc", "id": "280", "label": "Level 280", "shape": "dot"}, {"color": "#97c2fc", "id": "4352", "label": "Level 4352", "shape": "dot"}, {"color": "#97c2fc", "id": "1010", "label": "Level 1010", "shape": "dot"}, {"color": "#97c2fc", "id": "904", "label": "Level 904", "shape": "dot"}, {"color": "#97c2fc", "id": "7013", "label": "Level 7013", "shape": "dot"}, {"color": "#97c2fc", "id": "250", "label": "Level 250", "shape": "dot"}, {"color": "#97c2fc", "id": "1999", "label": "Level 1999", "shape": "dot"}, {"color": "#97c2fc", "id": "533.5", "label": "Level 533.5", "shape": "dot"}, {"color": "#97c2fc", "id": "386.1", "label": "Level 386.1", "shape": "dot"}, {"color": "#97c2fc", "id": "5999", "label": "Level 5999", "shape": "dot"}, {"color": "#97c2fc", "id": "2754", "label": "Level 2754", "shape": "dot"}, {"color": "#97c2fc", "id": "5678", "label": "Level 5678", "shape": "dot"}, {"color": "#97c2fc", "id": "316", "label": "Level 316", "shape": "dot"}, {"color": "#97c2fc", "id": "2227", "label": "Level 2227", "shape": "dot"}, {"color": "#97c2fc", "id": "248", "label": "Level 248", "shape": "dot"}, {"color": "#97c2fc", "id": "425", "label": "Level 425", "shape": "dot"}, {"color": "#97c2fc", "id": "87", "label": "Level 87", "shape": "dot"}, {"color": "#97c2fc", "id": "2693", "label": "Level 2693", "shape": "dot"}, {"color": "#97c2fc", "id": "1792", "label": "Level 1792", "shape": "dot"}, {"color": "#97c2fc", "id": "180", "label": "Level 180", "shape": "dot"}, {"color": "#97c2fc", "id": "1893", "label": "Level 1893", "shape": "dot"}, {"color": "#97c2fc", "id": "622", "label": "Level 622", "shape": "dot"}, {"color": "#97c2fc", "id": "3826", "label": "Level 3826", "shape": "dot"}, {"color": "#97c2fc", "id": "78", "label": "Level 78", "shape": "dot"}, {"color": "#97c2fc", "id": "1645", "label": "Level 1645", "shape": "dot"}, {"color": "#97c2fc", "id": "4028", "label": "Level 4028", "shape": "dot"}, {"color": "#97c2fc", "id": "18", "label": "Level 18", "shape": "dot"}, {"color": "#97c2fc", "id": "56", "label": "Level 56", "shape": "dot"}, {"color": "#97c2fc", "id": "786", "label": "Level 786", "shape": "dot"}, {"color": "#97c2fc", "id": "588", "label": "Level 588", "shape": "dot"}, {"color": "#97c2fc", "id": "1348", "label": "Level 1348", "shape": "dot"}, {"color": "#97c2fc", "id": "1237", "label": "Level 1237", "shape": "dot"}, {"color": "#97c2fc", "id": "1225", "label": "Level 1225", "shape": "dot"}, {"color": "#97c2fc", "id": "150", "label": "Level 150", "shape": "dot"}, {"color": "#97c2fc", "id": "97", "label": "Level 97", "shape": "dot"}, {"color": "#97c2fc", "id": "59", "label": "Level 59", "shape": "dot"}, {"color": "#97c2fc", "id": "2596", "label": "Level 2596", "shape": "dot"}, {"color": "#97c2fc", "id": "524", "label": "Level 524", "shape": "dot"}, {"color": "#97c2fc", "id": "181", "label": "Level 181", "shape": "dot"}, {"color": "#97c2fc", "id": "303", "label": "Level 303", "shape": "dot"}, {"color": "#97c2fc", "id": "881", "label": "Level 881", "shape": "dot"}, {"color": "#97c2fc", "id": "523", "label": "Level 523", "shape": "dot"}, {"color": "#97c2fc", "id": "871", "label": "Level 871", "shape": "dot"}, {"color": "#97c2fc", "id": "7357", "label": "Level 7357", "shape": "dot"}, {"color": "#97c2fc", "id": "62", "label": "Level 62", "shape": "dot"}, {"color": "#97c2fc", "id": "9.4", "label": "Level 9.4", "shape": "dot"}, {"color": "#97c2fc", "id": "8999", "label": "Level 8999", "shape": "dot"}, {"color": "#97c2fc", "id": "0.111", "label": "Level 0.111", "shape": "dot"}, {"color": "#97c2fc", "id": "496", "label": "Level 496", "shape": "dot"}, {"color": "#97c2fc", "id": "848", "label": "Level 848", "shape": "dot"}, {"color": "#97c2fc", "id": "5345", "label": "Level 5345", "shape": "dot"}, {"color": "#97c2fc", "id": "0.99", "label": "Level 0.99", "shape": "dot"}, {"color": "#97c2fc", "id": "3422", "label": "Level 3422", "shape": "dot"}, {"color": "#97c2fc", "id": "428", "label": "Level 428", "shape": "dot"}, {"color": "#97c2fc", "id": "1447", "label": "Level 1447", "shape": "dot"}, {"color": "#97c2fc", "id": "52", "label": "Level 52", "shape": "dot"}, {"color": "#97c2fc", "id": "3999.1", "label": "Level 3999.1", "shape": "dot"}, {"color": "#97c2fc", "id": "808", "label": "Level 808", "shape": "dot"}, {"color": "#97c2fc", "id": "704", "label": "Level 704", "shape": "dot"}, {"color": "#97c2fc", "id": "307", "label": "Level 307", "shape": "dot"}, {"color": "#97c2fc", "id": "381", "label": "Level 381", "shape": "dot"}, {"color": "#97c2fc", "id": "3210", "label": "Level 3210", "shape": "dot"}, {"color": "#97c2fc", "id": "282", "label": "Level 282", "shape": "dot"}, {"color": "#97c2fc", "id": "215", "label": "Level 215", "shape": "dot"}, {"color": "#97c2fc", "id": "367", "label": "Level 367", "shape": "dot"}, {"color": "#97c2fc", "id": "876", "label": "Level 876", "shape": "dot"}, {"color": "#97c2fc", "id": "1390", "label": "Level 1390", "shape": "dot"}, {"color": "#97c2fc", "id": "0.15", "label": "Level 0.15", "shape": "dot"}, {"color": "#97c2fc", "id": "383", "label": "Level 383", "shape": "dot"}, {"color": "#97c2fc", "id": "838", "label": "Level 838", "shape": "dot"}, {"color": "#97c2fc", "id": "711", "label": "Level 711", "shape": "dot"}, {"color": "#97c2fc", "id": "163", "label": "Level 163", "shape": "dot"}, {"color": "#97c2fc", "id": "153", "label": "Level 153", "shape": "dot"}, {"color": "#97c2fc", "id": "2241", "label": "Level 2241", "shape": "dot"}, {"color": "#97c2fc", "id": "4006", "label": "Level 4006", "shape": "dot"}, {"color": "#97c2fc", "id": "313", "label": "Level 313", "shape": "dot"}, {"color": "#97c2fc", "id": "6820", "label": "Level 6820", "shape": "dot"}, {"color": "#97c2fc", "id": "889", "label": "Level 889", "shape": "dot"}, {"color": "#97c2fc", "id": "3004", "label": "Level 3004", "shape": "dot"}, {"color": "#97c2fc", "id": "214", "label": "Level 214", "shape": "dot"}, {"color": "#97c2fc", "id": "300", "label": "Level 300", "shape": "dot"}, {"color": "#97c2fc", "id": "1329", "label": "Level 1329", "shape": "dot"}, {"color": "#97c2fc", "id": "572", "label": "Level 572", "shape": "dot"}, {"color": "#97c2fc", "id": "839", "label": "Level 839", "shape": "dot"}, {"color": "#97c2fc", "id": "812", "label": "Level 812", "shape": "dot"}, {"color": "#97c2fc", "id": "2179", "label": "Level 2179", "shape": "dot"}, {"color": "#97c2fc", "id": "673", "label": "Level 673", "shape": "dot"}, {"color": "#97c2fc", "id": "12788", "label": "Level 12788", "shape": "dot"}, {"color": "#97c2fc", "id": "9464", "label": "Level 9464", "shape": "dot"}, {"color": "#97c2fc", "id": "873", "label": "Level 873", "shape": "dot"}, {"color": "#97c2fc", "id": "247", "label": "Level 247", "shape": "dot"}, {"color": "#97c2fc", "id": "1045", "label": "Level 1045", "shape": "dot"}, {"color": "#97c2fc", "id": "1293", "label": "Level 1293", "shape": "dot"}, {"color": "#97c2fc", "id": "720", "label": "Level 720", "shape": "dot"}, {"color": "#97c2fc", "id": "2028", "label": "Level 2028", "shape": "dot"}, {"color": "#97c2fc", "id": "6.05", "label": "Level 6.05", "shape": "dot"}, {"color": "#97c2fc", "id": "1305", "label": "Level 1305", "shape": "dot"}, {"color": "#97c2fc", "id": "3.3", "label": "Level 3.3", "shape": "dot"}, {"color": "#97c2fc", "id": "188.7", "label": "Level 188.7", "shape": "dot"}, {"color": "#97c2fc", "id": "0.74", "label": "Level 0.74", "shape": "dot"}, {"color": "#97c2fc", "id": "4520", "label": "Level 4520", "shape": "dot"}, {"color": "#97c2fc", "id": "1543", "label": "Level 1543", "shape": "dot"}, {"color": "#97c2fc", "id": "4041", "label": "Level 4041", "shape": "dot"}, {"color": "#97c2fc", "id": "263", "label": "Level 263", "shape": "dot"}, {"color": "#97c2fc", "id": "469", "label": "Level 469", "shape": "dot"}, {"color": "#97c2fc", "id": "991", "label": "Level 991", "shape": "dot"}, {"color": "#97c2fc", "id": "7243", "label": "Level 7243", "shape": "dot"}, {"color": "#97c2fc", "id": "60", "label": "Level 60", "shape": "dot"}, {"color": "#97c2fc", "id": "484", "label": "Level 484", "shape": "dot"}, {"color": "#97c2fc", "id": "363", "label": "Level 363", "shape": "dot"}, {"color": "#97c2fc", "id": "3449", "label": "Level 3449", "shape": "dot"}, {"color": "#97c2fc", "id": "0.9", "label": "Level 0.9", "shape": "dot"}, {"color": "#97c2fc", "id": "1202", "label": "Level 1202", "shape": "dot"}, {"color": "#97c2fc", "id": "1791", "label": "Level 1791", "shape": "dot"}, {"color": "#97c2fc", "id": "380", "label": "Level 380", "shape": "dot"}, {"color": "#97c2fc", "id": "916.1", "label": "Level 916.1", "shape": "dot"}, {"color": "#97c2fc", "id": "4526", "label": "Level 4526", "shape": "dot"}, {"color": "#97c2fc", "id": "1106", "label": "Level 1106", "shape": "dot"}, {"color": "#97c2fc", "id": "545", "label": "Level 545", "shape": "dot"}, {"color": "#97c2fc", "id": "9733", "label": "Level 9733", "shape": "dot"}, {"color": "#97c2fc", "id": "1245", "label": "Level 1245", "shape": "dot"}, {"color": "#97c2fc", "id": "697", "label": "Level 697", "shape": "dot"}, {"color": "#97c2fc", "id": "357", "label": "Level 357", "shape": "dot"}, {"color": "#97c2fc", "id": "467", "label": "Level 467", "shape": "dot"}, {"color": "#97c2fc", "id": "597", "label": "Level 597", "shape": "dot"}, {"color": "#97c2fc", "id": "6478946", "label": "Level 6478946", "shape": "dot"}, {"color": "#97c2fc", "id": "359.3", "label": "Level 359.3", "shape": "dot"}, {"color": "#97c2fc", "id": "420", "label": "Level 420", "shape": "dot"}, {"color": "#97c2fc", "id": "24", "label": "Level 24", "shape": "dot"}, {"color": "#97c2fc", "id": "2845", "label": "Level 2845", "shape": "dot"}, {"color": "#97c2fc", "id": "4", "label": "Level 4", "shape": "dot"}, {"color": "#97c2fc", "id": "3128", "label": "Level 3128", "shape": "dot"}, {"color": "#97c2fc", "id": "899", "label": "Level 899", "shape": "dot"}, {"color": "#97c2fc", "id": "1038", "label": "Level 1038", "shape": "dot"}, {"color": "#97c2fc", "id": "386", "label": "Level 386", "shape": "dot"}, {"color": "#97c2fc", "id": "3324", "label": "Level 3324", "shape": "dot"}, {"color": "#97c2fc", "id": "3923", "label": "Level 3923", "shape": "dot"}, {"color": "#97c2fc", "id": "2358", "label": "Level 2358", "shape": "dot"}, {"color": "#97c2fc", "id": "930", "label": "Level 930", "shape": "dot"}, {"color": "#97c2fc", "id": "1058", "label": "Level 1058", "shape": "dot"}, {"color": "#97c2fc", "id": "431", "label": "Level 431", "shape": "dot"}, {"color": "#97c2fc", "id": "2014", "label": "Level 2014", "shape": "dot"}, {"color": "#97c2fc", "id": "658", "label": "Level 658", "shape": "dot"}, {"color": "#97c2fc", "id": "921", "label": "Level 921", "shape": "dot"}, {"color": "#97c2fc", "id": "2009", "label": "Level 2009", "shape": "dot"}, {"color": "#97c2fc", "id": "268", "label": "Level 268", "shape": "dot"}, {"color": "#97c2fc", "id": "576", "label": "Level 576", "shape": "dot"}, {"color": "#97c2fc", "id": "297", "label": "Level 297", "shape": "dot"}, {"color": "#97c2fc", "id": "531", "label": "Level 531", "shape": "dot"}, {"color": "#97c2fc", "id": "5024", "label": "Level 5024", "shape": "dot"}, {"color": "#97c2fc", "id": "2060", "label": "Level 2060", "shape": "dot"}, {"color": "#97c2fc", "id": "2031.3", "label": "Level 2031.3", "shape": "dot"}, {"color": "#97c2fc", "id": "1125", "label": "Level 1125", "shape": "dot"}, {"color": "#97c2fc", "id": "401", "label": "Level 401", "shape": "dot"}, {"color": "#97c2fc", "id": "353", "label": "Level 353", "shape": "dot"}, {"color": "#97c2fc", "id": "206", "label": "Level 206", "shape": "dot"}, {"color": "#97c2fc", "id": "1155", "label": "Level 1155", "shape": "dot"}, {"color": "#97c2fc", "id": "992", "label": "Level 992", "shape": "dot"}, {"color": "#97c2fc", "id": "440", "label": "Level 440", "shape": "dot"}, {"color": "#97c2fc", "id": "55", "label": "Level 55", "shape": "dot"}, {"color": "#97c2fc", "id": "977", "label": "Level 977", "shape": "dot"}, {"color": "#97c2fc", "id": "5410", "label": "Level 5410", "shape": "dot"}, {"color": "#97c2fc", "id": "193", "label": "Level 193", "shape": "dot"}, {"color": "#97c2fc", "id": "281", "label": "Level 281", "shape": "dot"}, {"color": "#97c2fc", "id": "472", "label": "Level 472", "shape": "dot"}, {"color": "#97c2fc", "id": "638", "label": "Level 638", "shape": "dot"}, {"color": "#97c2fc", "id": "1044", "label": "Level 1044", "shape": "dot"}, {"color": "#97c2fc", "id": "3191", "label": "Level 3191", "shape": "dot"}, {"color": "#97c2fc", "id": "907", "label": "Level 907", "shape": "dot"}, {"color": "#97c2fc", "id": "118", "label": "Level 118", "shape": "dot"}, {"color": "#97c2fc", "id": "93", "label": "Level 93", "shape": "dot"}, {"color": "#97c2fc", "id": "4849", "label": "Level 4849", "shape": "dot"}, {"color": "#97c2fc", "id": "659", "label": "Level 659", "shape": "dot"}, {"color": "#97c2fc", "id": "191", "label": "Level 191", "shape": "dot"}, {"color": "#97c2fc", "id": "1915", "label": "Level 1915", "shape": "dot"}, {"color": "#97c2fc", "id": "0.556", "label": "Level 0.556", "shape": "dot"}, {"color": "#97c2fc", "id": "969", "label": "Level 969", "shape": "dot"}, {"color": "#97c2fc", "id": "996", "label": "Level 996", "shape": "dot"}, {"color": "#97c2fc", "id": "941", "label": "Level 941", "shape": "dot"}, {"color": "#97c2fc", "id": "269", "label": "Level 269", "shape": "dot"}, {"color": "#97c2fc", "id": "831", "label": "Level 831", "shape": "dot"}, {"color": "#97c2fc", "id": "384", "label": "Level 384", "shape": "dot"}, {"color": "#97c2fc", "id": "1113", "label": "Level 1113", "shape": "dot"}, {"color": "#97c2fc", "id": "348", "label": "Level 348", "shape": "dot"}, {"color": "#97c2fc", "id": "1701", "label": "Level 1701", "shape": "dot"}, {"color": "#97c2fc", "id": "610", "label": "Level 610", "shape": "dot"}, {"color": "#97c2fc", "id": "183", "label": "Level 183", "shape": "dot"}, {"color": "#97c2fc", "id": "1881", "label": "Level 1881", "shape": "dot"}, {"color": "#97c2fc", "id": "579", "label": "Level 579", "shape": "dot"}, {"color": "#97c2fc", "id": "852", "label": "Level 852", "shape": "dot"}, {"color": "#97c2fc", "id": "271", "label": "Level 271", "shape": "dot"}, {"color": "#97c2fc", "id": "328", "label": "Level 328", "shape": "dot"}, {"color": "#97c2fc", "id": "474", "label": "Level 474", "shape": "dot"}, {"color": "#97c2fc", "id": "10.1", "label": "Level 10.1", "shape": "dot"}, {"color": "#97c2fc", "id": "1442", "label": "Level 1442", "shape": "dot"}, {"color": "#97c2fc", "id": "101", "label": "Level 101", "shape": "dot"}, {"color": "#97c2fc", "id": "735", "label": "Level 735", "shape": "dot"}, {"color": "#97c2fc", "id": "2057", "label": "Level 2057", "shape": "dot"}, {"color": "#97c2fc", "id": "2540", "label": "Level 2540", "shape": "dot"}, {"color": "#97c2fc", "id": "985", "label": "Level 985", "shape": "dot"}, {"color": "#97c2fc", "id": "1643", "label": "Level 1643", "shape": "dot"}, {"color": "#97c2fc", "id": "368", "label": "Level 368", "shape": "dot"}, {"color": "#97c2fc", "id": "1665", "label": "Level 1665", "shape": "dot"}, {"color": "#97c2fc", "id": "3920.1", "label": "Level 3920.1", "shape": "dot"}, {"color": "#97c2fc", "id": "5.5", "label": "Level 5.5", "shape": "dot"}, {"color": "#97c2fc", "id": "461", "label": "Level 461", "shape": "dot"}, {"color": "#97c2fc", "id": "315", "label": "Level 315", "shape": "dot"}, {"color": "#97c2fc", "id": "934", "label": "Level 934", "shape": "dot"}, {"color": "#97c2fc", "id": "747", "label": "Level 747", "shape": "dot"}, {"color": "#97c2fc", "id": "2.1", "label": "Level 2.1", "shape": "dot"}, {"color": "#97c2fc", "id": "2011", "label": "Level 2011", "shape": "dot"}, {"color": "#97c2fc", "id": "490", "label": "Level 490", "shape": "dot"}, {"color": "#97c2fc", "id": "671", "label": "Level 671", "shape": "dot"}, {"color": "#97c2fc", "id": "2436", "label": "Level 2436", "shape": "dot"}, {"color": "#97c2fc", "id": "853", "label": "Level 853", "shape": "dot"}, {"color": "#97c2fc", "id": "81984848", "label": "Level 81984848", "shape": "dot"}, {"color": "#97c2fc", "id": "1696", "label": "Level 1696", "shape": "dot"}, {"color": "#97c2fc", "id": "2020", "label": "Level 2020", "shape": "dot"}, {"color": "#97c2fc", "id": "510", "label": "Level 510", "shape": "dot"}, {"color": "#97c2fc", "id": "702", "label": "Level 702", "shape": "dot"}, {"color": "#97c2fc", "id": "123457", "label": "Level 123457", "shape": "dot"}, {"color": "#97c2fc", "id": "666", "label": "Level 666", "shape": "dot"}, {"color": "#97c2fc", "id": "2021", "label": "Level 2021", "shape": "dot"}, {"color": "#97c2fc", "id": "3827", "label": "Level 3827", "shape": "dot"}, {"color": "#97c2fc", "id": "1020", "label": "Level 1020", "shape": "dot"}, {"color": "#97c2fc", "id": "617", "label": "Level 617", "shape": "dot"}, {"color": "#97c2fc", "id": "241", "label": "Level 241", "shape": "dot"}, {"color": "#97c2fc", "id": "1940", "label": "Level 1940", "shape": "dot"}, {"color": "#97c2fc", "id": "687.1", "label": "Level 687.1", "shape": "dot"}, {"color": "#97c2fc", "id": "32", "label": "Level 32", "shape": "dot"}, {"color": "#97c2fc", "id": "743", "label": "Level 743", "shape": "dot"}, {"color": "#97c2fc", "id": "334", "label": "Level 334", "shape": "dot"}, {"color": "#97c2fc", "id": "2110", "label": "Level 2110", "shape": "dot"}, {"color": "#97c2fc", "id": "8565", "label": "Level 8565", "shape": "dot"}, {"color": "#97c2fc", "id": "756", "label": "Level 756", "shape": "dot"}, {"color": "#97c2fc", "id": "102", "label": "Level 102", "shape": "dot"}, {"color": "#97c2fc", "id": "1060", "label": "Level 1060", "shape": "dot"}, {"color": "#97c2fc", "id": "486", "label": "Level 486", "shape": "dot"}, {"color": "#97c2fc", "id": "76", "label": "Level 76", "shape": "dot"}, {"color": "#97c2fc", "id": "224", "label": "Level 224", "shape": "dot"}, {"color": "#97c2fc", "id": "1073", "label": "Level 1073", "shape": "dot"}, {"color": "#97c2fc", "id": "785", "label": "Level 785", "shape": "dot"}, {"color": "#97c2fc", "id": "438", "label": "Level 438", "shape": "dot"}, {"color": "#97c2fc", "id": "9999", "label": "Level 9999", "shape": "dot"}, {"color": "#97c2fc", "id": "117", "label": "Level 117", "shape": "dot"}, {"color": "#97c2fc", "id": "4287", "label": "Level 4287", "shape": "dot"}, {"color": "#97c2fc", "id": "22.1", "label": "Level 22.1", "shape": "dot"}, {"color": "#97c2fc", "id": "925", "label": "Level 925", "shape": "dot"}, {"color": "#97c2fc", "id": "4.66", "label": "Level 4.66", "shape": "dot"}, {"color": "#97c2fc", "id": "327", "label": "Level 327", "shape": "dot"}, {"color": "#97c2fc", "id": "22.2", "label": "Level 22.2", "shape": "dot"}, {"color": "#97c2fc", "id": "2029", "label": "Level 2029", "shape": "dot"}, {"color": "#97c2fc", "id": "1952", "label": "Level 1952", "shape": "dot"}, {"color": "#97c2fc", "id": "1089", "label": "Level 1089", "shape": "dot"}, {"color": "#97c2fc", "id": "3341", "label": "Level 3341", "shape": "dot"}, {"color": "#97c2fc", "id": "988", "label": "Level 988", "shape": "dot"}, {"color": "#97c2fc", "id": "816", "label": "Level 816", "shape": "dot"}, {"color": "#97c2fc", "id": "566", "label": "Level 566", "shape": "dot"}, {"color": "#97c2fc", "id": "842", "label": "Level 842", "shape": "dot"}, {"color": "#97c2fc", "id": "234", "label": "Level 234", "shape": "dot"}, {"color": "#97c2fc", "id": "537", "label": "Level 537", "shape": "dot"}, {"color": "#97c2fc", "id": "1053", "label": "Level 1053", "shape": "dot"}, {"color": "#97c2fc", "id": "287", "label": "Level 287", "shape": "dot"}, {"color": "#97c2fc", "id": "9204", "label": "Level 9204", "shape": "dot"}, {"color": "#97c2fc", "id": "1274.5", "label": "Level 1274.5", "shape": "dot"}, {"color": "#97c2fc", "id": "90", "label": "Level 90", "shape": "dot"}, {"color": "#97c2fc", "id": "938", "label": "Level 938", "shape": "dot"}, {"color": "#97c2fc", "id": "3635", "label": "Level 3635", "shape": "dot"}, {"color": "#97c2fc", "id": "21", "label": "Level 21", "shape": "dot"}, {"color": "#97c2fc", "id": "609", "label": "Level 609", "shape": "dot"}, {"color": "#97c2fc", "id": "1081", "label": "Level 1081", "shape": "dot"}, {"color": "#97c2fc", "id": "761", "label": "Level 761", "shape": "dot"}, {"color": "#97c2fc", "id": "362", "label": "Level 362", "shape": "dot"}, {"color": "#97c2fc", "id": "4177", "label": "Level 4177", "shape": "dot"}, {"color": "#97c2fc", "id": "190", "label": "Level 190", "shape": "dot"}, {"color": "#97c2fc", "id": "5500", "label": "Level 5500", "shape": "dot"}, {"color": "#97c2fc", "id": "869", "label": "Level 869", "shape": "dot"}, {"color": "#97c2fc", "id": "574", "label": "Level 574", "shape": "dot"}, {"color": "#97c2fc", "id": "249", "label": "Level 249", "shape": "dot"}, {"color": "#97c2fc", "id": "34", "label": "Level 34", "shape": "dot"}, {"color": "#97c2fc", "id": "864", "label": "Level 864", "shape": "dot"}, {"color": "#97c2fc", "id": "522", "label": "Level 522", "shape": "dot"}, {"color": "#97c2fc", "id": "137", "label": "Level 137", "shape": "dot"}, {"color": "#97c2fc", "id": "342", "label": "Level 342", "shape": "dot"}, {"color": "#97c2fc", "id": "33", "label": "Level 33", "shape": "dot"}, {"color": "#97c2fc", "id": "24.1", "label": "Level 24.1", "shape": "dot"}, {"color": "#97c2fc", "id": "6000", "label": "Level 6000", "shape": "dot"}, {"color": "#97c2fc", "id": "694", "label": "Level 694", "shape": "dot"}, {"color": "#97c2fc", "id": "1912.1", "label": "Level 1912.1", "shape": "dot"}, {"color": "#97c2fc", "id": "890", "label": "Level 890", "shape": "dot"}, {"color": "#97c2fc", "id": "7778", "label": "Level 7778", "shape": "dot"}, {"color": "#97c2fc", "id": "1684.1", "label": "Level 1684.1", "shape": "dot"}, {"color": "#97c2fc", "id": "73", "label": "Level 73", "shape": "dot"}, {"color": "#97c2fc", "id": "169", "label": "Level 169", "shape": "dot"}, {"color": "#97c2fc", "id": "3314", "label": "Level 3314", "shape": "dot"}, {"color": "#97c2fc", "id": "121", "label": "Level 121", "shape": "dot"}, {"color": "#97c2fc", "id": "1912", "label": "Level 1912", "shape": "dot"}, {"color": "#97c2fc", "id": "1023", "label": "Level 1023", "shape": "dot"}, {"color": "#97c2fc", "id": "54", "label": "Level 54", "shape": "dot"}, {"color": "#97c2fc", "id": "716", "label": "Level 716", "shape": "dot"}, {"color": "#97c2fc", "id": "417", "label": "Level 417", "shape": "dot"}, {"color": "#97c2fc", "id": "170", "label": "Level 170", "shape": "dot"}, {"color": "#97c2fc", "id": "485", "label": "Level 485", "shape": "dot"}, {"color": "#97c2fc", "id": "787", "label": "Level 787", "shape": "dot"}, {"color": "#97c2fc", "id": "7384", "label": "Level 7384", "shape": "dot"}, {"color": "#97c2fc", "id": "514", "label": "Level 514", "shape": "dot"}, {"color": "#97c2fc", "id": "435", "label": "Level 435", "shape": "dot"}, {"color": "#97c2fc", "id": "423", "label": "Level 423", "shape": "dot"}, {"color": "#97c2fc", "id": "4443", "label": "Level 4443", "shape": "dot"}, {"color": "#97c2fc", "id": "2240", "label": "Level 2240", "shape": "dot"}, {"color": "#97c2fc", "id": "37.065", "label": "Level 37.065", "shape": "dot"}, {"color": "#97c2fc", "id": "195", "label": "Level 195", "shape": "dot"}, {"color": "#97c2fc", "id": "264", "label": "Level 264", "shape": "dot"}, {"color": "#97c2fc", "id": "2010", "label": "Level 2010", "shape": "dot"}, {"color": "#97c2fc", "id": "176", "label": "Level 176", "shape": "dot"}, {"color": "#97c2fc", "id": "9668", "label": "Level 9668", "shape": "dot"}, {"color": "#97c2fc", "id": "208", "label": "Level 208", "shape": "dot"}, {"color": "#97c2fc", "id": "16", "label": "Level 16", "shape": "dot"}, {"color": "#97c2fc", "id": "825", "label": "Level 825", "shape": "dot"}, {"color": "#97c2fc", "id": "1690", "label": "Level 1690", "shape": "dot"}, {"color": "#97c2fc", "id": "1919", "label": "Level 1919", "shape": "dot"}, {"color": "#97c2fc", "id": "1955", "label": "Level 1955", "shape": "dot"}, {"color": "#97c2fc", "id": "1031", "label": "Level 1031", "shape": "dot"}, {"color": "#97c2fc", "id": "666.1", "label": "Level 666.1", "shape": "dot"}, {"color": "#97c2fc", "id": "4999", "label": "Level 4999", "shape": "dot"}, {"color": "#97c2fc", "id": "37.6", "label": "Level 37.6", "shape": "dot"}, {"color": "#97c2fc", "id": "1.85", "label": "Level 1.85", "shape": "dot"}, {"color": "#97c2fc", "id": "1079.1", "label": "Level 1079.1", "shape": "dot"}, {"color": "#97c2fc", "id": "1985", "label": "Level 1985", "shape": "dot"}, {"color": "#97c2fc", "id": "919", "label": "Level 919", "shape": "dot"}, {"color": "#97c2fc", "id": "689", "label": "Level 689", "shape": "dot"}, {"color": "#97c2fc", "id": "2350", "label": "Level 2350", "shape": "dot"}, {"color": "#97c2fc", "id": "1110", "label": "Level 1110", "shape": "dot"}, {"color": "#97c2fc", "id": "322", "label": "Level 322", "shape": "dot"}, {"color": "#97c2fc", "id": "3333", "label": "Level 3333", "shape": "dot"}, {"color": "#97c2fc", "id": "827", "label": "Level 827", "shape": "dot"}, {"color": "#97c2fc", "id": "1515.1", "label": "Level 1515.1", "shape": "dot"}, {"color": "#97c2fc", "id": "2555", "label": "Level 2555", "shape": "dot"}, {"color": "#97c2fc", "id": "9.1", "label": "Level 9.1", "shape": "dot"}, {"color": "#97c2fc", "id": "805", "label": "Level 805", "shape": "dot"}, {"color": "#97c2fc", "id": "1464.111111111", "label": "Level 1464.111111111", "shape": "dot"}, {"color": "#97c2fc", "id": "931", "label": "Level 931", "shape": "dot"}, {"color": "#97c2fc", "id": "550.1", "label": "Level 550.1", "shape": "dot"}, {"color": "#97c2fc", "id": "4909", "label": "Level 4909", "shape": "dot"}, {"color": "#97c2fc", "id": "788", "label": "Level 788", "shape": "dot"}, {"color": "#97c2fc", "id": "1337", "label": "Level 1337", "shape": "dot"}, {"color": "#97c2fc", "id": "0.39", "label": "Level 0.39", "shape": "dot"}, {"color": "#97c2fc", "id": "605", "label": "Level 605", "shape": "dot"}, {"color": "#97c2fc", "id": "7453", "label": "Level 7453", "shape": "dot"}, {"color": "#97c2fc", "id": "449", "label": "Level 449", "shape": "dot"}, {"color": "#97c2fc", "id": "7000", "label": "Level 7000", "shape": "dot"}, {"color": "#97c2fc", "id": "4827", "label": "Level 4827", "shape": "dot"}, {"color": "#97c2fc", "id": "541", "label": "Level 541", "shape": "dot"}, {"color": "#97c2fc", "id": "1243", "label": "Level 1243", "shape": "dot"}, {"color": "#97c2fc", "id": "42", "label": "Level 42", "shape": "dot"}, {"color": "#97c2fc", "id": "710", "label": "Level 710", "shape": "dot"}, {"color": "#97c2fc", "id": "188.4", "label": "Level 188.4", "shape": "dot"}, {"color": "#97c2fc", "id": "4018", "label": "Level 4018", "shape": "dot"}, {"color": "#97c2fc", "id": "1034", "label": "Level 1034", "shape": "dot"}, {"color": "#97c2fc", "id": "305", "label": "Level 305", "shape": "dot"}, {"color": "#97c2fc", "id": "203", "label": "Level 203", "shape": "dot"}, {"color": "#97c2fc", "id": "311", "label": "Level 311", "shape": "dot"}, {"color": "#97c2fc", "id": "59764", "label": "Level 59764", "shape": "dot"}, {"color": "#97c2fc", "id": "1097", "label": "Level 1097", "shape": "dot"}, {"color": "#97c2fc", "id": "652", "label": "Level 652", "shape": "dot"}, {"color": "#97c2fc", "id": "366", "label": "Level 366", "shape": "dot"}, {"color": "#97c2fc", "id": "732", "label": "Level 732", "shape": "dot"}, {"color": "#97c2fc", "id": "1064", "label": "Level 1064", "shape": "dot"}, {"color": "#97c2fc", "id": "4.5", "label": "Level 4.5", "shape": "dot"}, {"color": "#97c2fc", "id": "433", "label": "Level 433", "shape": "dot"}, {"color": "#97c2fc", "id": "1464", "label": "Level 1464", "shape": "dot"}, {"color": "#97c2fc", "id": "774", "label": "Level 774", "shape": "dot"}, {"color": "#97c2fc", "id": "1201", "label": "Level 1201", "shape": "dot"}, {"color": "#97c2fc", "id": "964", "label": "Level 964", "shape": "dot"}, {"color": "#97c2fc", "id": "897", "label": "Level 897", "shape": "dot"}, {"color": "#97c2fc", "id": "6885", "label": "Level 6885", "shape": "dot"}, {"color": "#97c2fc", "id": "789", "label": "Level 789", "shape": "dot"}, {"color": "#97c2fc", "id": "6327", "label": "Level 6327", "shape": "dot"}, {"color": "#97c2fc", "id": "13.8", "label": "Level 13.8", "shape": "dot"}, {"color": "#97c2fc", "id": "2755", "label": "Level 2755", "shape": "dot"}, {"color": "#97c2fc", "id": "823", "label": "Level 823", "shape": "dot"}, {"color": "#97c2fc", "id": "7.7", "label": "Level 7.7", "shape": "dot"}, {"color": "#97c2fc", "id": "475", "label": "Level 475", "shape": "dot"}, {"color": "#97c2fc", "id": "3141", "label": "Level 3141", "shape": "dot"}, {"color": "#97c2fc", "id": "2040", "label": "Level 2040", "shape": "dot"}, {"color": "#97c2fc", "id": "644", "label": "Level 644", "shape": "dot"}, {"color": "#97c2fc", "id": "43", "label": "Level 43", "shape": "dot"}, {"color": "#97c2fc", "id": "7001", "label": "Level 7001", "shape": "dot"}, {"color": "#97c2fc", "id": "2412", "label": "Level 2412", "shape": "dot"}, {"color": "#97c2fc", "id": "331", "label": "Level 331", "shape": "dot"}, {"color": "#97c2fc", "id": "9.6", "label": "Level 9.6", "shape": "dot"}, {"color": "#97c2fc", "id": "1000", "label": "Level 1000", "shape": "dot"}, {"color": "#97c2fc", "id": "2.5", "label": "Level 2.5", "shape": "dot"}, {"color": "#97c2fc", "id": "0.8", "label": "Level 0.8", "shape": "dot"}, {"color": "#97c2fc", "id": "3001.1", "label": "Level 3001.1", "shape": "dot"}, {"color": "#97c2fc", "id": "126", "label": "Level 126", "shape": "dot"}, {"color": "#97c2fc", "id": "6342", "label": "Level 6342", "shape": "dot"}, {"color": "#97c2fc", "id": "859", "label": "Level 859", "shape": "dot"}, {"color": "#97c2fc", "id": "892", "label": "Level 892", "shape": "dot"}, {"color": "#97c2fc", "id": "676", "label": "Level 676", "shape": "dot"}, {"color": "#97c2fc", "id": "243", "label": "Level 243", "shape": "dot"}, {"color": "#97c2fc", "id": "81", "label": "Level 81", "shape": "dot"}, {"color": "#97c2fc", "id": "3041", "label": "Level 3041", "shape": "dot"}, {"color": "#97c2fc", "id": "3313", "label": "Level 3313", "shape": "dot"}, {"color": "#97c2fc", "id": "205", "label": "Level 205", "shape": "dot"}, {"color": "#97c2fc", "id": "371", "label": "Level 371", "shape": "dot"}, {"color": "#97c2fc", "id": "325", "label": "Level 325", "shape": "dot"}, {"color": "#97c2fc", "id": "2372", "label": "Level 2372", "shape": "dot"}, {"color": "#97c2fc", "id": "3123", "label": "Level 3123", "shape": "dot"}, {"color": "#97c2fc", "id": "792", "label": "Level 792", "shape": "dot"}, {"color": "#97c2fc", "id": "552", "label": "Level 552", "shape": "dot"}, {"color": "#97c2fc", "id": "958", "label": "Level 958", "shape": "dot"}, {"color": "#97c2fc", "id": "337", "label": "Level 337", "shape": "dot"}, {"color": "#97c2fc", "id": "131", "label": "Level 131", "shape": "dot"}, {"color": "#97c2fc", "id": "9209", "label": "Level 9209", "shape": "dot"}, {"color": "#97c2fc", "id": "1224", "label": "Level 1224", "shape": "dot"}, {"color": "#97c2fc", "id": "200", "label": "Level 200", "shape": "dot"}, {"color": "#97c2fc", "id": "293", "label": "Level 293", "shape": "dot"}, {"color": "#97c2fc", "id": "885", "label": "Level 885", "shape": "dot"}, {"color": "#97c2fc", "id": "2987", "label": "Level 2987", "shape": "dot"}, {"color": "#97c2fc", "id": "284", "label": "Level 284", "shape": "dot"}, {"color": "#97c2fc", "id": "483", "label": "Level 483", "shape": "dot"}, {"color": "#97c2fc", "id": "111", "label": "Level 111", "shape": "dot"}, {"color": "#97c2fc", "id": "986", "label": "Level 986", "shape": "dot"}, {"color": "#97c2fc", "id": "26", "label": "Level 26", "shape": "dot"}, {"color": "#97c2fc", "id": "952", "label": "Level 952", "shape": "dot"}, {"color": "#97c2fc", "id": "1", "label": "Level 1", "shape": "dot"}, {"color": "#97c2fc", "id": "3999.3", "label": "Level 3999.3", "shape": "dot"}, {"color": "#97c2fc", "id": "1164", "label": "Level 1164", "shape": "dot"}, {"color": "#97c2fc", "id": "46", "label": "Level 46", "shape": "dot"}, {"color": "#97c2fc", "id": "410", "label": "Level 410", "shape": "dot"}, {"color": "#97c2fc", "id": "1975", "label": "Level 1975", "shape": "dot"}, {"color": "#97c2fc", "id": "982", "label": "Level 982", "shape": "dot"}, {"color": "#97c2fc", "id": "133", "label": "Level 133", "shape": "dot"}, {"color": "#97c2fc", "id": "142", "label": "Level 142", "shape": "dot"}, {"color": "#97c2fc", "id": "352", "label": "Level 352", "shape": "dot"}, {"color": "#97c2fc", "id": "112", "label": "Level 112", "shape": "dot"}, {"color": "#97c2fc", "id": "584", "label": "Level 584", "shape": "dot"}, {"color": "#97c2fc", "id": "619", "label": "Level 619", "shape": "dot"}, {"color": "#97c2fc", "id": "6.56", "label": "Level 6.56", "shape": "dot"}, {"color": "#97c2fc", "id": "283", "label": "Level 283", "shape": "dot"}, {"color": "#97c2fc", "id": "2805", "label": "Level 2805", "shape": "dot"}, {"color": "#97c2fc", "id": "993", "label": "Level 993", "shape": "dot"}, {"color": "#97c2fc", "id": "9000", "label": "Level 9000", "shape": "dot"}, {"color": "#97c2fc", "id": "10", "label": "Level 10", "shape": "dot"}, {"color": "#97c2fc", "id": "466", "label": "Level 466", "shape": "dot"}, {"color": "#97c2fc", "id": "42856", "label": "Level 42856", "shape": "dot"}, {"color": "#97c2fc", "id": "4.1", "label": "Level 4.1", "shape": "dot"}, {"color": "#97c2fc", "id": "415", "label": "Level 415", "shape": "dot"}, {"color": "#97c2fc", "id": "18.1", "label": "Level 18.1", "shape": "dot"}, {"color": "#97c2fc", "id": "6.3", "label": "Level 6.3", "shape": "dot"}, {"color": "#97c2fc", "id": "259", "label": "Level 259", "shape": "dot"}, {"color": "#97c2fc", "id": "4017", "label": "Level 4017", "shape": "dot"}, {"color": "#97c2fc", "id": "115", "label": "Level 115", "shape": "dot"}, {"color": "#97c2fc", "id": "650", "label": "Level 650", "shape": "dot"}, {"color": "#97c2fc", "id": "715", "label": "Level 715", "shape": "dot"}, {"color": "#97c2fc", "id": "9.5", "label": "Level 9.5", "shape": "dot"}, {"color": "#97c2fc", "id": "966", "label": "Level 966", "shape": "dot"}, {"color": "#97c2fc", "id": "6394", "label": "Level 6394", "shape": "dot"}, {"color": "#97c2fc", "id": "318.1", "label": "Level 318.1", "shape": "dot"}, {"color": "#97c2fc", "id": "3258", "label": "Level 3258", "shape": "dot"}, {"color": "#97c2fc", "id": "338", "label": "Level 338", "shape": "dot"}, {"color": "#97c2fc", "id": "663", "label": "Level 663", "shape": "dot"}, {"color": "#97c2fc", "id": "92", "label": "Level 92", "shape": "dot"}, {"color": "#97c2fc", "id": "1054", "label": "Level 1054", "shape": "dot"}, {"color": "#97c2fc", "id": "5965", "label": "Level 5965", "shape": "dot"}, {"color": "#97c2fc", "id": "178", "label": "Level 178", "shape": "dot"}, {"color": "#97c2fc", "id": "560", "label": "Level 560", "shape": "dot"}, {"color": "#97c2fc", "id": "277", "label": "Level 277", "shape": "dot"}, {"color": "#97c2fc", "id": "2.3", "label": "Level 2.3", "shape": "dot"}, {"color": "#97c2fc", "id": "28.1", "label": "Level 28.1", "shape": "dot"}, {"color": "#97c2fc", "id": "365", "label": "Level 365", "shape": "dot"}, {"color": "#97c2fc", "id": "149", "label": "Level 149", "shape": "dot"}, {"color": "#97c2fc", "id": "124.2", "label": "Level 124.2", "shape": "dot"}, {"color": "#97c2fc", "id": "69420", "label": "Level 69420", "shape": "dot"}, {"color": "#97c2fc", "id": "939", "label": "Level 939", "shape": "dot"}, {"color": "#97c2fc", "id": "2027", "label": "Level 2027", "shape": "dot"}, {"color": "#97c2fc", "id": "4112", "label": "Level 4112", "shape": "dot"}, {"color": "#97c2fc", "id": "8643", "label": "Level 8643", "shape": "dot"}, {"color": "#97c2fc", "id": "860", "label": "Level 860", "shape": "dot"}, {"color": "#97c2fc", "id": "4387", "label": "Level 4387", "shape": "dot"}, {"color": "#97c2fc", "id": "2916", "label": "Level 2916", "shape": "dot"}, {"color": "#97c2fc", "id": "1296", "label": "Level 1296", "shape": "dot"}, {"color": "#97c2fc", "id": "742", "label": "Level 742", "shape": "dot"}, {"color": "#97c2fc", "id": "3062", "label": "Level 3062", "shape": "dot"}, {"color": "#97c2fc", "id": "1960", "label": "Level 1960", "shape": "dot"}, {"color": "#97c2fc", "id": "762", "label": "Level 762", "shape": "dot"}, {"color": "#97c2fc", "id": "874", "label": "Level 874", "shape": "dot"}, {"color": "#97c2fc", "id": "19", "label": "Level 19", "shape": "dot"}, {"color": "#97c2fc", "id": "950", "label": "Level 950", "shape": "dot"}, {"color": "#97c2fc", "id": "4270", "label": "Level 4270", "shape": "dot"}, {"color": "#97c2fc", "id": "298", "label": "Level 298", "shape": "dot"}, {"color": "#97c2fc", "id": "291", "label": "Level 291", "shape": "dot"}, {"color": "#97c2fc", "id": "204", "label": "Level 204", "shape": "dot"}, {"color": "#97c2fc", "id": "7868", "label": "Level 7868", "shape": "dot"}, {"color": "#97c2fc", "id": "809", "label": "Level 809", "shape": "dot"}, {"color": "#97c2fc", "id": "11099", "label": "Level 11099", "shape": "dot"}, {"color": "#97c2fc", "id": "639", "label": "Level 639", "shape": "dot"}, {"color": "#97c2fc", "id": "95", "label": "Level 95", "shape": "dot"}, {"color": "#97c2fc", "id": "83", "label": "Level 83", "shape": "dot"}, {"color": "#97c2fc", "id": "959", "label": "Level 959", "shape": "dot"}, {"color": "#97c2fc", "id": "1180", "label": "Level 1180", "shape": "dot"}, {"color": "#97c2fc", "id": "728", "label": "Level 728", "shape": "dot"}, {"color": "#97c2fc", "id": "7879", "label": "Level 7879", "shape": "dot"}, {"color": "#97c2fc", "id": "2500", "label": "Level 2500", "shape": "dot"}, {"color": "#97c2fc", "id": "459", "label": "Level 459", "shape": "dot"}, {"color": "#97c2fc", "id": "1114", "label": "Level 1114", "shape": "dot"}, {"color": "#97c2fc", "id": "618", "label": "Level 618", "shape": "dot"}, {"color": "#97c2fc", "id": "1912.3", "label": "Level 1912.3", "shape": "dot"}, {"color": "#97c2fc", "id": "3999.2", "label": "Level 3999.2", "shape": "dot"}, {"color": "#97c2fc", "id": "4.3", "label": "Level 4.3", "shape": "dot"}, {"color": "#97c2fc", "id": "765", "label": "Level 765", "shape": "dot"}, {"color": "#97c2fc", "id": "132", "label": "Level 132", "shape": "dot"}, {"color": "#97c2fc", "id": "863", "label": "Level 863", "shape": "dot"}, {"color": "#97c2fc", "id": "600", "label": "Level 600", "shape": "dot"}, {"color": "#97c2fc", "id": "712", "label": "Level 712", "shape": "dot"}, {"color": "#97c2fc", "id": "591", "label": "Level 591", "shape": "dot"}, {"color": "#97c2fc", "id": "1799", "label": "Level 1799", "shape": "dot"}, {"color": "#97c2fc", "id": "1300", "label": "Level 1300", "shape": "dot"}, {"color": "#97c2fc", "id": "2133", "label": "Level 2133", "shape": "dot"}, {"color": "#97c2fc", "id": "1911", "label": "Level 1911", "shape": "dot"}, {"color": "#97c2fc", "id": "3670", "label": "Level 3670", "shape": "dot"}, {"color": "#97c2fc", "id": "8506", "label": "Level 8506", "shape": "dot"}, {"color": "#97c2fc", "id": "8192", "label": "Level 8192", "shape": "dot"}, {"color": "#97c2fc", "id": "2100", "label": "Level 2100", "shape": "dot"}, {"color": "#97c2fc", "id": "199", "label": "Level 199", "shape": "dot"}, {"color": "#97c2fc", "id": "1003", "label": "Level 1003", "shape": "dot"}, {"color": "#97c2fc", "id": "590", "label": "Level 590", "shape": "dot"}, {"color": "#97c2fc", "id": "665", "label": "Level 665", "shape": "dot"}, {"color": "#97c2fc", "id": "540", "label": "Level 540", "shape": "dot"}, {"color": "#97c2fc", "id": "2998", "label": "Level 2998", "shape": "dot"}, {"color": "#97c2fc", "id": "1921", "label": "Level 1921", "shape": "dot"}, {"color": "#97c2fc", "id": "1692", "label": "Level 1692", "shape": "dot"}, {"color": "#97c2fc", "id": "1025", "label": "Level 1025", "shape": "dot"}, {"color": "#97c2fc", "id": "339", "label": "Level 339", "shape": "dot"}, {"color": "#97c2fc", "id": "4.04", "label": "Level 4.04", "shape": "dot"}, {"color": "#97c2fc", "id": "625", "label": "Level 625", "shape": "dot"}, {"color": "#97c2fc", "id": "416", "label": "Level 416", "shape": "dot"}, {"color": "#97c2fc", "id": "796", "label": "Level 796", "shape": "dot"}, {"color": "#97c2fc", "id": "3030", "label": "Level 3030", "shape": "dot"}, {"color": "#97c2fc", "id": "411", "label": "Level 411", "shape": "dot"}, {"color": "#97c2fc", "id": "139", "label": "Level 139", "shape": "dot"}, {"color": "#97c2fc", "id": "3488", "label": "Level 3488", "shape": "dot"}, {"color": "#97c2fc", "id": "9.2", "label": "Level 9.2", "shape": "dot"}, {"color": "#97c2fc", "id": "207", "label": "Level 207", "shape": "dot"}, {"color": "#97c2fc", "id": "914", "label": "Level 914", "shape": "dot"}, {"color": "#97c2fc", "id": "948", "label": "Level 948", "shape": "dot"}, {"color": "#97c2fc", "id": "5.7", "label": "Level 5.7", "shape": "dot"}, {"color": "#97c2fc", "id": "593", "label": "Level 593", "shape": "dot"}, {"color": "#97c2fc", "id": "867", "label": "Level 867", "shape": "dot"}, {"color": "#97c2fc", "id": "5002", "label": "Level 5002", "shape": "dot"}, {"color": "#97c2fc", "id": "3718", "label": "Level 3718", "shape": "dot"}, {"color": "#97c2fc", "id": "11.1", "label": "Level 11.1", "shape": "dot"}, {"color": "#97c2fc", "id": "130.3", "label": "Level 130.3", "shape": "dot"}, {"color": "#97c2fc", "id": "1030", "label": "Level 1030", "shape": "dot"}, {"color": "#97c2fc", "id": "636", "label": "Level 636", "shape": "dot"}, {"color": "#97c2fc", "id": "749", "label": "Level 749", "shape": "dot"}, {"color": "#97c2fc", "id": "606", "label": "Level 606", "shape": "dot"}, {"color": "#97c2fc", "id": "369", "label": "Level 369", "shape": "dot"}, {"color": "#97c2fc", "id": "3745", "label": "Level 3745", "shape": "dot"}, {"color": "#97c2fc", "id": "202", "label": "Level 202", "shape": "dot"}, {"color": "#97c2fc", "id": "2885", "label": "Level 2885", "shape": "dot"}, {"color": "#97c2fc", "id": "3313.5", "label": "Level 3313.5", "shape": "dot"}, {"color": "#97c2fc", "id": "1289", "label": "Level 1289", "shape": "dot"}, {"color": "#97c2fc", "id": "684", "label": "Level 684", "shape": "dot"}, {"color": "#97c2fc", "id": "69", "label": "Level 69", "shape": "dot"}, {"color": "#97c2fc", "id": "216", "label": "Level 216", "shape": "dot"}, {"color": "#97c2fc", "id": "373", "label": "Level 373", "shape": "dot"}, {"color": "#97c2fc", "id": "701", "label": "Level 701", "shape": "dot"}, {"color": "#97c2fc", "id": "886", "label": "Level 886", "shape": "dot"}, {"color": "#97c2fc", "id": "731", "label": "Level 731", "shape": "dot"}, {"color": "#97c2fc", "id": "1286", "label": "Level 1286", "shape": "dot"}, {"color": "#97c2fc", "id": "3624", "label": "Level 3624", "shape": "dot"}, {"color": "#97c2fc", "id": "1835", "label": "Level 1835", "shape": "dot"}, {"color": "#97c2fc", "id": "0.4", "label": "Level 0.4", "shape": "dot"}, {"color": "#97c2fc", "id": "1040", "label": "Level 1040", "shape": "dot"}, {"color": "#97c2fc", "id": "621", "label": "Level 621", "shape": "dot"}, {"color": "#97c2fc", "id": "983", "label": "Level 983", "shape": "dot"}, {"color": "#97c2fc", "id": "9124", "label": "Level 9124", "shape": "dot"}, {"color": "#97c2fc", "id": "757", "label": "Level 757", "shape": "dot"}, {"color": "#97c2fc", "id": "187", "label": "Level 187", "shape": "dot"}, {"color": "#97c2fc", "id": "28", "label": "Level 28", "shape": "dot"}, {"color": "#97c2fc", "id": "130.4", "label": "Level 130.4", "shape": "dot"}, {"color": "#97c2fc", "id": "188.2", "label": "Level 188.2", "shape": "dot"}, {"color": "#97c2fc", "id": "1554", "label": "Level 1554", "shape": "dot"}, {"color": "#97c2fc", "id": "7677", "label": "Level 7677", "shape": "dot"}, {"color": "#97c2fc", "id": "330", "label": "Level 330", "shape": "dot"}, {"color": "#97c2fc", "id": "4142", "label": "Level 4142", "shape": "dot"}, {"color": "#97c2fc", "id": "1984", "label": "Level 1984", "shape": "dot"}, {"color": "#97c2fc", "id": "1338", "label": "Level 1338", "shape": "dot"}, {"color": "#97c2fc", "id": "2836", "label": "Level 2836", "shape": "dot"}, {"color": "#97c2fc", "id": "529", "label": "Level 529", "shape": "dot"}, {"color": "#97c2fc", "id": "2310", "label": "Level 2310", "shape": "dot"}, {"color": "#97c2fc", "id": "4040", "label": "Level 4040", "shape": "dot"}, {"color": "#97c2fc", "id": "1012", "label": "Level 1012", "shape": "dot"}, {"color": "#97c2fc", "id": "103", "label": "Level 103", "shape": "dot"}, {"color": "#97c2fc", "id": "614", "label": "Level 614", "shape": "dot"}, {"color": "#97c2fc", "id": "497", "label": "Level 497", "shape": "dot"}, {"color": "#97c2fc", "id": "967", "label": "Level 967", "shape": "dot"}, {"color": "#97c2fc", "id": "578", "label": "Level 578", "shape": "dot"}, {"color": "#97c2fc", "id": "7069", "label": "Level 7069", "shape": "dot"}, {"color": "#97c2fc", "id": "920", "label": "Level 920", "shape": "dot"}, {"color": "#97c2fc", "id": "951", "label": "Level 951", "shape": "dot"}, {"color": "#97c2fc", "id": "858", "label": "Level 858", "shape": "dot"}, {"color": "#97c2fc", "id": "4251", "label": "Level 4251", "shape": "dot"}, {"color": "#97c2fc", "id": "11875", "label": "Level 11875", "shape": "dot"}, {"color": "#97c2fc", "id": "310", "label": "Level 310", "shape": "dot"}, {"color": "#97c2fc", "id": "7419", "label": "Level 7419", "shape": "dot"}, {"color": "#97c2fc", "id": "3890", "label": "Level 3890", "shape": "dot"}, {"color": "#97c2fc", "id": "39", "label": "Level 39", "shape": "dot"}, {"color": "#97c2fc", "id": "37", "label": "Level 37", "shape": "dot"}, {"color": "#97c2fc", "id": "615", "label": "Level 615", "shape": "dot"}, {"color": "#97c2fc", "id": "686", "label": "Level 686", "shape": "dot"}, {"color": "#97c2fc", "id": "2187.1", "label": "Level 2187.1", "shape": "dot"}, {"color": "#97c2fc", "id": "4857", "label": "Level 4857", "shape": "dot"}, {"color": "#97c2fc", "id": "3", "label": "Level 3", "shape": "dot"}, {"color": "#97c2fc", "id": "1906", "label": "Level 1906", "shape": "dot"}, {"color": "#97c2fc", "id": "3.2", "label": "Level 3.2", "shape": "dot"}, {"color": "#97c2fc", "id": "9.9", "label": "Level 9.9", "shape": "dot"}, {"color": "#97c2fc", "id": "968", "label": "Level 968", "shape": "dot"}, {"color": "#97c2fc", "id": "492.1", "label": "Level 492.1", "shape": "dot"}, {"color": "#97c2fc", "id": "439", "label": "Level 439", "shape": "dot"}, {"color": "#97c2fc", "id": "8008", "label": "Level 8008", "shape": "dot"}, {"color": "#97c2fc", "id": "130", "label": "Level 130", "shape": "dot"}, {"color": "#97c2fc", "id": "722", "label": "Level 722", "shape": "dot"}, {"color": "#97c2fc", "id": "698", "label": "Level 698", "shape": "dot"}, {"color": "#97c2fc", "id": "8.6", "label": "Level 8.6", "shape": "dot"}, {"color": "#97c2fc", "id": "555", "label": "Level 555", "shape": "dot"}, {"color": "#97c2fc", "id": "479.6", "label": "Level 479.6", "shape": "dot"}, {"color": "#97c2fc", "id": "878", "label": "Level 878", "shape": "dot"}, {"color": "#97c2fc", "id": "1995", "label": "Level 1995", "shape": "dot"}, {"color": "#97c2fc", "id": "679.1", "label": "Level 679.1", "shape": "dot"}, {"color": "#97c2fc", "id": "667", "label": "Level 667", "shape": "dot"}, {"color": "#97c2fc", "id": "793.3", "label": "Level 793.3", "shape": "dot"}, {"color": "#97c2fc", "id": "3009", "label": "Level 3009", "shape": "dot"}, {"color": "#97c2fc", "id": "413.1", "label": "Level 413.1", "shape": "dot"}, {"color": "#97c2fc", "id": "1500", "label": "Level 1500", "shape": "dot"}, {"color": "#97c2fc", "id": "754", "label": "Level 754", "shape": "dot"}, {"color": "#97c2fc", "id": "1027", "label": "Level 1027", "shape": "dot"}, {"color": "#97c2fc", "id": "232", "label": "Level 232", "shape": "dot"}, {"color": "#97c2fc", "id": "834", "label": "Level 834", "shape": "dot"}, {"color": "#97c2fc", "id": "320", "label": "Level 320", "shape": "dot"}, {"color": "#97c2fc", "id": "943", "label": "Level 943", "shape": "dot"}, {"color": "#97c2fc", "id": "670", "label": "Level 670", "shape": "dot"}, {"color": "#97c2fc", "id": "219", "label": "Level 219", "shape": "dot"}, {"color": "#97c2fc", "id": "65536", "label": "Level 65536", "shape": "dot"}, {"color": "#97c2fc", "id": "965", "label": "Level 965", "shape": "dot"}, {"color": "#97c2fc", "id": "1144", "label": "Level 1144", "shape": "dot"}, {"color": "#97c2fc", "id": "1107", "label": "Level 1107", "shape": "dot"}, {"color": "#97c2fc", "id": "1005", "label": "Level 1005", "shape": "dot"}, {"color": "#97c2fc", "id": "302", "label": "Level 302", "shape": "dot"}, {"color": "#97c2fc", "id": "146", "label": "Level 146", "shape": "dot"}, {"color": "#97c2fc", "id": "27", "label": "Level 27", "shape": "dot"}, {"color": "#97c2fc", "id": "9797", "label": "Level 9797", "shape": "dot"}, {"color": "#97c2fc", "id": "37.7", "label": "Level 37.7", "shape": "dot"}, {"color": "#97c2fc", "id": "336", "label": "Level 336", "shape": "dot"}, {"color": "#97c2fc", "id": "233", "label": "Level 233", "shape": "dot"}, {"color": "#97c2fc", "id": "8561", "label": "Level 8561", "shape": "dot"}, {"color": "#97c2fc", "id": "915", "label": "Level 915", "shape": "dot"}, {"color": "#97c2fc", "id": "9202", "label": "Level 9202", "shape": "dot"}, {"color": "#97c2fc", "id": "450", "label": "Level 450", "shape": "dot"}, {"color": "#97c2fc", "id": "1011", "label": "Level 1011", "shape": "dot"}, {"color": "#97c2fc", "id": "1056", "label": "Level 1056", "shape": "dot"}, {"color": "#97c2fc", "id": "672", "label": "Level 672", "shape": "dot"}, {"color": "#97c2fc", "id": "134", "label": "Level 134", "shape": "dot"}, {"color": "#97c2fc", "id": "321", "label": "Level 321", "shape": "dot"}, {"color": "#97c2fc", "id": "851", "label": "Level 851", "shape": "dot"}, {"color": "#97c2fc", "id": "868", "label": "Level 868", "shape": "dot"}, {"color": "#97c2fc", "id": "3075", "label": "Level 3075", "shape": "dot"}, {"color": "#97c2fc", "id": "10.2", "label": "Level 10.2", "shape": "dot"}, {"color": "#97c2fc", "id": "2042", "label": "Level 2042", "shape": "dot"}, {"color": "#97c2fc", "id": "135", "label": "Level 135", "shape": "dot"}, {"color": "#97c2fc", "id": "763", "label": "Level 763", "shape": "dot"}, {"color": "#97c2fc", "id": "9991", "label": "Level 9991", "shape": "dot"}, {"color": "#97c2fc", "id": "971", "label": "Level 971", "shape": "dot"}, {"color": "#97c2fc", "id": "726", "label": "Level 726", "shape": "dot"}, {"color": "#97c2fc", "id": "1111", "label": "Level 1111", "shape": "dot"}, {"color": "#97c2fc", "id": "89", "label": "Level 89", "shape": "dot"}, {"color": "#97c2fc", "id": "8888", "label": "Level 8888", "shape": "dot"}, {"color": "#97c2fc", "id": "513", "label": "Level 513", "shape": "dot"}, {"color": "#97c2fc", "id": "3800", "label": "Level 3800", "shape": "dot"}, {"color": "#97c2fc", "id": "1883", "label": "Level 1883", "shape": "dot"}, {"color": "#97c2fc", "id": "413", "label": "Level 413", "shape": "dot"}, {"color": "#97c2fc", "id": "2121", "label": "Level 2121", "shape": "dot"}, {"color": "#97c2fc", "id": "9123", "label": "Level 9123", "shape": "dot"}, {"color": "#97c2fc", "id": "361", "label": "Level 361", "shape": "dot"}, {"color": "#97c2fc", "id": "932", "label": "Level 932", "shape": "dot"}, {"color": "#97c2fc", "id": "75", "label": "Level 75", "shape": "dot"}, {"color": "#97c2fc", "id": "9390", "label": "Level 9390", "shape": "dot"}, {"color": "#97c2fc", "id": "1415", "label": "Level 1415", "shape": "dot"}, {"color": "#97c2fc", "id": "942", "label": "Level 942", "shape": "dot"}, {"color": "#97c2fc", "id": "1342", "label": "Level 1342", "shape": "dot"}, {"color": "#97c2fc", "id": "1079", "label": "Level 1079", "shape": "dot"}, {"color": "#97c2fc", "id": "1547", "label": "Level 1547", "shape": "dot"}, {"color": "#97c2fc", "id": "1635", "label": "Level 1635", "shape": "dot"}, {"color": "#97c2fc", "id": "1609", "label": "Level 1609", "shape": "dot"}, {"color": "#97c2fc", "id": "908", "label": "Level 908", "shape": "dot"}, {"color": "#97c2fc", "id": "246", "label": "Level 246", "shape": "dot"}, {"color": "#97c2fc", "id": "833", "label": "Level 833", "shape": "dot"}, {"color": "#97c2fc", "id": "231", "label": "Level 231", "shape": "dot"}, {"color": "#97c2fc", "id": "37.212", "label": "Level 37.212", "shape": "dot"}, {"color": "#97c2fc", "id": "394", "label": "Level 394", "shape": "dot"}, {"color": "#97c2fc", "id": "1043", "label": "Level 1043", "shape": "dot"}, {"color": "#97c2fc", "id": "1276", "label": "Level 1276", "shape": "dot"}, {"color": "#97c2fc", "id": "66", "label": "Level 66", "shape": "dot"}, {"color": "#97c2fc", "id": "5556", "label": "Level 5556", "shape": "dot"}, {"color": "#97c2fc", "id": "2004", "label": "Level 2004", "shape": "dot"}, {"color": "#97c2fc", "id": "708", "label": "Level 708", "shape": "dot"}, {"color": "#97c2fc", "id": "681", "label": "Level 681", "shape": "dot"}, {"color": "#97c2fc", "id": "2354", "label": "Level 2354", "shape": "dot"}, {"color": "#97c2fc", "id": "949", "label": "Level 949", "shape": "dot"}, {"color": "#97c2fc", "id": "6339", "label": "Level 6339", "shape": "dot"}, {"color": "#97c2fc", "id": "19.1", "label": "Level 19.1", "shape": "dot"}, {"color": "#97c2fc", "id": "200.2", "label": "Level 200.2", "shape": "dot"}, {"color": "#97c2fc", "id": "6969", "label": "Level 6969", "shape": "dot"}, {"color": "#97c2fc", "id": "207.1", "label": "Level 207.1", "shape": "dot"}, {"color": "#97c2fc", "id": "58", "label": "Level 58", "shape": "dot"}, {"color": "#97c2fc", "id": "4.4", "label": "Level 4.4", "shape": "dot"}, {"color": "#97c2fc", "id": "8198", "label": "Level 8198", "shape": "dot"}, {"color": "#97c2fc", "id": "346", "label": "Level 346", "shape": "dot"}, {"color": "#97c2fc", "id": "1863", "label": "Level 1863", "shape": "dot"}, {"color": "#97c2fc", "id": "820", "label": "Level 820", "shape": "dot"}, {"color": "#97c2fc", "id": "109", "label": "Level 109", "shape": "dot"}, {"color": "#97c2fc", "id": "4273", "label": "Level 4273", "shape": "dot"}, {"color": "#97c2fc", "id": "1997", "label": "Level 1997", "shape": "dot"}, {"color": "#97c2fc", "id": "543", "label": "Level 543", "shape": "dot"}, {"color": "#97c2fc", "id": "8046", "label": "Level 8046", "shape": "dot"}, {"color": "#97c2fc", "id": "1195.22", "label": "Level 1195.22", "shape": "dot"}, {"color": "#97c2fc", "id": "775", "label": "Level 775", "shape": "dot"}, {"color": "#97c2fc", "id": "1998", "label": "Level 1998", "shape": "dot"}]);
edges = new vis.DataSet([{"from": "8643", "to": "965"}, {"from": "3", "to": "1.1"}, {"from": "11", "to": "289"}, {"from": "8643", "to": "616"}, {"from": "37.7", "to": "37.5"}, {"from": "8643", "to": "308"}, {"from": "8643", "to": "851"}, {"from": "201", "to": "31"}, {"from": "4.04", "to": "444"}, {"from": "37", "to": "450"}, {"from": "92", "to": "210"}, {"from": "8643", "to": "58"}, {"from": "11", "to": "11.5"}, {"from": "224", "to": "4"}, {"from": "5000", "to": "952"}, {"from": "687", "to": "687.2"}, {"from": "1547", "to": "338"}, {"from": "8643", "to": "353"}, {"from": "8643", "to": "257"}, {"from": "8643", "to": "167"}, {"from": "2003", "to": "2004"}, {"from": "492.1", "to": "54"}, {"from": "455", "to": "456"}, {"from": "57", "to": "58"}, {"from": "8643", "to": "886"}, {"from": "112", "to": "113"}, {"from": "140", "to": "1597"}, {"from": "37", "to": "37.91"}, {"from": "27", "to": "28"}, {"from": "37", "to": "265"}, {"from": "1237", "to": "799"}, {"from": "512", "to": "741"}, {"from": "1010", "to": "1011"}, {"from": "8643", "to": "386"}, {"from": "12", "to": "6339"}, {"from": "550", "to": "8561"}, {"from": "188.8", "to": "211"}, {"from": "1984", "to": "18"}, {"from": "610", "to": "1031"}, {"from": "104", "to": "323"}, {"from": "17", "to": "870"}, {"from": "1206", "to": "1207"}, {"from": "11", "to": "1548"}, {"from": "8", "to": "458"}, {"from": "11", "to": "427"}, {"from": "1597", "to": "0"}, {"from": "8643", "to": "875"}, {"from": "6339", "to": "7013"}, {"from": "152", "to": "253"}, {"from": "0", "to": "628"}, {"from": "874", "to": "9"}, {"from": "795", "to": "796"}, {"from": "1970", "to": "9"}, {"from": "0", "to": "1311"}, {"from": "0", "to": "253"}, {"from": "7.1", "to": "73"}, {"from": "73", "to": "0"}, {"from": "0.74", "to": "0"}, {"from": "518", "to": "911"}, {"from": "6", "to": "503"}, {"from": "8643", "to": "99"}, {"from": "8643", "to": "578"}, {"from": "60", "to": "974"}, {"from": "0.7", "to": "334"}, {"from": "2.3", "to": "2.1"}, {"from": "3850", "to": "37"}, {"from": "1819", "to": "1390"}, {"from": "666", "to": "954"}, {"from": "1443", "to": "1819"}, {"from": "3420", "to": "3041"}, {"from": "1921", "to": "684"}, {"from": "8643", "to": "217"}, {"from": "188", "to": "5304"}, {"from": "358", "to": "27"}, {"from": "724", "to": "1180"}, {"from": "1700", "to": "684"}, {"from": "52", "to": "53"}, {"from": "3420", "to": "3421"}, {"from": "9", "to": "590"}, {"from": "389", "to": "390"}, {"from": "1250", "to": "1210"}, {"from": "8643", "to": "119"}, {"from": "610", "to": "30"}, {"from": "891", "to": "34"}, {"from": "1521", "to": "1890"}, {"from": "153", "to": "2"}, {"from": "94", "to": "95"}, {"from": "8643", "to": "677"}, {"from": "1045", "to": "244"}, {"from": "13", "to": "39"}, {"from": "8643", "to": "599"}, {"from": "359", "to": "359.2"}, {"from": "662", "to": "666"}, {"from": "691", "to": "82"}, {"from": "2240", "to": "2241"}, {"from": "24", "to": "23"}, {"from": "8643", "to": "465"}, {"from": "649", "to": "514"}, {"from": "3", "to": "3894"}, {"from": "0.11", "to": "4"}, {"from": "610", "to": "174"}, {"from": "8643", "to": "85"}, {"from": "8643", "to": "643"}, {"from": "3718", "to": "5"}, {"from": "8", "to": "7773"}, {"from": "2787", "to": "78"}, {"from": "73", "to": "96"}, {"from": "46", "to": "994"}, {"from": "8643", "to": "711"}, {"from": "8643", "to": "649"}, {"from": "5", "to": "5.7"}, {"from": "94", "to": "517"}, {"from": "1609", "to": "1906"}, {"from": "230", "to": "9"}, {"from": "8643", "to": "839"}, {"from": "0", "to": "0.5"}, {"from": "8643", "to": "284"}, {"from": "771", "to": "379"}, {"from": "234", "to": "253"}, {"from": "10", "to": "774"}, {"from": "214", "to": "226"}, {"from": "1998", "to": "3999"}, {"from": "1237.1", "to": "3314"}, {"from": "468", "to": "11"}, {"from": "58", "to": "15"}, {"from": "978", "to": "977"}, {"from": "8643", "to": "861"}, {"from": "11", "to": "1692"}, {"from": "143", "to": "144"}, {"from": "37.55", "to": "13"}, {"from": "8643", "to": "490"}, {"from": "17", "to": "18"}, {"from": "8643", "to": "458"}, {"from": "226", "to": "6"}, {"from": "230", "to": "237"}, {"from": "8643", "to": "403"}, {"from": "423", "to": "271"}, {"from": "5.4", "to": "5.7"}, {"from": "460", "to": "4"}, {"from": "6.05", "to": "11"}, {"from": "683", "to": "1296"}, {"from": "793", "to": "3999"}, {"from": "939", "to": "455"}, {"from": "8643", "to": "694"}, {"from": "869", "to": "869.1"}, {"from": "769", "to": "156"}, {"from": "607", "to": "999"}, {"from": "8643", "to": "537"}, {"from": "4", "to": "197"}, {"from": "2", "to": "1.1"}, {"from": "1000", "to": "1001"}, {"from": "8643", "to": "690"}, {"from": "3999", "to": "509"}, {"from": "858", "to": "793"}, {"from": "162", "to": "1684.1"}, {"from": "32", "to": "499.5"}, {"from": "985", "to": "345"}, {"from": "3", "to": "273"}, {"from": "666.1", "to": "667"}, {"from": "8009", "to": "1916"}, {"from": "67", "to": "245"}, {"from": "195", "to": "0"}, {"from": "8643", "to": "134"}, {"from": "8643", "to": "197"}, {"from": "0", "to": "1919"}, {"from": "9223372036854775808", "to": "3624"}, {"from": "0", "to": "76"}, {"from": "236", "to": "237"}, {"from": "595", "to": "6999"}, {"from": "371", "to": "382"}, {"from": "2", "to": "2.3"}, {"from": "193", "to": "26"}, {"from": "5", "to": "680"}, {"from": "2088", "to": "998"}, {"from": "951", "to": "136"}, {"from": "8643", "to": "343"}, {"from": "998", "to": "3"}, {"from": "92", "to": "214"}, {"from": "66", "to": "925"}, {"from": "37.01", "to": "3999"}, {"from": "8643", "to": "970"}, {"from": "7", "to": "2395"}, {"from": "873", "to": "100"}, {"from": "0", "to": "193"}, {"from": "435", "to": "1945"}, {"from": "55", "to": "564"}, {"from": "984", "to": "82"}, {"from": "8", "to": "495"}, {"from": "8643", "to": "710"}, {"from": "795", "to": "345"}, {"from": "34", "to": "51"}, {"from": "8643", "to": "277"}, {"from": "122", "to": "83"}, {"from": "8643", "to": "382"}, {"from": "8643", "to": "509"}, {"from": "150", "to": "849"}, {"from": "37.1", "to": "740"}, {"from": "98", "to": "0"}, {"from": "860", "to": "5"}, {"from": "8643", "to": "190"}, {"from": "1472", "to": "141"}, {"from": "121", "to": "315"}, {"from": "853", "to": "0"}, {"from": "7", "to": "1086"}, {"from": "620", "to": "541"}, {"from": "900", "to": "3999"}, {"from": "383", "to": "6"}, {"from": "5556", "to": "686"}, {"from": "411", "to": "495"}, {"from": "1040", "to": "1036"}, {"from": "11", "to": "3417"}, {"from": "871", "to": "884"}, {"from": "41", "to": "42"}, {"from": "8643", "to": "751"}, {"from": "16", "to": "738"}, {"from": "4112", "to": "477"}, {"from": "1256", "to": "1242"}, {"from": "479.6", "to": "480"}, {"from": "13", "to": "891"}, {"from": "784", "to": "12"}, {"from": "77", "to": "176"}, {"from": "100", "to": "289"}, {"from": "9019", "to": "1597"}, {"from": "8643", "to": "804"}, {"from": "10", "to": "2.1"}, {"from": "8643", "to": "307"}, {"from": "7", "to": "682"}, {"from": "55", "to": "2"}, {"from": "6.1", "to": "610"}, {"from": "318", "to": "3999"}, {"from": "5.1", "to": "11"}, {"from": "4000", "to": "4002"}, {"from": "1", "to": "858"}, {"from": "569", "to": "0"}, {"from": "72", "to": "1039"}, {"from": "8643", "to": "199"}, {"from": "1.13", "to": "4"}, {"from": "0", "to": "0.111"}, {"from": "847", "to": "1980"}, {"from": "234", "to": "0.8"}, {"from": "8643", "to": "871"}, {"from": "396", "to": "177"}, {"from": "287", "to": "2"}, {"from": "100", "to": "2027"}, {"from": "573", "to": "5"}, {"from": "456", "to": "232"}, {"from": "3800", "to": "3827"}, {"from": "8", "to": "7453"}, {"from": "199", "to": "0"}, {"from": "1011", "to": "11"}, {"from": "8643", "to": "33"}, {"from": "214", "to": "388"}, {"from": "370", "to": "380"}, {"from": "191", "to": "444"}, {"from": "42856", "to": "2395"}, {"from": "8643", "to": "495"}, {"from": "672", "to": "188"}, {"from": "8643", "to": "431"}, {"from": "8643", "to": "35"}, {"from": "204", "to": "205"}, {"from": "8643", "to": "149"}, {"from": "11", "to": "2916"}, {"from": "8643", "to": "373"}, {"from": "3920", "to": "3920.1"}, {"from": "65536", "to": "256"}, {"from": "1998", "to": "2"}, {"from": "8643", "to": "944"}, {"from": "2020", "to": "1619"}, {"from": "1819", "to": "1857"}, {"from": "8643", "to": "904"}, {"from": "4004", "to": "4006"}, {"from": "3", "to": "9209"}, {"from": "8643", "to": "969"}, {"from": "0", "to": "414"}, {"from": "10", "to": "7998"}, {"from": "741", "to": "39"}, {"from": "1", "to": "63"}, {"from": "462", "to": "1005"}, {"from": "8643", "to": "486"}, {"from": "771", "to": "49"}, {"from": "230", "to": "323"}, {"from": "299", "to": "453"}, {"from": "1819", "to": "100"}, {"from": "3314", "to": "1515"}, {"from": "693", "to": "805"}, {"from": "5.4", "to": "111"}, {"from": "8643", "to": "560"}, {"from": "9.4", "to": "7"}, {"from": "477", "to": "37"}, {"from": "858", "to": "9"}, {"from": "13", "to": "386"}, {"from": "0.666", "to": "67"}, {"from": "892", "to": "37"}, {"from": "3495", "to": "1044"}, {"from": "8643", "to": "122"}, {"from": "8643", "to": "425"}, {"from": "8643", "to": "258"}, {"from": "8643", "to": "950"}, {"from": "1", "to": "194"}, {"from": "8643", "to": "145"}, {"from": "0", "to": "1980"}, {"from": "867", "to": "974"}, {"from": "8643", "to": "223"}, {"from": "888", "to": "974"}, {"from": "55", "to": "0"}, {"from": "188", "to": "1674"}, {"from": "388", "to": "489"}, {"from": "11", "to": "6.1"}, {"from": "188", "to": "1078"}, {"from": "46", "to": "920"}, {"from": "610", "to": "3635"}, {"from": "9", "to": "197"}, {"from": "8643", "to": "410"}, {"from": "6342", "to": "9999"}, {"from": "73", "to": "4007"}, {"from": "9.8", "to": "9"}, {"from": "5", "to": "782"}, {"from": "382", "to": "1390"}, {"from": "6.1", "to": "0.15"}, {"from": "11", "to": "1.3"}, {"from": "331", "to": "0"}, {"from": "534", "to": "0.7"}, {"from": "4368", "to": "829"}, {"from": "35", "to": "996"}, {"from": "287", "to": "0"}, {"from": "2999", "to": "3000"}, {"from": "78", "to": "79"}, {"from": "592", "to": "952"}, {"from": "843", "to": "1912"}, {"from": "8643", "to": "912"}, {"from": "66", "to": "78"}, {"from": "2.6", "to": "2"}, {"from": "9", "to": "970"}, {"from": "39", "to": "94"}, {"from": "1", "to": "188"}, {"from": "223", "to": "608"}, {"from": "221", "to": "7191"}, {"from": "188", "to": "289"}, {"from": "188", "to": "188.2"}, {"from": "130.4", "to": "226"}, {"from": "9", "to": "181"}, {"from": "209", "to": "210"}, {"from": "772", "to": "6"}, {"from": "67", "to": "37"}, {"from": "67", "to": "6886"}, {"from": "4444", "to": "4443"}, {"from": "47", "to": "407"}, {"from": "479", "to": "478"}, {"from": "315", "to": "998"}, {"from": "148", "to": "944"}, {"from": "567", "to": "796"}, {"from": "8643", "to": "675"}, {"from": "0.3", "to": "432"}, {"from": "2739", "to": "11"}, {"from": "950", "to": "1696"}, {"from": "1000", "to": "2023"}, {"from": "2845", "to": "40"}, {"from": "3999", "to": "1033"}, {"from": "1399", "to": "2"}, {"from": "8643", "to": "279"}, {"from": "468", "to": "469"}, {"from": "311", "to": "942"}, {"from": "153", "to": "512"}, {"from": "8643", "to": "917"}, {"from": "413.1", "to": "413"}, {"from": "7", "to": "43"}, {"from": "3999.1", "to": "6"}, {"from": "1234", "to": "1696"}, {"from": "11", "to": "11875"}, {"from": "261", "to": "262"}, {"from": "704", "to": "11"}, {"from": "7", "to": "7.3"}, {"from": "681", "to": "682"}, {"from": "8643", "to": "88"}, {"from": "1098", "to": "6.1"}, {"from": "804", "to": "20"}, {"from": "4.3", "to": "0.11"}, {"from": "1026", "to": "1027"}, {"from": "120", "to": "475"}, {"from": "777", "to": "666.1"}, {"from": "443", "to": "4"}, {"from": "37.9", "to": "37.6"}, {"from": "5.5", "to": "6"}, {"from": "12", "to": "796"}, {"from": "9.1", "to": "1543"}, {"from": "596.1", "to": "611"}, {"from": "826", "to": "318"}, {"from": "8643", "to": "115"}, {"from": "610", "to": "426"}, {"from": "492", "to": "11"}, {"from": "230", "to": "11"}, {"from": "923", "to": "11"}, {"from": "598", "to": "599"}, {"from": "11", "to": "606"}, {"from": "22", "to": "312"}, {"from": "7381", "to": "6"}, {"from": "768", "to": "1"}, {"from": "36", "to": "61"}, {"from": "0.1", "to": "0"}, {"from": "973", "to": "37.2"}, {"from": "985", "to": "297"}, {"from": "35", "to": "974"}, {"from": "11", "to": "430"}, {"from": "8643", "to": "695"}, {"from": "8643", "to": "22"}, {"from": "0", "to": "2097"}, {"from": "9", "to": "16.1"}, {"from": "0", "to": "23"}, {"from": "2040", "to": "2041"}, {"from": "1195", "to": "1195.01"}, {"from": "7", "to": "93"}, {"from": "36", "to": "1086"}, {"from": "939", "to": "314"}, {"from": "448", "to": "3513"}, {"from": "1023", "to": "1025"}, {"from": "37", "to": "1036"}, {"from": "4857", "to": "0"}, {"from": "4000", "to": "990"}, {"from": "153", "to": "4007"}, {"from": "8643", "to": "121"}, {"from": "9123", "to": "9124"}, {"from": "527", "to": "796"}, {"from": "8643", "to": "216"}, {"from": "2787", "to": "73"}, {"from": "1001", "to": "2666"}, {"from": "1390", "to": "11"}, {"from": "313", "to": "314"}, {"from": "608", "to": "1008"}, {"from": "1297", "to": "11"}, {"from": "8643", "to": "650"}, {"from": "584", "to": "136"}, {"from": "0.11", "to": "2"}, {"from": "1548", "to": "7"}, {"from": "8643", "to": "463"}, {"from": "8643", "to": "556"}, {"from": "8643", "to": "550"}, {"from": "0", "to": "0.39"}, {"from": "3624", "to": "2"}, {"from": "6", "to": "6.05"}, {"from": "252", "to": "0"}, {"from": "1521", "to": "810"}, {"from": "2028", "to": "3094"}, {"from": "5025", "to": "5000"}, {"from": "14", "to": "168"}, {"from": "13", "to": "1"}, {"from": "8643", "to": "757"}, {"from": "4004", "to": "73"}, {"from": "136", "to": "708"}, {"from": "437", "to": "388"}, {"from": "62", "to": "974"}, {"from": "2250", "to": "1347"}, {"from": "738", "to": "11"}, {"from": "8643", "to": "146"}, {"from": "1195", "to": "1"}, {"from": "1863", "to": "0"}, {"from": "944", "to": "19"}, {"from": "249", "to": "666"}, {"from": "4112", "to": "511"}, {"from": "8643", "to": "194"}, {"from": "970", "to": "971"}, {"from": "1209", "to": "1203"}, {"from": "14", "to": "114"}, {"from": "425", "to": "1482"}, {"from": "3826", "to": "3827"}, {"from": "1231", "to": "3"}, {"from": "11", "to": "11.72"}, {"from": "232", "to": "2007"}, {"from": "2137.5", "to": "41"}, {"from": "69", "to": "2754"}, {"from": "139", "to": "0"}, {"from": "8643", "to": "671"}, {"from": "7776", "to": "0"}, {"from": "37", "to": "907"}, {"from": "4999", "to": "4007"}, {"from": "778", "to": "342"}, {"from": "623", "to": "592"}, {"from": "1040", "to": "71"}, {"from": "8643", "to": "163"}, {"from": "8643", "to": "906"}, {"from": "8643", "to": "180"}, {"from": "724", "to": "2"}, {"from": "208", "to": "209"}, {"from": "323", "to": "27"}, {"from": "708", "to": "40"}, {"from": "3999", "to": "717"}, {"from": "47", "to": "48"}, {"from": "8643", "to": "36"}, {"from": "8643", "to": "948"}, {"from": "0", "to": "479"}, {"from": "1980", "to": "1980.1"}, {"from": "553", "to": "1921"}, {"from": "7.1", "to": "94"}, {"from": "974", "to": "757"}, {"from": "8643", "to": "666"}, {"from": "834", "to": "835"}, {"from": "1684", "to": "1684.1"}, {"from": "427", "to": "99"}, {"from": "3", "to": "15"}, {"from": "192", "to": "27"}, {"from": "8643", "to": "469"}, {"from": "892", "to": "0.7"}, {"from": "1011", "to": "7"}, {"from": "4.12", "to": "4"}, {"from": "4", "to": "61"}, {"from": "679", "to": "697"}, {"from": "318.1", "to": "953"}, {"from": "521", "to": "601"}, {"from": "11", "to": "20.5"}, {"from": "4008", "to": "4000"}, {"from": "18", "to": "34"}, {"from": "457", "to": "458"}, {"from": "8643", "to": "570"}, {"from": "610", "to": "112"}, {"from": "8643", "to": "958"}, {"from": "8643", "to": "188"}, {"from": "8643", "to": "641"}, {"from": "11.5", "to": "91"}, {"from": "2895", "to": "9223372036854775808"}, {"from": "709", "to": "796"}, {"from": "4.1", "to": "0"}, {"from": "11", "to": "6"}, {"from": "447", "to": "246"}, {"from": "9", "to": "9.6"}, {"from": "3009", "to": "83"}, {"from": "892", "to": "409"}, {"from": "840", "to": "6"}, {"from": "8643", "to": "61"}, {"from": "168", "to": "517"}, {"from": "11", "to": "965"}, {"from": "9999", "to": "4827"}, {"from": "8643", "to": "7"}, {"from": "9", "to": "675"}, {"from": "11", "to": "6469"}, {"from": "8", "to": "153"}, {"from": "998", "to": "999"}, {"from": "983", "to": "8999"}, {"from": "787", "to": "74"}, {"from": "624", "to": "629"}, {"from": "611.4", "to": "612"}, {"from": "3894", "to": "3900"}, {"from": "311", "to": "323"}, {"from": "188.8", "to": "37.1"}, {"from": "4006", "to": "72"}, {"from": "2", "to": "784"}, {"from": "683", "to": "1117"}, {"from": "8643", "to": "717"}, {"from": "143", "to": "11"}, {"from": "8643", "to": "847"}, {"from": "8191", "to": "1739"}, {"from": "65536", "to": "5"}, {"from": "429", "to": "84"}, {"from": "6.1", "to": "797"}, {"from": "8643", "to": "881"}, {"from": "8643", "to": "822"}, {"from": "1086", "to": "1087"}, {"from": "98", "to": "422"}, {"from": "592", "to": "458"}, {"from": "6478946", "to": "9.3"}, {"from": "674", "to": "244"}, {"from": "692", "to": "10"}, {"from": "5965", "to": "345"}, {"from": "5", "to": "251"}, {"from": "10", "to": "4816"}, {"from": "979", "to": "980"}, {"from": "6999", "to": "7000"}, {"from": "1070", "to": "3997"}, {"from": "687.1", "to": "812"}, {"from": "8643", "to": "656"}, {"from": "76", "to": "11"}, {"from": "770", "to": "1074"}, {"from": "1376", "to": "666"}, {"from": "22", "to": "404"}, {"from": "6565", "to": "1314"}, {"from": "849", "to": "754"}, {"from": "0", "to": "232"}, {"from": "9.9", "to": "0"}, {"from": "7", "to": "477"}, {"from": "1070", "to": "1806"}, {"from": "3008", "to": "380"}, {"from": "8643", "to": "305"}, {"from": "1019", "to": "0"}, {"from": "65", "to": "9"}, {"from": "7999", "to": "0"}, {"from": "568", "to": "142"}, {"from": "3999", "to": "561"}, {"from": "8643", "to": "945"}, {"from": "7191", "to": "561"}, {"from": "40", "to": "107"}, {"from": "858", "to": "11"}, {"from": "8643", "to": "16"}, {"from": "8001", "to": "8046"}, {"from": "1819", "to": "9"}, {"from": "387", "to": "609"}, {"from": "0", "to": "1800"}, {"from": "1.13", "to": "2"}, {"from": "593", "to": "539"}, {"from": "8643", "to": "976"}, {"from": "900", "to": "905"}, {"from": "22", "to": "87"}, {"from": "420", "to": "0"}, {"from": "332", "to": "333"}, {"from": "8643", "to": "674"}, {"from": "43", "to": "63"}, {"from": "8643", "to": "171"}, {"from": "3718", "to": "6.1"}, {"from": "547", "to": "2"}, {"from": "1", "to": "93"}, {"from": "483", "to": "239"}, {"from": "11", "to": "1206"}, {"from": "0", "to": "95"}, {"from": "1089", "to": "592"}, {"from": "266", "to": "1370"}, {"from": "0.02", "to": "0"}, {"from": "611.1", "to": "58"}, {"from": "7381", "to": "1"}, {"from": "1608", "to": "1609"}, {"from": "208", "to": "275"}, {"from": "610", "to": "129"}, {"from": "6978", "to": "24"}, {"from": "3", "to": "700"}, {"from": "795", "to": "6"}, {"from": "100", "to": "200"}, {"from": "65", "to": "66"}, {"from": "69", "to": "919"}, {"from": "22", "to": "49"}, {"from": "165", "to": "3999"}, {"from": "11", "to": "1026"}, {"from": "51", "to": "52"}, {"from": "8643", "to": "139"}, {"from": "948", "to": "8"}, {"from": "0", "to": "642"}, {"from": "8643", "to": "561"}, {"from": "974", "to": "16"}, {"from": "1075", "to": "278"}, {"from": "11", "to": "83"}, {"from": "9.1", "to": "276"}, {"from": "8643", "to": "798"}, {"from": "999", "to": "1311"}, {"from": "380", "to": "173"}, {"from": "813", "to": "1368"}, {"from": "8643", "to": "863"}, {"from": "32", "to": "136"}, {"from": "2060", "to": "6999"}, {"from": "8561", "to": "8643"}, {"from": "8198", "to": "758"}, {"from": "381", "to": "7"}, {"from": "648", "to": "18"}, {"from": "612", "to": "613"}, {"from": "735", "to": "0"}, {"from": "371", "to": "521"}, {"from": "8643", "to": "934"}, {"from": "233", "to": "323"}, {"from": "346", "to": "347"}, {"from": "132", "to": "6"}, {"from": "589", "to": "952"}, {"from": "442", "to": "317"}, {"from": "220", "to": "0.8"}, {"from": "60", "to": "59"}, {"from": "412", "to": "1022"}, {"from": "10.001", "to": "14"}, {"from": "1948", "to": "999"}, {"from": "7", "to": "152"}, {"from": "3999", "to": "680"}, {"from": "693", "to": "11099"}, {"from": "8643", "to": "102"}, {"from": "73", "to": "4006"}, {"from": "130", "to": "130.4"}, {"from": "1290", "to": "6"}, {"from": "0.2", "to": "0.1"}, {"from": "447", "to": "11"}, {"from": "8643", "to": "521"}, {"from": "290", "to": "534"}, {"from": "431", "to": "432"}, {"from": "0.2", "to": "1"}, {"from": "8643", "to": "525"}, {"from": "3999", "to": "990"}, {"from": "708", "to": "898"}, {"from": "9", "to": "36"}, {"from": "65", "to": "4269"}, {"from": "293", "to": "294"}, {"from": "1060", "to": "1064"}, {"from": "683", "to": "224"}, {"from": "67", "to": "6000"}, {"from": "11", "to": "21"}, {"from": "8643", "to": "250"}, {"from": "29", "to": "1"}, {"from": "30", "to": "37"}, {"from": "789", "to": "5"}, {"from": "1999", "to": "2000"}, {"from": "10", "to": "569"}, {"from": "944", "to": "9"}, {"from": "264", "to": "1003"}, {"from": "8643", "to": "733"}, {"from": "221", "to": "222"}, {"from": "956", "to": "1521"}, {"from": "11", "to": "2227"}, {"from": "667", "to": "668"}, {"from": "8643", "to": "611"}, {"from": "273", "to": "192"}, {"from": "173", "to": "5005"}, {"from": "1117", "to": "866"}, {"from": "1649", "to": "0"}, {"from": "194", "to": "193.1"}, {"from": "8643", "to": "927"}, {"from": "685", "to": "693"}, {"from": "8643", "to": "670"}, {"from": "8643", "to": "745"}, {"from": "620", "to": "1113"}, {"from": "610", "to": "9999"}, {"from": "0.8", "to": "221"}, {"from": "11", "to": "3041"}, {"from": "1190", "to": "1100"}, {"from": "8643", "to": "646"}, {"from": "724", "to": "193"}, {"from": "18", "to": "52"}, {"from": "4005", "to": "4007"}, {"from": "65536", "to": "127"}, {"from": "1370", "to": "37"}, {"from": "0", "to": "0.4"}, {"from": "11", "to": "181"}, {"from": "153", "to": "363"}, {"from": "106", "to": "66"}, {"from": "804", "to": "805"}, {"from": "8643", "to": "990"}, {"from": "941", "to": "4007"}, {"from": "691", "to": "4999"}, {"from": "777", "to": "7.1"}, {"from": "195", "to": "196"}, {"from": "1066", "to": "407"}, {"from": "9000", "to": "50"}, {"from": "468", "to": "3999"}, {"from": "8643", "to": "435"}, {"from": "176", "to": "177"}, {"from": "603", "to": "620"}, {"from": "409", "to": "410"}, {"from": "325", "to": "47"}, {"from": "805", "to": "2"}, {"from": "8", "to": "764"}, {"from": "610", "to": "970"}, {"from": "999", "to": "1"}, {"from": "548", "to": "61"}, {"from": "241", "to": "3258"}, {"from": "8643", "to": "761"}, {"from": "7.1", "to": "72"}, {"from": "8643", "to": "43"}, {"from": "4681", "to": "9223372036854775808"}, {"from": "4000", "to": "394"}, {"from": "845", "to": "185"}, {"from": "4526", "to": "3999"}, {"from": "147", "to": "148"}, {"from": "11", "to": "1"}, {"from": "610", "to": "4999"}, {"from": "39", "to": "199"}, {"from": "9", "to": "656"}, {"from": "2019", "to": "54"}, {"from": "434", "to": "188"}, {"from": "1970", "to": "4"}, {"from": "36", "to": "34"}, {"from": "1089", "to": "150"}, {"from": "455", "to": "467"}, {"from": "34", "to": "9"}, {"from": "610", "to": "188.8"}, {"from": "7317", "to": "11"}, {"from": "1597", "to": "888"}, {"from": "0.85", "to": "191"}, {"from": "910", "to": "911"}, {"from": "573", "to": "6.1"}, {"from": "622", "to": "666"}, {"from": "1919", "to": "1920"}, {"from": "2739", "to": "4"}, {"from": "8643", "to": "484"}, {"from": "5", "to": "9991"}, {"from": "1216", "to": "3999"}, {"from": "505", "to": "213"}, {"from": "0", "to": "1447"}, {"from": "39", "to": "35"}, {"from": "10", "to": "977"}, {"from": "592", "to": "65"}, {"from": "407", "to": "37"}, {"from": "703", "to": "1799"}, {"from": "900", "to": "931"}, {"from": "536", "to": "974"}, {"from": "0", "to": "8198"}, {"from": "14", "to": "312"}, {"from": "11", "to": "0.8"}, {"from": "4007", "to": "4008"}, {"from": "8", "to": "188.3"}, {"from": "623", "to": "6234"}, {"from": "8643", "to": "298"}, {"from": "995", "to": "3008"}, {"from": "8643", "to": "70"}, {"from": "873", "to": "11"}, {"from": "2187", "to": "10.6"}, {"from": "592", "to": "11.1"}, {"from": "4", "to": "244"}, {"from": "8190", "to": "11"}, {"from": "622", "to": "7"}, {"from": "441", "to": "1"}, {"from": "425", "to": "431"}, {"from": "1054", "to": "714"}, {"from": "435", "to": "1939"}, {"from": "319", "to": "0.85"}, {"from": "667", "to": "345"}, {"from": "91", "to": "11"}, {"from": "423", "to": "511"}, {"from": "8643", "to": "825"}, {"from": "1195", "to": "188"}, {"from": "468", "to": "477"}, {"from": "11", "to": "1000.1"}, {"from": "8643", "to": "244"}, {"from": "556", "to": "401"}, {"from": "797", "to": "111"}, {"from": "230", "to": "4"}, {"from": "8643", "to": "421"}, {"from": "8643", "to": "962"}, {"from": "1619", "to": "0"}, {"from": "8643", "to": "90"}, {"from": "933", "to": "0"}, {"from": "8643", "to": "111"}, {"from": "11", "to": "416"}, {"from": "132", "to": "134"}, {"from": "278", "to": "515"}, {"from": "627", "to": "56"}, {"from": "8643", "to": "916"}, {"from": "7", "to": "6.56"}, {"from": "84", "to": "193.1"}, {"from": "9", "to": "2007"}, {"from": "0.666", "to": "9.3"}, {"from": "8643", "to": "602"}, {"from": "8643", "to": "764"}, {"from": "60", "to": "557"}, {"from": "8643", "to": "424"}, {"from": "9009", "to": "1"}, {"from": "3718", "to": "6"}, {"from": "199", "to": "220"}, {"from": "246", "to": "9"}, {"from": "3999", "to": "949"}, {"from": "286", "to": "538"}, {"from": "1", "to": "1042"}, {"from": "37", "to": "47"}, {"from": "610", "to": "204"}, {"from": "3004", "to": "592"}, {"from": "786", "to": "4"}, {"from": "847", "to": "14"}, {"from": "8643", "to": "758"}, {"from": "2", "to": "2.4"}, {"from": "231", "to": "615"}, {"from": "37.2", "to": "4242"}, {"from": "795", "to": "0.1"}, {"from": "0", "to": "27"}, {"from": "11", "to": "258"}, {"from": "8643", "to": "80"}, {"from": "2754", "to": "11"}, {"from": "125", "to": "132"}, {"from": "4999", "to": "4006"}, {"from": "34", "to": "99"}, {"from": "11", "to": "4.12"}, {"from": "1243", "to": "849"}, {"from": "92", "to": "30"}, {"from": "8643", "to": "322"}, {"from": "100", "to": "2088"}, {"from": "910", "to": "127"}, {"from": "443", "to": "0"}, {"from": "80", "to": "37"}, {"from": "600", "to": "425"}, {"from": "7998", "to": "1528473"}, {"from": "1", "to": "2"}, {"from": "8643", "to": "719"}, {"from": "940", "to": "6.4"}, {"from": "67", "to": "9202"}, {"from": "4.04", "to": "662"}, {"from": "92", "to": "442"}, {"from": "6999", "to": "7999"}, {"from": "36", "to": "564"}, {"from": "253", "to": "84"}, {"from": "1011", "to": "34"}, {"from": "997", "to": "660"}, {"from": "402", "to": "162"}, {"from": "637", "to": "638"}, {"from": "1296", "to": "3999"}, {"from": "0.4", "to": "82"}, {"from": "789", "to": "1390"}, {"from": "4004", "to": "928"}, {"from": "239", "to": "455"}, {"from": "3004", "to": "39"}, {"from": "8643", "to": "949"}, {"from": "602", "to": "601"}, {"from": "8643", "to": "857"}, {"from": "19", "to": "3"}, {"from": "7005", "to": "3210"}, {"from": "18", "to": "1912"}, {"from": "703", "to": "1"}, {"from": "1792", "to": "12"}, {"from": "313", "to": "118"}, {"from": "8643", "to": "84"}, {"from": "8643", "to": "34"}, {"from": "37", "to": "4242"}, {"from": "5555", "to": "1609"}, {"from": "23", "to": "529"}, {"from": "1", "to": "2226"}, {"from": "8643", "to": "704"}, {"from": "11", "to": "11.1"}, {"from": "9.1", "to": "9.9"}, {"from": "3999", "to": "1239"}, {"from": "8009", "to": "4004"}, {"from": "76", "to": "705"}, {"from": "7", "to": "9007199254740992"}, {"from": "527", "to": "200"}, {"from": "936", "to": "251"}, {"from": "1337", "to": "1338"}, {"from": "666", "to": "2835"}, {"from": "349", "to": "349.1"}, {"from": "188.8", "to": "265"}, {"from": "165", "to": "5556"}, {"from": "150", "to": "92"}, {"from": "15", "to": "1609"}, {"from": "1044", "to": "974"}, {"from": "36", "to": "394"}, {"from": "189", "to": "263"}, {"from": "8643", "to": "69"}, {"from": "37", "to": "858"}, {"from": "10", "to": "506"}, {"from": "9669", "to": "1521"}, {"from": "10.6", "to": "0"}, {"from": "8643", "to": "749"}, {"from": "3010", "to": "11"}, {"from": "8643", "to": "15"}, {"from": "286", "to": "377"}, {"from": "260", "to": "261"}, {"from": "8643", "to": "777"}, {"from": "1044", "to": "8"}, {"from": "246", "to": "72"}, {"from": "154", "to": "6999"}, {"from": "2029", "to": "4040"}, {"from": "141", "to": "37"}, {"from": "341", "to": "0"}, {"from": "8643", "to": "282"}, {"from": "9223372036854775808", "to": "892"}, {"from": "7.3", "to": "7.7"}, {"from": "337", "to": "338"}, {"from": "8", "to": "1290"}, {"from": "514", "to": "239"}, {"from": "1071", "to": "1597"}, {"from": "1919", "to": "10"}, {"from": "262", "to": "10"}, {"from": "991", "to": "990"}, {"from": "19", "to": "204"}, {"from": "9", "to": "2354"}, {"from": "224", "to": "988"}, {"from": "1", "to": "628"}, {"from": "666", "to": "195"}, {"from": "81", "to": "381"}, {"from": "4007", "to": "4006"}, {"from": "4520", "to": "1"}, {"from": "407", "to": "8"}, {"from": "1087", "to": "1088"}, {"from": "590", "to": "753"}, {"from": "8643", "to": "477"}, {"from": "367", "to": "4827"}, {"from": "1370", "to": "700"}, {"from": "58", "to": "37.1"}, {"from": "598", "to": "153"}, {"from": "1234", "to": "561"}, {"from": "8888", "to": "65"}, {"from": "9019", "to": "188"}, {"from": "630", "to": "10"}, {"from": "36", "to": "242"}, {"from": "1066", "to": "1068"}, {"from": "434", "to": "435"}, {"from": "1023", "to": "974"}, {"from": "11", "to": "22"}, {"from": "0", "to": "0.7"}, {"from": "996", "to": "997"}, {"from": "3004", "to": "952"}, {"from": "251", "to": "36"}, {"from": "0", "to": "1053"}, {"from": "0", "to": "2010"}, {"from": "942", "to": "166"}, {"from": "1970", "to": "3999"}, {"from": "37.2", "to": "30"}, {"from": "161", "to": "109"}, {"from": "256", "to": "1024"}, {"from": "52", "to": "7237"}, {"from": "1206", "to": "1031"}, {"from": "8643", "to": "508"}, {"from": "67", "to": "4000"}, {"from": "3258", "to": "739"}, {"from": "10", "to": "554"}, {"from": "4000", "to": "9007199254740992"}, {"from": "0", "to": "499.5"}, {"from": "76", "to": "4"}, {"from": "1341", "to": "1305"}, {"from": "11.5", "to": "432"}, {"from": "1916", "to": "3997"}, {"from": "8643", "to": "208"}, {"from": "5.4", "to": "5.5"}, {"from": "701", "to": "117"}, {"from": "11.66", "to": "11"}, {"from": "36", "to": "518"}, {"from": "8190", "to": "7192"}, {"from": "387", "to": "606"}, {"from": "623", "to": "1005"}, {"from": "448", "to": "10000"}, {"from": "8643", "to": "564"}, {"from": "8643", "to": "876"}, {"from": "381", "to": "3999"}, {"from": "8643", "to": "679"}, {"from": "50", "to": "3999"}, {"from": "2.1", "to": "9"}, {"from": "36", "to": "1236"}, {"from": "8643", "to": "846"}, {"from": "36", "to": "0"}, {"from": "8643", "to": "283"}, {"from": "1069", "to": "3"}, {"from": "190", "to": "2"}, {"from": "666", "to": "404"}, {"from": "8643", "to": "383"}, {"from": "8643", "to": "807"}, {"from": "10", "to": "214"}, {"from": "628", "to": "598"}, {"from": "970", "to": "1835"}, {"from": "210", "to": "3"}, {"from": "8643", "to": "915"}, {"from": "9000", "to": "8999"}, {"from": "264", "to": "9"}, {"from": "138", "to": "248"}, {"from": "407", "to": "409"}, {"from": "0.02", "to": "0.22"}, {"from": "8643", "to": "368"}, {"from": "22", "to": "65536"}, {"from": "94", "to": "6339"}, {"from": "520", "to": "1988"}, {"from": "288", "to": "46"}, {"from": "8643", "to": "227"}, {"from": "95", "to": "96"}, {"from": "0", "to": "407"}, {"from": "232", "to": "96"}, {"from": "114", "to": "100"}, {"from": "3999.2", "to": "3999.1"}, {"from": "0.01", "to": "0.02"}, {"from": "387", "to": "212"}, {"from": "4.3", "to": "4"}, {"from": "8643", "to": "607"}, {"from": "39", "to": "666"}, {"from": "8643", "to": "492"}, {"from": "822", "to": "206"}, {"from": "8643", "to": "152"}, {"from": "188.8", "to": "100"}, {"from": "1070", "to": "3123"}, {"from": "193", "to": "194"}, {"from": "11", "to": "1144"}, {"from": "307", "to": "685"}, {"from": "8643", "to": "394"}, {"from": "388", "to": "100"}, {"from": "8643", "to": "2"}, {"from": "349", "to": "8"}, {"from": "364", "to": "365"}, {"from": "720", "to": "331"}, {"from": "2845", "to": "11"}, {"from": "4999", "to": "73"}, {"from": "961", "to": "311"}, {"from": "853", "to": "8"}, {"from": "1912", "to": "1912.1"}, {"from": "11", "to": "36"}, {"from": "2042", "to": "1521"}, {"from": "1033", "to": "11"}, {"from": "72", "to": "3004"}, {"from": "8", "to": "6000"}, {"from": "860", "to": "861"}, {"from": "3003", "to": "3004"}, {"from": "7191", "to": "453"}, {"from": "34", "to": "35"}, {"from": "24", "to": "600"}, {"from": "448", "to": "69"}, {"from": "9", "to": "84"}, {"from": "1025", "to": "6.1"}, {"from": "592", "to": "153"}, {"from": "0", "to": "0.15"}, {"from": "8643", "to": "418"}, {"from": "1700", "to": "1513"}, {"from": "34", "to": "11"}, {"from": "37", "to": "647"}, {"from": "953", "to": "65"}, {"from": "4005", "to": "4006"}, {"from": "9000", "to": "2987"}, {"from": "2555", "to": "2031"}, {"from": "36", "to": "234"}, {"from": "1368", "to": "9"}, {"from": "66", "to": "67"}, {"from": "1068", "to": "1069"}, {"from": "11", "to": "176"}, {"from": "477", "to": "457"}, {"from": "8643", "to": "52"}, {"from": "219", "to": "6"}, {"from": "62", "to": "59"}, {"from": "8643", "to": "451"}, {"from": "300", "to": "685"}, {"from": "193", "to": "188"}, {"from": "840", "to": "7"}, {"from": "7", "to": "97"}, {"from": "8643", "to": "327"}, {"from": "8643", "to": "242"}, {"from": "4526", "to": "1"}, {"from": "9", "to": "69"}, {"from": "9", "to": "58730"}, {"from": "37", "to": "4827"}, {"from": "913", "to": "914"}, {"from": "188.3", "to": "188"}, {"from": "600", "to": "7"}, {"from": "8643", "to": "808"}, {"from": "81", "to": "1089"}, {"from": "72", "to": "8888"}, {"from": "871", "to": "197"}, {"from": "1059", "to": "1060"}, {"from": "1290", "to": "1256"}, {"from": "615", "to": "666"}, {"from": "159", "to": "1060"}, {"from": "1073", "to": "1164"}, {"from": "771", "to": "456"}, {"from": "37", "to": "7384"}, {"from": "610", "to": "176"}, {"from": "951", "to": "952"}, {"from": "533.5", "to": "0"}, {"from": "396", "to": "88"}, {"from": "455", "to": "757"}, {"from": "8643", "to": "420"}, {"from": "8643", "to": "738"}, {"from": "8643", "to": "518"}, {"from": "9209", "to": "2"}, {"from": "6469", "to": "6"}, {"from": "94", "to": "60"}, {"from": "1011", "to": "0"}, {"from": "8643", "to": "472"}, {"from": "7.7", "to": "6"}, {"from": "8643", "to": "243"}, {"from": "1100", "to": "91"}, {"from": "8643", "to": "360"}, {"from": "352", "to": "0"}, {"from": "8643", "to": "251"}, {"from": "1234", "to": "37"}, {"from": "8643", "to": "893"}, {"from": "7381", "to": "927"}, {"from": "8", "to": "589"}, {"from": "1970", "to": "2"}, {"from": "162", "to": "4"}, {"from": "8643", "to": "329"}, {"from": "8643", "to": "628"}, {"from": "9223372036854775808", "to": "1399"}, {"from": "797", "to": "0"}, {"from": "246", "to": "11"}, {"from": "8643", "to": "0"}, {"from": "49", "to": "4007"}, {"from": "8643", "to": "859"}, {"from": "1696", "to": "952"}, {"from": "2787", "to": "72"}, {"from": "8643", "to": "89"}, {"from": "5.3", "to": "5.4"}, {"from": "1", "to": "9991"}, {"from": "13", "to": "996"}, {"from": "115", "to": "472"}, {"from": "502", "to": "7"}, {"from": "940", "to": "28"}, {"from": "153", "to": "957"}, {"from": "24", "to": "256"}, {"from": "2187.2", "to": "311"}, {"from": "1819", "to": "4002"}, {"from": "8643", "to": "41"}, {"from": "2", "to": "2.5"}, {"from": "8643", "to": "683"}, {"from": "11", "to": "171"}, {"from": "617", "to": "618"}, {"from": "611.1", "to": "61"}, {"from": "1547", "to": "285"}, {"from": "314", "to": "437"}, {"from": "4004", "to": "72"}, {"from": "8643", "to": "933"}, {"from": "273", "to": "274"}, {"from": "8643", "to": "226"}, {"from": "8643", "to": "954"}, {"from": "382", "to": "11"}, {"from": "610", "to": "1113"}, {"from": "11", "to": "153"}, {"from": "420", "to": "6969696969699420"}, {"from": "1819", "to": "7"}, {"from": "364", "to": "323"}, {"from": "37", "to": "4"}, {"from": "3894", "to": "0"}, {"from": "117", "to": "69"}, {"from": "8643", "to": "96"}, {"from": "942", "to": "974"}, {"from": "1195.22", "to": "1195.01"}, {"from": "10", "to": "59"}, {"from": "8643", "to": "986"}, {"from": "9", "to": "846"}, {"from": "20", "to": "9"}, {"from": "176", "to": "9"}, {"from": "331", "to": "14"}, {"from": "35", "to": "60"}, {"from": "610", "to": "391"}, {"from": "9", "to": "383"}, {"from": "2200", "to": "1"}, {"from": "610", "to": "344"}, {"from": "193", "to": "561"}, {"from": "90", "to": "378"}, {"from": "76", "to": "3999"}, {"from": "500", "to": "435"}, {"from": "506", "to": "507"}, {"from": "0.04", "to": "0.111"}, {"from": "72", "to": "4999"}, {"from": "8643", "to": "98"}, {"from": "8643", "to": "120"}, {"from": "8643", "to": "234"}, {"from": "11", "to": "54"}, {"from": "1195", "to": "1.5"}, {"from": "1190", "to": "0"}, {"from": "517.1", "to": "613"}, {"from": "9223", "to": "11"}, {"from": "648", "to": "649"}, {"from": "274", "to": "275"}, {"from": "3999", "to": "7191"}, {"from": "348", "to": "10"}, {"from": "5500", "to": "3999"}, {"from": "4", "to": "511"}, {"from": "23", "to": "858"}, {"from": "611.1", "to": "16"}, {"from": "8643", "to": "156"}, {"from": "319", "to": "804"}, {"from": "13", "to": "974"}, {"from": "11", "to": "6978"}, {"from": "193", "to": "4"}, {"from": "160", "to": "12"}, {"from": "9", "to": "9.5"}, {"from": "8643", "to": "511"}, {"from": "37.212", "to": "37"}, {"from": "8643", "to": "267"}, {"from": "787", "to": "389"}, {"from": "0", "to": "432"}, {"from": "517.1", "to": "1098"}, {"from": "1912", "to": "17"}, {"from": "1667", "to": "293"}, {"from": "742", "to": "3999"}, {"from": "8009", "to": "3123"}, {"from": "1239", "to": "5000"}, {"from": "8643", "to": "211"}, {"from": "432", "to": "3999.2"}, {"from": "6342", "to": "418"}, {"from": "517", "to": "383"}, {"from": "11875", "to": "3999"}, {"from": "8643", "to": "32"}, {"from": "738", "to": "2"}, {"from": "300", "to": "173"}, {"from": "345", "to": "7005"}, {"from": "793.3", "to": "6.1"}, {"from": "1980", "to": "9"}, {"from": "8643", "to": "193"}, {"from": "329", "to": "11"}, {"from": "703", "to": "943"}, {"from": "9", "to": "7777"}, {"from": "142", "to": "60"}, {"from": "3", "to": "0.2"}, {"from": "11", "to": "680"}, {"from": "153", "to": "369"}, {"from": "38", "to": "380"}, {"from": "8", "to": "885"}, {"from": "5", "to": "1225"}, {"from": "4827", "to": "379.1"}, {"from": "219", "to": "4999"}, {"from": "303", "to": "845"}, {"from": "3999.5", "to": "3999"}, {"from": "4006", "to": "4010"}, {"from": "2687", "to": "6"}, {"from": "69", "to": "4387"}, {"from": "24", "to": "1050"}, {"from": "8643", "to": "720"}, {"from": "8643", "to": "497"}, {"from": "8643", "to": "801"}, {"from": "11", "to": "435"}, {"from": "800", "to": "813"}, {"from": "5", "to": "0.6"}, {"from": "8", "to": "206"}, {"from": "1311", "to": "3"}, {"from": "5", "to": "1125"}, {"from": "8643", "to": "919"}, {"from": "521", "to": "3670"}, {"from": "9000", "to": "9001"}, {"from": "1", "to": "931"}, {"from": "920", "to": "854"}, {"from": "4756", "to": "2885"}, {"from": "12", "to": "258"}, {"from": "588", "to": "971"}, {"from": "8643", "to": "496"}, {"from": "5", "to": "4909"}, {"from": "2250", "to": "1415"}, {"from": "65536", "to": "6"}, {"from": "849", "to": "239"}, {"from": "1074", "to": "771"}, {"from": "5002", "to": "2149"}, {"from": "409", "to": "34"}, {"from": "8643", "to": "388"}, {"from": "4269", "to": "3999"}, {"from": "385", "to": "10"}, {"from": "4270", "to": "4816"}, {"from": "3999.1", "to": "952"}, {"from": "20", "to": "233"}, {"from": "4", "to": "9991"}, {"from": "1820", "to": "1819"}, {"from": "971", "to": "971.1"}, {"from": "1343", "to": "37"}, {"from": "3089", "to": "683"}, {"from": "40", "to": "685"}, {"from": "611.1", "to": "611"}, {"from": "3850", "to": "9223372036854775808"}, {"from": "564.1", "to": "564"}, {"from": "772", "to": "477"}, {"from": "1", "to": "2097"}, {"from": "904", "to": "166"}, {"from": "8643", "to": "716"}, {"from": "0.1", "to": "0.7"}, {"from": "67", "to": "37.4"}, {"from": "16", "to": "17"}, {"from": "709", "to": "3"}, {"from": "8643", "to": "703"}, {"from": "529", "to": "251"}, {"from": "517.1", "to": "952"}, {"from": "477", "to": "5"}, {"from": "8643", "to": "103"}, {"from": "8643", "to": "735"}, {"from": "14", "to": "117"}, {"from": "8643", "to": "483"}, {"from": "34", "to": "7"}, {"from": "8643", "to": "374"}, {"from": "1756", "to": "100"}, {"from": "138", "to": "1918"}, {"from": "610", "to": "880"}, {"from": "354", "to": "355"}, {"from": "8643", "to": "512"}, {"from": "118", "to": "7357"}, {"from": "589", "to": "245"}, {"from": "676", "to": "3999"}, {"from": "8", "to": "38"}, {"from": "687.2", "to": "10"}, {"from": "517", "to": "518"}, {"from": "358", "to": "357"}, {"from": "315", "to": "11"}, {"from": "8643", "to": "527"}, {"from": "1696", "to": "0"}, {"from": "1", "to": "141"}, {"from": "1078", "to": "11"}, {"from": "58730", "to": "11875"}, {"from": "0", "to": "4000"}, {"from": "18", "to": "142"}, {"from": "434", "to": "0"}, {"from": "6", "to": "6.1"}, {"from": "11", "to": "326"}, {"from": "971", "to": "972"}, {"from": "8643", "to": "206"}, {"from": "2187.2", "to": "9"}, {"from": "8643", "to": "68"}, {"from": "830", "to": "2"}, {"from": "8643", "to": "655"}, {"from": "11", "to": "424"}, {"from": "176", "to": "213"}, {"from": "8643", "to": "817"}, {"from": "610", "to": "37"}, {"from": "610", "to": "6886"}, {"from": "0", "to": "0.01"}, {"from": "9", "to": "1143"}, {"from": "4", "to": "4.1"}, {"from": "228", "to": "243"}, {"from": "599", "to": "564"}, {"from": "327", "to": "11"}, {"from": "117", "to": "518"}, {"from": "0", "to": "676"}, {"from": "610", "to": "90"}, {"from": "37", "to": "34"}, {"from": "191", "to": "386"}, {"from": "517", "to": "683"}, {"from": "11", "to": "8198"}, {"from": "11", "to": "80"}, {"from": "622", "to": "0"}, {"from": "706", "to": "234"}, {"from": "203", "to": "204"}, {"from": "11", "to": "443"}, {"from": "29", "to": "1400"}, {"from": "407", "to": "4000"}, {"from": "19", "to": "20"}, {"from": "8643", "to": "586"}, {"from": "5", "to": "73"}, {"from": "951", "to": "3"}, {"from": "479", "to": "3"}, {"from": "1195", "to": "0"}, {"from": "36", "to": "141"}, {"from": "8643", "to": "873"}, {"from": "611.3", "to": "611.4"}, {"from": "0", "to": "754"}, {"from": "94", "to": "997"}, {"from": "0.11", "to": "8"}, {"from": "8643", "to": "187"}, {"from": "19.1", "to": "6"}, {"from": "8643", "to": "938"}, {"from": "1.5", "to": "1"}, {"from": "8643", "to": "547"}, {"from": "826", "to": "5"}, {"from": "18", "to": "1914"}, {"from": "11", "to": "949"}, {"from": "701", "to": "47"}, {"from": "375", "to": "954"}, {"from": "848", "to": "531"}, {"from": "8643", "to": "639"}, {"from": "11", "to": "666.1"}, {"from": "847", "to": "229"}, {"from": "741", "to": "974"}, {"from": "8643", "to": "925"}, {"from": "8643", "to": "455"}, {"from": "544", "to": "434"}, {"from": "8643", "to": "38"}, {"from": "1970", "to": "1293"}, {"from": "3745", "to": "0.1"}, {"from": "1597", "to": "92"}, {"from": "3", "to": "5"}, {"from": "193", "to": "3999"}, {"from": "1205", "to": "1204"}, {"from": "1376", "to": "1380"}, {"from": "8643", "to": "303"}, {"from": "11", "to": "375"}, {"from": "596.1", "to": "28"}, {"from": "1073", "to": "526"}, {"from": "325", "to": "2"}, {"from": "2.4", "to": "2.2"}, {"from": "841", "to": "900"}, {"from": "860", "to": "666"}, {"from": "1792", "to": "9"}, {"from": "363", "to": "1980"}, {"from": "92", "to": "83"}, {"from": "11", "to": "1400"}, {"from": "10", "to": "9.3"}, {"from": "7013", "to": "6342"}, {"from": "480", "to": "1513"}, {"from": "331", "to": "48"}, {"from": "1234", "to": "1236"}, {"from": "75", "to": "37.55"}, {"from": "8643", "to": "97"}, {"from": "975", "to": "153"}, {"from": "517", "to": "517.1"}, {"from": "8643", "to": "290"}, {"from": "11", "to": "69"}, {"from": "1", "to": "344"}, {"from": "777", "to": "777.1"}, {"from": "11", "to": "58730"}, {"from": "9", "to": "801"}, {"from": "36", "to": "333"}, {"from": "10", "to": "791"}, {"from": "0", "to": "0.69"}, {"from": "120", "to": "685"}, {"from": "136", "to": "952"}, {"from": "830", "to": "0"}, {"from": "601", "to": "666"}, {"from": "0.11", "to": "0.7"}, {"from": "4271", "to": "311"}, {"from": "395", "to": "7005"}, {"from": "8643", "to": "819"}, {"from": "3999", "to": "3010"}, {"from": "193", "to": "69"}, {"from": "8643", "to": "29"}, {"from": "858", "to": "110"}, {"from": "8643", "to": "565"}, {"from": "11", "to": "777"}, {"from": "942", "to": "3999.2"}, {"from": "610", "to": "375"}, {"from": "1195", "to": "98"}, {"from": "9", "to": "496"}, {"from": "45", "to": "4999"}, {"from": "34", "to": "4"}, {"from": "723", "to": "1"}, {"from": "4011", "to": "4012"}, {"from": "477", "to": "12"}, {"from": "8643", "to": "794"}, {"from": "8643", "to": "397"}, {"from": "849", "to": "6.1"}, {"from": "11", "to": "1955"}, {"from": "39", "to": "45"}, {"from": "8643", "to": "459"}, {"from": "49", "to": "4006"}, {"from": "1040", "to": "1041"}, {"from": "8", "to": "59"}, {"from": "11", "to": "1239"}, {"from": "350", "to": "360"}, {"from": "27", "to": "357"}, {"from": "8643", "to": "658"}, {"from": "8643", "to": "313"}, {"from": "583", "to": "4000"}, {"from": "100", "to": "990"}, {"from": "66", "to": "2251"}, {"from": "8643", "to": "826"}, {"from": "292", "to": "422"}, {"from": "929", "to": "6820"}, {"from": "386", "to": "387"}, {"from": "0", "to": "229"}, {"from": "188", "to": "1113"}, {"from": "1036", "to": "100"}, {"from": "478", "to": "974"}, {"from": "3082", "to": "8"}, {"from": "1020", "to": "10"}, {"from": "1999", "to": "952"}, {"from": "315", "to": "22"}, {"from": "65536", "to": "3"}, {"from": "46", "to": "47"}, {"from": "4011", "to": "4010"}, {"from": "772", "to": "0"}, {"from": "8643", "to": "23"}, {"from": "8643", "to": "355"}, {"from": "0", "to": "59"}, {"from": "117", "to": "132"}, {"from": "11", "to": "1007"}, {"from": "0", "to": "13"}, {"from": "65536", "to": "1"}, {"from": "8643", "to": "618"}, {"from": "696", "to": "11"}, {"from": "8643", "to": "422"}, {"from": "8643", "to": "918"}, {"from": "880", "to": "6.1"}, {"from": "474", "to": "46"}, {"from": "3", "to": "1315"}, {"from": "35", "to": "36.5"}, {"from": "850", "to": "851"}, {"from": "47", "to": "4"}, {"from": "931", "to": "184"}, {"from": "4", "to": "141"}, {"from": "1314", "to": "525"}, {"from": "592", "to": "7777"}, {"from": "122", "to": "0.01"}, {"from": "409", "to": "518"}, {"from": "900", "to": "908"}, {"from": "8643", "to": "141"}, {"from": "246", "to": "4"}, {"from": "8643", "to": "653"}, {"from": "3999", "to": "3999.1"}, {"from": "457", "to": "0"}, {"from": "939", "to": "33"}, {"from": "607", "to": "12"}, {"from": "8643", "to": "491"}, {"from": "11", "to": "679"}, {"from": "4272", "to": "4273"}, {"from": "966", "to": "3999"}, {"from": "42", "to": "778"}, {"from": "3002", "to": "3420"}, {"from": "477", "to": "9223372036854775808"}, {"from": "8643", "to": "563"}, {"from": "47", "to": "37.6"}, {"from": "409", "to": "0"}, {"from": "11", "to": "383"}, {"from": "704", "to": "3998"}, {"from": "11", "to": "287"}, {"from": "1980", "to": "11"}, {"from": "8643", "to": "890"}, {"from": "11", "to": "1290"}, {"from": "939", "to": "11"}, {"from": "738", "to": "527"}, {"from": "4", "to": "315"}, {"from": "92", "to": "1"}, {"from": "3", "to": "778"}, {"from": "547", "to": "14"}, {"from": "36.5", "to": "36"}, {"from": "7", "to": "349"}, {"from": "73", "to": "72"}, {"from": "8643", "to": "654"}, {"from": "1089", "to": "319"}, {"from": "0", "to": "6339"}, {"from": "666.1", "to": "666"}, {"from": "714", "to": "220"}, {"from": "956", "to": "8402"}, {"from": "326", "to": "100"}, {"from": "71", "to": "456"}, {"from": "8924", "to": "2"}, {"from": "764", "to": "666"}, {"from": "8643", "to": "315"}, {"from": "4.3", "to": "3"}, {"from": "8643", "to": "601"}, {"from": "159", "to": "11"}, {"from": "8643", "to": "480"}, {"from": "8643", "to": "333"}, {"from": "610", "to": "1290"}, {"from": "431", "to": "26"}, {"from": "315", "to": "180"}, {"from": "9", "to": "187"}, {"from": "92", "to": "1286"}, {"from": "358", "to": "359"}, {"from": "8888", "to": "1969"}, {"from": "867", "to": "100"}, {"from": "7191", "to": "155"}, {"from": "8643", "to": "479"}, {"from": "8643", "to": "644"}, {"from": "8643", "to": "638"}, {"from": "8643", "to": "44"}, {"from": "8643", "to": "222"}, {"from": "339", "to": "2805"}, {"from": "8643", "to": "566"}, {"from": "9898", "to": "7"}, {"from": "8643", "to": "715"}, {"from": "8643", "to": "823"}, {"from": "8643", "to": "943"}, {"from": "8643", "to": "78"}, {"from": "8643", "to": "320"}, {"from": "8009", "to": "8008"}, {"from": "37.7", "to": "37.2"}, {"from": "9", "to": "38"}, {"from": "8643", "to": "872"}, {"from": "2596", "to": "847"}, {"from": "614", "to": "615"}, {"from": "11", "to": "418"}, {"from": "514", "to": "11"}, {"from": "4011", "to": "3999"}, {"from": "490", "to": "4000"}, {"from": "229", "to": "270"}, {"from": "8643", "to": "612"}, {"from": "8643", "to": "844"}, {"from": "6", "to": "386"}, {"from": "90", "to": "1"}, {"from": "17", "to": "2"}, {"from": "11", "to": "52"}, {"from": "4004", "to": "4002"}, {"from": "0.111", "to": "14"}, {"from": "8643", "to": "224"}, {"from": "1", "to": "331"}, {"from": "7373", "to": "71"}, {"from": "1696", "to": "187"}, {"from": "7", "to": "8"}, {"from": "8643", "to": "168"}, {"from": "8643", "to": "752"}, {"from": "54", "to": "21"}, {"from": "9", "to": "97"}, {"from": "610", "to": "805"}, {"from": "9", "to": "290"}, {"from": "1665", "to": "193.1"}, {"from": "1700", "to": "835"}, {"from": "970", "to": "0"}, {"from": "223", "to": "16"}, {"from": "2023", "to": "1"}, {"from": "8888", "to": "7171"}, {"from": "942", "to": "4000"}, {"from": "8643", "to": "769"}, {"from": "270", "to": "45"}, {"from": "0.6", "to": "100"}, {"from": "526", "to": "527"}, {"from": "340", "to": "2755"}, {"from": "3998", "to": "3999"}, {"from": "974", "to": "566"}, {"from": "8643", "to": "114"}, {"from": "65536", "to": "65"}, {"from": "3", "to": "870"}, {"from": "1055", "to": "0"}, {"from": "8643", "to": "982"}, {"from": "443", "to": "27"}, {"from": "3999", "to": "552"}, {"from": "7.1", "to": "45"}, {"from": "18", "to": "172"}, {"from": "8561", "to": "0"}, {"from": "712", "to": "3999"}, {"from": "8", "to": "964"}, {"from": "8643", "to": "507"}, {"from": "8643", "to": "824"}, {"from": "252", "to": "577"}, {"from": "48", "to": "6339"}, {"from": "11", "to": "1399"}, {"from": "8643", "to": "981"}, {"from": "912", "to": "913"}, {"from": "192", "to": "289"}, {"from": "1032", "to": "1"}, {"from": "8643", "to": "800"}, {"from": "11", "to": "251"}, {"from": "8643", "to": "687"}, {"from": "372", "to": "2354"}, {"from": "9", "to": "826"}, {"from": "8924", "to": "0"}, {"from": "8643", "to": "446"}, {"from": "701", "to": "682"}, {"from": "187", "to": "220"}, {"from": "1001", "to": "8"}, {"from": "4.6", "to": "6.1"}, {"from": "2", "to": "269"}, {"from": "308", "to": "198"}, {"from": "6.1", "to": "622"}, {"from": "11", "to": "0"}, {"from": "795", "to": "2"}, {"from": "610", "to": "400"}, {"from": "8643", "to": "636"}, {"from": "1043", "to": "1070"}, {"from": "49", "to": "73"}, {"from": "54", "to": "1"}, {"from": "8643", "to": "979"}, {"from": "882", "to": "119"}, {"from": "8643", "to": "640"}, {"from": "16", "to": "58"}, {"from": "3", "to": "79"}, {"from": "4009", "to": "4142"}, {"from": "98", "to": "99"}, {"from": "610", "to": "251"}, {"from": "3999", "to": "1984"}, {"from": "11", "to": "8902"}, {"from": "8643", "to": "552"}, {"from": "732", "to": "65"}, {"from": "8643", "to": "995"}, {"from": "1142", "to": "1286"}, {"from": "3800", "to": "3001"}, {"from": "30", "to": "849"}, {"from": "8643", "to": "363"}, {"from": "8643", "to": "725"}, {"from": "8643", "to": "309"}, {"from": "894", "to": "11"}, {"from": "492.1", "to": "19"}, {"from": "22.1", "to": "278"}, {"from": "11", "to": "264"}, {"from": "8643", "to": "328"}, {"from": "649", "to": "226"}, {"from": "1006", "to": "445"}, {"from": "188", "to": "37"}, {"from": "67", "to": "10"}, {"from": "989", "to": "990"}, {"from": "190", "to": "191"}, {"from": "293", "to": "464"}, {"from": "444", "to": "1463"}, {"from": "9.9", "to": "9563"}, {"from": "682", "to": "685"}, {"from": "37", "to": "188.8"}, {"from": "442", "to": "561"}, {"from": "3999", "to": "4006"}, {"from": "270", "to": "2"}, {"from": "674", "to": "380"}, {"from": "912", "to": "980"}, {"from": "0.8", "to": "9997"}, {"from": "7", "to": "619"}, {"from": "2187", "to": "2187.1"}, {"from": "8643", "to": "142"}, {"from": "8643", "to": "220"}, {"from": "2412", "to": "7"}, {"from": "8643", "to": "721"}, {"from": "4909", "to": "404"}, {"from": "37.01", "to": "4000"}, {"from": "673", "to": "410"}, {"from": "1913", "to": "7005"}, {"from": "4", "to": "780"}, {"from": "8643", "to": "517"}, {"from": "22", "to": "4"}, {"from": "362", "to": "406"}, {"from": "477", "to": "100"}, {"from": "533", "to": "534"}, {"from": "8643", "to": "557"}, {"from": "8643", "to": "964"}, {"from": "568", "to": "11"}, {"from": "8643", "to": "314"}, {"from": "55", "to": "9"}, {"from": "8643", "to": "728"}, {"from": "8643", "to": "780"}, {"from": "8643", "to": "920"}, {"from": "0.4", "to": "1.1"}, {"from": "8643", "to": "28"}, {"from": "9", "to": "867.5"}, {"from": "435", "to": "3"}, {"from": "40", "to": "10"}, {"from": "1026", "to": "900"}, {"from": "610", "to": "96"}, {"from": "1237", "to": "1237.1"}, {"from": "6173", "to": "1978"}, {"from": "12", "to": "2354"}, {"from": "11", "to": "4.6"}, {"from": "198", "to": "89"}, {"from": "383", "to": "384"}, {"from": "231", "to": "188"}, {"from": "309", "to": "673"}, {"from": "1060", "to": "1061"}, {"from": "8643", "to": "166"}, {"from": "8643", "to": "878"}, {"from": "175", "to": "175.1"}, {"from": "73", "to": "11"}, {"from": "0.74", "to": "11"}, {"from": "7", "to": "87"}, {"from": "795", "to": "0"}, {"from": "0", "to": "0.666"}, {"from": "614", "to": "6.1"}, {"from": "152", "to": "5"}, {"from": "247", "to": "7"}, {"from": "954", "to": "996"}, {"from": "173", "to": "6.1"}, {"from": "21", "to": "22"}, {"from": "1001", "to": "864"}, {"from": "8643", "to": "24"}, {"from": "26", "to": "140"}, {"from": "5999", "to": "6000"}, {"from": "985", "to": "986"}, {"from": "506", "to": "922"}, {"from": "514", "to": "1030"}, {"from": "3010", "to": "0"}, {"from": "8643", "to": "113"}, {"from": "18", "to": "1376"}, {"from": "857", "to": "8"}, {"from": "160", "to": "9"}, {"from": "610", "to": "1057"}, {"from": "1044", "to": "5"}, {"from": "300", "to": "1195"}, {"from": "666", "to": "666.6"}, {"from": "97", "to": "223"}, {"from": "902", "to": "911"}, {"from": "27", "to": "362"}, {"from": "967", "to": "968"}, {"from": "8643", "to": "956"}, {"from": "8198", "to": "12"}, {"from": "5", "to": "624"}, {"from": "9", "to": "1237"}, {"from": "810", "to": "8"}, {"from": "868", "to": "4"}, {"from": "232", "to": "380"}, {"from": "166", "to": "160"}, {"from": "193", "to": "7191"}, {"from": "693", "to": "6"}, {"from": "998", "to": "5"}, {"from": "319", "to": "421"}, {"from": "8643", "to": "387"}, {"from": "948", "to": "10"}, {"from": "974", "to": "166"}, {"from": "99", "to": "1234"}, {"from": "4112", "to": "9"}, {"from": "189", "to": "11.1"}, {"from": "188", "to": "58730"}, {"from": "6820", "to": "37.1"}, {"from": "2007", "to": "11"}, {"from": "19", "to": "813"}, {"from": "801", "to": "802"}, {"from": "4009", "to": "4010"}, {"from": "7868", "to": "37"}, {"from": "1216", "to": "349"}, {"from": "4", "to": "0.6"}, {"from": "9", "to": "982"}, {"from": "3718", "to": "154"}, {"from": "1334", "to": "1244"}, {"from": "0", "to": "2.6"}, {"from": "1918", "to": "1390"}, {"from": "1015", "to": "2000"}, {"from": "8643", "to": "806"}, {"from": "181", "to": "4000"}, {"from": "0", "to": "1049"}, {"from": "1003", "to": "2916"}, {"from": "4007", "to": "72"}, {"from": "1071", "to": "250"}, {"from": "37", "to": "1998"}, {"from": "10.001", "to": "10"}, {"from": "8643", "to": "620"}, {"from": "549", "to": "996"}, {"from": "2031", "to": "2031.1"}, {"from": "1912", "to": "2060"}, {"from": "8643", "to": "732"}, {"from": "48", "to": "894"}, {"from": "37.4", "to": "4242"}, {"from": "3420", "to": "3258"}, {"from": "4005.1", "to": "4006"}, {"from": "552", "to": "553"}, {"from": "26", "to": "286"}, {"from": "477", "to": "6.1"}, {"from": "8643", "to": "170"}, {"from": "194", "to": "345"}, {"from": "54", "to": "917"}, {"from": "11", "to": "2540"}, {"from": "4526", "to": "8"}, {"from": "1049", "to": "1050"}, {"from": "18.1", "to": "18"}, {"from": "793.1", "to": "793"}, {"from": "2241", "to": "4"}, {"from": "8643", "to": "91"}, {"from": "984", "to": "2999"}, {"from": "533", "to": "623"}, {"from": "1", "to": "0.7"}, {"from": "7317", "to": "11.1"}, {"from": "89", "to": "715"}, {"from": "1", "to": "230"}, {"from": "9", "to": "6.7"}, {"from": "11", "to": "434"}, {"from": "69", "to": "811"}, {"from": "49", "to": "50"}, {"from": "140", "to": "982"}, {"from": "35", "to": "94"}, {"from": "4520", "to": "0"}, {"from": "8643", "to": "862"}, {"from": "11", "to": "374"}, {"from": "1", "to": "409"}, {"from": "423", "to": "108"}, {"from": "223", "to": "3333"}, {"from": "302", "to": "560"}, {"from": "51", "to": "980"}, {"from": "168", "to": "1031"}, {"from": "682", "to": "1049"}, {"from": "6066", "to": "6067"}, {"from": "4269", "to": "29"}, {"from": "902", "to": "1674"}, {"from": "36", "to": "860"}, {"from": "969", "to": "6.1"}, {"from": "377", "to": "11"}, {"from": "867.5", "to": "867"}, {"from": "80", "to": "5"}, {"from": "8643", "to": "930"}, {"from": "191", "to": "61"}, {"from": "0.1", "to": "0.11"}, {"from": "100", "to": "0"}, {"from": "943", "to": "709"}, {"from": "841", "to": "150"}, {"from": "287", "to": "288"}, {"from": "9223372036854775808", "to": "631"}, {"from": "867", "to": "9"}, {"from": "480", "to": "6.1"}, {"from": "953", "to": "953.1"}, {"from": "9.11", "to": "3008"}, {"from": "3999", "to": "380"}, {"from": "680", "to": "37"}, {"from": "345", "to": "276"}, {"from": "29", "to": "925"}, {"from": "60", "to": "199"}, {"from": "110", "to": "630"}, {"from": "11.72", "to": "439"}, {"from": "348", "to": "11"}, {"from": "109", "to": "1150"}, {"from": "188.8", "to": "7"}, {"from": "69", "to": "853"}, {"from": "683", "to": "11"}, {"from": "26", "to": "27"}, {"from": "8643", "to": "27"}, {"from": "1", "to": "407"}, {"from": "164", "to": "164.35"}, {"from": "8643", "to": "392"}, {"from": "1190", "to": "91"}, {"from": "8643", "to": "553"}, {"from": "8643", "to": "834"}, {"from": "847", "to": "9223372036854775808"}, {"from": "601", "to": "208"}, {"from": "8643", "to": "684"}, {"from": "9007199254740992", "to": "534"}, {"from": "787", "to": "9223372036854775808"}, {"from": "8643", "to": "349"}, {"from": "16", "to": "16.1"}, {"from": "173", "to": "218"}, {"from": "638", "to": "635"}, {"from": "592.4", "to": "952"}, {"from": "7373", "to": "82"}, {"from": "481", "to": "484"}, {"from": "93", "to": "4352"}, {"from": "8643", "to": "312"}, {"from": "4", "to": "73"}, {"from": "666.1", "to": "3999"}, {"from": "8643", "to": "814"}, {"from": "693", "to": "694"}, {"from": "8643", "to": "186"}, {"from": "84", "to": "105"}, {"from": "2.1", "to": "46"}, {"from": "8643", "to": "165"}, {"from": "11", "to": "526"}, {"from": "78", "to": "243"}, {"from": "124.1", "to": "124.2"}, {"from": "8643", "to": "380"}, {"from": "0", "to": "1390"}, {"from": "10", "to": "10.1"}, {"from": "8643", "to": "73"}, {"from": "11", "to": "547"}, {"from": "611", "to": "2057"}, {"from": "8643", "to": "53"}, {"from": "2031", "to": "2031.3"}, {"from": "8643", "to": "992"}, {"from": "6885", "to": "6886"}, {"from": "271", "to": "4"}, {"from": "199", "to": "35"}, {"from": "7", "to": "67"}, {"from": "997", "to": "37"}, {"from": "666", "to": "900"}, {"from": "1", "to": "0.15"}, {"from": "1329", "to": "1482"}, {"from": "679", "to": "679.1"}, {"from": "8643", "to": "109"}, {"from": "1031", "to": "6666"}, {"from": "8643", "to": "51"}, {"from": "9464", "to": "6999"}, {"from": "11", "to": "455"}, {"from": "7", "to": "311"}, {"from": "362", "to": "200"}, {"from": "1314", "to": "0"}, {"from": "3718", "to": "0"}, {"from": "1225", "to": "92"}, {"from": "18", "to": "19"}, {"from": "0.74", "to": "7.4"}, {"from": "11", "to": "147"}, {"from": "8643", "to": "235"}, {"from": "337", "to": "7419"}, {"from": "37", "to": "37.55"}, {"from": "36", "to": "105"}, {"from": "450", "to": "644"}, {"from": "8643", "to": "12"}, {"from": "713", "to": "0"}, {"from": "2666", "to": "666"}, {"from": "1004", "to": "1056"}, {"from": "8643", "to": "474"}, {"from": "108", "to": "155"}, {"from": "8643", "to": "482"}, {"from": "13", "to": "60"}, {"from": "4002", "to": "1"}, {"from": "8643", "to": "8"}, {"from": "1237.1", "to": "266"}, {"from": "556", "to": "254"}, {"from": "610", "to": "6999"}, {"from": "3082", "to": "117"}, {"from": "1039", "to": "1040"}, {"from": "77", "to": "364"}, {"from": "610", "to": "455"}, {"from": "327", "to": "3999"}, {"from": "867", "to": "72"}, {"from": "532", "to": "882"}, {"from": "456", "to": "869"}, {"from": "8643", "to": "713"}, {"from": "100", "to": "132"}, {"from": "8643", "to": "709"}, {"from": "8643", "to": "172"}, {"from": "3999", "to": "1913"}, {"from": "610", "to": "303"}, {"from": "35", "to": "130"}, {"from": "441", "to": "455"}, {"from": "7820", "to": "525"}, {"from": "331", "to": "332"}, {"from": "8643", "to": "860"}, {"from": "5", "to": "795"}, {"from": "11", "to": "605"}, {"from": "149", "to": "81"}, {"from": "245", "to": "244"}, {"from": "0", "to": "1548"}, {"from": "848", "to": "61"}, {"from": "1154", "to": "1155"}, {"from": "478", "to": "658"}, {"from": "246", "to": "954"}, {"from": "301", "to": "1060"}, {"from": "8643", "to": "447"}, {"from": "69420", "to": "214"}, {"from": "628", "to": "1033"}, {"from": "124", "to": "1066"}, {"from": "11", "to": "658"}, {"from": "725", "to": "409"}, {"from": "11", "to": "313"}, {"from": "1547", "to": "5345"}, {"from": "8643", "to": "335"}, {"from": "8643", "to": "610"}, {"from": "73", "to": "7"}, {"from": "232", "to": "1051"}, {"from": "1243", "to": "603"}, {"from": "22.1", "to": "22"}, {"from": "2004", "to": "2007"}, {"from": "708", "to": "628"}, {"from": "7777", "to": "3494"}, {"from": "8643", "to": "195"}, {"from": "11", "to": "1370"}, {"from": "8643", "to": "771"}, {"from": "8643", "to": "230"}, {"from": "16.1", "to": "11"}, {"from": "656", "to": "6.56"}, {"from": "610", "to": "459"}, {"from": "330", "to": "1164"}, {"from": "316", "to": "606"}, {"from": "9.1", "to": "891"}, {"from": "969", "to": "203"}, {"from": "4242", "to": "37.55"}, {"from": "8643", "to": "609"}, {"from": "7191", "to": "407"}, {"from": "37", "to": "867.5"}, {"from": "3999", "to": "105"}, {"from": "477", "to": "6"}, {"from": "3123", "to": "7357"}, {"from": "860", "to": "0"}, {"from": "1913", "to": "37"}, {"from": "860", "to": "859"}, {"from": "9", "to": "1543"}, {"from": "92", "to": "319"}, {"from": "40", "to": "590"}, {"from": "21", "to": "20"}, {"from": "5", "to": "4112"}, {"from": "152", "to": "10"}, {"from": "8643", "to": "821"}, {"from": "1998", "to": "11"}, {"from": "8643", "to": "619"}, {"from": "4827", "to": "4"}, {"from": "5556", "to": "3890"}, {"from": "11.66", "to": "11.1"}, {"from": "13", "to": "894"}, {"from": "428", "to": "4287"}, {"from": "86400", "to": "86400.1"}, {"from": "3", "to": "3128"}, {"from": "46", "to": "8.8"}, {"from": "8643", "to": "923"}, {"from": "1113", "to": "1073"}, {"from": "160", "to": "11"}, {"from": "847", "to": "17"}, {"from": "4.6", "to": "3"}, {"from": "8643", "to": "864"}, {"from": "894", "to": "4"}, {"from": "834", "to": "7005"}, {"from": "54", "to": "153"}, {"from": "9", "to": "553"}, {"from": "10.3", "to": "1"}, {"from": "2", "to": "1.3"}, {"from": "8643", "to": "787"}, {"from": "607", "to": "9"}, {"from": "8643", "to": "177"}, {"from": "32", "to": "22"}, {"from": "69", "to": "840"}, {"from": "146", "to": "147"}, {"from": "407", "to": "18"}, {"from": "8643", "to": "567"}, {"from": "8643", "to": "105"}, {"from": "2027.1", "to": "2031"}, {"from": "716", "to": "380"}, {"from": "8643", "to": "404"}, {"from": "1086", "to": "8"}, {"from": "2540", "to": "69"}, {"from": "120", "to": "1597"}, {"from": "5", "to": "1273"}, {"from": "10", "to": "198"}, {"from": "8643", "to": "588"}, {"from": "8643", "to": "957"}, {"from": "100", "to": "295"}, {"from": "286", "to": "564"}, {"from": "0", "to": "239"}, {"from": "961", "to": "879"}, {"from": "8643", "to": "960"}, {"from": "11", "to": "480"}, {"from": "2755", "to": "6565"}, {"from": "573", "to": "0"}, {"from": "9223372036854775808", "to": "265"}, {"from": "8902", "to": "10"}, {"from": "63", "to": "77"}, {"from": "10", "to": "854"}, {"from": "9", "to": "73"}, {"from": "8643", "to": "87"}, {"from": "19.1", "to": "20"}, {"from": "970", "to": "982"}, {"from": "416", "to": "1"}, {"from": "8643", "to": "772"}, {"from": "11", "to": "320"}, {"from": "18", "to": "2222"}, {"from": "8643", "to": "50"}, {"from": "1078", "to": "2004"}, {"from": "758", "to": "139"}, {"from": "4857", "to": "11"}, {"from": "5", "to": "246"}, {"from": "972", "to": "973"}, {"from": "732", "to": "37"}, {"from": "40", "to": "471"}, {"from": "92", "to": "37"}, {"from": "994", "to": "99"}, {"from": "8643", "to": "118"}, {"from": "160", "to": "47"}, {"from": "8643", "to": "347"}, {"from": "18", "to": "708"}, {"from": "11", "to": "224"}, {"from": "3999", "to": "7317"}, {"from": "0", "to": "1857"}, {"from": "8643", "to": "637"}, {"from": "742", "to": "37"}, {"from": "4", "to": "408"}, {"from": "223", "to": "0"}, {"from": "920", "to": "764"}, {"from": "622", "to": "27"}, {"from": "8643", "to": "40"}, {"from": "15", "to": "16"}, {"from": "2", "to": "606"}, {"from": "94", "to": "1"}, {"from": "8643", "to": "977"}, {"from": "8643", "to": "408"}, {"from": "4009", "to": "4013"}, {"from": "666.1", "to": "0"}, {"from": "8643", "to": "816"}, {"from": "890", "to": "925"}, {"from": "7", "to": "740"}, {"from": "37", "to": "62"}, {"from": "8565", "to": "18"}, {"from": "1113", "to": "1243"}, {"from": "9797", "to": "574"}, {"from": "60", "to": "666"}, {"from": "1074", "to": "1075"}, {"from": "592", "to": "611.2"}, {"from": "738", "to": "8"}, {"from": "301", "to": "9"}, {"from": "1342", "to": "1343"}, {"from": "5556", "to": "69"}, {"from": "768", "to": "709"}, {"from": "572", "to": "22"}, {"from": "108", "to": "170"}, {"from": "69420", "to": "66"}, {"from": "1236", "to": "974"}, {"from": "8565", "to": "10"}, {"from": "571.5", "to": "2395"}, {"from": "3313", "to": "1"}, {"from": "83", "to": "9"}, {"from": "1007", "to": "561"}, {"from": "39", "to": "62"}, {"from": "8", "to": "706"}, {"from": "4000", "to": "1521"}, {"from": "8643", "to": "123"}, {"from": "8643", "to": "487"}, {"from": "73", "to": "745"}, {"from": "223", "to": "96"}, {"from": "315", "to": "0"}, {"from": "60", "to": "61"}, {"from": "22", "to": "197"}, {"from": "244", "to": "371"}, {"from": "3999", "to": "3999.2"}, {"from": "7", "to": "13"}, {"from": "939", "to": "150"}, {"from": "219", "to": "0"}, {"from": "3422", "to": "3421"}, {"from": "8643", "to": "324"}, {"from": "596.1", "to": "92"}, {"from": "986", "to": "7"}, {"from": "100", "to": "754"}, {"from": "248", "to": "554"}, {"from": "396", "to": "1297"}, {"from": "787", "to": "6.1"}, {"from": "20", "to": "1042"}, {"from": "848", "to": "43"}, {"from": "8643", "to": "164"}, {"from": "620", "to": "957"}, {"from": "431", "to": "149"}, {"from": "8643", "to": "922"}, {"from": "2.3", "to": "3"}, {"from": "220", "to": "1225"}, {"from": "210", "to": "925"}, {"from": "1023", "to": "100"}, {"from": "30", "to": "624"}, {"from": "6.1", "to": "7005"}, {"from": "166", "to": "6999"}, {"from": "73", "to": "219"}, {"from": "34", "to": "290"}, {"from": "8643", "to": "929"}, {"from": "8643", "to": "632"}, {"from": "8643", "to": "48"}, {"from": "71", "to": "72"}, {"from": "8643", "to": "750"}, {"from": "8643", "to": "210"}, {"from": "203", "to": "0"}, {"from": "1000", "to": "2"}, {"from": "8643", "to": "785"}, {"from": "0.03", "to": "2.2"}, {"from": "8643", "to": "519"}, {"from": "0", "to": "924"}, {"from": "8643", "to": "913"}, {"from": "264", "to": "3"}, {"from": "11", "to": "557"}, {"from": "106", "to": "176"}, {"from": "10.001", "to": "6"}, {"from": "37.2", "to": "37"}, {"from": "1", "to": "0.01"}, {"from": "270", "to": "78"}, {"from": "11", "to": "2023"}, {"from": "0", "to": "86400"}, {"from": "8", "to": "624"}, {"from": "985", "to": "667"}, {"from": "264", "to": "1"}, {"from": "22", "to": "1"}, {"from": "8643", "to": "681"}, {"from": "4632", "to": "48"}, {"from": "11", "to": "1984"}, {"from": "3999.1", "to": "930"}, {"from": "37.55", "to": "89"}, {"from": "62", "to": "509"}, {"from": "54", "to": "37"}, {"from": "610", "to": "299"}, {"from": "8643", "to": "116"}, {"from": "969", "to": "970"}, {"from": "8643", "to": "672"}, {"from": "73", "to": "77"}, {"from": "11", "to": "5500"}, {"from": "2222", "to": "6"}, {"from": "42", "to": "861"}, {"from": "8643", "to": "481"}, {"from": "18", "to": "4269"}, {"from": "880", "to": "881"}, {"from": "8643", "to": "261"}, {"from": "685", "to": "675"}, {"from": "8643", "to": "775"}, {"from": "377", "to": "4"}, {"from": "20", "to": "451"}, {"from": "239", "to": "11"}, {"from": "2998", "to": "1070"}, {"from": "18", "to": "278"}, {"from": "8643", "to": "773"}, {"from": "10", "to": "284"}, {"from": "572", "to": "469"}, {"from": "68", "to": "1009"}, {"from": "1129", "to": "18"}, {"from": "698", "to": "699"}, {"from": "2787", "to": "76"}, {"from": "5024", "to": "5025"}, {"from": "1195", "to": "7069"}, {"from": "1044", "to": "6.1"}, {"from": "557", "to": "804"}, {"from": "13", "to": "130.3"}, {"from": "8643", "to": "364"}, {"from": "2031", "to": "66"}, {"from": "858", "to": "14"}, {"from": "4002", "to": "188"}, {"from": "15", "to": "990"}, {"from": "8643", "to": "81"}, {"from": "89", "to": "870"}, {"from": "119", "to": "532"}, {"from": "550", "to": "100"}, {"from": "8643", "to": "260"}, {"from": "7453", "to": "757"}, {"from": "1912", "to": "1912.3"}, {"from": "466", "to": "465"}, {"from": "8643", "to": "659"}, {"from": "11", "to": "24"}, {"from": "2052", "to": "2250"}, {"from": "8643", "to": "433"}, {"from": "8643", "to": "730"}, {"from": "611.2", "to": "611.3"}, {"from": "1044", "to": "1.3"}, {"from": "8643", "to": "500"}, {"from": "8643", "to": "577"}, {"from": "2250", "to": "1800"}, {"from": "3.3", "to": "3"}, {"from": "2187", "to": "2187.2"}, {"from": "8643", "to": "980"}, {"from": "1980", "to": "2"}, {"from": "1045", "to": "289"}, {"from": "1195", "to": "9223372036854775808"}, {"from": "596", "to": "387"}, {"from": "1528473", "to": "262"}, {"from": "8643", "to": "852"}, {"from": "382", "to": "3998"}, {"from": "5556", "to": "2"}, {"from": "26", "to": "19"}, {"from": "140", "to": "177"}, {"from": "8643", "to": "19"}, {"from": "10", "to": "4013"}, {"from": "568", "to": "1089"}, {"from": "382", "to": "4005"}, {"from": "8643", "to": "311"}, {"from": "2540", "to": "0"}, {"from": "71", "to": "5025"}, {"from": "414", "to": "7243"}, {"from": "671", "to": "365"}, {"from": "477", "to": "11"}, {"from": "10", "to": "10.6"}, {"from": "708", "to": "38"}, {"from": "628", "to": "990"}, {"from": "8643", "to": "498"}, {"from": "11", "to": "849"}, {"from": "2805", "to": "807"}, {"from": "273", "to": "0"}, {"from": "2787", "to": "1314"}, {"from": "1462", "to": "1463"}, {"from": "2250", "to": "3086"}, {"from": "16", "to": "4"}, {"from": "1273", "to": "24"}, {"from": "8643", "to": "106"}, {"from": "14.6", "to": "5"}, {"from": "8643", "to": "304"}, {"from": "802", "to": "6"}, {"from": "999", "to": "354"}, {"from": "464", "to": "849"}, {"from": "231", "to": "0"}, {"from": "603", "to": "200"}, {"from": "413", "to": "414"}, {"from": "924721", "to": "83"}, {"from": "35", "to": "1988"}, {"from": "7773", "to": "595"}, {"from": "10", "to": "7773"}, {"from": "465", "to": "464"}, {"from": "37", "to": "6092"}, {"from": "49", "to": "72"}, {"from": "999", "to": "5"}, {"from": "199", "to": "238"}, {"from": "988", "to": "9"}, {"from": "386", "to": "1050"}, {"from": "62", "to": "486"}, {"from": "947", "to": "658"}, {"from": "8643", "to": "693"}, {"from": "1036", "to": "7"}, {"from": "8643", "to": "554"}, {"from": "2", "to": "1069"}, {"from": "27", "to": "2031"}, {"from": "662", "to": "332"}, {"from": "0", "to": "606"}, {"from": "8000", "to": "8001"}, {"from": "4957", "to": "10"}, {"from": "988", "to": "395"}, {"from": "592", "to": "380"}, {"from": "36", "to": "708"}, {"from": "8643", "to": "868"}, {"from": "8643", "to": "494"}, {"from": "8643", "to": "793"}, {"from": "268", "to": "0.1"}, {"from": "614", "to": "555"}, {"from": "8643", "to": "137"}, {"from": "67", "to": "431"}, {"from": "232", "to": "9"}, {"from": "188", "to": "1370"}, {"from": "153", "to": "298"}, {"from": "300", "to": "550"}, {"from": "47", "to": "273"}, {"from": "793", "to": "10"}, {"from": "1206", "to": "27"}, {"from": "892", "to": "7453"}, {"from": "8643", "to": "445"}, {"from": "54", "to": "1.5"}, {"from": "610", "to": "5"}, {"from": "1170", "to": "1890"}, {"from": "149", "to": "370"}, {"from": "1004", "to": "1"}, {"from": "511", "to": "25"}, {"from": "8643", "to": "214"}, {"from": "18", "to": "190"}, {"from": "1.13", "to": "5"}, {"from": "1649", "to": "11"}, {"from": "662", "to": "11"}, {"from": "377", "to": "378"}, {"from": "45", "to": "0"}, {"from": "18", "to": "249"}, {"from": "615", "to": "1244"}, {"from": "8643", "to": "254"}, {"from": "11", "to": "173"}, {"from": "351", "to": "415"}, {"from": "3999.1", "to": "0.7"}, {"from": "8643", "to": "748"}, {"from": "445", "to": "321"}, {"from": "119", "to": "37"}, {"from": "826", "to": "448"}, {"from": "8643", "to": "753"}, {"from": "2031", "to": "694"}, {"from": "93", "to": "94"}, {"from": "65536", "to": "0"}, {"from": "9", "to": "9.2"}, {"from": "7868", "to": "6999"}, {"from": "1239", "to": "0"}, {"from": "918", "to": "2310"}, {"from": "39", "to": "27"}, {"from": "768", "to": "100"}, {"from": "222", "to": "223"}, {"from": "0.69", "to": "4918"}, {"from": "2040", "to": "3191"}, {"from": "601", "to": "1001"}, {"from": "451", "to": "427"}, {"from": "96", "to": "97"}, {"from": "759", "to": "491"}, {"from": "931", "to": "7776"}, {"from": "10", "to": "10.5"}, {"from": "213", "to": "100"}, {"from": "52", "to": "43"}, {"from": "8643", "to": "676"}, {"from": "2", "to": "5025"}, {"from": "1048", "to": "1049"}, {"from": "39", "to": "7999"}, {"from": "7820", "to": "0"}, {"from": "9223372036854775808", "to": "606"}, {"from": "73", "to": "45"}, {"from": "985", "to": "346"}, {"from": "8643", "to": "698"}, {"from": "8", "to": "9"}, {"from": "79", "to": "792319"}, {"from": "1641", "to": "6.1"}, {"from": "8643", "to": "600"}, {"from": "8643", "to": "727"}, {"from": "94", "to": "163"}, {"from": "94", "to": "906"}, {"from": "900", "to": "10"}, {"from": "8643", "to": "281"}, {"from": "525", "to": "2323"}, {"from": "8643", "to": "436"}, {"from": "141", "to": "6.1"}, {"from": "47", "to": "153"}, {"from": "63", "to": "110"}, {"from": "753", "to": "92"}, {"from": "5.2", "to": "5.3"}, {"from": "1988", "to": "22"}, {"from": "8643", "to": "460"}, {"from": "54", "to": "283"}, {"from": "993", "to": "71"}, {"from": "8643", "to": "117"}, {"from": "431", "to": "666"}, {"from": "690", "to": "691"}, {"from": "10", "to": "10.2"}, {"from": "8643", "to": "651"}, {"from": "150", "to": "4004"}, {"from": "8643", "to": "966"}, {"from": "3999", "to": "2011"}, {"from": "8643", "to": "444"}, {"from": "592", "to": "609"}, {"from": "1674", "to": "69"}, {"from": "153", "to": "3999"}, {"from": "466", "to": "11"}, {"from": "1286", "to": "3999"}, {"from": "271", "to": "3"}, {"from": "532", "to": "155"}, {"from": "598", "to": "40"}, {"from": "386", "to": "71"}, {"from": "423", "to": "300"}, {"from": "8643", "to": "411"}, {"from": "289", "to": "89"}, {"from": "431", "to": "176"}, {"from": "529", "to": "773"}, {"from": "271", "to": "1"}, {"from": "9", "to": "19"}, {"from": "2.4", "to": "0.1"}, {"from": "9.9", "to": "900"}, {"from": "9", "to": "311"}, {"from": "1071", "to": "655"}, {"from": "8643", "to": "802"}, {"from": "84", "to": "85"}, {"from": "2.5", "to": "2.1"}, {"from": "195", "to": "952"}, {"from": "388", "to": "0"}, {"from": "3511", "to": "3003"}, {"from": "8643", "to": "262"}, {"from": "8643", "to": "708"}, {"from": "1237.1", "to": "4000"}, {"from": "8643", "to": "811"}, {"from": "139", "to": "10"}, {"from": "0.8", "to": "289"}, {"from": "5025", "to": "5026"}, {"from": "1044", "to": "6"}, {"from": "8643", "to": "92"}, {"from": "8643", "to": "310"}, {"from": "9.11", "to": "9"}, {"from": "372", "to": "673"}, {"from": "11", "to": "12"}, {"from": "128", "to": "608"}, {"from": "1390", "to": "1619"}, {"from": "7005", "to": "1000"}, {"from": "544", "to": "753"}, {"from": "610", "to": "456"}, {"from": "8643", "to": "760"}, {"from": "1998", "to": "1950"}, {"from": "689", "to": "195"}, {"from": "2916", "to": "258"}, {"from": "4004", "to": "4005"}, {"from": "0.69", "to": "6.1"}, {"from": "536", "to": "537"}, {"from": "618", "to": "620"}, {"from": "606", "to": "1799"}, {"from": "99", "to": "999"}, {"from": "11", "to": "713"}, {"from": "297", "to": "403"}, {"from": "9124", "to": "887"}, {"from": "2027", "to": "5.1"}, {"from": "7", "to": "1049"}, {"from": "256", "to": "512"}, {"from": "44.5", "to": "44"}, {"from": "8643", "to": "842"}, {"from": "905", "to": "912"}, {"from": "204", "to": "0"}, {"from": "15", "to": "24.1"}, {"from": "153", "to": "150"}, {"from": "36", "to": "233"}, {"from": "595", "to": "5965"}, {"from": "8643", "to": "9"}, {"from": "1554", "to": "60"}, {"from": "8", "to": "4009"}, {"from": "798", "to": "1276"}, {"from": "383", "to": "2104"}, {"from": "102", "to": "188"}, {"from": "11", "to": "8844"}, {"from": "37.6", "to": "37.1"}, {"from": "8643", "to": "942"}, {"from": "35", "to": "666"}, {"from": "8643", "to": "740"}, {"from": "11", "to": "860"}, {"from": "8643", "to": "707"}, {"from": "4999", "to": "3999"}, {"from": "8643", "to": "887"}, {"from": "54086546758", "to": "1296"}, {"from": "3999.2", "to": "3999.5"}, {"from": "168", "to": "197"}, {"from": "8643", "to": "341"}, {"from": "8643", "to": "136"}, {"from": "8643", "to": "395"}, {"from": "119", "to": "2020"}, {"from": "8643", "to": "256"}, {"from": "8643", "to": "951"}, {"from": "771", "to": "80"}, {"from": "239", "to": "61"}, {"from": "802", "to": "3"}, {"from": "1813", "to": "1814"}, {"from": "177", "to": "178"}, {"from": "8643", "to": "853"}, {"from": "4", "to": "13"}, {"from": "1.5", "to": "9000"}, {"from": "8643", "to": "971"}, {"from": "8643", "to": "742"}, {"from": "627", "to": "11875"}, {"from": "8643", "to": "534"}, {"from": "592", "to": "514"}, {"from": "494", "to": "494.1"}, {"from": "131", "to": "9.3"}, {"from": "11", "to": "610"}, {"from": "8643", "to": "665"}, {"from": "1515", "to": "1515.1"}, {"from": "6886", "to": "37"}, {"from": "746", "to": "380"}, {"from": "6", "to": "679"}, {"from": "917", "to": "918"}, {"from": "252", "to": "4"}, {"from": "8643", "to": "907"}, {"from": "8643", "to": "13"}, {"from": "391", "to": "390"}, {"from": "8643", "to": "66"}, {"from": "999", "to": "9223372036854775808"}, {"from": "0", "to": "119"}, {"from": "4002", "to": "90"}, {"from": "589", "to": "5"}, {"from": "5410", "to": "1"}, {"from": "293", "to": "8"}, {"from": "496", "to": "713"}, {"from": "260", "to": "1980"}, {"from": "11", "to": "9223372036854775808"}, {"from": "2250", "to": "2020"}, {"from": "8643", "to": "365"}, {"from": "477", "to": "188"}, {"from": "8643", "to": "587"}, {"from": "916.1", "to": "541"}, {"from": "1042", "to": "1890"}, {"from": "480", "to": "194"}, {"from": "1044", "to": "541"}, {"from": "3001", "to": "3001.1"}, {"from": "811", "to": "812"}, {"from": "9.9", "to": "10"}, {"from": "610", "to": "515"}, {"from": "777", "to": "666"}, {"from": "264", "to": "1000"}, {"from": "8643", "to": "135"}, {"from": "37.212", "to": "615"}, {"from": "8643", "to": "614"}, {"from": "492.1", "to": "4"}, {"from": "1819", "to": "8"}, {"from": "1813", "to": "0"}, {"from": "426", "to": "427"}, {"from": "4816", "to": "998"}, {"from": "998", "to": "278"}, {"from": "825", "to": "7005"}, {"from": "777", "to": "188"}, {"from": "248", "to": "249"}, {"from": "176", "to": "3700"}, {"from": "8643", "to": "850"}, {"from": "8", "to": "1813"}, {"from": "1234", "to": "81"}, {"from": "62", "to": "61"}, {"from": "936", "to": "11"}, {"from": "7357", "to": "1890"}, {"from": "424", "to": "1"}, {"from": "1948", "to": "9"}, {"from": "545", "to": "284"}, {"from": "4003", "to": "4004"}, {"from": "508", "to": "100"}, {"from": "46", "to": "397"}, {"from": "22", "to": "688"}, {"from": "983", "to": "984"}, {"from": "605", "to": "606"}, {"from": "1079", "to": "1244"}, {"from": "141", "to": "811"}, {"from": "8643", "to": "72"}, {"from": "741", "to": "239"}, {"from": "292", "to": "293"}, {"from": "264", "to": "999"}, {"from": "37", "to": "6000"}, {"from": "11", "to": "105"}, {"from": "455", "to": "107"}, {"from": "7.3", "to": "2395"}, {"from": "953", "to": "834"}, {"from": "18", "to": "1283"}, {"from": "2027", "to": "2041"}, {"from": "345", "to": "346"}, {"from": "8643", "to": "799"}, {"from": "8643", "to": "278"}, {"from": "0", "to": "4013"}, {"from": "4007", "to": "3999"}, {"from": "0", "to": "5555"}, {"from": "29", "to": "40"}, {"from": "480", "to": "7"}, {"from": "8643", "to": "293"}, {"from": "615", "to": "619"}, {"from": "8643", "to": "294"}, {"from": "8643", "to": "987"}, {"from": "1.05", "to": "2"}, {"from": "996", "to": "0"}, {"from": "810", "to": "5"}, {"from": "0", "to": "197"}, {"from": "7.1", "to": "8"}, {"from": "8643", "to": "767"}, {"from": "2057", "to": "9"}, {"from": "9563", "to": "1988"}, {"from": "8643", "to": "702"}, {"from": "97", "to": "98"}, {"from": "4858", "to": "48"}, {"from": "607", "to": "7"}, {"from": "999", "to": "501"}, {"from": "8643", "to": "233"}, {"from": "128", "to": "870"}, {"from": "512", "to": "10"}, {"from": "13", "to": "94"}, {"from": "153", "to": "1464"}, {"from": "11", "to": "772"}, {"from": "278", "to": "103"}, {"from": "48", "to": "1107"}, {"from": "150", "to": "133"}, {"from": "20", "to": "7005"}, {"from": "9999", "to": "9999.3"}, {"from": "8643", "to": "975"}, {"from": "760", "to": "761"}, {"from": "8643", "to": "288"}, {"from": "45", "to": "4007"}, {"from": "0.03", "to": "1.001"}, {"from": "8643", "to": "202"}, {"from": "423", "to": "158"}, {"from": "448", "to": "9"}, {"from": "82", "to": "4"}, {"from": "6999", "to": "4999"}, {"from": "95", "to": "714"}, {"from": "1", "to": "268"}, {"from": "179", "to": "181"}, {"from": "11", "to": "118"}, {"from": "571", "to": "2144"}, {"from": "8643", "to": "370"}, {"from": "8643", "to": "467"}, {"from": "8643", "to": "246"}, {"from": "92", "to": "295"}, {"from": "8643", "to": "215"}, {"from": "1007", "to": "0"}, {"from": "8643", "to": "623"}, {"from": "1055", "to": "1054"}, {"from": "10", "to": "666"}, {"from": "8643", "to": "810"}, {"from": "83", "to": "263"}, {"from": "8402", "to": "188"}, {"from": "6969", "to": "615"}, {"from": "11", "to": "40"}, {"from": "2100", "to": "2001"}, {"from": "4909", "to": "79"}, {"from": "1960", "to": "65"}, {"from": "376", "to": "375"}, {"from": "673", "to": "703"}, {"from": "201", "to": "202"}, {"from": "38", "to": "39"}, {"from": "1050", "to": "1521"}, {"from": "5555", "to": "5556"}, {"from": "30", "to": "33"}, {"from": "8009", "to": "7357"}, {"from": "1036", "to": "3999"}, {"from": "8565", "to": "8888"}, {"from": "11", "to": "408"}, {"from": "420", "to": "4"}, {"from": "986", "to": "2"}, {"from": "0", "to": "1"}, {"from": "10", "to": "176"}, {"from": "9223372036854775808", "to": "1813"}, {"from": "8643", "to": "323"}, {"from": "8643", "to": "438"}, {"from": "8643", "to": "162"}, {"from": "232", "to": "1073"}, {"from": "10", "to": "61"}, {"from": "1", "to": "428"}, {"from": "8643", "to": "213"}, {"from": "561", "to": "1984"}, {"from": "1610", "to": "1609"}, {"from": "609", "to": "610"}, {"from": "3210", "to": "7"}, {"from": "9", "to": "395"}, {"from": "8643", "to": "466"}, {"from": "153", "to": "253"}, {"from": "8643", "to": "493"}, {"from": "427", "to": "429"}, {"from": "521", "to": "3"}, {"from": "869", "to": "171"}, {"from": "1057", "to": "203"}, {"from": "2040", "to": "18"}, {"from": "610", "to": "239"}, {"from": "1547", "to": "149"}, {"from": "318", "to": "869"}, {"from": "601", "to": "387"}, {"from": "914", "to": "973"}, {"from": "7", "to": "7.8"}, {"from": "8643", "to": "840"}, {"from": "8643", "to": "669"}, {"from": "1065", "to": "1066"}, {"from": "3999", "to": "1738"}, {"from": "9", "to": "13"}, {"from": "0", "to": "0.8"}, {"from": "8643", "to": "124"}, {"from": "98", "to": "1311"}, {"from": "99", "to": "37"}, {"from": "1819", "to": "87"}, {"from": "490", "to": "6"}, {"from": "1201", "to": "1975"}, {"from": "1099", "to": "10"}, {"from": "988", "to": "301"}, {"from": "1739", "to": "1791"}, {"from": "571", "to": "571.5"}, {"from": "4909", "to": "188.1"}, {"from": "239", "to": "43"}, {"from": "583", "to": "1999"}, {"from": "37.2", "to": "67"}, {"from": "735", "to": "4"}, {"from": "592", "to": "985"}, {"from": "322", "to": "542"}, {"from": "11", "to": "100"}, {"from": "8643", "to": "249"}, {"from": "438", "to": "439"}, {"from": "735", "to": "523"}, {"from": "34", "to": "8"}, {"from": "9209", "to": "8586"}, {"from": "190", "to": "71"}, {"from": "375", "to": "760"}, {"from": "653", "to": "96"}, {"from": "511", "to": "11"}, {"from": "295", "to": "43"}, {"from": "0", "to": "904"}, {"from": "116", "to": "513"}, {"from": "6", "to": "4.6"}, {"from": "8643", "to": "351"}, {"from": "5556", "to": "23"}, {"from": "796", "to": "788"}, {"from": "14", "to": "1948"}, {"from": "222", "to": "4"}, {"from": "974", "to": "1368"}, {"from": "6067", "to": "6068"}, {"from": "303", "to": "32"}, {"from": "148", "to": "246"}, {"from": "2100", "to": "693"}, {"from": "146", "to": "6.3"}, {"from": "8643", "to": "936"}, {"from": "666", "to": "325"}, {"from": "11", "to": "4918"}, {"from": "81", "to": "13"}, {"from": "8643", "to": "734"}, {"from": "757", "to": "758"}, {"from": "607", "to": "4"}, {"from": "37.9", "to": "37.91"}, {"from": "1863", "to": "3999"}, {"from": "1482", "to": "222"}, {"from": "60", "to": "0"}, {"from": "1244", "to": "1329"}, {"from": "8643", "to": "597"}, {"from": "5.1", "to": "5"}, {"from": "8643", "to": "332"}, {"from": "8643", "to": "71"}, {"from": "300", "to": "1089"}, {"from": "11", "to": "865"}, {"from": "986", "to": "0"}, {"from": "8643", "to": "921"}, {"from": "8643", "to": "596"}, {"from": "42", "to": "54"}, {"from": "649", "to": "775"}, {"from": "319", "to": "182"}, {"from": "1.5", "to": "841"}, {"from": "187", "to": "231"}, {"from": "312", "to": "477"}, {"from": "894", "to": "873"}, {"from": "928", "to": "8190"}, {"from": "3636", "to": "33"}, {"from": "11", "to": "706"}, {"from": "118", "to": "376"}, {"from": "1980", "to": "1985"}, {"from": "529", "to": "4112"}, {"from": "1543", "to": "1.001"}, {"from": "1619", "to": "10"}, {"from": "10", "to": "798"}, {"from": "7.1", "to": "49"}, {"from": "39", "to": "67"}, {"from": "2226", "to": "1237"}, {"from": "8643", "to": "973"}, {"from": "9", "to": "1273"}, {"from": "377", "to": "1"}, {"from": "234", "to": "11"}, {"from": "188", "to": "380"}, {"from": "5.7", "to": "571"}, {"from": "8643", "to": "699"}, {"from": "127", "to": "128"}, {"from": "8643", "to": "714"}, {"from": "3", "to": "4"}, {"from": "8643", "to": "11"}, {"from": "109", "to": "0"}, {"from": "2323", "to": "199"}, {"from": "619", "to": "6969"}, {"from": "873", "to": "311"}, {"from": "8190", "to": "19"}, {"from": "8643", "to": "884"}, {"from": "243", "to": "244"}, {"from": "8643", "to": "626"}, {"from": "952", "to": "1239"}, {"from": "557", "to": "880"}, {"from": "5556", "to": "5938"}, {"from": "3", "to": "6978"}, {"from": "5965", "to": "5"}, {"from": "974", "to": "596"}, {"from": "11.72", "to": "475"}, {"from": "1857", "to": "11"}, {"from": "74", "to": "192"}, {"from": "174", "to": "6339"}, {"from": "364", "to": "286"}, {"from": "370", "to": "379"}, {"from": "8643", "to": "231"}, {"from": "1.8", "to": "1.5"}, {"from": "1", "to": "289"}, {"from": "11", "to": "311"}, {"from": "8643", "to": "789"}, {"from": "1036", "to": "2"}, {"from": "8643", "to": "268"}, {"from": "611.2", "to": "230"}, {"from": "83", "to": "86"}, {"from": "6969", "to": "6.1"}, {"from": "1", "to": "11.5"}, {"from": "9645", "to": "2187"}, {"from": "692", "to": "692.1"}, {"from": "1181", "to": "2241"}, {"from": "0.7", "to": "166"}, {"from": "279", "to": "180"}, {"from": "3718", "to": "9223372036854775808"}, {"from": "11", "to": "624"}, {"from": "518", "to": "40"}, {"from": "6.1", "to": "1399"}, {"from": "8643", "to": "393"}, {"from": "472", "to": "494.1"}, {"from": "1244", "to": "249"}, {"from": "1195", "to": "99"}, {"from": "11", "to": "4957"}, {"from": "430", "to": "429"}, {"from": "5.98", "to": "6.1"}, {"from": "6.1", "to": "251"}, {"from": "42", "to": "43"}, {"from": "17", "to": "19"}, {"from": "9.4", "to": "10"}, {"from": "8643", "to": "428"}, {"from": "656", "to": "771"}, {"from": "239", "to": "3999"}, {"from": "150", "to": "165"}, {"from": "924", "to": "925"}, {"from": "762", "to": "763"}, {"from": "6173", "to": "67"}, {"from": "8643", "to": "47"}, {"from": "8643", "to": "558"}, {"from": "939", "to": "155"}, {"from": "1109", "to": "9.9"}, {"from": "11", "to": "744"}, {"from": "155", "to": "290"}, {"from": "1347", "to": "19"}, {"from": "65", "to": "432"}, {"from": "636", "to": "118"}, {"from": "648", "to": "806"}, {"from": "307", "to": "367"}, {"from": "8643", "to": "911"}, {"from": "929", "to": "188"}, {"from": "95", "to": "163"}, {"from": "22", "to": "883"}, {"from": "608", "to": "609"}, {"from": "8198", "to": "7"}, {"from": "3999.1", "to": "9"}, {"from": "8643", "to": "300"}, {"from": "22", "to": "188.3"}, {"from": "1916", "to": "7357"}, {"from": "4004", "to": "1244"}, {"from": "793", "to": "83"}, {"from": "8643", "to": "301"}, {"from": "1315", "to": "5"}, {"from": "111", "to": "1099"}, {"from": "6.1", "to": "933"}, {"from": "610", "to": "744"}, {"from": "744", "to": "71"}, {"from": "84", "to": "188"}, {"from": "5.5", "to": "9"}, {"from": "296", "to": "297"}, {"from": "477", "to": "3999"}, {"from": "1071", "to": "1072"}, {"from": "34", "to": "49"}, {"from": "140", "to": "323"}, {"from": "8", "to": "550"}, {"from": "701", "to": "867"}, {"from": "235", "to": "802"}, {"from": "109", "to": "8192"}, {"from": "499.5", "to": "30"}, {"from": "787", "to": "666"}, {"from": "190", "to": "598"}, {"from": "18", "to": "761"}, {"from": "1893", "to": "1070"}, {"from": "101", "to": "1667"}, {"from": "166", "to": "10"}, {"from": "3", "to": "8402"}, {"from": "4365", "to": "4816"}, {"from": "806", "to": "822"}, {"from": "4858", "to": "9"}, {"from": "8643", "to": "696"}, {"from": "9019", "to": "9"}, {"from": "3850", "to": "0"}, {"from": "133", "to": "115"}, {"from": "492.1", "to": "492"}, {"from": "888", "to": "394"}, {"from": "7773", "to": "6"}, {"from": "0", "to": "556"}, {"from": "573", "to": "8"}, {"from": "7868", "to": "595"}, {"from": "477", "to": "69"}, {"from": "37", "to": "754"}, {"from": "1970", "to": "2.6"}, {"from": "1045", "to": "253"}, {"from": "984", "to": "985"}, {"from": "1.8", "to": "2"}, {"from": "394", "to": "4269"}, {"from": "37", "to": "117"}, {"from": "134", "to": "135"}, {"from": "9669", "to": "8"}, {"from": "8643", "to": "126"}, {"from": "7998", "to": "7999"}, {"from": "998", "to": "121"}, {"from": "610", "to": "144"}, {"from": "4001", "to": "4011"}, {"from": "8643", "to": "603"}, {"from": "1092", "to": "999"}, {"from": "1205", "to": "1206"}, {"from": "37.1", "to": "37.4"}, {"from": "1296", "to": "796"}, {"from": "770", "to": "771"}, {"from": "871", "to": "870"}, {"from": "8643", "to": "858"}, {"from": "8565", "to": "11.1"}, {"from": "8643", "to": "228"}, {"from": "8643", "to": "598"}, {"from": "0", "to": "146"}, {"from": "8643", "to": "562"}, {"from": "192", "to": "37"}, {"from": "761", "to": "3999"}, {"from": "1889", "to": "1890"}, {"from": "287", "to": "3"}, {"from": "284", "to": "2091"}, {"from": "287", "to": "1"}, {"from": "592", "to": "6"}, {"from": "372", "to": "957"}, {"from": "3235", "to": "3236"}, {"from": "266", "to": "396"}, {"from": "7998", "to": "974"}, {"from": "20.5", "to": "20"}, {"from": "8643", "to": "127"}, {"from": "997", "to": "998"}, {"from": "610", "to": "580"}, {"from": "223", "to": "8"}, {"from": "9", "to": "11"}, {"from": "0.74", "to": "8.6"}, {"from": "854", "to": "9223372036854775808"}, {"from": "925", "to": "92"}, {"from": "777", "to": "1.5"}, {"from": "821", "to": "821.1"}, {"from": "363", "to": "380"}, {"from": "8643", "to": "997"}, {"from": "4001", "to": "4002"}, {"from": "311", "to": "1037"}, {"from": "1998", "to": "1"}, {"from": "0", "to": "666"}, {"from": "176", "to": "37"}, {"from": "8643", "to": "803"}, {"from": "995", "to": "999"}, {"from": "387", "to": "27"}, {"from": "8643", "to": "390"}, {"from": "8643", "to": "63"}, {"from": "45", "to": "4006"}, {"from": "2027", "to": "3"}, {"from": "86", "to": "0"}, {"from": "291", "to": "4000"}, {"from": "0", "to": "188"}, {"from": "8643", "to": "263"}, {"from": "9", "to": "789"}, {"from": "1643", "to": "11"}, {"from": "3999", "to": "8440"}, {"from": "359.3", "to": "359"}, {"from": "789", "to": "224"}, {"from": "213", "to": "149"}, {"from": "4112", "to": "3"}, {"from": "8643", "to": "900"}, {"from": "11", "to": "262"}, {"from": "91", "to": "3745"}, {"from": "305", "to": "1234"}, {"from": "11", "to": "811"}, {"from": "623", "to": "985"}, {"from": "8643", "to": "910"}, {"from": "1244", "to": "301"}, {"from": "2", "to": "7.3"}, {"from": "188", "to": "1970"}, {"from": "861", "to": "37"}, {"from": "6978", "to": "630"}, {"from": "592", "to": "4112"}, {"from": "964", "to": "509"}, {"from": "1390", "to": "1883"}, {"from": "521", "to": "188"}, {"from": "611", "to": "611.2"}, {"from": "0", "to": "847"}, {"from": "1", "to": "1.13"}, {"from": "13", "to": "199"}, {"from": "1068", "to": "1067"}, {"from": "467", "to": "9009"}, {"from": "37", "to": "59"}, {"from": "8643", "to": "291"}, {"from": "39", "to": "395"}, {"from": "948", "to": "758"}, {"from": "4271", "to": "4272"}, {"from": "590", "to": "8"}, {"from": "14.6", "to": "6"}, {"from": "11.1", "to": "986"}, {"from": "0.3", "to": "272"}, {"from": "3800", "to": "5"}, {"from": "8643", "to": "741"}, {"from": "679", "to": "679.2"}, {"from": "318", "to": "2227"}, {"from": "666.1", "to": "195"}, {"from": "444", "to": "99"}, {"from": "3", "to": "952"}, {"from": "0.6", "to": "251"}, {"from": "8643", "to": "30"}, {"from": "3009", "to": "8888"}, {"from": "457", "to": "2000"}, {"from": "757", "to": "0"}, {"from": "1447", "to": "11"}, {"from": "13", "to": "35"}, {"from": "294", "to": "394"}, {"from": "27", "to": "412"}, {"from": "117", "to": "431"}, {"from": "94", "to": "0"}, {"from": "343", "to": "344"}, {"from": "38", "to": "3"}, {"from": "11", "to": "853"}, {"from": "188.3", "to": "9"}, {"from": "26", "to": "442"}, {"from": "2222", "to": "916"}, {"from": "596.1", "to": "39"}, {"from": "8643", "to": "442"}, {"from": "8643", "to": "175"}, {"from": "94", "to": "89"}, {"from": "812", "to": "687"}, {"from": "347", "to": "847"}, {"from": "1939", "to": "141"}, {"from": "0", "to": "1113"}, {"from": "893", "to": "916"}, {"from": "948", "to": "949"}, {"from": "1195", "to": "11"}, {"from": "8643", "to": "476"}, {"from": "448", "to": "4242"}, {"from": "8643", "to": "174"}, {"from": "1237.1", "to": "583"}, {"from": "8643", "to": "582"}, {"from": "0", "to": "7384"}, {"from": "83", "to": "84"}, {"from": "8643", "to": "158"}, {"from": "1", "to": "1950"}, {"from": "36", "to": "4"}, {"from": "701", "to": "700"}, {"from": "8643", "to": "82"}, {"from": "4827", "to": "517"}, {"from": "91", "to": "457"}, {"from": "144", "to": "145"}, {"from": "8643", "to": "833"}, {"from": "153", "to": "452"}, {"from": "82", "to": "83"}, {"from": "8643", "to": "271"}, {"from": "1231", "to": "11"}, {"from": "1645", "to": "417"}, {"from": "728", "to": "729"}, {"from": "4", "to": "1004"}, {"from": "37", "to": "6339"}, {"from": "80", "to": "36"}, {"from": "11", "to": "886"}, {"from": "0", "to": "153"}, {"from": "3258", "to": "0"}, {"from": "8643", "to": "584"}, {"from": "474", "to": "9"}, {"from": "345", "to": "592"}, {"from": "8643", "to": "647"}, {"from": "7773", "to": "343"}, {"from": "481", "to": "482"}, {"from": "35", "to": "518"}, {"from": "4011", "to": "4000"}, {"from": "8643", "to": "488"}, {"from": "2009", "to": "2010"}, {"from": "4", "to": "3636"}, {"from": "666", "to": "1800"}, {"from": "350", "to": "351"}, {"from": "1911", "to": "1912"}, {"from": "683", "to": "1297"}, {"from": "140", "to": "300"}, {"from": "10", "to": "1969"}, {"from": "611.1", "to": "9"}, {"from": "2", "to": "322"}, {"from": "3511", "to": "4009"}, {"from": "288", "to": "289"}, {"from": "6182", "to": "571"}, {"from": "8643", "to": "682"}, {"from": "516", "to": "811"}, {"from": "1548", "to": "4"}, {"from": "1018", "to": "3999"}, {"from": "1", "to": "662"}, {"from": "6820", "to": "7"}, {"from": "985", "to": "6"}, {"from": "8643", "to": "705"}, {"from": "9", "to": "0.03"}, {"from": "258", "to": "258.1"}, {"from": "662", "to": "4.4"}, {"from": "5.4", "to": "628"}, {"from": "44", "to": "45"}, {"from": "218", "to": "848"}, {"from": "47", "to": "103"}, {"from": "4", "to": "357"}, {"from": "269", "to": "37"}, {"from": "11", "to": "6.2"}, {"from": "8565", "to": "1000"}, {"from": "13", "to": "8190"}, {"from": "0.74", "to": "74"}, {"from": "1.85", "to": "1.8"}, {"from": "5", "to": "954"}, {"from": "8643", "to": "830"}, {"from": "9", "to": "127"}, {"from": "93", "to": "16"}, {"from": "8", "to": "733"}, {"from": "9", "to": "1078"}, {"from": "6886", "to": "6999"}, {"from": "297", "to": "298"}, {"from": "8643", "to": "357"}, {"from": "4999", "to": "4004"}, {"from": "8643", "to": "571"}, {"from": "130", "to": "37.4"}, {"from": "477", "to": "0"}, {"from": "4.1", "to": "1"}, {"from": "1", "to": "1.3"}, {"from": "569", "to": "36"}, {"from": "208", "to": "364"}, {"from": "10", "to": "807"}, {"from": "16.2", "to": "479"}, {"from": "11", "to": "1273"}, {"from": "6.1", "to": "455"}, {"from": "4000", "to": "4001"}, {"from": "488", "to": "9223372036854775808"}, {"from": "30", "to": "43"}, {"from": "1343", "to": "246"}, {"from": "5000", "to": "641"}, {"from": "99", "to": "1009"}, {"from": "8643", "to": "86"}, {"from": "75", "to": "100"}, {"from": "0.11", "to": "1"}, {"from": "124", "to": "124.1"}, {"from": "2200", "to": "2201"}, {"from": "589", "to": "590"}, {"from": "2992", "to": "0.666"}, {"from": "1001", "to": "69420"}, {"from": "10", "to": "394"}, {"from": "141", "to": "188"}, {"from": "606", "to": "37"}, {"from": "6.05", "to": "6.1"}, {"from": "359", "to": "360"}, {"from": "610", "to": "1273"}, {"from": "994", "to": "0"}, {"from": "942", "to": "1700"}, {"from": "255", "to": "1348"}, {"from": "249", "to": "250"}, {"from": "572", "to": "29"}, {"from": "8643", "to": "788"}, {"from": "10", "to": "9.5"}, {"from": "88", "to": "2845"}, {"from": "3511", "to": "810"}, {"from": "1835", "to": "6"}, {"from": "5.5", "to": "11"}, {"from": "849", "to": "849.5"}, {"from": "8643", "to": "4"}, {"from": "19.1", "to": "5"}, {"from": "8643", "to": "238"}, {"from": "592", "to": "9019"}, {"from": "1913", "to": "1142"}, {"from": "40", "to": "6712"}, {"from": "600", "to": "370"}, {"from": "95", "to": "39"}, {"from": "2", "to": "477"}, {"from": "8643", "to": "523"}, {"from": "37", "to": "5304"}, {"from": "527", "to": "100"}, {"from": "607", "to": "0"}, {"from": "353", "to": "542"}, {"from": "8643", "to": "783"}, {"from": "6.1", "to": "313"}, {"from": "8643", "to": "897"}, {"from": "19", "to": "365"}, {"from": "37.4", "to": "37"}, {"from": "8643", "to": "591"}, {"from": "2100", "to": "11"}, {"from": "739", "to": "741"}, {"from": "704", "to": "10"}, {"from": "0.1", "to": "1.1"}, {"from": "8643", "to": "437"}, {"from": "8198", "to": "3999"}, {"from": "8", "to": "4010"}, {"from": "5", "to": "193"}, {"from": "1", "to": "606"}, {"from": "17", "to": "490"}, {"from": "929", "to": "3999"}, {"from": "11", "to": "343"}, {"from": "37.065", "to": "4"}, {"from": "5.7", "to": "356"}, {"from": "804", "to": "2"}, {"from": "1070", "to": "1071"}, {"from": "92", "to": "207"}, {"from": "4520", "to": "1960"}, {"from": "181", "to": "145"}, {"from": "8643", "to": "940"}, {"from": "1400", "to": "37.5"}, {"from": "1033", "to": "1034"}, {"from": "11", "to": "710"}, {"from": "4007", "to": "4004"}, {"from": "3", "to": "628"}, {"from": "73", "to": "331"}, {"from": "8643", "to": "439"}, {"from": "16", "to": "16.2"}, {"from": "8643", "to": "381"}, {"from": "6", "to": "964"}, {"from": "0.11", "to": "0.111"}, {"from": "226", "to": "705"}, {"from": "740", "to": "848"}, {"from": "610", "to": "466"}, {"from": "244", "to": "556"}, {"from": "37", "to": "332"}, {"from": "37", "to": "71"}, {"from": "54", "to": "5"}, {"from": "10.001", "to": "2"}, {"from": "163", "to": "193"}, {"from": "8402", "to": "0"}, {"from": "1186", "to": "140"}, {"from": "1447", "to": "194"}, {"from": "3999", "to": "10.001"}, {"from": "735", "to": "3"}, {"from": "6999", "to": "37"}, {"from": "0.74", "to": "37"}, {"from": "8506", "to": "660"}, {"from": "316", "to": "0"}, {"from": "6", "to": "28"}, {"from": "14", "to": "666.1"}, {"from": "477", "to": "7191"}, {"from": "1092", "to": "69"}, {"from": "8643", "to": "520"}, {"from": "949", "to": "950"}, {"from": "46", "to": "49"}, {"from": "977", "to": "1204"}, {"from": "543", "to": "7"}, {"from": "40", "to": "41"}, {"from": "8643", "to": "219"}, {"from": "7191", "to": "6.1"}, {"from": "29", "to": "944"}, {"from": "1998", "to": "36"}, {"from": "3999", "to": "1765"}, {"from": "610", "to": "190"}, {"from": "420", "to": "416"}, {"from": "8643", "to": "533"}, {"from": "2027", "to": "2031"}, {"from": "85", "to": "778"}, {"from": "81", "to": "82"}, {"from": "1001", "to": "1002"}, {"from": "1", "to": "854"}, {"from": "30", "to": "84"}, {"from": "2241", "to": "7419"}, {"from": "300", "to": "938"}, {"from": "109", "to": "114"}, {"from": "291", "to": "2468"}, {"from": "777", "to": "1009"}, {"from": "65536", "to": "9223372036854775808"}, {"from": "1482", "to": "50"}, {"from": "858", "to": "583"}, {"from": "13", "to": "666"}, {"from": "3999", "to": "1098"}, {"from": "37.065", "to": "43"}, {"from": "422", "to": "1"}, {"from": "262", "to": "12"}, {"from": "264", "to": "506"}, {"from": "14.6", "to": "11"}, {"from": "8643", "to": "77"}, {"from": "526", "to": "291"}, {"from": "1", "to": "891"}, {"from": "113", "to": "6"}, {"from": "5", "to": "1998"}, {"from": "423", "to": "3"}, {"from": "8643", "to": "592"}, {"from": "999", "to": "1000.1"}, {"from": "1086", "to": "4"}, {"from": "9", "to": "357"}, {"from": "8643", "to": "613"}, {"from": "8643", "to": "93"}, {"from": "8643", "to": "461"}, {"from": "1097", "to": "11"}, {"from": "7", "to": "1099"}, {"from": "8643", "to": "378"}, {"from": "787", "to": "1.5"}, {"from": "151", "to": "7"}, {"from": "1234", "to": "194"}, {"from": "1921", "to": "955"}, {"from": "0", "to": "883"}, {"from": "99", "to": "455"}, {"from": "8643", "to": "946"}, {"from": "117", "to": "7"}, {"from": "34", "to": "66"}, {"from": "8643", "to": "736"}, {"from": "185", "to": "598"}, {"from": "0.2", "to": "0.3"}, {"from": "11", "to": "944"}, {"from": "4827", "to": "379"}, {"from": "858", "to": "9223372036854775808"}, {"from": "911", "to": "3"}, {"from": "810", "to": "6"}, {"from": "7", "to": "970"}, {"from": "8643", "to": "879"}, {"from": "517.1", "to": "517.4"}, {"from": "1813", "to": "27"}, {"from": "1819", "to": "812"}, {"from": "8643", "to": "869"}, {"from": "118", "to": "9645"}, {"from": "8643", "to": "39"}, {"from": "10.001", "to": "0"}, {"from": "8643", "to": "297"}, {"from": "7", "to": "181"}, {"from": "5", "to": "7820"}, {"from": "214", "to": "161"}, {"from": "611.4", "to": "611.5"}, {"from": "2.6", "to": "8.6"}, {"from": "6978", "to": "379"}, {"from": "610", "to": "944"}, {"from": "3999", "to": "84"}, {"from": "614", "to": "455"}, {"from": "1078", "to": "1077"}, {"from": "8", "to": "8.8"}, {"from": "1018", "to": "0"}, {"from": "610", "to": "969"}, {"from": "666", "to": "7999"}, {"from": "5000", "to": "761"}, {"from": "337", "to": "691"}, {"from": "849", "to": "314"}, {"from": "865", "to": "157"}, {"from": "198", "to": "199"}, {"from": "38", "to": "0.39"}, {"from": "8643", "to": "426"}, {"from": "0.7", "to": "432"}, {"from": "416", "to": "1370"}, {"from": "883", "to": "953"}, {"from": "1008", "to": "1228"}, {"from": "533.5", "to": "3999"}, {"from": "2", "to": "628"}, {"from": "0.39", "to": "40"}, {"from": "555", "to": "810"}, {"from": "598", "to": "7"}, {"from": "610", "to": "3494"}, {"from": "1000", "to": "2999"}, {"from": "39", "to": "300"}, {"from": "4", "to": "3999"}, {"from": "985", "to": "11"}, {"from": "9", "to": "9.7"}, {"from": "607", "to": "396"}, {"from": "8643", "to": "499"}, {"from": "11", "to": "1988"}, {"from": "1995", "to": "1609"}, {"from": "501", "to": "370"}, {"from": "8643", "to": "348"}, {"from": "3999", "to": "952"}, {"from": "9", "to": "9083"}, {"from": "210", "to": "6.2"}, {"from": "5005", "to": "1009"}, {"from": "853", "to": "37"}, {"from": "4000", "to": "770"}, {"from": "430", "to": "431"}, {"from": "1", "to": "1181"}, {"from": "276", "to": "72"}, {"from": "418", "to": "0"}, {"from": "8643", "to": "200"}, {"from": "8643", "to": "633"}, {"from": "858", "to": "18"}, {"from": "9", "to": "940"}, {"from": "526", "to": "317"}, {"from": "8643", "to": "723"}, {"from": "10", "to": "919"}, {"from": "1", "to": "1696"}, {"from": "2200", "to": "2222"}, {"from": "5", "to": "2019"}, {"from": "9", "to": "439"}, {"from": "65536", "to": "2147483647"}, {"from": "94", "to": "918"}, {"from": "232", "to": "57473"}, {"from": "8643", "to": "786"}, {"from": "2.6", "to": "999"}, {"from": "8643", "to": "755"}, {"from": "666.6", "to": "0.6"}, {"from": "14", "to": "409"}, {"from": "795", "to": "11"}, {"from": "0", "to": "539"}, {"from": "8643", "to": "899"}, {"from": "732", "to": "10"}, {"from": "8643", "to": "46"}, {"from": "1", "to": "1206"}, {"from": "11", "to": "7732"}, {"from": "1050", "to": "733"}, {"from": "123457", "to": "1239"}, {"from": "67", "to": "68"}, {"from": "8643", "to": "184"}, {"from": "432", "to": "1.5"}, {"from": "8643", "to": "952"}, {"from": "966", "to": "354"}, {"from": "798", "to": "799"}, {"from": "649", "to": "696"}, {"from": "8643", "to": "462"}, {"from": "8643", "to": "362"}, {"from": "1390", "to": "1391"}, {"from": "99", "to": "790"}, {"from": "8643", "to": "150"}, {"from": "3999.1", "to": "82"}, {"from": "942", "to": "151"}, {"from": "3030", "to": "5.1"}, {"from": "796", "to": "796.1"}, {"from": "1040", "to": "100"}, {"from": "8643", "to": "198"}, {"from": "377", "to": "782"}, {"from": "386", "to": "221"}, {"from": "6590", "to": "2895"}, {"from": "10", "to": "434"}, {"from": "8643", "to": "731"}, {"from": "11", "to": "1792"}, {"from": "298", "to": "299"}, {"from": "5.5", "to": "7"}, {"from": "19", "to": "11"}, {"from": "1", "to": "1799"}, {"from": "632", "to": "772"}, {"from": "1667", "to": "206"}, {"from": "247", "to": "248"}, {"from": "78", "to": "2000"}, {"from": "672", "to": "1"}, {"from": "592", "to": "666"}, {"from": "72", "to": "1036"}, {"from": "108", "to": "321"}, {"from": "573", "to": "9"}, {"from": "610", "to": "88"}, {"from": "0.74", "to": "0.7"}, {"from": "8643", "to": "203"}, {"from": "8643", "to": "45"}, {"from": "806", "to": "0"}, {"from": "8643", "to": "762"}, {"from": "8643", "to": "891"}, {"from": "9", "to": "592"}, {"from": "408", "to": "409"}, {"from": "1040", "to": "865"}, {"from": "1225", "to": "4004"}, {"from": "223", "to": "92"}, {"from": "8643", "to": "765"}, {"from": "806", "to": "41"}, {"from": "826", "to": "187"}, {"from": "161", "to": "974"}, {"from": "231", "to": "311"}, {"from": "1", "to": "197"}, {"from": "2", "to": "193"}, {"from": "12", "to": "13"}, {"from": "431", "to": "715"}, {"from": "1674", "to": "12"}, {"from": "1234", "to": "4"}, {"from": "518", "to": "11"}, {"from": "8643", "to": "726"}, {"from": "100", "to": "199"}, {"from": "36", "to": "628"}, {"from": "911", "to": "1262"}, {"from": "1912", "to": "874"}, {"from": "9", "to": "1098"}, {"from": "7", "to": "11.1"}, {"from": "333", "to": "333.1"}, {"from": "223", "to": "942"}, {"from": "854", "to": "3004"}, {"from": "504", "to": "2525"}, {"from": "963", "to": "964"}, {"from": "8643", "to": "302"}, {"from": "793.1", "to": "793.3"}, {"from": "199", "to": "996"}, {"from": "15.1", "to": "15"}, {"from": "81", "to": "6.1"}, {"from": "515", "to": "17"}, {"from": "1984", "to": "7"}, {"from": "627", "to": "857"}, {"from": "8643", "to": "138"}, {"from": "568", "to": "6000"}, {"from": "64", "to": "65"}, {"from": "752", "to": "0"}, {"from": "272", "to": "777"}, {"from": "9009", "to": "1256"}, {"from": "97", "to": "87"}, {"from": "1", "to": "3"}, {"from": "8643", "to": "691"}, {"from": "17", "to": "63"}, {"from": "4999", "to": "7999"}, {"from": "3494", "to": "3495"}, {"from": "138", "to": "506"}, {"from": "8", "to": "893"}, {"from": "1256", "to": "4"}, {"from": "60", "to": "7999"}, {"from": "638", "to": "639"}, {"from": "8643", "to": "417"}, {"from": "9999", "to": "8888"}, {"from": "3", "to": "290"}, {"from": "1206", "to": "18"}, {"from": "478", "to": "666"}, {"from": "1", "to": "804"}, {"from": "52", "to": "4387"}, {"from": "198", "to": "1078"}, {"from": "1033", "to": "5"}, {"from": "8643", "to": "468"}, {"from": "1912", "to": "1913"}, {"from": "0", "to": "360"}, {"from": "3745", "to": "94"}, {"from": "8643", "to": "399"}, {"from": "6.7", "to": "571"}, {"from": "199", "to": "7999"}, {"from": "521", "to": "1204"}, {"from": "8643", "to": "356"}, {"from": "1400", "to": "680"}, {"from": "152", "to": "0"}, {"from": "1311", "to": "6"}, {"from": "3235", "to": "155"}, {"from": "999", "to": "7"}, {"from": "239", "to": "1237"}, {"from": "550", "to": "564"}, {"from": "6342", "to": "723"}, {"from": "610", "to": "180"}, {"from": "29", "to": "682"}, {"from": "8643", "to": "129"}, {"from": "6.3", "to": "6"}, {"from": "999", "to": "1000"}, {"from": "456", "to": "605"}, {"from": "6", "to": "619"}, {"from": "529", "to": "1089"}, {"from": "785", "to": "1274.5"}, {"from": "153", "to": "230"}, {"from": "16", "to": "14"}, {"from": "20", "to": "0.01"}, {"from": "193", "to": "3999.5"}, {"from": "551", "to": "11"}, {"from": "253", "to": "545"}, {"from": "610", "to": "1835"}, {"from": "3999.1", "to": "9083"}, {"from": "37", "to": "37.8"}, {"from": "199", "to": "974"}, {"from": "7999", "to": "8000"}, {"from": "8643", "to": "541"}, {"from": "9.2", "to": "6.1"}, {"from": "8643", "to": "339"}, {"from": "8643", "to": "464"}, {"from": "601", "to": "213"}, {"from": "1315", "to": "6"}, {"from": "8643", "to": "225"}, {"from": "4", "to": "83"}, {"from": "11", "to": "271"}, {"from": "1370", "to": "986"}, {"from": "8643", "to": "838"}, {"from": "8643", "to": "453"}, {"from": "663", "to": "660"}, {"from": "12", "to": "202"}, {"from": "610", "to": "175"}, {"from": "23", "to": "998"}, {"from": "0.666", "to": "957"}, {"from": "610", "to": "188"}, {"from": "1.13", "to": "1.8"}, {"from": "6", "to": "787"}, {"from": "9999.3", "to": "666"}, {"from": "8643", "to": "189"}, {"from": "8643", "to": "545"}, {"from": "506", "to": "4270"}, {"from": "823", "to": "5.1"}, {"from": "730", "to": "72"}, {"from": "4.04", "to": "308"}, {"from": "388", "to": "364"}, {"from": "8643", "to": "83"}, {"from": "282", "to": "1186"}, {"from": "891", "to": "69"}, {"from": "666.6", "to": "195"}, {"from": "17", "to": "7"}, {"from": "4443", "to": "4368"}, {"from": "891", "to": "892"}, {"from": "44", "to": "37.55"}, {"from": "54", "to": "17"}, {"from": "188.8", "to": "67"}, {"from": "8643", "to": "338"}, {"from": "8643", "to": "524"}, {"from": "610", "to": "271"}, {"from": "8643", "to": "882"}, {"from": "3", "to": "0.22"}, {"from": "3", "to": "141"}, {"from": "11", "to": "305"}, {"from": "847", "to": "1009"}, {"from": "193", "to": "10"}, {"from": "8643", "to": "253"}, {"from": "11.1", "to": "849"}, {"from": "333", "to": "685"}, {"from": "654", "to": "1883"}, {"from": "491", "to": "12"}, {"from": "1482", "to": "2222"}, {"from": "812", "to": "3999.2"}, {"from": "585", "to": "1348"}, {"from": "342", "to": "343"}, {"from": "427", "to": "4"}, {"from": "592", "to": "611"}, {"from": "8643", "to": "110"}, {"from": "5", "to": "995"}, {"from": "71", "to": "141"}, {"from": "828", "to": "829"}, {"from": "708", "to": "1738"}, {"from": "8643", "to": "169"}, {"from": "9", "to": "11.72"}, {"from": "15", "to": "0.15"}, {"from": "610", "to": "1004"}, {"from": "566", "to": "1"}, {"from": "8643", "to": "718"}, {"from": "4.6", "to": "5"}, {"from": "781", "to": "1857"}, {"from": "795", "to": "30"}, {"from": "4909", "to": "188"}, {"from": "285", "to": "829"}, {"from": "0", "to": "9669"}, {"from": "947", "to": "11"}, {"from": "613", "to": "614"}, {"from": "430", "to": "7"}, {"from": "7", "to": "4004"}, {"from": "22", "to": "22.2"}, {"from": "8643", "to": "183"}, {"from": "8643", "to": "903"}, {"from": "8643", "to": "21"}, {"from": "8643", "to": "576"}, {"from": "2060", "to": "371"}, {"from": "2323", "to": "0"}, {"from": "1609", "to": "7"}, {"from": "8643", "to": "770"}, {"from": "8643", "to": "692"}, {"from": "1039", "to": "1038"}, {"from": "8643", "to": "316"}, {"from": "273", "to": "9"}, {"from": "2", "to": "290"}, {"from": "65", "to": "18"}, {"from": "998", "to": "9797"}, {"from": "2395", "to": "584"}, {"from": "673", "to": "693"}, {"from": "11", "to": "1690"}, {"from": "313", "to": "75"}, {"from": "1195", "to": "952"}, {"from": "311", "to": "6.1"}, {"from": "1237.1", "to": "643"}, {"from": "2002", "to": "3999"}, {"from": "1297", "to": "6"}, {"from": "8565", "to": "0"}, {"from": "245", "to": "951"}, {"from": "0", "to": "5410"}, {"from": "8643", "to": "181"}, {"from": "2039", "to": "2040"}, {"from": "0", "to": "1009"}, {"from": "13", "to": "1955"}, {"from": "118", "to": "1054"}, {"from": "4009", "to": "4017"}, {"from": "108", "to": "763"}, {"from": "8643", "to": "337"}, {"from": "1011", "to": "1"}, {"from": "37", "to": "37.6"}, {"from": "1237.1", "to": "284"}, {"from": "4387", "to": "7777"}, {"from": "3999.1", "to": "869"}, {"from": "1002", "to": "1003"}, {"from": "2100", "to": "5998"}, {"from": "833", "to": "834"}, {"from": "8643", "to": "3"}, {"from": "1204", "to": "1286"}, {"from": "155", "to": "19"}, {"from": "46", "to": "4756"}, {"from": "605", "to": "607"}, {"from": "8643", "to": "1"}, {"from": "592", "to": "70"}, {"from": "13", "to": "45"}, {"from": "1", "to": "1224"}, {"from": "1315", "to": "490"}, {"from": "3670", "to": "3"}, {"from": "384", "to": "1003"}, {"from": "188.8", "to": "4000"}, {"from": "2019", "to": "0"}, {"from": "8643", "to": "76"}, {"from": "1667", "to": "507"}, {"from": "34", "to": "127"}, {"from": "348", "to": "1970"}, {"from": "1237", "to": "11"}, {"from": "4000", "to": "4004"}, {"from": "203", "to": "202"}, {"from": "1", "to": "1.1"}, {"from": "48", "to": "517.1"}, {"from": "8643", "to": "401"}, {"from": "272", "to": "0"}, {"from": "477", "to": "37.1"}, {"from": "43", "to": "278"}, {"from": "4520", "to": "180"}, {"from": "8643", "to": "572"}, {"from": "861", "to": "59"}, {"from": "9223372036854775808", "to": "76"}, {"from": "3", "to": "981"}, {"from": "569", "to": "6000"}, {"from": "8", "to": "6890"}, {"from": "5", "to": "331"}, {"from": "0", "to": "9009"}, {"from": "10", "to": "10.3"}, {"from": "2250", "to": "1970"}, {"from": "8643", "to": "221"}, {"from": "826", "to": "636"}, {"from": "4112", "to": "193.1"}, {"from": "351", "to": "7"}, {"from": "141", "to": "0"}, {"from": "49", "to": "4004"}, {"from": "37", "to": "37.7"}, {"from": "666", "to": "885"}, {"from": "461", "to": "459"}, {"from": "370", "to": "371"}, {"from": "0", "to": "9991"}, {"from": "11", "to": "439"}, {"from": "65536", "to": "9"}, {"from": "130.4", "to": "805"}, {"from": "610", "to": "611"}, {"from": "18", "to": "168"}, {"from": "505", "to": "123"}, {"from": "8643", "to": "877"}, {"from": "4520", "to": "188"}, {"from": "8643", "to": "131"}, {"from": "8643", "to": "559"}, {"from": "1099", "to": "1100"}, {"from": "1001", "to": "999"}, {"from": "8643", "to": "204"}, {"from": "7777", "to": "88888888"}, {"from": "2060", "to": "9223372036854775808"}, {"from": "2240", "to": "72"}, {"from": "412", "to": "37"}, {"from": "8643", "to": "416"}, {"from": "856", "to": "857"}, {"from": "300", "to": "3008"}, {"from": "894", "to": "205"}, {"from": "8643", "to": "905"}, {"from": "8643", "to": "448"}, {"from": "51", "to": "20"}, {"from": "217", "to": "173"}, {"from": "6712", "to": "5"}, {"from": "151", "to": "152"}, {"from": "303", "to": "1890"}, {"from": "460", "to": "424"}, {"from": "845", "to": "14"}, {"from": "953", "to": "3094"}, {"from": "709", "to": "710"}, {"from": "409", "to": "3999"}, {"from": "5000", "to": "98"}, {"from": "0", "to": "206"}, {"from": "900", "to": "55"}, {"from": "1987", "to": "458"}, {"from": "345", "to": "666"}, {"from": "14.6", "to": "3890"}, {"from": "1055", "to": "1056"}, {"from": "1970", "to": "1"}, {"from": "11", "to": "2354"}, {"from": "264", "to": "9645"}, {"from": "8643", "to": "342"}, {"from": "795", "to": "4"}, {"from": "108", "to": "3512"}, {"from": "386", "to": "386.1"}, {"from": "610", "to": "43"}, {"from": "13", "to": "9.5"}, {"from": "733", "to": "11"}, {"from": "638", "to": "640"}, {"from": "8643", "to": "396"}, {"from": "8190", "to": "6.1"}, {"from": "1980", "to": "1918"}, {"from": "712", "to": "345"}, {"from": "339", "to": "89"}, {"from": "8643", "to": "604"}, {"from": "2", "to": "479"}, {"from": "592", "to": "3999"}, {"from": "8643", "to": "325"}, {"from": "3999", "to": "1948"}, {"from": "403", "to": "193.1"}, {"from": "1231", "to": "2"}, {"from": "66", "to": "59"}, {"from": "1", "to": "3894"}, {"from": "363", "to": "33"}, {"from": "244", "to": "468"}, {"from": "5", "to": "161"}, {"from": "5002", "to": "276"}, {"from": "113", "to": "7"}, {"from": "792319", "to": "619"}, {"from": "11", "to": "8402"}, {"from": "8643", "to": "941"}, {"from": "4242", "to": "37.7"}, {"from": "435", "to": "1915"}, {"from": "168", "to": "422"}, {"from": "9.1", "to": "1225"}, {"from": "894", "to": "3.14"}, {"from": "9", "to": "21"}, {"from": "732", "to": "6"}, {"from": "1442", "to": "1348"}, {"from": "47", "to": "192"}, {"from": "1068", "to": "1609"}, {"from": "1311", "to": "11"}, {"from": "534", "to": "289"}, {"from": "9019", "to": "952"}, {"from": "186", "to": "1013"}, {"from": "1023", "to": "527"}, {"from": "45", "to": "72"}, {"from": "126", "to": "127"}, {"from": "7999", "to": "996"}, {"from": "8643", "to": "414"}, {"from": "1000.1", "to": "1000.2"}, {"from": "219", "to": "11"}, {"from": "337", "to": "958"}, {"from": "2", "to": "2.1"}, {"from": "3999", "to": "3997"}, {"from": "8643", "to": "65"}, {"from": "1", "to": "1.8"}, {"from": "8643", "to": "574"}, {"from": "979", "to": "476"}, {"from": "303", "to": "793"}, {"from": "809", "to": "810"}, {"from": "1273", "to": "6.1"}, {"from": "8", "to": "290"}, {"from": "1655", "to": "193.1"}, {"from": "0.74", "to": "0.01"}, {"from": "292", "to": "1300"}, {"from": "2787", "to": "998"}, {"from": "8643", "to": "993"}, {"from": "11", "to": "4681"}, {"from": "4957", "to": "0"}, {"from": "1064", "to": "1065"}, {"from": "19.1", "to": "9"}, {"from": "1005", "to": "11"}, {"from": "8643", "to": "939"}, {"from": "425", "to": "426"}, {"from": "375", "to": "253"}, {"from": "327", "to": "5"}, {"from": "664", "to": "988"}, {"from": "1684", "to": "18"}, {"from": "709", "to": "11"}, {"from": "1089", "to": "1000"}, {"from": "2", "to": "0.2"}, {"from": "11", "to": "322"}, {"from": "618", "to": "611"}, {"from": "4.12", "to": "188"}, {"from": "2755", "to": "1314"}, {"from": "289", "to": "614"}, {"from": "947", "to": "948"}, {"from": "11", "to": "719"}, {"from": "8643", "to": "837"}, {"from": "4.12", "to": "7"}, {"from": "35", "to": "7999"}, {"from": "1237.1", "to": "425"}, {"from": "573", "to": "562"}, {"from": "3", "to": "768"}, {"from": "423", "to": "424"}, {"from": "16.2", "to": "554"}, {"from": "1912", "to": "1347"}, {"from": "8643", "to": "555"}, {"from": "453", "to": "845"}, {"from": "1554", "to": "16"}, {"from": "8643", "to": "366"}, {"from": "3999", "to": "931"}, {"from": "14", "to": "14.6"}, {"from": "207.1", "to": "600"}, {"from": "8643", "to": "617"}, {"from": "478", "to": "3999"}, {"from": "3235", "to": "14"}, {"from": "3999", "to": "820"}, {"from": "11", "to": "84"}, {"from": "105", "to": "3999.1"}, {"from": "969", "to": "608"}, {"from": "490", "to": "1912"}, {"from": "11", "to": "3999"}, {"from": "43", "to": "431"}, {"from": "371", "to": "97"}, {"from": "173", "to": "8.2e-10"}, {"from": "349", "to": "206"}, {"from": "754", "to": "807"}, {"from": "603", "to": "489"}, {"from": "9390", "to": "9"}, {"from": "98", "to": "693"}, {"from": "985", "to": "2827"}, {"from": "196", "to": "197"}, {"from": "3999", "to": "37.55"}, {"from": "14.6", "to": "15"}, {"from": "150", "to": "289"}, {"from": "1912", "to": "4000"}, {"from": "0", "to": "1370"}, {"from": "54", "to": "9"}, {"from": "4000", "to": "319"}, {"from": "1", "to": "171"}, {"from": "1985", "to": "849"}, {"from": "69", "to": "569"}, {"from": "533", "to": "544"}, {"from": "2112", "to": "916"}, {"from": "7", "to": "37"}, {"from": "610", "to": "3999"}, {"from": "404", "to": "434"}, {"from": "382", "to": "345"}, {"from": "929", "to": "1730"}, {"from": "2050", "to": "2053"}, {"from": "499.5", "to": "999"}, {"from": "46", "to": "789"}, {"from": "610", "to": "704"}, {"from": "11", "to": "8.8"}, {"from": "900", "to": "0"}, {"from": "8643", "to": "792"}, {"from": "8643", "to": "931"}, {"from": "86", "to": "87"}, {"from": "2", "to": "780"}, {"from": "951", "to": "11"}, {"from": "8643", "to": "820"}, {"from": "0", "to": "0.22"}, {"from": "521", "to": "522"}, {"from": "10", "to": "91"}, {"from": "9669", "to": "7.4"}, {"from": "230", "to": "1293"}, {"from": "54", "to": "58"}, {"from": "3999", "to": "4004"}, {"from": "153", "to": "185"}, {"from": "153", "to": "676"}, {"from": "8643", "to": "352"}, {"from": "1289", "to": "1011"}, {"from": "1003", "to": "648"}, {"from": "1296", "to": "1297"}, {"from": "451", "to": "0"}, {"from": "713", "to": "406"}, {"from": "32", "to": "793"}, {"from": "2999", "to": "3001"}, {"from": "1619", "to": "37"}, {"from": "0", "to": "6067"}, {"from": "414", "to": "661"}, {"from": "4006", "to": "6"}, {"from": "9", "to": "4.12"}, {"from": "8643", "to": "104"}, {"from": "11", "to": "203"}, {"from": "1043", "to": "46"}, {"from": "3718", "to": "4"}, {"from": "160", "to": "285"}, {"from": "67", "to": "73"}, {"from": "8643", "to": "774"}, {"from": "152", "to": "333"}, {"from": "10", "to": "2090"}, {"from": "30", "to": "2.1"}, {"from": "1597", "to": "575"}, {"from": "130.4", "to": "67"}, {"from": "1", "to": "6978"}, {"from": "116", "to": "999"}, {"from": "423", "to": "1.5"}, {"from": "610", "to": "477"}, {"from": "8643", "to": "452"}, {"from": "596.1", "to": "37"}, {"from": "795", "to": "3999"}, {"from": "805", "to": "806"}, {"from": "950", "to": "9669"}, {"from": "883", "to": "556"}, {"from": "968", "to": "971"}, {"from": "751", "to": "6.1"}, {"from": "118", "to": "92"}, {"from": "318.1", "to": "8402"}, {"from": "318.1", "to": "592"}, {"from": "8643", "to": "540"}, {"from": "550.1", "to": "550"}, {"from": "732", "to": "181"}, {"from": "824", "to": "610"}, {"from": "346", "to": "350"}, {"from": "31", "to": "32"}, {"from": "2020", "to": "2021"}, {"from": "693", "to": "364"}, {"from": "3494", "to": "69"}, {"from": "1250", "to": "359"}, {"from": "404", "to": "1806"}, {"from": "8", "to": "2.1"}, {"from": "607", "to": "8"}, {"from": "9", "to": "11.1"}, {"from": "141", "to": "925"}, {"from": "999", "to": "915"}, {"from": "830", "to": "1"}, {"from": "8643", "to": "176"}, {"from": "0", "to": "1348"}, {"from": "728", "to": "727"}, {"from": "177", "to": "1347"}, {"from": "65", "to": "198"}, {"from": "423", "to": "55"}, {"from": "143", "to": "131"}, {"from": "0", "to": "224"}, {"from": "1262", "to": "1210"}, {"from": "8643", "to": "528"}, {"from": "131", "to": "326"}, {"from": "0", "to": "2.1"}, {"from": "8643", "to": "273"}, {"from": "66", "to": "849"}, {"from": "0.11", "to": "0"}, {"from": "1442", "to": "5"}, {"from": "115", "to": "491"}, {"from": "429", "to": "782"}, {"from": "36", "to": "532"}, {"from": "936", "to": "937"}, {"from": "37", "to": "1069"}, {"from": "733", "to": "7"}, {"from": "70", "to": "71"}, {"from": "8643", "to": "542"}, {"from": "2666", "to": "202"}, {"from": "20", "to": "269"}, {"from": "8643", "to": "688"}, {"from": "7", "to": "2020"}, {"from": "239", "to": "772"}, {"from": "588", "to": "231"}, {"from": "8643", "to": "505"}, {"from": "33", "to": "490"}, {"from": "8643", "to": "413"}, {"from": "1017", "to": "0"}, {"from": "268", "to": "12"}, {"from": "3999.2", "to": "0"}, {"from": "8643", "to": "999"}, {"from": "443", "to": "57"}, {"from": "643", "to": "371"}, {"from": "65", "to": "112"}, {"from": "3", "to": "2835"}, {"from": "0", "to": "0.2"}, {"from": "11", "to": "399"}, {"from": "118", "to": "167"}, {"from": "610", "to": "152"}, {"from": "2002", "to": "2003"}, {"from": "2.4", "to": "2.6"}, {"from": "460", "to": "0"}, {"from": "8643", "to": "245"}, {"from": "8643", "to": "988"}, {"from": "8", "to": "6.7"}, {"from": "9", "to": "3998"}, {"from": "8643", "to": "759"}, {"from": "450", "to": "3"}, {"from": "4.11", "to": "4"}, {"from": "11", "to": "2226"}, {"from": "348", "to": "9"}, {"from": "865", "to": "18"}, {"from": "610", "to": "7879"}, {"from": "293", "to": "6"}, {"from": "99", "to": "100"}, {"from": "673", "to": "1738"}, {"from": "363", "to": "7"}, {"from": "70", "to": "11"}, {"from": "942", "to": "7.7"}, {"from": "176", "to": "126"}, {"from": "165", "to": "57"}, {"from": "1011", "to": "153"}, {"from": "2739", "to": "36"}, {"from": "6.3", "to": "7"}, {"from": "1296", "to": "153"}, {"from": "4007", "to": "4000"}, {"from": "4", "to": "153"}, {"from": "985", "to": "138"}, {"from": "8643", "to": "673"}, {"from": "728", "to": "9"}, {"from": "1181", "to": "4999"}, {"from": "312", "to": "19"}, {"from": "708", "to": "5.1"}, {"from": "8643", "to": "391"}, {"from": "371", "to": "800"}, {"from": "0", "to": "363"}, {"from": "6", "to": "4009"}, {"from": "8643", "to": "155"}, {"from": "1109", "to": "189"}, {"from": "8643", "to": "344"}, {"from": "358", "to": "835"}, {"from": "8643", "to": "630"}, {"from": "815", "to": "11875"}, {"from": "22", "to": "64"}, {"from": "8643", "to": "153"}, {"from": "604", "to": "605"}, {"from": "2437", "to": "37"}, {"from": "8643", "to": "902"}, {"from": "57", "to": "171"}, {"from": "610", "to": "52"}, {"from": "704", "to": "666"}, {"from": "8643", "to": "756"}, {"from": "714", "to": "9.1"}, {"from": "348", "to": "13"}, {"from": "811", "to": "37"}, {"from": "8643", "to": "548"}, {"from": "3", "to": "499.5"}, {"from": "8888", "to": "2"}, {"from": "88", "to": "195"}, {"from": "610", "to": "327"}, {"from": "1970", "to": "847"}, {"from": "19", "to": "208"}, {"from": "1065", "to": "1068"}, {"from": "127", "to": "8888"}, {"from": "10", "to": "771"}, {"from": "8643", "to": "232"}, {"from": "610", "to": "4814"}, {"from": "11", "to": "360"}, {"from": "0.6", "to": "3999.2"}, {"from": "8643", "to": "926"}, {"from": "2845", "to": "200"}, {"from": "11", "to": "893"}, {"from": "229", "to": "230"}, {"from": "0", "to": "964"}, {"from": "11", "to": "628"}, {"from": "892", "to": "40"}, {"from": "8643", "to": "963"}, {"from": "8643", "to": "475"}, {"from": "8643", "to": "54"}, {"from": "969", "to": "10"}, {"from": "8643", "to": "712"}, {"from": "136", "to": "861"}, {"from": "30", "to": "113"}, {"from": "327", "to": "18"}, {"from": "8643", "to": "440"}, {"from": "1.7", "to": "480"}, {"from": "889", "to": "848"}, {"from": "985", "to": "52"}, {"from": "2226", "to": "63"}, {"from": "0.03", "to": "0"}, {"from": "32.1", "to": "202"}, {"from": "892", "to": "829"}, {"from": "8643", "to": "56"}, {"from": "783", "to": "10"}, {"from": "11.66", "to": "11.72"}, {"from": "806", "to": "4849"}, {"from": "140", "to": "1700"}, {"from": "499.5", "to": "37"}, {"from": "1370", "to": "878"}, {"from": "327", "to": "10"}, {"from": "451", "to": "103"}, {"from": "753", "to": "151"}, {"from": "8643", "to": "74"}, {"from": "3999", "to": "724"}, {"from": "36", "to": "37"}, {"from": "8643", "to": "62"}, {"from": "7191", "to": "20"}, {"from": "8643", "to": "449"}, {"from": "1005", "to": "1006"}, {"from": "2146", "to": "2144"}, {"from": "8643", "to": "95"}, {"from": "1", "to": "883"}, {"from": "606", "to": "888"}, {"from": "8643", "to": "532"}, {"from": "5556", "to": "228"}, {"from": "223", "to": "4"}, {"from": "130.2", "to": "130"}, {"from": "9.1", "to": "829"}, {"from": "929", "to": "930"}, {"from": "385", "to": "9"}, {"from": "1228", "to": "1464"}, {"from": "8643", "to": "573"}, {"from": "8643", "to": "642"}, {"from": "709", "to": "16"}, {"from": "9669", "to": "9670"}, {"from": "8643", "to": "196"}, {"from": "1863", "to": "389"}, {"from": "4242", "to": "458"}, {"from": "101", "to": "88"}, {"from": "264", "to": "100"}, {"from": "311", "to": "145"}, {"from": "272", "to": "1348"}, {"from": "52", "to": "52.1"}, {"from": "8643", "to": "133"}, {"from": "691", "to": "692"}, {"from": "91", "to": "509"}, {"from": "54", "to": "33"}, {"from": "595", "to": "598"}, {"from": "245", "to": "30"}, {"from": "0.01", "to": "9223372036854775808"}, {"from": "8643", "to": "151"}, {"from": "8643", "to": "191"}, {"from": "8643", "to": "896"}, {"from": "370", "to": "94"}, {"from": "1275", "to": "4010"}, {"from": "8643", "to": "680"}, {"from": "1.5", "to": "188"}, {"from": "8643", "to": "724"}, {"from": "4999", "to": "6339"}, {"from": "8643", "to": "20"}, {"from": "8643", "to": "319"}, {"from": "8643", "to": "358"}, {"from": "4008", "to": "4009"}, {"from": "480", "to": "1054"}, {"from": "15", "to": "9999.3"}, {"from": "389", "to": "243"}, {"from": "850", "to": "849"}, {"from": "8643", "to": "989"}, {"from": "3", "to": "49"}, {"from": "8924", "to": "1"}, {"from": "1262", "to": "1269"}, {"from": "257", "to": "0.22"}, {"from": "228", "to": "104"}, {"from": "7.7", "to": "86"}, {"from": "1738", "to": "1739"}, {"from": "3494", "to": "0"}, {"from": "188.8", "to": "4242"}, {"from": "802", "to": "12"}, {"from": "11", "to": "1919"}, {"from": "767", "to": "768"}, {"from": "194", "to": "195"}, {"from": "190", "to": "331"}, {"from": "300", "to": "330"}, {"from": "452", "to": "453"}, {"from": "193", "to": "1"}, {"from": "822", "to": "407"}, {"from": "8643", "to": "972"}, {"from": "477", "to": "481"}, {"from": "4.04", "to": "4"}, {"from": "371", "to": "331"}, {"from": "58", "to": "59"}, {"from": "8643", "to": "140"}, {"from": "327", "to": "372"}, {"from": "1730", "to": "993"}, {"from": "575", "to": "311"}, {"from": "0", "to": "4909"}, {"from": "1400", "to": "185"}, {"from": "8643", "to": "880"}, {"from": "4.12", "to": "15"}, {"from": "37.065", "to": "37.1"}, {"from": "2020", "to": "11"}, {"from": "269", "to": "270"}, {"from": "11", "to": "193"}, {"from": "8643", "to": "937"}, {"from": "78", "to": "45"}, {"from": "1", "to": "1007"}, {"from": "4526", "to": "15"}, {"from": "1273", "to": "1"}, {"from": "8643", "to": "331"}, {"from": "493", "to": "848"}, {"from": "1011", "to": "1202"}, {"from": "9991", "to": "998"}, {"from": "492", "to": "54"}, {"from": "164", "to": "193"}, {"from": "1204", "to": "1244"}, {"from": "92", "to": "550"}, {"from": "5965", "to": "5998"}, {"from": "1058", "to": "0"}, {"from": "514", "to": "515"}, {"from": "11", "to": "131"}, {"from": "1988", "to": "19"}, {"from": "738", "to": "245"}, {"from": "8643", "to": "768"}, {"from": "860", "to": "3999"}, {"from": "8643", "to": "361"}, {"from": "36", "to": "968"}, {"from": "9", "to": "153"}, {"from": "28", "to": "29"}, {"from": "696", "to": "10"}, {"from": "8643", "to": "405"}, {"from": "145", "to": "1370"}, {"from": "8643", "to": "37"}, {"from": "693", "to": "66"}, {"from": "92", "to": "757"}, {"from": "199", "to": "370"}, {"from": "4", "to": "784"}, {"from": "429", "to": "0"}, {"from": "303", "to": "11"}, {"from": "2001", "to": "1"}, {"from": "885", "to": "11"}, {"from": "45", "to": "7"}, {"from": "8643", "to": "502"}, {"from": "32", "to": "323"}, {"from": "157", "to": "100"}, {"from": "8643", "to": "182"}, {"from": "980", "to": "981"}, {"from": "11", "to": "496"}, {"from": "37.2", "to": "37.5"}, {"from": "1117", "to": "92"}, {"from": "1730", "to": "9390"}, {"from": "8643", "to": "326"}, {"from": "2250", "to": "840"}, {"from": "768", "to": "769"}, {"from": "234", "to": "620"}, {"from": "143", "to": "176"}, {"from": "65536", "to": "7"}, {"from": "8643", "to": "784"}, {"from": "1098", "to": "1"}, {"from": "8643", "to": "678"}, {"from": "8643", "to": "318"}, {"from": "865", "to": "6.1"}, {"from": "3", "to": "929"}, {"from": "2004", "to": "1030"}, {"from": "463", "to": "380"}, {"from": "8643", "to": "286"}, {"from": "262", "to": "263"}, {"from": "636", "to": "6712"}, {"from": "6073", "to": "8643"}, {"from": "118", "to": "714"}, {"from": "10", "to": "661"}, {"from": "3999", "to": "1515"}, {"from": "7", "to": "589"}, {"from": "795", "to": "3"}, {"from": "311", "to": "1700"}, {"from": "913", "to": "48"}, {"from": "486", "to": "487"}, {"from": "28", "to": "23"}, {"from": "8643", "to": "178"}, {"from": "787", "to": "8"}, {"from": "795", "to": "1"}, {"from": "1032", "to": "1033"}, {"from": "101", "to": "188"}, {"from": "1921", "to": "810"}, {"from": "8643", "to": "443"}, {"from": "7", "to": "7.1"}, {"from": "4002", "to": "4081"}, {"from": "529", "to": "926"}, {"from": "9223372036854775808", "to": "1447"}, {"from": "246", "to": "6"}, {"from": "67", "to": "260"}, {"from": "6820", "to": "37"}, {"from": "8643", "to": "57"}, {"from": "480", "to": "311"}, {"from": "1315", "to": "2666"}, {"from": "170", "to": "10"}, {"from": "7.1", "to": "4999"}, {"from": "254", "to": "918"}, {"from": "931", "to": "11"}, {"from": "8643", "to": "867"}, {"from": "8643", "to": "883"}, {"from": "132", "to": "3"}, {"from": "8643", "to": "161"}, {"from": "7", "to": "1912"}, {"from": "278", "to": "175"}, {"from": "8643", "to": "259"}, {"from": "9999", "to": "777"}, {"from": "589", "to": "0"}, {"from": "92", "to": "7"}, {"from": "1036", "to": "1037"}, {"from": "907", "to": "37.1"}, {"from": "8643", "to": "996"}, {"from": "8643", "to": "782"}, {"from": "271", "to": "239"}, {"from": "5", "to": "0.01"}, {"from": "1020", "to": "9"}, {"from": "8643", "to": "266"}, {"from": "6886", "to": "403"}, {"from": "30", "to": "860"}, {"from": "251", "to": "290"}, {"from": "69", "to": "6969"}, {"from": "22", "to": "8999"}, {"from": "1.8", "to": "9"}, {"from": "0.01", "to": "100"}, {"from": "60", "to": "332"}, {"from": "8643", "to": "375"}, {"from": "69", "to": "136"}, {"from": "1144", "to": "1738"}, {"from": "6000.1", "to": "6000"}, {"from": "514", "to": "9464"}, {"from": "679", "to": "19"}, {"from": "1142", "to": "7005"}, {"from": "6886", "to": "5555"}, {"from": "8", "to": "709"}, {"from": "8643", "to": "664"}, {"from": "14.6", "to": "873"}, {"from": "796", "to": "797"}, {"from": "100", "to": "226"}, {"from": "52", "to": "351"}, {"from": "6978", "to": "9223372036854775808"}, {"from": "8.8", "to": "1635"}, {"from": "740", "to": "26"}, {"from": "8643", "to": "593"}, {"from": "728", "to": "11"}, {"from": "8643", "to": "892"}, {"from": "788", "to": "789"}, {"from": "63", "to": "64"}, {"from": "355", "to": "356"}, {"from": "2020", "to": "858"}, {"from": "0", "to": "6565"}, {"from": "1988", "to": "676"}, {"from": "8643", "to": "984"}, {"from": "0.03", "to": "0.9"}, {"from": "6", "to": "3062"}, {"from": "553", "to": "11"}, {"from": "37.8", "to": "40"}, {"from": "8643", "to": "968"}, {"from": "11", "to": "1020"}, {"from": "8643", "to": "959"}, {"from": "10", "to": "311"}, {"from": "8643", "to": "818"}, {"from": "387", "to": "39"}, {"from": "1256", "to": "542"}, {"from": "625", "to": "608"}, {"from": "66", "to": "26"}, {"from": "997", "to": "7868"}, {"from": "8643", "to": "697"}, {"from": "4000", "to": "5965"}, {"from": "1040", "to": "521"}, {"from": "810", "to": "0"}, {"from": "8008", "to": "7357"}, {"from": "843", "to": "5"}, {"from": "2412", "to": "6.1"}, {"from": "9", "to": "9.1"}, {"from": "37", "to": "463"}, {"from": "65536", "to": "4"}, {"from": "456", "to": "953"}, {"from": "8643", "to": "594"}, {"from": "402", "to": "871"}, {"from": "311", "to": "822"}, {"from": "8643", "to": "974"}, {"from": "11", "to": "3998"}, {"from": "1011", "to": "160"}, {"from": "5304", "to": "11"}, {"from": "1987", "to": "825"}, {"from": "4269", "to": "4270"}, {"from": "2", "to": "929"}, {"from": "786", "to": "7868"}, {"from": "131", "to": "132"}, {"from": "188.4", "to": "322"}, {"from": "8643", "to": "539"}, {"from": "2666", "to": "1111"}, {"from": "8643", "to": "14"}, {"from": "8643", "to": "55"}, {"from": "904", "to": "4000"}, {"from": "8643", "to": "568"}, {"from": "8643", "to": "379"}, {"from": "883", "to": "952"}, {"from": "8643", "to": "874"}, {"from": "386", "to": "108"}, {"from": "0.74", "to": "9223372036854775808"}, {"from": "8643", "to": "160"}, {"from": "265", "to": "404"}, {"from": "8", "to": "619"}, {"from": "37.2", "to": "188"}, {"from": "311", "to": "2121"}, {"from": "4.12", "to": "0"}, {"from": "1314", "to": "1099"}, {"from": "8643", "to": "154"}, {"from": "173", "to": "13"}, {"from": "959", "to": "1296"}, {"from": "0.2", "to": "0.22"}, {"from": "649", "to": "650"}, {"from": "0", "to": "0.04"}, {"from": "37.2", "to": "7"}, {"from": "10", "to": "4858"}, {"from": "684", "to": "284"}, {"from": "8643", "to": "848"}, {"from": "8643", "to": "737"}, {"from": "1347", "to": "366"}, {"from": "11", "to": "1942"}, {"from": "8643", "to": "107"}, {"from": "892", "to": "708"}, {"from": "54", "to": "61"}, {"from": "295", "to": "296"}, {"from": "563", "to": "1521"}, {"from": "11", "to": "7005"}, {"from": "54", "to": "7"}, {"from": "9", "to": "318"}, {"from": "611.1", "to": "3997"}, {"from": "9", "to": "732"}, {"from": "592", "to": "3999.1"}, {"from": "8643", "to": "831"}, {"from": "37", "to": "3900"}, {"from": "802", "to": "100"}, {"from": "1190", "to": "2020"}, {"from": "188", "to": "1311"}, {"from": "188", "to": "253"}, {"from": "0", "to": "450"}, {"from": "8643", "to": "287"}, {"from": "708", "to": "711"}, {"from": "5", "to": "13"}, {"from": "30", "to": "772"}, {"from": "1", "to": "98"}, {"from": "37", "to": "100.2"}, {"from": "1916", "to": "303"}, {"from": "999", "to": "23"}, {"from": "790", "to": "791"}, {"from": "1017", "to": "333"}, {"from": "8643", "to": "125"}, {"from": "9", "to": "443"}, {"from": "2", "to": "364"}, {"from": "925", "to": "491"}, {"from": "8643", "to": "827"}, {"from": "11", "to": "23"}, {"from": "1988", "to": "136"}, {"from": "4", "to": "409"}, {"from": "114", "to": "4"}, {"from": "8643", "to": "367"}, {"from": "2222", "to": "19"}, {"from": "19", "to": "19.1"}, {"from": "8643", "to": "700"}, {"from": "7", "to": "7.7"}, {"from": "1376", "to": "8"}, {"from": "43", "to": "34"}, {"from": "386", "to": "386.2"}, {"from": "558", "to": "468"}, {"from": "14", "to": "26"}, {"from": "1370", "to": "514"}, {"from": "1948", "to": "4816"}, {"from": "1792", "to": "10"}, {"from": "8643", "to": "409"}, {"from": "1368", "to": "42"}, {"from": "1314", "to": "1"}, {"from": "287", "to": "5"}, {"from": "37", "to": "273"}, {"from": "1114", "to": "7357"}, {"from": "999", "to": "141"}, {"from": "777", "to": "9"}, {"from": "786", "to": "3999"}, {"from": "7", "to": "4000"}, {"from": "1", "to": "5965"}, {"from": "424", "to": "17"}, {"from": "8643", "to": "503"}, {"from": "24", "to": "25"}, {"from": "263", "to": "783"}, {"from": "998", "to": "105"}, {"from": "11", "to": "141"}, {"from": "846", "to": "821"}, {"from": "968", "to": "7"}, {"from": "0", "to": "6.3"}, {"from": "8643", "to": "805"}, {"from": "6.1", "to": "6342"}, {"from": "140", "to": "286"}, {"from": "1031", "to": "1032"}, {"from": "2020", "to": "847"}, {"from": "11", "to": "491"}, {"from": "0.74", "to": "188.1"}, {"from": "317", "to": "1645"}, {"from": "5", "to": "841"}, {"from": "2250", "to": "1283"}, {"from": "4000", "to": "9000"}, {"from": "234", "to": "2149"}, {"from": "544", "to": "193.1"}, {"from": "139", "to": "685"}, {"from": "710", "to": "10"}, {"from": "979", "to": "877"}, {"from": "446", "to": "1073"}, {"from": "551", "to": "1005"}, {"from": "8643", "to": "569"}, {"from": "2088", "to": "3"}, {"from": "808", "to": "9669"}, {"from": "384", "to": "427"}, {"from": "35", "to": "72"}, {"from": "2027", "to": "5"}, {"from": "1079", "to": "1079.1"}, {"from": "27", "to": "307"}, {"from": "8643", "to": "407"}, {"from": "611.1", "to": "611.3"}, {"from": "127", "to": "570"}, {"from": "188", "to": "188.8"}, {"from": "49", "to": "554"}, {"from": "8009", "to": "60"}, {"from": "0.39", "to": "1066"}, {"from": "8009", "to": "2002"}, {"from": "490", "to": "553"}, {"from": "7", "to": "754"}, {"from": "363", "to": "2"}, {"from": "568", "to": "17"}, {"from": "741", "to": "800"}, {"from": "6", "to": "7"}, {"from": "1984", "to": "630"}, {"from": "458", "to": "459"}, {"from": "4526", "to": "32"}, {"from": "11", "to": "3999.1"}, {"from": "8643", "to": "400"}, {"from": "1.5", "to": "952"}, {"from": "4251", "to": "4520"}, {"from": "376", "to": "145"}, {"from": "8565.1", "to": "6.1"}, {"from": "907", "to": "8"}, {"from": "981", "to": "982"}, {"from": "9", "to": "2020"}, {"from": "8643", "to": "747"}, {"from": "8643", "to": "276"}, {"from": "3.4", "to": "0.99"}, {"from": "265", "to": "2739"}, {"from": "1315", "to": "2"}, {"from": "101", "to": "111"}, {"from": "94", "to": "1368"}, {"from": "384", "to": "18"}, {"from": "54", "to": "4"}, {"from": "2049", "to": "2048"}, {"from": "8643", "to": "813"}, {"from": "60", "to": "289"}, {"from": "666", "to": "100"}, {"from": "94", "to": "124"}, {"from": "8643", "to": "978"}, {"from": "5965", "to": "0"}, {"from": "49", "to": "4000"}, {"from": "8643", "to": "49"}, {"from": "407", "to": "408"}, {"from": "709", "to": "2"}, {"from": "9", "to": "568"}, {"from": "176", "to": "218"}, {"from": "11", "to": "2.1"}, {"from": "610", "to": "222"}, {"from": "527", "to": "0"}, {"from": "11", "to": "168"}, {"from": "2251", "to": "1390"}, {"from": "8643", "to": "264"}, {"from": "8643", "to": "549"}, {"from": "8643", "to": "101"}, {"from": "6.1", "to": "88"}, {"from": "37.212", "to": "37.1"}, {"from": "421", "to": "422"}, {"from": "2412", "to": "6"}, {"from": "1003", "to": "1206"}, {"from": "264", "to": "861"}, {"from": "768", "to": "8"}, {"from": "4000", "to": "754"}, {"from": "0", "to": "2739"}, {"from": "610", "to": "1237"}, {"from": "11", "to": "981"}, {"from": "323", "to": "66"}, {"from": "610", "to": "168"}, {"from": "993", "to": "994"}, {"from": "804", "to": "92"}, {"from": "2001", "to": "999"}, {"from": "11", "to": "2057"}, {"from": "543", "to": "8"}, {"from": "620", "to": "619"}, {"from": "10", "to": "851"}, {"from": "894", "to": "7357"}, {"from": "377", "to": "10"}, {"from": "687", "to": "1262"}, {"from": "45", "to": "46"}, {"from": "7.8", "to": "10"}, {"from": "428", "to": "6"}, {"from": "214", "to": "100"}, {"from": "10", "to": "66"}, {"from": "610", "to": "769"}, {"from": "448", "to": "409"}, {"from": "126", "to": "448"}, {"from": "888", "to": "11"}, {"from": "8643", "to": "766"}, {"from": "13", "to": "7999"}, {"from": "7.1", "to": "4004"}, {"from": "3999", "to": "132"}, {"from": "37.2", "to": "43"}, {"from": "251", "to": "37.1"}, {"from": "948", "to": "9"}, {"from": "407", "to": "100"}, {"from": "37.4", "to": "37.7"}, {"from": "8643", "to": "908"}, {"from": "11875", "to": "10000"}, {"from": "534", "to": "1988"}, {"from": "54", "to": "43"}, {"from": "65536", "to": "952"}, {"from": "8643", "to": "589"}, {"from": "20", "to": "6"}, {"from": "150", "to": "0.8"}, {"from": "10.5", "to": "9.5"}, {"from": "3999", "to": "1684.1"}, {"from": "0.99", "to": "0"}, {"from": "432", "to": "100"}, {"from": "2187", "to": "4368"}, {"from": "69", "to": "268"}, {"from": "2.1", "to": "3421"}, {"from": "8", "to": "260"}, {"from": "11", "to": "449"}, {"from": "1315", "to": "0"}, {"from": "8643", "to": "412"}, {"from": "9733", "to": "3999"}, {"from": "431", "to": "11"}, {"from": "1073", "to": "1074"}, {"from": "8643", "to": "385"}, {"from": "8643", "to": "236"}, {"from": "7005", "to": "35"}, {"from": "10.001", "to": "9"}, {"from": "8643", "to": "657"}, {"from": "851", "to": "49"}, {"from": "11", "to": "532"}, {"from": "8643", "to": "889"}, {"from": "13", "to": "14"}, {"from": "378", "to": "564"}, {"from": "223", "to": "3"}, {"from": "8643", "to": "132"}, {"from": "700", "to": "8"}, {"from": "8643", "to": "991"}, {"from": "37", "to": "43"}, {"from": "8643", "to": "621"}, {"from": "371", "to": "672"}, {"from": "1", "to": "38"}, {"from": "8643", "to": "376"}, {"from": "454", "to": "383"}, {"from": "8643", "to": "285"}, {"from": "46", "to": "189"}, {"from": "278", "to": "46"}, {"from": "762", "to": "878"}, {"from": "6812", "to": "6182"}, {"from": "8", "to": "1017"}, {"from": "6", "to": "250"}, {"from": "0.2", "to": "0.4"}, {"from": "11", "to": "724"}, {"from": "4814", "to": "4814.1"}, {"from": "11", "to": "358"}, {"from": "187", "to": "67"}, {"from": "278", "to": "362"}, {"from": "944", "to": "7"}, {"from": "210", "to": "1942"}, {"from": "925", "to": "140"}, {"from": "822", "to": "135"}, {"from": "230", "to": "0"}, {"from": "412", "to": "849"}, {"from": "784", "to": "463"}, {"from": "8643", "to": "128"}, {"from": "610", "to": "196"}, {"from": "488", "to": "0"}, {"from": "1343", "to": "140"}, {"from": "0", "to": "624"}, {"from": "3800", "to": "2"}, {"from": "114", "to": "952"}, {"from": "167", "to": "973"}, {"from": "2", "to": "341"}, {"from": "8643", "to": "248"}, {"from": "2872", "to": "3999"}, {"from": "8643", "to": "544"}, {"from": "19", "to": "168"}, {"from": "1.05", "to": "4"}, {"from": "40", "to": "370"}, {"from": "610", "to": "1984"}, {"from": "8643", "to": "432"}, {"from": "3128", "to": "1"}, {"from": "8643", "to": "108"}, {"from": "364", "to": "11"}, {"from": "556", "to": "557"}, {"from": "49", "to": "59"}, {"from": "8643", "to": "832"}, {"from": "4.1", "to": "428"}, {"from": "786", "to": "0"}, {"from": "2006", "to": "8888"}, {"from": "435", "to": "1916"}, {"from": "2666", "to": "1066"}, {"from": "8643", "to": "506"}, {"from": "22", "to": "33"}, {"from": "244", "to": "230"}, {"from": "671", "to": "13"}, {"from": "555", "to": "505"}, {"from": "8643", "to": "652"}, {"from": "1", "to": "313"}, {"from": "0.111", "to": "667"}, {"from": "8643", "to": "67"}, {"from": "36", "to": "0.01"}, {"from": "10", "to": "694"}, {"from": "40", "to": "438"}, {"from": "8643", "to": "159"}, {"from": "846", "to": "19"}, {"from": "73", "to": "39"}, {"from": "774", "to": "130"}, {"from": "8001", "to": "60"}, {"from": "1297", "to": "0"}, {"from": "944", "to": "945"}, {"from": "1.5", "to": "0"}, {"from": "65536", "to": "2"}, {"from": "64", "to": "955"}, {"from": "448", "to": "953.1"}, {"from": "47", "to": "194"}, {"from": "10", "to": "323"}, {"from": "8643", "to": "434"}, {"from": "892", "to": "11"}, {"from": "387", "to": "1"}, {"from": "709", "to": "1333"}, {"from": "37.5", "to": "37.55"}, {"from": "25", "to": "26"}, {"from": "33", "to": "34"}, {"from": "8643", "to": "179"}, {"from": "62", "to": "35"}, {"from": "2133", "to": "11"}, {"from": "6999", "to": "8999"}, {"from": "11.5", "to": "767"}, {"from": "576", "to": "37"}, {"from": "54", "to": "34"}, {"from": "8643", "to": "885"}, {"from": "603", "to": "606"}, {"from": "98", "to": "845"}, {"from": "6", "to": "4010"}, {"from": "9.2", "to": "9.5"}, {"from": "80", "to": "81"}, {"from": "43", "to": "1143"}, {"from": "787", "to": "444"}, {"from": "10", "to": "840"}, {"from": "12", "to": "939"}, {"from": "512", "to": "5678"}, {"from": "8643", "to": "797"}, {"from": "8643", "to": "828"}, {"from": "8643", "to": "295"}, {"from": "948", "to": "8586"}, {"from": "8643", "to": "389"}, {"from": "164", "to": "37"}, {"from": "8643", "to": "809"}, {"from": "8", "to": "676"}, {"from": "162", "to": "69"}, {"from": "999", "to": "4909"}, {"from": "8643", "to": "157"}, {"from": "20", "to": "197"}, {"from": "1003", "to": "11"}, {"from": "806", "to": "9"}, {"from": "11", "to": "1244"}, {"from": "183", "to": "732"}, {"from": "100", "to": "2.1"}, {"from": "52", "to": "4"}, {"from": "520", "to": "521"}, {"from": "3999", "to": "4000"}, {"from": "90", "to": "208"}, {"from": "132", "to": "133"}, {"from": "1", "to": "229"}, {"from": "210", "to": "601"}, {"from": "49", "to": "293"}, {"from": "0", "to": "1.85"}, {"from": "454", "to": "0"}, {"from": "4", "to": "330"}, {"from": "1913", "to": "0"}, {"from": "504", "to": "37.212"}, {"from": "888", "to": "63"}, {"from": "9999", "to": "272"}, {"from": "1", "to": "59"}, {"from": "8643", "to": "895"}, {"from": "8643", "to": "901"}, {"from": "823", "to": "848"}, {"from": "114", "to": "4.4"}, {"from": "841", "to": "22"}, {"from": "550", "to": "980"}, {"from": "8", "to": "117"}, {"from": "1074", "to": "772"}, {"from": "37", "to": "704"}, {"from": "1216", "to": "1370"}, {"from": "8643", "to": "330"}, {"from": "8643", "to": "866"}, {"from": "942", "to": "26"}, {"from": "8643", "to": "581"}, {"from": "39", "to": "996"}, {"from": "8643", "to": "843"}, {"from": "1011", "to": "4000"}, {"from": "851", "to": "852"}, {"from": "1296", "to": "4000"}, {"from": "649", "to": "161"}, {"from": "256", "to": "3"}, {"from": "826", "to": "11"}, {"from": "8643", "to": "526"}, {"from": "37.55", "to": "416"}, {"from": "32", "to": "43"}, {"from": "9083", "to": "6.1"}, {"from": "1078", "to": "188.7"}, {"from": "557", "to": "558"}, {"from": "534", "to": "7"}, {"from": "984", "to": "113"}, {"from": "588", "to": "253"}, {"from": "8643", "to": "516"}, {"from": "244", "to": "347"}, {"from": "8643", "to": "663"}, {"from": "4", "to": "0.01"}, {"from": "592", "to": "172"}, {"from": "1089", "to": "222"}, {"from": "46", "to": "149"}, {"from": "970", "to": "1.5"}, {"from": "90", "to": "2"}, {"from": "6969", "to": "27"}, {"from": "793", "to": "2147483647"}, {"from": "6", "to": "1234"}, {"from": "8643", "to": "205"}, {"from": "407", "to": "1863"}, {"from": "1", "to": "1348"}, {"from": "58", "to": "372"}, {"from": "611", "to": "0"}, {"from": "8643", "to": "272"}, {"from": "8643", "to": "185"}, {"from": "30", "to": "341"}, {"from": "176", "to": "307"}, {"from": "8643", "to": "147"}, {"from": "10", "to": "35"}, {"from": "1004", "to": "33"}, {"from": "19.1", "to": "2"}, {"from": "1", "to": "224"}, {"from": "1.5", "to": "193"}, {"from": "1007", "to": "3999"}, {"from": "706", "to": "285"}, {"from": "477", "to": "4242"}, {"from": "3341", "to": "1447"}, {"from": "10", "to": "11"}, {"from": "632", "to": "6712"}, {"from": "8643", "to": "75"}, {"from": "8888", "to": "1447"}, {"from": "1020", "to": "188"}, {"from": "11", "to": "3008"}, {"from": "2", "to": "2.2"}, {"from": "8643", "to": "398"}, {"from": "8643", "to": "961"}, {"from": "1656", "to": "457"}, {"from": "1674", "to": "3999"}, {"from": "3999", "to": "779"}, {"from": "682", "to": "117"}, {"from": "2088", "to": "999"}, {"from": "312", "to": "321"}, {"from": "858", "to": "859"}, {"from": "8643", "to": "722"}, {"from": "278", "to": "628"}, {"from": "1099", "to": "91"}, {"from": "21", "to": "1311"}, {"from": "8643", "to": "306"}, {"from": "8643", "to": "754"}, {"from": "7", "to": "9.3"}, {"from": "610", "to": "1547"}, {"from": "1144", "to": "6.1"}, {"from": "344", "to": "345"}, {"from": "363", "to": "547"}, {"from": "54", "to": "1042"}, {"from": "8643", "to": "605"}, {"from": "39", "to": "974"}, {"from": "1912", "to": "622"}, {"from": "0.74", "to": "31"}, {"from": "1000", "to": "1000.1"}, {"from": "8643", "to": "729"}, {"from": "17", "to": "27"}, {"from": "0", "to": "887"}, {"from": "0.01", "to": "0.555"}, {"from": "4827", "to": "541"}, {"from": "8643", "to": "914"}, {"from": "39", "to": "14"}, {"from": "92", "to": "683"}, {"from": "564", "to": "1155"}, {"from": "2687", "to": "1"}, {"from": "5.4", "to": "1045"}, {"from": "14.6", "to": "8"}, {"from": "8643", "to": "686"}, {"from": "295", "to": "63"}, {"from": "60", "to": "39"}, {"from": "52", "to": "613"}, {"from": "741", "to": "771"}, {"from": "11", "to": "4816"}, {"from": "4", "to": "994"}, {"from": "5556", "to": "1"}, {"from": "0.1", "to": "324"}, {"from": "9", "to": "434"}, {"from": "496", "to": "27"}, {"from": "1110", "to": "592"}, {"from": "8643", "to": "779"}, {"from": "609", "to": "37"}, {"from": "8643", "to": "522"}, {"from": "610", "to": "73"}, {"from": "18", "to": "346"}, {"from": "407", "to": "9"}, {"from": "741", "to": "609"}, {"from": "6327", "to": "8001"}, {"from": "55", "to": "924"}, {"from": "11", "to": "379"}, {"from": "3.4", "to": "2.2"}, {"from": "8643", "to": "994"}, {"from": "608", "to": "2014"}, {"from": "8643", "to": "334"}, {"from": "861", "to": "11"}, {"from": "8902", "to": "9"}, {"from": "8643", "to": "489"}, {"from": "9989", "to": "9991"}, {"from": "8643", "to": "629"}, {"from": "264", "to": "263"}, {"from": "90", "to": "0"}, {"from": "592", "to": "407"}, {"from": "1286", "to": "212"}, {"from": "803", "to": "804"}, {"from": "8643", "to": "510"}, {"from": "84", "to": "246"}, {"from": "9", "to": "797"}, {"from": "766", "to": "626"}, {"from": "193", "to": "193.1"}, {"from": "10.001", "to": "11"}, {"from": "199", "to": "94"}, {"from": "506", "to": "12"}, {"from": "239", "to": "30"}, {"from": "3999", "to": "3718"}, {"from": "141", "to": "748"}, {"from": "8643", "to": "634"}, {"from": "1036", "to": "865"}, {"from": "412", "to": "192"}, {"from": "8643", "to": "485"}, {"from": "183", "to": "860"}, {"from": "8643", "to": "836"}, {"from": "62", "to": "63"}, {"from": "8643", "to": "546"}, {"from": "913", "to": "913.1"}, {"from": "2805", "to": "1"}, {"from": "8643", "to": "739"}, {"from": "610", "to": "37.41"}, {"from": "395", "to": "867.5"}, {"from": "8643", "to": "384"}, {"from": "8643", "to": "790"}, {"from": "1", "to": "935"}, {"from": "0", "to": "4112"}, {"from": "7000", "to": "7001"}, {"from": "8643", "to": "229"}, {"from": "7", "to": "4387"}, {"from": "444", "to": "404"}, {"from": "172", "to": "6394"}, {"from": "1463", "to": "1464"}, {"from": "5500", "to": "132"}, {"from": "3624", "to": "10"}, {"from": "8643", "to": "59"}, {"from": "1181", "to": "0"}, {"from": "573", "to": "999"}, {"from": "199", "to": "200"}, {"from": "8643", "to": "201"}, {"from": "2666", "to": "83"}, {"from": "11", "to": "1053"}, {"from": "138", "to": "11"}, {"from": "9669", "to": "999"}, {"from": "2.1", "to": "7"}, {"from": "4.7", "to": "4"}, {"from": "527", "to": "528"}, {"from": "73", "to": "1206"}, {"from": "8643", "to": "815"}, {"from": "592", "to": "118"}, {"from": "8643", "to": "551"}, {"from": "2845", "to": "37"}, {"from": "11", "to": "499.5"}, {"from": "1813", "to": "711"}, {"from": "11", "to": "409"}, {"from": "8643", "to": "457"}, {"from": "8643", "to": "575"}, {"from": "4827", "to": "4999"}, {"from": "6.1", "to": "602"}, {"from": "50", "to": "397"}, {"from": "10", "to": "1256"}, {"from": "9", "to": "2805"}, {"from": "54", "to": "0"}, {"from": "66", "to": "11"}, {"from": "925", "to": "588"}, {"from": "43", "to": "290"}, {"from": "650", "to": "517.1"}, {"from": "610", "to": "1913"}, {"from": "4999", "to": "5000"}, {"from": "921", "to": "952"}, {"from": "506", "to": "9223372036854775808"}, {"from": "427", "to": "49"}, {"from": "22", "to": "271"}, {"from": "1003", "to": "666"}, {"from": "1399", "to": "865"}, {"from": "1945", "to": "141"}, {"from": "331", "to": "94"}, {"from": "557", "to": "582"}, {"from": "2002", "to": "1890"}, {"from": "420", "to": "10"}, {"from": "802", "to": "11"}, {"from": "7732", "to": "7"}, {"from": "37", "to": "251"}, {"from": "10.5", "to": "29"}, {"from": "8643", "to": "841"}, {"from": "11", "to": "2149"}, {"from": "974", "to": "333"}, {"from": "327", "to": "666"}, {"from": "11", "to": "407"}, {"from": "940", "to": "1190"}, {"from": "1003", "to": "7"}, {"from": "0", "to": "7013"}, {"from": "69", "to": "143"}, {"from": "20", "to": "22"}, {"from": "1", "to": "1225"}, {"from": "698", "to": "239"}, {"from": "67", "to": "30"}, {"from": "5", "to": "2048"}, {"from": "7", "to": "1045"}, {"from": "33", "to": "98"}, {"from": "12", "to": "1800"}, {"from": "8643", "to": "955"}, {"from": "9", "to": "9.4"}, {"from": "10", "to": "263"}, {"from": "7", "to": "583"}, {"from": "1", "to": "0.6"}, {"from": "9", "to": "605"}, {"from": "266", "to": "1482"}, {"from": "608", "to": "611.1"}, {"from": "965", "to": "966"}, {"from": "524", "to": "337"}, {"from": "8643", "to": "529"}, {"from": "1098", "to": "409"}, {"from": "224", "to": "1890"}, {"from": "0.01", "to": "0.03"}, {"from": "6.05", "to": "849"}, {"from": "62", "to": "1006"}, {"from": "502", "to": "503"}, {"from": "46", "to": "671"}, {"from": "587", "to": "0"}, {"from": "3", "to": "192"}, {"from": "806", "to": "11"}, {"from": "454", "to": "455"}, {"from": "378", "to": "38"}, {"from": "356", "to": "575"}, {"from": "1003", "to": "1004"}, {"from": "811", "to": "5"}, {"from": "935", "to": "936"}, {"from": "573", "to": "95"}, {"from": "8643", "to": "667"}, {"from": "945", "to": "966"}, {"from": "235", "to": "236"}, {"from": "8643", "to": "255"}, {"from": "821.1", "to": "822"}, {"from": "8643", "to": "627"}, {"from": "151", "to": "1921"}, {"from": "843", "to": "6"}, {"from": "11", "to": "2323"}, {"from": "422", "to": "18"}, {"from": "46", "to": "1071"}, {"from": "9", "to": "3745"}, {"from": "8643", "to": "441"}, {"from": "596", "to": "596.1"}, {"from": "8643", "to": "776"}, {"from": "84", "to": "231"}, {"from": "0.111", "to": "609"}, {"from": "610", "to": "50"}, {"from": "8294", "to": "8924"}, {"from": "67", "to": "1004"}, {"from": "124", "to": "666"}, {"from": "51", "to": "10"}, {"from": "7", "to": "2027"}, {"from": "3850", "to": "3999"}, {"from": "627", "to": "237"}, {"from": "433", "to": "434"}, {"from": "0.74", "to": "1"}, {"from": "80", "to": "233"}, {"from": "672", "to": "12"}, {"from": "424", "to": "425"}, {"from": "8643", "to": "415"}, {"from": "8643", "to": "299"}, {"from": "1", "to": "608"}, {"from": "8643", "to": "685"}, {"from": "37", "to": "9797"}, {"from": "708", "to": "37"}, {"from": "8643", "to": "579"}, {"from": "510", "to": "132"}, {"from": "804", "to": "36.5"}, {"from": "8643", "to": "60"}, {"from": "18", "to": "427"}, {"from": "363", "to": "446"}, {"from": "2754", "to": "2754.1"}, {"from": "8643", "to": "935"}, {"from": "2001", "to": "0"}, {"from": "4", "to": "5304"}, {"from": "119", "to": "1311"}, {"from": "981", "to": "913"}, {"from": "9", "to": "59"}, {"from": "6.1", "to": "508"}, {"from": "14", "to": "223"}, {"from": "1", "to": "4387"}, {"from": "43", "to": "44"}, {"from": "1390", "to": "3782"}, {"from": "111", "to": "112"}, {"from": "491", "to": "492"}, {"from": "8643", "to": "478"}, {"from": "1543", "to": "821"}, {"from": "331", "to": "9"}, {"from": "3417", "to": "1.1"}, {"from": "0", "to": "0.555"}, {"from": "6", "to": "6.56"}, {"from": "8643", "to": "535"}, {"from": "611.1", "to": "89"}, {"from": "202", "to": "1195"}, {"from": "707", "to": "8402"}, {"from": "834", "to": "0"}, {"from": "4009", "to": "990"}, {"from": "2323", "to": "2251"}, {"from": "8643", "to": "812"}, {"from": "3313", "to": "3313.5"}, {"from": "184", "to": "1044"}, {"from": "152", "to": "11"}, {"from": "5555", "to": "1"}, {"from": "217", "to": "93"}, {"from": "974", "to": "2023"}, {"from": "11", "to": "2250"}, {"from": "9991", "to": "11"}, {"from": "1044", "to": "11"}, {"from": "5", "to": "7357"}, {"from": "1009", "to": "37"}, {"from": "108", "to": "0.01"}, {"from": "804", "to": "1446"}, {"from": "6.3", "to": "517"}, {"from": "8643", "to": "909"}, {"from": "664", "to": "997"}, {"from": "0", "to": "6342"}, {"from": "971", "to": "123"}, {"from": "3234", "to": "3235"}, {"from": "301", "to": "10"}, {"from": "105", "to": "4242"}, {"from": "527", "to": "113"}, {"from": "1286", "to": "181"}, {"from": "45", "to": "4004"}, {"from": "9", "to": "1065"}, {"from": "4177", "to": "3235"}, {"from": "8643", "to": "849"}, {"from": "101", "to": "313"}, {"from": "83", "to": "10"}, {"from": "616", "to": "618"}, {"from": "188", "to": "3800"}, {"from": "9999", "to": "1023"}, {"from": "126", "to": "704"}, {"from": "11", "to": "672"}, {"from": "598", "to": "444"}, {"from": "478", "to": "481"}, {"from": "103", "to": "869"}, {"from": "8643", "to": "894"}, {"from": "153", "to": "1"}, {"from": "6.1", "to": "2845"}, {"from": "4", "to": "5"}, {"from": "432", "to": "11"}, {"from": "133", "to": "11"}, {"from": "0.2", "to": "0.02"}, {"from": "8643", "to": "354"}, {"from": "8643", "to": "530"}, {"from": "99", "to": "3999"}, {"from": "1.05", "to": "3"}, {"from": "1314", "to": "848"}, {"from": "846", "to": "11"}, {"from": "1036", "to": "6"}, {"from": "4112", "to": "6"}, {"from": "84", "to": "796"}, {"from": "109", "to": "110"}, {"from": "757", "to": "3999"}, {"from": "8643", "to": "252"}, {"from": "136", "to": "388"}, {"from": "8643", "to": "504"}, {"from": "8643", "to": "5"}, {"from": "8643", "to": "791"}, {"from": "8643", "to": "419"}, {"from": "2100", "to": "4000"}, {"from": "100", "to": "569"}, {"from": "1009", "to": "6092"}, {"from": "772", "to": "605"}, {"from": "34", "to": "9.5"}, {"from": "1239", "to": "1000"}, {"from": "234", "to": "231"}, {"from": "2057", "to": "2023"}, {"from": "892", "to": "592"}, {"from": "8643", "to": "513"}, {"from": "8643", "to": "856"}, {"from": "950", "to": "951"}, {"from": "348", "to": "1"}, {"from": "4011", "to": "0"}, {"from": "8643", "to": "888"}, {"from": "8643", "to": "470"}, {"from": "4999", "to": "509"}, {"from": "610", "to": "432"}, {"from": "94", "to": "786"}, {"from": "869", "to": "761"}, {"from": "764", "to": "37"}, {"from": "610", "to": "364"}, {"from": "1999", "to": "2100"}, {"from": "1", "to": "870"}, {"from": "8643", "to": "346"}, {"from": "8643", "to": "998"}, {"from": "188", "to": "874"}, {"from": "331", "to": "85"}, {"from": "871", "to": "984"}, {"from": "5", "to": "1242"}, {"from": "4009", "to": "4018"}, {"from": "4999", "to": "1150"}, {"from": "139", "to": "2146"}, {"from": "1", "to": "9223372036854775808"}, {"from": "17", "to": "260"}, {"from": "94", "to": "952"}, {"from": "1463", "to": "1464.111111111"}, {"from": "873", "to": "157"}, {"from": "8643", "to": "631"}, {"from": "1043", "to": "432"}, {"from": "8643", "to": "173"}, {"from": "525", "to": "867.5"}, {"from": "610", "to": "19"}, {"from": "8643", "to": "241"}, {"from": "802", "to": "7"}, {"from": "193.1", "to": "223"}, {"from": "4.12", "to": "0.7"}, {"from": "298", "to": "453"}, {"from": "787", "to": "63"}, {"from": "1400", "to": "341"}, {"from": "8565", "to": "11"}, {"from": "8643", "to": "608"}, {"from": "145", "to": "365"}, {"from": "442", "to": "286"}, {"from": "318", "to": "341"}, {"from": "382", "to": "383"}, {"from": "9", "to": "2023"}, {"from": "611", "to": "612"}, {"from": "8643", "to": "543"}, {"from": "311", "to": "918"}, {"from": "939", "to": "153"}, {"from": "6886", "to": "1170"}, {"from": "797", "to": "300"}, {"from": "9223372036854775808", "to": "428"}, {"from": "422", "to": "6.1"}, {"from": "888", "to": "726"}, {"from": "345", "to": "772"}, {"from": "1031", "to": "0"}, {"from": "477", "to": "1234"}, {"from": "250", "to": "1043"}, {"from": "100", "to": "101"}, {"from": "387", "to": "37"}, {"from": "583", "to": "3513"}, {"from": "200", "to": "201"}, {"from": "520", "to": "1912"}, {"from": "409", "to": "3745"}, {"from": "420", "to": "430"}, {"from": "610", "to": "693"}, {"from": "34", "to": "0"}, {"from": "36", "to": "9223372036854775808"}, {"from": "427", "to": "117"}, {"from": "500", "to": "459"}, {"from": "8643", "to": "269"}, {"from": "13", "to": "202"}, {"from": "944", "to": "41.1"}, {"from": "8643", "to": "371"}, {"from": "8643", "to": "207"}, {"from": "14.1", "to": "14.6"}, {"from": "1078", "to": "1079"}, {"from": "610", "to": "793"}, {"from": "618", "to": "285"}, {"from": "416", "to": "2"}, {"from": "4007", "to": "382"}, {"from": "682", "to": "1243"}, {"from": "50", "to": "1244"}, {"from": "955", "to": "495"}, {"from": "557", "to": "84"}, {"from": "11", "to": "4000"}, {"from": "1684", "to": "0"}, {"from": "2335", "to": "28"}, {"from": "8643", "to": "778"}, {"from": "8643", "to": "456"}, {"from": "191", "to": "16.2"}, {"from": "8643", "to": "648"}, {"from": "4270", "to": "4112"}, {"from": "9", "to": "687.2"}, {"from": "19", "to": "364"}, {"from": "8643", "to": "595"}, {"from": "2", "to": "4"}, {"from": "600", "to": "4000"}, {"from": "518", "to": "519"}, {"from": "422", "to": "423"}, {"from": "92", "to": "10.3"}, {"from": "22", "to": "952"}, {"from": "47", "to": "0"}, {"from": "230", "to": "5"}, {"from": "57", "to": "778"}, {"from": "950", "to": "1050"}, {"from": "2100", "to": "229"}, {"from": "8643", "to": "247"}, {"from": "0", "to": "11.5"}, {"from": "593", "to": "592"}, {"from": "8643", "to": "270"}, {"from": "182", "to": "682"}, {"from": "40", "to": "39"}, {"from": "17", "to": "4000"}, {"from": "8643", "to": "796"}, {"from": "37.4", "to": "7"}, {"from": "115", "to": "1243"}, {"from": "246", "to": "0"}, {"from": "790", "to": "199"}, {"from": "104", "to": "105"}, {"from": "1040", "to": "920"}, {"from": "5.7", "to": "6.1"}, {"from": "5678", "to": "5304"}, {"from": "1129", "to": "11"}, {"from": "9", "to": "9.3"}, {"from": "37", "to": "3745"}, {"from": "3999", "to": "9223372036854775808"}, {"from": "17", "to": "0.01"}, {"from": "13", "to": "5304"}, {"from": "858", "to": "552"}, {"from": "205", "to": "0"}, {"from": "8643", "to": "583"}, {"from": "437", "to": "11"}, {"from": "175", "to": "176"}, {"from": "741", "to": "742"}, {"from": "5", "to": "6"}, {"from": "8643", "to": "350"}, {"from": "8", "to": "7.8"}, {"from": "853", "to": "2187"}, {"from": "4", "to": "289"}, {"from": "8643", "to": "668"}, {"from": "0.74", "to": "188"}, {"from": "4002", "to": "4003"}, {"from": "234", "to": "289"}, {"from": "8643", "to": "336"}, {"from": "2436", "to": "2437"}, {"from": "8643", "to": "289"}, {"from": "29", "to": "742"}, {"from": "442", "to": "14"}, {"from": "8643", "to": "340"}, {"from": "1919", "to": "1919.5"}, {"from": "8643", "to": "515"}, {"from": "375", "to": "2358"}, {"from": "1", "to": "324"}, {"from": "8643", "to": "870"}, {"from": "1044", "to": "188"}, {"from": "416", "to": "0"}, {"from": "14.6", "to": "9"}, {"from": "331", "to": "11"}, {"from": "317", "to": "83"}, {"from": "8198", "to": "4"}, {"from": "1370", "to": "647"}, {"from": "682", "to": "291"}, {"from": "153", "to": "1087"}, {"from": "865", "to": "846"}, {"from": "350", "to": "370"}, {"from": "9223372036854775808", "to": "289"}, {"from": "345", "to": "429"}, {"from": "8643", "to": "536"}, {"from": "5", "to": "386"}, {"from": "283", "to": "1463"}, {"from": "8643", "to": "932"}, {"from": "761", "to": "762"}, {"from": "6.56", "to": "565"}, {"from": "136", "to": "141"}, {"from": "450", "to": "18.3"}, {"from": "8643", "to": "967"}, {"from": "521", "to": "7"}, {"from": "534", "to": "98"}, {"from": "214", "to": "7"}, {"from": "8643", "to": "192"}, {"from": "81", "to": "170"}, {"from": "1314", "to": "1912"}, {"from": "50", "to": "73"}, {"from": "0.2", "to": "0.11"}, {"from": "974", "to": "1040"}, {"from": "55", "to": "2755"}, {"from": "363", "to": "107"}, {"from": "54", "to": "1348"}, {"from": "1120", "to": "1129"}, {"from": "1730", "to": "6820"}, {"from": "99", "to": "0"}, {"from": "787", "to": "787.42"}, {"from": "407", "to": "7"}, {"from": "50", "to": "51"}, {"from": "4006", "to": "4008"}, {"from": "0.555", "to": "0.556"}, {"from": "8643", "to": "427"}, {"from": "999", "to": "1011"}, {"from": "955", "to": "88"}, {"from": "7.1", "to": "4007"}, {"from": "264", "to": "2"}, {"from": "8643", "to": "450"}, {"from": "1", "to": "1015"}, {"from": "8643", "to": "79"}, {"from": "6.1", "to": "325"}, {"from": "3999", "to": "2236"}, {"from": "0", "to": "4827"}, {"from": "656", "to": "657"}, {"from": "7.1", "to": "4000"}, {"from": "230", "to": "456"}, {"from": "858", "to": "1914"}, {"from": "66", "to": "2666"}, {"from": "849", "to": "115"}, {"from": "0.1", "to": "0.555"}, {"from": "1126", "to": "1127"}, {"from": "8643", "to": "265"}, {"from": "4112", "to": "11"}, {"from": "11", "to": "13"}, {"from": "6.1", "to": "512"}, {"from": "992", "to": "993"}, {"from": "1300", "to": "380"}, {"from": "50", "to": "6565"}, {"from": "596.1", "to": "94"}, {"from": "708", "to": "234"}, {"from": "592", "to": "288"}, {"from": "252", "to": "1"}, {"from": "4352", "to": "5"}, {"from": "527", "to": "177"}, {"from": "423", "to": "9"}, {"from": "4.7", "to": "3"}, {"from": "8643", "to": "345"}, {"from": "24", "to": "24.1"}, {"from": "37.1", "to": "1547"}, {"from": "30", "to": "4"}, {"from": "3", "to": "891"}, {"from": "8643", "to": "18"}, {"from": "861", "to": "3999"}, {"from": "248", "to": "143"}, {"from": "303", "to": "999"}, {"from": "1863", "to": "1"}, {"from": "610", "to": "907"}, {"from": "924", "to": "926"}, {"from": "8643", "to": "514"}, {"from": "83", "to": "3075"}, {"from": "8643", "to": "501"}, {"from": "662", "to": "6"}, {"from": "46", "to": "160"}, {"from": "8643", "to": "10"}, {"from": "1081", "to": "1694"}, {"from": "191", "to": "387"}, {"from": "948", "to": "952"}, {"from": "869", "to": "492"}, {"from": "302", "to": "601"}, {"from": "907", "to": "1030"}, {"from": "1", "to": "19"}, {"from": "1125", "to": "1126"}, {"from": "8190", "to": "1212"}, {"from": "8643", "to": "64"}, {"from": "610", "to": "587"}, {"from": "1071", "to": "807"}, {"from": "318", "to": "318.1"}, {"from": "969", "to": "2226"}, {"from": "8643", "to": "321"}, {"from": "11", "to": "1065"}, {"from": "300", "to": "307"}, {"from": "268", "to": "564"}, {"from": "1106", "to": "407"}, {"from": "8643", "to": "317"}, {"from": "11", "to": "6339"}, {"from": "363", "to": "404"}, {"from": "744", "to": "515"}, {"from": "4009", "to": "4014"}, {"from": "128", "to": "256"}, {"from": "853", "to": "7"}, {"from": "1203", "to": "5"}, {"from": "8643", "to": "239"}, {"from": "264", "to": "0"}, {"from": "865", "to": "0"}, {"from": "65", "to": "59"}, {"from": "8643", "to": "829"}, {"from": "372", "to": "108"}, {"from": "1", "to": "0.02"}, {"from": "0", "to": "4443"}, {"from": "993", "to": "92"}, {"from": "8643", "to": "615"}, {"from": "8643", "to": "983"}, {"from": "8643", "to": "209"}, {"from": "8643", "to": "26"}, {"from": "378", "to": "380"}, {"from": "630", "to": "361"}, {"from": "345", "to": "359"}, {"from": "99", "to": "7191"}, {"from": "610", "to": "6339"}, {"from": "1914", "to": "46"}, {"from": "382", "to": "2540"}, {"from": "4270", "to": "4271"}, {"from": "1031", "to": "455"}, {"from": "341", "to": "94"}, {"from": "996", "to": "62"}, {"from": "2", "to": "46"}, {"from": "8643", "to": "406"}, {"from": "143", "to": "4387"}, {"from": "199", "to": "666"}, {"from": "939", "to": "1.5"}, {"from": "37.6", "to": "6999"}, {"from": "1002", "to": "475"}, {"from": "8643", "to": "17"}, {"from": "8643", "to": "689"}, {"from": "4387", "to": "188"}, {"from": "8643", "to": "369"}, {"from": "610", "to": "233"}, {"from": "8643", "to": "701"}, {"from": "0", "to": "1950"}, {"from": "3010", "to": "480"}, {"from": "11", "to": "370"}, {"from": "1980", "to": "1997"}, {"from": "9", "to": "536"}, {"from": "3041", "to": "37"}, {"from": "8643", "to": "372"}, {"from": "517", "to": "127"}, {"from": "11", "to": "2110"}, {"from": "8643", "to": "100"}, {"from": "8643", "to": "855"}, {"from": "167", "to": "0.1"}, {"from": "8643", "to": "661"}, {"from": "276", "to": "2805"}, {"from": "205", "to": "206"}, {"from": "592", "to": "596"}, {"from": "327", "to": "0"}, {"from": "811", "to": "94"}, {"from": "39", "to": "2023"}, {"from": "45", "to": "974"}, {"from": "8643", "to": "240"}, {"from": "37", "to": "37.1"}, {"from": "869", "to": "0"}, {"from": "1040", "to": "8"}, {"from": "654", "to": "455"}, {"from": "1001", "to": "6"}, {"from": "11", "to": "162"}, {"from": "3417", "to": "69"}, {"from": "153", "to": "798"}, {"from": "610", "to": "246"}, {"from": "1950", "to": "424"}, {"from": "697", "to": "698"}, {"from": "45", "to": "8"}, {"from": "8643", "to": "743"}, {"from": "655", "to": "656"}, {"from": "4", "to": "865"}, {"from": "6", "to": "95"}, {"from": "110", "to": "568"}, {"from": "36", "to": "9.11"}, {"from": "738", "to": "9223372036854775808"}, {"from": "1045", "to": "1033"}, {"from": "553", "to": "759"}, {"from": "8643", "to": "781"}, {"from": "431", "to": "396"}, {"from": "136", "to": "358"}, {"from": "477", "to": "0.1"}, {"from": "221", "to": "16"}, {"from": "127", "to": "721"}, {"from": "8643", "to": "865"}, {"from": "42", "to": "1311"}, {"from": "477", "to": "1"}, {"from": "999", "to": "3421"}, {"from": "153", "to": "2693"}, {"from": "37", "to": "113"}, {"from": "1", "to": "1.05"}, {"from": "8643", "to": "429"}, {"from": "0", "to": "4010"}, {"from": "443", "to": "341"}, {"from": "8643", "to": "143"}, {"from": "1243", "to": "934"}, {"from": "0.555", "to": "0.666"}, {"from": "8506", "to": "865"}, {"from": "8643", "to": "538"}, {"from": "7820", "to": "974"}, {"from": "7777", "to": "1000"}, {"from": "304", "to": "454"}, {"from": "8643", "to": "706"}, {"from": "8643", "to": "845"}, {"from": "5", "to": "204"}, {"from": "490", "to": "7"}, {"from": "8643", "to": "660"}, {"from": "3999", "to": "947"}, {"from": "175", "to": "111"}, {"from": "741", "to": "11"}, {"from": "4007", "to": "4028"}, {"from": "37", "to": "849"}, {"from": "891", "to": "188"}, {"from": "8643", "to": "635"}, {"from": "130.4", "to": "188"}, {"from": "9", "to": "18"}, {"from": "327", "to": "98"}, {"from": "2412", "to": "0"}, {"from": "8643", "to": "645"}, {"from": "694", "to": "15"}, {"from": "331", "to": "188"}, {"from": "8643", "to": "275"}, {"from": "2437", "to": "3128"}, {"from": "459", "to": "460"}, {"from": "9", "to": "10"}, {"from": "849", "to": "153"}, {"from": "942", "to": "7"}, {"from": "92", "to": "8"}, {"from": "4", "to": "662"}, {"from": "851", "to": "4"}, {"from": "8001", "to": "323"}, {"from": "287", "to": "7"}, {"from": "9668", "to": "9669"}, {"from": "916.1", "to": "916"}, {"from": "1857", "to": "2500"}, {"from": "8643", "to": "924"}, {"from": "2001", "to": "2002"}, {"from": "785", "to": "862"}, {"from": "148", "to": "372"}, {"from": "8643", "to": "473"}, {"from": "264", "to": "1114"}, {"from": "405", "to": "404"}, {"from": "758", "to": "326"}, {"from": "8643", "to": "662"}, {"from": "8643", "to": "985"}, {"from": "198", "to": "60"}, {"from": "8643", "to": "947"}, {"from": "771", "to": "1730"}, {"from": "983", "to": "982"}, {"from": "193.1", "to": "2354"}, {"from": "11", "to": "71"}, {"from": "4", "to": "6.1"}, {"from": "72", "to": "1619"}, {"from": "272", "to": "4"}, {"from": "159", "to": "2"}, {"from": "8643", "to": "898"}, {"from": "8643", "to": "624"}, {"from": "673", "to": "974"}, {"from": "8643", "to": "746"}, {"from": "1036", "to": "666"}, {"from": "4", "to": "1.3"}, {"from": "8643", "to": "928"}, {"from": "378", "to": "957"}, {"from": "427", "to": "428"}, {"from": "810", "to": "9"}, {"from": "1023", "to": "6.1"}, {"from": "34", "to": "59"}, {"from": "692", "to": "693"}, {"from": "6469", "to": "9.2"}, {"from": "521", "to": "4681"}, {"from": "1819", "to": "780"}, {"from": "11.1", "to": "1942"}, {"from": "999", "to": "11"}, {"from": "4013", "to": "11"}, {"from": "2", "to": "2226"}, {"from": "3999", "to": "94"}, {"from": "8643", "to": "953"}, {"from": "15", "to": "331"}, {"from": "9645", "to": "3999"}, {"from": "478", "to": "11"}, {"from": "363", "to": "364"}, {"from": "148", "to": "865"}, {"from": "26", "to": "1597"}, {"from": "611.1", "to": "611.2"}, {"from": "8643", "to": "377"}, {"from": "50", "to": "3999.2"}, {"from": "3718", "to": "6969"}, {"from": "8643", "to": "744"}, {"from": "900", "to": "910"}, {"from": "4", "to": "4858"}, {"from": "4000", "to": "85"}, {"from": "287", "to": "16"}, {"from": "8643", "to": "280"}, {"from": "19.1", "to": "14"}, {"from": "4040", "to": "4041"}, {"from": "6999", "to": "3999"}, {"from": "627", "to": "102"}, {"from": "802", "to": "2"}, {"from": "311", "to": "8"}, {"from": "1912", "to": "37"}, {"from": "3.2", "to": "1.1"}, {"from": "450", "to": "777.5"}, {"from": "11", "to": "231"}, {"from": "268", "to": "267"}, {"from": "46", "to": "132"}, {"from": "11", "to": "268"}, {"from": "3999", "to": "200"}, {"from": "11", "to": "346"}, {"from": "3210", "to": "1"}, {"from": "129", "to": "7868"}, {"from": "477", "to": "65"}, {"from": "37", "to": "1547"}, {"from": "8643", "to": "94"}, {"from": "72", "to": "214"}, {"from": "8643", "to": "585"}, {"from": "8643", "to": "423"}, {"from": "8643", "to": "763"}, {"from": "9", "to": "661"}, {"from": "126", "to": "1370"}, {"from": "8643", "to": "144"}, {"from": "271", "to": "0"}, {"from": "331", "to": "86"}, {"from": "8643", "to": "454"}, {"from": "1205", "to": "1205.1"}, {"from": "8643", "to": "359"}, {"from": "1225", "to": "1224"}, {"from": "11", "to": "631"}, {"from": "407", "to": "3999"}, {"from": "2", "to": "1311"}, {"from": "512", "to": "1988"}, {"from": "729", "to": "835"}, {"from": "925", "to": "301"}, {"from": "714", "to": "6"}, {"from": "72", "to": "4000"}, {"from": "5304", "to": "28"}, {"from": "36", "to": "31"}, {"from": "45", "to": "49"}, {"from": "1976", "to": "1037"}, {"from": "971", "to": "11"}, {"from": "11", "to": "1049"}, {"from": "771", "to": "1105"}, {"from": "7.1", "to": "4006"}, {"from": "311", "to": "8065"}, {"from": "491", "to": "517"}, {"from": "628", "to": "1244"}, {"from": "7778", "to": "606"}, {"from": "20", "to": "412"}, {"from": "4005", "to": "4005.1"}, {"from": "4242", "to": "1023"}, {"from": "11", "to": "428"}, {"from": "300", "to": "1144"}, {"from": "313", "to": "0"}, {"from": "924", "to": "1210"}, {"from": "133", "to": "3999"}, {"from": "845", "to": "273"}, {"from": "188", "to": "136"}, {"from": "3999.1", "to": "9223372036854775808"}, {"from": "375", "to": "1051"}, {"from": "622", "to": "26"}, {"from": "1113", "to": "934"}, {"from": "10", "to": "9007199254740992"}, {"from": "8643", "to": "606"}, {"from": "65", "to": "354"}, {"from": "8643", "to": "580"}, {"from": "8888", "to": "5"}, {"from": "112", "to": "769"}, {"from": "974", "to": "94"}, {"from": "611.1", "to": "5"}, {"from": "8643", "to": "430"}, {"from": "1", "to": "4756"}, {"from": "369", "to": "370"}, {"from": "8999", "to": "969"}, {"from": "1", "to": "1069"}, {"from": "1289", "to": "1007"}, {"from": "8643", "to": "622"}, {"from": "8643", "to": "25"}, {"from": "8643", "to": "835"}, {"from": "287", "to": "4443"}, {"from": "7", "to": "431"}, {"from": "48", "to": "200"}, {"from": "294", "to": "455"}, {"from": "8643", "to": "590"}, {"from": "569", "to": "93"}, {"from": "610", "to": "1609"}, {"from": "61", "to": "48"}, {"from": "10.001", "to": "3"}, {"from": "10.001", "to": "1"}, {"from": "859", "to": "571"}, {"from": "49", "to": "4999"}, {"from": "1337", "to": "3999"}, {"from": "3999", "to": "8561"}, {"from": "8643", "to": "212"}, {"from": "0.02", "to": "0.03"}, {"from": "1619", "to": "199"}, {"from": "333", "to": "334"}, {"from": "1649", "to": "912"}, {"from": "61", "to": "913"}, {"from": "1251", "to": "1224"}, {"from": "601", "to": "229"}, {"from": "37", "to": "709"}, {"from": "3999", "to": "148"}, {"from": "2835", "to": "2836"}, {"from": "8643", "to": "402"}, {"from": "1296", "to": "262"}, {"from": "85", "to": "87"}, {"from": "181", "to": "442"}, {"from": "11", "to": "1243"}, {"from": "8190", "to": "12"}, {"from": "1700", "to": "1701"}, {"from": "153", "to": "704"}, {"from": "359.1", "to": "359"}, {"from": "8565", "to": "3999"}, {"from": "8643", "to": "218"}, {"from": "9", "to": "7357"}, {"from": "8643", "to": "531"}, {"from": "2", "to": "3"}, {"from": "8643", "to": "854"}, {"from": "653", "to": "27"}, {"from": "486", "to": "342"}, {"from": "8643", "to": "42"}, {"from": "90", "to": "6.3"}, {"from": "610", "to": "4242"}, {"from": "5556", "to": "5965"}, {"from": "911", "to": "912"}, {"from": "386", "to": "35"}, {"from": "2", "to": "76"}, {"from": "4.1", "to": "4.5"}, {"from": "8", "to": "386"}, {"from": "8643", "to": "292"}, {"from": "8643", "to": "274"}, {"from": "4888", "to": "11"}, {"from": "193", "to": "12"}, {"from": "0", "to": "492"}, {"from": "1243", "to": "1400"}, {"from": "119", "to": "684"}, {"from": "0.11", "to": "7"}, {"from": "353", "to": "322"}, {"from": "2827", "to": "278"}, {"from": "5", "to": "666"}, {"from": "8643", "to": "112"}, {"from": "521", "to": "3850"}, {"from": "11", "to": "127"}, {"from": "8643", "to": "148"}, {"from": "8643", "to": "296"}, {"from": "8643", "to": "130"}, {"from": "610", "to": "598"}, {"from": "35", "to": "36"}, {"from": "8643", "to": "625"}, {"from": "22", "to": "23"}, {"from": "943", "to": "1206"}, {"from": "71", "to": "675"}, {"from": "6", "to": "8"}, {"from": "683", "to": "1400"}, {"from": "0", "to": "2845"}, {"from": "8643", "to": "471"}, {"from": "3010", "to": "1513"}, {"from": "60", "to": "996"}, {"from": "8643", "to": "31"}, {"from": "135", "to": "136"}, {"from": "318", "to": "86"}, {"from": "527", "to": "9"}, {"from": "5", "to": "4270"}, {"from": "213", "to": "5998"}, {"from": "3745", "to": "3756"}, {"from": "29", "to": "30"}, {"from": "18", "to": "8190"}, {"from": "8643", "to": "795"}, {"from": "420", "to": "4002"}, {"from": "3999", "to": "1641"}, {"from": "8643", "to": "6"}, {"from": "8643", "to": "237"}, {"from": "0", "to": "2226"}, {"from": "1023", "to": "6"}]);
nodeColors = {};
allNodes = nodes.get({ returnType: "Object" });
for (nodeId in allNodes) {
nodeColors[nodeId] = allNodes[nodeId].color;
}
allEdges = edges.get({ returnType: "Object" });
// adding nodes and edges to the graph
data = {nodes: nodes, edges: edges};
var options = {
"configure": {
"enabled": false
},
"edges": {
"color": {
"inherit": true
},
"smooth": {
"enabled": true,
"type": "dynamic"
}
},
"interaction": {
"dragNodes": true,
"hideEdgesOnDrag": false,
"hideNodesOnDrag": false
},
"physics": {
"enabled": true,
"stabilization": {
"enabled": true,
"fit": true,
"iterations": 1000,
"onlyDynamicEdges": false,
"updateInterval": 50
}
}
};
network = new vis.Network(container, data, options);
network.on("stabilizationProgress", function(params) {
document.getElementById('loadingBar').removeAttribute("style");
var maxWidth = 496;
var minWidth = 20;
var widthFactor = params.iterations/params.total;
var width = Math.max(minWidth,maxWidth * widthFactor);
document.getElementById('bar').style.width = width + 'px';
document.getElementById('text').innerHTML = Math.round(widthFactor*100) + '%';
});
network.once("stabilizationIterationsDone", function() {
document.getElementById('text').innerHTML = '100%';
document.getElementById('bar').style.width = '496px';
document.getElementById('loadingBar').style.opacity = 0;
// really clean the dom element
setTimeout(function () {document.getElementById('loadingBar').style.display = 'none';}, 500);
});
return network;
}
drawGraph();
</script>
</body>
</html>