-
Notifications
You must be signed in to change notification settings - Fork 0
/
portafolio-00.html
1176 lines (1036 loc) · 274 KB
/
portafolio-00.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html class="no-js" lang="es-es">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Portafolio - BrokerPanda - Investing Club</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.0/css/all.css" integrity="sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt" crossorigin="anonymous">
<link rel="stylesheet" href="plugins/slick/slick.css">
<link rel="stylesheet" href="plugins/slick/slick-theme.css">
<link rel="stylesheet" href="css/theme.min.css">
<script src="js/vendor/modernizr-2.8.3-respond-1.4.2.min.js"></script>
</head>
<body class="page-dashboard bg-color_porcelain bg-shape-logo-light-gray">
<nav class="navbar navbar-expand-lg">
<a class="navbar-brand" href="index.html"><span class="sr-only">Broker Panda - Investing Club</span></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault" aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon">
</span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarsExampleDefault">
<div class="form-inline">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="dashboard.html">Dashboard</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="portafolio.html">Portafólio <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="panda-academy.html">PandaAcademy</a>
</li>
</ul>
<div class="dropdown">
<a class="nav-link btn btn-outline dropdown-toggle" href="http://example.com" id="dropdown01" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="fas fa-users-cog"></i></a>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdown01">
<a class="dropdown-item" href="mi-cuenta.html">Mi cuenta</a>
<a class="dropdown-item" href="index.html">Salir</a>
</div>
</div>
</div>
</div>
</nav>
<section class="section-app padding-regular">
<div class="wrapper">
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<h1 class="title-page">Portafolio</h1>
</div>
</div>
<div class="row">
<div class="col-md-12" id="markets">
<h4>Mercados</h4>
<div class="markets-slider">
<div>
<a href="#" class="btn btn-primary btn-large">IBEX 35</a>
</div>
<div>
<a href="#" class="btn btn-outline btn-large">AEX</a>
</div>
<div>
<a href="#" class="btn btn-outline btn-large">CAC</a>
</div>
<div>
<a href="#" class="btn btn-outline btn-locked btn-large">DAX</a>
</div>
<div>
<a href="#" class="btn btn-outline btn-locked btn-large">MIB</a>
</div>
<div>
<a href="#" class="btn btn-outline btn-locked btn-large">SMI</a>
</div>
<div>
<a href="#" class="btn btn-outline btn-locked btn-large">FTSE 100</a>
</div>
<div>
<a href="#" class="btn btn-outline btn-locked btn-large">Russia</a>
</div>
<div>
<a href="#" class="btn btn-outline btn-locked btn-large">NASDAQ</a>
</div>
<div>
<a href="#" class="btn btn-outline btn-locked btn-large">Dow Jones</a>
</div>
<div>
<a href="#" class="btn btn-outline btn-locked btn-large">SP500</a>
</div>
<div>
<a href="#" class="btn btn-outline btn-locked btn-large">BOVESPA</a>
</div>
<div>
<a href="#" class="btn btn-outline btn-locked btn-large">MERIVAL</a>
</div>
<div>
<a href="#" class="btn btn-outline btn-locked btn-large">MMX</a>
</div>
<div>
<a href="#" class="btn btn-outline btn-locked btn-large">IPSA</a>
</div>
<div>
<a href="#" class="btn btn-outline btn-locked btn-locked btn-large">Australia</a>
</div>
<div>
<a href="#" class="btn btn-outline btn-locked btn-large">Hangseng</a>
</div>
<div>
<a href="#" class="btn btn-outline btn-locked btn-large">BBSE-India</a>
</div>
<div>
<a href="#" class="btn btn-outline btn-locked btn-large">Jakarta</a>
</div>
<div>
<a href="#" class="btn btn-outline btn-locked btn-large">Malaysia</a>
</div>
<div>
<a href="#" class="btn btn-outline btn-locked btn-large">Singapore</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="card card-white card-portafolio">
<div class="card-body">
<div class="card-header">
Selección BrokerPanda <small>IBEX35</small>
<!--
<div class="btn-group float-right">
<button type="button" class="btn btn-gray dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Mercado: <span class="selected-market">IBEX35</span>
</button>
<div class="dropdown-menu dropdown-menu-right">
<a class="dropdown-item" href="#">IBEX35</a>
<a class="dropdown-item disabled" href="#">NASDAQ</a>
<a class="dropdown-item disabled" href="#">Dow Jones</a>
<a class="dropdown-item disabled" href="#">EURONEXT</a>
<a class="dropdown-item disabled" href="#">Shanghai Stock Exchange</a>
<a class="dropdown-item disabled" href="#">JPX</a>
<a class="dropdown-item disabled" href="#">FTSE 100 Component</a>
<a class="dropdown-item disabled" href="#">SEHK</a>
</div>
</div>
-->
</div>
<p>Potencialize ganancias con nuestra selección.</p>
<div class="table-responsive">
<table class="table table-hover table-portafolio">
<tbody>
<tr>
<th width="32" scope="row">01</th>
<td>INDITEX</td>
<td>IBEX</td>
<td><span class="tint-value">-0.71</span></td>
<td><span class="badge badge-danger">Vender</span></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr>
<th scope="row">02</th>
<td>Banco Santander</td>
<td>IBEX</td>
<td><span class="tint-value">+0.39</span></td>
<td><span class="badge badge-success">Comprar</span></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr>
<th scope="row">03</th>
<td>AENA</td>
<td>IBEX</td>
<td><span class="tint-value">+0.35</span></td>
<td><span class="badge badge-success">Comprar</span></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr>
<th scope="row">04</th>
<td>INDITEX</td>
<td>IBEX</td>
<td><span class="tint-value">-0.10</span></td>
<td><span class="badge badge-success">Comprar</span></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr>
<th scope="row">05</th>
<td>BBVA</td>
<td>IBEX</td>
<td><span class="tint-value">+0.32</span></td>
<td><span class="badge badge-info">No actuar</span></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr>
<th scope="row">06</th>
<td>Gas Natural Fenosa</td>
<td>IBEX</td>
<td><span class="tint-value">+1.76</span></td>
<td><span class="badge badge-info">No actuar</span></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr>
<th scope="row">07</th>
<td>ArcelorMittal</td>
<td>IBEX</td>
<td><span class="tint-value">+1.92</span></td>
<td><span class="badge badge-danger">Vender</span></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr>
<th scope="row">08</th>
<td>MAPFRE</td>
<td>IBEX</td>
<td><span class="tint-value">-0.78</span></td>
<td><span class="badge badge-info">No actuar</span></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr>
<th scope="row">09</th>
<td>Endesa</td>
<td>IBEX</td>
<td><span class="tint-value">-0.21</span></td>
<td><span class="badge badge-danger">Vender</span></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr>
<th scope="row">10</th>
<td>Meliá Hotels Internacional</td>
<td>IBEX</td>
<td><span class="tint-value">-2.45</span></td>
<td><span class="badge badge-success">Comprar</span></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr class="no-signal">
<th scope="row">-</th>
<td>Abertis</td>
<td>IBEX</td>
<td><span class="tint-value">-2.45</span></td>
<td></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr class="no-signal">
<th scope="row">-</th>
<td>Acciona</td>
<td>IBEX</td>
<td><span class="tint-value">-2.45</span></td>
<td></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr class="no-signal">
<th scope="row">-</th>
<td>Acerinox</td>
<td>IBEX</td>
<td><span class="tint-value">-2.45</span></td>
<td></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr class="no-signal">
<th scope="row">-</th>
<td>ACS</td>
<td>IBEX</td>
<td><span class="tint-value">-2.45</span></td>
<td></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr class="no-signal">
<th scope="row">-</th>
<td>Amadeus IT Holdin</td>
<td>IBEX</td>
<td><span class="tint-value">-2.45</span></td>
<td></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr class="no-signal">
<th scope="row">-</th>
<td>Inmobiliaria Colonial</td>
<td>IBEX</td>
<td><span class="tint-value">-2.45</span></td>
<td></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr class="no-signal">
<th scope="row">-</th>
<td>Banco Sabadell</td>
<td>IBEX</td>
<td><span class="tint-value">-2.45</span></td>
<td></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr class="no-signal">
<th scope="row">-</th>
<td>Banco Sabadell</td>
<td>IBEX</td>
<td><span class="tint-value">-2.45</span></td>
<td></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr class="no-signal">
<th scope="row">-</th>
<td>Bankia</td>
<td>IBEX</td>
<td><span class="tint-value">-2.45</span></td>
<td></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr class="no-signal">
<th scope="row">-</th>
<td>Bankinter</td>
<td>IBEX</td>
<td><span class="tint-value">-2.45</span></td>
<td></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr class="no-signal">
<th scope="row">-</th>
<td>Caixabank</td>
<td>IBEX</td>
<td><span class="tint-value">-2.45</span></td>
<td></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr class="no-signal">
<th scope="row">-</th>
<td>Cellnex</td>
<td>IBEX</td>
<td><span class="tint-value">-2.45</span></td>
<td></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr class="no-signal">
<th scope="row">-</th>
<td>Dia</td>
<td>IBEX</td>
<td><span class="tint-value">-2.45</span></td>
<td></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr class="no-signal">
<th scope="row">-</th>
<td>Enagás</td>
<td>IBEX</td>
<td><span class="tint-value">-2.45</span></td>
<td></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr class="no-signal">
<th scope="row">-</th>
<td>Ferrovial</td>
<td>IBEX</td>
<td><span class="tint-value">-2.45</span></td>
<td></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr class="no-signal">
<th scope="row">-</th>
<td>Siemens Gamesa</td>
<td>IBEX</td>
<td><span class="tint-value">-2.45</span></td>
<td></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr class="no-signal">
<th scope="row">-</th>
<td>Naturgy</td>
<td>IBEX</td>
<td><span class="tint-value">-2.45</span></td>
<td></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr class="no-signal">
<th scope="row">-</th>
<td>Grifols</td>
<td>IBEX</td>
<td><span class="tint-value">-2.45</span></td>
<td></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr class="no-signal">
<th scope="row">-</th>
<td>Iberdrola</td>
<td>IBEX</td>
<td><span class="tint-value">-2.45</span></td>
<td></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr class="no-signal">
<th scope="row">-</th>
<td>Indra Sistemas</td>
<td>IBEX</td>
<td><span class="tint-value">-2.45</span></td>
<td></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr class="no-signal">
<th scope="row">-</th>
<td>International Airlines Group</td>
<td>IBEX</td>
<td><span class="tint-value">-2.45</span></td>
<td></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr class="no-signal">
<th scope="row">-</th>
<td>Mediaset España Comunicación</td>
<td>IBEX</td>
<td><span class="tint-value">-2.45</span></td>
<td></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr class="no-signal">
<th scope="row">-</th>
<td>Meliá Hoteles</td>
<td>IBEX</td>
<td><span class="tint-value">-2.45</span></td>
<td></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr class="no-signal">
<th scope="row">-</th>
<td>Merlin Properties</td>
<td>IBEX</td>
<td><span class="tint-value">-2.45</span></td>
<td></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr class="no-signal">
<th scope="row">-</th>
<td>Red Eléctrica de España</td>
<td>IBEX</td>
<td><span class="tint-value">-2.45</span></td>
<td></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr class="no-signal">
<th scope="row">-</th>
<td>Repsol</td>
<td>IBEX</td>
<td><span class="tint-value">-2.45</span></td>
<td></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr class="no-signal">
<th scope="row">-</th>
<td>Técnicas Reunidas</td>
<td>IBEX</td>
<td><span class="tint-value">-2.45</span></td>
<td></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr class="no-signal">
<th scope="row">-</th>
<td>Telefónica</td>
<td>IBEX</td>
<td><span class="tint-value">-2.45</span></td>
<td></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr class="no-signal">
<th scope="row">-</th>
<td>Viscofán</td>
<td>IBEX</td>
<td><span class="tint-value">-2.45</span></td>
<td></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div><!-- ./col-md-6 -->
<div class="col-md-6">
<div class="card card-white card-portafolio">
<div class="card-body">
<div class="card-header">
Tu Portafolio <small class="sr-only">IBEX35</small>
</div>
<p>Selección de empresas que estás seguiendo para recibir alertas.</p>
<div class="table-responsive">
<table class="table table-hover table-portafolio">
<tbody>
<tr>
<th width="32" scope="row">01</th>
<td>INDITEX</td>
<td>IBEX</td>
<td><span class="tint-value">-0.71</span></td>
<td><span class="badge badge-danger">Vender</span></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-charts-item" data-toggle="tooltip" data-placement="top" title="Ver rendimiento"><i class="fas fa-chart-line"></i></a></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-delete-item" data-toggle="tooltip" data-placement="top" title="Borrar empresa"><i class="far fa-trash-alt"></i><a></td>
</tr>
<tr>
<th scope="row">02</th>
<td>SANTANDER</td>
<td>IBEX</td>
<td><span class="tint-value">+0.39</span></td>
<td><span class="badge badge-success">Comprar</span></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-charts-item" data-toggle="tooltip" data-placement="top" title="Ver rendimiento"><i class="fas fa-chart-line"></i></a></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-delete-item" data-toggle="tooltip" data-placement="top" title="Borrar empresa"><i class="far fa-trash-alt"></i><a></td>
</tr>
<tr>
<th scope="row">03</th>
<td>AENA</td>
<td>IBEX</td>
<td><span class="tint-value">+0.35</span></td>
<td><span class="badge badge-success">Comprar</span></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-charts-item" data-toggle="tooltip" data-placement="top" title="Ver rendimiento"><i class="fas fa-chart-line"></i></a></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-delete-item" data-toggle="tooltip" data-placement="top" title="Borrar empresa"><i class="far fa-trash-alt"></i><a></td>
</tr>
<tr>
<th scope="row">04</th>
<td>INDITEX</td>
<td>IBEX</td>
<td><span class="tint-value">-0.10</span></td>
<td><span class="badge badge-info">No actuar</span></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-charts-item" data-toggle="tooltip" data-placement="top" title="Ver rendimiento"><i class="fas fa-chart-line"></i></a></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-delete-item" data-toggle="tooltip" data-placement="top" title="Borrar empresa"><i class="far fa-trash-alt"></i><a></td>
</tr>
</tbody>
</table>
</div>
<div class="well well-gray">
<p class="text-center">Puedes añadir más empresas, su plan permite añadir hasta 10 empresas</p>
</div>
<div class="padding-small clearfix">
<a href="#add-company" class="btn btn-primary float-right page-scroll">Añadir empresa</a>
</div>
</div>
</div>
</div><!-- ./col-md-6 -->
</div>
</div>
</section>
<section class="all-companies padding-small" id="add-company">
<div class="wrapper">
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<div class="card card-white card-portafolio">
<div class="card-body">
<div class="card-header">
Todas las compañias <small>IBEX35</small>
<!--
<div class="btn-group float-right">
<button type="button" class="btn btn-gray dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Mercado: <span class="selected-market">IBEX35</span>
</button>
<div class="dropdown-menu dropdown-menu-right">
<a class="dropdown-item" href="#">IBEX35</a>
<a class="dropdown-item disabled" href="#">NASDAQ</a>
<a class="dropdown-item disabled" href="#">Dow Jones</a>
<a class="dropdown-item disabled" href="#">EURONEXT</a>
<a class="dropdown-item disabled" href="#">Shanghai Stock Exchange</a>
<a class="dropdown-item disabled" href="#">JPX</a>
<a class="dropdown-item disabled" href="#">FTSE 100 Component</a>
<a class="dropdown-item disabled" href="#">SEHK</a>
</div>
</div>
-->
</div>
<form>
<div class="input-group sr-only">
<input type="text" class="form-control" placeholder="Busqueda por el nombre de la empresa" aria-label="Busqueda por el nombre de la empresa" aria-describedby="button-addon4">
<div class="input-group-append" id="button-addon4">
<a href="#markets" class="btn btn-light-gray page-scroll">IBEX35 <small>Cambiar mercado</small></a>
<button class="btn btn-primary" type="button">Buscar</button>
</div>
</div>
</form>
<hr>
<div class="table-responsive">
<table class="table table-hover table-portafolio">
<tbody>
<tr>
<td>INDITEX</td>
<td>IBEX</td>
<td><span class="tint-value">-0.71</span></td>
<td><span class="badge badge-danger">Vender</span></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr>
<td>SANTANDER</td>
<td>IBEX</td>
<td><span class="tint-value">+0.39</span></td>
<td><span class="badge badge-success">Comprar</span></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr>
<td>AENA</td>
<td>IBEX</td>
<td><span class="tint-value">+0.35</span></td>
<td><span class="badge badge-success">Comprar</span></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr>
<td>INDITEX</td>
<td>IBEX</td>
<td><span class="tint-value">-0.10</span></td>
<td><span class="badge badge-success">Comprar</span></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr>
<td>BBVA</td>
<td>IBEX</td>
<td><span class="tint-value">+0.32</span></td>
<td><span class="badge badge-info">No actuar</span></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr>
<td>Gas Natural Fenosa</td>
<td>IBEX</td>
<td><span class="tint-value">+1.76</span></td>
<td><span class="badge badge-info">No actuar</span></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr>
<td>ArcelorMittal</td>
<td>IBEX</td>
<td><span class="tint-value">+1.92</span></td>
<td><span class="badge badge-danger">Vender</span></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr>
<td>MAPFRE</td>
<td>IBEX</td>
<td><span class="tint-value">-0.78</span></td>
<td><span class="badge badge-info">No actuar</span></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr>
<td>Endesa</td>
<td>IBEX</td>
<td><span class="tint-value">-0.21</span></td>
<td><span class="badge badge-danger">Vender</span></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
<tr>
<td>Meliá Hotels Internacional</td>
<td>IBEX</td>
<td><span class="tint-value">-2.45</span></td>
<td><span class="badge badge-success">Comprar</span></td>
<td width="32"><a href="javascript:void(0);" class="btn btn-add-item" data-toggle="tooltip" data-placement="top" title="Añadir empresa"><i class="far fa-plus-square"></i></a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div><!-- ./col-md-12 -->
</div>
</div>
</section>
<!-- Modal graficas empresas -->
<div class="modal fade" id="modalGraphs" tabindex="-1" role="dialog" aria-labelledby="modalGraphsLabel" aria-hidden="true">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="modalGraphsLabel">Rendimiento</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<!-- same HTML actual web -->
<div id="company-stats"><div>
<style>
#graphs {
width: 100%;
padding-top:10px;
padding-bottom:30px;
}
#graphs span {
display:inline-block;
vertical-align:top;
}
.donuts {
display:inline-block;
width:280px;
}
.gan-graph {
width:220px;
height: 220px;
padding-left:20px;
border-left: 1px solid #ccc;
}
.gan-graph h5 {
padding-bottom: 12px;
}
#percent-in {
width: 80px;
text-align:center;
padding-right:20px;
}
#percent-in h5 {
text-align:center
}
#numbers {
height: 220px;
padding-left:20px;
border-left: 1px solid #ccc;
}
#daily-ops {
padding-top: 40px;
}
#numbers .tgrp {
padding-top:16px;
}
.tgrp .gain {
color: #2c2;
}
.tgrp .loss {
color: #c22;
}
.results-table {
margin-top:8px;
margin-bottom:8px;
border-radius: 4px;
}
.results-table table {
width: 100%;
}
.results-table th {
font-size: 14px;
font-weight: bold;
padding-left: 12px;
background-color:#eee;
}
.results-table td {
font-size: 14px;
font-weight: 500;
padding-left: 12px;
background-color: white;
border: 1px dotted #eee;
}
.results-table tbody {
border-bottom: 0px !important;
}
</style>
<div id="graphs">
<span class="donuts">
<div>
<h5>% positive positions</h5>
<div id="winners"><svg width="280" height="80" viewBox="0 0 280 80"><circle cx="40" cy="40" r="40" fill="rgb(212, 39, 31)"></circle><path d="M 40,40 L 40,0 A 40,40 0 0 1 69.18611239715862,67.3527118059695 Z" fill="rgb(39, 192, 31)"></path><circle cx="40" cy="40" r="28" fill="white"></circle><text x="24" y="45" font-weight="bold" font-size="large">37%</text><rect x="100" y="28" height="15" width="15" fill="rgb(39, 192, 31)" stroke-width="1" stroke="rgb(0,0,0)"></rect><text x="120" y="40">Profits: 20</text><rect x="100" y="52" height="15" width="15" fill="rgb(212, 39, 31)" stroke-width="1" stroke="rgb(0,0,0)"></rect><text x="120" y="64">Losses: 33</text><text x="98" y="18" font-weight="bold">53 operations</text></svg></div>
</div>
<div style="padding-top:20px">
<h5>Profits/losses ratio</h5>
<div id="ratio"><svg width="280" height="80" viewBox="0 0 280 80"><circle cx="40" cy="40" r="40" fill="rgb(212, 39, 31)"></circle><path d="M 40,40 L 40,0 A 40,40 0 1 1 3.789904829074679,23.00502992904869 Z" fill="rgb(39, 192, 31)"></path><circle cx="40" cy="40" r="28" fill="white"></circle><text x="24" y="45" font-weight="bold" font-size="large">82%</text><rect x="100" y="18" height="15" width="15" fill="rgb(39, 192, 31)" stroke-width="1" stroke="rgb(0,0,0)"></rect><text x="120" y="30">Total profit: 257,4%</text><rect x="100" y="42" height="15" width="15" fill="rgb(212, 39, 31)" stroke-width="1" stroke="rgb(0,0,0)"></rect><text x="120" y="54">Total loss: 55,0%</text></svg></div>
</div>
</span>
<span class="gan-graph">
<h5>Average profit/op.: 3,82%</h5>
<div id="ganancia"><svg width="200" height="192" viewBox="0 0 200 192"><rect x="80" y="20" height="107.03164847261718" width="20" fill="#ada" stroke-width="1px" stroke="#080"></rect><rect x="80" y="53.05767491842163" height="73.97397355419554" width="20" fill="#2c2" stroke-width="1px" stroke="#080"></rect><path d="M 80,53.05767491842163 h -8" stroke="#080"></path><text x="30" y="8" font-weight="bold" font-size="x-small">Biggest profit: 26.87%</text><text x="12" y="47.05767491842163" font-weight="bold" font-size="x-small">Avg. profit:</text><text x="36" y="59.05767491842163" font-weight="bold" font-size="x-small">13.5%</text><rect x="100" y="127.03164847261718" height="44.96835152738281" width="20" fill="#daa" stroke-width="1px" stroke="#800"></rect><rect x="100" y="127.03164847261718" height="6.638782811537605" width="20" fill="#c22" stroke-width="1px" stroke="#800"></rect><path d="M 120,133.67043128415477 h 8" stroke="#800"></path><text x="68" y="189" font-weight="bold" font-size="x-small">Biggest loss: 11.29%</text><text x="132" y="127.67043128415477" font-weight="bold" font-size="x-small">Avg. loss:</text><text x="136" y="139.67043128415477" font-weight="bold" font-size="x-small">1.7%</text></svg></div>
</span>
<span id="numbers">
<div>
<span id="percent-in">
<h5>Time in market</h5>
<div id="market-time"><svg width="80" height="80" viewBox="0 0 80 80"><circle cx="40" cy="40" r="40" fill="#ccc"></circle><path d="M 40,40 L 40,0 A 40,40 0 0 1 47.534540319283565,79.28397513206994 Z" fill="rgb(65,121,204)"></path><circle cx="40" cy="40" r="28" fill="white"></circle><text x="24" y="45" font-weight="bold" font-size="large">47%</text></svg></div>
</span>
<span id="daily-ops">
<h5>Ops./dia: 0,054</h5>
<h5>(una cada 18,5 días)</h5>
</span>
</div>
<div class="tgrp">
<h5 class="gain">Max runup: 29,59%</h5>
<h5 class="gain">Max consecutive profits: 2</h5>
</div>
<div class="tgrp">
<h5 class="loss">Max drawdown: 13,29%</h5>
<h5 class="loss">Max consecutive losses: 7</h5>
</div>
</span>
</div>
<div class="results-table">
<table class="table">
<tbody><tr>
<th>Performance</th><th>1 year</th><th>2 years</th><th>Total</th>
</tr>
<tr class="even">
<td>Panda</td>
<td style="color:#2c2">-14,5%</td>
<td style="color:#c22">2,5%</td>
<td style="color:#2c2">12,9%</td>
</tr>
<tr class="odd">
<td>Market</td>
<td style="color:#c22">-19,5%</td>
<td style="color:#2c2">13,7%</td>
<td style="color:#c22">-8,4%</td>
</tr>
</tbody></table>
</div>
</div>
</div>
<div id="chart-holder" data-highcharts-chart="1"><div class="highcharts-container" id="highcharts-6" style="position: relative; overflow: hidden; width: 864px; height: 380px; text-align: left; line-height: normal; z-index: 0; -webkit-tap-highlight-color: rgba(0, 0, 0, 0);">
<svg version="1.1" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif;font-size:12px;" xmlns="http://www.w3.org/2000/svg" width="864" height="380">
<desc>Created with Highstock 2.1.5</desc>
<defs>
<clipPath id="highcharts-7">
<rect x="0" y="0" width="844" height="222"></rect>
</clipPath>
<clipPath id="highcharts-9">
<rect x="0" y="0" width="844" height="222"></rect>
</clipPath>
<clipPath id="highcharts-11">
<rect x="0" y="0" width="816" height="40"></rect>
</clipPath>
</defs>
<rect x="0" y="0" width="864" height="380" strokeWidth="0" fill="#FFFFFF" class=" highcharts-background"></rect>
<g class="highcharts-scrollbar" transform="translate(10,352)">
<rect x="0" y="-0.5" fill="#eeeeee" stroke="#eeeeee" stroke-width="1" rx="0" ry="0" height="14" width="844"></rect>
<rect y="-0.5" height="14" fill="#bfc8d1" stroke="#bfc8d1" stroke-width="1" rx="0" ry="0" x="614.5" width="215"></rect>
<path fill="none" stroke="#666" stroke-width="1" visibility="visible" d="M 718.5 3.5 L 718.5 9.333333333333334 M 721.5 3.5 L 721.5 9.333333333333334 M 724.5 3.5 L 724.5 9.333333333333334"></path>
<g>
<rect x="-0.5" y="-0.5" width="14" height="14" strokeWidth="1" stroke="#bbb" stroke-width="1" fill="#ebe7e8"></rect><path fill="#666" d="M 8 4 L 8 10 5 7"></path>
</g>
<g transform="translate(830,0)">
<rect x="-0.5" y="-0.5" width="14" height="14" strokeWidth="1" stroke="#bbb" stroke-width="1" fill="#ebe7e8"></rect><path fill="#666" d="M 6 4 L 6 10 9 7"></path></g></g>
<g class="highcharts-grid" zIndex="1"></g>
<g class="highcharts-grid" zIndex="1"><path fill="none" d="M 130.5 311 L 130.5 351" stroke="#EEE" stroke-width="1" zIndex="1" opacity="1"></path><path fill="none" d="M 346.5 311 L 346.5 351" stroke="#EEE" stroke-width="1" zIndex="1" opacity="1"></path>
<path fill="none" d="M 563.5 311 L 563.5 351" stroke="#EEE" stroke-width="1" zIndex="1" opacity="1"></path><path fill="none" d="M 780.5 311 L 780.5 351" stroke="#EEE" stroke-width="1" zIndex="1" opacity="1"></path></g><g class="highcharts-grid" zIndex="1"><path fill="none" d="M 10 265.5 L 854 265.5" stroke="#D8D8D8" stroke-width="1" zIndex="1" opacity="1"></path><path fill="none" d="M 10 210.5 L 854 210.5" stroke="#D8D8D8" stroke-width="1" zIndex="1" opacity="1"></path><path fill="none" d="M 10 154.5 L 854 154.5" stroke="#D8D8D8" stroke-width="1" zIndex="1" opacity="1"></path><path fill="none" d="M 10 99.5 L 854 99.5" stroke="#D8D8D8" stroke-width="1" zIndex="1" opacity="1"></path><path fill="none" d="M 10 42.5 L 854 42.5" stroke="#D8D8D8" stroke-width="1" zIndex="1" opacity="1"></path></g><g class="highcharts-grid" zIndex="1"></g><g class="highcharts-axis" zIndex="2"><path fill="none" d="M 57.5 265 L 57.5 275" stroke="#C0D0E0" stroke-width="1" opacity="1"></path><path fill="none" d="M 128.5 265 L 128.5 275" stroke="#C0D0E0" stroke-width="1" opacity="1"></path><path fill="none" d="M 200.5 265 L 200.5 275" stroke="#C0D0E0" stroke-width="1" opacity="1"></path><path fill="none" d="M 269.5 265 L 269.5 275" stroke="#C0D0E0" stroke-width="1" opacity="1"></path><path fill="none" d="M 340.5 265 L 340.5 275" stroke="#C0D0E0" stroke-width="1" opacity="1"></path><path fill="none" d="M 413.5 265 L 413.5 275" stroke="#C0D0E0" stroke-width="1" opacity="1"></path><path fill="none" d="M 487.5 265 L 487.5 275" stroke="#C0D0E0" stroke-width="1" opacity="1"></path><path fill="none" d="M 555.5 265 L 555.5 275" stroke="#C0D0E0" stroke-width="1" opacity="1"></path><path fill="none" d="M 622.5 265 L 622.5 275" stroke="#C0D0E0" stroke-width="1" opacity="1"></path><path fill="none" d="M 691.5 265 L 691.5 275" stroke="#C0D0E0" stroke-width="1" opacity="1"></path><path fill="none" d="M 758.5 265 L 758.5 275" stroke="#C0D0E0" stroke-width="1" opacity="1"></path><path fill="none" d="M 829.5 265 L 829.5 275" stroke="#C0D0E0" stroke-width="1" opacity="1"></path><path fill="none" d="M 10 265.5 L 854 265.5" stroke="#C0D0E0" stroke-width="1" zIndex="7" visibility="visible"></path></g><g class="highcharts-axis" zIndex="2"></g><g class="highcharts-axis" zIndex="2"></g><g class="highcharts-axis" zIndex="2"></g><path fill="none" d="M 437.5 43 L 437.5 265" stroke="#C0C0C0" stroke-width="1" zIndex="2" visibility="hidden"></path><g class="highcharts-series-group" zIndex="3"><path fill="rgba(124,181,236,0.25)" d="M 0 0"></path><path fill="rgba(204,0,0,0.25)" d="M 0 0"></path><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M -0.19416216371827533 187.3125 L 1.4546545592573796 189.5325 L 3.1034712822330346 190.6425 L 4.7522880052086895 188.145 L 6.401104728184344 193.14 L 8.049921451163266 188.145 L 9.69873817413892 193.4175 L 11.347554897114575 200.0775 L 12.996371620090232 195.36 L 14.645188343065886 191.7525 L 16.294005066041542 190.92 L 17.942821789017195 188.145 L 19.59163851199285 186.48 L 21.240455234968504 185.925 L 22.88927195794743 186.75750000000002 L 24.53808868092308 186.2025 L 26.186905403898738 186.75750000000002 L 27.83572212687439 189.255 L 29.484538849850047 188.7 L 31.133355572825703 191.7525 L 34.43098901877701 190.6425 L 36.079805741752665 187.86749999999998 L 37.728622464728325 182.8725 L 39.377439187707246 184.815 L 41.0262559106829 182.3175 L 42.67507263365855 182.8725 L 44.32388935663421 179.82000000000002 L 45.972706079609864 178.155 L 47.62152280258552 177.60000000000002 L 49.27033952556117 175.1025 L 50.91915624853683 174.825 L 52.56797297151248 177.8775 L 54.2167896944914 175.935 L 55.865606417467056 173.4375 L 57.514423140442716 174.825 L 59.16323986341837 178.71 L 60.81205658639402 182.595 L 62.46087330936968 183.9825 L 64.10969003234533 185.0925 L 65.758506755321 187.86749999999998 L 67.40732347829665 187.035 L 69.05614020127557 187.59 L 70.70495692425122 183.9825 L 72.35377364722687 179.82000000000002 L 74.00259037020253 180.6525 L 75.65140709317818 185.6475 L 77.30022381615385 185.925 L 78.9490405391295 184.815 L 80.59785726210515 184.53750000000002 L 82.2466739850808 183.705 L 83.89549070805973 186.2025 L 85.54430743103538 185.6475 L 87.19312415401103 182.595 L 88.8419408769867 181.485 L 90.49075759996235 182.3175 L 92.139574322938 181.485 L 93.78839104591366 176.7675 L 95.43720776888931 176.21249999999998 L 97.08602449186496 179.265 L 98.73484121484388 174.825 L 100.38365793781955 174.27 L 102.0324746607952 169.5525 L 103.68129138377085 166.2225 L 105.33010810674651 160.95 L 106.97892482972216 161.7825 L 108.62774155269781 156.23250000000002 L 110.27655827567347 158.175 L 111.92537499864913 154.5675 L 113.57419172162479 149.5725 L 115.2230084446037 150.1275 L 116.87182516757936 150.405 L 118.52064189055501 154.29 L 120.16945861353067 161.505 L 121.81827533650632 159.285 L 123.46709205948198 160.95 L 125.11590878245764 155.6775 L 126.76472550543329 152.90249999999997 L 128.41354222840894 163.17 L 130.06235895138786 165.1125 L 131.71117567436352 168.9975 L 133.35999239733917 168.4425 L 135.00880912031482 166.5 L 136.65762584329048 167.3325 L 138.30644256626613 165.6675 L 139.95525928924178 170.385 L 141.60407601221746 170.66250000000002 L 143.25289273519311 169.83 L 144.90170945817204 170.66250000000002 L 146.5505261811477 171.495 L 148.19934290412334 172.88250000000002 L 149.848159627099 173.99249999999998 L 151.49697635007465 172.605 L 153.1457930730503 171.2175 L 154.79460979602595 170.1075 L 156.4434265190016 172.3275 L 158.09224324197726 170.66250000000002 L 159.74105996495618 163.17 L 161.38987668793183 160.95 L 163.03869341090748 153.18 L 164.68751013388317 155.1225 L 166.33632685685882 156.23250000000002 L 167.98514357983447 153.4575 L 169.63396030281012 156.23250000000002 L 171.28277702578578 151.7925 L 172.93159374876143 151.2375 L 174.58041047174035 153.4575 L 176.229227194716 152.34750000000003 L 177.87804391769166 153.735 L 179.5268606406673 154.29 L 181.17567736364296 153.735 L 182.8244940866186 153.735 L 184.47331080959427 154.29 L 186.12212753256992 155.1225 L 187.7709442555456 155.95499999999998 L 189.41976097852125 155.1225 L 191.06857770150017 154.29 L 192.71739442447583 150.6825 L 194.36621114745148 152.625 L 196.01502787042713 152.07 L 197.66384459340279 150.6825 L 199.31266131637844 151.515 L 200.9614780393541 156.51 L 202.61029476232974 162.33749999999998 L 204.2591114853054 163.17 L 205.90792820828432 159.84 L 207.55674493125997 162.615 L 209.20556165423562 162.8925 L 210.85437837721128 162.615 L 212.50319510018696 163.17 L 214.1520118231626 163.17 L 215.80082854613826 164.0025 L 217.44964526911392 159.00750000000002 L 219.09846199208957 153.735 L 220.7472787150685 155.1225 L 222.39609543804414 155.95499999999998 L 224.0449121610198 157.8975 L 225.69372888399545 158.73 L 227.3425456069711 161.2275 L 228.99136232994675 162.8925 L 230.6401790529224 161.505 L 232.28899577589806 163.17 L 233.9378124988737 163.4475 L 235.58662922185266 165.6675 L 237.2354459448283 165.1125 L 238.88426266780397 167.3325 L 240.53307939077962 164.835 L 242.18189611375527 160.395 L 243.83071283673092 154.845 L 245.47952955970658 157.8975 L 247.12834628268223 159.84 L 248.77716300565788 159.5625 L 250.42597972863354 160.11749999999998 L 252.07479645161246 160.95 L 253.7236131745881 162.615 L 255.37242989756376 164.5575 L 257.02124662053944 162.8925 L 258.6700633435151 161.505 L 260.31888006649075 156.51 L 261.9676967894664 155.95499999999998 L 263.61651351244205 150.1275 L 265.2653302354177 149.85000000000002 L 266.9141469583966 150.1275 L 268.56296368137225 149.01749999999998 L 270.2117804043479 142.07999999999998 L 271.8605971273236 141.8025 L 273.50941385029927 142.07999999999998 L 275.1582305732749 144.3 L 276.8070472962506 143.19 L 278.4558640192262 137.085 L 280.1046807422019 136.53 L 281.75349746518077 136.53 L 283.4023141881564 135.42000000000002 L 285.0511309111321 134.58749999999998 L 286.69994763410773 132.9225 L 288.3487643570834 133.4775 L 289.99758108005904 133.4775 L 291.6463978030347 131.2575 L 293.2952145260104 133.755 L 294.94403124898605 132.9225 L 296.59284797196494 131.2575 L 298.2416646949406 140.1375 L 299.89048141791625 139.305 L 301.5392981408919 137.3625 L 303.18811486386755 135.14249999999998 L 304.8369315868432 135.42000000000002 L 306.48574830981886 137.64 L 308.1345650327945 138.195 L 309.78338175577017 140.1375 L 311.4321984787491 142.635 L 313.08101520172477 142.635 L 314.7298319247004 142.635 L 316.3786486476761 144.5775 L 318.0274653706517 140.415 L 319.6762820936274 138.195 L 321.32509881660303 136.2525 L 322.9739155395787 121.82249999999999 L 324.62273226255434 121.2675 L 326.27154898553 121.82249999999999 L 327.92036570850894 125.985 L 329.5691824314846 129.03750000000002 L 331.21799915446024 129.03750000000002 L 332.8668158774359 126.53999999999999 L 334.51563260041155 124.875 L 336.1644493233872 120.1575 L 337.81326604636286 116.55000000000001 L 339.4620827693385 117.66000000000001 L 341.11089949231416 121.82249999999999 L 342.7597162152931 123.48750000000001 L 344.40853293826876 127.92750000000001 L 346.0573496612444 127.92750000000001 L 347.70616638422007 126.53999999999999 L 349.3549831071957 126.53999999999999 L 351.0037998301714 130.425 L 352.652616553147 132.08999999999997 L 354.3014332761227 127.3725 L 355.95024999909833 129.5925 L 357.5990667220772 125.42999999999999 L 359.2478834450529 125.15249999999999 L 360.89670016802853 125.42999999999999 L 362.5455168910042 126.26249999999999 L 364.1943336139799 125.42999999999999 L 365.84315033695555 128.76 L 367.4919670599312 131.8125 L 369.14078378290685 132.645 L 370.7896005058825 132.08999999999997 L 372.4384172288614 131.8125 L 374.08723395183705 133.755 L 375.7360506748127 129.5925 L 377.38486739778835 126.53999999999999 L 379.033684120764 125.985 L 380.68250084373966 129.03750000000002 L 382.3313175667153 127.095 L 383.98013428969097 130.1475 L 385.6289510126666 130.425 L 387.2777677356423 130.1475 L 388.9265844586212 127.3725 L 390.5754011815969 129.315 L 392.2242179045725 129.315 L 393.8730346275482 130.1475 L 395.52185135052383 132.08999999999997 L 397.1706680734995 130.1475 L 398.81948479647514 128.48250000000002 L 400.4683015194508 125.42999999999999 L 402.11711824242644 127.64999999999999 L 403.7659349654054 131.53500000000003 L 405.41475168838105 124.59750000000001 L 407.0635684113567 125.985 L 408.71238513433235 125.985 L 410.361201857308 124.32000000000001 L 412.01001858028366 124.04249999999999 L 413.6588353032593 124.32000000000001 L 415.30765202623496 124.32000000000001 L 416.9564687492106 124.32000000000001 L 418.60528547218956 120.435 L 420.2541021951652 119.88000000000001 L 421.90291891814087 121.2675 L 423.5517356411165 125.15249999999999 L 425.2005523640922 124.59750000000001 L 426.8493690870678 124.04249999999999 L 428.4981858100435 127.095 L 430.14700253301913 124.59750000000001 L 431.7958192559948 120.1575 L 433.4446359789737 120.1575 L 435.0934527019494 119.32499999999999 L 436.74226942492504 119.0475 L 438.3910861479007 120.71249999999999 L 440.03990287087635 117.66000000000001 L 441.688719593852 117.9375 L 443.33753631682765 115.99499999999999 L 444.9863530398033 115.7175 L 446.63516976277896 114.6075 L 448.28398648575785 113.22 L 449.9328032087335 118.49249999999999 L 451.58161993170916 122.3775 L 453.2304366546848 126.26249999999999 L 454.87925337766046 122.655 L 456.5280701006361 120.99000000000001 L 458.1768868236118 120.435 L 459.8257035465875 124.32000000000001 L 461.47452026956313 124.875 L 463.123336992542 126.53999999999999 L 464.7721537155177 124.59750000000001 L 466.4209704384933 127.095 L 468.069787161469 125.42999999999999 L 469.71860388444463 125.985 L 471.3674206074203 126.81750000000001 L 473.01623733039594 129.87 L 474.6650540533716 129.315 L 476.31387077634724 127.095 L 477.9626874993229 126.81750000000001 L 479.61150422230185 128.48250000000002 L 481.2603209452775 132.08999999999997 L 482.90913766825315 134.0325 L 484.5579543912288 128.48250000000002 L 486.20677111420446 127.64999999999999 L 487.8555878371801 126.53999999999999 L 489.50440456015576 126.53999999999999 L 491.1532212831314 128.20499999999998 L 492.80203800610707 127.3725 L 494.450854729086 125.985 L 496.09967145206167 128.20499999999998 L 497.7484881750373 124.875 L 499.397304898013 124.59750000000001 L 501.04612162098863 128.48250000000002 L 502.6949383439643 129.03750000000002 L 504.34375506693993 124.875 L 505.9925717899156 126.53999999999999 L 507.64138851289124 123.21000000000001 L 509.2902052358702 128.20499999999998 L 510.93902195884584 126.26249999999999 L 512.5878386818215 133.755 L 514.2366554047971 128.20499999999998 L 515.8854721277728 129.87 L 517.5342888507485 132.08999999999997 L 519.1831055737241 133.4775 L 520.8319222966998 128.76 L 522.4807390196754 128.48250000000002 L 524.1295557426511 129.5925 L 525.77837246563 133.2 L 527.4271891886057 132.9225 L 529.0760059115813 130.98 L 530.724822634557 132.645 L 532.3736393575326 129.87 L 534.0224560805083 133.755 L 535.6712728034839 131.53500000000003 L 537.3200895264596 131.53500000000003 L 538.9689062494352 128.20499999999998 L 540.6177229724142 133.4775 L 542.2665396953898 127.3725 L 543.9153564183655 124.59750000000001 L 545.5641731413411 125.42999999999999 L 547.2129898643168 125.985 L 548.8618065872924 129.5925 L 550.5106233102681 131.53500000000003 L 552.1594400332438 132.9225 L 553.8082567562194 132.645 L 555.4570734791984 133.755 L 557.105890202174 134.58749999999998 L 558.7547069251497 135.14249999999998 L 560.4035236481253 135.97500000000002 L 562.052340371101 133.2 L 563.7011570940766 131.8125 L 565.3499738170523 133.4775 L 566.9987905400279 135.42000000000002 L 568.6476072630036 138.195 L 570.2964239859824 137.3625 L 571.9452407089581 136.8075 L 573.5940574319337 135.14249999999998 L 575.2428741549095 136.8075 L 576.8916908778851 134.865 L 578.5405076008608 130.98 L 580.1893243238364 133.755 L 581.8381410468121 136.8075 L 583.4869577697878 134.31 L 585.1357744927666 133.755 L 586.7845912157422 136.53 L 588.4334079387179 134.31 L 590.0822246616935 132.9225 L 591.7310413846692 132.645 L 593.3798581076448 132.9225 L 595.0286748306205 133.2 L 596.6774915535962 134.865 L 598.3263082765719 134.58749999999998 L 599.9751249995508 131.8125 L 601.6239417225264 130.98 L 603.2727584455021 131.2575 L 604.9215751684777 128.48250000000002 L 606.5703918914534 131.53500000000003 L 608.219208614429 132.9225 L 609.8680253374047 134.58749999999998 L 611.5168420603803 135.6975 L 613.165658783356 136.53 L 614.8144755063316 136.2525 L 616.4632922293106 132.645 L 618.1121089522862 131.8125 L 619.7609256752619 132.08999999999997 L 621.4097423982375 131.53500000000003 L 623.0585591212132 129.03750000000002 L 624.7073758441888 129.315 L 626.3561925671645 126.26249999999999 L 628.0050092901402 125.42999999999999 L 629.6538260131158 125.42999999999999 L 631.3026427360948 127.64999999999999 L 632.9514594590704 128.20499999999998 L 634.6002761820461 127.64999999999999 L 636.2490929050217 124.875 L 637.8979096279974 125.15249999999999 L 639.546726350973 125.42999999999999 L 641.1955430739487 122.10000000000001 L 642.8443597969243 121.2675 L 644.4931765199 120.99000000000001 L 646.1419932428789 123.21000000000001 L 647.7908099658546 122.93249999999999 L 649.4396266888302 125.985 L 651.0884434118059 129.03750000000002 L 652.7372601347815 131.53500000000003 L 654.3860768577572 136.53 L 656.0348935807328 132.3675 L 657.6837103037085 135.14249999999998 L 659.3325270266841 138.47250000000003 L 660.9813437496631 135.97500000000002 L 662.6301604726387 138.75 L 664.2789771956144 139.5825 L 665.92779391859 139.02749999999997 L 667.5766106415657 137.085 L 669.2254273645414 138.195 L 670.874244087517 137.9175 L 672.5230608104927 139.5825 L 674.1718775334683 139.5825 L 675.820694256444 141.2475 L 677.4695109794229 139.86 L 679.1183277023986 140.1375 L 680.7671444253742 27.75 L 682.4159611483499 144.5775 L 684.0647778713255 148.74 L 685.7135945943012 149.5725 L 687.3624113172768 148.46249999999998 L 689.0112280402525 149.01749999999998 L 690.6600447632281 148.46249999999998 L 692.3088614862071 148.46249999999998 L 693.9576782091827 147.9075 L 695.6064949321584 30.524999999999977 L 697.255311655134 150.6825 L 698.9041283781097 151.7925 L 700.5529451010854 148.46249999999998 L 702.201761824061 151.2375 L 703.8505785470367 149.85000000000002 L 705.4993952700123 151.7925 L 707.1482119929913 154.0125 L 708.7970287159669 159.00750000000002 L 710.4458454389426 159.285 L 712.0946621619182 157.8975 L 713.7434788848939 157.065 L 715.3922956078695 154.5675 L 717.0411123308452 156.23250000000002 L 718.6899290538208 156.78750000000002 L 720.3387457767965 152.34750000000003 L 721.9875624997754 156.78750000000002 L 723.6363792227511 154.5675 L 725.2851959457267 154.845 L 726.9340126687024 156.78750000000002 L 728.582829391678 157.3425 L 730.2316461146537 155.1225 L 731.8804628376294 154.845 L 733.529279560605 155.39999999999998 L 735.1780962835807 152.90249999999997 L 736.8269130065595 152.07 L 738.4757297295351 150.405 L 740.1245464525109 150.405 L 741.7733631754866 150.405 L 743.4221798984622 151.2375 L 745.0709966214379 151.515 L 746.7198133444135 147.3525 L 748.3686300673892 146.2425 L 750.0174467903648 145.1325 L 751.6662635133437 147.9075 L 753.3150802363193 145.96499999999997 L 754.963896959295 144.5775 L 756.6127136822706 145.41000000000003 L 758.2615304052463 144.0225 L 759.9103471282219 142.91250000000002 L 761.5591638511976 142.91250000000002 L 763.2079805741733 143.4675 L 764.856797297149 146.2425 L 766.5056140201247 149.29500000000002 L 768.1544307431035 146.7975 L 769.8032474660791 150.405 L 771.4520641890548 152.34750000000003 L 773.1008809120304 149.29500000000002 L 774.7496976350061 153.4575 L 776.3985143579818 155.6775 L 778.0473310809574 160.6725 L 779.6961478039331 162.8925 L 781.3449645269087 169.83 L 782.9937812498877 168.72 L 784.6425979728633 170.94 L 786.291414695839 165.94500000000002 L 787.9402314188146 164.835 L 789.5890481417903 168.72 L 791.2378648647659 166.7775 L 792.8866815877416 163.4475 L 794.5354983107172 164.28 L 796.1843150336929 160.6725 L 797.8331317566718 161.2275 L 799.4819484796475 163.72500000000002 L 801.1307652026231 164.0025 L 802.7795819255988 167.05499999999998 L 804.4283986485744 168.72 L 806.0772153715501 167.61 L 807.7260320945257 166.2225 L 809.3748488175014 167.3325 L 811.023665540477 164.835 L 812.6724822634527 167.61 L 814.3212989864317 166.2225 L 815.9701157094073 167.3325 L 817.618932432383 167.3325 L 819.2677491553586 164.5575 L 820.9165658783343 167.8875 L 822.5653826013099 165.94500000000002 L 824.2141993242856 162.615 L 825.8630160472612 157.8975 L 827.5118327702369 156.23250000000002 L 829.1606494932158 156.23250000000002 L 830.8094662161915 160.6725 L 832.4582829391671 165.39 L 834.1070996621428 164.835 L 835.7559163851184 165.6675 L 837.4047331080941 166.7775 L 839.0535498310697 168.4425 L 840.7023665540454 166.5 L 842.351183277021 167.05499999999998 L 844 167.3325" stroke="#7cb5ec" stroke-width="2" zIndex="1" stroke-linejoin="round" stroke-linecap="round"></path><path fill="none" d="M -10.194162163718275 187.3125 L -0.19416216371827533 187.3125 L 1.4546545592573796 189.5325 L 3.1034712822330346 190.6425 L 4.7522880052086895 188.145 L 6.401104728184344 193.14 L 8.049921451163266 188.145 L 9.69873817413892 193.4175 L 11.347554897114575 200.0775 L 12.996371620090232 195.36 L 14.645188343065886 191.7525 L 16.294005066041542 190.92 L 17.942821789017195 188.145 L 19.59163851199285 186.48 L 21.240455234968504 185.925 L 22.88927195794743 186.75750000000002 L 24.53808868092308 186.2025 L 26.186905403898738 186.75750000000002 L 27.83572212687439 189.255 L 29.484538849850047 188.7 L 31.133355572825703 191.7525 L 34.43098901877701 190.6425 L 36.079805741752665 187.86749999999998 L 37.728622464728325 182.8725 L 39.377439187707246 184.815 L 41.0262559106829 182.3175 L 42.67507263365855 182.8725 L 44.32388935663421 179.82000000000002 L 45.972706079609864 178.155 L 47.62152280258552 177.60000000000002 L 49.27033952556117 175.1025 L 50.91915624853683 174.825 L 52.56797297151248 177.8775 L 54.2167896944914 175.935 L 55.865606417467056 173.4375 L 57.514423140442716 174.825 L 59.16323986341837 178.71 L 60.81205658639402 182.595 L 62.46087330936968 183.9825 L 64.10969003234533 185.0925 L 65.758506755321 187.86749999999998 L 67.40732347829665 187.035 L 69.05614020127557 187.59 L 70.70495692425122 183.9825 L 72.35377364722687 179.82000000000002 L 74.00259037020253 180.6525 L 75.65140709317818 185.6475 L 77.30022381615385 185.925 L 78.9490405391295 184.815 L 80.59785726210515 184.53750000000002 L 82.2466739850808 183.705 L 83.89549070805973 186.2025 L 85.54430743103538 185.6475 L 87.19312415401103 182.595 L 88.8419408769867 181.485 L 90.49075759996235 182.3175 L 92.139574322938 181.485 L 93.78839104591366 176.7675 L 95.43720776888931 176.21249999999998 L 97.08602449186496 179.265 L 98.73484121484388 174.825 L 100.38365793781955 174.27 L 102.0324746607952 169.5525 L 103.68129138377085 166.2225 L 105.33010810674651 160.95 L 106.97892482972216 161.7825 L 108.62774155269781 156.23250000000002 L 110.27655827567347 158.175 L 111.92537499864913 154.5675 L 113.57419172162479 149.5725 L 115.2230084446037 150.1275 L 116.87182516757936 150.405 L 118.52064189055501 154.29 L 120.16945861353067 161.505 L 121.81827533650632 159.285 L 123.46709205948198 160.95 L 125.11590878245764 155.6775 L 126.76472550543329 152.90249999999997 L 128.41354222840894 163.17 L 130.06235895138786 165.1125 L 131.71117567436352 168.9975 L 133.35999239733917 168.4425 L 135.00880912031482 166.5 L 136.65762584329048 167.3325 L 138.30644256626613 165.6675 L 139.95525928924178 170.385 L 141.60407601221746 170.66250000000002 L 143.25289273519311 169.83 L 144.90170945817204 170.66250000000002 L 146.5505261811477 171.495 L 148.19934290412334 172.88250000000002 L 149.848159627099 173.99249999999998 L 151.49697635007465 172.605 L 153.1457930730503 171.2175 L 154.79460979602595 170.1075 L 156.4434265190016 172.3275 L 158.09224324197726 170.66250000000002 L 159.74105996495618 163.17 L 161.38987668793183 160.95 L 163.03869341090748 153.18 L 164.68751013388317 155.1225 L 166.33632685685882 156.23250000000002 L 167.98514357983447 153.4575 L 169.63396030281012 156.23250000000002 L 171.28277702578578 151.7925 L 172.93159374876143 151.2375 L 174.58041047174035 153.4575 L 176.229227194716 152.34750000000003 L 177.87804391769166 153.735 L 179.5268606406673 154.29 L 181.17567736364296 153.735 L 182.8244940866186 153.735 L 184.47331080959427 154.29 L 186.12212753256992 155.1225 L 187.7709442555456 155.95499999999998 L 189.41976097852125 155.1225 L 191.06857770150017 154.29 L 192.71739442447583 150.6825 L 194.36621114745148 152.625 L 196.01502787042713 152.07 L 197.66384459340279 150.6825 L 199.31266131637844 151.515 L 200.9614780393541 156.51 L 202.61029476232974 162.33749999999998 L 204.2591114853054 163.17 L 205.90792820828432 159.84 L 207.55674493125997 162.615 L 209.20556165423562 162.8925 L 210.85437837721128 162.615 L 212.50319510018696 163.17 L 214.1520118231626 163.17 L 215.80082854613826 164.0025 L 217.44964526911392 159.00750000000002 L 219.09846199208957 153.735 L 220.7472787150685 155.1225 L 222.39609543804414 155.95499999999998 L 224.0449121610198 157.8975 L 225.69372888399545 158.73 L 227.3425456069711 161.2275 L 228.99136232994675 162.8925 L 230.6401790529224 161.505 L 232.28899577589806 163.17 L 233.9378124988737 163.4475 L 235.58662922185266 165.6675 L 237.2354459448283 165.1125 L 238.88426266780397 167.3325 L 240.53307939077962 164.835 L 242.18189611375527 160.395 L 243.83071283673092 154.845 L 245.47952955970658 157.8975 L 247.12834628268223 159.84 L 248.77716300565788 159.5625 L 250.42597972863354 160.11749999999998 L 252.07479645161246 160.95 L 253.7236131745881 162.615 L 255.37242989756376 164.5575 L 257.02124662053944 162.8925 L 258.6700633435151 161.505 L 260.31888006649075 156.51 L 261.9676967894664 155.95499999999998 L 263.61651351244205 150.1275 L 265.2653302354177 149.85000000000002 L 266.9141469583966 150.1275 L 268.56296368137225 149.01749999999998 L 270.2117804043479 142.07999999999998 L 271.8605971273236 141.8025 L 273.50941385029927 142.07999999999998 L 275.1582305732749 144.3 L 276.8070472962506 143.19 L 278.4558640192262 137.085 L 280.1046807422019 136.53 L 281.75349746518077 136.53 L 283.4023141881564 135.42000000000002 L 285.0511309111321 134.58749999999998 L 286.69994763410773 132.9225 L 288.3487643570834 133.4775 L 289.99758108005904 133.4775 L 291.6463978030347 131.2575 L 293.2952145260104 133.755 L 294.94403124898605 132.9225 L 296.59284797196494 131.2575 L 298.2416646949406 140.1375 L 299.89048141791625 139.305 L 301.5392981408919 137.3625 L 303.18811486386755 135.14249999999998 L 304.8369315868432 135.42000000000002 L 306.48574830981886 137.64 L 308.1345650327945 138.195 L 309.78338175577017 140.1375 L 311.4321984787491 142.635 L 313.08101520172477 142.635 L 314.7298319247004 142.635 L 316.3786486476761 144.5775 L 318.0274653706517 140.415 L 319.6762820936274 138.195 L 321.32509881660303 136.2525 L 322.9739155395787 121.82249999999999 L 324.62273226255434 121.2675 L 326.27154898553 121.82249999999999 L 327.92036570850894 125.985 L 329.5691824314846 129.03750000000002 L 331.21799915446024 129.03750000000002 L 332.8668158774359 126.53999999999999 L 334.51563260041155 124.875 L 336.1644493233872 120.1575 L 337.81326604636286 116.55000000000001 L 339.4620827693385 117.66000000000001 L 341.11089949231416 121.82249999999999 L 342.7597162152931 123.48750000000001 L 344.40853293826876 127.92750000000001 L 346.0573496612444 127.92750000000001 L 347.70616638422007 126.53999999999999 L 349.3549831071957 126.53999999999999 L 351.0037998301714 130.425 L 352.652616553147 132.08999999999997 L 354.3014332761227 127.3725 L 355.95024999909833 129.5925 L 357.5990667220772 125.42999999999999 L 359.2478834450529 125.15249999999999 L 360.89670016802853 125.42999999999999 L 362.5455168910042 126.26249999999999 L 364.1943336139799 125.42999999999999 L 365.84315033695555 128.76 L 367.4919670599312 131.8125 L 369.14078378290685 132.645 L 370.7896005058825 132.08999999999997 L 372.4384172288614 131.8125 L 374.08723395183705 133.755 L 375.7360506748127 129.5925 L 377.38486739778835 126.53999999999999 L 379.033684120764 125.985 L 380.68250084373966 129.03750000000002 L 382.3313175667153 127.095 L 383.98013428969097 130.1475 L 385.6289510126666 130.425 L 387.2777677356423 130.1475 L 388.9265844586212 127.3725 L 390.5754011815969 129.315 L 392.2242179045725 129.315 L 393.8730346275482 130.1475 L 395.52185135052383 132.08999999999997 L 397.1706680734995 130.1475 L 398.81948479647514 128.48250000000002 L 400.4683015194508 125.42999999999999 L 402.11711824242644 127.64999999999999 L 403.7659349654054 131.53500000000003 L 405.41475168838105 124.59750000000001 L 407.0635684113567 125.985 L 408.71238513433235 125.985 L 410.361201857308 124.32000000000001 L 412.01001858028366 124.04249999999999 L 413.6588353032593 124.32000000000001 L 415.30765202623496 124.32000000000001 L 416.9564687492106 124.32000000000001 L 418.60528547218956 120.435 L 420.2541021951652 119.88000000000001 L 421.90291891814087 121.2675 L 423.5517356411165 125.15249999999999 L 425.2005523640922 124.59750000000001 L 426.8493690870678 124.04249999999999 L 428.4981858100435 127.095 L 430.14700253301913 124.59750000000001 L 431.7958192559948 120.1575 L 433.4446359789737 120.1575 L 435.0934527019494 119.32499999999999 L 436.74226942492504 119.0475 L 438.3910861479007 120.71249999999999 L 440.03990287087635 117.66000000000001 L 441.688719593852 117.9375 L 443.33753631682765 115.99499999999999 L 444.9863530398033 115.7175 L 446.63516976277896 114.6075 L 448.28398648575785 113.22 L 449.9328032087335 118.49249999999999 L 451.58161993170916 122.3775 L 453.2304366546848 126.26249999999999 L 454.87925337766046 122.655 L 456.5280701006361 120.99000000000001 L 458.1768868236118 120.435 L 459.8257035465875 124.32000000000001 L 461.47452026956313 124.875 L 463.123336992542 126.53999999999999 L 464.7721537155177 124.59750000000001 L 466.4209704384933 127.095 L 468.069787161469 125.42999999999999 L 469.71860388444463 125.985 L 471.3674206074203 126.81750000000001 L 473.01623733039594 129.87 L 474.6650540533716 129.315 L 476.31387077634724 127.095 L 477.9626874993229 126.81750000000001 L 479.61150422230185 128.48250000000002 L 481.2603209452775 132.08999999999997 L 482.90913766825315 134.0325 L 484.5579543912288 128.48250000000002 L 486.20677111420446 127.64999999999999 L 487.8555878371801 126.53999999999999 L 489.50440456015576 126.53999999999999 L 491.1532212831314 128.20499999999998 L 492.80203800610707 127.3725 L 494.450854729086 125.985 L 496.09967145206167 128.20499999999998 L 497.7484881750373 124.875 L 499.397304898013 124.59750000000001 L 501.04612162098863 128.48250000000002 L 502.6949383439643 129.03750000000002 L 504.34375506693993 124.875 L 505.9925717899156 126.53999999999999 L 507.64138851289124 123.21000000000001 L 509.2902052358702 128.20499999999998 L 510.93902195884584 126.26249999999999 L 512.5878386818215 133.755 L 514.2366554047971 128.20499999999998 L 515.8854721277728 129.87 L 517.5342888507485 132.08999999999997 L 519.1831055737241 133.4775 L 520.8319222966998 128.76 L 522.4807390196754 128.48250000000002 L 524.1295557426511 129.5925 L 525.77837246563 133.2 L 527.4271891886057 132.9225 L 529.0760059115813 130.98 L 530.724822634557 132.645 L 532.3736393575326 129.87 L 534.0224560805083 133.755 L 535.6712728034839 131.53500000000003 L 537.3200895264596 131.53500000000003 L 538.9689062494352 128.20499999999998 L 540.6177229724142 133.4775 L 542.2665396953898 127.3725 L 543.9153564183655 124.59750000000001 L 545.5641731413411 125.42999999999999 L 547.2129898643168 125.985 L 548.8618065872924 129.5925 L 550.5106233102681 131.53500000000003 L 552.1594400332438 132.9225 L 553.8082567562194 132.645 L 555.4570734791984 133.755 L 557.105890202174 134.58749999999998 L 558.7547069251497 135.14249999999998 L 560.4035236481253 135.97500000000002 L 562.052340371101 133.2 L 563.7011570940766 131.8125 L 565.3499738170523 133.4775 L 566.9987905400279 135.42000000000002 L 568.6476072630036 138.195 L 570.2964239859824 137.3625 L 571.9452407089581 136.8075 L 573.5940574319337 135.14249999999998 L 575.2428741549095 136.8075 L 576.8916908778851 134.865 L 578.5405076008608 130.98 L 580.1893243238364 133.755 L 581.8381410468121 136.8075 L 583.4869577697878 134.31 L 585.1357744927666 133.755 L 586.7845912157422 136.53 L 588.4334079387179 134.31 L 590.0822246616935 132.9225 L 591.7310413846692 132.645 L 593.3798581076448 132.9225 L 595.0286748306205 133.2 L 596.6774915535962 134.865 L 598.3263082765719 134.58749999999998 L 599.9751249995508 131.8125 L 601.6239417225264 130.98 L 603.2727584455021 131.2575 L 604.9215751684777 128.48250000000002 L 606.5703918914534 131.53500000000003 L 608.219208614429 132.9225 L 609.8680253374047 134.58749999999998 L 611.5168420603803 135.6975 L 613.165658783356 136.53 L 614.8144755063316 136.2525 L 616.4632922293106 132.645 L 618.1121089522862 131.8125 L 619.7609256752619 132.08999999999997 L 621.4097423982375 131.53500000000003 L 623.0585591212132 129.03750000000002 L 624.7073758441888 129.315 L 626.3561925671645 126.26249999999999 L 628.0050092901402 125.42999999999999 L 629.6538260131158 125.42999999999999 L 631.3026427360948 127.64999999999999 L 632.9514594590704 128.20499999999998 L 634.6002761820461 127.64999999999999 L 636.2490929050217 124.875 L 637.8979096279974 125.15249999999999 L 639.546726350973 125.42999999999999 L 641.1955430739487 122.10000000000001 L 642.8443597969243 121.2675 L 644.4931765199 120.99000000000001 L 646.1419932428789 123.21000000000001 L 647.7908099658546 122.93249999999999 L 649.4396266888302 125.985 L 651.0884434118059 129.03750000000002 L 652.7372601347815 131.53500000000003 L 654.3860768577572 136.53 L 656.0348935807328 132.3675 L 657.6837103037085 135.14249999999998 L 659.3325270266841 138.47250000000003 L 660.9813437496631 135.97500000000002 L 662.6301604726387 138.75 L 664.2789771956144 139.5825 L 665.92779391859 139.02749999999997 L 667.5766106415657 137.085 L 669.2254273645414 138.195 L 670.874244087517 137.9175 L 672.5230608104927 139.5825 L 674.1718775334683 139.5825 L 675.820694256444 141.2475 L 677.4695109794229 139.86 L 679.1183277023986 140.1375 L 680.7671444253742 27.75 L 682.4159611483499 144.5775 L 684.0647778713255 148.74 L 685.7135945943012 149.5725 L 687.3624113172768 148.46249999999998 L 689.0112280402525 149.01749999999998 L 690.6600447632281 148.46249999999998 L 692.3088614862071 148.46249999999998 L 693.9576782091827 147.9075 L 695.6064949321584 30.524999999999977 L 697.255311655134 150.6825 L 698.9041283781097 151.7925 L 700.5529451010854 148.46249999999998 L 702.201761824061 151.2375 L 703.8505785470367 149.85000000000002 L 705.4993952700123 151.7925 L 707.1482119929913 154.0125 L 708.7970287159669 159.00750000000002 L 710.4458454389426 159.285 L 712.0946621619182 157.8975 L 713.7434788848939 157.065 L 715.3922956078695 154.5675 L 717.0411123308452 156.23250000000002 L 718.6899290538208 156.78750000000002 L 720.3387457767965 152.34750000000003 L 721.9875624997754 156.78750000000002 L 723.6363792227511 154.5675 L 725.2851959457267 154.845 L 726.9340126687024 156.78750000000002 L 728.582829391678 157.3425 L 730.2316461146537 155.1225 L 731.8804628376294 154.845 L 733.529279560605 155.39999999999998 L 735.1780962835807 152.90249999999997 L 736.8269130065595 152.07 L 738.4757297295351 150.405 L 740.1245464525109 150.405 L 741.7733631754866 150.405 L 743.4221798984622 151.2375 L 745.0709966214379 151.515 L 746.7198133444135 147.3525 L 748.3686300673892 146.2425 L 750.0174467903648 145.1325 L 751.6662635133437 147.9075 L 753.3150802363193 145.96499999999997 L 754.963896959295 144.5775 L 756.6127136822706 145.41000000000003 L 758.2615304052463 144.0225 L 759.9103471282219 142.91250000000002 L 761.5591638511976 142.91250000000002 L 763.2079805741733 143.4675 L 764.856797297149 146.2425 L 766.5056140201247 149.29500000000002 L 768.1544307431035 146.7975 L 769.8032474660791 150.405 L 771.4520641890548 152.34750000000003 L 773.1008809120304 149.29500000000002 L 774.7496976350061 153.4575 L 776.3985143579818 155.6775 L 778.0473310809574 160.6725 L 779.6961478039331 162.8925 L 781.3449645269087 169.83 L 782.9937812498877 168.72 L 784.6425979728633 170.94 L 786.291414695839 165.94500000000002 L 787.9402314188146 164.835 L 789.5890481417903 168.72 L 791.2378648647659 166.7775 L 792.8866815877416 163.4475 L 794.5354983107172 164.28 L 796.1843150336929 160.6725 L 797.8331317566718 161.2275 L 799.4819484796475 163.72500000000002 L 801.1307652026231 164.0025 L 802.7795819255988 167.05499999999998 L 804.4283986485744 168.72 L 806.0772153715501 167.61 L 807.7260320945257 166.2225 L 809.3748488175014 167.3325 L 811.023665540477 164.835 L 812.6724822634527 167.61 L 814.3212989864317 166.2225 L 815.9701157094073 167.3325 L 817.618932432383 167.3325 L 819.2677491553586 164.5575 L 820.9165658783343 167.8875 L 822.5653826013099 165.94500000000002 L 824.2141993242856 162.615 L 825.8630160472612 157.8975 L 827.5118327702369 156.23250000000002 L 829.1606494932158 156.23250000000002 L 830.8094662161915 160.6725 L 832.4582829391671 165.39 L 834.1070996621428 164.835 L 835.7559163851184 165.6675 L 837.4047331080941 166.7775 L 839.0535498310697 168.4425 L 840.7023665540454 166.5 L 842.351183277021 167.05499999999998 L 844 167.3325 L 854 167.3325" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""><path fill="#7cb5ec" d="M 428.4981858100435 123.095 C 433.82618581004346 123.095 433.82618581004346 131.095 428.4981858100435 131.095 C 423.1701858100435 131.095 423.1701858100435 123.095 428.4981858100435 123.095 Z" stroke="#FFFFFF" stroke-width="1" visibility="hidden"></path></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 825.8630160472612 157.8975 L 832.4582829391671 165.39" stroke="#cc0000" stroke-width="2" zIndex="1" stroke-linejoin="round" stroke-linecap="round"></path><path fill="none" d="M 815.8630160472612 157.8975 L 825.8630160472612 157.8975 L 832.4582829391671 165.39 L 842.4582829391671 165.39" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 748.3686300673892 146.2425 L 769.8032474660791 150.405" stroke="#cc0000" stroke-width="2" zIndex="1" stroke-linejoin="round" stroke-linecap="round"></path><path fill="none" d="M 738.3686300673892 146.2425 L 748.3686300673892 146.2425 L 769.8032474660791 150.405 L 779.8032474660791 150.405" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 618.1121089522862 131.8125 L 652.7372601347815 131.53500000000003" stroke="#00cc00" stroke-width="2" zIndex="1" stroke-linejoin="round" stroke-linecap="round"></path><path fill="none" d="M 608.1121089522862 131.8125 L 618.1121089522862 131.8125 L 652.7372601347815 131.53500000000003 L 662.7372601347815 131.53500000000003" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 603.2727584455021 131.2575 L 613.165658783356 136.53" stroke="#cc0000" stroke-width="2" zIndex="1" stroke-linejoin="round" stroke-linecap="round"></path><path fill="none" d="M 593.2727584455021 131.2575 L 603.2727584455021 131.2575 L 613.165658783356 136.53 L 623.165658783356 136.53" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 593.3798581076448 132.9225 L 598.3263082765719 134.58749999999998" stroke="#cc0000" stroke-width="2" zIndex="1" stroke-linejoin="round" stroke-linecap="round"></path><path fill="none" d="M 583.3798581076448 132.9225 L 593.3798581076448 132.9225 L 598.3263082765719 134.58749999999998 L 608.3263082765719 134.58749999999998" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 543.9153564183655 124.59750000000001 L 550.5106233102681 131.53500000000003" stroke="#cc0000" stroke-width="2" zIndex="1" stroke-linejoin="round" stroke-linecap="round"></path><path fill="none" d="M 533.9153564183655 124.59750000000001 L 543.9153564183655 124.59750000000001 L 550.5106233102681 131.53500000000003 L 560.5106233102681 131.53500000000003" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 458.1768868236118 120.435 L 463.123336992542 126.53999999999999" stroke="#cc0000" stroke-width="2" zIndex="1" stroke-linejoin="round" stroke-linecap="round"></path><path fill="none" d="M 448.1768868236118 120.435 L 458.1768868236118 120.435 L 463.123336992542 126.53999999999999 L 473.123336992542 126.53999999999999" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 400.4683015194508 125.42999999999999 L 453.2304366546848 126.26249999999999" stroke="#cc0000" stroke-width="2" zIndex="1" stroke-linejoin="round" stroke-linecap="round"></path><path fill="none" d="M 390.4683015194508 125.42999999999999 L 400.4683015194508 125.42999999999999 L 453.2304366546848 126.26249999999999 L 463.2304366546848 126.26249999999999" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 390.5754011815969 129.315 L 395.52185135052383 132.08999999999997" stroke="#cc0000" stroke-width="2" zIndex="1" stroke-linejoin="round" stroke-linecap="round"></path><path fill="none" d="M 380.5754011815969 129.315 L 390.5754011815969 129.315 L 395.52185135052383 132.08999999999997 L 405.52185135052383 132.08999999999997" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 377.38486739778835 129.03750000000002 L 385.6289510126666 130.2585" stroke="#cc0000" stroke-width="2" zIndex="1" stroke-linejoin="round" stroke-linecap="round"></path><path fill="none" d="M 367.38486739778835 129.03750000000002 L 377.38486739778835 129.03750000000002 L 385.6289510126666 130.2585 L 395.6289510126666 130.2585" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""><path fill="#cc0000" d="M 377.38486739778835 125.03750000000002 C 382.71286739778833 125.03750000000002 382.71286739778833 133.03750000000002 377.38486739778835 133.03750000000002 C 372.0568673977884 133.03750000000002 372.0568673977884 125.03750000000002 377.38486739778835 125.03750000000002 Z" stroke="#FFFFFF" stroke-width="1" visibility="hidden"></path></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 321.32509881660303 136.2525 L 369.14078378290685 131.7015" stroke="#00cc00" stroke-width="2" zIndex="1" stroke-linejoin="round" stroke-linecap="round"></path><path fill="none" d="M 311.32509881660303 136.2525 L 321.32509881660303 136.2525 L 369.14078378290685 131.7015 L 379.14078378290685 131.7015" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 260.31888006649075 159.42375 L 316.3786486476761 147.63" stroke="#00cc00" stroke-width="2" zIndex="1" stroke-linejoin="round" stroke-linecap="round"></path><path fill="none" d="M 250.31888006649075 159.42375 L 260.31888006649075 159.42375 L 316.3786486476761 147.63 L 326.3786486476761 147.63" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 243.83071283673092 156.23250000000002 L 252.07479645161246 159.5625" stroke="#cc0000" stroke-width="2" zIndex="1" stroke-linejoin="round" stroke-linecap="round"></path><path fill="none" d="M 233.83071283673092 156.23250000000002 L 243.83071283673092 156.23250000000002 L 252.07479645161246 159.5625 L 262.07479645161243 159.5625" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 219.09846199208957 154.53975 L 230.6401790529224 161.2275" stroke="#cc0000" stroke-width="2" zIndex="1" stroke-linejoin="round" stroke-linecap="round"></path><path fill="none" d="M 209.09846199208957 154.53975 L 219.09846199208957 154.53975 L 230.6401790529224 161.2275 L 240.6401790529224 161.2275" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 159.74105996495618 169.08075 L 200.9614780393541 154.92825" stroke="#00cc00" stroke-width="2" zIndex="1" stroke-linejoin="round" stroke-linecap="round"></path><path fill="none" d="M 149.74105996495618 169.08075 L 159.74105996495618 169.08075 L 200.9614780393541 154.92825 L 210.9614780393541 154.92825" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 93.78839104591366 180.34724999999997 L 130.06235895138786 160.6725" stroke="#00cc00" stroke-width="2" zIndex="1" stroke-linejoin="round" stroke-linecap="round"></path><path fill="none" d="M 83.78839104591366 180.34724999999997 L 93.78839104591366 180.34724999999997 L 130.06235895138786 160.6725 L 140.06235895138786 160.6725" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 74.00259037020253 182.151 L 75.65140709317818 184.17675" stroke="#cc0000" stroke-width="2" zIndex="1" stroke-linejoin="round" stroke-linecap="round"></path><path fill="none" d="M 64.00259037020253 182.151 L 74.00259037020253 182.151 L 75.65140709317818 184.17675 L 85.65140709317818 184.17675" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 37.728622464728325 186.369 L 65.758506755321 186.00825" stroke="#00cc00" stroke-width="2" zIndex="1" stroke-linejoin="round" stroke-linecap="round"></path><path fill="none" d="M 27.728622464728325 186.369 L 37.728622464728325 186.369 L 65.758506755321 186.00825 L 75.758506755321 186.00825" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 19.59163851199285 188.7 L 32.78217229580136 190.6425" stroke="#cc0000" stroke-width="2" zIndex="1" stroke-linejoin="round" stroke-linecap="round"></path><path fill="none" d="M 9.591638511992851 188.7 L 19.59163851199285 188.7 L 32.78217229580136 190.6425 L 42.78217229580136 190.6425" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-9)"><path fill="none" d="M 0 0" stroke-linejoin="round" visibility="visible" stroke="rgba(192,192,192,0.0001)" stroke-width="22" zIndex="2" class=" highcharts-tracker" style=""></path></g><g class="highcharts-markers highcharts-tracker" visibility="visible" zIndex="0.1" transform="translate(10,43) scale(1 1)" clip-path="url(#highcharts-8)" style=""></g><g class="highcharts-series" visibility="visible" zIndex="0.1" transform="translate(24,311) scale(1 1)" clip-path="url(#highcharts-11)"><path fill="rgba(69,114,167,0.05)" d="M 0 16.826156299840513 C 0 16.826156299840513 0.7116279069768725 17.339712918660016 1.186046511628121 18.118022328548648 C 1.6604651162790347 18.896331738436732 1.8976744186044918 20.7177033492823 2.3720930232554056 20.7177033492823 C 2.846511627906654 20.7177033492823 3.0837209302322783 15.388623072833612 3.5581395348835265 13.444976076555037 C 4.032558139534775 11.501329080276461 4.269767441860399 12.032961190855934 4.744186046511647 10.999468367889424 C 5.218604651162896 9.965975544922912 5.45581395348852 8.421052631578938 5.930232558139768 8.277511961722485 C 6.404651162790683 8.133971291866033 6.641860465116139 8.133971291866033 7.116279069767053 8.133971291866033 C 7.590697674418301 8.133971291866033 7.827906976743925 8.21371610845296 8.302325581395174 8.21371610845296 C 8.776744186046422 8.21371610845296 9.013953488372046 6.858054226475289 9.488372093023294 6.858054226475289 C 9.962790697674544 6.858054226475289 10.200000000000168 7.228070175438497 10.674418604651416 7.511961722488039 C 11.14883720930233 7.79585326953738 11.386046511627786 8.277511961722496 11.8604651162787 8.277511961722496 C 12.334883720929948 8.277511961722496 12.572093023255572 8.013822434875063 13.04651162790682 7.42690058479532 C 13.520930232558067 6.839978734715578 13.758139534883691 5.342902711323781 14.232558139534941 5.342902711323781 C 14.70697674418619 5.342902711323781 14.944186046511813 8.484848484848499 15.418604651163063 8.484848484848499 C 15.893023255813977 8.484848484848499 16.130232558139433 8.022328548644342 16.604651162790347 8.022328548644342 C 17.079069767441595 8.022328548644342 17.31627906976722 9.269537480063798 17.790697674418467 9.952153110047849 C 18.265116279069716 10.6347687400319 18.50232558139534 11.435406698564595 18.976744186046588 11.435406698564595 C 19.451162790697836 11.435406698564595 19.68837209302346 11.435406698564595 20.16279069767471 11.041998936735787 C 20.637209302325623 10.64859117490698 20.87441860465108 9.404572036150988 21.348837209301994 9.404572036150988 C 21.823255813953246 9.404572036150988 22.06046511627887 10.223285486443388 22.534883720930114 10.223285486443388 C 23.009302325581366 10.223285486443388 23.24651162790699 8.18181818181818 23.720930232558235 8.086124401913878 C 24.195348837209487 7.990430622009576 24.43255813953511 7.990430622009576 24.90697674418636 7.990430622009576 C 25.381395348837273 7.990430622009576 25.61860465116273 9.097288676236229 26.09302325581364 9.601275917065397 C 26.567441860464886 10.105263157894921 26.804651162790513 10.510366826156307 27.27906976744176 10.510366826156307 C 27.75348837209301 10.510366826156307 27.99069767441863 9.043062200956953 28.465116279069882 9.043062200956953 C 28.93953488372113 9.043062200956953 29.176744186046754 9.043062200956953 29.651162790698006 9.53216374269006 C 30.125581395348917 10.021265284423166 30.362790697674377 11.160021265284662 30.837209302325288 11.818181818181824 C 31.311627906976536 12.476342371079452 31.54883720930216 12.822966507177032 32.02325581395341 12.822966507177032 C 32.49767441860466 12.822966507177032 32.734883720930284 11.183413078149913 33.20930232558153 10.574162679425832 C 33.68372093023278 9.96491228070175 33.920930232558405 9.776714513556623 34.39534883720965 9.776714513556623 C 34.86976744186056 9.776714513556623 35.10697674418602 10.584795321637639 35.581395348836935 11.169590643274862 C 36.05581395348818 11.754385964912496 36.29302325581381 12.245614035087732 36.767441860465055 12.700691121743763 C 37.241860465116304 13.155768208399795 37.47906976744193 13.269537480063793 37.953488372093176 13.444976076555022 C 38.427906976744424 13.620414673046252 38.66511627907005 13.444976076555022 39.139534883721296 13.620414673046252 C 39.61395348837222 13.795853269537481 39.85116279069767 15.08771929824562 40.325581395348586 15.23125996810208 C 40.79999999999983 15.37480063795854 41.03720930232546 15.37480063795854 41.511627906976706 15.37480063795854 C 41.986046511627954 15.37480063795854 42.22325581395357 14.306220095693778 42.69767441860483 14.306220095693778 C 43.17209302325607 14.306220095693778 43.4093023255817 14.306220095693778 43.88372093023295 14.42317916002127 C 44.358139534883854 14.540138224348762 44.595348837209315 15.124933545986323 45.06976744186023 15.528973950026582 C 45.544186046511484 15.933014354067131 45.7813953488371 16.161616161616163 46.25581395348835 16.443381180223287 C 46.7302325581396 16.725146198830412 46.96744186046523 16.937799043062206 47.44186046511647 16.937799043062206 C 47.916279069767725 16.937799043062206 48.15348837209334 14.94417862838916 48.62790697674459 14.94417862838916 C 49.102325581395505 14.94417862838916 49.339534883720965 15.377990430622118 49.81395348837188 15.677830940988837 C 50.28837209302313 15.977671451355768 50.52558139534875 16.443381180223287 51 16.443381180223287 C 51.47441860465125 16.443381180223287 51.71162790697688 13.551302498670932 52.18604651162812 13.530037214247752 C 52.660465116279035 13.508771929824572 52.897674418604495 13.508771929824572 53.3720930232554 13.508771929824572 C 53.84651162790665 13.508771929824572 54.08372093023227 14.976076555023914 54.55813953488352 16.060606060606062 C 55.032558139534764 17.14513556618818 55.2697674418604 18.146730462519947 55.74418604651164 18.93141945773525 C 56.2186046511629 19.71610845295057 56.455813953488516 19.984051036682615 56.930232558139764 19.984051036682615 C 57.40465116279067 19.984051036682615 57.64186046511613 17.304625199362043 58.11627906976705 17.304625199362043 C 58.5906976744183 17.304625199362043 58.82790697674393 17.398192450824034 59.30232558139517 17.6555023923445 C 59.77674418604643 17.91281233386497 60.013953488372046 17.795853269537478 60.488372093023294 18.59117490696438 C 60.96279069767454 19.38649654439128 61.20000000000017 20.543328017011856 61.674418604651414 21.632110579479004 C 62.14883720930233 22.720893141945403 62.38604651162778 23.114300903774918 62.8604651162787 24.035087719298247 C 63.33488372092995 24.955874534822236 63.57209302325557 26.236044657097292 64.04651162790682 26.236044657097292 C 64.52093023255807 26.236044657097292 64.7581395348837 24.130781499202556 65.23255813953494 24.130781499202556 C 65.70697674418619 24.130781499202556 65.94418604651182 24.86124401913854 66.41860465116307 25.454545454545453 C 66.89302325581397 26.047846889951938 67.13023255813944 26.927166400850616 67.60465116279035 27.097288676236047 C 68.0790697674416 27.26741095162148 68.3162790697672 27.26741095162148 68.79069767441847 27.26741095162148 C 69.2651162790697 27.26741095162148 69.50232558139535 26.214779372674112 69.97674418604659 26.034024455077088 C 70.45116279069785 25.853269537480063 70.68837209302346 25.853269537480063 71.16279069767471 25.853269537480063 C 71.63720930232562 25.853269537480063 71.87441860465108 27.86921850079787 72.34883720930199 29.04306220095694 C 72.82325581395324 30.216905901116853 73.06046511627886 31.72248803827751 73.53488372093011 31.72248803827751 C 74.00930232558136 31.72248803827751 74.24651162790698 29.8628389154705 74.72093023255823 29.154704944178633 C 75.19534883720948 28.446570972886768 75.4325581395351 28.181818181818183 75.90697674418635 28.181818181818183 C 76.38139534883726 28.181818181818183 76.61860465116271 29.81924508240298 77.09302325581363 29.81924508240298 C 77.56744186046488 29.81924508240298 77.80465116279052 27.3886230728336 78.27906976744177 26.544391281233388 C 78.75348837209302 25.700159489633176 78.99069767441864 25.59808612440192 79.46511627906989 25.59808612440192 C 79.93953488372114 25.59808612440192 80.17674418604676 26.523125996810208 80.65116279069801 26.523125996810208 C 81.12558139534892 26.523125996810208 81.36279069767438 24.274322169059023 81.83720930232529 24.003189792663484 C 82.31162790697654 23.732057416267946 82.54883720930215 23.732057416267946 83.02325581395341 23.732057416267946 C 83.49767441860465 23.732057416267946 83.7348837209303 24.62519936204148 84.20930232558153 24.928229665071775 C 84.6837209302328 25.231259968102087 84.9209302325584 25.247208931419458 85.39534883720965 25.247208931419458 C 85.86976744186056 25.247208931419458 86.10697674418603 25.247208931419458 86.58139534883693 25.11961722488038 C 87.05581395348818 24.9920255183413 87.29302325581381 21.35566188197767 87.76744186046506 21.35566188197767 C 88.2418604651163 21.35566188197767 88.47906976744193 23.9585326953748 88.95348837209318 24.992025518341308 C 89.42790697674442 26.025518341307816 89.66511627907005 26.11164274322154 90.1395348837213 26.523125996810208 C 90.6139534883722 26.934609250398577 90.85116279069766 26.77511961722497 91.32558139534858 27.049441786283893 C 91.79999999999981 27.323763955342994 92.03720930232546 27.894736842105267 92.5116279069767 27.894736842105267 C 92.98604651162796 27.894736842105267 93.22325581395357 27.7565124933546 93.69767441860482 27.7565124933546 C 94.17209302325607 27.7565124933546 94.40930232558169 29.372674109516222 94.88372093023294 29.670388091440728 C 95.35813953488386 29.968102073365234 95.59534883720933 29.968102073365234 96.06976744186024 29.968102073365234 C 96.54418604651148 29.968102073365234 96.7813953488371 27.802232854864478 97.25581395348836 26.539074960127596 C 97.73023255813959 25.275917065390793 97.96744186046524 23.684210526315788 98.44186046511648 23.65231259968102 C 98.9162790697674 23.620414673046255 99.15348837209285 23.620414673046255 99.62790697674376 23.620414673046255 C 100.10232558139501 23.620414673046255 100.33953488372063 25.39606592238171 100.81395348837188 25.9170653907496 C 101.28837209302313 26.43806485911749 101.52558139534875 26.43806485911749 102 26.43806485911749 C 102.47441860465123 26.43806485911749 102.71162790697687 25.311004784689217 103.18604651162812 24.715576820839985 C 103.66046511627903 24.120148856991182 103.8976744186045 23.460925039872407 104.3720930232554 23.460925039872407 C 104.84651162790665 23.460925039872407 105.08372093023226 23.716108452950564 105.55813953488352 23.716108452950564 C 106.03255813953476 23.716108452950564 106.26976744186041 22.37639553429027 106.74418604651164 22.37639553429027 C 107.2186046511629 22.37639553429027 107.45581395348852 23.189792663476606 107.93023255813976 23.923444976076553 C 108.40465116279067 24.65709728867597 108.64186046511614 26.044657097288678 109.11627906976705 26.044657097288678 C 109.5906976744183 26.044657097288678 109.8279069767439 25.338649654439127 110.30232558139517 24.949494949494948 C 110.77674418604643 24.56034024455077 111.01395348837204 24.63264221158958 111.48837209302329 24.098883572567786 C 111.96279069767454 23.565124933545988 112.20000000000016 22.781499202552002 112.67441860465141 22.28070175438597 C 113.14883720930234 21.779904306220264 113.38604651162777 21.59489633173844 113.8604651162787 21.59489633173844 C 114.33488372092995 21.59489633173844 114.57209302325558 21.86602870813397 115.04651162790682 21.86602870813397 C 115.52093023255807 21.86602870813397 115.75813953488368 21.515151515151523 116.23255813953494 20.972886762360456 C 116.7069767441862 20.43062200956939 116.94418604651182 19.154704944178636 117.41860465116307 19.154704944178636 C 117.89302325581397 19.154704944178636 118.13023255813944 19.154704944178636 118.60465116279035 19.27166400850612 C 119.0790697674416 19.388623072833607 119.3162790697672 19.429027113237627 119.79069767441847 19.90962254120149 C 120.2651162790697 20.390217969165324 120.50232558139535 21.674641148325364 120.97674418604659 21.674641148325364 C 121.45116279069785 21.674641148325364 121.68837209302346 20.95693779904306 122.16279069767471 20.95693779904306 C 122.63720930232562 20.95693779904306 122.87441860465108 22.185007974481664 123.34883720930199 22.185007974481664 C 123.82325581395324 22.185007974481664 124.06046511627888 22.13716108452951 124.53488372093011 22.13716108452951 C 125.00930232558134 22.13716108452951 125.24651162790698 23.359914938862303 125.72093023255823 23.811802232854863 C 126.19534883720948 24.26368952684742 126.4325581395351 24.396597554492296 126.90697674418635 24.396597554492296 C 127.38139534883726 24.396597554492296 127.61860465116274 24.396597554492296 128.09302325581365 24.35406698564593 C 128.5674418604649 24.311536416799562 128.80465116279052 23.205741626794264 129.27906976744177 23.205741626794264 C 129.75348837209302 23.205741626794264 129.99069767441864 23.205741626794264 130.4651162790699 23.55661881977672 C 130.93953488372114 23.907496012759175 131.17674418604676 25.074960127591428 131.651162790698 25.853269537480063 C 132.12558139534892 26.63157894736814 132.36279069767437 26.98245614035105 132.83720930232528 27.448165869218506 C 133.31162790697653 27.9138755980863 133.54883720930215 27.733120680489105 134.0232558139534 28.181818181818183 C 134.49767441860465 28.630515683147262 134.73488372093027 29.30037214247741 135.20930232558152 29.691653375863908 C 135.68372093023277 30.082934609250405 135.9209302325584 29.897926634768652 136.39534883720964 30.13822434875066 C 136.86976744186055 30.378522062732497 137.10697674418603 30.407230196704056 137.58139534883693 30.893141945773525 C 138.05581395348818 31.379053694843343 138.2930232558138 32.089314194577355 138.76744186046506 32.567783094098885 C 139.2418604651163 33.046251993620416 139.47906976744193 33.28548644338119 139.95348837209318 33.28548644338119 C 140.42790697674442 33.28548644338119 140.66511627907005 32.32854864433812 141.1395348837213 32.32854864433812 C 141.61395348837223 32.32854864433812 141.85116279069766 32.58373205741638 142.3255813953486 32.90271132376396 C 142.79999999999984 33.22169059011175 143.03720930232546 33.92344497607655 143.5116279069767 33.92344497607655 C 143.98604651162796 33.92344497607655 144.22325581395359 32.813397129186605 144.69767441860483 32.39234449760766 C 145.17209302325608 31.971291866028714 145.4093023255817 31.81818181818182 145.88372093023295 31.81818181818182 C 146.35813953488386 31.81818181818182 146.59534883720931 34.17862838915471 147.06976744186022 34.17862838915471 C 147.54418604651147 34.17862838915471 147.7813953488371 34.15948963317385 148.25581395348834 34.14673046251994 C 148.7302325581396 34.13397129186603 148.96744186046521 34.114832535885164 149.44186046511646 34.114832535885164 C 149.91627906976737 34.114832535885164 150.15348837209285 35.122807017544 150.62790697674376 35.51834130781499 C 151.102325581395 35.91387559808627 151.33953488372063 36.09250398724084 151.81395348837188 36.09250398724084 C 152.28837209302313 36.09250398724084 152.52558139534875 34.750664540138224 153 34.09356725146199 C 153.47441860465125 33.43646996278575 153.71162790697687 33.150451887294096 154.18604651162812 32.807017543859644 C 154.66046511627906 32.46358320042541 154.89767441860448 32.37639553429027 155.37209302325542 32.37639553429027 C 155.84651162790666 32.37639553429027 156.0837209302323 32.67942583732057 156.55813953488354 32.67942583732057 C 157.03255813953479 32.67942583732057 157.2697674418604 31.738437001594903 157.74418604651166 31.738437001594903 C 158.2186046511629 31.738437001594903 158.45581395348853 33.44497607655502 158.93023255813978 33.44497607655502 C 159.40465116279069 33.44497607655502 159.64186046511614 32.58585858585826 160.11627906976705 31.69059011164275 C 160.5906976744183 30.79532163742659 160.82790697674392 28.968633705475817 161.30232558139517 28.968633705475817 C 161.77674418604641 28.968633705475817 162.01395348837204 30.753854332801705 162.4883720930233 31.56299840510367 C 162.96279069767454 32.37214247740564 163.20000000000016 32.606060606060474 163.6744186046514 33.014354066985646 C 164.14883720930234 33.422647527910556 164.38604651162777 33.33333333333342 164.8604651162787 33.60446570972886 C 165.33488372092995 33.87559808612449 165.57209302325558 33.75757575757576 166.04651162790682 34.37001594896332 C 166.52093023255807 34.98245614035088 166.7581395348837 36.666666666666664 167.23255813953494 36.666666666666664 C 167.7069767441862 36.666666666666664 167.94418604651182 35.72248803827789 168.41860465116307 34.68899521531101 C 168.89302325581397 33.65550239234488 169.13023255813943 31.49920255183413 169.60465116279033 31.49920255183413 C 170.07906976744158 31.49920255183413 170.3162790697672 32.67942583732057 170.79069767441845 32.67942583732057 C 171.2651162790697 32.67942583732057 171.50232558139533 29.218500797448172 171.97674418604657 29.218500797448172 C 172.45116279069785 29.218500797448172 172.68837209302345 29.39393939393939 173.1627906976747 29.39393939393939 C 173.63720930232563 29.39393939393939 173.87441860465105 28.39872408293449 174.348837209302 28.022328548644342 C 174.82325581395324 27.645933014353947 175.06046511627886 27.51196172248804 175.5348837209301 27.51196172248804 C 176.00930232558136 27.51196172248804 176.24651162790698 28.75598086124402 176.72093023255823 28.75598086124402 C 177.19534883720948 28.75598086124402 177.4325581395351 28.441254651781044 177.90697674418635 28.224348750664543 C 178.3813953488373 28.007442849548188 178.6186046511627 28.07868155236563 179.09302325581365 27.671451355661883 C 179.5674418604649 27.264221158957866 179.80465116279052 26.94098883572568 180.27906976744177 26.188197767145137 C 180.75348837209302 25.435406698564595 180.99069767441864 24.488038277511965 181.4651162790699 23.90749601275917 C 181.93953488372114 23.32695374800638 182.17674418604676 23.28548644338118 182.651162790698 23.28548644338118 C 183.12558139534892 23.28548644338118 183.36279069767437 23.28548644338118 183.83720930232528 23.429027113237645 C 184.31162790697653 23.572567783094108 184.54883720930215 24.08399787347156 185.0232558139534 24.311536416799576 C 185.49767441860465 24.539074960127593 185.73488372093024 24.311536416799576 186.20930232558152 24.566719829877727 C 186.68372093023277 24.821903242955877 186.9209302325584 25.595959595959446 187.39534883720964 26.012759170653908 C 187.86976744186055 26.429558745348068 188.10697674418603 26.650717703349283 188.58139534883693 26.650717703349283 C 189.05581395348818 26.650717703349283 189.2930232558138 25.885167464114836 189.76744186046506 25.885167464114836 C 190.2418604651163 25.885167464114836 190.47906976744193 27.336523125996816 190.95348837209318 27.336523125996816 C 191.42790697674442 27.336523125996816 191.66511627907002 27.068580542265067 192.1395348837213 26.267942583732058 C 192.6139534883722 25.46730462519967 192.85116279069769 23.333333333333332 193.3255813953486 23.333333333333332 C 193.79999999999987 23.333333333333332 194.03720930232546 24.662413609782035 194.5116279069767 25.034556087187667 C 194.98604651162796 25.4066985645933 195.22325581395359 25.4066985645933 195.69767441860483 25.4066985645933 C 196.17209302325608 25.4066985645933 196.4093023255817 24.99202551834138 196.88372093023295 24.800637958532697 C 197.35813953488386 24.609250398724154 197.59534883720931 24.44976076555024 198.06976744186022 24.44976076555024 C 198.54418604651147 24.44976076555024 198.7813953488371 25.980861244019135 199.25581395348834 26.17224880382775 C 199.7302325581396 26.363636363636363 199.96744186046521 26.363636363636363 200.44186046511646 26.363636363636363 C 200.9162790697674 26.363636363636363 201.15348837209282 26.044657097288603 201.62790697674376 25.800106326422124 C 202.102325581395 25.555555555555483 202.33953488372063 25.44922913343967 202.81395348837188 25.14088250930357 C 203.28837209302313 24.83253588516747 203.52558139534875 24.258373205741627 204 24.258373205741627 C 204.47441860465125 24.258373205741627 204.71162790697687 24.33811802232856 205.18604651162812 24.33811802232856 C 205.660465116279 24.33811802232856 205.89767441860448 24.038277511961656 206.3720930232554 23.843700159489636 C 206.84651162790664 23.649122807017473 207.08372093023226 23.365231259968105 207.5581395348835 23.365231259968105 C 208.03255813953479 23.365231259968105 208.2697674418604 23.492822966507184 208.74418604651166 23.492822966507184 C 209.21860465116288 23.492822966507184 209.45581395348853 22.748538011696063 209.93023255813978 22.312599681020732 C 210.40465116279069 21.876661350345714 210.64186046511614 21.65762892078669 211.11627906976705 21.31313131313131 C 211.5906976744183 20.968633705475686 211.82790697674392 20.685805422647537 212.30232558139517 20.590111642743228 C 212.77674418604641 20.49441786283892 213.01395348837204 20.49441786283892 213.4883720930233 20.49441786283892 C 213.9627906976745 20.49441786283892 214.20000000000013 21.100478468899528 214.6744186046514 21.100478468899528 C 215.1488372093023 21.100478468899528 215.38604651162777 20.015948963317157 215.8604651162787 19.377990430622013 C 216.33488372092998 18.740031897926407 216.57209302325555 18.548644338118045 217.04651162790682 17.910685805422652 C 217.52093023255807 17.272727272727295 217.7581395348837 16.400850611376928 218.23255813953494 16.188197767145137 C 218.7069767441862 15.975544922913347 218.94418604651182 16.071238702817688 219.41860465116307 15.975544922913347 C 219.89302325581397 15.879851143009075 220.13023255813943 15.709728867623607 220.60465116279033 15.709728867623607 C 221.07906976744158 15.709728867623607 221.31627906976718 15.88516746411484 221.79069767441845 15.88516746411484 C 222.2651162790697 15.88516746411484 222.50232558139533 15.518341307815 222.97674418604657 15.518341307815 C 223.45116279069785 15.518341307815 223.68837209302347 16.701754385964623 224.1627906976747 17.671451355661883 C 224.63720930232563 18.64114832535856 224.87441860465105 20.366826156299844 225.348837209302 20.366826156299844 C 225.82325581395327 20.366826156299844 226.06046511627886 20.009569377990434 226.5348837209301 19.377990430622013 C 227.00930232558136 18.746411483253592 227.24651162790695 17.368421052631582 227.72093023255823 17.208931419457738 C 228.19534883720948 17.049441786283893 228.4325581395351 17.049441786283893 228.90697674418635 17.049441786283893 C 229.38139534883732 17.049441786283893 229.61860465116268 17.161084529505583 230.09302325581365 17.161084529505583 C 230.5674418604649 17.161084529505583 230.80465116279052 17.017543859649127 231.27906976744177 17.017543859649127 C 231.75348837209305 17.017543859649127 231.99069767441864 18.452950558213715 232.4651162790699 18.452950558213715 C 232.93953488372114 18.452950558213715 233.17674418604673 18.39128123338657 233.651162790698 18.197767145135572 C 234.12558139534895 18.004253056884714 234.36279069767437 17.793726741095053 234.83720930232528 17.485380116959067 C 235.31162790697653 17.177033492822858 235.54883720930215 17.030303030303028 236.0232558139534 16.656034024455085 C 236.49767441860467 16.28176501860712 236.73488372093024 15.614035087719301 237.20930232558152 15.614035087719301 C 237.68372093023277 15.614035087719301 237.9209302325584 17.352472089313913 238.39534883720964 18.149920255183417 C 238.86976744186055 18.94736842105235 239.10697674418603 18.80382775119646 239.58139534883693 19.601275917065394 C 240.05581395348818 20.3987240829349 240.2930232558138 22.137161084529513 240.76744186046506 22.137161084529513 C 241.2418604651163 22.137161084529513 241.47906976744193 21.70653907496013 241.95348837209318 21.70653907496013 C 242.42790697674445 21.70653907496013 242.66511627907002 22.737905369484324 243.1395348837213 22.737905369484324 C 243.61395348837223 22.737905369484324 243.8511627906977 22.737905369484324 244.3255813953486 22.50398724082935 C 244.79999999999987 22.270069112174376 245.0372093023255 21.25996810207337 245.5116279069767 21.25996810207337 C 245.98604651162796 21.25996810207337 246.22325581395359 22.21690590111643 246.69767441860483 22.21690590111643 C 247.17209302325608 22.21690590111643 247.4093023255817 22.169059011164514 247.88372093023295 21.51515151515152 C 248.35813953488386 20.861244019138994 248.59534883720931 19.623604465709487 249.06976744186022 18.947368421052634 C 249.54418604651147 18.271132376395293 249.78139534883712 18.25093035619353 250.25581395348834 18.133971291866036 C 250.7302325581396 18.017012227538544 250.96744186046521 18.133971291866036 251.44186046511646 18.017012227538544 C 251.91627906976737 17.90005316321105 252.15348837209285 17.67038809144067 252.62790697674376 17.52791068580542 C 253.102325581395 17.38543328017007 253.33953488372063 17.304625199362043 253.81395348837188 17.304625199362043 C 254.2883720930231 17.304625199362043 254.52558139534875 17.754385964912284 255 17.958532695374803 C 255.47441860465125 18.162679425837325 255.71162790697684 18.019138755980883 256.1860465116281 18.325358851674643 C 256.6604651162794 18.631578947368443 256.897674418605 19.489633173843703 257.37209302325624 19.489633173843703 C 257.84651162790715 19.489633173843703 258.08372093023263 19.128123338649623 258.55813953488354 18.99521531100479 C 259.03255813953473 18.862307283359883 259.2697674418604 18.825093035619357 259.74418604651163 18.825093035619357 C 260.2186046511629 18.825093035619357 260.45581395348853 19.005847953216268 260.9302325581398 19.314194577352477 C 261.4046511627907 19.622541201488463 261.6418604651161 19.837320574162845 262.1162790697671 20.366826156299844 C 262.5906976744183 20.896331738437162 262.8279069767439 21.802232854864425 263.30232558139517 21.961722488038276 C 263.7767441860464 22.121212121212128 264.01395348837207 21.961722488038276 264.4883720930233 22.121212121212128 C 264.9627906976745 22.28070175438598 265.20000000000016 22.69218500797427 265.6744186046514 23.28548644338118 C 266.1488372093023 23.878787878787666 266.3860465116278 25.08771929824562 266.8604651162787 25.08771929824562 C 267.33488372092995 25.08771929824562 267.57209302325555 23.758639021796913 268.0465116279068 23.758639021796913 C 268.52093023255804 23.758639021796913 268.7581395348837 23.95002658160553 269.23255813953494 23.95002658160553 C 269.70697674418614 23.95002658160553 269.94418604651185 23.2695374800638 270.41860465116304 23.2695374800638 C 270.89302325581394 23.2695374800638 271.1302325581394 23.464114832536033 271.60465116279033 23.79585326953749 C 272.07906976744164 24.127591706539224 272.31627906976723 24.928229665071775 272.7906976744185 24.928229665071775 C 273.26511627906973 24.928229665071775 273.5023255813953 24.928229665071775 273.9767441860466 24.736842105263158 C 274.4511627906978 24.54545454545454 274.6883720930235 24.341307814992298 275.1627906976747 23.588516746411486 C 275.63720930232563 22.835725677831217 275.87441860465105 21.670388091440483 276.34883720930196 20.972886762360456 C 276.8232558139532 20.27538543327993 277.0604651162788 20.45188729399256 277.5348837209301 20.101010101010104 C 278.0093023255814 19.750132908027645 278.246511627907 19.218500797448172 278.72093023255826 19.218500797448172 C 279.1953488372095 19.218500797448172 279.4325581395351 19.55342902711324 279.90697674418635 19.55342902711324 C 280.3813953488373 19.55342902711324 280.6186046511627 18.312599681020586 281.09302325581365 17.814992025518343 C 281.5674418604649 17.3173843700158 281.8046511627905 17.06539074960128 282.27906976744174 17.06539074960128 C 282.753488372093 17.06539074960128 282.9906976744186 18.038277511961727 283.4651162790699 18.038277511961727 C 283.93953488372114 18.038277511961727 284.17674418604673 17.761828814460397 284.651162790698 17.761828814460397 C 285.1255813953489 17.761828814460397 285.3627906976743 18.178628389154767 285.8372093023253 18.399787347155765 C 286.3116279069765 18.620946305156895 286.5488372093022 18.867623604465717 287.0232558139534 18.867623604465717 C 287.4976744186047 18.867623604465717 287.73488372093027 18.18181818181819 288.2093023255815 17.735247208931426 C 288.68372093023277 17.28867623604466 288.92093023255836 17.20255183413102 289.39534883720967 16.634768740031898 C 289.8697674418606 16.066985645933254 290.106976744186 15.368421052631412 290.5813953488369 14.896331738437006 C 291.05581395348815 14.424242424242259 291.2930232558138 14.734715576820845 291.76744186046506 14.274322169059015 C 292.2418604651163 13.813928761297186 292.4790697674419 13.028176501860715 292.95348837209315 12.59436469962786 C 293.4279069767444 12.160552897395007 293.66511627907005 12.286018075491832 294.1395348837213 12.105263157894743 C 294.6139534883722 11.924508240297785 294.8511627906977 11.690590111642742 295.3255813953486 11.690590111642742 C 295.79999999999984 11.690590111642742 296.0372093023255 12.16905901116428 296.5116279069767 12.16905901116428 C 296.98604651162793 12.16905901116428 297.2232558139536 11.578947368421058 297.69767441860483 11.244019138755988 C 298.1720930232561 10.909090909090917 298.4093023255817 11.049441786284069 298.8837209302329 10.494417862838926 C 299.3581395348839 9.939393939394117 299.5953488372093 9.20999468367863 300.0697674418602 8.468899521531103 C 300.54418604651147 7.727804359383042 300.7813953488371 6.788942052099948 301.25581395348837 6.788942052099948 C 301.7302325581396 6.788942052099948 301.96744186046527 6.799574694311416 302.44186046511646 7.192982456140349 C 302.91627906976737 7.586390217969046 303.15348837209285 8.012759170654132 303.62790697674376 8.755980861244023 C 304.10232558139495 9.499202551834358 304.3395348837206 10.701754385964922 304.81395348837185 10.909090909090914 C 305.2883720930231 11.116427432216906 305.52558139534875 10.953748006379582 306 11.116427432216906 C 306.47441860465125 11.279106858054227 306.71162790697684 11.690590111642763 307.1860465116281 11.722488038277525 C 307.6604651162794 11.754385964912288 307.897674418605 11.722488038277525 308.37209302325624 11.754385964912288 C 308.84651162790715 11.78628389154705 309.08372093023263 12.232854864433826 309.55813953488354 12.232854864433826 C 310.03255813953473 12.232854864433826 310.2697674418604 12.041467304625208 310.74418604651163 12.041467304625208 C 311.2186046511629 12.041467304625208 311.45581395348853 12.105263157894743 311.9302325581398 12.105263157894743 C 312.4046511627907 12.105263157894743 312.6418604651161 10.858054226475165 313.1162790697671 10.43062200956939 C 313.5906976744183 10.00318979266336 313.8279069767439 9.96810207336523 314.30232558139517 9.96810207336523 C 314.7767441860464 9.96810207336523 315.01395348837207 11.247208931419443 315.4883720930233 11.674641148325371 C 315.9627906976745 12.102073365231249 316.20000000000016 11.77671451355651 316.6744186046514 12.105263157894743 C 317.1488372093023 12.433811802232743 317.3860465116278 13.31738437001595 317.8604651162787 13.31738437001595 C 318.33488372092995 13.31738437001595 318.57209302325555 13.004784688995215 319.0465116279068 12.360446570972886 C 319.52093023255804 11.716108452950557 319.7581395348837 10.695374800637993 320.23255813953494 10.095693779904305 C 320.70697674418614 9.496012759170691 320.94418604651185 9.636363636363726 321.41860465116304 9.362041467304632 C 321.89302325581394 9.087719298245702 322.1302325581394 8.72408293460925 322.60465116279033 8.72408293460925 C 323.07906976744164 8.72408293460925 323.31627906976723 9.473684210526326 323.7906976744185 9.473684210526326 C 324.26511627906973 9.473684210526326 324.5023255813953 8.648591174906969 324.9767441860466 8.022328548644342 C 325.4511627906978 7.396065922381715 325.6883720930235 7.086656034024726 326.1627906976747 6.342371079213187 C 326.63720930232563 5.598086124402184 326.87441860465105 4.5667198298777265 327.34883720930196 4.300903774587987 C 327.8232558139532 4.035087719298247 328.0604651162788 4.035087719298247 328.5348837209301 4.035087719298247 C 329.00930232558136 4.035087719298247 329.24651162790695 4.153110047846892 329.7209302325582 5.358851674641151 C 330.19534883720945 6.56459330143541 330.4325581395351 10.063795853269543 330.90697674418635 10.063795853269543 C 331.3813953488373 10.063795853269543 331.6186046511627 9.665071770334933 332.09302325581365 9.665071770334933 C 332.5674418604649 9.665071770334933 332.8046511627905 10.956937799043072 333.27906976744174 10.956937799043072 C 333.753488372093 10.956937799043072 333.9906976744186 9.170653907496021 334.4651162790699 8.915470494417868 C 334.93953488372114 8.660287081339714 335.17674418604673 8.660287081339714 335.651162790698 8.660287081339714 C 336.1255813953489 8.660287081339714 336.3627906976743 8.743221690590131 336.8372093023253 8.787878787878796 C 337.3116279069765 8.832535885167488 337.5488372093022 8.883572567783105 338.0232558139534 8.883572567783105 C 338.4976744186047 8.883572567783105 338.73488372093027 8.73365231259969 339.2093023255815 8.564593301435416 C 339.68372093023277 8.395534290271142 339.92093023255836 8.038277511961734 340.39534883720967 8.038277511961734 C 340.8697674418606 8.038277511961734 341.106976744186 9.23444976076556 341.5813953488369 9.23444976076556 C 342.05581395348815 9.23444976076556 342.29302325581375 7.6182881446039445 342.76744186046506 7.6182881446039445 C 343.24186046511625 7.6182881446039445 343.47906976744196 7.913875598086186 343.95348837209315 8.383838383838388 C 344.42790697674445 8.853801169590701 344.66511627907005 9.96810207336523 345.1395348837213 9.96810207336523 C 345.6139534883722 9.96810207336523 345.8511627906977 9.585326953748016 346.3255813953486 9.585326953748016 C 346.79999999999984 9.585326953748016 347.0372093023255 10.637958532695379 347.5116279069767 10.637958532695379 C 347.98604651162793 10.637958532695379 348.22325581395353 10.229665071770372 348.69767441860483 10.03189792663478 C 349.172093023256 9.834130781499237 349.40930232558173 10.03189792663478 349.8837209302329 9.649122807017541 C 350.3581395348839 9.266347687400302 350.5953488372093 7.660818713450311 351.0697674418602 7.6182881446039445 C 351.54418604651147 7.575757575757578 351.7813953488371 7.575757575757578 352.25581395348837 7.575757575757578 C 352.7302325581396 7.575757575757578 352.96744186046527 9.17065390749601 353.44186046511646 9.393939393939394 C 353.91627906976737 9.617224880382778 354.15348837209285 9.617224880382778 354.62790697674376 9.617224880382778 C 355.10232558139495 9.617224880382778 355.3395348837206 9.617224880382778 355.81395348837185 9.553429027113243 C 356.2883720930231 9.489633173843707 356.52558139534875 9.027113237639561 357 9.027113237639561 C 357.47441860465125 9.027113237639561 357.71162790697684 9.186602870813406 358.1860465116281 9.266347687400323 C 358.6604651162794 9.346092503987249 358.897674418605 9.325890483785189 359.37209302325624 9.425837320574168 C 359.84651162790715 9.525784157363073 360.08372093023263 9.766081871345033 360.55813953488354 9.766081871345033 C 361.03255813953473 9.766081871345033 361.2697674418604 8.596491228070178 361.74418604651163 8.596491228070178 C 362.2186046511629 8.596491228070178 362.45581395348853 8.708133971291828 362.9302325581398 8.83572567783095 C 363.4046511627907 8.963317384369981 363.6418604651161 9.23444976076556 364.1162790697671 9.23444976076556 C 364.59069767441827 9.23444976076556 364.827906976744 8.593301435406644 365.30232558139517 8.038277511961734 C 365.77674418604647 7.483253588516691 366.01395348837207 6.858054226475311 366.4883720930233 6.459330143540676 C 366.9627906976745 6.060606060606088 367.20000000000016 6.108452950558217 367.6744186046514 6.0446570972886775 C 368.1488372093023 5.980861244019138 368.3860465116278 6.0446570972886775 368.8604651162787 5.980861244019138 C 369.33488372092995 5.917065390749599 369.57209302325555 3.8437001594896287 370.0465116279068 3.5885167464114858 C 370.52093023255804 3.333333333333343 370.7581395348837 3.333333333333343 371.23255813953494 3.333333333333343 C 371.7069767441862 3.333333333333343 371.9441860465118 3.964912280701678 372.41860465116304 4.194577352472095 C 372.89302325581394 4.424242424242347 373.1302325581394 4.3732057416268475 373.60465116279033 4.481658692185015 C 374.07906976744164 4.590111642743273 374.31627906976723 4.481658692185015 374.7906976744185 4.7368421052631575 C 375.26511627906973 4.9920255183413005 375.5023255813953 5.917065390749606 375.9767441860466 5.917065390749606 C 376.4511627906978 5.917065390749606 376.6883720930235 5.917065390749606 377.1627906976747 5.725677830940995 C 377.6372093023257 5.5342902711323845 377.87441860465105 4.7368421052631575 378.34883720930196 4.7368421052631575 C 378.8232558139532 4.7368421052631575 379.0604651162788 6.17543859649119 379.5348837209301 6.8261562998405125 C 380.00930232558136 7.476874003189757 380.24651162790695 7.6937799043062265 380.7209302325582 7.990430622009576 C 381.19534883720945 8.287081339712925 381.4325581395351 8.309409888357258 381.90697674418635 8.309409888357258 C 382.3813953488373 8.309409888357258 382.6186046511627 8.309409888357258 383.09302325581365 8.309409888357258 C 383.5674418604649 8.309409888357258 383.8046511627905 6.703880914407257 384.27906976744174 6.193514088250943 C 384.753488372093 5.683147262094629 384.9906976744186 5.683147262094629 385.4651162790699 5.683147262094629 C 385.93953488372114 5.683147262094629 386.17674418604673 6.852737905369208 386.651162790698 7.6076555023923405 C 387.1255813953489 8.362573099414929 387.3627906976743 8.896331738437167 387.8372093023253 9.45773524720893 C 388.3116279069765 10.019138755981029 388.5488372093022 10.414673046251995 389.0232558139534 10.414673046251995 C 389.4976744186047 10.414673046251995 389.73488372093027 10.098883572567786 390.2093023255815 9.888357256778313 C 390.68372093023277 9.67783094098884 390.92093023255836 9.590643274853901 391.39534883720967 9.362041467304632 C 391.8697674418606 9.133439659755552 392.106976744186 9.311004784688805 392.5813953488369 8.745348219032444 C 393.05581395348815 8.179691653375675 393.29302325581375 6.533758639021805 393.76744186046506 6.533758639021805 C 394.24186046511625 6.533758639021805 394.47906976744196 7.065390749601278 394.95348837209315 7.065390749601278 C 395.42790697674445 7.065390749601278 395.66511627907005 6.414673046252228 396.1395348837213 5.757575757575758 C 396.6139534883722 5.100478468899759 396.8511627906977 3.7799043062201036 397.3255813953486 3.7799043062201036 C 397.79999999999984 3.7799043062201036 398.0372093023255 4.331738437001613 398.5116279069767 4.593301435406701 C 398.98604651162793 4.854864433811821 399.22325581395353 5.087719298245624 399.69767441860483 5.087719298245624 C 400.172093023256 5.087719298245624 400.40930232558173 3.9819245082403043 400.8837209302329 3.9819245082403043 C 401.3581395348839 3.9819245082403043 401.5953488372093 4.768740031897934 402.0697674418602 4.768740031897934 C 402.54418604651147 4.768740031897934 402.7813953488371 4.545454545454547 403.25581395348837 4.545454545454547 C 403.7302325581396 4.545454545454547 403.96744186046527 5.326953748006297 404.44186046511646 5.6140350877193015 C 404.91627906976737 5.901116427432134 405.15348837209285 5.6140350877193015 405.62790697674376 5.980861244019138 C 406.10232558139495 6.347687400318975 406.3395348837206 7.352472089314222 406.81395348837185 7.751196172248818 C 407.2883720930231 8.149920255183414 407.52558139534875 7.751196172248818 408 8.149920255183414 C 408.47441860465125 8.54864433811801 408.71162790697684 10.425305688463588 409.1860465116281 10.425305688463588 C 409.6604651162794 10.425305688463588 409.89767441860494 9.349282296650994 410.37209302325624 8.702817650186077 C 410.84651162790715 8.056353003721703 411.08372093023263 7.1929824561403635 411.55813953488354 7.1929824561403635 C 412.03255813953473 7.1929824561403635 412.2697674418604 8.398724082934615 412.74418604651163 8.851674641148332 C 413.2186046511629 9.304625199362047 413.45581395348853 9.05582137161069 413.9302325581398 9.457735247208944 C 414.4046511627906 9.859649122806863 414.6418604651161 10.86124401913876 415.116279069767 10.86124401913876 C 415.5906976744183 10.86124401913876 415.8279069767439 10.637958532695379 416.30232558139517 10.637958532695379 C 416.77674418604647 10.637958532695379 417.01395348837207 11.743753322700698 417.4883720930233 11.743753322700698 C 417.9627906976745 11.743753322700698 418.20000000000016 10.467836257309951 418.6744186046514 10.467836257309951 C 419.1488372093023 10.467836257309951 419.3860465116278 13.125996810207344 419.8604651162787 13.125996810207344 C 420.33488372092995 13.125996810207344 420.57209302325555 11.690590111642738 421.0465116279068 11.435406698564595 C 421.52093023255804 11.180223285486452 421.7581395348837 11.180223285486452 422.23255813953494 11.180223285486452 C 422.70697674418625 11.180223285486452 422.94418604651185 11.180223285486452 423.41860465116304 11.180223285486452 C 423.89302325581394 11.180223285486452 424.1302325581394 11.44178628389179 424.60465116279033 12.009569377990434 C 425.07906976744164 12.577352472089554 425.3162790697672 13.179160021265234 425.7906976744185 14.019138755980862 C 426.26511627906973 14.85911749069639 426.5023255813953 16.20946305156832 426.9767441860466 16.20946305156832 C 427.4511627906979 16.20946305156832 427.6883720930235 14.816586921850089 428.1627906976747 14.816586921850089 C 428.6372093023257 14.816586921850089 428.87441860465105 14.851674641148337 429.34883720930196 14.86443381180224 C 429.82325581395327 14.877192982456153 430.0604651162788 14.86443381180224 430.5348837209301 14.880382775119624 C 431.0093023255813 14.89633173843701 431.24651162790695 15.059011164274331 431.7209302325582 15.677830940988844 C 432.19534883720945 16.296650717703358 432.4325581395351 17.591706539074966 432.90697674418635 17.97448165869219 C 433.3813953488373 18.357256778309416 433.6186046511627 18.242424242424285 434.09302325581365 18.357256778309416 C 434.5674418604649 18.472089314194616 434.8046511627905 18.54864433811802 435.27906976744174 18.54864433811802 C 435.75348837209293 18.54864433811802 435.9906976744186 18.49441786283892 436.4651162790699 17.97448165869219 C 436.9395348837212 17.45454545454546 437.17674418604673 16.5741626794261 437.651162790698 15.948963317384369 C 438.12558139534883 15.323763955343164 438.3627906976743 14.848484848484851 438.8372093023253 14.848484848484851 C 439.3116279069765 14.848484848484851 439.5488372093021 16.889952153110052 440.0232558139534 16.889952153110052 C 440.4976744186047 16.889952153110052 440.73488372093027 16.85380116959061 441.2093023255815 16.220095693779907 C 441.6837209302328 15.586390217969129 441.92093023255836 13.721424774056352 442.39534883720967 13.721424774056352 C 442.8697674418606 13.721424774056352 443.10697674418606 14.550770866560342 443.5813953488369 14.550770866560342 C 444.05581395348815 14.550770866560342 444.29302325581375 13.232323232323319 444.76744186046506 12.488038277511958 C 445.24186046511625 11.743753322700776 445.47906976744196 11.409888357256705 445.95348837209315 10.829346092503986 C 446.42790697674445 10.248803827751129 446.66511627907005 9.91387559808625 447.1395348837213 9.585326953748016 C 447.6139534883722 9.256778309410016 447.8511627906977 9.266347687400334 448.3255813953486 9.186602870813406 C 448.79999999999984 9.106858054226478 449.0372093023255 9.186602870813406 449.5116279069767 9.106858054226478 C 449.98604651162793 9.02711323763955 450.22325581395353 8.74534821903244 450.69767441860483 8.702817650186077 C 451.1720930232561 8.660287081339714 451.4093023255817 8.702817650186077 451.8837209302329 8.660287081339714 C 452.3581395348839 8.61775651249335 452.5953488372094 7.767145135566196 453.0697674418602 7.767145135566196 C 453.54418604651147 7.767145135566196 453.7813953488371 7.910685805422652 454.25581395348837 7.910685805422652 C 454.7302325581396 7.910685805422652 454.96744186046527 6.500797448166025 455.44186046511646 5.980861244019138 C 455.91627906976737 5.460925039872563 456.15348837209285 5.311004784688997 456.62790697674376 5.311004784688997 C 457.10232558139495 5.311004784688997 457.3395348837206 5.853269537480067 457.81395348837185 5.853269537480067 C 458.2883720930231 5.853269537480067 458.52558139534875 4.534821903242971 459 4.407230196703885 C 459.47441860465125 4.2796384901648 459.7116279069769 4.2796384901648 460.1860465116281 4.2796384901648 C 460.6604651162794 4.2796384901648 460.89767441860494 4.577352472089302 461.37209302325624 4.641148325358849 C 461.84651162790715 4.704944178628395 462.08372093023263 4.641148325358849 462.55813953488354 4.704944178628395 C 463.03255813953473 4.768740031897941 463.2697674418604 7.256778309409896 463.74418604651163 7.256778309409896 C 464.2186046511629 7.256778309409896 464.45581395348853 6.765550239234616 464.9302325581398 6.395534290271144 C 465.4046511627906 6.025518341307981 465.6418604651161 5.406698564593306 466.116279069767 5.406698564593306 C 466.5906976744183 5.406698564593306 466.8279069767439 7.63955342902711 467.30232558139517 8.256246677299313 C 467.77674418604636 8.872939925571515 468.01395348837195 8.872939925571515 468.48837209302326 8.872939925571515 C 468.9627906976745 8.872939925571515 469.20000000000016 8.149920255183396 469.6744186046514 8.054226475279105 C 470.1488372093023 7.958532695374814 470.3860465116278 7.958532695374814 470.8604651162787 7.958532695374814 C 471.33488372092995 7.958532695374814 471.57209302325555 8.149920255183414 472.0465116279068 8.149920255183414 C 472.52093023255804 8.149920255183414 472.7581395348837 6.682615629984049 473.23255813953494 6.682615629984049 C 473.70697674418625 6.682615629984049 473.94418604651185 8.149920255183414 474.41860465116304 8.149920255183414 C 474.89302325581394 8.149920255183414 475.1302325581394 7.93726741095162 475.60465116279033 7.93726741095162 C 476.07906976744164 7.93726741095162 476.3162790697672 7.954279638490166 476.7906976744185 8.022328548644342 C 477.26511627906973 8.09037745879851 477.5023255813953 8.121212121212128 477.9767441860466 8.277511961722485 C 478.4511627906979 8.433811802232862 478.6883720930235 8.755980861244023 479.1627906976747 8.803827751196177 C 479.6372093023257 8.851674641148332 479.87441860465105 8.819776714513576 480.34883720930196 8.851674641148332 C 480.82325581395327 8.883572567783116 481.0604651162788 8.963317384370026 481.5348837209301 8.963317384370026 C 482.0093023255813 8.963317384370026 482.24651162790695 5.948963317384376 482.7209302325582 5.948963317384376 C 483.19534883720945 5.948963317384376 483.4325581395351 5.948963317384376 483.90697674418635 6.257309941520475 C 484.3813953488373 6.565656565656575 484.6186046511627 9.276980329611902 485.09302325581365 9.383306751727805 C 485.5674418604649 9.489633173843707 485.8046511627905 9.383306751727805 486.27906976744174 9.489633173843707 C 486.75348837209293 9.59595959595961 486.9906976744186 11.531100478468908 487.4651162790699 11.531100478468908 C 487.9395348837212 11.531100478468908 488.17674418604673 8.688995215311436 488.651162790698 7.671451355661887 C 489.12558139534883 6.653907496013192 489.3627906976743 6.762360446570891 489.8372093023253 6.443381180223298 C 490.3116279069765 6.124401913875515 490.5488372093021 6.076555023923447 491.0232558139534 6.076555023923447 C 491.4976744186047 6.076555023923447 491.73488372093027 6.076555023923447 492.2093023255815 6.172248803827756 C 492.6837209302328 6.267942583732065 492.92093023255836 6.852737905369473 493.39534883720967 6.89526847421584 C 493.8697674418606 6.937799043062206 494.10697674418606 6.916533758639035 494.5813953488369 6.937799043062206 C 495.05581395348815 6.959064327485395 495.29302325581375 7.0015948963317385 495.76744186046506 7.0015948963317385 C 496.24186046511625 7.0015948963317385 496.47906976744196 6.427432216905906 496.95348837209315 6.427432216905906 C 497.4279069767441 6.427432216905906 497.6651162790695 7.4800637958533995 498.13953488372044 7.894736842105267 C 498.6139534883717 8.309409888357383 498.85116279069734 7.894736842105267 499.3255813953486 8.500797448165866 C 499.79999999999984 9.106858054226464 500.0372093023255 9.963849016480665 500.5116279069767 11.127060074428496 C 500.98604651162793 12.290271132376466 501.22325581395353 14.316852737905368 501.69767441860483 14.316852737905368 C 502.1720930232561 14.316852737905368 502.4093023255817 12.615629984051044 502.8837209302329 12.615629984051044 C 503.3581395348839 12.615629984051044 503.5953488372094 13.786283891547326 504.0697674418602 14.417862838915479 C 504.54418604651147 15.049441786284163 504.7813953488371 15.773524720893143 505.25581395348837 15.773524720893143 C 505.7302325581396 15.773524720893143 505.96744186046527 15.518341307815 506.44186046511646 15.518341307815 C 506.91627906976737 15.518341307815 507.15348837209285 16.1244019138756 507.62790697674376 16.1244019138756 C 508.10232558139495 16.1244019138756 508.3395348837206 15.380116959064328 508.81395348837185 15.380116959064328 C 509.2883720930231 15.380116959064328 509.52558139534875 17.121743753322704 510 17.761828814460397 C 510.47441860465125 18.40191387559809 510.7116279069769 18.580542264752793 511.1860465116281 18.580542264752793 C 511.6604651162794 18.580542264752793 511.89767441860494 18.188197767145216 512.3720930232562 17.99043062200957 C 512.846511627907 17.792663476874086 513.0837209302325 17.99043062200957 513.5581395348835 17.591706539074963 C 514.0325581395348 17.192982456140356 514.2697674418604 15.933014354066984 514.7441860465117 15.486443381180223 C 515.218604651163 15.039872408293462 515.4558139534886 15.039872408293462 515.9302325581398 15.039872408293462 C 516.4046511627906 15.039872408293462 516.6418604651161 15.295055821371616 517.1162790697671 15.295055821371616 C 517.5906976744184 15.295055821371616 517.8279069767439 15.295055821371616 518.3023255813952 15.18872939925572 C 518.7767441860464 15.082402977139825 519.013953488372 14.162679425837336 519.4883720930233 14.114832535885181 C 519.9627906976744 14.066985645933027 520.2000000000002 14.066985645933027 520.6744186046514 14.066985645933027 C 521.1488372093023 14.066985645933027 521.3860465116277 15.805422647527916 521.8604651162786 15.805422647527916 C 522.33488372093 15.805422647527916 522.5720930232555 15.566188197767147 523.0465116279069 15.566188197767147 C 523.520930232558 15.566188197767147 523.7581395348838 15.566188197767147 524.232558139535 15.837320574162685 C 524.7069767441862 16.108452950558224 524.9441860465118 17.123870281765022 525.418604651163 17.123870281765022 C 525.8930232558139 17.123870281765022 526.1302325581394 17.123870281765022 526.6046511627903 17.10260499734185 C 527.0790697674416 17.081339712918677 527.3162790697672 16.395534290271133 527.7906976744184 16.283891547049443 C 528.2651162790696 16.172248803827753 528.5023255813953 16.25518341307815 528.9767441860466 16.172248803827753 C 529.4511627906979 16.089314194577355 529.6883720930234 15.869218500797452 530.1627906976747 15.869218500797452 C 530.6372093023257 15.869218500797452 530.8744186046512 16.74960127591735 531.348837209302 17.527910685805427 C 531.8232558139532 18.306220095694066 532.0604651162788 19.161084529505512 532.5348837209301 19.760765550239235 C 533.0093023255813 20.360446570972815 533.246511627907 20.11802232854865 533.7209302325582 20.526315789473692 C 534.1953488372094 20.934609250398733 534.4325581395351 21.802232854864435 534.9069767441863 21.802232854864435 C 535.3813953488373 21.802232854864435 535.6186046511627 20.68580542264753 536.0930232558136 20.68580542264753 C 536.5674418604649 20.68580542264753 536.8046511627905 22.29665071770335 537.2790697674418 22.29665071770335 C 537.753488372093 22.29665071770335 537.9906976744187 21.86602870813397 538.4651162790699 21.86602870813397 C 538.9395348837212 21.86602870813397 539.1767441860468 22.16267942583719 539.651162790698 22.51993620414673 C 540.1255813953488 22.877192982456016 540.3627906976743 23.14088250930375 540.8372093023253 23.65231259968103 C 541.3116279069766 24.163742690058672 541.5488372093021 24.575225943647006 542.0232558139534 25.077086656034034 C 542.4976744186047 25.578947368421062 542.7348837209304 25.68740031897927 543.2093023255816 26.161616161616166 C 543.6837209302328 26.63583200425306 543.9209302325584 26.84316852737884 544.3953488372097 27.4481658692185 C 544.8697674418606 28.053163211057726 545.1069767441861 29.186602870813395 545.581395348837 29.186602870813395 C 546.0558139534882 29.186602870813395 546.2930232558138 28.4688995215311 546.767441860465 28.4688995215311 C 547.2418604651162 28.4688995215311 547.479069767442 28.4688995215311 547.9534883720931 28.516746411483254 C 548.4279069767441 28.56459330143541 548.6651162790695 29.521531100478477 549.1395348837204 29.521531100478477 C 549.6139534883716 29.521531100478477 549.8511627906973 29.415204678362578 550.3255813953485 29.415204678362578 C 550.7999999999998 29.415204678362578 551.0372093023254 30.312599681020735 551.5116279069767 30.75491759702286 C 551.986046511628 31.197235513024985 552.2232558139536 31.62679425837321 552.6976744186048 31.62679425837321 C 553.1720930232561 31.62679425837321 553.4093023255816 29.569377990430624 553.8837209302329 29.569377990430624 C 554.3581395348839 29.569377990430624 554.5953488372094 29.649122807017612 555.0697674418602 29.840510366826155 C 555.5441860465114 30.031897926634837 555.781395348837 30.526315789473685 556.2558139534883 30.526315789473685 C 556.7302325581396 30.526315789473685 556.9674418604652 29.169590643275267 557.4418604651165 28.309409888357255 C 557.9162790697674 27.44922913344007 558.1534883720927 26.225412014885695 558.6279069767437 26.225412014885695 C 559.102325581395 26.225412014885695 559.3395348837206 26.927166400850616 559.8139534883719 26.927166400850616 C 560.2883720930231 26.927166400850616 560.5255813953488 25.91812865497076 561 25.566188197767147 C 561.4744186046512 25.21424774056353 561.7116279069769 25.167464114832537 562.1860465116281 25.167464114832537 C 562.6604651162794 25.167464114832537 562.897674418605 25.167464114832537 563.3720930232562 25.438596491228076 C 563.846511627907 25.709728867623614 564.0837209302325 26.478468899521694 564.5581395348835 26.9377990430622 C 565.0325581395348 27.397129186603035 565.2697674418604 27.405635300372143 565.7441860465117 27.73524720893142 C 566.218604651163 28.0648591174907 566.4558139534886 28.06698564593283 566.9302325581398 28.58585858585859 C 567.4046511627906 29.104731525783976 567.6418604651161 29.715045188729622 568.1162790697671 30.32961190855928 C 568.5906976744184 30.94417862838938 568.8279069767439 31.658692185007975 569.3023255813952 31.658692185007975 C 569.7767441860464 31.658692185007975 570.013953488372 30.414673046252076 570.4883720930233 29.68102073365231 C 570.9627906976744 28.94736842105272 571.2000000000002 28.858054226475495 571.6744186046514 27.990430622009576 C 572.1488372093023 27.122807017544076 572.3860465116277 26.17224880382746 572.8604651162786 25.34290271132377 C 573.33488372093 24.513556618819486 573.5720930232555 23.843700159489636 574.0465116279069 23.843700159489636 C 574.520930232558 23.843700159489636 574.7581395348838 24.405103668261695 575.232558139535 25.481127060074435 C 575.7069767441862 26.55715045188743 575.9441860465118 28.27538543327983 576.418604651163 29.22381711855396 C 576.8930232558139 30.172248803827408 577.1302325581394 29.956406166932585 577.6046511627903 30.223285486443384 C 578.0790697674416 30.49016480595438 578.3162790697672 30.478468899521527 578.7906976744184 30.55821371610845 C 579.2651162790696 30.637958532695375 579.5023255813953 30.637958532695375 579.9767441860466 30.637958532695375 C 580.4511627906979 30.637958532695375 580.6883720930234 30.248803827751264 581.1627906976747 30.06379585326954 C 581.6372093023257 29.87878787878795 581.8744186046512 30.06379585326954 582.348837209302 29.712918660287084 C 582.8232558139532 29.36204146730463 583.0604651162788 27.203615098351946 583.5348837209301 27.203615098351946 C 584.0093023255813 27.203615098351946 584.246511627907 27.516214779372675 584.7209302325582 27.884104199893674 C 585.1953488372094 28.251993620414673 585.4325581395351 28.674109516214692 585.9069767441863 29.04306220095694 C 586.3813953488373 29.412014885699012 586.6186046511627 29.0526315789477 587.0930232558136 29.728867623604472 C 587.5674418604649 30.40510366826189 587.8046511627905 32.04146730462519 588.2790697674418 32.42424242424242 C 588.753488372093 32.80701754385965 588.9906976744187 32.80701754385965 589.4651162790699 32.80701754385965 C 589.9395348837212 32.80701754385965 590.1767441860468 30.38277511961723 590.651162790698 30.38277511961723 C 591.1255813953488 30.38277511961723 591.3627906976743 30.47208931419489 591.8372093023253 31.350345560871872 C 592.3116279069766 32.22860180754949 592.5488372093021 34.77405635300373 593.0232558139534 34.77405635300373 C 593.4976744186047 34.77405635300373 593.7348837209304 33.41307814992026 594.2093023255816 33.41307814992026 C 594.6837209302328 33.41307814992026 594.9209302325584 34.40191387559808 595.3953488372097 34.40191387559808 C 595.8697674418606 34.40191387559808 596.1069767441861 34.26475279106842 596.581395348837 33.79585326953749 C 597.0558139534882 33.326953748006225 597.2930232558138 32.057416267942585 597.767441860465 32.057416267942585 C 598.2418604651162 32.057416267942585 598.479069767442 32.87081339712918 598.9534883720931 32.87081339712918 C 599.4279069767441 32.87081339712918 599.6651162790695 32.49867091972355 600.1395348837204 32.49867091972355 C 600.6139534883716 32.49867091972355 600.8511627906973 32.74960127591709 601.3255813953485 32.88144603934078 C 601.7999999999998 33.01329080276451 602.0372093023254 32.88144603934078 602.5116279069767 33.15789473684211 C 602.986046511628 33.43434343434344 603.2232558139536 34.45507708665603 603.6976744186048 34.45507708665603 C 604.1720930232561 34.45507708665603 604.4093023255816 33.75225943647011 604.8837209302329 33.317384370015944 C 605.3581395348839 32.88250930356209 605.5953488372094 32.36044657097288 606.0697674418602 32.280701754385966 C 606.5441860465114 32.20095693779905 606.781395348837 32.20095693779905 607.2558139534883 32.20095693779905 C 607.7302325581396 32.20095693779905 607.9674418604652 32.98777246145668 608.4418604651165 32.98777246145668 C 608.9162790697674 32.98777246145668 609.1534883720927 32.64114832535875 609.6279069767437 32.3498139287613 C 610.102325581395 32.05847953216364 610.3395348837206 31.876661350345607 610.8139534883719 31.5311004784689 C 611.2883720930231 31.18553960659228 611.5255813953488 31.017543859649127 612 30.622009569377994 C 612.4744186046512 30.22647527910686 612.7116279069769 29.55342902711324 613.1860465116281 29.55342902711324 C 613.6604651162794 29.55342902711324 613.897674418605 29.55342902711324 614.3720930232562 29.681020733652318 C 614.846511627907 29.808612440191396 615.0837209302325 30.3955342902713 615.5581395348835 30.861244019138756 C 616.0325581395348 31.32695374800655 616.2697674418604 31.881977671451352 616.7441860465117 32.00956937799043 C 617.218604651163 32.13716108452951 617.4558139534886 32.13716108452951 617.9302325581398 32.13716108452951 C 618.4046511627906 32.13716108452951 618.6418604651161 30.76555023923445 619.1162790697671 30.76555023923445 C 619.5906976744184 30.76555023923445 619.8279069767439 31.91387559808613 620.3023255813952 31.91387559808613 C 620.7767441860464 31.91387559808613 621.013953488372 31.91387559808613 621.4883720930233 31.85007974481659 C 621.9627906976744 31.78628389154705 622.2000000000002 31.671451355661947 622.6744186046514 31.403508771929825 C 623.1488372093023 31.135566188197835 623.3860465116277 30.797448165869117 623.8604651162786 30.5103668261563 C 624.33488372093 30.223285486443277 624.5720930232555 30.387028176501914 625.0465116279069 29.968102073365234 C 625.520930232558 29.549175970228653 625.7581395348838 29.123870281764948 626.232558139535 28.415736310473164 C 626.7069767441862 27.707602339181214 626.9441860465118 27.13450292397686 627.418604651163 26.4274322169059 C 627.8930232558139 25.72036150983545 628.1302325581394 25.390749601275736 628.6046511627903 24.88038277511962 C 629.0790697674416 24.37001594896314 629.3162790697672 23.875598086124405 629.7906976744184 23.875598086124405 C 630.2651162790696 23.875598086124405 630.5023255813953 25.885167464114833 630.9767441860466 25.885167464114833 C 631.4511627906979 25.885167464114833 631.6883720930234 24.8006379585327 632.1627906976747 24.8006379585327 C 632.6372093023257 24.8006379585327 632.8744186046512 27.054758107389674 633.348837209302 27.43753322700691 C 633.8232558139532 27.820308346624145 634.0604651162788 27.71610845295055 634.5348837209301 27.820308346624145 C 635.0093023255813 27.924508240297712 635.246511627907 27.820308346624145 635.7209302325582 27.9585326953748 C 636.1953488372094 28.096757044125454 636.4325581395351 28.315789473684152 636.9069767441863 28.56459330143541 C 637.3813953488373 28.813397129186548 637.6186046511627 29.202551834130784 638.0930232558136 29.202551834130784 C 638.5674418604649 29.202551834130784 638.8046511627905 29.071770334928264 639.2790697674418 28.7719298245614 C 639.753488372093 28.472089314194612 639.9906976744187 28.39978734715569 640.4651162790699 27.703349282296656 C 640.9395348837212 27.006911217437455 641.1767441860468 25.544922913343967 641.651162790698 25.289739500265817 C 642.1255813953488 25.034556087187667 642.3627906976743 25.259968102073284 642.8372093023253 25.034556087187667 C 643.3116279069766 24.809144072301887 643.5488372093021 24.162679425837325 644.0232558139534 24.162679425837325 C 644.4976744186047 24.162679425837325 644.7348837209304 24.545454545454547 645.2093023255816 24.609250398724086 C 645.6837209302328 24.673046251993625 645.9209302325584 24.609250398724086 646.3953488372097 24.673046251993625 C 646.8697674418606 24.736842105263165 647.1069767441861 24.992025518341308 647.581395348837 24.992025518341308 C 648.0558139534882 24.992025518341308 648.2930232558138 24.539074960127607 648.767441860465 24.3859649122807 C 649.2418604651162 24.23285486443383 649.479069767442 24.226475279106857 649.9534883720931 24.226475279106857 C 650.4279069767441 24.226475279106857 650.6651162790695 24.92822966507187 651.1395348837204 25.37480063795853 C 651.6139534883716 25.8213716108454 651.8511627906973 26.18181818181822 652.3255813953485 26.459330143540676 C 652.7999999999998 26.7368421052632 653.0372093023254 26.666666666666668 653.5116279069767 26.762360446570973 C 653.986046511628 26.858054226475275 654.2232558139536 26.9377990430622 654.6976744186048 26.9377990430622 C 655.1720930232561 26.9377990430622 655.4093023255816 25.183413078149925 655.8837209302329 25.183413078149925 C 656.3581395348839 25.183413078149925 656.5953488372094 25.453482190324397 657.0697674418602 25.72567783094099 C 657.5441860465114 25.99787347155778 657.781395348837 26.278575225943616 658.2558139534883 26.544391281233388 C 658.7302325581395 26.810207336523096 658.9674418604652 26.85486443381176 659.4418604651164 27.054758107389688 C 659.9162790697674 27.254651780967524 660.1534883720927 27.54385964912281 660.6279069767437 27.54385964912281 C 661.102325581395 27.54385964912281 661.3395348837206 25.99681020733653 661.8139534883719 25.99681020733653 C 662.2883720930231 25.99681020733653 662.5255813953488 25.99681020733653 663 26.044657097288678 C 663.4744186046512 26.092503987240825 663.7116279069769 26.555023923444974 664.1860465116281 26.586921850079747 C 664.6604651162794 26.61881977671452 664.897674418605 26.61881977671452 665.3720930232562 26.61881977671452 C 665.846511627907 26.61881977671452 666.0837209302325 25.355661881977476 666.5581395348835 24.779372674109524 C 667.0325581395348 24.20308346624116 667.2697674418604 24.30090377458799 667.7441860465117 23.73737373737374 C 668.218604651163 23.17384370015949 668.4558139534886 22.025518341307816 668.9302325581398 21.96172248803828 C 669.4046511627906 21.897926634768744 669.6418604651161 21.96172248803828 670.1162790697671 21.897926634768744 C 670.5906976744184 21.83413078149921 670.8279069767439 21.06539074960132 671.3023255813952 20.7177033492823 C 671.7767441860464 20.370015948963363 672.013953488372 20.35087719298248 672.4883720930233 20.159489633173845 C 672.9627906976744 19.968102073365255 673.2000000000002 19.760765550239235 673.6744186046514 19.760765550239235 C 674.1488372093023 19.760765550239235 674.3860465116277 19.760765550239235 674.8604651162786 19.824561403508778 C 675.33488372093 19.88835725677832 675.5720930232555 21.27060074428496 676.0465116279069 21.27060074428496 C 676.520930232558 21.27060074428496 676.7581395348838 20.43062200956938 677.232558139535 20.43062200956938 C 677.7069767441862 20.43062200956938 677.9441860465118 21.097288676235927 678.418604651163 21.4354066985646 C 678.8930232558139 21.773524720893025 679.1302325581394 22.12121212121212 679.6046511627903 22.12121212121212 C 680.0790697674416 22.12121212121212 680.3162790697672 22.12121212121212 680.7906976744184 21.48325358851675 C 681.2651162790696 20.845295055821378 681.5023255813953 17.272727272727277 681.9767441860466 17.272727272727277 C 682.4511627906979 17.272727272727277 682.6883720930234 17.96597554492283 683.1627906976747 18.20839978734716 C 683.6372093023257 18.450824029771315 683.8744186046512 18.48484848484849 684.348837209302 18.48484848484849 C 684.8232558139532 18.48484848484849 685.0604651162788 16.5390749601276 685.5348837209301 16.5390749601276 C 686.0093023255813 16.5390749601276 686.246511627907 17.135566188197767 686.7209302325582 17.54385964912281 C 687.1953488372094 17.952153110047846 687.4325581395351 18.28708133971285 687.9069767441863 18.580542264752793 C 688.3813953488373 18.874003189792596 688.6186046511627 19.011164274322173 689.0930232558136 19.011164274322173 C 689.5674418604649 19.011164274322173 689.8046511627905 18.80489101541735 690.2790697674418 18.64433811802233 C 690.753488372093 18.483785220627347 690.9906976744187 18.208399787347158 691.4651162790699 18.208399787347158 C 691.9395348837212 18.208399787347158 692.1767441860468 18.59968102073355 692.651162790698 18.910154173312073 C 693.1255813953488 19.220627325890376 693.3627906976743 19.760765550239235 693.8372093023253 19.760765550239235 C 694.3116279069766 19.760765550239235 694.5488372093021 19.537480063795858 695.0232558139534 19.314194577352477 C 695.4976744186047 19.0909090909091 695.7348837209304 18.644338118022336 696.2093023255816 18.644338118022336 C 696.6837209302328 18.644338118022336 696.9209302325584 19.0909090909091 697.3953488372097 19.0909090909091 C 697.8697674418605 19.0909090909091 698.1069767441861 18.835725677830943 698.581395348837 18.835725677830943 C 699.0558139534882 18.835725677830943 699.2930232558138 19.335459861775654 699.767441860465 19.335459861775654 C 700.2418604651162 19.335459861775654 700.479069767442 18.761297182349818 700.9534883720931 18.761297182349818 C 701.4279069767441 18.761297182349818 701.6651162790695 19.122807017543863 702.1395348837204 19.122807017543863 C 702.6139534883716 19.122807017543863 702.8511627906973 18.35725677830941 703.3255813953485 18.118022328548644 C 703.7999999999998 17.87878787878788 704.0372093023254 18.01594896331738 704.5116279069767 17.87878787878788 C 704.986046511628 17.741626794258373 705.2232558139536 17.43221690590112 705.6976744186048 17.43221690590112 C 706.1720930232561 17.43221690590112 706.4093023255816 17.517278043593784 706.8837209302329 17.6555023923445 C 707.3581395348839 17.793726741095114 707.5953488372094 18.12333864965444 708.0697674418602 18.12333864965444 C 708.5441860465114 18.12333864965444 708.781395348837 17.572567783094133 709.2558139534883 17.293992557150453 C 709.7302325581395 17.01541733120684 709.9674418604652 16.894205209994723 710.4418604651164 16.730462519936207 C 710.9162790697674 16.56671982987777 711.1534883720927 16.660287081339657 711.6279069767437 16.475279106858064 C 712.102325581395 16.29027113237634 712.3395348837206 15.805422647527916 712.8139534883719 15.805422647527916 C 713.2883720930231 15.805422647527916 713.5255813953488 16.63157894736843 714 16.937799043062206 C 714.4744186046512 17.244019138755988 714.7116279069769 17.192982456140374 715.1860465116281 17.336523125996816 C 715.6604651162794 17.480063795853294 715.897674418605 17.459861775651184 716.3720930232562 17.655502392344502 C 716.846511627907 17.85114300903768 717.0837209302325 18.314726209463053 717.5581395348835 18.314726209463053 C 718.0325581395348 18.314726209463053 718.2697674418605 18.229665071770334 718.7441860465117 18.229665071770334 C 719.218604651163 18.229665071770334 719.4558139534886 18.819776714513562 719.9302325581398 18.819776714513562 C 720.4046511627906 18.819776714513562 720.6418604651161 18.6762360446571 721.1162790697671 18.6762360446571 C 721.5906976744184 18.6762360446571 721.8279069767439 19.92025518341308 722.3023255813952 19.92025518341308 C 722.7767441860464 19.92025518341308 723.013953488372 18.995215311004795 723.4883720930233 18.771929824561408 C 723.9627906976744 18.54864433811802 724.2000000000002 18.54864433811802 724.6744186046514 18.54864433811802 C 725.1488372093023 18.54864433811802 725.3860465116277 18.569909622541203 725.8604651162786 18.569909622541203 C 726.33488372093 18.569909622541203 726.5720930232555 18.006379585326957 727.0465116279069 18.006379585326957 C 727.520930232558 18.006379585326957 727.7581395348838 18.580542264752793 728.232558139535 18.580542264752793 C 728.7069767441862 18.580542264752793 728.9441860465118 18.22966507177034 729.418604651163 18.22966507177034 C 729.8930232558139 18.22966507177034 730.1302325581395 18.781499202552 730.6046511627903 19.106858054226482 C 731.0790697674416 19.432216905901278 731.3162790697672 19.856459330143544 731.7906976744184 19.856459330143544 C 732.2651162790696 19.856459330143544 732.5023255813953 18.973950026581612 732.9767441860466 18.973950026581612 C 733.4511627906979 18.973950026581612 733.6883720930234 19.760765550239235 734.1627906976747 19.760765550239235 C 734.6372093023257 19.760765550239235 734.8744186046512 19.505582137161092 735.348837209302 19.505582137161092 C 735.8232558139532 19.505582137161092 736.0604651162788 19.505582137161092 736.5348837209301 19.505582137161092 C 737.0093023255813 19.505582137161092 737.246511627907 19.505582137161092 737.7209302325582 19.31419457735247 C 738.1953488372094 19.12280701754385 738.4325581395351 18.38915470494418 738.9069767441863 18.38915470494418 C 739.3813953488373 18.38915470494418 739.6186046511627 19.3992557150452 740.0930232558136 19.728867623604472 C 740.5674418604649 20.058479532163744 740.8046511627905 19.94152046783625 741.2790697674418 20.058479532163744 C 741.753488372093 20.175438596491215 741.9906976744187 20.313662945241894 742.4651162790699 20.313662945241894 C 742.9395348837212 20.313662945241894 743.1767441860468 19.82456140350877 743.651162790698 19.82456140350877 C 744.1255813953488 19.82456140350877 744.3627906976743 20.813397129186605 744.8372093023253 20.813397129186605 C 745.3116279069766 20.813397129186605 745.5488372093021 20.72089314194578 746.0232558139534 20.590111642743228 C 746.4976744186047 20.459330143540676 746.7348837209304 20.175438596491226 747.2093023255816 20.159489633173845 C 747.6837209302328 20.143540669856463 747.9209302325584 20.143540669856463 748.3953488372097 20.143540669856463 C 748.8697674418605 20.143540669856463 749.1069767441861 20.271132376395528 749.581395348837 20.271132376395528 C 750.0558139534882 20.271132376395528 750.2930232558138 19.888357256778313 750.767441860465 19.888357256778313 C 751.2418604651162 19.888357256778313 751.479069767442 20.303030303030308 751.9534883720931 20.303030303030308 C 752.4279069767441 20.303030303030308 752.6651162790695 19.362041467304625 753.1395348837204 19.362041467304625 C 753.6139534883716 19.362041467304625 753.8511627906973 19.396065922381737 754.3255813953485 19.569377990430628 C 754.7999999999998 19.742690058479557 755.0372093023254 19.99893673577884 755.5116279069767 20.228601807549175 C 755.986046511628 20.45826687931951 756.2232558139536 20.7177033492823 756.6976744186048 20.7177033492823 C 757.1720930232561 20.7177033492823 757.4093023255816 20.296650717703447 757.8837209302329 20.037214247740568 C 758.3581395348839 19.777777777777874 758.5953488372094 19.68633705475801 759.0697674418602 19.420520999468366 C 759.5441860465114 19.15470494417853 759.781395348837 18.901648059542826 760.2558139534883 18.708133971291872 C 760.7302325581395 18.514619883040965 760.9674418604652 18.523125996810222 761.4418604651164 18.452950558213715 C 761.9162790697674 18.38277511961724 762.1534883720927 18.452950558213715 762.6279069767437 18.357256778309413 C 763.102325581395 18.26156299840511 763.3395348837206 17.91068580542267 763.8139534883719 17.719298245614034 C 764.2883720930231 17.527910685805445 764.5255813953488 17.400318979266352 765 17.400318979266352 C 765.4744186046512 17.400318979266352 765.7116279069769 17.770334928229733 766.1860465116281 18.293460925039877 C 766.6604651162794 18.816586921850146 766.897674418605 19.518341307814815 767.3720930232562 20.015948963317385 C 767.846511627907 20.5135566188196 768.0837209302325 20.558213716108536 768.5581395348835 20.781499202551835 C 769.0325581395348 21.004784688995297 769.2697674418605 21.13237639553429 769.7441860465117 21.13237639553429 C 770.218604651163 21.13237639553429 770.4558139534886 20.972886762360456 770.9302325581398 20.972886762360456 C 771.4046511627906 20.972886762360456 771.6418604651161 21.32376395534291 772.1162790697671 21.419457735247214 C 772.5906976744184 21.51515151515152 772.8279069767439 21.51515151515152 773.3023255813952 21.51515151515152 C 773.7767441860464 21.51515151515152 774.013953488372 13.934077618288153 774.4883720930233 13.934077618288153 C 774.9627906976744 13.934077618288153 775.2000000000002 23.588516746411486 775.6744186046514 23.588516746411486 C 776.1488372093023 23.588516746411486 776.3860465116277 23.588516746411486 776.8604651162786 23.460925039872407 C 777.33488372093 23.33333333333333 777.5720930232555 16.96969696969697 778.0465116279069 16.96969696969697 C 778.520930232558 16.96969696969697 778.7581395348838 22.902711323763963 779.232558139535 23.7799043062201 C 779.7069767441862 24.657097288676237 779.9441860465118 24.255183413078008 780.418604651163 24.657097288676237 C 780.8930232558139 25.059011164274178 781.1302325581395 25.789473684210527 781.6046511627903 25.789473684210527 C 782.0790697674416 25.789473684210527 782.3162790697672 25.151515151515156 782.7906976744184 25.151515151515156 C 783.2651162790696 25.151515151515156 783.5023255813953 25.311004784689 783.9767441860466 25.311004784689 C 784.4511627906979 25.311004784689 784.6883720930234 24.864433811802236 785.1627906976747 24.864433811802236 C 785.6372093023257 24.864433811802236 785.8744186046512 25.167464114832537 786.348837209302 25.167464114832537 C 786.8232558139532 25.167464114832537 787.0604651162788 25.106858054226496 787.5348837209301 24.96012759170654 C 788.0093023255813 24.813397129186622 788.246511627907 24.64433811802233 788.7209302325582 24.433811802232853 C 789.1953488372094 24.22328548644338 789.4325581395351 23.99255715045189 789.9069767441863 23.90749601275917 C 790.3813953488373 23.822434875066453 790.6186046511627 23.90749601275917 791.0930232558136 23.822434875066453 C 791.5674418604649 23.737373737373733 791.8046511627905 22.822966507177036 792.2790697674418 22.822966507177036 C 792.753488372093 22.822966507177036 792.9906976744187 23.110047846889955 793.4651162790699 23.110047846889955 C 793.9395348837212 23.110047846889955 794.1767441860468 22.660287081339774 794.651162790698 22.48803827751196 C 795.1255813953488 22.315789473684273 795.3627906976743 22.2488038277512 795.8372093023253 22.2488038277512 C 796.3116279069766 22.2488038277512 796.5488372093021 23.046251993620373 797.0232558139534 23.39712918660287 C 797.4976744186046 23.748006379585284 797.7348837209302 23.616161616161623 798.2093023255815 24.003189792663484 C 798.6837209302328 24.39021796916535 798.9209302325584 24.581605528973594 799.3953488372097 25.332270069112177 C 799.8697674418605 26.08293460925004 800.1069767441861 27.45879851143009 800.581395348837 27.7565124933546 C 801.0558139534882 28.05422647527911 801.2930232558138 28.05422647527911 801.767441860465 28.05422647527911 C 802.2418604651162 28.05422647527911 802.479069767442 27.75438596491235 802.9534883720931 27.48006379585327 C 803.4279069767441 27.20574162679432 803.6651162790695 26.682615629984056 804.1395348837204 26.682615629984056 C 804.6139534883716 26.682615629984056 804.8511627906973 26.771929824561433 805.3255813953485 27.033492822966505 C 805.7999999999998 27.295055821371637 806.0372093023254 27.990430622009576 806.5116279069767 27.990430622009576 C 806.986046511628 27.990430622009576 807.2232558139536 27.522594364699636 807.6976744186048 27.522594364699636 C 808.1720930232561 27.522594364699636 808.4093023255816 27.73524720893142 808.8837209302329 27.73524720893142 C 809.3581395348839 27.73524720893142 809.5953488372094 27.63955342902706 810.0697674418602 27.480063795853276 C 810.5441860465114 27.320574162679375 810.781395348837 27.384370015949024 811.2558139534883 26.937799043062206 C 811.7302325581395 26.491228070175495 811.9674418604652 25.247208931419458 812.4418604651164 25.247208931419458 C 812.9162790697674 25.247208931419458 813.1534883720927 26.542264752791255 813.6279069767437 27.065390749601278 C 814.102325581395 27.588516746411674 814.3395348837206 27.862838915470498 814.8139534883719 27.862838915470498 C 815.2883720930231 27.862838915470498 816 27.713981924508243 816 27.713981924508243 L 816 40 L 0 40" zIndex="0"></path><path fill="none" d="M 0 16.826156299840513 C 0 16.826156299840513 0.7116279069768725 17.339712918660016 1.186046511628121 18.118022328548648 C 1.6604651162790347 18.896331738436732 1.8976744186044918 20.7177033492823 2.3720930232554056 20.7177033492823 C 2.846511627906654 20.7177033492823 3.0837209302322783 15.388623072833612 3.5581395348835265 13.444976076555037 C 4.032558139534775 11.501329080276461 4.269767441860399 12.032961190855934 4.744186046511647 10.999468367889424 C 5.218604651162896 9.965975544922912 5.45581395348852 8.421052631578938 5.930232558139768 8.277511961722485 C 6.404651162790683 8.133971291866033 6.641860465116139 8.133971291866033 7.116279069767053 8.133971291866033 C 7.590697674418301 8.133971291866033 7.827906976743925 8.21371610845296 8.302325581395174 8.21371610845296 C 8.776744186046422 8.21371610845296 9.013953488372046 6.858054226475289 9.488372093023294 6.858054226475289 C 9.962790697674544 6.858054226475289 10.200000000000168 7.228070175438497 10.674418604651416 7.511961722488039 C 11.14883720930233 7.79585326953738 11.386046511627786 8.277511961722496 11.8604651162787 8.277511961722496 C 12.334883720929948 8.277511961722496 12.572093023255572 8.013822434875063 13.04651162790682 7.42690058479532 C 13.520930232558067 6.839978734715578 13.758139534883691 5.342902711323781 14.232558139534941 5.342902711323781 C 14.70697674418619 5.342902711323781 14.944186046511813 8.484848484848499 15.418604651163063 8.484848484848499 C 15.893023255813977 8.484848484848499 16.130232558139433 8.022328548644342 16.604651162790347 8.022328548644342 C 17.079069767441595 8.022328548644342 17.31627906976722 9.269537480063798 17.790697674418467 9.952153110047849 C 18.265116279069716 10.6347687400319 18.50232558139534 11.435406698564595 18.976744186046588 11.435406698564595 C 19.451162790697836 11.435406698564595 19.68837209302346 11.435406698564595 20.16279069767471 11.041998936735787 C 20.637209302325623 10.64859117490698 20.87441860465108 9.404572036150988 21.348837209301994 9.404572036150988 C 21.823255813953246 9.404572036150988 22.06046511627887 10.223285486443388 22.534883720930114 10.223285486443388 C 23.009302325581366 10.223285486443388 23.24651162790699 8.18181818181818 23.720930232558235 8.086124401913878 C 24.195348837209487 7.990430622009576 24.43255813953511 7.990430622009576 24.90697674418636 7.990430622009576 C 25.381395348837273 7.990430622009576 25.61860465116273 9.097288676236229 26.09302325581364 9.601275917065397 C 26.567441860464886 10.105263157894921 26.804651162790513 10.510366826156307 27.27906976744176 10.510366826156307 C 27.75348837209301 10.510366826156307 27.99069767441863 9.043062200956953 28.465116279069882 9.043062200956953 C 28.93953488372113 9.043062200956953 29.176744186046754 9.043062200956953 29.651162790698006 9.53216374269006 C 30.125581395348917 10.021265284423166 30.362790697674377 11.160021265284662 30.837209302325288 11.818181818181824 C 31.311627906976536 12.476342371079452 31.54883720930216 12.822966507177032 32.02325581395341 12.822966507177032 C 32.49767441860466 12.822966507177032 32.734883720930284 11.183413078149913 33.20930232558153 10.574162679425832 C 33.68372093023278 9.96491228070175 33.920930232558405 9.776714513556623 34.39534883720965 9.776714513556623 C 34.86976744186056 9.776714513556623 35.10697674418602 10.584795321637639 35.581395348836935 11.169590643274862 C 36.05581395348818 11.754385964912496 36.29302325581381 12.245614035087732 36.767441860465055 12.700691121743763 C 37.241860465116304 13.155768208399795 37.47906976744193 13.269537480063793 37.953488372093176 13.444976076555022 C 38.427906976744424 13.620414673046252 38.66511627907005 13.444976076555022 39.139534883721296 13.620414673046252 C 39.61395348837222 13.795853269537481 39.85116279069767 15.08771929824562 40.325581395348586 15.23125996810208 C 40.79999999999983 15.37480063795854 41.03720930232546 15.37480063795854 41.511627906976706 15.37480063795854 C 41.986046511627954 15.37480063795854 42.22325581395357 14.306220095693778 42.69767441860483 14.306220095693778 C 43.17209302325607 14.306220095693778 43.4093023255817 14.306220095693778 43.88372093023295 14.42317916002127 C 44.358139534883854 14.540138224348762 44.595348837209315 15.124933545986323 45.06976744186023 15.528973950026582 C 45.544186046511484 15.933014354067131 45.7813953488371 16.161616161616163 46.25581395348835 16.443381180223287 C 46.7302325581396 16.725146198830412 46.96744186046523 16.937799043062206 47.44186046511647 16.937799043062206 C 47.916279069767725 16.937799043062206 48.15348837209334 14.94417862838916 48.62790697674459 14.94417862838916 C 49.102325581395505 14.94417862838916 49.339534883720965 15.377990430622118 49.81395348837188 15.677830940988837 C 50.28837209302313 15.977671451355768 50.52558139534875 16.443381180223287 51 16.443381180223287 C 51.47441860465125 16.443381180223287 51.71162790697688 13.551302498670932 52.18604651162812 13.530037214247752 C 52.660465116279035 13.508771929824572 52.897674418604495 13.508771929824572 53.3720930232554 13.508771929824572 C 53.84651162790665 13.508771929824572 54.08372093023227 14.976076555023914 54.55813953488352 16.060606060606062 C 55.032558139534764 17.14513556618818 55.2697674418604 18.146730462519947 55.74418604651164 18.93141945773525 C 56.2186046511629 19.71610845295057 56.455813953488516 19.984051036682615 56.930232558139764 19.984051036682615 C 57.40465116279067 19.984051036682615 57.64186046511613 17.304625199362043 58.11627906976705 17.304625199362043 C 58.5906976744183 17.304625199362043 58.82790697674393 17.398192450824034 59.30232558139517 17.6555023923445 C 59.77674418604643 17.91281233386497 60.013953488372046 17.795853269537478 60.488372093023294 18.59117490696438 C 60.96279069767454 19.38649654439128 61.20000000000017 20.543328017011856 61.674418604651414 21.632110579479004 C 62.14883720930233 22.720893141945403 62.38604651162778 23.114300903774918 62.8604651162787 24.035087719298247 C 63.33488372092995 24.955874534822236 63.57209302325557 26.236044657097292 64.04651162790682 26.236044657097292 C 64.52093023255807 26.236044657097292 64.7581395348837 24.130781499202556 65.23255813953494 24.130781499202556 C 65.70697674418619 24.130781499202556 65.94418604651182 24.86124401913854 66.41860465116307 25.454545454545453 C 66.89302325581397 26.047846889951938 67.13023255813944 26.927166400850616 67.60465116279035 27.097288676236047 C 68.0790697674416 27.26741095162148 68.3162790697672 27.26741095162148 68.79069767441847 27.26741095162148 C 69.2651162790697 27.26741095162148 69.50232558139535 26.214779372674112 69.97674418604659 26.034024455077088 C 70.45116279069785 25.853269537480063 70.68837209302346 25.853269537480063 71.16279069767471 25.853269537480063 C 71.63720930232562 25.853269537480063 71.87441860465108 27.86921850079787 72.34883720930199 29.04306220095694 C 72.82325581395324 30.216905901116853 73.06046511627886 31.72248803827751 73.53488372093011 31.72248803827751 C 74.00930232558136 31.72248803827751 74.24651162790698 29.8628389154705 74.72093023255823 29.154704944178633 C 75.19534883720948 28.446570972886768 75.4325581395351 28.181818181818183 75.90697674418635 28.181818181818183 C 76.38139534883726 28.181818181818183 76.61860465116271 29.81924508240298 77.09302325581363 29.81924508240298 C 77.56744186046488 29.81924508240298 77.80465116279052 27.3886230728336 78.27906976744177 26.544391281233388 C 78.75348837209302 25.700159489633176 78.99069767441864 25.59808612440192 79.46511627906989 25.59808612440192 C 79.93953488372114 25.59808612440192 80.17674418604676 26.523125996810208 80.65116279069801 26.523125996810208 C 81.12558139534892 26.523125996810208 81.36279069767438 24.274322169059023 81.83720930232529 24.003189792663484 C 82.31162790697654 23.732057416267946 82.54883720930215 23.732057416267946 83.02325581395341 23.732057416267946 C 83.49767441860465 23.732057416267946 83.7348837209303 24.62519936204148 84.20930232558153 24.928229665071775 C 84.6837209302328 25.231259968102087 84.9209302325584 25.247208931419458 85.39534883720965 25.247208931419458 C 85.86976744186056 25.247208931419458 86.10697674418603 25.247208931419458 86.58139534883693 25.11961722488038 C 87.05581395348818 24.9920255183413 87.29302325581381 21.35566188197767 87.76744186046506 21.35566188197767 C 88.2418604651163 21.35566188197767 88.47906976744193 23.9585326953748 88.95348837209318 24.992025518341308 C 89.42790697674442 26.025518341307816 89.66511627907005 26.11164274322154 90.1395348837213 26.523125996810208 C 90.6139534883722 26.934609250398577 90.85116279069766 26.77511961722497 91.32558139534858 27.049441786283893 C 91.79999999999981 27.323763955342994 92.03720930232546 27.894736842105267 92.5116279069767 27.894736842105267 C 92.98604651162796 27.894736842105267 93.22325581395357 27.7565124933546 93.69767441860482 27.7565124933546 C 94.17209302325607 27.7565124933546 94.40930232558169 29.372674109516222 94.88372093023294 29.670388091440728 C 95.35813953488386 29.968102073365234 95.59534883720933 29.968102073365234 96.06976744186024 29.968102073365234 C 96.54418604651148 29.968102073365234 96.7813953488371 27.802232854864478 97.25581395348836 26.539074960127596 C 97.73023255813959 25.275917065390793 97.96744186046524 23.684210526315788 98.44186046511648 23.65231259968102 C 98.9162790697674 23.620414673046255 99.15348837209285 23.620414673046255 99.62790697674376 23.620414673046255 C 100.10232558139501 23.620414673046255 100.33953488372063 25.39606592238171 100.81395348837188 25.9170653907496 C 101.28837209302313 26.43806485911749 101.52558139534875 26.43806485911749 102 26.43806485911749 C 102.47441860465123 26.43806485911749 102.71162790697687 25.311004784689217 103.18604651162812 24.715576820839985 C 103.66046511627903 24.120148856991182 103.8976744186045 23.460925039872407 104.3720930232554 23.460925039872407 C 104.84651162790665 23.460925039872407 105.08372093023226 23.716108452950564 105.55813953488352 23.716108452950564 C 106.03255813953476 23.716108452950564 106.26976744186041 22.37639553429027 106.74418604651164 22.37639553429027 C 107.2186046511629 22.37639553429027 107.45581395348852 23.189792663476606 107.93023255813976 23.923444976076553 C 108.40465116279067 24.65709728867597 108.64186046511614 26.044657097288678 109.11627906976705 26.044657097288678 C 109.5906976744183 26.044657097288678 109.8279069767439 25.338649654439127 110.30232558139517 24.949494949494948 C 110.77674418604643 24.56034024455077 111.01395348837204 24.63264221158958 111.48837209302329 24.098883572567786 C 111.96279069767454 23.565124933545988 112.20000000000016 22.781499202552002 112.67441860465141 22.28070175438597 C 113.14883720930234 21.779904306220264 113.38604651162777 21.59489633173844 113.8604651162787 21.59489633173844 C 114.33488372092995 21.59489633173844 114.57209302325558 21.86602870813397 115.04651162790682 21.86602870813397 C 115.52093023255807 21.86602870813397 115.75813953488368 21.515151515151523 116.23255813953494 20.972886762360456 C 116.7069767441862 20.43062200956939 116.94418604651182 19.154704944178636 117.41860465116307 19.154704944178636 C 117.89302325581397 19.154704944178636 118.13023255813944 19.154704944178636 118.60465116279035 19.27166400850612 C 119.0790697674416 19.388623072833607 119.3162790697672 19.429027113237627 119.79069767441847 19.90962254120149 C 120.2651162790697 20.390217969165324 120.50232558139535 21.674641148325364 120.97674418604659 21.674641148325364 C 121.45116279069785 21.674641148325364 121.68837209302346 20.95693779904306 122.16279069767471 20.95693779904306 C 122.63720930232562 20.95693779904306 122.87441860465108 22.185007974481664 123.34883720930199 22.185007974481664 C 123.82325581395324 22.185007974481664 124.06046511627888 22.13716108452951 124.53488372093011 22.13716108452951 C 125.00930232558134 22.13716108452951 125.24651162790698 23.359914938862303 125.72093023255823 23.811802232854863 C 126.19534883720948 24.26368952684742 126.4325581395351 24.396597554492296 126.90697674418635 24.396597554492296 C 127.38139534883726 24.396597554492296 127.61860465116274 24.396597554492296 128.09302325581365 24.35406698564593 C 128.5674418604649 24.311536416799562 128.80465116279052 23.205741626794264 129.27906976744177 23.205741626794264 C 129.75348837209302 23.205741626794264 129.99069767441864 23.205741626794264 130.4651162790699 23.55661881977672 C 130.93953488372114 23.907496012759175 131.17674418604676 25.074960127591428 131.651162790698 25.853269537480063 C 132.12558139534892 26.63157894736814 132.36279069767437 26.98245614035105 132.83720930232528 27.448165869218506 C 133.31162790697653 27.9138755980863 133.54883720930215 27.733120680489105 134.0232558139534 28.181818181818183 C 134.49767441860465 28.630515683147262 134.73488372093027 29.30037214247741 135.20930232558152 29.691653375863908 C 135.68372093023277 30.082934609250405 135.9209302325584 29.897926634768652 136.39534883720964 30.13822434875066 C 136.86976744186055 30.378522062732497 137.10697674418603 30.407230196704056 137.58139534883693 30.893141945773525 C 138.05581395348818 31.379053694843343 138.2930232558138 32.089314194577355 138.76744186046506 32.567783094098885 C 139.2418604651163 33.046251993620416 139.47906976744193 33.28548644338119 139.95348837209318 33.28548644338119 C 140.42790697674442 33.28548644338119 140.66511627907005 32.32854864433812 141.1395348837213 32.32854864433812 C 141.61395348837223 32.32854864433812 141.85116279069766 32.58373205741638 142.3255813953486 32.90271132376396 C 142.79999999999984 33.22169059011175 143.03720930232546 33.92344497607655 143.5116279069767 33.92344497607655 C 143.98604651162796 33.92344497607655 144.22325581395359 32.813397129186605 144.69767441860483 32.39234449760766 C 145.17209302325608 31.971291866028714 145.4093023255817 31.81818181818182 145.88372093023295 31.81818181818182 C 146.35813953488386 31.81818181818182 146.59534883720931 34.17862838915471 147.06976744186022 34.17862838915471 C 147.54418604651147 34.17862838915471 147.7813953488371 34.15948963317385 148.25581395348834 34.14673046251994 C 148.7302325581396 34.13397129186603 148.96744186046521 34.114832535885164 149.44186046511646 34.114832535885164 C 149.91627906976737 34.114832535885164 150.15348837209285 35.122807017544 150.62790697674376 35.51834130781499 C 151.102325581395 35.91387559808627 151.33953488372063 36.09250398724084 151.81395348837188 36.09250398724084 C 152.28837209302313 36.09250398724084 152.52558139534875 34.750664540138224 153 34.09356725146199 C 153.47441860465125 33.43646996278575 153.71162790697687 33.150451887294096 154.18604651162812 32.807017543859644 C 154.66046511627906 32.46358320042541 154.89767441860448 32.37639553429027 155.37209302325542 32.37639553429027 C 155.84651162790666 32.37639553429027 156.0837209302323 32.67942583732057 156.55813953488354 32.67942583732057 C 157.03255813953479 32.67942583732057 157.2697674418604 31.738437001594903 157.74418604651166 31.738437001594903 C 158.2186046511629 31.738437001594903 158.45581395348853 33.44497607655502 158.93023255813978 33.44497607655502 C 159.40465116279069 33.44497607655502 159.64186046511614 32.58585858585826 160.11627906976705 31.69059011164275 C 160.5906976744183 30.79532163742659 160.82790697674392 28.968633705475817 161.30232558139517 28.968633705475817 C 161.77674418604641 28.968633705475817 162.01395348837204 30.753854332801705 162.4883720930233 31.56299840510367 C 162.96279069767454 32.37214247740564 163.20000000000016 32.606060606060474 163.6744186046514 33.014354066985646 C 164.14883720930234 33.422647527910556 164.38604651162777 33.33333333333342 164.8604651162787 33.60446570972886 C 165.33488372092995 33.87559808612449 165.57209302325558 33.75757575757576 166.04651162790682 34.37001594896332 C 166.52093023255807 34.98245614035088 166.7581395348837 36.666666666666664 167.23255813953494 36.666666666666664 C 167.7069767441862 36.666666666666664 167.94418604651182 35.72248803827789 168.41860465116307 34.68899521531101 C 168.89302325581397 33.65550239234488 169.13023255813943 31.49920255183413 169.60465116279033 31.49920255183413 C 170.07906976744158 31.49920255183413 170.3162790697672 32.67942583732057 170.79069767441845 32.67942583732057 C 171.2651162790697 32.67942583732057 171.50232558139533 29.218500797448172 171.97674418604657 29.218500797448172 C 172.45116279069785 29.218500797448172 172.68837209302345 29.39393939393939 173.1627906976747 29.39393939393939 C 173.63720930232563 29.39393939393939 173.87441860465105 28.39872408293449 174.348837209302 28.022328548644342 C 174.82325581395324 27.645933014353947 175.06046511627886 27.51196172248804 175.5348837209301 27.51196172248804 C 176.00930232558136 27.51196172248804 176.24651162790698 28.75598086124402 176.72093023255823 28.75598086124402 C 177.19534883720948 28.75598086124402 177.4325581395351 28.441254651781044 177.90697674418635 28.224348750664543 C 178.3813953488373 28.007442849548188 178.6186046511627 28.07868155236563 179.09302325581365 27.671451355661883 C 179.5674418604649 27.264221158957866 179.80465116279052 26.94098883572568 180.27906976744177 26.188197767145137 C 180.75348837209302 25.435406698564595 180.99069767441864 24.488038277511965 181.4651162790699 23.90749601275917 C 181.93953488372114 23.32695374800638 182.17674418604676 23.28548644338118 182.651162790698 23.28548644338118 C 183.12558139534892 23.28548644338118 183.36279069767437 23.28548644338118 183.83720930232528 23.429027113237645 C 184.31162790697653 23.572567783094108 184.54883720930215 24.08399787347156 185.0232558139534 24.311536416799576 C 185.49767441860465 24.539074960127593 185.73488372093024 24.311536416799576 186.20930232558152 24.566719829877727 C 186.68372093023277 24.821903242955877 186.9209302325584 25.595959595959446 187.39534883720964 26.012759170653908 C 187.86976744186055 26.429558745348068 188.10697674418603 26.650717703349283 188.58139534883693 26.650717703349283 C 189.05581395348818 26.650717703349283 189.2930232558138 25.885167464114836 189.76744186046506 25.885167464114836 C 190.2418604651163 25.885167464114836 190.47906976744193 27.336523125996816 190.95348837209318 27.336523125996816 C 191.42790697674442 27.336523125996816 191.66511627907002 27.068580542265067 192.1395348837213 26.267942583732058 C 192.6139534883722 25.46730462519967 192.85116279069769 23.333333333333332 193.3255813953486 23.333333333333332 C 193.79999999999987 23.333333333333332 194.03720930232546 24.662413609782035 194.5116279069767 25.034556087187667 C 194.98604651162796 25.4066985645933 195.22325581395359 25.4066985645933 195.69767441860483 25.4066985645933 C 196.17209302325608 25.4066985645933 196.4093023255817 24.99202551834138 196.88372093023295 24.800637958532697 C 197.35813953488386 24.609250398724154 197.59534883720931 24.44976076555024 198.06976744186022 24.44976076555024 C 198.54418604651147 24.44976076555024 198.7813953488371 25.980861244019135 199.25581395348834 26.17224880382775 C 199.7302325581396 26.363636363636363 199.96744186046521 26.363636363636363 200.44186046511646 26.363636363636363 C 200.9162790697674 26.363636363636363 201.15348837209282 26.044657097288603 201.62790697674376 25.800106326422124 C 202.102325581395 25.555555555555483 202.33953488372063 25.44922913343967 202.81395348837188 25.14088250930357 C 203.28837209302313 24.83253588516747 203.52558139534875 24.258373205741627 204 24.258373205741627 C 204.47441860465125 24.258373205741627 204.71162790697687 24.33811802232856 205.18604651162812 24.33811802232856 C 205.660465116279 24.33811802232856 205.89767441860448 24.038277511961656 206.3720930232554 23.843700159489636 C 206.84651162790664 23.649122807017473 207.08372093023226 23.365231259968105 207.5581395348835 23.365231259968105 C 208.03255813953479 23.365231259968105 208.2697674418604 23.492822966507184 208.74418604651166 23.492822966507184 C 209.21860465116288 23.492822966507184 209.45581395348853 22.748538011696063 209.93023255813978 22.312599681020732 C 210.40465116279069 21.876661350345714 210.64186046511614 21.65762892078669 211.11627906976705 21.31313131313131 C 211.5906976744183 20.968633705475686 211.82790697674392 20.685805422647537 212.30232558139517 20.590111642743228 C 212.77674418604641 20.49441786283892 213.01395348837204 20.49441786283892 213.4883720930233 20.49441786283892 C 213.9627906976745 20.49441786283892 214.20000000000013 21.100478468899528 214.6744186046514 21.100478468899528 C 215.1488372093023 21.100478468899528 215.38604651162777 20.015948963317157 215.8604651162787 19.377990430622013 C 216.33488372092998 18.740031897926407 216.57209302325555 18.548644338118045 217.04651162790682 17.910685805422652 C 217.52093023255807 17.272727272727295 217.7581395348837 16.400850611376928 218.23255813953494 16.188197767145137 C 218.7069767441862 15.975544922913347 218.94418604651182 16.071238702817688 219.41860465116307 15.975544922913347 C 219.89302325581397 15.879851143009075 220.13023255813943 15.709728867623607 220.60465116279033 15.709728867623607 C 221.07906976744158 15.709728867623607 221.31627906976718 15.88516746411484 221.79069767441845 15.88516746411484 C 222.2651162790697 15.88516746411484 222.50232558139533 15.518341307815 222.97674418604657 15.518341307815 C 223.45116279069785 15.518341307815 223.68837209302347 16.701754385964623 224.1627906976747 17.671451355661883 C 224.63720930232563 18.64114832535856 224.87441860465105 20.366826156299844 225.348837209302 20.366826156299844 C 225.82325581395327 20.366826156299844 226.06046511627886 20.009569377990434 226.5348837209301 19.377990430622013 C 227.00930232558136 18.746411483253592 227.24651162790695 17.368421052631582 227.72093023255823 17.208931419457738 C 228.19534883720948 17.049441786283893 228.4325581395351 17.049441786283893 228.90697674418635 17.049441786283893 C 229.38139534883732 17.049441786283893 229.61860465116268 17.161084529505583 230.09302325581365 17.161084529505583 C 230.5674418604649 17.161084529505583 230.80465116279052 17.017543859649127 231.27906976744177 17.017543859649127 C 231.75348837209305 17.017543859649127 231.99069767441864 18.452950558213715 232.4651162790699 18.452950558213715 C 232.93953488372114 18.452950558213715 233.17674418604673 18.39128123338657 233.651162790698 18.197767145135572 C 234.12558139534895 18.004253056884714 234.36279069767437 17.793726741095053 234.83720930232528 17.485380116959067 C 235.31162790697653 17.177033492822858 235.54883720930215 17.030303030303028 236.0232558139534 16.656034024455085 C 236.49767441860467 16.28176501860712 236.73488372093024 15.614035087719301 237.20930232558152 15.614035087719301 C 237.68372093023277 15.614035087719301 237.9209302325584 17.352472089313913 238.39534883720964 18.149920255183417 C 238.86976744186055 18.94736842105235 239.10697674418603 18.80382775119646 239.58139534883693 19.601275917065394 C 240.05581395348818 20.3987240829349 240.2930232558138 22.137161084529513 240.76744186046506 22.137161084529513 C 241.2418604651163 22.137161084529513 241.47906976744193 21.70653907496013 241.95348837209318 21.70653907496013 C 242.42790697674445 21.70653907496013 242.66511627907002 22.737905369484324 243.1395348837213 22.737905369484324 C 243.61395348837223 22.737905369484324 243.8511627906977 22.737905369484324 244.3255813953486 22.50398724082935 C 244.79999999999987 22.270069112174376 245.0372093023255 21.25996810207337 245.5116279069767 21.25996810207337 C 245.98604651162796 21.25996810207337 246.22325581395359 22.21690590111643 246.69767441860483 22.21690590111643 C 247.17209302325608 22.21690590111643 247.4093023255817 22.169059011164514 247.88372093023295 21.51515151515152 C 248.35813953488386 20.861244019138994 248.59534883720931 19.623604465709487 249.06976744186022 18.947368421052634 C 249.54418604651147 18.271132376395293 249.78139534883712 18.25093035619353 250.25581395348834 18.133971291866036 C 250.7302325581396 18.017012227538544 250.96744186046521 18.133971291866036 251.44186046511646 18.017012227538544 C 251.91627906976737 17.90005316321105 252.15348837209285 17.67038809144067 252.62790697674376 17.52791068580542 C 253.102325581395 17.38543328017007 253.33953488372063 17.304625199362043 253.81395348837188 17.304625199362043 C 254.2883720930231 17.304625199362043 254.52558139534875 17.754385964912284 255 17.958532695374803 C 255.47441860465125 18.162679425837325 255.71162790697684 18.019138755980883 256.1860465116281 18.325358851674643 C 256.6604651162794 18.631578947368443 256.897674418605 19.489633173843703 257.37209302325624 19.489633173843703 C 257.84651162790715 19.489633173843703 258.08372093023263 19.128123338649623 258.55813953488354 18.99521531100479 C 259.03255813953473 18.862307283359883 259.2697674418604 18.825093035619357 259.74418604651163 18.825093035619357 C 260.2186046511629 18.825093035619357 260.45581395348853 19.005847953216268 260.9302325581398 19.314194577352477 C 261.4046511627907 19.622541201488463 261.6418604651161 19.837320574162845 262.1162790697671 20.366826156299844 C 262.5906976744183 20.896331738437162 262.8279069767439 21.802232854864425 263.30232558139517 21.961722488038276 C 263.7767441860464 22.121212121212128 264.01395348837207 21.961722488038276 264.4883720930233 22.121212121212128 C 264.9627906976745 22.28070175438598 265.20000000000016 22.69218500797427 265.6744186046514 23.28548644338118 C 266.1488372093023 23.878787878787666 266.3860465116278 25.08771929824562 266.8604651162787 25.08771929824562 C 267.33488372092995 25.08771929824562 267.57209302325555 23.758639021796913 268.0465116279068 23.758639021796913 C 268.52093023255804 23.758639021796913 268.7581395348837 23.95002658160553 269.23255813953494 23.95002658160553 C 269.70697674418614 23.95002658160553 269.94418604651185 23.2695374800638 270.41860465116304 23.2695374800638 C 270.89302325581394 23.2695374800638 271.1302325581394 23.464114832536033 271.60465116279033 23.79585326953749 C 272.07906976744164 24.127591706539224 272.31627906976723 24.928229665071775 272.7906976744185 24.928229665071775 C 273.26511627906973 24.928229665071775 273.5023255813953 24.928229665071775 273.9767441860466 24.736842105263158 C 274.4511627906978 24.54545454545454 274.6883720930235 24.341307814992298 275.1627906976747 23.588516746411486 C 275.63720930232563 22.835725677831217 275.87441860465105 21.670388091440483 276.34883720930196 20.972886762360456 C 276.8232558139532 20.27538543327993 277.0604651162788 20.45188729399256 277.5348837209301 20.101010101010104 C 278.0093023255814 19.750132908027645 278.246511627907 19.218500797448172 278.72093023255826 19.218500797448172 C 279.1953488372095 19.218500797448172 279.4325581395351 19.55342902711324 279.90697674418635 19.55342902711324 C 280.3813953488373 19.55342902711324 280.6186046511627 18.312599681020586 281.09302325581365 17.814992025518343 C 281.5674418604649 17.3173843700158 281.8046511627905 17.06539074960128 282.27906976744174 17.06539074960128 C 282.753488372093 17.06539074960128 282.9906976744186 18.038277511961727 283.4651162790699 18.038277511961727 C 283.93953488372114 18.038277511961727 284.17674418604673 17.761828814460397 284.651162790698 17.761828814460397 C 285.1255813953489 17.761828814460397 285.3627906976743 18.178628389154767 285.8372093023253 18.399787347155765 C 286.3116279069765 18.620946305156895 286.5488372093022 18.867623604465717 287.0232558139534 18.867623604465717 C 287.4976744186047 18.867623604465717 287.73488372093027 18.18181818181819 288.2093023255815 17.735247208931426 C 288.68372093023277 17.28867623604466 288.92093023255836 17.20255183413102 289.39534883720967 16.634768740031898 C 289.8697674418606 16.066985645933254 290.106976744186 15.368421052631412 290.5813953488369 14.896331738437006 C 291.05581395348815 14.424242424242259 291.2930232558138 14.734715576820845 291.76744186046506 14.274322169059015 C 292.2418604651163 13.813928761297186 292.4790697674419 13.028176501860715 292.95348837209315 12.59436469962786 C 293.4279069767444 12.160552897395007 293.66511627907005 12.286018075491832 294.1395348837213 12.105263157894743 C 294.6139534883722 11.924508240297785 294.8511627906977 11.690590111642742 295.3255813953486 11.690590111642742 C 295.79999999999984 11.690590111642742 296.0372093023255 12.16905901116428 296.5116279069767 12.16905901116428 C 296.98604651162793 12.16905901116428 297.2232558139536 11.578947368421058 297.69767441860483 11.244019138755988 C 298.1720930232561 10.909090909090917 298.4093023255817 11.049441786284069 298.8837209302329 10.494417862838926 C 299.3581395348839 9.939393939394117 299.5953488372093 9.20999468367863 300.0697674418602 8.468899521531103 C 300.54418604651147 7.727804359383042 300.7813953488371 6.788942052099948 301.25581395348837 6.788942052099948 C 301.7302325581396 6.788942052099948 301.96744186046527 6.799574694311416 302.44186046511646 7.192982456140349 C 302.91627906976737 7.586390217969046 303.15348837209285 8.012759170654132 303.62790697674376 8.755980861244023 C 304.10232558139495 9.499202551834358 304.3395348837206 10.701754385964922 304.81395348837185 10.909090909090914 C 305.2883720930231 11.116427432216906 305.52558139534875 10.953748006379582 306 11.116427432216906 C 306.47441860465125 11.279106858054227 306.71162790697684 11.690590111642763 307.1860465116281 11.722488038277525 C 307.6604651162794 11.754385964912288 307.897674418605 11.722488038277525 308.37209302325624 11.754385964912288 C 308.84651162790715 11.78628389154705 309.08372093023263 12.232854864433826 309.55813953488354 12.232854864433826 C 310.03255813953473 12.232854864433826 310.2697674418604 12.041467304625208 310.74418604651163 12.041467304625208 C 311.2186046511629 12.041467304625208 311.45581395348853 12.105263157894743 311.9302325581398 12.105263157894743 C 312.4046511627907 12.105263157894743 312.6418604651161 10.858054226475165 313.1162790697671 10.43062200956939 C 313.5906976744183 10.00318979266336 313.8279069767439 9.96810207336523 314.30232558139517 9.96810207336523 C 314.7767441860464 9.96810207336523 315.01395348837207 11.247208931419443 315.4883720930233 11.674641148325371 C 315.9627906976745 12.102073365231249 316.20000000000016 11.77671451355651 316.6744186046514 12.105263157894743 C 317.1488372093023 12.433811802232743 317.3860465116278 13.31738437001595 317.8604651162787 13.31738437001595 C 318.33488372092995 13.31738437001595 318.57209302325555 13.004784688995215 319.0465116279068 12.360446570972886 C 319.52093023255804 11.716108452950557 319.7581395348837 10.695374800637993 320.23255813953494 10.095693779904305 C 320.70697674418614 9.496012759170691 320.94418604651185 9.636363636363726 321.41860465116304 9.362041467304632 C 321.89302325581394 9.087719298245702 322.1302325581394 8.72408293460925 322.60465116279033 8.72408293460925 C 323.07906976744164 8.72408293460925 323.31627906976723 9.473684210526326 323.7906976744185 9.473684210526326 C 324.26511627906973 9.473684210526326 324.5023255813953 8.648591174906969 324.9767441860466 8.022328548644342 C 325.4511627906978 7.396065922381715 325.6883720930235 7.086656034024726 326.1627906976747 6.342371079213187 C 326.63720930232563 5.598086124402184 326.87441860465105 4.5667198298777265 327.34883720930196 4.300903774587987 C 327.8232558139532 4.035087719298247 328.0604651162788 4.035087719298247 328.5348837209301 4.035087719298247 C 329.00930232558136 4.035087719298247 329.24651162790695 4.153110047846892 329.7209302325582 5.358851674641151 C 330.19534883720945 6.56459330143541 330.4325581395351 10.063795853269543 330.90697674418635 10.063795853269543 C 331.3813953488373 10.063795853269543 331.6186046511627 9.665071770334933 332.09302325581365 9.665071770334933 C 332.5674418604649 9.665071770334933 332.8046511627905 10.956937799043072 333.27906976744174 10.956937799043072 C 333.753488372093 10.956937799043072 333.9906976744186 9.170653907496021 334.4651162790699 8.915470494417868 C 334.93953488372114 8.660287081339714 335.17674418604673 8.660287081339714 335.651162790698 8.660287081339714 C 336.1255813953489 8.660287081339714 336.3627906976743 8.743221690590131 336.8372093023253 8.787878787878796 C 337.3116279069765 8.832535885167488 337.5488372093022 8.883572567783105 338.0232558139534 8.883572567783105 C 338.4976744186047 8.883572567783105 338.73488372093027 8.73365231259969 339.2093023255815 8.564593301435416 C 339.68372093023277 8.395534290271142 339.92093023255836 8.038277511961734 340.39534883720967 8.038277511961734 C 340.8697674418606 8.038277511961734 341.106976744186 9.23444976076556 341.5813953488369 9.23444976076556 C 342.05581395348815 9.23444976076556 342.29302325581375 7.6182881446039445 342.76744186046506 7.6182881446039445 C 343.24186046511625 7.6182881446039445 343.47906976744196 7.913875598086186 343.95348837209315 8.383838383838388 C 344.42790697674445 8.853801169590701 344.66511627907005 9.96810207336523 345.1395348837213 9.96810207336523 C 345.6139534883722 9.96810207336523 345.8511627906977 9.585326953748016 346.3255813953486 9.585326953748016 C 346.79999999999984 9.585326953748016 347.0372093023255 10.637958532695379 347.5116279069767 10.637958532695379 C 347.98604651162793 10.637958532695379 348.22325581395353 10.229665071770372 348.69767441860483 10.03189792663478 C 349.172093023256 9.834130781499237 349.40930232558173 10.03189792663478 349.8837209302329 9.649122807017541 C 350.3581395348839 9.266347687400302 350.5953488372093 7.660818713450311 351.0697674418602 7.6182881446039445 C 351.54418604651147 7.575757575757578 351.7813953488371 7.575757575757578 352.25581395348837 7.575757575757578 C 352.7302325581396 7.575757575757578 352.96744186046527 9.17065390749601 353.44186046511646 9.393939393939394 C 353.91627906976737 9.617224880382778 354.15348837209285 9.617224880382778 354.62790697674376 9.617224880382778 C 355.10232558139495 9.617224880382778 355.3395348837206 9.617224880382778 355.81395348837185 9.553429027113243 C 356.2883720930231 9.489633173843707 356.52558139534875 9.027113237639561 357 9.027113237639561 C 357.47441860465125 9.027113237639561 357.71162790697684 9.186602870813406 358.1860465116281 9.266347687400323 C 358.6604651162794 9.346092503987249 358.897674418605 9.325890483785189 359.37209302325624 9.425837320574168 C 359.84651162790715 9.525784157363073 360.08372093023263 9.766081871345033 360.55813953488354 9.766081871345033 C 361.03255813953473 9.766081871345033 361.2697674418604 8.596491228070178 361.74418604651163 8.596491228070178 C 362.2186046511629 8.596491228070178 362.45581395348853 8.708133971291828 362.9302325581398 8.83572567783095 C 363.4046511627907 8.963317384369981 363.6418604651161 9.23444976076556 364.1162790697671 9.23444976076556 C 364.59069767441827 9.23444976076556 364.827906976744 8.593301435406644 365.30232558139517 8.038277511961734 C 365.77674418604647 7.483253588516691 366.01395348837207 6.858054226475311 366.4883720930233 6.459330143540676 C 366.9627906976745 6.060606060606088 367.20000000000016 6.108452950558217 367.6744186046514 6.0446570972886775 C 368.1488372093023 5.980861244019138 368.3860465116278 6.0446570972886775 368.8604651162787 5.980861244019138 C 369.33488372092995 5.917065390749599 369.57209302325555 3.8437001594896287 370.0465116279068 3.5885167464114858 C 370.52093023255804 3.333333333333343 370.7581395348837 3.333333333333343 371.23255813953494 3.333333333333343 C 371.7069767441862 3.333333333333343 371.9441860465118 3.964912280701678 372.41860465116304 4.194577352472095 C 372.89302325581394 4.424242424242347 373.1302325581394 4.3732057416268475 373.60465116279033 4.481658692185015 C 374.07906976744164 4.590111642743273 374.31627906976723 4.481658692185015 374.7906976744185 4.7368421052631575 C 375.26511627906973 4.9920255183413005 375.5023255813953 5.917065390749606 375.9767441860466 5.917065390749606 C 376.4511627906978 5.917065390749606 376.6883720930235 5.917065390749606 377.1627906976747 5.725677830940995 C 377.6372093023257 5.5342902711323845 377.87441860465105 4.7368421052631575 378.34883720930196 4.7368421052631575 C 378.8232558139532 4.7368421052631575 379.0604651162788 6.17543859649119 379.5348837209301 6.8261562998405125 C 380.00930232558136 7.476874003189757 380.24651162790695 7.6937799043062265 380.7209302325582 7.990430622009576 C 381.19534883720945 8.287081339712925 381.4325581395351 8.309409888357258 381.90697674418635 8.309409888357258 C 382.3813953488373 8.309409888357258 382.6186046511627 8.309409888357258 383.09302325581365 8.309409888357258 C 383.5674418604649 8.309409888357258 383.8046511627905 6.703880914407257 384.27906976744174 6.193514088250943 C 384.753488372093 5.683147262094629 384.9906976744186 5.683147262094629 385.4651162790699 5.683147262094629 C 385.93953488372114 5.683147262094629 386.17674418604673 6.852737905369208 386.651162790698 7.6076555023923405 C 387.1255813953489 8.362573099414929 387.3627906976743 8.896331738437167 387.8372093023253 9.45773524720893 C 388.3116279069765 10.019138755981029 388.5488372093022 10.414673046251995 389.0232558139534 10.414673046251995 C 389.4976744186047 10.414673046251995 389.73488372093027 10.098883572567786 390.2093023255815 9.888357256778313 C 390.68372093023277 9.67783094098884 390.92093023255836 9.590643274853901 391.39534883720967 9.362041467304632 C 391.8697674418606 9.133439659755552 392.106976744186 9.311004784688805 392.5813953488369 8.745348219032444 C 393.05581395348815 8.179691653375675 393.29302325581375 6.533758639021805 393.76744186046506 6.533758639021805 C 394.24186046511625 6.533758639021805 394.47906976744196 7.065390749601278 394.95348837209315 7.065390749601278 C 395.42790697674445 7.065390749601278 395.66511627907005 6.414673046252228 396.1395348837213 5.757575757575758 C 396.6139534883722 5.100478468899759 396.8511627906977 3.7799043062201036 397.3255813953486 3.7799043062201036 C 397.79999999999984 3.7799043062201036 398.0372093023255 4.331738437001613 398.5116279069767 4.593301435406701 C 398.98604651162793 4.854864433811821 399.22325581395353 5.087719298245624 399.69767441860483 5.087719298245624 C 400.172093023256 5.087719298245624 400.40930232558173 3.9819245082403043 400.8837209302329 3.9819245082403043 C 401.3581395348839 3.9819245082403043 401.5953488372093 4.768740031897934 402.0697674418602 4.768740031897934 C 402.54418604651147 4.768740031897934 402.7813953488371 4.545454545454547 403.25581395348837 4.545454545454547 C 403.7302325581396 4.545454545454547 403.96744186046527 5.326953748006297 404.44186046511646 5.6140350877193015 C 404.91627906976737 5.901116427432134 405.15348837209285 5.6140350877193015 405.62790697674376 5.980861244019138 C 406.10232558139495 6.347687400318975 406.3395348837206 7.352472089314222 406.81395348837185 7.751196172248818 C 407.2883720930231 8.149920255183414 407.52558139534875 7.751196172248818 408 8.149920255183414 C 408.47441860465125 8.54864433811801 408.71162790697684 10.425305688463588 409.1860465116281 10.425305688463588 C 409.6604651162794 10.425305688463588 409.89767441860494 9.349282296650994 410.37209302325624 8.702817650186077 C 410.84651162790715 8.056353003721703 411.08372093023263 7.1929824561403635 411.55813953488354 7.1929824561403635 C 412.03255813953473 7.1929824561403635 412.2697674418604 8.398724082934615 412.74418604651163 8.851674641148332 C 413.2186046511629 9.304625199362047 413.45581395348853 9.05582137161069 413.9302325581398 9.457735247208944 C 414.4046511627906 9.859649122806863 414.6418604651161 10.86124401913876 415.116279069767 10.86124401913876 C 415.5906976744183 10.86124401913876 415.8279069767439 10.637958532695379 416.30232558139517 10.637958532695379 C 416.77674418604647 10.637958532695379 417.01395348837207 11.743753322700698 417.4883720930233 11.743753322700698 C 417.9627906976745 11.743753322700698 418.20000000000016 10.467836257309951 418.6744186046514 10.467836257309951 C 419.1488372093023 10.467836257309951 419.3860465116278 13.125996810207344 419.8604651162787 13.125996810207344 C 420.33488372092995 13.125996810207344 420.57209302325555 11.690590111642738 421.0465116279068 11.435406698564595 C 421.52093023255804 11.180223285486452 421.7581395348837 11.180223285486452 422.23255813953494 11.180223285486452 C 422.70697674418625 11.180223285486452 422.94418604651185 11.180223285486452 423.41860465116304 11.180223285486452 C 423.89302325581394 11.180223285486452 424.1302325581394 11.44178628389179 424.60465116279033 12.009569377990434 C 425.07906976744164 12.577352472089554 425.3162790697672 13.179160021265234 425.7906976744185 14.019138755980862 C 426.26511627906973 14.85911749069639 426.5023255813953 16.20946305156832 426.9767441860466 16.20946305156832 C 427.4511627906979 16.20946305156832 427.6883720930235 14.816586921850089 428.1627906976747 14.816586921850089 C 428.6372093023257 14.816586921850089 428.87441860465105 14.851674641148337 429.34883720930196 14.86443381180224 C 429.82325581395327 14.877192982456153 430.0604651162788 14.86443381180224 430.5348837209301 14.880382775119624 C 431.0093023255813 14.89633173843701 431.24651162790695 15.059011164274331 431.7209302325582 15.677830940988844 C 432.19534883720945 16.296650717703358 432.4325581395351 17.591706539074966 432.90697674418635 17.97448165869219 C 433.3813953488373 18.357256778309416 433.6186046511627 18.242424242424285 434.09302325581365 18.357256778309416 C 434.5674418604649 18.472089314194616 434.8046511627905 18.54864433811802 435.27906976744174 18.54864433811802 C 435.75348837209293 18.54864433811802 435.9906976744186 18.49441786283892 436.4651162790699 17.97448165869219 C 436.9395348837212 17.45454545454546 437.17674418604673 16.5741626794261 437.651162790698 15.948963317384369 C 438.12558139534883 15.323763955343164 438.3627906976743 14.848484848484851 438.8372093023253 14.848484848484851 C 439.3116279069765 14.848484848484851 439.5488372093021 16.889952153110052 440.0232558139534 16.889952153110052 C 440.4976744186047 16.889952153110052 440.73488372093027 16.85380116959061 441.2093023255815 16.220095693779907 C 441.6837209302328 15.586390217969129 441.92093023255836 13.721424774056352 442.39534883720967 13.721424774056352 C 442.8697674418606 13.721424774056352 443.10697674418606 14.550770866560342 443.5813953488369 14.550770866560342 C 444.05581395348815 14.550770866560342 444.29302325581375 13.232323232323319 444.76744186046506 12.488038277511958 C 445.24186046511625 11.743753322700776 445.47906976744196 11.409888357256705 445.95348837209315 10.829346092503986 C 446.42790697674445 10.248803827751129 446.66511627907005 9.91387559808625 447.1395348837213 9.585326953748016 C 447.6139534883722 9.256778309410016 447.8511627906977 9.266347687400334 448.3255813953486 9.186602870813406 C 448.79999999999984 9.106858054226478 449.0372093023255 9.186602870813406 449.5116279069767 9.106858054226478 C 449.98604651162793 9.02711323763955 450.22325581395353 8.74534821903244 450.69767441860483 8.702817650186077 C 451.1720930232561 8.660287081339714 451.4093023255817 8.702817650186077 451.8837209302329 8.660287081339714 C 452.3581395348839 8.61775651249335 452.5953488372094 7.767145135566196 453.0697674418602 7.767145135566196 C 453.54418604651147 7.767145135566196 453.7813953488371 7.910685805422652 454.25581395348837 7.910685805422652 C 454.7302325581396 7.910685805422652 454.96744186046527 6.500797448166025 455.44186046511646 5.980861244019138 C 455.91627906976737 5.460925039872563 456.15348837209285 5.311004784688997 456.62790697674376 5.311004784688997 C 457.10232558139495 5.311004784688997 457.3395348837206 5.853269537480067 457.81395348837185 5.853269537480067 C 458.2883720930231 5.853269537480067 458.52558139534875 4.534821903242971 459 4.407230196703885 C 459.47441860465125 4.2796384901648 459.7116279069769 4.2796384901648 460.1860465116281 4.2796384901648 C 460.6604651162794 4.2796384901648 460.89767441860494 4.577352472089302 461.37209302325624 4.641148325358849 C 461.84651162790715 4.704944178628395 462.08372093023263 4.641148325358849 462.55813953488354 4.704944178628395 C 463.03255813953473 4.768740031897941 463.2697674418604 7.256778309409896 463.74418604651163 7.256778309409896 C 464.2186046511629 7.256778309409896 464.45581395348853 6.765550239234616 464.9302325581398 6.395534290271144 C 465.4046511627906 6.025518341307981 465.6418604651161 5.406698564593306 466.116279069767 5.406698564593306 C 466.5906976744183 5.406698564593306 466.8279069767439 7.63955342902711 467.30232558139517 8.256246677299313 C 467.77674418604636 8.872939925571515 468.01395348837195 8.872939925571515 468.48837209302326 8.872939925571515 C 468.9627906976745 8.872939925571515 469.20000000000016 8.149920255183396 469.6744186046514 8.054226475279105 C 470.1488372093023 7.958532695374814 470.3860465116278 7.958532695374814 470.8604651162787 7.958532695374814 C 471.33488372092995 7.958532695374814 471.57209302325555 8.149920255183414 472.0465116279068 8.149920255183414 C 472.52093023255804 8.149920255183414 472.7581395348837 6.682615629984049 473.23255813953494 6.682615629984049 C 473.70697674418625 6.682615629984049 473.94418604651185 8.149920255183414 474.41860465116304 8.149920255183414 C 474.89302325581394 8.149920255183414 475.1302325581394 7.93726741095162 475.60465116279033 7.93726741095162 C 476.07906976744164 7.93726741095162 476.3162790697672 7.954279638490166 476.7906976744185 8.022328548644342 C 477.26511627906973 8.09037745879851 477.5023255813953 8.121212121212128 477.9767441860466 8.277511961722485 C 478.4511627906979 8.433811802232862 478.6883720930235 8.755980861244023 479.1627906976747 8.803827751196177 C 479.6372093023257 8.851674641148332 479.87441860465105 8.819776714513576 480.34883720930196 8.851674641148332 C 480.82325581395327 8.883572567783116 481.0604651162788 8.963317384370026 481.5348837209301 8.963317384370026 C 482.0093023255813 8.963317384370026 482.24651162790695 5.948963317384376 482.7209302325582 5.948963317384376 C 483.19534883720945 5.948963317384376 483.4325581395351 5.948963317384376 483.90697674418635 6.257309941520475 C 484.3813953488373 6.565656565656575 484.6186046511627 9.276980329611902 485.09302325581365 9.383306751727805 C 485.5674418604649 9.489633173843707 485.8046511627905 9.383306751727805 486.27906976744174 9.489633173843707 C 486.75348837209293 9.59595959595961 486.9906976744186 11.531100478468908 487.4651162790699 11.531100478468908 C 487.9395348837212 11.531100478468908 488.17674418604673 8.688995215311436 488.651162790698 7.671451355661887 C 489.12558139534883 6.653907496013192 489.3627906976743 6.762360446570891 489.8372093023253 6.443381180223298 C 490.3116279069765 6.124401913875515 490.5488372093021 6.076555023923447 491.0232558139534 6.076555023923447 C 491.4976744186047 6.076555023923447 491.73488372093027 6.076555023923447 492.2093023255815 6.172248803827756 C 492.6837209302328 6.267942583732065 492.92093023255836 6.852737905369473 493.39534883720967 6.89526847421584 C 493.8697674418606 6.937799043062206 494.10697674418606 6.916533758639035 494.5813953488369 6.937799043062206 C 495.05581395348815 6.959064327485395 495.29302325581375 7.0015948963317385 495.76744186046506 7.0015948963317385 C 496.24186046511625 7.0015948963317385 496.47906976744196 6.427432216905906 496.95348837209315 6.427432216905906 C 497.4279069767441 6.427432216905906 497.6651162790695 7.4800637958533995 498.13953488372044 7.894736842105267 C 498.6139534883717 8.309409888357383 498.85116279069734 7.894736842105267 499.3255813953486 8.500797448165866 C 499.79999999999984 9.106858054226464 500.0372093023255 9.963849016480665 500.5116279069767 11.127060074428496 C 500.98604651162793 12.290271132376466 501.22325581395353 14.316852737905368 501.69767441860483 14.316852737905368 C 502.1720930232561 14.316852737905368 502.4093023255817 12.615629984051044 502.8837209302329 12.615629984051044 C 503.3581395348839 12.615629984051044 503.5953488372094 13.786283891547326 504.0697674418602 14.417862838915479 C 504.54418604651147 15.049441786284163 504.7813953488371 15.773524720893143 505.25581395348837 15.773524720893143 C 505.7302325581396 15.773524720893143 505.96744186046527 15.518341307815 506.44186046511646 15.518341307815 C 506.91627906976737 15.518341307815 507.15348837209285 16.1244019138756 507.62790697674376 16.1244019138756 C 508.10232558139495 16.1244019138756 508.3395348837206 15.380116959064328 508.81395348837185 15.380116959064328 C 509.2883720930231 15.380116959064328 509.52558139534875 17.121743753322704 510 17.761828814460397 C 510.47441860465125 18.40191387559809 510.7116279069769 18.580542264752793 511.1860465116281 18.580542264752793 C 511.6604651162794 18.580542264752793 511.89767441860494 18.188197767145216 512.3720930232562 17.99043062200957 C 512.846511627907 17.792663476874086 513.0837209302325 17.99043062200957 513.5581395348835 17.591706539074963 C 514.0325581395348 17.192982456140356 514.2697674418604 15.933014354066984 514.7441860465117 15.486443381180223 C 515.218604651163 15.039872408293462 515.4558139534886 15.039872408293462 515.9302325581398 15.039872408293462 C 516.4046511627906 15.039872408293462 516.6418604651161 15.295055821371616 517.1162790697671 15.295055821371616 C 517.5906976744184 15.295055821371616 517.8279069767439 15.295055821371616 518.3023255813952 15.18872939925572 C 518.7767441860464 15.082402977139825 519.013953488372 14.162679425837336 519.4883720930233 14.114832535885181 C 519.9627906976744 14.066985645933027 520.2000000000002 14.066985645933027 520.6744186046514 14.066985645933027 C 521.1488372093023 14.066985645933027 521.3860465116277 15.805422647527916 521.8604651162786 15.805422647527916 C 522.33488372093 15.805422647527916 522.5720930232555 15.566188197767147 523.0465116279069 15.566188197767147 C 523.520930232558 15.566188197767147 523.7581395348838 15.566188197767147 524.232558139535 15.837320574162685 C 524.7069767441862 16.108452950558224 524.9441860465118 17.123870281765022 525.418604651163 17.123870281765022 C 525.8930232558139 17.123870281765022 526.1302325581394 17.123870281765022 526.6046511627903 17.10260499734185 C 527.0790697674416 17.081339712918677 527.3162790697672 16.395534290271133 527.7906976744184 16.283891547049443 C 528.2651162790696 16.172248803827753 528.5023255813953 16.25518341307815 528.9767441860466 16.172248803827753 C 529.4511627906979 16.089314194577355 529.6883720930234 15.869218500797452 530.1627906976747 15.869218500797452 C 530.6372093023257 15.869218500797452 530.8744186046512 16.74960127591735 531.348837209302 17.527910685805427 C 531.8232558139532 18.306220095694066 532.0604651162788 19.161084529505512 532.5348837209301 19.760765550239235 C 533.0093023255813 20.360446570972815 533.246511627907 20.11802232854865 533.7209302325582 20.526315789473692 C 534.1953488372094 20.934609250398733 534.4325581395351 21.802232854864435 534.9069767441863 21.802232854864435 C 535.3813953488373 21.802232854864435 535.6186046511627 20.68580542264753 536.0930232558136 20.68580542264753 C 536.5674418604649 20.68580542264753 536.8046511627905 22.29665071770335 537.2790697674418 22.29665071770335 C 537.753488372093 22.29665071770335 537.9906976744187 21.86602870813397 538.4651162790699 21.86602870813397 C 538.9395348837212 21.86602870813397 539.1767441860468 22.16267942583719 539.651162790698 22.51993620414673 C 540.1255813953488 22.877192982456016 540.3627906976743 23.14088250930375 540.8372093023253 23.65231259968103 C 541.3116279069766 24.163742690058672 541.5488372093021 24.575225943647006 542.0232558139534 25.077086656034034 C 542.4976744186047 25.578947368421062 542.7348837209304 25.68740031897927 543.2093023255816 26.161616161616166 C 543.6837209302328 26.63583200425306 543.9209302325584 26.84316852737884 544.3953488372097 27.4481658692185 C 544.8697674418606 28.053163211057726 545.1069767441861 29.186602870813395 545.581395348837 29.186602870813395 C 546.0558139534882 29.186602870813395 546.2930232558138 28.4688995215311 546.767441860465 28.4688995215311 C 547.2418604651162 28.4688995215311 547.479069767442 28.4688995215311 547.9534883720931 28.516746411483254 C 548.4279069767441 28.56459330143541 548.6651162790695 29.521531100478477 549.1395348837204 29.521531100478477 C 549.6139534883716 29.521531100478477 549.8511627906973 29.415204678362578 550.3255813953485 29.415204678362578 C 550.7999999999998 29.415204678362578 551.0372093023254 30.312599681020735 551.5116279069767 30.75491759702286 C 551.986046511628 31.197235513024985 552.2232558139536 31.62679425837321 552.6976744186048 31.62679425837321 C 553.1720930232561 31.62679425837321 553.4093023255816 29.569377990430624 553.8837209302329 29.569377990430624 C 554.3581395348839 29.569377990430624 554.5953488372094 29.649122807017612 555.0697674418602 29.840510366826155 C 555.5441860465114 30.031897926634837 555.781395348837 30.526315789473685 556.2558139534883 30.526315789473685 C 556.7302325581396 30.526315789473685 556.9674418604652 29.169590643275267 557.4418604651165 28.309409888357255 C 557.9162790697674 27.44922913344007 558.1534883720927 26.225412014885695 558.6279069767437 26.225412014885695 C 559.102325581395 26.225412014885695 559.3395348837206 26.927166400850616 559.8139534883719 26.927166400850616 C 560.2883720930231 26.927166400850616 560.5255813953488 25.91812865497076 561 25.566188197767147 C 561.4744186046512 25.21424774056353 561.7116279069769 25.167464114832537 562.1860465116281 25.167464114832537 C 562.6604651162794 25.167464114832537 562.897674418605 25.167464114832537 563.3720930232562 25.438596491228076 C 563.846511627907 25.709728867623614 564.0837209302325 26.478468899521694 564.5581395348835 26.9377990430622 C 565.0325581395348 27.397129186603035 565.2697674418604 27.405635300372143 565.7441860465117 27.73524720893142 C 566.218604651163 28.0648591174907 566.4558139534886 28.06698564593283 566.9302325581398 28.58585858585859 C 567.4046511627906 29.104731525783976 567.6418604651161 29.715045188729622 568.1162790697671 30.32961190855928 C 568.5906976744184 30.94417862838938 568.8279069767439 31.658692185007975 569.3023255813952 31.658692185007975 C 569.7767441860464 31.658692185007975 570.013953488372 30.414673046252076 570.4883720930233 29.68102073365231 C 570.9627906976744 28.94736842105272 571.2000000000002 28.858054226475495 571.6744186046514 27.990430622009576 C 572.1488372093023 27.122807017544076 572.3860465116277 26.17224880382746 572.8604651162786 25.34290271132377 C 573.33488372093 24.513556618819486 573.5720930232555 23.843700159489636 574.0465116279069 23.843700159489636 C 574.520930232558 23.843700159489636 574.7581395348838 24.405103668261695 575.232558139535 25.481127060074435 C 575.7069767441862 26.55715045188743 575.9441860465118 28.27538543327983 576.418604651163 29.22381711855396 C 576.8930232558139 30.172248803827408 577.1302325581394 29.956406166932585 577.6046511627903 30.223285486443384 C 578.0790697674416 30.49016480595438 578.3162790697672 30.478468899521527 578.7906976744184 30.55821371610845 C 579.2651162790696 30.637958532695375 579.5023255813953 30.637958532695375 579.9767441860466 30.637958532695375 C 580.4511627906979 30.637958532695375 580.6883720930234 30.248803827751264 581.1627906976747 30.06379585326954 C 581.6372093023257 29.87878787878795 581.8744186046512 30.06379585326954 582.348837209302 29.712918660287084 C 582.8232558139532 29.36204146730463 583.0604651162788 27.203615098351946 583.5348837209301 27.203615098351946 C 584.0093023255813 27.203615098351946 584.246511627907 27.516214779372675 584.7209302325582 27.884104199893674 C 585.1953488372094 28.251993620414673 585.4325581395351 28.674109516214692 585.9069767441863 29.04306220095694 C 586.3813953488373 29.412014885699012 586.6186046511627 29.0526315789477 587.0930232558136 29.728867623604472 C 587.5674418604649 30.40510366826189 587.8046511627905 32.04146730462519 588.2790697674418 32.42424242424242 C 588.753488372093 32.80701754385965 588.9906976744187 32.80701754385965 589.4651162790699 32.80701754385965 C 589.9395348837212 32.80701754385965 590.1767441860468 30.38277511961723 590.651162790698 30.38277511961723 C 591.1255813953488 30.38277511961723 591.3627906976743 30.47208931419489 591.8372093023253 31.350345560871872 C 592.3116279069766 32.22860180754949 592.5488372093021 34.77405635300373 593.0232558139534 34.77405635300373 C 593.4976744186047 34.77405635300373 593.7348837209304 33.41307814992026 594.2093023255816 33.41307814992026 C 594.6837209302328 33.41307814992026 594.9209302325584 34.40191387559808 595.3953488372097 34.40191387559808 C 595.8697674418606 34.40191387559808 596.1069767441861 34.26475279106842 596.581395348837 33.79585326953749 C 597.0558139534882 33.326953748006225 597.2930232558138 32.057416267942585 597.767441860465 32.057416267942585 C 598.2418604651162 32.057416267942585 598.479069767442 32.87081339712918 598.9534883720931 32.87081339712918 C 599.4279069767441 32.87081339712918 599.6651162790695 32.49867091972355 600.1395348837204 32.49867091972355 C 600.6139534883716 32.49867091972355 600.8511627906973 32.74960127591709 601.3255813953485 32.88144603934078 C 601.7999999999998 33.01329080276451 602.0372093023254 32.88144603934078 602.5116279069767 33.15789473684211 C 602.986046511628 33.43434343434344 603.2232558139536 34.45507708665603 603.6976744186048 34.45507708665603 C 604.1720930232561 34.45507708665603 604.4093023255816 33.75225943647011 604.8837209302329 33.317384370015944 C 605.3581395348839 32.88250930356209 605.5953488372094 32.36044657097288 606.0697674418602 32.280701754385966 C 606.5441860465114 32.20095693779905 606.781395348837 32.20095693779905 607.2558139534883 32.20095693779905 C 607.7302325581396 32.20095693779905 607.9674418604652 32.98777246145668 608.4418604651165 32.98777246145668 C 608.9162790697674 32.98777246145668 609.1534883720927 32.64114832535875 609.6279069767437 32.3498139287613 C 610.102325581395 32.05847953216364 610.3395348837206 31.876661350345607 610.8139534883719 31.5311004784689 C 611.2883720930231 31.18553960659228 611.5255813953488 31.017543859649127 612 30.622009569377994 C 612.4744186046512 30.22647527910686 612.7116279069769 29.55342902711324 613.1860465116281 29.55342902711324 C 613.6604651162794 29.55342902711324 613.897674418605 29.55342902711324 614.3720930232562 29.681020733652318 C 614.846511627907 29.808612440191396 615.0837209302325 30.3955342902713 615.5581395348835 30.861244019138756 C 616.0325581395348 31.32695374800655 616.2697674418604 31.881977671451352 616.7441860465117 32.00956937799043 C 617.218604651163 32.13716108452951 617.4558139534886 32.13716108452951 617.9302325581398 32.13716108452951 C 618.4046511627906 32.13716108452951 618.6418604651161 30.76555023923445 619.1162790697671 30.76555023923445 C 619.5906976744184 30.76555023923445 619.8279069767439 31.91387559808613 620.3023255813952 31.91387559808613 C 620.7767441860464 31.91387559808613 621.013953488372 31.91387559808613 621.4883720930233 31.85007974481659 C 621.9627906976744 31.78628389154705 622.2000000000002 31.671451355661947 622.6744186046514 31.403508771929825 C 623.1488372093023 31.135566188197835 623.3860465116277 30.797448165869117 623.8604651162786 30.5103668261563 C 624.33488372093 30.223285486443277 624.5720930232555 30.387028176501914 625.0465116279069 29.968102073365234 C 625.520930232558 29.549175970228653 625.7581395348838 29.123870281764948 626.232558139535 28.415736310473164 C 626.7069767441862 27.707602339181214 626.9441860465118 27.13450292397686 627.418604651163 26.4274322169059 C 627.8930232558139 25.72036150983545 628.1302325581394 25.390749601275736 628.6046511627903 24.88038277511962 C 629.0790697674416 24.37001594896314 629.3162790697672 23.875598086124405 629.7906976744184 23.875598086124405 C 630.2651162790696 23.875598086124405 630.5023255813953 25.885167464114833 630.9767441860466 25.885167464114833 C 631.4511627906979 25.885167464114833 631.6883720930234 24.8006379585327 632.1627906976747 24.8006379585327 C 632.6372093023257 24.8006379585327 632.8744186046512 27.054758107389674 633.348837209302 27.43753322700691 C 633.8232558139532 27.820308346624145 634.0604651162788 27.71610845295055 634.5348837209301 27.820308346624145 C 635.0093023255813 27.924508240297712 635.246511627907 27.820308346624145 635.7209302325582 27.9585326953748 C 636.1953488372094 28.096757044125454 636.4325581395351 28.315789473684152 636.9069767441863 28.56459330143541 C 637.3813953488373 28.813397129186548 637.6186046511627 29.202551834130784 638.0930232558136 29.202551834130784 C 638.5674418604649 29.202551834130784 638.8046511627905 29.071770334928264 639.2790697674418 28.7719298245614 C 639.753488372093 28.472089314194612 639.9906976744187 28.39978734715569 640.4651162790699 27.703349282296656 C 640.9395348837212 27.006911217437455 641.1767441860468 25.544922913343967 641.651162790698 25.289739500265817 C 642.1255813953488 25.034556087187667 642.3627906976743 25.259968102073284 642.8372093023253 25.034556087187667 C 643.3116279069766 24.809144072301887 643.5488372093021 24.162679425837325 644.0232558139534 24.162679425837325 C 644.4976744186047 24.162679425837325 644.7348837209304 24.545454545454547 645.2093023255816 24.609250398724086 C 645.6837209302328 24.673046251993625 645.9209302325584 24.609250398724086 646.3953488372097 24.673046251993625 C 646.8697674418606 24.736842105263165 647.1069767441861 24.992025518341308 647.581395348837 24.992025518341308 C 648.0558139534882 24.992025518341308 648.2930232558138 24.539074960127607 648.767441860465 24.3859649122807 C 649.2418604651162 24.23285486443383 649.479069767442 24.226475279106857 649.9534883720931 24.226475279106857 C 650.4279069767441 24.226475279106857 650.6651162790695 24.92822966507187 651.1395348837204 25.37480063795853 C 651.6139534883716 25.8213716108454 651.8511627906973 26.18181818181822 652.3255813953485 26.459330143540676 C 652.7999999999998 26.7368421052632 653.0372093023254 26.666666666666668 653.5116279069767 26.762360446570973 C 653.986046511628 26.858054226475275 654.2232558139536 26.9377990430622 654.6976744186048 26.9377990430622 C 655.1720930232561 26.9377990430622 655.4093023255816 25.183413078149925 655.8837209302329 25.183413078149925 C 656.3581395348839 25.183413078149925 656.5953488372094 25.453482190324397 657.0697674418602 25.72567783094099 C 657.5441860465114 25.99787347155778 657.781395348837 26.278575225943616 658.2558139534883 26.544391281233388 C 658.7302325581395 26.810207336523096 658.9674418604652 26.85486443381176 659.4418604651164 27.054758107389688 C 659.9162790697674 27.254651780967524 660.1534883720927 27.54385964912281 660.6279069767437 27.54385964912281 C 661.102325581395 27.54385964912281 661.3395348837206 25.99681020733653 661.8139534883719 25.99681020733653 C 662.2883720930231 25.99681020733653 662.5255813953488 25.99681020733653 663 26.044657097288678 C 663.4744186046512 26.092503987240825 663.7116279069769 26.555023923444974 664.1860465116281 26.586921850079747 C 664.6604651162794 26.61881977671452 664.897674418605 26.61881977671452 665.3720930232562 26.61881977671452 C 665.846511627907 26.61881977671452 666.0837209302325 25.355661881977476 666.5581395348835 24.779372674109524 C 667.0325581395348 24.20308346624116 667.2697674418604 24.30090377458799 667.7441860465117 23.73737373737374 C 668.218604651163 23.17384370015949 668.4558139534886 22.025518341307816 668.9302325581398 21.96172248803828 C 669.4046511627906 21.897926634768744 669.6418604651161 21.96172248803828 670.1162790697671 21.897926634768744 C 670.5906976744184 21.83413078149921 670.8279069767439 21.06539074960132 671.3023255813952 20.7177033492823 C 671.7767441860464 20.370015948963363 672.013953488372 20.35087719298248 672.4883720930233 20.159489633173845 C 672.9627906976744 19.968102073365255 673.2000000000002 19.760765550239235 673.6744186046514 19.760765550239235 C 674.1488372093023 19.760765550239235 674.3860465116277 19.760765550239235 674.8604651162786 19.824561403508778 C 675.33488372093 19.88835725677832 675.5720930232555 21.27060074428496 676.0465116279069 21.27060074428496 C 676.520930232558 21.27060074428496 676.7581395348838 20.43062200956938 677.232558139535 20.43062200956938 C 677.7069767441862 20.43062200956938 677.9441860465118 21.097288676235927 678.418604651163 21.4354066985646 C 678.8930232558139 21.773524720893025 679.1302325581394 22.12121212121212 679.6046511627903 22.12121212121212 C 680.0790697674416 22.12121212121212 680.3162790697672 22.12121212121212 680.7906976744184 21.48325358851675 C 681.2651162790696 20.845295055821378 681.5023255813953 17.272727272727277 681.9767441860466 17.272727272727277 C 682.4511627906979 17.272727272727277 682.6883720930234 17.96597554492283 683.1627906976747 18.20839978734716 C 683.6372093023257 18.450824029771315 683.8744186046512 18.48484848484849 684.348837209302 18.48484848484849 C 684.8232558139532 18.48484848484849 685.0604651162788 16.5390749601276 685.5348837209301 16.5390749601276 C 686.0093023255813 16.5390749601276 686.246511627907 17.135566188197767 686.7209302325582 17.54385964912281 C 687.1953488372094 17.952153110047846 687.4325581395351 18.28708133971285 687.9069767441863 18.580542264752793 C 688.3813953488373 18.874003189792596 688.6186046511627 19.011164274322173 689.0930232558136 19.011164274322173 C 689.5674418604649 19.011164274322173 689.8046511627905 18.80489101541735 690.2790697674418 18.64433811802233 C 690.753488372093 18.483785220627347 690.9906976744187 18.208399787347158 691.4651162790699 18.208399787347158 C 691.9395348837212 18.208399787347158 692.1767441860468 18.59968102073355 692.651162790698 18.910154173312073 C 693.1255813953488 19.220627325890376 693.3627906976743 19.760765550239235 693.8372093023253 19.760765550239235 C 694.3116279069766 19.760765550239235 694.5488372093021 19.537480063795858 695.0232558139534 19.314194577352477 C 695.4976744186047 19.0909090909091 695.7348837209304 18.644338118022336 696.2093023255816 18.644338118022336 C 696.6837209302328 18.644338118022336 696.9209302325584 19.0909090909091 697.3953488372097 19.0909090909091 C 697.8697674418605 19.0909090909091 698.1069767441861 18.835725677830943 698.581395348837 18.835725677830943 C 699.0558139534882 18.835725677830943 699.2930232558138 19.335459861775654 699.767441860465 19.335459861775654 C 700.2418604651162 19.335459861775654 700.479069767442 18.761297182349818 700.9534883720931 18.761297182349818 C 701.4279069767441 18.761297182349818 701.6651162790695 19.122807017543863 702.1395348837204 19.122807017543863 C 702.6139534883716 19.122807017543863 702.8511627906973 18.35725677830941 703.3255813953485 18.118022328548644 C 703.7999999999998 17.87878787878788 704.0372093023254 18.01594896331738 704.5116279069767 17.87878787878788 C 704.986046511628 17.741626794258373 705.2232558139536 17.43221690590112 705.6976744186048 17.43221690590112 C 706.1720930232561 17.43221690590112 706.4093023255816 17.517278043593784 706.8837209302329 17.6555023923445 C 707.3581395348839 17.793726741095114 707.5953488372094 18.12333864965444 708.0697674418602 18.12333864965444 C 708.5441860465114 18.12333864965444 708.781395348837 17.572567783094133 709.2558139534883 17.293992557150453 C 709.7302325581395 17.01541733120684 709.9674418604652 16.894205209994723 710.4418604651164 16.730462519936207 C 710.9162790697674 16.56671982987777 711.1534883720927 16.660287081339657 711.6279069767437 16.475279106858064 C 712.102325581395 16.29027113237634 712.3395348837206 15.805422647527916 712.8139534883719 15.805422647527916 C 713.2883720930231 15.805422647527916 713.5255813953488 16.63157894736843 714 16.937799043062206 C 714.4744186046512 17.244019138755988 714.7116279069769 17.192982456140374 715.1860465116281 17.336523125996816 C 715.6604651162794 17.480063795853294 715.897674418605 17.459861775651184 716.3720930232562 17.655502392344502 C 716.846511627907 17.85114300903768 717.0837209302325 18.314726209463053 717.5581395348835 18.314726209463053 C 718.0325581395348 18.314726209463053 718.2697674418605 18.229665071770334 718.7441860465117 18.229665071770334 C 719.218604651163 18.229665071770334 719.4558139534886 18.819776714513562 719.9302325581398 18.819776714513562 C 720.4046511627906 18.819776714513562 720.6418604651161 18.6762360446571 721.1162790697671 18.6762360446571 C 721.5906976744184 18.6762360446571 721.8279069767439 19.92025518341308 722.3023255813952 19.92025518341308 C 722.7767441860464 19.92025518341308 723.013953488372 18.995215311004795 723.4883720930233 18.771929824561408 C 723.9627906976744 18.54864433811802 724.2000000000002 18.54864433811802 724.6744186046514 18.54864433811802 C 725.1488372093023 18.54864433811802 725.3860465116277 18.569909622541203 725.8604651162786 18.569909622541203 C 726.33488372093 18.569909622541203 726.5720930232555 18.006379585326957 727.0465116279069 18.006379585326957 C 727.520930232558 18.006379585326957 727.7581395348838 18.580542264752793 728.232558139535 18.580542264752793 C 728.7069767441862 18.580542264752793 728.9441860465118 18.22966507177034 729.418604651163 18.22966507177034 C 729.8930232558139 18.22966507177034 730.1302325581395 18.781499202552 730.6046511627903 19.106858054226482 C 731.0790697674416 19.432216905901278 731.3162790697672 19.856459330143544 731.7906976744184 19.856459330143544 C 732.2651162790696 19.856459330143544 732.5023255813953 18.973950026581612 732.9767441860466 18.973950026581612 C 733.4511627906979 18.973950026581612 733.6883720930234 19.760765550239235 734.1627906976747 19.760765550239235 C 734.6372093023257 19.760765550239235 734.8744186046512 19.505582137161092 735.348837209302 19.505582137161092 C 735.8232558139532 19.505582137161092 736.0604651162788 19.505582137161092 736.5348837209301 19.505582137161092 C 737.0093023255813 19.505582137161092 737.246511627907 19.505582137161092 737.7209302325582 19.31419457735247 C 738.1953488372094 19.12280701754385 738.4325581395351 18.38915470494418 738.9069767441863 18.38915470494418 C 739.3813953488373 18.38915470494418 739.6186046511627 19.3992557150452 740.0930232558136 19.728867623604472 C 740.5674418604649 20.058479532163744 740.8046511627905 19.94152046783625 741.2790697674418 20.058479532163744 C 741.753488372093 20.175438596491215 741.9906976744187 20.313662945241894 742.4651162790699 20.313662945241894 C 742.9395348837212 20.313662945241894 743.1767441860468 19.82456140350877 743.651162790698 19.82456140350877 C 744.1255813953488 19.82456140350877 744.3627906976743 20.813397129186605 744.8372093023253 20.813397129186605 C 745.3116279069766 20.813397129186605 745.5488372093021 20.72089314194578 746.0232558139534 20.590111642743228 C 746.4976744186047 20.459330143540676 746.7348837209304 20.175438596491226 747.2093023255816 20.159489633173845 C 747.6837209302328 20.143540669856463 747.9209302325584 20.143540669856463 748.3953488372097 20.143540669856463 C 748.8697674418605 20.143540669856463 749.1069767441861 20.271132376395528 749.581395348837 20.271132376395528 C 750.0558139534882 20.271132376395528 750.2930232558138 19.888357256778313 750.767441860465 19.888357256778313 C 751.2418604651162 19.888357256778313 751.479069767442 20.303030303030308 751.9534883720931 20.303030303030308 C 752.4279069767441 20.303030303030308 752.6651162790695 19.362041467304625 753.1395348837204 19.362041467304625 C 753.6139534883716 19.362041467304625 753.8511627906973 19.396065922381737 754.3255813953485 19.569377990430628 C 754.7999999999998 19.742690058479557 755.0372093023254 19.99893673577884 755.5116279069767 20.228601807549175 C 755.986046511628 20.45826687931951 756.2232558139536 20.7177033492823 756.6976744186048 20.7177033492823 C 757.1720930232561 20.7177033492823 757.4093023255816 20.296650717703447 757.8837209302329 20.037214247740568 C 758.3581395348839 19.777777777777874 758.5953488372094 19.68633705475801 759.0697674418602 19.420520999468366 C 759.5441860465114 19.15470494417853 759.781395348837 18.901648059542826 760.2558139534883 18.708133971291872 C 760.7302325581395 18.514619883040965 760.9674418604652 18.523125996810222 761.4418604651164 18.452950558213715 C 761.9162790697674 18.38277511961724 762.1534883720927 18.452950558213715 762.6279069767437 18.357256778309413 C 763.102325581395 18.26156299840511 763.3395348837206 17.91068580542267 763.8139534883719 17.719298245614034 C 764.2883720930231 17.527910685805445 764.5255813953488 17.400318979266352 765 17.400318979266352 C 765.4744186046512 17.400318979266352 765.7116279069769 17.770334928229733 766.1860465116281 18.293460925039877 C 766.6604651162794 18.816586921850146 766.897674418605 19.518341307814815 767.3720930232562 20.015948963317385 C 767.846511627907 20.5135566188196 768.0837209302325 20.558213716108536 768.5581395348835 20.781499202551835 C 769.0325581395348 21.004784688995297 769.2697674418605 21.13237639553429 769.7441860465117 21.13237639553429 C 770.218604651163 21.13237639553429 770.4558139534886 20.972886762360456 770.9302325581398 20.972886762360456 C 771.4046511627906 20.972886762360456 771.6418604651161 21.32376395534291 772.1162790697671 21.419457735247214 C 772.5906976744184 21.51515151515152 772.8279069767439 21.51515151515152 773.3023255813952 21.51515151515152 C 773.7767441860464 21.51515151515152 774.013953488372 13.934077618288153 774.4883720930233 13.934077618288153 C 774.9627906976744 13.934077618288153 775.2000000000002 23.588516746411486 775.6744186046514 23.588516746411486 C 776.1488372093023 23.588516746411486 776.3860465116277 23.588516746411486 776.8604651162786 23.460925039872407 C 777.33488372093 23.33333333333333 777.5720930232555 16.96969696969697 778.0465116279069 16.96969696969697 C 778.520930232558 16.96969696969697 778.7581395348838 22.902711323763963 779.232558139535 23.7799043062201 C 779.7069767441862 24.657097288676237 779.9441860465118 24.255183413078008 780.418604651163 24.657097288676237 C 780.8930232558139 25.059011164274178 781.1302325581395 25.789473684210527 781.6046511627903 25.789473684210527 C 782.0790697674416 25.789473684210527 782.3162790697672 25.151515151515156 782.7906976744184 25.151515151515156 C 783.2651162790696 25.151515151515156 783.5023255813953 25.311004784689 783.9767441860466 25.311004784689 C 784.4511627906979 25.311004784689 784.6883720930234 24.864433811802236 785.1627906976747 24.864433811802236 C 785.6372093023257 24.864433811802236 785.8744186046512 25.167464114832537 786.348837209302 25.167464114832537 C 786.8232558139532 25.167464114832537 787.0604651162788 25.106858054226496 787.5348837209301 24.96012759170654 C 788.0093023255813 24.813397129186622 788.246511627907 24.64433811802233 788.7209302325582 24.433811802232853 C 789.1953488372094 24.22328548644338 789.4325581395351 23.99255715045189 789.9069767441863 23.90749601275917 C 790.3813953488373 23.822434875066453 790.6186046511627 23.90749601275917 791.0930232558136 23.822434875066453 C 791.5674418604649 23.737373737373733 791.8046511627905 22.822966507177036 792.2790697674418 22.822966507177036 C 792.753488372093 22.822966507177036 792.9906976744187 23.110047846889955 793.4651162790699 23.110047846889955 C 793.9395348837212 23.110047846889955 794.1767441860468 22.660287081339774 794.651162790698 22.48803827751196 C 795.1255813953488 22.315789473684273 795.3627906976743 22.2488038277512 795.8372093023253 22.2488038277512 C 796.3116279069766 22.2488038277512 796.5488372093021 23.046251993620373 797.0232558139534 23.39712918660287 C 797.4976744186046 23.748006379585284 797.7348837209302 23.616161616161623 798.2093023255815 24.003189792663484 C 798.6837209302328 24.39021796916535 798.9209302325584 24.581605528973594 799.3953488372097 25.332270069112177 C 799.8697674418605 26.08293460925004 800.1069767441861 27.45879851143009 800.581395348837 27.7565124933546 C 801.0558139534882 28.05422647527911 801.2930232558138 28.05422647527911 801.767441860465 28.05422647527911 C 802.2418604651162 28.05422647527911 802.479069767442 27.75438596491235 802.9534883720931 27.48006379585327 C 803.4279069767441 27.20574162679432 803.6651162790695 26.682615629984056 804.1395348837204 26.682615629984056 C 804.6139534883716 26.682615629984056 804.8511627906973 26.771929824561433 805.3255813953485 27.033492822966505 C 805.7999999999998 27.295055821371637 806.0372093023254 27.990430622009576 806.5116279069767 27.990430622009576 C 806.986046511628 27.990430622009576 807.2232558139536 27.522594364699636 807.6976744186048 27.522594364699636 C 808.1720930232561 27.522594364699636 808.4093023255816 27.73524720893142 808.8837209302329 27.73524720893142 C 809.3581395348839 27.73524720893142 809.5953488372094 27.63955342902706 810.0697674418602 27.480063795853276 C 810.5441860465114 27.320574162679375 810.781395348837 27.384370015949024 811.2558139534883 26.937799043062206 C 811.7302325581395 26.491228070175495 811.9674418604652 25.247208931419458 812.4418604651164 25.247208931419458 C 812.9162790697674 25.247208931419458 813.1534883720927 26.542264752791255 813.6279069767437 27.065390749601278 C 814.102325581395 27.588516746411674 814.3395348837206 27.862838915470498 814.8139534883719 27.862838915470498 C 815.2883720930231 27.862838915470498 816 27.713981924508243 816 27.713981924508243" stroke="#4572A7" stroke-width="1" zIndex="1" stroke-linejoin="round" stroke-linecap="round"></path></g><g class="highcharts-markers" visibility="visible" zIndex="0.1" transform="translate(24,311) scale(1 1)" clip-path="url(#highcharts-10)"></g></g><g class="highcharts-navigator" zIndex="3"><rect fill="rgba(128,179,236,0.3)" style="cursor:ew-resize ;" x="624" y="311" width="216" height="40"></rect><path fill="none" stroke="#b2b1b6" stroke-width="1" d="M 10 311.5 L 623.5 311.5 623.5 365.5 L 839.5 365.5 L 839.5 311.5 854 311.5 M 624.5 311.5 L 839.5 311.5"></path></g><g class="highcharts-navigator-handle-right" style="cursor:ew-resize;" zIndex="3" transform="translate(840,323)"><rect x="-4.5" y="0.5" width="8" height="15" strokeWidth="1" fill="#ebe7e8" stroke="#b2b1b6" stroke-width="1"></rect><path fill="#ebe7e8" d="M -1.5 4 L -1.5 12 M 0.5 4 L 0.5 12" stroke="#b2b1b6" stroke-width="1"></path></g><g class="highcharts-navigator-handle-left" style="cursor:ew-resize;" zIndex="4" transform="translate(624,323)"><rect x="-4.5" y="0.5" width="8" height="15" strokeWidth="1" fill="#ebe7e8" stroke="#b2b1b6" stroke-width="1"></rect><path fill="#ebe7e8" d="M -1.5 4 L -1.5 12 M 0.5 4 L 0.5 12" stroke="#b2b1b6" stroke-width="1"></path></g><g class="highcharts-axis-labels highcharts-xaxis-labels" zIndex="7"><text x="57.62152280258552" style="color:#606060;cursor:default;font-size:11px;fill:#606060;" text-anchor="middle" transform="translate(0,0)" y="284" opacity="1"><tspan>Sep '16</tspan></text><text x="128.520641890555" style="color:#606060;cursor:default;font-size:11px;fill:#606060;" text-anchor="middle" transform="translate(0,0)" y="284" opacity="1"><tspan>Nov '16</tspan></text><text x="200.51897212717276" style="color:#606060;cursor:default;font-size:11px;fill:#606060;" text-anchor="middle" transform="translate(0,0)" y="284" opacity="1"><tspan>Jan '17</tspan></text><text x="270.31888006649075" style="color:#606060;cursor:default;font-size:11px;fill:#606060;" text-anchor="middle" transform="translate(0,0)" y="284" opacity="1"><tspan>Mar '17</tspan></text><text x="341.21799915446024" style="color:#606060;cursor:default;font-size:11px;fill:#606060;" text-anchor="middle" transform="translate(0,0)" y="284" opacity="1"><tspan>May '17</tspan></text><text x="414.3155405397295" style="color:#606060;cursor:default;font-size:11px;fill:#606060;" text-anchor="middle" transform="translate(0,0)" y="284" opacity="1"><tspan>Jul '17</tspan></text><text x="487.9626874993229" style="color:#606060;cursor:default;font-size:11px;fill:#606060;" text-anchor="middle" transform="translate(0,0)" y="284" opacity="1"><tspan>Sep '17</tspan></text><text x="555.5641731413411" style="color:#606060;cursor:default;font-size:11px;fill:#606060;" text-anchor="middle" transform="translate(0,0)" y="284" opacity="1"><tspan>Nov '17</tspan></text><text x="622.7534546026145" style="color:#606060;cursor:default;font-size:11px;fill:#606060;" text-anchor="middle" transform="translate(0,0)" y="284" opacity="1"><tspan>Jan '18</tspan></text><text x="692.4159611483499" style="color:#606060;cursor:default;font-size:11px;fill:#606060;" text-anchor="middle" transform="translate(0,0)" y="284" opacity="1"><tspan>Mar '18</tspan></text><text x="759.1930384288786" style="color:#606060;cursor:default;font-size:11px;fill:#606060;" text-anchor="middle" transform="translate(0,0)" y="284" opacity="1"><tspan>May '18</tspan></text><text x="830.3669603040101" style="color:#606060;cursor:default;font-size:11px;fill:#606060;" text-anchor="middle" transform="translate(0,0)" y="284" opacity="1"><tspan>Jul '18</tspan></text></g><g class="highcharts-axis-labels highcharts-xaxis-labels" zIndex="7"><text x="133.6483993259709" style="color:#888;cursor:default;font-size:11px;fill:#888;width:201px;text-overflow:clip;" text-anchor="start" transform="translate(0,0)" y="347" opacity="1">2012</text><text x="350.3983993259709" style="color:#888;cursor:default;font-size:11px;fill:#888;width:201px;text-overflow:clip;" text-anchor="start" transform="translate(0,0)" y="347" opacity="1">2014</text><text x="566.851887698064" style="color:#888;cursor:default;font-size:11px;fill:#888;width:201px;text-overflow:clip;" text-anchor="start" transform="translate(0,0)" y="347" opacity="1">2016</text><text x="783.601887698064" style="color:#888;cursor:default;font-size:11px;fill:#888;width:201px;text-overflow:clip;" text-anchor="start" transform="translate(0,0)" y="347" opacity="1">2018</text></g><g class="highcharts-axis-labels highcharts-yaxis-labels" zIndex="7"><text x="854" style="color:#606060;cursor:default;font-size:11px;fill:#606060;width:275px;text-overflow:clip;" text-anchor="end" transform="translate(0,0)" y="263" opacity="1">4</text><text x="854" style="color:#606060;cursor:default;font-size:11px;fill:#606060;width:275px;text-overflow:clip;" text-anchor="end" transform="translate(0,0)" y="208" opacity="1">6</text><text x="854" style="color:#606060;cursor:default;font-size:11px;fill:#606060;width:275px;text-overflow:clip;" text-anchor="end" transform="translate(0,0)" y="152" opacity="1">8</text><text x="854" style="color:#606060;cursor:default;font-size:11px;fill:#606060;width:275px;text-overflow:clip;" text-anchor="end" transform="translate(0,0)" y="97" opacity="1">10</text><text x="0" style="color:#606060;cursor:default;font-size:11px;fill:#606060;width:275px;text-overflow:clip;" text-anchor="end" transform="translate(0,0)" y="-9999">12</text></g><g class="highcharts-axis-labels highcharts-yaxis-labels" zIndex="7"></g><g class="highcharts-tooltip" zIndex="8" style="cursor:default;padding:0;white-space:nowrap;" transform="translate(382,-9999)" opacity="0" visibility="visible"><path fill="none" d="M 3.5 0.5 L 108.5 0.5 C 111.5 0.5 111.5 0.5 111.5 3.5 L 111.5 41.5 C 111.5 44.5 111.5 44.5 108.5 44.5 L 62.5 44.5 56.5 50.5 50.5 44.5 3.5 44.5 C 0.5 44.5 0.5 44.5 0.5 41.5 L 0.5 3.5 C 0.5 0.5 0.5 0.5 3.5 0.5" isShadow="true" stroke="black" stroke-opacity="0.049999999999999996" stroke-width="5" transform="translate(1, 1)" width="111" height="44"></path><path fill="none" d="M 3.5 0.5 L 108.5 0.5 C 111.5 0.5 111.5 0.5 111.5 3.5 L 111.5 41.5 C 111.5 44.5 111.5 44.5 108.5 44.5 L 62.5 44.5 56.5 50.5 50.5 44.5 3.5 44.5 C 0.5 44.5 0.5 44.5 0.5 41.5 L 0.5 3.5 C 0.5 0.5 0.5 0.5 3.5 0.5" isShadow="true" stroke="black" stroke-opacity="0.09999999999999999" stroke-width="3" transform="translate(1, 1)" width="111" height="44"></path><path fill="none" d="M 3.5 0.5 L 108.5 0.5 C 111.5 0.5 111.5 0.5 111.5 3.5 L 111.5 41.5 C 111.5 44.5 111.5 44.5 108.5 44.5 L 62.5 44.5 56.5 50.5 50.5 44.5 3.5 44.5 C 0.5 44.5 0.5 44.5 0.5 41.5 L 0.5 3.5 C 0.5 0.5 0.5 0.5 3.5 0.5" isShadow="true" stroke="black" stroke-opacity="0.15" stroke-width="1" transform="translate(1, 1)" width="111" height="44"></path><path fill="rgba(249, 249, 249, .85)" d="M 3.5 0.5 L 108.5 0.5 C 111.5 0.5 111.5 0.5 111.5 3.5 L 111.5 41.5 C 111.5 44.5 111.5 44.5 108.5 44.5 L 62.5 44.5 56.5 50.5 50.5 44.5 3.5 44.5 C 0.5 44.5 0.5 44.5 0.5 41.5 L 0.5 3.5 C 0.5 0.5 0.5 0.5 3.5 0.5" stroke="#7cb5ec" stroke-width="1"></path><text x="8" zIndex="1" style="font-size:12px;color:#333333;fill:#333333;" transform="translate(0,20)"><tspan style="font-size: 10px">Friday, Jul 21, 2017</tspan><tspan style="fill:#7cb5ec" x="8" dy="15">BBVA</tspan><tspan dx="0">: </tspan><tspan style="font-weight:bold" dx="0">7,42</tspan></text></g></svg><span style="position: absolute; font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif; font-size: 16px; white-space: nowrap; color: rgb(51, 51, 51); margin-left: 0px; margin-top: 0px; left: 195.5px; top: 7px;" class="highcharts-title" zindex="4" transform="translate(0,0)">Status: Wait Last operation: Sell: 11-07-2018 (price:6,04)</span></div></div>
<div id="operations-list" style="min-height: 470px;"><div class="company-detail-table">
<table class="table table-hover table-portafolio">
<caption>Panda profit calculation for BBVA *</caption>
<tbody><tr>
<th>Buy date</th>
<th>Buy price</th>
<th>Sell date</th>
<th>Sell price</th>
<th>Profit/loss</th>
<th>Panda profit total</th>
</tr>
<tr class=" even">
<td class="date">Jul-05-2018</td>
<td>6,31</td>
<td class="date">Jul-11-2018</td>
<td>6,04</td>
<td class="profitability negative">
-4,3% </td>
<td class="profitability positive">
60,9% </td>
</tr>
<tr class="">
<td class="date">Apr-30-2018</td>
<td>6,73</td>
<td class="date">May-18-2018</td>
<td>6,58</td>
<td class="profitability negative">
-2,2% </td>
<td class="profitability positive">
68,1% </td>
</tr>
<tr class=" even">
<td class="date">Jan-05-2018</td>
<td>7,25</td>
<td class="date">Feb-05-2018</td>
<td>7,26</td>
<td class="profitability positive">
0,1% </td>
<td class="profitability positive">
71,9% </td>
</tr>
<tr class="">
<td class="date">Dec-20-2017</td>
<td>7,27</td>
<td class="date">Jan-02-2018</td>
<td>7,08</td>
<td class="profitability negative">
-2,6% </td>
<td class="profitability positive">
71,7% </td>
</tr>
<tr class=" even">
<td class="date">Dec-12-2017</td>
<td>7,21</td>
<td class="date">Dec-15-2017</td>
<td>7,15</td>
<td class="profitability negative">
-0,8% </td>
<td class="profitability positive">
76,3% </td>
</tr>
<tr class="">
<td class="date">Oct-31-2017</td>
<td>7,51</td>
<td class="date">Nov-06-2017</td>
<td>7,26</td>
<td class="profitability negative">
-3,3% </td>
<td class="profitability positive">
77,7% </td>
</tr>
<tr class=" even">
<td class="date">Aug-16-2017</td>
<td>7,66</td>
<td class="date">Aug-21-2017</td>
<td>7,44</td>
<td class="profitability negative">
-2,9% </td>
<td class="profitability positive">
83,9% </td>
</tr>
<tr class="">
<td class="date">Jun-28-2017</td>
<td>7,48</td>
<td class="date">Aug-11-2017</td>
<td>7,45</td>
<td class="profitability negative">
-0,4% </td>
<td class="profitability positive">
89,3% </td>
</tr>
<tr class=" even">
<td class="date">Jun-20-2017</td>
<td>7,34</td>
<td class="date">Jun-23-2017</td>
<td>7,24</td>
<td class="profitability negative">
-1,4% </td>
<td class="profitability positive">
90,1% </td>
</tr>