Skip to content

Instantly share code, notes, and snippets.

@chongkong
Last active July 23, 2017 10:19
Show Gist options
  • Save chongkong/28e52c40616899cb74d1bf5b6065ee60 to your computer and use it in GitHub Desktop.
Save chongkong/28e52c40616899cb74d1bf5b6065ee60 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"다음 조건을 만족시키는 두 자연수 $a$, $b$의 모든 순서쌍 $(a, b)$의 개수를 구하여라.\n",
"\n",
"- $1 \\le a \\le 10$, $1 \\le b \\le 100$\n",
"- 곡선 $y=2^x$이 원 $(x-a)^2 + (y-b)^2 = 1$과 만나지 않는다\n",
"- 곡선 $y=2^x$이 원 $(x-a)^2 + (y-b)^2 = 4$와 적어도 한 점에서 만난다"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Solution\n",
"\n",
"먼저 임의의 점 $(p, q)$와 $y=2^x$와의 거리를 측정해보도록 하자. 이는 $y=2^x$라는 constraint가 존재할 때 $(x-p)^2 + (y-q)^2$를 최소화시키는 문제와 같다.\n",
"\n",
"따라서 라그랑지안 $\\mathcal{L}$은 다음과 같이 정의된다\n",
"\n",
"$$\n",
"\\mathcal{L}(x, y, \\lambda) = (x-p)^2 + (y-q)^2 + \\lambda(xlog2 - logy)\n",
"$$\n",
"\n",
"$\\nabla\\mathcal{L} = 0$이어야 하므로 다음 식이 성립한다\n",
"\n",
"$$\n",
"\\begin{align}\n",
"\\nabla_{x}\\mathcal{L} &= 2x - 2p + \\lambda log2 = 0 \\\\\n",
"\\nabla_{y}\\mathcal{L} &= 2y - 2q - \\frac{\\lambda}{y} = 0 \\\\\n",
"\\nabla_{\\lambda}\\mathcal{L} &= xlog2 - logy = 0\n",
"\\end{align}\n",
"$$\n",
"\n",
"1, 2번식을 정리하면 $x$와 $y$를 $\\lambda$에 대해서 표현할 수 있다.\n",
"\n",
"$$\n",
"\\begin{align}\n",
"x &= p - \\frac{\\lambda log2}{2} \\\\\n",
"y &= \\frac{q + \\sqrt{q^2 + 2\\lambda}}{2}(\\because y \\gt 0)\n",
"\\end{align}\n",
"$$\n",
"\n",
"이 식을 3번에 대입하면 $\\lambda$에 대한 식으로 바뀌고, 이는 newton raphson method로 해를 구할 수 있다. 이렇게 구한 좌표 $(x, y)$와 $(p, q)$간의 거리가 $y=2^x$와 $(p, q)$ 사이의 거리가 된다."
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"import math\n",
"from scipy import optimize\n",
"from functools import partial\n",
"log2 = math.log(2)\n",
"\n",
"def x(p, l):\n",
" return p - l*log2/2\n",
" \n",
"def y(q, l):\n",
" return (q + math.sqrt(q**2 + 2*l))/2\n",
"\n",
"def f(p, q, l):\n",
" return x(p, l)*log2 - math.log(y(q, l))\n",
"\n",
"def dist(p, q):\n",
" \"\"\"Get Euclidean distance between y=2^x and (p, q)\"\"\"\n",
" l = optimize.newton(lambda l: f(p, q, l), 1.0)\n",
" x_ = x(p, l)\n",
" y_ = 2**x_\n",
" return math.sqrt((x_-p)**2 + (y_-q)**2)\n"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"2.7012892057857038e-15\n"
]
}
],
"source": [
"# test\n",
"print(dist(3, 8))"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"196"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"points = []\n",
"for a in range(1, 11):\n",
" for b in range(1, 101):\n",
" if 1 < dist(a, b) <= 2:\n",
" points.append((a, b))\n",
"len(points)"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"IOPub data rate exceeded.\n",
"The notebook server will temporarily stop sending output\n",
"to the client in order to avoid crashing it.\n",
"To change this limit, set the config variable\n",
"`--NotebookApp.iopub_data_rate_limit`.\n"
]
}
],
"source": [
"from plotly.offline import init_notebook_mode\n",
"init_notebook_mode()"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.plotly.v1+json": {
"data": [
{
"type": "scatter",
"x": [
-1,
-0.9396984924623115,
-0.8793969849246231,
-0.8190954773869347,
-0.7587939698492463,
-0.6984924623115578,
-0.6381909547738693,
-0.5778894472361809,
-0.5175879396984925,
-0.457286432160804,
-0.39698492462311563,
-0.33668341708542715,
-0.27638190954773867,
-0.2160804020100503,
-0.15577889447236182,
-0.09547738693467345,
-0.035175879396984966,
0.025125628140703515,
0.085427135678392,
0.14572864321608026,
0.20603015075376874,
0.2663316582914572,
0.3266331658291457,
0.3869346733668342,
0.44723618090452266,
0.5075376884422109,
0.5678391959798994,
0.6281407035175879,
0.6884422110552764,
0.7487437185929648,
0.8090452261306531,
0.8693467336683416,
0.9296482412060301,
0.9899497487437185,
1.050251256281407,
1.1105527638190953,
1.170854271356784,
1.2311557788944723,
1.2914572864321605,
1.3517587939698492,
1.4120603015075375,
1.4723618090452262,
1.5326633165829144,
1.5929648241206027,
1.6532663316582914,
1.7135678391959797,
1.7738693467336684,
1.8341708542713566,
1.8944723618090453,
1.9547738693467336,
2.015075376884422,
2.0753768844221105,
2.135678391959799,
2.1959798994974875,
2.2562814070351758,
2.316582914572864,
2.3768844221105527,
2.437185929648241,
2.4974874371859297,
2.557788944723618,
2.618090452261306,
2.678391959798995,
2.738693467336683,
2.798994974874372,
2.85929648241206,
2.9195979899497484,
2.979899497487437,
3.040201005025126,
3.100502512562814,
3.1608040201005023,
3.2211055276381906,
3.281407035175879,
3.341708542713568,
3.4020100502512562,
3.4623115577889445,
3.5226130653266328,
3.582914572864321,
3.64321608040201,
3.7035175879396984,
3.7638190954773867,
3.824120603015075,
3.884422110552763,
3.9447236180904524,
4.005025125628141,
4.065326633165829,
4.125628140703517,
4.185929648241205,
4.2462311557788945,
4.306532663316583,
4.366834170854271,
4.427135678391959,
4.487437185929648,
4.547738693467337,
4.608040201005025,
4.668341708542713,
4.7286432160804015,
4.788944723618091,
4.849246231155779,
4.909547738693467,
4.969849246231155,
5.030150753768844,
5.090452261306533,
5.150753768844221,
5.211055276381909,
5.271356783919598,
5.331658291457286,
5.391959798994975,
5.452261306532663,
5.5125628140703515,
5.57286432160804,
5.633165829145728,
5.693467336683417,
5.7537688442211055,
5.814070351758794,
5.874371859296482,
5.93467336683417,
5.994974874371859,
6.055276381909548,
6.115577889447236,
6.175879396984924,
6.236180904522612,
6.296482412060302,
6.35678391959799,
6.417085427135678,
6.477386934673366,
6.537688442211055,
6.597989949748744,
6.658291457286432,
6.71859296482412,
6.7788944723618085,
6.839195979899497,
6.899497487437186,
6.959798994974874,
7.0201005025125625,
7.080402010050252,
7.140703517587939,
7.201005025125628,
7.2613065326633155,
7.321608040201005,
7.381909547738694,
7.442211055276381,
7.50251256281407,
7.562814070351758,
7.623115577889447,
7.683417085427136,
7.743718592964823,
7.8040201005025125,
7.8643216080402,
7.924623115577889,
7.984924623115578,
8.045226130653266,
8.105527638190955,
8.165829145728642,
8.226130653266331,
8.28643216080402,
8.346733668341708,
8.407035175879397,
8.467336683417084,
8.527638190954773,
8.587939698492463,
8.64824120603015,
8.708542713567839,
8.768844221105526,
8.829145728643216,
8.889447236180905,
8.949748743718592,
9.010050251256281,
9.070351758793969,
9.130653266331658,
9.190954773869347,
9.251256281407034,
9.311557788944723,
9.37185929648241,
9.4321608040201,
9.492462311557789,
9.552763819095476,
9.613065326633166,
9.673366834170853,
9.733668341708542,
9.793969849246231,
9.854271356783919,
9.914572864321608,
9.974874371859295,
10.035175879396984,
10.095477386934673,
10.15577889447236,
10.21608040201005,
10.276381909547737,
10.336683417085426,
10.396984924623116,
10.457286432160803,
10.517587939698492,
10.577889447236181,
10.638190954773869,
10.698492462311558,
10.758793969849245,
10.819095477386934,
10.879396984924623,
10.93969849246231,
11
],
"y": [
0.5,
0.5213418237945486,
0.5435945944748523,
0.566797194576755,
0.5909901662845581,
0.6162157822708701,
0.6425181195601598,
0.6699431365450751,
0.6985387532900994,
0.7283549352628613,
0.7594437806394009,
0.7918596113359446,
0.8256590679262475,
0.8609012086103539,
0.8976476124077061,
0.935962486754911,
0.9759127796961726,
1.0175682968624202,
1.0610018234435337,
1.1062892513667868,
1.1535097119037327,
1.2027457139372328,
1.2540832881302266,
1.3076121372481535,
1.3634257928976798,
1.4216217789556096,
1.4823017819735362,
1.5455718288559854,
1.6115424721225107,
1.6803289830774504,
1.752051553224874,
1.8268355042806548,
1.904811507148621,
1.9861158102434096,
2.0708904775589736,
2.1592836368987176,
2.2514497387010066,
2.347549825912285,
2.447751815379371,
2.5522307912525974,
2.6611693109124657,
2.774757723954374,
2.8931945047887675,
3.0166865994378833,
3.145449787135042,
3.2797090573583145,
3.4196990029573677,
3.5656642300603862,
3.7178597854773336,
3.876551602346324,
4.042016964801824,
4.214544992476577,
4.394437145683842,
4.582007752162649,
4.77758455630647,
4.981509291834969,
5.194138278909466,
5.415843046735477,
5.647010982740197,
5.88804600945924,
6.139369290315386,
6.4014199655225354,
6.674655919400709,
6.959554580442891,
7.256613755531601,
7.566352499762906,
7.889312023397671,
8.226056637524806,
8.577174740088866,
8.943279844004925,
9.325011649157105,
9.723037160153952,
10.138051851793664,
10.570780884275617,
11.0219803702816,
11.492438696140646,
11.982977899386015,
12.494455105111351,
13.027764023635719,
13.583836512094502,
14.163644202684653,
14.768200200409401,
15.398560853288917,
16.055827598129966,
16.741148885079845,
17.455722184327197,
18.2007960784562,
18.977672444110055,
19.787708726775765,
20.63232031266516,
21.51298300183633,
22.431235586876948,
23.38868254165523,
24.386996824836505,
25.427922803064256,
26.513279298913012,
27.644962768939134,
28.82495061738224,
30.055304651307708,
31.338174683227074,
32.6758022874915,
34.07052471702182,
35.524778987218795,
37.0411061341898,
38.6221556547319,
40.270690135829724,
41.98959008175723,
43.7818589472176,
45.65062838531619,
47.59916371953585,
49.630869649276256,
51.7492961989264,
53.95814492086517,
56.26127536322881,
58.662711813746014,
61.166650331424705,
63.777466078376804,
66.49972096459183,
69.33817161901774,
72.29777770087622,
75.38371056573531,
78.60136230148169,
81.95635514998106,
85.45455133088974,
89.10206328478183,
92.90526435349088,
96.87079991632724,
101.00559900162968,
105.31688639394089,
109.81219525796082,
114.49938030133674,
119.38663149928907,
124.48248840505411,
129.7958550711493,
135.33601560753183,
141.11265040383614,
147.13585304403705,
153.41614794308978,
159.9645087363695,
166.79237745403583,
173.91168451383143,
181.33486956724613,
189.07490323546924,
197.14530977311475,
205.56019069931386,
214.33424943747082,
223.48281700673357,
233.0218788100675,
242.96810256574582,
253.33886743105387,
264.15229436910175,
275.4272778118041,
287.1835186743473,
299.44155877884015,
312.22281674728623,
325.5496254266024,
339.44527091107426,
353.93403323042793,
369.04122877462345,
384.79325452948706,
401.2176342004851,
418.34306630523014,
436.19947431874454,
454.8180589591155,
474.2313527048838,
494.4732766394395,
515.5791997217437,
537.586000586935,
560.5321319848202,
584.4576879688258,
609.4044739528252,
635.4160797582471,
662.5379557790932,
690.8174923979692,
720.3041027918682,
751.0493092724166,
783.1068333114356,
816.5326894091141,
851.3852829688309,
887.7255123496167,
925.6168752745978,
965.1255797813404,
1006.3206599079494,
1049.2740963170886,
1094.060942068656,
1140.7594537609093,
1189.4512282691717,
1240.2213453210306,
1293.1585161571902,
1348.355238537684,
1405.9079583643386,
1465.9172382018698,
1528.4879329920618,
1593.7293732680812,
1661.7555561890495,
1732.6853447286458,
1806.6426753658372,
1883.7567746405773,
1964.1623849529085,
2048
]
}
],
"layout": {
"height": 3000,
"shapes": [
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 0,
"x1": 2,
"xref": "x",
"y0": 4,
"y1": 6,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 0,
"x1": 2,
"xref": "x",
"y0": 5,
"y1": 7,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 0,
"x1": 2,
"xref": "x",
"y0": 6,
"y1": 8,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 0,
"x1": 2,
"xref": "x",
"y0": 7,
"y1": 9,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 1,
"x1": 3,
"xref": "x",
"y0": 0,
"y1": 2,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 1,
"x1": 3,
"xref": "x",
"y0": 8,
"y1": 10,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 1,
"x1": 3,
"xref": "x",
"y0": 9,
"y1": 11,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 1,
"x1": 3,
"xref": "x",
"y0": 10,
"y1": 12,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 1,
"x1": 3,
"xref": "x",
"y0": 11,
"y1": 13,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 1,
"x1": 3,
"xref": "x",
"y0": 12,
"y1": 14,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 1,
"x1": 3,
"xref": "x",
"y0": 13,
"y1": 15,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 1,
"x1": 3,
"xref": "x",
"y0": 14,
"y1": 16,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 1,
"x1": 3,
"xref": "x",
"y0": 15,
"y1": 17,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 4,
"xref": "x",
"y0": 1,
"y1": 3,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 4,
"xref": "x",
"y0": 2,
"y1": 4,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 4,
"xref": "x",
"y0": 16,
"y1": 18,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 4,
"xref": "x",
"y0": 17,
"y1": 19,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 4,
"xref": "x",
"y0": 18,
"y1": 20,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 4,
"xref": "x",
"y0": 19,
"y1": 21,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 4,
"xref": "x",
"y0": 20,
"y1": 22,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 4,
"xref": "x",
"y0": 21,
"y1": 23,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 4,
"xref": "x",
"y0": 22,
"y1": 24,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 4,
"xref": "x",
"y0": 23,
"y1": 25,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 4,
"xref": "x",
"y0": 24,
"y1": 26,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 4,
"xref": "x",
"y0": 25,
"y1": 27,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 4,
"xref": "x",
"y0": 26,
"y1": 28,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 4,
"xref": "x",
"y0": 27,
"y1": 29,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 4,
"xref": "x",
"y0": 28,
"y1": 30,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 4,
"xref": "x",
"y0": 29,
"y1": 31,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 4,
"xref": "x",
"y0": 30,
"y1": 32,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 4,
"xref": "x",
"y0": 31,
"y1": 33,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 3,
"y1": 5,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 4,
"y1": 6,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 5,
"y1": 7,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 6,
"y1": 8,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 32,
"y1": 34,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 33,
"y1": 35,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 34,
"y1": 36,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 35,
"y1": 37,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 36,
"y1": 38,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 37,
"y1": 39,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 38,
"y1": 40,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 39,
"y1": 41,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 40,
"y1": 42,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 41,
"y1": 43,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 42,
"y1": 44,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 43,
"y1": 45,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 44,
"y1": 46,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 45,
"y1": 47,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 46,
"y1": 48,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 47,
"y1": 49,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 48,
"y1": 50,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 49,
"y1": 51,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 50,
"y1": 52,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 51,
"y1": 53,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 52,
"y1": 54,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 53,
"y1": 55,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 54,
"y1": 56,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 55,
"y1": 57,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 56,
"y1": 58,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 57,
"y1": 59,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 58,
"y1": 60,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 59,
"y1": 61,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 60,
"y1": 62,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 61,
"y1": 63,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 62,
"y1": 64,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 5,
"xref": "x",
"y0": 63,
"y1": 65,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 7,
"y1": 9,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 8,
"y1": 10,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 9,
"y1": 11,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 10,
"y1": 12,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 11,
"y1": 13,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 12,
"y1": 14,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 13,
"y1": 15,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 14,
"y1": 16,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 64,
"y1": 66,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 65,
"y1": 67,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 66,
"y1": 68,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 67,
"y1": 69,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 68,
"y1": 70,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 69,
"y1": 71,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 70,
"y1": 72,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 71,
"y1": 73,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 72,
"y1": 74,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 73,
"y1": 75,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 74,
"y1": 76,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 75,
"y1": 77,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 76,
"y1": 78,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 77,
"y1": 79,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 78,
"y1": 80,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 79,
"y1": 81,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 80,
"y1": 82,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 81,
"y1": 83,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 82,
"y1": 84,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 83,
"y1": 85,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 84,
"y1": 86,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 85,
"y1": 87,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 86,
"y1": 88,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 87,
"y1": 89,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 88,
"y1": 90,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 89,
"y1": 91,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 90,
"y1": 92,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 91,
"y1": 93,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 92,
"y1": 94,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 93,
"y1": 95,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 94,
"y1": 96,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 95,
"y1": 97,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 96,
"y1": 98,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 97,
"y1": 99,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 98,
"y1": 100,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 6,
"xref": "x",
"y0": 99,
"y1": 101,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 7,
"xref": "x",
"y0": 15,
"y1": 17,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 7,
"xref": "x",
"y0": 16,
"y1": 18,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 7,
"xref": "x",
"y0": 17,
"y1": 19,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 7,
"xref": "x",
"y0": 18,
"y1": 20,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 7,
"xref": "x",
"y0": 19,
"y1": 21,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 7,
"xref": "x",
"y0": 20,
"y1": 22,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 7,
"xref": "x",
"y0": 21,
"y1": 23,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 7,
"xref": "x",
"y0": 22,
"y1": 24,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 7,
"xref": "x",
"y0": 23,
"y1": 25,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 7,
"xref": "x",
"y0": 24,
"y1": 26,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 7,
"xref": "x",
"y0": 25,
"y1": 27,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 7,
"xref": "x",
"y0": 26,
"y1": 28,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 7,
"xref": "x",
"y0": 27,
"y1": 29,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 7,
"xref": "x",
"y0": 28,
"y1": 30,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 7,
"xref": "x",
"y0": 29,
"y1": 31,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 7,
"xref": "x",
"y0": 30,
"y1": 32,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 8,
"xref": "x",
"y0": 31,
"y1": 33,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 8,
"xref": "x",
"y0": 32,
"y1": 34,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 8,
"xref": "x",
"y0": 33,
"y1": 35,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 8,
"xref": "x",
"y0": 34,
"y1": 36,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 8,
"xref": "x",
"y0": 35,
"y1": 37,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 8,
"xref": "x",
"y0": 36,
"y1": 38,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 8,
"xref": "x",
"y0": 37,
"y1": 39,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 8,
"xref": "x",
"y0": 38,
"y1": 40,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 8,
"xref": "x",
"y0": 39,
"y1": 41,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 8,
"xref": "x",
"y0": 40,
"y1": 42,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 8,
"xref": "x",
"y0": 41,
"y1": 43,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 8,
"xref": "x",
"y0": 42,
"y1": 44,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 8,
"xref": "x",
"y0": 43,
"y1": 45,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 8,
"xref": "x",
"y0": 44,
"y1": 46,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 8,
"xref": "x",
"y0": 45,
"y1": 47,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 8,
"xref": "x",
"y0": 46,
"y1": 48,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 8,
"xref": "x",
"y0": 47,
"y1": 49,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 8,
"xref": "x",
"y0": 48,
"y1": 50,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 8,
"xref": "x",
"y0": 49,
"y1": 51,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 8,
"xref": "x",
"y0": 50,
"y1": 52,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 8,
"xref": "x",
"y0": 51,
"y1": 53,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 8,
"xref": "x",
"y0": 52,
"y1": 54,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 8,
"xref": "x",
"y0": 53,
"y1": 55,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 8,
"xref": "x",
"y0": 54,
"y1": 56,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 8,
"xref": "x",
"y0": 55,
"y1": 57,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 8,
"xref": "x",
"y0": 56,
"y1": 58,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 8,
"xref": "x",
"y0": 57,
"y1": 59,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 8,
"xref": "x",
"y0": 58,
"y1": 60,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 8,
"xref": "x",
"y0": 59,
"y1": 61,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 8,
"xref": "x",
"y0": 60,
"y1": 62,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 8,
"xref": "x",
"y0": 61,
"y1": 63,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 8,
"xref": "x",
"y0": 62,
"y1": 64,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 63,
"y1": 65,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 64,
"y1": 66,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 65,
"y1": 67,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 66,
"y1": 68,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 67,
"y1": 69,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 68,
"y1": 70,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 69,
"y1": 71,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 70,
"y1": 72,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 71,
"y1": 73,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 72,
"y1": 74,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 73,
"y1": 75,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 74,
"y1": 76,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 75,
"y1": 77,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 76,
"y1": 78,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 77,
"y1": 79,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 78,
"y1": 80,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 79,
"y1": 81,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 80,
"y1": 82,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 81,
"y1": 83,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 82,
"y1": 84,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 83,
"y1": 85,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 84,
"y1": 86,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 85,
"y1": 87,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 86,
"y1": 88,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 87,
"y1": 89,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 88,
"y1": 90,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 89,
"y1": 91,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 90,
"y1": 92,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 91,
"y1": 93,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 92,
"y1": 94,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 93,
"y1": 95,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 94,
"y1": 96,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 95,
"y1": 97,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 96,
"y1": 98,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 97,
"y1": 99,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 98,
"y1": 100,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 7,
"x1": 9,
"xref": "x",
"y0": 99,
"y1": 101,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": -1,
"x1": 3,
"xref": "x",
"y0": 3,
"y1": 7,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": -1,
"x1": 3,
"xref": "x",
"y0": 4,
"y1": 8,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": -1,
"x1": 3,
"xref": "x",
"y0": 5,
"y1": 9,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": -1,
"x1": 3,
"xref": "x",
"y0": 6,
"y1": 10,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 0,
"x1": 4,
"xref": "x",
"y0": -1,
"y1": 3,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 0,
"x1": 4,
"xref": "x",
"y0": 7,
"y1": 11,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 0,
"x1": 4,
"xref": "x",
"y0": 8,
"y1": 12,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 0,
"x1": 4,
"xref": "x",
"y0": 9,
"y1": 13,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 0,
"x1": 4,
"xref": "x",
"y0": 10,
"y1": 14,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 0,
"x1": 4,
"xref": "x",
"y0": 11,
"y1": 15,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 0,
"x1": 4,
"xref": "x",
"y0": 12,
"y1": 16,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 0,
"x1": 4,
"xref": "x",
"y0": 13,
"y1": 17,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 0,
"x1": 4,
"xref": "x",
"y0": 14,
"y1": 18,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 1,
"x1": 5,
"xref": "x",
"y0": 0,
"y1": 4,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 1,
"x1": 5,
"xref": "x",
"y0": 1,
"y1": 5,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 1,
"x1": 5,
"xref": "x",
"y0": 15,
"y1": 19,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 1,
"x1": 5,
"xref": "x",
"y0": 16,
"y1": 20,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 1,
"x1": 5,
"xref": "x",
"y0": 17,
"y1": 21,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 1,
"x1": 5,
"xref": "x",
"y0": 18,
"y1": 22,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 1,
"x1": 5,
"xref": "x",
"y0": 19,
"y1": 23,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 1,
"x1": 5,
"xref": "x",
"y0": 20,
"y1": 24,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 1,
"x1": 5,
"xref": "x",
"y0": 21,
"y1": 25,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 1,
"x1": 5,
"xref": "x",
"y0": 22,
"y1": 26,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 1,
"x1": 5,
"xref": "x",
"y0": 23,
"y1": 27,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 1,
"x1": 5,
"xref": "x",
"y0": 24,
"y1": 28,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 1,
"x1": 5,
"xref": "x",
"y0": 25,
"y1": 29,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 1,
"x1": 5,
"xref": "x",
"y0": 26,
"y1": 30,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 1,
"x1": 5,
"xref": "x",
"y0": 27,
"y1": 31,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 1,
"x1": 5,
"xref": "x",
"y0": 28,
"y1": 32,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 1,
"x1": 5,
"xref": "x",
"y0": 29,
"y1": 33,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 1,
"x1": 5,
"xref": "x",
"y0": 30,
"y1": 34,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 2,
"y1": 6,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 3,
"y1": 7,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 4,
"y1": 8,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 5,
"y1": 9,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 31,
"y1": 35,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 32,
"y1": 36,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 33,
"y1": 37,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 34,
"y1": 38,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 35,
"y1": 39,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 36,
"y1": 40,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 37,
"y1": 41,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 38,
"y1": 42,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 39,
"y1": 43,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 40,
"y1": 44,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 41,
"y1": 45,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 42,
"y1": 46,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 43,
"y1": 47,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 44,
"y1": 48,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 45,
"y1": 49,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 46,
"y1": 50,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 47,
"y1": 51,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 48,
"y1": 52,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 49,
"y1": 53,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 50,
"y1": 54,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 51,
"y1": 55,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 52,
"y1": 56,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 53,
"y1": 57,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 54,
"y1": 58,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 55,
"y1": 59,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 56,
"y1": 60,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 57,
"y1": 61,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 58,
"y1": 62,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 59,
"y1": 63,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 60,
"y1": 64,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 61,
"y1": 65,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 2,
"x1": 6,
"xref": "x",
"y0": 62,
"y1": 66,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 6,
"y1": 10,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 7,
"y1": 11,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 8,
"y1": 12,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 9,
"y1": 13,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 10,
"y1": 14,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 11,
"y1": 15,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 12,
"y1": 16,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 13,
"y1": 17,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 63,
"y1": 67,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 64,
"y1": 68,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 65,
"y1": 69,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 66,
"y1": 70,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 67,
"y1": 71,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 68,
"y1": 72,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 69,
"y1": 73,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 70,
"y1": 74,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 71,
"y1": 75,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 72,
"y1": 76,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 73,
"y1": 77,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 74,
"y1": 78,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 75,
"y1": 79,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 76,
"y1": 80,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 77,
"y1": 81,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 78,
"y1": 82,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 79,
"y1": 83,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 80,
"y1": 84,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 81,
"y1": 85,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 82,
"y1": 86,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 83,
"y1": 87,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 84,
"y1": 88,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 85,
"y1": 89,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 86,
"y1": 90,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 87,
"y1": 91,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 88,
"y1": 92,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 89,
"y1": 93,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 90,
"y1": 94,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 91,
"y1": 95,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 92,
"y1": 96,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 93,
"y1": 97,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 94,
"y1": 98,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 95,
"y1": 99,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 96,
"y1": 100,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 97,
"y1": 101,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 3,
"x1": 7,
"xref": "x",
"y0": 98,
"y1": 102,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 8,
"xref": "x",
"y0": 14,
"y1": 18,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 8,
"xref": "x",
"y0": 15,
"y1": 19,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 8,
"xref": "x",
"y0": 16,
"y1": 20,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 8,
"xref": "x",
"y0": 17,
"y1": 21,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 8,
"xref": "x",
"y0": 18,
"y1": 22,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 8,
"xref": "x",
"y0": 19,
"y1": 23,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 8,
"xref": "x",
"y0": 20,
"y1": 24,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 8,
"xref": "x",
"y0": 21,
"y1": 25,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 8,
"xref": "x",
"y0": 22,
"y1": 26,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 8,
"xref": "x",
"y0": 23,
"y1": 27,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 8,
"xref": "x",
"y0": 24,
"y1": 28,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 8,
"xref": "x",
"y0": 25,
"y1": 29,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 8,
"xref": "x",
"y0": 26,
"y1": 30,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 8,
"xref": "x",
"y0": 27,
"y1": 31,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 8,
"xref": "x",
"y0": 28,
"y1": 32,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 4,
"x1": 8,
"xref": "x",
"y0": 29,
"y1": 33,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 9,
"xref": "x",
"y0": 30,
"y1": 34,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 9,
"xref": "x",
"y0": 31,
"y1": 35,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 9,
"xref": "x",
"y0": 32,
"y1": 36,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 9,
"xref": "x",
"y0": 33,
"y1": 37,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 9,
"xref": "x",
"y0": 34,
"y1": 38,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 9,
"xref": "x",
"y0": 35,
"y1": 39,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 9,
"xref": "x",
"y0": 36,
"y1": 40,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 9,
"xref": "x",
"y0": 37,
"y1": 41,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 9,
"xref": "x",
"y0": 38,
"y1": 42,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 9,
"xref": "x",
"y0": 39,
"y1": 43,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 9,
"xref": "x",
"y0": 40,
"y1": 44,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 9,
"xref": "x",
"y0": 41,
"y1": 45,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 9,
"xref": "x",
"y0": 42,
"y1": 46,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 9,
"xref": "x",
"y0": 43,
"y1": 47,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 9,
"xref": "x",
"y0": 44,
"y1": 48,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 9,
"xref": "x",
"y0": 45,
"y1": 49,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 9,
"xref": "x",
"y0": 46,
"y1": 50,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 9,
"xref": "x",
"y0": 47,
"y1": 51,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 9,
"xref": "x",
"y0": 48,
"y1": 52,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 9,
"xref": "x",
"y0": 49,
"y1": 53,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 9,
"xref": "x",
"y0": 50,
"y1": 54,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 9,
"xref": "x",
"y0": 51,
"y1": 55,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 9,
"xref": "x",
"y0": 52,
"y1": 56,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 9,
"xref": "x",
"y0": 53,
"y1": 57,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 9,
"xref": "x",
"y0": 54,
"y1": 58,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 9,
"xref": "x",
"y0": 55,
"y1": 59,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 9,
"xref": "x",
"y0": 56,
"y1": 60,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 9,
"xref": "x",
"y0": 57,
"y1": 61,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 9,
"xref": "x",
"y0": 58,
"y1": 62,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 9,
"xref": "x",
"y0": 59,
"y1": 63,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 9,
"xref": "x",
"y0": 60,
"y1": 64,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 5,
"x1": 9,
"xref": "x",
"y0": 61,
"y1": 65,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 62,
"y1": 66,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 63,
"y1": 67,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 64,
"y1": 68,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 65,
"y1": 69,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 66,
"y1": 70,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 67,
"y1": 71,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 68,
"y1": 72,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 69,
"y1": 73,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 70,
"y1": 74,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 71,
"y1": 75,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 72,
"y1": 76,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 73,
"y1": 77,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 74,
"y1": 78,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 75,
"y1": 79,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 76,
"y1": 80,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 77,
"y1": 81,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 78,
"y1": 82,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 79,
"y1": 83,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 80,
"y1": 84,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 81,
"y1": 85,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 82,
"y1": 86,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 83,
"y1": 87,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 84,
"y1": 88,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 85,
"y1": 89,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 86,
"y1": 90,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 87,
"y1": 91,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 88,
"y1": 92,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 89,
"y1": 93,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 90,
"y1": 94,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 91,
"y1": 95,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 92,
"y1": 96,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 93,
"y1": 97,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 94,
"y1": 98,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 95,
"y1": 99,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 96,
"y1": 100,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 97,
"y1": 101,
"yref": "y"
},
{
"line": {
"color": "rgba(50, 171, 96, 0.3)"
},
"type": "circle",
"x0": 6,
"x1": 10,
"xref": "x",
"y0": 98,
"y1": 102,
"yref": "y"
}
],
"xaxis": {
"range": [
-1,
11
]
},
"yaxis": {
"range": [
-1,
101
],
"scaleanchor": "x"
}
}
},
"text/html": [
"<div id=\"31a74a81-1025-45a0-a2fe-aa86089f119c\" style=\"height: 3000px; width: 100%;\" class=\"plotly-graph-div\"></div><script type=\"text/javascript\">require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {};window.PLOTLYENV.BASE_URL=\"https://plot.ly\";Plotly.newPlot(\"31a74a81-1025-45a0-a2fe-aa86089f119c\", [{\"type\": \"scatter\", \"x\": [-1.0, -0.9396984924623115, -0.8793969849246231, -0.8190954773869347, -0.7587939698492463, -0.6984924623115578, -0.6381909547738693, -0.5778894472361809, -0.5175879396984925, -0.457286432160804, -0.39698492462311563, -0.33668341708542715, -0.27638190954773867, -0.2160804020100503, -0.15577889447236182, -0.09547738693467345, -0.035175879396984966, 0.025125628140703515, 0.085427135678392, 0.14572864321608026, 0.20603015075376874, 0.2663316582914572, 0.3266331658291457, 0.3869346733668342, 0.44723618090452266, 0.5075376884422109, 0.5678391959798994, 0.6281407035175879, 0.6884422110552764, 0.7487437185929648, 0.8090452261306531, 0.8693467336683416, 0.9296482412060301, 0.9899497487437185, 1.050251256281407, 1.1105527638190953, 1.170854271356784, 1.2311557788944723, 1.2914572864321605, 1.3517587939698492, 1.4120603015075375, 1.4723618090452262, 1.5326633165829144, 1.5929648241206027, 1.6532663316582914, 1.7135678391959797, 1.7738693467336684, 1.8341708542713566, 1.8944723618090453, 1.9547738693467336, 2.015075376884422, 2.0753768844221105, 2.135678391959799, 2.1959798994974875, 2.2562814070351758, 2.316582914572864, 2.3768844221105527, 2.437185929648241, 2.4974874371859297, 2.557788944723618, 2.618090452261306, 2.678391959798995, 2.738693467336683, 2.798994974874372, 2.85929648241206, 2.9195979899497484, 2.979899497487437, 3.040201005025126, 3.100502512562814, 3.1608040201005023, 3.2211055276381906, 3.281407035175879, 3.341708542713568, 3.4020100502512562, 3.4623115577889445, 3.5226130653266328, 3.582914572864321, 3.64321608040201, 3.7035175879396984, 3.7638190954773867, 3.824120603015075, 3.884422110552763, 3.9447236180904524, 4.005025125628141, 4.065326633165829, 4.125628140703517, 4.185929648241205, 4.2462311557788945, 4.306532663316583, 4.366834170854271, 4.427135678391959, 4.487437185929648, 4.547738693467337, 4.608040201005025, 4.668341708542713, 4.7286432160804015, 4.788944723618091, 4.849246231155779, 4.909547738693467, 4.969849246231155, 5.030150753768844, 5.090452261306533, 5.150753768844221, 5.211055276381909, 5.271356783919598, 5.331658291457286, 5.391959798994975, 5.452261306532663, 5.5125628140703515, 5.57286432160804, 5.633165829145728, 5.693467336683417, 5.7537688442211055, 5.814070351758794, 5.874371859296482, 5.93467336683417, 5.994974874371859, 6.055276381909548, 6.115577889447236, 6.175879396984924, 6.236180904522612, 6.296482412060302, 6.35678391959799, 6.417085427135678, 6.477386934673366, 6.537688442211055, 6.597989949748744, 6.658291457286432, 6.71859296482412, 6.7788944723618085, 6.839195979899497, 6.899497487437186, 6.959798994974874, 7.0201005025125625, 7.080402010050252, 7.140703517587939, 7.201005025125628, 7.2613065326633155, 7.321608040201005, 7.381909547738694, 7.442211055276381, 7.50251256281407, 7.562814070351758, 7.623115577889447, 7.683417085427136, 7.743718592964823, 7.8040201005025125, 7.8643216080402, 7.924623115577889, 7.984924623115578, 8.045226130653266, 8.105527638190955, 8.165829145728642, 8.226130653266331, 8.28643216080402, 8.346733668341708, 8.407035175879397, 8.467336683417084, 8.527638190954773, 8.587939698492463, 8.64824120603015, 8.708542713567839, 8.768844221105526, 8.829145728643216, 8.889447236180905, 8.949748743718592, 9.010050251256281, 9.070351758793969, 9.130653266331658, 9.190954773869347, 9.251256281407034, 9.311557788944723, 9.37185929648241, 9.4321608040201, 9.492462311557789, 9.552763819095476, 9.613065326633166, 9.673366834170853, 9.733668341708542, 9.793969849246231, 9.854271356783919, 9.914572864321608, 9.974874371859295, 10.035175879396984, 10.095477386934673, 10.15577889447236, 10.21608040201005, 10.276381909547737, 10.336683417085426, 10.396984924623116, 10.457286432160803, 10.517587939698492, 10.577889447236181, 10.638190954773869, 10.698492462311558, 10.758793969849245, 10.819095477386934, 10.879396984924623, 10.93969849246231, 11.0], \"y\": [0.5, 0.5213418237945486, 0.5435945944748523, 0.566797194576755, 0.5909901662845581, 0.6162157822708701, 0.6425181195601598, 0.6699431365450751, 0.6985387532900994, 0.7283549352628613, 0.7594437806394009, 0.7918596113359446, 0.8256590679262475, 0.8609012086103539, 0.8976476124077061, 0.935962486754911, 0.9759127796961726, 1.0175682968624202, 1.0610018234435337, 1.1062892513667868, 1.1535097119037327, 1.2027457139372328, 1.2540832881302266, 1.3076121372481535, 1.3634257928976798, 1.4216217789556096, 1.4823017819735362, 1.5455718288559854, 1.6115424721225107, 1.6803289830774504, 1.752051553224874, 1.8268355042806548, 1.904811507148621, 1.9861158102434096, 2.0708904775589736, 2.1592836368987176, 2.2514497387010066, 2.347549825912285, 2.447751815379371, 2.5522307912525974, 2.6611693109124657, 2.774757723954374, 2.8931945047887675, 3.0166865994378833, 3.145449787135042, 3.2797090573583145, 3.4196990029573677, 3.5656642300603862, 3.7178597854773336, 3.876551602346324, 4.042016964801824, 4.214544992476577, 4.394437145683842, 4.582007752162649, 4.77758455630647, 4.981509291834969, 5.194138278909466, 5.415843046735477, 5.647010982740197, 5.88804600945924, 6.139369290315386, 6.4014199655225354, 6.674655919400709, 6.959554580442891, 7.256613755531601, 7.566352499762906, 7.889312023397671, 8.226056637524806, 8.577174740088866, 8.943279844004925, 9.325011649157105, 9.723037160153952, 10.138051851793664, 10.570780884275617, 11.0219803702816, 11.492438696140646, 11.982977899386015, 12.494455105111351, 13.027764023635719, 13.583836512094502, 14.163644202684653, 14.768200200409401, 15.398560853288917, 16.055827598129966, 16.741148885079845, 17.455722184327197, 18.2007960784562, 18.977672444110055, 19.787708726775765, 20.63232031266516, 21.51298300183633, 22.431235586876948, 23.38868254165523, 24.386996824836505, 25.427922803064256, 26.513279298913012, 27.644962768939134, 28.82495061738224, 30.055304651307708, 31.338174683227074, 32.6758022874915, 34.07052471702182, 35.524778987218795, 37.0411061341898, 38.6221556547319, 40.270690135829724, 41.98959008175723, 43.7818589472176, 45.65062838531619, 47.59916371953585, 49.630869649276256, 51.7492961989264, 53.95814492086517, 56.26127536322881, 58.662711813746014, 61.166650331424705, 63.777466078376804, 66.49972096459183, 69.33817161901774, 72.29777770087622, 75.38371056573531, 78.60136230148169, 81.95635514998106, 85.45455133088974, 89.10206328478183, 92.90526435349088, 96.87079991632724, 101.00559900162968, 105.31688639394089, 109.81219525796082, 114.49938030133674, 119.38663149928907, 124.48248840505411, 129.7958550711493, 135.33601560753183, 141.11265040383614, 147.13585304403705, 153.41614794308978, 159.9645087363695, 166.79237745403583, 173.91168451383143, 181.33486956724613, 189.07490323546924, 197.14530977311475, 205.56019069931386, 214.33424943747082, 223.48281700673357, 233.0218788100675, 242.96810256574582, 253.33886743105387, 264.15229436910175, 275.4272778118041, 287.1835186743473, 299.44155877884015, 312.22281674728623, 325.5496254266024, 339.44527091107426, 353.93403323042793, 369.04122877462345, 384.79325452948706, 401.2176342004851, 418.34306630523014, 436.19947431874454, 454.8180589591155, 474.2313527048838, 494.4732766394395, 515.5791997217437, 537.586000586935, 560.5321319848202, 584.4576879688258, 609.4044739528252, 635.4160797582471, 662.5379557790932, 690.8174923979692, 720.3041027918682, 751.0493092724166, 783.1068333114356, 816.5326894091141, 851.3852829688309, 887.7255123496167, 925.6168752745978, 965.1255797813404, 1006.3206599079494, 1049.2740963170886, 1094.060942068656, 1140.7594537609093, 1189.4512282691717, 1240.2213453210306, 1293.1585161571902, 1348.355238537684, 1405.9079583643386, 1465.9172382018698, 1528.4879329920618, 1593.7293732680812, 1661.7555561890495, 1732.6853447286458, 1806.6426753658372, 1883.7567746405773, 1964.1623849529085, 2048.0]}], {\"height\": 3000, \"xaxis\": {\"range\": [-1, 11]}, \"yaxis\": {\"scaleanchor\": \"x\", \"range\": [-1, 101]}, \"shapes\": [{\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 0.0, \"x1\": 2.0, \"y0\": 4.0, \"y1\": 6.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 0.0, \"x1\": 2.0, \"y0\": 5.0, \"y1\": 7.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 0.0, \"x1\": 2.0, \"y0\": 6.0, \"y1\": 8.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 0.0, \"x1\": 2.0, \"y0\": 7.0, \"y1\": 9.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 3.0, \"y0\": 0.0, \"y1\": 2.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 3.0, \"y0\": 8.0, \"y1\": 10.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 3.0, \"y0\": 9.0, \"y1\": 11.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 3.0, \"y0\": 10.0, \"y1\": 12.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 3.0, \"y0\": 11.0, \"y1\": 13.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 3.0, \"y0\": 12.0, \"y1\": 14.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 3.0, \"y0\": 13.0, \"y1\": 15.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 3.0, \"y0\": 14.0, \"y1\": 16.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 3.0, \"y0\": 15.0, \"y1\": 17.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 1.0, \"y1\": 3.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 2.0, \"y1\": 4.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 16.0, \"y1\": 18.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 17.0, \"y1\": 19.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 18.0, \"y1\": 20.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 19.0, \"y1\": 21.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 20.0, \"y1\": 22.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 21.0, \"y1\": 23.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 22.0, \"y1\": 24.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 23.0, \"y1\": 25.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 24.0, \"y1\": 26.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 25.0, \"y1\": 27.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 26.0, \"y1\": 28.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 27.0, \"y1\": 29.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 28.0, \"y1\": 30.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 29.0, \"y1\": 31.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 30.0, \"y1\": 32.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 31.0, \"y1\": 33.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 3.0, \"y1\": 5.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 4.0, \"y1\": 6.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 5.0, \"y1\": 7.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 6.0, \"y1\": 8.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 32.0, \"y1\": 34.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 33.0, \"y1\": 35.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 34.0, \"y1\": 36.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 35.0, \"y1\": 37.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 36.0, \"y1\": 38.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 37.0, \"y1\": 39.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 38.0, \"y1\": 40.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 39.0, \"y1\": 41.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 40.0, \"y1\": 42.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 41.0, \"y1\": 43.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 42.0, \"y1\": 44.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 43.0, \"y1\": 45.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 44.0, \"y1\": 46.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 45.0, \"y1\": 47.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 46.0, \"y1\": 48.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 47.0, \"y1\": 49.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 48.0, \"y1\": 50.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 49.0, \"y1\": 51.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 50.0, \"y1\": 52.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 51.0, \"y1\": 53.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 52.0, \"y1\": 54.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 53.0, \"y1\": 55.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 54.0, \"y1\": 56.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 55.0, \"y1\": 57.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 56.0, \"y1\": 58.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 57.0, \"y1\": 59.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 58.0, \"y1\": 60.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 59.0, \"y1\": 61.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 60.0, \"y1\": 62.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 61.0, \"y1\": 63.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 62.0, \"y1\": 64.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 63.0, \"y1\": 65.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 7.0, \"y1\": 9.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 8.0, \"y1\": 10.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 9.0, \"y1\": 11.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 10.0, \"y1\": 12.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 11.0, \"y1\": 13.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 12.0, \"y1\": 14.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 13.0, \"y1\": 15.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 14.0, \"y1\": 16.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 64.0, \"y1\": 66.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 65.0, \"y1\": 67.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 66.0, \"y1\": 68.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 67.0, \"y1\": 69.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 68.0, \"y1\": 70.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 69.0, \"y1\": 71.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 70.0, \"y1\": 72.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 71.0, \"y1\": 73.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 72.0, \"y1\": 74.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 73.0, \"y1\": 75.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 74.0, \"y1\": 76.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 75.0, \"y1\": 77.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 76.0, \"y1\": 78.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 77.0, \"y1\": 79.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 78.0, \"y1\": 80.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 79.0, \"y1\": 81.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 80.0, \"y1\": 82.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 81.0, \"y1\": 83.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 82.0, \"y1\": 84.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 83.0, \"y1\": 85.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 84.0, \"y1\": 86.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 85.0, \"y1\": 87.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 86.0, \"y1\": 88.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 87.0, \"y1\": 89.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 88.0, \"y1\": 90.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 89.0, \"y1\": 91.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 90.0, \"y1\": 92.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 91.0, \"y1\": 93.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 92.0, \"y1\": 94.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 93.0, \"y1\": 95.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 94.0, \"y1\": 96.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 95.0, \"y1\": 97.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 96.0, \"y1\": 98.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 97.0, \"y1\": 99.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 98.0, \"y1\": 100.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 99.0, \"y1\": 101.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 7.0, \"y0\": 15.0, \"y1\": 17.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 7.0, \"y0\": 16.0, \"y1\": 18.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 7.0, \"y0\": 17.0, \"y1\": 19.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 7.0, \"y0\": 18.0, \"y1\": 20.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 7.0, \"y0\": 19.0, \"y1\": 21.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 7.0, \"y0\": 20.0, \"y1\": 22.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 7.0, \"y0\": 21.0, \"y1\": 23.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 7.0, \"y0\": 22.0, \"y1\": 24.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 7.0, \"y0\": 23.0, \"y1\": 25.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 7.0, \"y0\": 24.0, \"y1\": 26.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 7.0, \"y0\": 25.0, \"y1\": 27.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 7.0, \"y0\": 26.0, \"y1\": 28.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 7.0, \"y0\": 27.0, \"y1\": 29.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 7.0, \"y0\": 28.0, \"y1\": 30.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 7.0, \"y0\": 29.0, \"y1\": 31.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 7.0, \"y0\": 30.0, \"y1\": 32.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 31.0, \"y1\": 33.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 32.0, \"y1\": 34.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 33.0, \"y1\": 35.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 34.0, \"y1\": 36.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 35.0, \"y1\": 37.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 36.0, \"y1\": 38.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 37.0, \"y1\": 39.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 38.0, \"y1\": 40.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 39.0, \"y1\": 41.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 40.0, \"y1\": 42.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 41.0, \"y1\": 43.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 42.0, \"y1\": 44.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 43.0, \"y1\": 45.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 44.0, \"y1\": 46.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 45.0, \"y1\": 47.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 46.0, \"y1\": 48.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 47.0, \"y1\": 49.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 48.0, \"y1\": 50.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 49.0, \"y1\": 51.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 50.0, \"y1\": 52.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 51.0, \"y1\": 53.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 52.0, \"y1\": 54.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 53.0, \"y1\": 55.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 54.0, \"y1\": 56.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 55.0, \"y1\": 57.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 56.0, \"y1\": 58.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 57.0, \"y1\": 59.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 58.0, \"y1\": 60.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 59.0, \"y1\": 61.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 60.0, \"y1\": 62.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 61.0, \"y1\": 63.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 62.0, \"y1\": 64.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 63.0, \"y1\": 65.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 64.0, \"y1\": 66.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 65.0, \"y1\": 67.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 66.0, \"y1\": 68.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 67.0, \"y1\": 69.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 68.0, \"y1\": 70.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 69.0, \"y1\": 71.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 70.0, \"y1\": 72.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 71.0, \"y1\": 73.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 72.0, \"y1\": 74.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 73.0, \"y1\": 75.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 74.0, \"y1\": 76.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 75.0, \"y1\": 77.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 76.0, \"y1\": 78.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 77.0, \"y1\": 79.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 78.0, \"y1\": 80.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 79.0, \"y1\": 81.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 80.0, \"y1\": 82.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 81.0, \"y1\": 83.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 82.0, \"y1\": 84.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 83.0, \"y1\": 85.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 84.0, \"y1\": 86.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 85.0, \"y1\": 87.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 86.0, \"y1\": 88.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 87.0, \"y1\": 89.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 88.0, \"y1\": 90.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 89.0, \"y1\": 91.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 90.0, \"y1\": 92.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 91.0, \"y1\": 93.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 92.0, \"y1\": 94.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 93.0, \"y1\": 95.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 94.0, \"y1\": 96.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 95.0, \"y1\": 97.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 96.0, \"y1\": 98.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 97.0, \"y1\": 99.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 98.0, \"y1\": 100.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 99.0, \"y1\": 101.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": -1.0, \"x1\": 3.0, \"y0\": 3.0, \"y1\": 7.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": -1.0, \"x1\": 3.0, \"y0\": 4.0, \"y1\": 8.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": -1.0, \"x1\": 3.0, \"y0\": 5.0, \"y1\": 9.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": -1.0, \"x1\": 3.0, \"y0\": 6.0, \"y1\": 10.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 0.0, \"x1\": 4.0, \"y0\": -1.0, \"y1\": 3.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 0.0, \"x1\": 4.0, \"y0\": 7.0, \"y1\": 11.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 0.0, \"x1\": 4.0, \"y0\": 8.0, \"y1\": 12.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 0.0, \"x1\": 4.0, \"y0\": 9.0, \"y1\": 13.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 0.0, \"x1\": 4.0, \"y0\": 10.0, \"y1\": 14.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 0.0, \"x1\": 4.0, \"y0\": 11.0, \"y1\": 15.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 0.0, \"x1\": 4.0, \"y0\": 12.0, \"y1\": 16.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 0.0, \"x1\": 4.0, \"y0\": 13.0, \"y1\": 17.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 0.0, \"x1\": 4.0, \"y0\": 14.0, \"y1\": 18.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 0.0, \"y1\": 4.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 1.0, \"y1\": 5.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 15.0, \"y1\": 19.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 16.0, \"y1\": 20.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 17.0, \"y1\": 21.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 18.0, \"y1\": 22.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 19.0, \"y1\": 23.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 20.0, \"y1\": 24.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 21.0, \"y1\": 25.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 22.0, \"y1\": 26.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 23.0, \"y1\": 27.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 24.0, \"y1\": 28.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 25.0, \"y1\": 29.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 26.0, \"y1\": 30.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 27.0, \"y1\": 31.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 28.0, \"y1\": 32.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 29.0, \"y1\": 33.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 30.0, \"y1\": 34.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 2.0, \"y1\": 6.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 3.0, \"y1\": 7.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 4.0, \"y1\": 8.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 5.0, \"y1\": 9.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 31.0, \"y1\": 35.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 32.0, \"y1\": 36.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 33.0, \"y1\": 37.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 34.0, \"y1\": 38.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 35.0, \"y1\": 39.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 36.0, \"y1\": 40.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 37.0, \"y1\": 41.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 38.0, \"y1\": 42.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 39.0, \"y1\": 43.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 40.0, \"y1\": 44.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 41.0, \"y1\": 45.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 42.0, \"y1\": 46.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 43.0, \"y1\": 47.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 44.0, \"y1\": 48.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 45.0, \"y1\": 49.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 46.0, \"y1\": 50.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 47.0, \"y1\": 51.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 48.0, \"y1\": 52.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 49.0, \"y1\": 53.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 50.0, \"y1\": 54.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 51.0, \"y1\": 55.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 52.0, \"y1\": 56.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 53.0, \"y1\": 57.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 54.0, \"y1\": 58.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 55.0, \"y1\": 59.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 56.0, \"y1\": 60.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 57.0, \"y1\": 61.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 58.0, \"y1\": 62.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 59.0, \"y1\": 63.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 60.0, \"y1\": 64.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 61.0, \"y1\": 65.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 62.0, \"y1\": 66.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 6.0, \"y1\": 10.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 7.0, \"y1\": 11.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 8.0, \"y1\": 12.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 9.0, \"y1\": 13.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 10.0, \"y1\": 14.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 11.0, \"y1\": 15.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 12.0, \"y1\": 16.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 13.0, \"y1\": 17.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 63.0, \"y1\": 67.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 64.0, \"y1\": 68.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 65.0, \"y1\": 69.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 66.0, \"y1\": 70.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 67.0, \"y1\": 71.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 68.0, \"y1\": 72.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 69.0, \"y1\": 73.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 70.0, \"y1\": 74.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 71.0, \"y1\": 75.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 72.0, \"y1\": 76.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 73.0, \"y1\": 77.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 74.0, \"y1\": 78.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 75.0, \"y1\": 79.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 76.0, \"y1\": 80.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 77.0, \"y1\": 81.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 78.0, \"y1\": 82.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 79.0, \"y1\": 83.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 80.0, \"y1\": 84.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 81.0, \"y1\": 85.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 82.0, \"y1\": 86.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 83.0, \"y1\": 87.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 84.0, \"y1\": 88.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 85.0, \"y1\": 89.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 86.0, \"y1\": 90.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 87.0, \"y1\": 91.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 88.0, \"y1\": 92.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 89.0, \"y1\": 93.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 90.0, \"y1\": 94.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 91.0, \"y1\": 95.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 92.0, \"y1\": 96.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 93.0, \"y1\": 97.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 94.0, \"y1\": 98.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 95.0, \"y1\": 99.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 96.0, \"y1\": 100.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 97.0, \"y1\": 101.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 98.0, \"y1\": 102.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 8.0, \"y0\": 14.0, \"y1\": 18.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 8.0, \"y0\": 15.0, \"y1\": 19.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 8.0, \"y0\": 16.0, \"y1\": 20.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 8.0, \"y0\": 17.0, \"y1\": 21.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 8.0, \"y0\": 18.0, \"y1\": 22.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 8.0, \"y0\": 19.0, \"y1\": 23.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 8.0, \"y0\": 20.0, \"y1\": 24.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 8.0, \"y0\": 21.0, \"y1\": 25.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 8.0, \"y0\": 22.0, \"y1\": 26.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 8.0, \"y0\": 23.0, \"y1\": 27.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 8.0, \"y0\": 24.0, \"y1\": 28.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 8.0, \"y0\": 25.0, \"y1\": 29.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 8.0, \"y0\": 26.0, \"y1\": 30.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 8.0, \"y0\": 27.0, \"y1\": 31.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 8.0, \"y0\": 28.0, \"y1\": 32.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 8.0, \"y0\": 29.0, \"y1\": 33.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 30.0, \"y1\": 34.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 31.0, \"y1\": 35.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 32.0, \"y1\": 36.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 33.0, \"y1\": 37.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 34.0, \"y1\": 38.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 35.0, \"y1\": 39.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 36.0, \"y1\": 40.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 37.0, \"y1\": 41.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 38.0, \"y1\": 42.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 39.0, \"y1\": 43.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 40.0, \"y1\": 44.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 41.0, \"y1\": 45.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 42.0, \"y1\": 46.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 43.0, \"y1\": 47.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 44.0, \"y1\": 48.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 45.0, \"y1\": 49.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 46.0, \"y1\": 50.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 47.0, \"y1\": 51.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 48.0, \"y1\": 52.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 49.0, \"y1\": 53.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 50.0, \"y1\": 54.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 51.0, \"y1\": 55.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 52.0, \"y1\": 56.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 53.0, \"y1\": 57.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 54.0, \"y1\": 58.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 55.0, \"y1\": 59.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 56.0, \"y1\": 60.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 57.0, \"y1\": 61.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 58.0, \"y1\": 62.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 59.0, \"y1\": 63.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 60.0, \"y1\": 64.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 61.0, \"y1\": 65.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 62.0, \"y1\": 66.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 63.0, \"y1\": 67.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 64.0, \"y1\": 68.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 65.0, \"y1\": 69.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 66.0, \"y1\": 70.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 67.0, \"y1\": 71.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 68.0, \"y1\": 72.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 69.0, \"y1\": 73.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 70.0, \"y1\": 74.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 71.0, \"y1\": 75.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 72.0, \"y1\": 76.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 73.0, \"y1\": 77.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 74.0, \"y1\": 78.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 75.0, \"y1\": 79.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 76.0, \"y1\": 80.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 77.0, \"y1\": 81.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 78.0, \"y1\": 82.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 79.0, \"y1\": 83.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 80.0, \"y1\": 84.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 81.0, \"y1\": 85.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 82.0, \"y1\": 86.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 83.0, \"y1\": 87.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 84.0, \"y1\": 88.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 85.0, \"y1\": 89.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 86.0, \"y1\": 90.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 87.0, \"y1\": 91.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 88.0, \"y1\": 92.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 89.0, \"y1\": 93.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 90.0, \"y1\": 94.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 91.0, \"y1\": 95.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 92.0, \"y1\": 96.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 93.0, \"y1\": 97.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 94.0, \"y1\": 98.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 95.0, \"y1\": 99.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 96.0, \"y1\": 100.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 97.0, \"y1\": 101.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 98.0, \"y1\": 102.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}]}, {\"showLink\": true, \"linkText\": \"Export to plot.ly\"})});</script>"
],
"text/vnd.plotly.v1+html": [
"<div id=\"31a74a81-1025-45a0-a2fe-aa86089f119c\" style=\"height: 3000px; width: 100%;\" class=\"plotly-graph-div\"></div><script type=\"text/javascript\">require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {};window.PLOTLYENV.BASE_URL=\"https://plot.ly\";Plotly.newPlot(\"31a74a81-1025-45a0-a2fe-aa86089f119c\", [{\"type\": \"scatter\", \"x\": [-1.0, -0.9396984924623115, -0.8793969849246231, -0.8190954773869347, -0.7587939698492463, -0.6984924623115578, -0.6381909547738693, -0.5778894472361809, -0.5175879396984925, -0.457286432160804, -0.39698492462311563, -0.33668341708542715, -0.27638190954773867, -0.2160804020100503, -0.15577889447236182, -0.09547738693467345, -0.035175879396984966, 0.025125628140703515, 0.085427135678392, 0.14572864321608026, 0.20603015075376874, 0.2663316582914572, 0.3266331658291457, 0.3869346733668342, 0.44723618090452266, 0.5075376884422109, 0.5678391959798994, 0.6281407035175879, 0.6884422110552764, 0.7487437185929648, 0.8090452261306531, 0.8693467336683416, 0.9296482412060301, 0.9899497487437185, 1.050251256281407, 1.1105527638190953, 1.170854271356784, 1.2311557788944723, 1.2914572864321605, 1.3517587939698492, 1.4120603015075375, 1.4723618090452262, 1.5326633165829144, 1.5929648241206027, 1.6532663316582914, 1.7135678391959797, 1.7738693467336684, 1.8341708542713566, 1.8944723618090453, 1.9547738693467336, 2.015075376884422, 2.0753768844221105, 2.135678391959799, 2.1959798994974875, 2.2562814070351758, 2.316582914572864, 2.3768844221105527, 2.437185929648241, 2.4974874371859297, 2.557788944723618, 2.618090452261306, 2.678391959798995, 2.738693467336683, 2.798994974874372, 2.85929648241206, 2.9195979899497484, 2.979899497487437, 3.040201005025126, 3.100502512562814, 3.1608040201005023, 3.2211055276381906, 3.281407035175879, 3.341708542713568, 3.4020100502512562, 3.4623115577889445, 3.5226130653266328, 3.582914572864321, 3.64321608040201, 3.7035175879396984, 3.7638190954773867, 3.824120603015075, 3.884422110552763, 3.9447236180904524, 4.005025125628141, 4.065326633165829, 4.125628140703517, 4.185929648241205, 4.2462311557788945, 4.306532663316583, 4.366834170854271, 4.427135678391959, 4.487437185929648, 4.547738693467337, 4.608040201005025, 4.668341708542713, 4.7286432160804015, 4.788944723618091, 4.849246231155779, 4.909547738693467, 4.969849246231155, 5.030150753768844, 5.090452261306533, 5.150753768844221, 5.211055276381909, 5.271356783919598, 5.331658291457286, 5.391959798994975, 5.452261306532663, 5.5125628140703515, 5.57286432160804, 5.633165829145728, 5.693467336683417, 5.7537688442211055, 5.814070351758794, 5.874371859296482, 5.93467336683417, 5.994974874371859, 6.055276381909548, 6.115577889447236, 6.175879396984924, 6.236180904522612, 6.296482412060302, 6.35678391959799, 6.417085427135678, 6.477386934673366, 6.537688442211055, 6.597989949748744, 6.658291457286432, 6.71859296482412, 6.7788944723618085, 6.839195979899497, 6.899497487437186, 6.959798994974874, 7.0201005025125625, 7.080402010050252, 7.140703517587939, 7.201005025125628, 7.2613065326633155, 7.321608040201005, 7.381909547738694, 7.442211055276381, 7.50251256281407, 7.562814070351758, 7.623115577889447, 7.683417085427136, 7.743718592964823, 7.8040201005025125, 7.8643216080402, 7.924623115577889, 7.984924623115578, 8.045226130653266, 8.105527638190955, 8.165829145728642, 8.226130653266331, 8.28643216080402, 8.346733668341708, 8.407035175879397, 8.467336683417084, 8.527638190954773, 8.587939698492463, 8.64824120603015, 8.708542713567839, 8.768844221105526, 8.829145728643216, 8.889447236180905, 8.949748743718592, 9.010050251256281, 9.070351758793969, 9.130653266331658, 9.190954773869347, 9.251256281407034, 9.311557788944723, 9.37185929648241, 9.4321608040201, 9.492462311557789, 9.552763819095476, 9.613065326633166, 9.673366834170853, 9.733668341708542, 9.793969849246231, 9.854271356783919, 9.914572864321608, 9.974874371859295, 10.035175879396984, 10.095477386934673, 10.15577889447236, 10.21608040201005, 10.276381909547737, 10.336683417085426, 10.396984924623116, 10.457286432160803, 10.517587939698492, 10.577889447236181, 10.638190954773869, 10.698492462311558, 10.758793969849245, 10.819095477386934, 10.879396984924623, 10.93969849246231, 11.0], \"y\": [0.5, 0.5213418237945486, 0.5435945944748523, 0.566797194576755, 0.5909901662845581, 0.6162157822708701, 0.6425181195601598, 0.6699431365450751, 0.6985387532900994, 0.7283549352628613, 0.7594437806394009, 0.7918596113359446, 0.8256590679262475, 0.8609012086103539, 0.8976476124077061, 0.935962486754911, 0.9759127796961726, 1.0175682968624202, 1.0610018234435337, 1.1062892513667868, 1.1535097119037327, 1.2027457139372328, 1.2540832881302266, 1.3076121372481535, 1.3634257928976798, 1.4216217789556096, 1.4823017819735362, 1.5455718288559854, 1.6115424721225107, 1.6803289830774504, 1.752051553224874, 1.8268355042806548, 1.904811507148621, 1.9861158102434096, 2.0708904775589736, 2.1592836368987176, 2.2514497387010066, 2.347549825912285, 2.447751815379371, 2.5522307912525974, 2.6611693109124657, 2.774757723954374, 2.8931945047887675, 3.0166865994378833, 3.145449787135042, 3.2797090573583145, 3.4196990029573677, 3.5656642300603862, 3.7178597854773336, 3.876551602346324, 4.042016964801824, 4.214544992476577, 4.394437145683842, 4.582007752162649, 4.77758455630647, 4.981509291834969, 5.194138278909466, 5.415843046735477, 5.647010982740197, 5.88804600945924, 6.139369290315386, 6.4014199655225354, 6.674655919400709, 6.959554580442891, 7.256613755531601, 7.566352499762906, 7.889312023397671, 8.226056637524806, 8.577174740088866, 8.943279844004925, 9.325011649157105, 9.723037160153952, 10.138051851793664, 10.570780884275617, 11.0219803702816, 11.492438696140646, 11.982977899386015, 12.494455105111351, 13.027764023635719, 13.583836512094502, 14.163644202684653, 14.768200200409401, 15.398560853288917, 16.055827598129966, 16.741148885079845, 17.455722184327197, 18.2007960784562, 18.977672444110055, 19.787708726775765, 20.63232031266516, 21.51298300183633, 22.431235586876948, 23.38868254165523, 24.386996824836505, 25.427922803064256, 26.513279298913012, 27.644962768939134, 28.82495061738224, 30.055304651307708, 31.338174683227074, 32.6758022874915, 34.07052471702182, 35.524778987218795, 37.0411061341898, 38.6221556547319, 40.270690135829724, 41.98959008175723, 43.7818589472176, 45.65062838531619, 47.59916371953585, 49.630869649276256, 51.7492961989264, 53.95814492086517, 56.26127536322881, 58.662711813746014, 61.166650331424705, 63.777466078376804, 66.49972096459183, 69.33817161901774, 72.29777770087622, 75.38371056573531, 78.60136230148169, 81.95635514998106, 85.45455133088974, 89.10206328478183, 92.90526435349088, 96.87079991632724, 101.00559900162968, 105.31688639394089, 109.81219525796082, 114.49938030133674, 119.38663149928907, 124.48248840505411, 129.7958550711493, 135.33601560753183, 141.11265040383614, 147.13585304403705, 153.41614794308978, 159.9645087363695, 166.79237745403583, 173.91168451383143, 181.33486956724613, 189.07490323546924, 197.14530977311475, 205.56019069931386, 214.33424943747082, 223.48281700673357, 233.0218788100675, 242.96810256574582, 253.33886743105387, 264.15229436910175, 275.4272778118041, 287.1835186743473, 299.44155877884015, 312.22281674728623, 325.5496254266024, 339.44527091107426, 353.93403323042793, 369.04122877462345, 384.79325452948706, 401.2176342004851, 418.34306630523014, 436.19947431874454, 454.8180589591155, 474.2313527048838, 494.4732766394395, 515.5791997217437, 537.586000586935, 560.5321319848202, 584.4576879688258, 609.4044739528252, 635.4160797582471, 662.5379557790932, 690.8174923979692, 720.3041027918682, 751.0493092724166, 783.1068333114356, 816.5326894091141, 851.3852829688309, 887.7255123496167, 925.6168752745978, 965.1255797813404, 1006.3206599079494, 1049.2740963170886, 1094.060942068656, 1140.7594537609093, 1189.4512282691717, 1240.2213453210306, 1293.1585161571902, 1348.355238537684, 1405.9079583643386, 1465.9172382018698, 1528.4879329920618, 1593.7293732680812, 1661.7555561890495, 1732.6853447286458, 1806.6426753658372, 1883.7567746405773, 1964.1623849529085, 2048.0]}], {\"height\": 3000, \"xaxis\": {\"range\": [-1, 11]}, \"yaxis\": {\"scaleanchor\": \"x\", \"range\": [-1, 101]}, \"shapes\": [{\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 0.0, \"x1\": 2.0, \"y0\": 4.0, \"y1\": 6.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 0.0, \"x1\": 2.0, \"y0\": 5.0, \"y1\": 7.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 0.0, \"x1\": 2.0, \"y0\": 6.0, \"y1\": 8.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 0.0, \"x1\": 2.0, \"y0\": 7.0, \"y1\": 9.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 3.0, \"y0\": 0.0, \"y1\": 2.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 3.0, \"y0\": 8.0, \"y1\": 10.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 3.0, \"y0\": 9.0, \"y1\": 11.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 3.0, \"y0\": 10.0, \"y1\": 12.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 3.0, \"y0\": 11.0, \"y1\": 13.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 3.0, \"y0\": 12.0, \"y1\": 14.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 3.0, \"y0\": 13.0, \"y1\": 15.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 3.0, \"y0\": 14.0, \"y1\": 16.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 3.0, \"y0\": 15.0, \"y1\": 17.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 1.0, \"y1\": 3.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 2.0, \"y1\": 4.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 16.0, \"y1\": 18.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 17.0, \"y1\": 19.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 18.0, \"y1\": 20.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 19.0, \"y1\": 21.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 20.0, \"y1\": 22.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 21.0, \"y1\": 23.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 22.0, \"y1\": 24.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 23.0, \"y1\": 25.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 24.0, \"y1\": 26.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 25.0, \"y1\": 27.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 26.0, \"y1\": 28.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 27.0, \"y1\": 29.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 28.0, \"y1\": 30.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 29.0, \"y1\": 31.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 30.0, \"y1\": 32.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 4.0, \"y0\": 31.0, \"y1\": 33.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 3.0, \"y1\": 5.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 4.0, \"y1\": 6.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 5.0, \"y1\": 7.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 6.0, \"y1\": 8.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 32.0, \"y1\": 34.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 33.0, \"y1\": 35.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 34.0, \"y1\": 36.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 35.0, \"y1\": 37.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 36.0, \"y1\": 38.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 37.0, \"y1\": 39.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 38.0, \"y1\": 40.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 39.0, \"y1\": 41.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 40.0, \"y1\": 42.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 41.0, \"y1\": 43.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 42.0, \"y1\": 44.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 43.0, \"y1\": 45.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 44.0, \"y1\": 46.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 45.0, \"y1\": 47.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 46.0, \"y1\": 48.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 47.0, \"y1\": 49.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 48.0, \"y1\": 50.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 49.0, \"y1\": 51.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 50.0, \"y1\": 52.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 51.0, \"y1\": 53.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 52.0, \"y1\": 54.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 53.0, \"y1\": 55.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 54.0, \"y1\": 56.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 55.0, \"y1\": 57.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 56.0, \"y1\": 58.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 57.0, \"y1\": 59.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 58.0, \"y1\": 60.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 59.0, \"y1\": 61.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 60.0, \"y1\": 62.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 61.0, \"y1\": 63.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 62.0, \"y1\": 64.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 5.0, \"y0\": 63.0, \"y1\": 65.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 7.0, \"y1\": 9.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 8.0, \"y1\": 10.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 9.0, \"y1\": 11.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 10.0, \"y1\": 12.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 11.0, \"y1\": 13.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 12.0, \"y1\": 14.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 13.0, \"y1\": 15.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 14.0, \"y1\": 16.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 64.0, \"y1\": 66.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 65.0, \"y1\": 67.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 66.0, \"y1\": 68.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 67.0, \"y1\": 69.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 68.0, \"y1\": 70.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 69.0, \"y1\": 71.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 70.0, \"y1\": 72.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 71.0, \"y1\": 73.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 72.0, \"y1\": 74.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 73.0, \"y1\": 75.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 74.0, \"y1\": 76.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 75.0, \"y1\": 77.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 76.0, \"y1\": 78.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 77.0, \"y1\": 79.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 78.0, \"y1\": 80.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 79.0, \"y1\": 81.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 80.0, \"y1\": 82.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 81.0, \"y1\": 83.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 82.0, \"y1\": 84.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 83.0, \"y1\": 85.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 84.0, \"y1\": 86.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 85.0, \"y1\": 87.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 86.0, \"y1\": 88.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 87.0, \"y1\": 89.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 88.0, \"y1\": 90.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 89.0, \"y1\": 91.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 90.0, \"y1\": 92.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 91.0, \"y1\": 93.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 92.0, \"y1\": 94.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 93.0, \"y1\": 95.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 94.0, \"y1\": 96.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 95.0, \"y1\": 97.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 96.0, \"y1\": 98.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 97.0, \"y1\": 99.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 98.0, \"y1\": 100.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 6.0, \"y0\": 99.0, \"y1\": 101.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 7.0, \"y0\": 15.0, \"y1\": 17.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 7.0, \"y0\": 16.0, \"y1\": 18.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 7.0, \"y0\": 17.0, \"y1\": 19.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 7.0, \"y0\": 18.0, \"y1\": 20.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 7.0, \"y0\": 19.0, \"y1\": 21.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 7.0, \"y0\": 20.0, \"y1\": 22.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 7.0, \"y0\": 21.0, \"y1\": 23.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 7.0, \"y0\": 22.0, \"y1\": 24.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 7.0, \"y0\": 23.0, \"y1\": 25.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 7.0, \"y0\": 24.0, \"y1\": 26.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 7.0, \"y0\": 25.0, \"y1\": 27.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 7.0, \"y0\": 26.0, \"y1\": 28.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 7.0, \"y0\": 27.0, \"y1\": 29.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 7.0, \"y0\": 28.0, \"y1\": 30.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 7.0, \"y0\": 29.0, \"y1\": 31.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 7.0, \"y0\": 30.0, \"y1\": 32.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 31.0, \"y1\": 33.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 32.0, \"y1\": 34.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 33.0, \"y1\": 35.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 34.0, \"y1\": 36.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 35.0, \"y1\": 37.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 36.0, \"y1\": 38.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 37.0, \"y1\": 39.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 38.0, \"y1\": 40.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 39.0, \"y1\": 41.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 40.0, \"y1\": 42.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 41.0, \"y1\": 43.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 42.0, \"y1\": 44.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 43.0, \"y1\": 45.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 44.0, \"y1\": 46.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 45.0, \"y1\": 47.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 46.0, \"y1\": 48.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 47.0, \"y1\": 49.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 48.0, \"y1\": 50.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 49.0, \"y1\": 51.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 50.0, \"y1\": 52.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 51.0, \"y1\": 53.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 52.0, \"y1\": 54.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 53.0, \"y1\": 55.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 54.0, \"y1\": 56.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 55.0, \"y1\": 57.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 56.0, \"y1\": 58.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 57.0, \"y1\": 59.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 58.0, \"y1\": 60.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 59.0, \"y1\": 61.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 60.0, \"y1\": 62.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 61.0, \"y1\": 63.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 8.0, \"y0\": 62.0, \"y1\": 64.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 63.0, \"y1\": 65.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 64.0, \"y1\": 66.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 65.0, \"y1\": 67.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 66.0, \"y1\": 68.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 67.0, \"y1\": 69.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 68.0, \"y1\": 70.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 69.0, \"y1\": 71.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 70.0, \"y1\": 72.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 71.0, \"y1\": 73.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 72.0, \"y1\": 74.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 73.0, \"y1\": 75.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 74.0, \"y1\": 76.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 75.0, \"y1\": 77.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 76.0, \"y1\": 78.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 77.0, \"y1\": 79.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 78.0, \"y1\": 80.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 79.0, \"y1\": 81.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 80.0, \"y1\": 82.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 81.0, \"y1\": 83.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 82.0, \"y1\": 84.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 83.0, \"y1\": 85.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 84.0, \"y1\": 86.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 85.0, \"y1\": 87.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 86.0, \"y1\": 88.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 87.0, \"y1\": 89.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 88.0, \"y1\": 90.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 89.0, \"y1\": 91.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 90.0, \"y1\": 92.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 91.0, \"y1\": 93.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 92.0, \"y1\": 94.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 93.0, \"y1\": 95.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 94.0, \"y1\": 96.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 95.0, \"y1\": 97.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 96.0, \"y1\": 98.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 97.0, \"y1\": 99.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 98.0, \"y1\": 100.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 7.0, \"x1\": 9.0, \"y0\": 99.0, \"y1\": 101.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": -1.0, \"x1\": 3.0, \"y0\": 3.0, \"y1\": 7.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": -1.0, \"x1\": 3.0, \"y0\": 4.0, \"y1\": 8.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": -1.0, \"x1\": 3.0, \"y0\": 5.0, \"y1\": 9.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": -1.0, \"x1\": 3.0, \"y0\": 6.0, \"y1\": 10.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 0.0, \"x1\": 4.0, \"y0\": -1.0, \"y1\": 3.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 0.0, \"x1\": 4.0, \"y0\": 7.0, \"y1\": 11.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 0.0, \"x1\": 4.0, \"y0\": 8.0, \"y1\": 12.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 0.0, \"x1\": 4.0, \"y0\": 9.0, \"y1\": 13.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 0.0, \"x1\": 4.0, \"y0\": 10.0, \"y1\": 14.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 0.0, \"x1\": 4.0, \"y0\": 11.0, \"y1\": 15.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 0.0, \"x1\": 4.0, \"y0\": 12.0, \"y1\": 16.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 0.0, \"x1\": 4.0, \"y0\": 13.0, \"y1\": 17.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 0.0, \"x1\": 4.0, \"y0\": 14.0, \"y1\": 18.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 0.0, \"y1\": 4.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 1.0, \"y1\": 5.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 15.0, \"y1\": 19.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 16.0, \"y1\": 20.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 17.0, \"y1\": 21.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 18.0, \"y1\": 22.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 19.0, \"y1\": 23.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 20.0, \"y1\": 24.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 21.0, \"y1\": 25.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 22.0, \"y1\": 26.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 23.0, \"y1\": 27.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 24.0, \"y1\": 28.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 25.0, \"y1\": 29.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 26.0, \"y1\": 30.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 27.0, \"y1\": 31.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 28.0, \"y1\": 32.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 29.0, \"y1\": 33.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 1.0, \"x1\": 5.0, \"y0\": 30.0, \"y1\": 34.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 2.0, \"y1\": 6.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 3.0, \"y1\": 7.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 4.0, \"y1\": 8.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 5.0, \"y1\": 9.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 31.0, \"y1\": 35.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 32.0, \"y1\": 36.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 33.0, \"y1\": 37.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 34.0, \"y1\": 38.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 35.0, \"y1\": 39.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 36.0, \"y1\": 40.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 37.0, \"y1\": 41.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 38.0, \"y1\": 42.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 39.0, \"y1\": 43.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 40.0, \"y1\": 44.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 41.0, \"y1\": 45.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 42.0, \"y1\": 46.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 43.0, \"y1\": 47.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 44.0, \"y1\": 48.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 45.0, \"y1\": 49.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 46.0, \"y1\": 50.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 47.0, \"y1\": 51.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 48.0, \"y1\": 52.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 49.0, \"y1\": 53.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 50.0, \"y1\": 54.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 51.0, \"y1\": 55.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 52.0, \"y1\": 56.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 53.0, \"y1\": 57.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 54.0, \"y1\": 58.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 55.0, \"y1\": 59.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 56.0, \"y1\": 60.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 57.0, \"y1\": 61.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 58.0, \"y1\": 62.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 59.0, \"y1\": 63.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 60.0, \"y1\": 64.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 61.0, \"y1\": 65.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 2.0, \"x1\": 6.0, \"y0\": 62.0, \"y1\": 66.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 6.0, \"y1\": 10.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 7.0, \"y1\": 11.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 8.0, \"y1\": 12.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 9.0, \"y1\": 13.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 10.0, \"y1\": 14.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 11.0, \"y1\": 15.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 12.0, \"y1\": 16.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 13.0, \"y1\": 17.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 63.0, \"y1\": 67.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 64.0, \"y1\": 68.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 65.0, \"y1\": 69.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 66.0, \"y1\": 70.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 67.0, \"y1\": 71.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 68.0, \"y1\": 72.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 69.0, \"y1\": 73.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 70.0, \"y1\": 74.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 71.0, \"y1\": 75.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 72.0, \"y1\": 76.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 73.0, \"y1\": 77.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 74.0, \"y1\": 78.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 75.0, \"y1\": 79.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 76.0, \"y1\": 80.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 77.0, \"y1\": 81.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 78.0, \"y1\": 82.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 79.0, \"y1\": 83.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 80.0, \"y1\": 84.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 81.0, \"y1\": 85.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 82.0, \"y1\": 86.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 83.0, \"y1\": 87.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 84.0, \"y1\": 88.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 85.0, \"y1\": 89.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 86.0, \"y1\": 90.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 87.0, \"y1\": 91.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 88.0, \"y1\": 92.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 89.0, \"y1\": 93.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 90.0, \"y1\": 94.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 91.0, \"y1\": 95.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 92.0, \"y1\": 96.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 93.0, \"y1\": 97.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 94.0, \"y1\": 98.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 95.0, \"y1\": 99.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 96.0, \"y1\": 100.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 97.0, \"y1\": 101.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 3.0, \"x1\": 7.0, \"y0\": 98.0, \"y1\": 102.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 8.0, \"y0\": 14.0, \"y1\": 18.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 8.0, \"y0\": 15.0, \"y1\": 19.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 8.0, \"y0\": 16.0, \"y1\": 20.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 8.0, \"y0\": 17.0, \"y1\": 21.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 8.0, \"y0\": 18.0, \"y1\": 22.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 8.0, \"y0\": 19.0, \"y1\": 23.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 8.0, \"y0\": 20.0, \"y1\": 24.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 8.0, \"y0\": 21.0, \"y1\": 25.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 8.0, \"y0\": 22.0, \"y1\": 26.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 8.0, \"y0\": 23.0, \"y1\": 27.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 8.0, \"y0\": 24.0, \"y1\": 28.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 8.0, \"y0\": 25.0, \"y1\": 29.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 8.0, \"y0\": 26.0, \"y1\": 30.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 8.0, \"y0\": 27.0, \"y1\": 31.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 8.0, \"y0\": 28.0, \"y1\": 32.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 4.0, \"x1\": 8.0, \"y0\": 29.0, \"y1\": 33.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 30.0, \"y1\": 34.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 31.0, \"y1\": 35.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 32.0, \"y1\": 36.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 33.0, \"y1\": 37.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 34.0, \"y1\": 38.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 35.0, \"y1\": 39.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 36.0, \"y1\": 40.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 37.0, \"y1\": 41.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 38.0, \"y1\": 42.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 39.0, \"y1\": 43.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 40.0, \"y1\": 44.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 41.0, \"y1\": 45.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 42.0, \"y1\": 46.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 43.0, \"y1\": 47.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 44.0, \"y1\": 48.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 45.0, \"y1\": 49.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 46.0, \"y1\": 50.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 47.0, \"y1\": 51.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 48.0, \"y1\": 52.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 49.0, \"y1\": 53.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 50.0, \"y1\": 54.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 51.0, \"y1\": 55.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 52.0, \"y1\": 56.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 53.0, \"y1\": 57.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 54.0, \"y1\": 58.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 55.0, \"y1\": 59.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 56.0, \"y1\": 60.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 57.0, \"y1\": 61.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 58.0, \"y1\": 62.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 59.0, \"y1\": 63.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 60.0, \"y1\": 64.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 5.0, \"x1\": 9.0, \"y0\": 61.0, \"y1\": 65.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 62.0, \"y1\": 66.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 63.0, \"y1\": 67.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 64.0, \"y1\": 68.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 65.0, \"y1\": 69.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 66.0, \"y1\": 70.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 67.0, \"y1\": 71.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 68.0, \"y1\": 72.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 69.0, \"y1\": 73.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 70.0, \"y1\": 74.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 71.0, \"y1\": 75.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 72.0, \"y1\": 76.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 73.0, \"y1\": 77.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 74.0, \"y1\": 78.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 75.0, \"y1\": 79.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 76.0, \"y1\": 80.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 77.0, \"y1\": 81.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 78.0, \"y1\": 82.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 79.0, \"y1\": 83.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 80.0, \"y1\": 84.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 81.0, \"y1\": 85.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 82.0, \"y1\": 86.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 83.0, \"y1\": 87.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 84.0, \"y1\": 88.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 85.0, \"y1\": 89.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 86.0, \"y1\": 90.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 87.0, \"y1\": 91.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 88.0, \"y1\": 92.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 89.0, \"y1\": 93.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 90.0, \"y1\": 94.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 91.0, \"y1\": 95.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 92.0, \"y1\": 96.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 93.0, \"y1\": 97.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 94.0, \"y1\": 98.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 95.0, \"y1\": 99.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 96.0, \"y1\": 100.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 97.0, \"y1\": 101.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}, {\"type\": \"circle\", \"xref\": \"x\", \"yref\": \"y\", \"x0\": 6.0, \"x1\": 10.0, \"y0\": 98.0, \"y1\": 102.0, \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}}]}, {\"showLink\": true, \"linkText\": \"Export to plot.ly\"})});</script>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"# Plot them\n",
"import plotly.offline as py\n",
"import plotly.graph_objs as go\n",
"import numpy as np\n",
"\n",
"circle_r1 = [{\n",
" \"type\": \"circle\",\n",
" \"xref\": \"x\",\n",
" \"yref\": \"y\",\n",
" \"x0\": px - 1.0,\n",
" \"x1\": px + 1.0,\n",
" \"y0\": py - 1.0,\n",
" \"y1\": py + 1.0,\n",
" \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}\n",
"} for px, py in points]\n",
"\n",
"circle_r2 = [{\n",
" \"type\": \"circle\",\n",
" \"xref\": \"x\",\n",
" \"yref\": \"y\",\n",
" \"x0\": px - 2.0,\n",
" \"x1\": px + 2.0,\n",
" \"y0\": py - 2.0,\n",
" \"y1\": py + 2.0,\n",
" \"line\": {\"color\": \"rgba(50, 171, 96, 0.3)\"}\n",
"} for px, py in points]\n",
"\n",
"curve_x = np.linspace(-1, 11, 200)\n",
"curve_y = np.power(2, curve_x)\n",
"\n",
"data = [go.Scatter(x=curve_x, y=curve_y)]\n",
"layout = {\n",
" \"height\": 3000,\n",
" \"xaxis\": {\n",
" \"range\": [-1, 11]\n",
" },\n",
" \"yaxis\": {\n",
" \"scaleanchor\": \"x\",\n",
" \"range\": [-1, 101]\n",
" },\n",
" \"shapes\": [\n",
" *circle_r1,\n",
" *circle_r2\n",
" ]\n",
"}\n",
"\n",
"py.iplot({\n",
" \"data\": data,\n",
" \"layout\": layout\n",
"}, filename=\"result\")"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.1"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment