forked from UFund-Me/Qbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy_quant_stats.html
22615 lines (22602 loc) · 566 KB
/
my_quant_stats.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
<!-- generated by QuantStats for Python -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Tearsheet (generated by QuantStats)</title>
<meta name="robots" content="noindex, nofollow">
<link rel="shortcut icon" href="https://qtpylib.io/favicon.ico" type="image/x-icon">
<style>
body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:30px}body,p,table,td,th{font:13px/1.4 Arial,sans-serif}.container{max-width:960px;margin:auto}img,svg{width:100%}h1,h2,h3,h4{font-weight:400;margin:0}h1 dt{display:inline;margin-left:10px;font-size:14px}h3{margin-bottom:10px;font-weight:700}h4{color:grey}h4 a{color:#09c;text-decoration:none}h4 a:hover{color:#069;text-decoration:underline}hr{margin:25px 0 40px;height:0;border:0;border-top:1px solid #ccc}#left{width:620px;margin-right:18px;margin-top:-1.2rem;float:left}#right{width:320px;float:right}#left svg{margin:-1.5rem 0}#monthly_heatmap{overflow:hidden}#monthly_heatmap svg{margin:-1.5rem 0}table{margin:0 0 40px;border:0;border-spacing:0;width:100%}table td,table th{text-align:right;padding:4px 5px 3px 5px}table th{text-align:right;padding:6px 5px 5px 5px}table td:first-of-type,table th:first-of-type{text-align:left;padding-left:2px}table td:last-of-type,table th:last-of-type{text-align:right;padding-right:2px}td hr{margin:5px 0}table th{font-weight:400}table thead th{font-weight:700;background:#eee}#eoy table td:after{content:"%"}#eoy table td:first-of-type:after,#eoy table td:last-of-type:after,#eoy table td:nth-of-type(4):after{content:""}#eoy table th{text-align:right}#eoy table th:first-of-type{text-align:left}#eoy table td:after{content:"%"}#eoy table td:first-of-type:after,#eoy table td:last-of-type:after{content:""}#ddinfo table td:nth-of-type(3):after{content:"%"}#ddinfo table th{text-align:right}#ddinfo table td:first-of-type,#ddinfo table td:nth-of-type(2),#ddinfo table th:first-of-type,#ddinfo table th:nth-of-type(2){text-align:left}#ddinfo table td:nth-of-type(3):after{content:"%"}
@media print{hr{margin:25px 0}body{margin:0}.container{max-width:100%;margin:0}#left{width:55%;margin:0}#left svg{margin:0 0 -10%}#left svg:first-of-type{margin-top:-30%}#right{margin:0;width:45%}}
</style>
</head>
<body onload="save()">
<div class="container">
<h1>Strategy Tearsheet <dt> 1 Jan, 2020 - 26 Sep, 2022</dt></h1>
<h4> Generated by <a href="http://quantstats.io" target="quantstats">QuantStats</a> (v. 0.0.59)</h4>
<hr>
<div id="left">
<div>
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="576pt" height="360pt" viewBox="0 0 576 360" xmlns="http://www.w3.org/2000/svg" version="1.1">
<metadata>
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2023-02-28T22:54:04.435701</dc:date>
<dc:format>image/svg+xml</dc:format>
<dc:creator>
<cc:Agent>
<dc:title>Matplotlib v3.6.2, https://matplotlib.org/</dc:title>
</cc:Agent>
</dc:creator>
</cc:Work>
</rdf:RDF>
</metadata>
<defs>
<style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
</defs>
<g id="figure_1">
<g id="patch_1">
<path d="M 0 360
L 576 360
L 576 0
L 0 0
z
" style="fill: #ffffff"/>
</g>
<g id="axes_1">
<g id="patch_2">
<path d="M 51.425 308.664746
L 565.2 308.664746
L 565.2 51.8
L 51.425 51.8
z
" style="fill: #ffffff"/>
</g>
<g id="matplotlib.axis_1">
<g id="xtick_1">
<g id="line2d_1">
<path d="M 74.778409 308.664746
L 74.778409 51.8
" clip-path="url(#paf2f16a15b)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"/>
</g>
<g id="text_1">
<!-- 2020-01 -->
<g style="fill: #666666" transform="translate(35.123293 347.866015) rotate(-30) scale(0.121 -0.121)">
<defs>
<path id="ArialMT-32" d="M 3222 541
L 3222 0
L 194 0
Q 188 203 259 391
Q 375 700 629 1000
Q 884 1300 1366 1694
Q 2113 2306 2375 2664
Q 2638 3022 2638 3341
Q 2638 3675 2398 3904
Q 2159 4134 1775 4134
Q 1369 4134 1125 3890
Q 881 3647 878 3216
L 300 3275
Q 359 3922 746 4261
Q 1134 4600 1788 4600
Q 2447 4600 2831 4234
Q 3216 3869 3216 3328
Q 3216 3053 3103 2787
Q 2991 2522 2730 2228
Q 2469 1934 1863 1422
Q 1356 997 1212 845
Q 1069 694 975 541
L 3222 541
z
" transform="scale(0.015625)"/>
<path id="ArialMT-30" d="M 266 2259
Q 266 3072 433 3567
Q 600 4063 929 4331
Q 1259 4600 1759 4600
Q 2128 4600 2406 4451
Q 2684 4303 2865 4023
Q 3047 3744 3150 3342
Q 3253 2941 3253 2259
Q 3253 1453 3087 958
Q 2922 463 2592 192
Q 2263 -78 1759 -78
Q 1097 -78 719 397
Q 266 969 266 2259
z
M 844 2259
Q 844 1131 1108 757
Q 1372 384 1759 384
Q 2147 384 2411 759
Q 2675 1134 2675 2259
Q 2675 3391 2411 3762
Q 2147 4134 1753 4134
Q 1366 4134 1134 3806
Q 844 3388 844 2259
z
" transform="scale(0.015625)"/>
<path id="ArialMT-2d" d="M 203 1375
L 203 1941
L 1931 1941
L 1931 1375
L 203 1375
z
" transform="scale(0.015625)"/>
<path id="ArialMT-31" d="M 2384 0
L 1822 0
L 1822 3584
Q 1619 3391 1289 3197
Q 959 3003 697 2906
L 697 3450
Q 1169 3672 1522 3987
Q 1875 4303 2022 4600
L 2384 4600
L 2384 0
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-32"/>
<use xlink:href="#ArialMT-30" x="55.615234"/>
<use xlink:href="#ArialMT-32" x="111.230469"/>
<use xlink:href="#ArialMT-30" x="166.845703"/>
<use xlink:href="#ArialMT-2d" x="222.460938"/>
<use xlink:href="#ArialMT-30" x="255.761719"/>
<use xlink:href="#ArialMT-31" x="311.376953"/>
</g>
</g>
</g>
<g id="xtick_2">
<g id="line2d_2">
<path d="M 131.350231 308.664746
L 131.350231 51.8
" clip-path="url(#paf2f16a15b)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"/>
</g>
<g id="text_2">
<!-- 2020-05 -->
<g style="fill: #666666" transform="translate(91.695115 347.866015) rotate(-30) scale(0.121 -0.121)">
<defs>
<path id="ArialMT-35" d="M 266 1200
L 856 1250
Q 922 819 1161 601
Q 1400 384 1738 384
Q 2144 384 2425 690
Q 2706 997 2706 1503
Q 2706 1984 2436 2262
Q 2166 2541 1728 2541
Q 1456 2541 1237 2417
Q 1019 2294 894 2097
L 366 2166
L 809 4519
L 3088 4519
L 3088 3981
L 1259 3981
L 1013 2750
Q 1425 3038 1878 3038
Q 2478 3038 2890 2622
Q 3303 2206 3303 1553
Q 3303 931 2941 478
Q 2500 -78 1738 -78
Q 1113 -78 717 272
Q 322 622 266 1200
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-32"/>
<use xlink:href="#ArialMT-30" x="55.615234"/>
<use xlink:href="#ArialMT-32" x="111.230469"/>
<use xlink:href="#ArialMT-30" x="166.845703"/>
<use xlink:href="#ArialMT-2d" x="222.460938"/>
<use xlink:href="#ArialMT-30" x="255.761719"/>
<use xlink:href="#ArialMT-35" x="311.376953"/>
</g>
</g>
</g>
<g id="xtick_3">
<g id="line2d_3">
<path d="M 188.857124 308.664746
L 188.857124 51.8
" clip-path="url(#paf2f16a15b)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"/>
</g>
<g id="text_3">
<!-- 2020-09 -->
<g style="fill: #666666" transform="translate(149.202009 347.866015) rotate(-30) scale(0.121 -0.121)">
<defs>
<path id="ArialMT-39" d="M 350 1059
L 891 1109
Q 959 728 1153 556
Q 1347 384 1650 384
Q 1909 384 2104 503
Q 2300 622 2425 820
Q 2550 1019 2634 1356
Q 2719 1694 2719 2044
Q 2719 2081 2716 2156
Q 2547 1888 2255 1720
Q 1963 1553 1622 1553
Q 1053 1553 659 1965
Q 266 2378 266 3053
Q 266 3750 677 4175
Q 1088 4600 1706 4600
Q 2153 4600 2523 4359
Q 2894 4119 3086 3673
Q 3278 3228 3278 2384
Q 3278 1506 3087 986
Q 2897 466 2520 194
Q 2144 -78 1638 -78
Q 1100 -78 759 220
Q 419 519 350 1059
z
M 2653 3081
Q 2653 3566 2395 3850
Q 2138 4134 1775 4134
Q 1400 4134 1122 3828
Q 844 3522 844 3034
Q 844 2597 1108 2323
Q 1372 2050 1759 2050
Q 2150 2050 2401 2323
Q 2653 2597 2653 3081
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-32"/>
<use xlink:href="#ArialMT-30" x="55.615234"/>
<use xlink:href="#ArialMT-32" x="111.230469"/>
<use xlink:href="#ArialMT-30" x="166.845703"/>
<use xlink:href="#ArialMT-2d" x="222.460938"/>
<use xlink:href="#ArialMT-30" x="255.761719"/>
<use xlink:href="#ArialMT-39" x="311.376953"/>
</g>
</g>
</g>
<g id="xtick_4">
<g id="line2d_4">
<path d="M 245.896482 308.664746
L 245.896482 51.8
" clip-path="url(#paf2f16a15b)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"/>
</g>
<g id="text_4">
<!-- 2021-01 -->
<g style="fill: #666666" transform="translate(206.241366 347.866015) rotate(-30) scale(0.121 -0.121)">
<use xlink:href="#ArialMT-32"/>
<use xlink:href="#ArialMT-30" x="55.615234"/>
<use xlink:href="#ArialMT-32" x="111.230469"/>
<use xlink:href="#ArialMT-31" x="166.845703"/>
<use xlink:href="#ArialMT-2d" x="222.460938"/>
<use xlink:href="#ArialMT-30" x="255.761719"/>
<use xlink:href="#ArialMT-31" x="311.376953"/>
</g>
</g>
</g>
<g id="xtick_5">
<g id="line2d_5">
<path d="M 302.000768 308.664746
L 302.000768 51.8
" clip-path="url(#paf2f16a15b)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"/>
</g>
<g id="text_5">
<!-- 2021-05 -->
<g style="fill: #666666" transform="translate(262.345652 347.866015) rotate(-30) scale(0.121 -0.121)">
<use xlink:href="#ArialMT-32"/>
<use xlink:href="#ArialMT-30" x="55.615234"/>
<use xlink:href="#ArialMT-32" x="111.230469"/>
<use xlink:href="#ArialMT-31" x="166.845703"/>
<use xlink:href="#ArialMT-2d" x="222.460938"/>
<use xlink:href="#ArialMT-30" x="255.761719"/>
<use xlink:href="#ArialMT-35" x="311.376953"/>
</g>
</g>
</g>
<g id="xtick_6">
<g id="line2d_6">
<path d="M 359.507661 308.664746
L 359.507661 51.8
" clip-path="url(#paf2f16a15b)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"/>
</g>
<g id="text_6">
<!-- 2021-09 -->
<g style="fill: #666666" transform="translate(319.852545 347.866015) rotate(-30) scale(0.121 -0.121)">
<use xlink:href="#ArialMT-32"/>
<use xlink:href="#ArialMT-30" x="55.615234"/>
<use xlink:href="#ArialMT-32" x="111.230469"/>
<use xlink:href="#ArialMT-31" x="166.845703"/>
<use xlink:href="#ArialMT-2d" x="222.460938"/>
<use xlink:href="#ArialMT-30" x="255.761719"/>
<use xlink:href="#ArialMT-39" x="311.376953"/>
</g>
</g>
</g>
<g id="xtick_7">
<g id="line2d_7">
<path d="M 416.547019 308.664746
L 416.547019 51.8
" clip-path="url(#paf2f16a15b)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"/>
</g>
<g id="text_7">
<!-- 2022-01 -->
<g style="fill: #666666" transform="translate(376.891903 347.866015) rotate(-30) scale(0.121 -0.121)">
<use xlink:href="#ArialMT-32"/>
<use xlink:href="#ArialMT-30" x="55.615234"/>
<use xlink:href="#ArialMT-32" x="111.230469"/>
<use xlink:href="#ArialMT-32" x="166.845703"/>
<use xlink:href="#ArialMT-2d" x="222.460938"/>
<use xlink:href="#ArialMT-30" x="255.761719"/>
<use xlink:href="#ArialMT-31" x="311.376953"/>
</g>
</g>
</g>
<g id="xtick_8">
<g id="line2d_8">
<path d="M 472.651305 308.664746
L 472.651305 51.8
" clip-path="url(#paf2f16a15b)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"/>
</g>
<g id="text_8">
<!-- 2022-05 -->
<g style="fill: #666666" transform="translate(432.996189 347.866015) rotate(-30) scale(0.121 -0.121)">
<use xlink:href="#ArialMT-32"/>
<use xlink:href="#ArialMT-30" x="55.615234"/>
<use xlink:href="#ArialMT-32" x="111.230469"/>
<use xlink:href="#ArialMT-32" x="166.845703"/>
<use xlink:href="#ArialMT-2d" x="222.460938"/>
<use xlink:href="#ArialMT-30" x="255.761719"/>
<use xlink:href="#ArialMT-35" x="311.376953"/>
</g>
</g>
</g>
<g id="xtick_9">
<g id="line2d_9">
<path d="M 530.158198 308.664746
L 530.158198 51.8
" clip-path="url(#paf2f16a15b)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"/>
</g>
<g id="text_9">
<!-- 2022-09 -->
<g style="fill: #666666" transform="translate(490.503082 347.866015) rotate(-30) scale(0.121 -0.121)">
<use xlink:href="#ArialMT-32"/>
<use xlink:href="#ArialMT-30" x="55.615234"/>
<use xlink:href="#ArialMT-32" x="111.230469"/>
<use xlink:href="#ArialMT-32" x="166.845703"/>
<use xlink:href="#ArialMT-2d" x="222.460938"/>
<use xlink:href="#ArialMT-30" x="255.761719"/>
<use xlink:href="#ArialMT-39" x="311.376953"/>
</g>
</g>
</g>
</g>
<g id="matplotlib.axis_2">
<g id="ytick_1">
<g id="line2d_10">
<path d="M 51.425 296.851304
L 565.2 296.851304
" clip-path="url(#paf2f16a15b)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"/>
</g>
<g id="text_10">
<!-- 0% -->
<g style="fill: #666666" transform="translate(24.436719 301.18178) scale(0.121 -0.121)">
<defs>
<path id="ArialMT-25" d="M 372 3481
Q 372 3972 619 4315
Q 866 4659 1334 4659
Q 1766 4659 2048 4351
Q 2331 4044 2331 3447
Q 2331 2866 2045 2552
Q 1759 2238 1341 2238
Q 925 2238 648 2547
Q 372 2856 372 3481
z
M 1350 4272
Q 1141 4272 1002 4090
Q 863 3909 863 3425
Q 863 2984 1003 2804
Q 1144 2625 1350 2625
Q 1563 2625 1702 2806
Q 1841 2988 1841 3469
Q 1841 3913 1700 4092
Q 1559 4272 1350 4272
z
M 1353 -169
L 3859 4659
L 4316 4659
L 1819 -169
L 1353 -169
z
M 3334 1075
Q 3334 1569 3581 1911
Q 3828 2253 4300 2253
Q 4731 2253 5014 1945
Q 5297 1638 5297 1041
Q 5297 459 5011 145
Q 4725 -169 4303 -169
Q 3888 -169 3611 142
Q 3334 453 3334 1075
z
M 4316 1866
Q 4103 1866 3964 1684
Q 3825 1503 3825 1019
Q 3825 581 3965 400
Q 4106 219 4313 219
Q 4528 219 4667 400
Q 4806 581 4806 1063
Q 4806 1506 4665 1686
Q 4525 1866 4316 1866
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-30"/>
<use xlink:href="#ArialMT-25" x="55.615234"/>
</g>
</g>
</g>
<g id="ytick_2">
<g id="line2d_11">
<path d="M 51.425 257.009508
L 565.2 257.009508
" clip-path="url(#paf2f16a15b)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"/>
</g>
<g id="text_11">
<!-- 100% -->
<g style="fill: #666666" transform="translate(10.97925 261.339984) scale(0.121 -0.121)">
<use xlink:href="#ArialMT-31"/>
<use xlink:href="#ArialMT-30" x="55.615234"/>
<use xlink:href="#ArialMT-30" x="111.230469"/>
<use xlink:href="#ArialMT-25" x="166.845703"/>
</g>
</g>
</g>
<g id="ytick_3">
<g id="line2d_12">
<path d="M 51.425 217.167712
L 565.2 217.167712
" clip-path="url(#paf2f16a15b)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"/>
</g>
<g id="text_12">
<!-- 200% -->
<g style="fill: #666666" transform="translate(10.97925 221.498189) scale(0.121 -0.121)">
<use xlink:href="#ArialMT-32"/>
<use xlink:href="#ArialMT-30" x="55.615234"/>
<use xlink:href="#ArialMT-30" x="111.230469"/>
<use xlink:href="#ArialMT-25" x="166.845703"/>
</g>
</g>
</g>
<g id="ytick_4">
<g id="line2d_13">
<path d="M 51.425 177.325916
L 565.2 177.325916
" clip-path="url(#paf2f16a15b)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"/>
</g>
<g id="text_13">
<!-- 300% -->
<g style="fill: #666666" transform="translate(10.97925 181.656393) scale(0.121 -0.121)">
<defs>
<path id="ArialMT-33" d="M 269 1209
L 831 1284
Q 928 806 1161 595
Q 1394 384 1728 384
Q 2125 384 2398 659
Q 2672 934 2672 1341
Q 2672 1728 2419 1979
Q 2166 2231 1775 2231
Q 1616 2231 1378 2169
L 1441 2663
Q 1497 2656 1531 2656
Q 1891 2656 2178 2843
Q 2466 3031 2466 3422
Q 2466 3731 2256 3934
Q 2047 4138 1716 4138
Q 1388 4138 1169 3931
Q 950 3725 888 3313
L 325 3413
Q 428 3978 793 4289
Q 1159 4600 1703 4600
Q 2078 4600 2393 4439
Q 2709 4278 2876 4000
Q 3044 3722 3044 3409
Q 3044 3113 2884 2869
Q 2725 2625 2413 2481
Q 2819 2388 3044 2092
Q 3269 1797 3269 1353
Q 3269 753 2831 336
Q 2394 -81 1725 -81
Q 1122 -81 723 278
Q 325 638 269 1209
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-33"/>
<use xlink:href="#ArialMT-30" x="55.615234"/>
<use xlink:href="#ArialMT-30" x="111.230469"/>
<use xlink:href="#ArialMT-25" x="166.845703"/>
</g>
</g>
</g>
<g id="ytick_5">
<g id="line2d_14">
<path d="M 51.425 137.484121
L 565.2 137.484121
" clip-path="url(#paf2f16a15b)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"/>
</g>
<g id="text_14">
<!-- 400% -->
<g style="fill: #666666" transform="translate(10.97925 141.814597) scale(0.121 -0.121)">
<defs>
<path id="ArialMT-34" d="M 2069 0
L 2069 1097
L 81 1097
L 81 1613
L 2172 4581
L 2631 4581
L 2631 1613
L 3250 1613
L 3250 1097
L 2631 1097
L 2631 0
L 2069 0
z
M 2069 1613
L 2069 3678
L 634 1613
L 2069 1613
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-34"/>
<use xlink:href="#ArialMT-30" x="55.615234"/>
<use xlink:href="#ArialMT-30" x="111.230469"/>
<use xlink:href="#ArialMT-25" x="166.845703"/>
</g>
</g>
</g>
<g id="ytick_6">
<g id="line2d_15">
<path d="M 51.425 97.642325
L 565.2 97.642325
" clip-path="url(#paf2f16a15b)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"/>
</g>
<g id="text_15">
<!-- 500% -->
<g style="fill: #666666" transform="translate(10.97925 101.972801) scale(0.121 -0.121)">
<use xlink:href="#ArialMT-35"/>
<use xlink:href="#ArialMT-30" x="55.615234"/>
<use xlink:href="#ArialMT-30" x="111.230469"/>
<use xlink:href="#ArialMT-25" x="166.845703"/>
</g>
</g>
</g>
<g id="ytick_7">
<g id="line2d_16">
<path d="M 51.425 57.800529
L 565.2 57.800529
" clip-path="url(#paf2f16a15b)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"/>
</g>
<g id="text_16">
<!-- 600% -->
<g style="fill: #666666" transform="translate(10.97925 62.131006) scale(0.121 -0.121)">
<defs>
<path id="ArialMT-36" d="M 3184 3459
L 2625 3416
Q 2550 3747 2413 3897
Q 2184 4138 1850 4138
Q 1581 4138 1378 3988
Q 1113 3794 959 3422
Q 806 3050 800 2363
Q 1003 2672 1297 2822
Q 1591 2972 1913 2972
Q 2475 2972 2870 2558
Q 3266 2144 3266 1488
Q 3266 1056 3080 686
Q 2894 316 2569 119
Q 2244 -78 1831 -78
Q 1128 -78 684 439
Q 241 956 241 2144
Q 241 3472 731 4075
Q 1159 4600 1884 4600
Q 2425 4600 2770 4297
Q 3116 3994 3184 3459
z
M 888 1484
Q 888 1194 1011 928
Q 1134 663 1356 523
Q 1578 384 1822 384
Q 2178 384 2434 671
Q 2691 959 2691 1453
Q 2691 1928 2437 2201
Q 2184 2475 1800 2475
Q 1419 2475 1153 2201
Q 888 1928 888 1484
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-36"/>
<use xlink:href="#ArialMT-30" x="55.615234"/>
<use xlink:href="#ArialMT-30" x="111.230469"/>
<use xlink:href="#ArialMT-25" x="166.845703"/>
</g>
</g>
</g>
</g>
<g id="line2d_17">
<path d="M 51.425 296.851304
L 565.2 296.851304
" clip-path="url(#paf2f16a15b)" style="fill: none; stroke: #808080; stroke-linecap: round"/>
</g>
<g id="line2d_18">
<path d="M 74.778409 295.858918
L 75.245945 296.989076
L 75.713481 296.547855
L 76.181016 294.87632
L 76.648552 293.758392
L 77.116088 295.034383
L 77.583623 294.196406
L 78.051159 295.700564
L 78.518695 295.043497
L 78.986231 293.238507
L 79.453766 292.112473
L 79.921302 290.030984
L 80.388838 290.148146
L 81.323909 294.264991
L 81.791445 293.535329
L 82.258981 292.312991
L 82.726516 293.583378
L 83.194052 291.787746
L 83.661588 290.856004
L 84.129123 289.622361
L 84.596659 287.836793
L 85.064195 290.032704
L 85.531731 291.29797
L 85.999266 290.414826
L 86.466802 291.124357
L 86.934338 289.873441
L 87.401873 289.256512
L 87.869409 288.960407
L 88.336945 289.0339
L 88.804481 288.444136
L 89.272016 288.413832
L 89.739552 286.513171
L 90.207088 287.093657
L 90.674623 285.978969
L 91.142159 284.457989
L 91.609695 286.511436
L 92.077231 284.72054
L 92.544766 282.311797
L 93.012302 284.807327
L 93.479838 283.364455
L 93.947374 285.448038
L 94.414909 283.214544
L 94.882445 284.332727
L 95.349981 286.016101
L 95.817516 285.252173
L 96.752588 282.071433
L 97.220124 284.28729
L 98.622731 276.919611
L 99.090266 275.661295
L 99.557802 273.015778
L 100.025338 271.203264
L 100.492874 273.570375
L 100.960409 272.543785
L 101.427945 274.796804
L 101.895481 275.220914
L 102.363016 274.137074
L 102.830552 271.689223
L 103.298088 270.564086
L 103.765624 270.925475
L 104.233159 271.521231
L 105.168231 267.707575
L 105.635766 268.016735
L 106.103302 271.252222
L 106.570838 271.882238
L 107.038374 270.000019
L 107.505909 270.329195
L 107.973445 268.764243
L 108.908516 274.04406
L 109.376052 274.784939
L 109.843588 273.279183
L 110.778659 268.226447
L 111.246195 267.143907
L 111.713731 268.532761
L 112.181266 271.051938
L 113.116338 267.952327
L 113.583874 270.392024
L 114.051409 268.814174
L 114.518945 265.999156
L 114.986481 264.276377
L 115.454017 264.795654
L 115.921552 266.205712
L 116.389088 266.713345
L 116.856624 268.645527
L 117.324159 271.958248
L 117.791695 274.101984
L 118.259231 275.469143
L 118.726767 275.639608
L 119.661838 279.748659
L 120.129374 279.689248
L 120.596909 279.142714
L 121.064445 280.611847
L 121.531981 280.764879
L 121.999517 283.057052
L 122.467052 280.689509
L 122.934588 283.345231
L 123.402124 285.259898
L 123.869659 285.240398
L 124.337195 284.959404
L 124.804731 283.224073
L 125.272267 284.42871
L 126.207338 288.056103
L 126.674874 288.543386
L 127.142409 286.197891
L 128.077481 283.91546
L 128.545017 285.093938
L 129.012552 284.29963
L 129.480088 285.05201
L 129.947624 285.435902
L 130.415159 286.958233
L 131.817767 285.024623
L 132.285302 284.927414
L 132.752838 285.954071
L 134.155445 281.171664
L 135.090517 275.938083
L 135.558052 278.3084
L 136.025588 277.511939
L 136.493124 277.096115
L 136.96066 274.860596
L 137.428195 274.844949
L 137.895731 272.463478
L 138.363267 273.070467
L 138.830802 270.869916
L 139.298338 267.626243
L 139.765874 265.53818
L 140.23341 265.246716
L 141.168481 269.293531
L 141.636017 269.24133
L 142.103552 270.505299
L 142.571088 270.747596
L 143.038624 271.803178
L 143.50616 271.234188
L 143.973695 274.287003
L 144.441231 272.534945
L 144.908767 273.944294
L 145.843838 270.696494
L 146.311374 269.504296
L 146.77891 270.177048
L 147.246445 268.625904
L 148.181517 271.730707
L 148.649052 271.884113
L 149.116588 269.367123
L 149.584124 271.484312
L 150.05166 272.489063
L 150.519195 270.539073
L 150.986731 271.340313
L 151.454267 273.403145
L 151.921802 270.79091
L 152.389338 270.025874
L 153.32441 264.729037
L 153.791945 262.874474
L 154.259481 260.30632
L 154.727017 260.448978
L 155.194553 257.714528
L 155.662088 256.418876
L 156.129624 258.160887
L 156.59716 260.699286
L 157.064695 258.029075
L 157.532231 261.762881
L 157.999767 258.201167
L 158.467303 258.670098
L 158.934838 260.048365
L 159.402374 256.82908
L 159.86991 259.816342
L 160.337445 260.089838
L 160.804981 262.718559
L 161.272517 261.39454
L 161.740053 261.276356
L 162.207588 263.395144
L 162.675124 263.619229
L 163.14266 261.935344
L 163.610195 258.564801
L 164.077731 256.579346
L 164.545267 260.229786
L 165.012803 256.672682
L 165.480338 257.765122
L 165.947874 261.170178
L 166.882945 257.201784
L 167.350481 258.883294
L 167.818017 258.496506
L 168.285553 254.952994
L 168.753088 253.782326
L 169.68816 257.104332
L 171.090767 247.271122
L 171.558303 251.468334
L 172.025838 252.148718
L 172.493374 256.32551
L 172.96091 252.767158
L 173.428445 254.850285
L 173.895981 253.750267
L 174.363517 256.764179
L 174.831053 256.833701
L 175.766124 262.165371
L 176.23366 259.007131
L 176.701196 260.952698
L 177.168731 261.953838
L 177.636267 262.090541
L 178.103803 258.760983
L 178.571338 260.964541
L 179.038874 259.439608
L 179.50641 255.586635
L 179.973946 256.163309
L 180.441481 257.528339
L 180.909017 254.150215
L 181.844088 250.383657
L 182.311624 253.125798
L 183.246696 256.841683
L 183.714231 253.838454
L 184.181767 252.417941
L 184.649303 256.581122
L 185.116838 255.012504
L 185.584374 255.848865
L 186.519446 250.408856
L 186.986981 251.235523
L 187.454517 247.000705
L 188.389588 240.014736
L 188.857124 240.111128
L 189.32466 236.68256
L 189.792196 232.303016
L 190.259731 231.283193
L 190.727267 233.399509
L 192.129874 224.463906
L 192.59741 219.905303
L 193.064946 222.632715
L 193.532481 224.449348
L 194.000017 224.456546
L 194.467553 228.967911
L 194.935088 230.156365
L 195.87016 221.96295
L 196.337696 221.917568
L 197.740303 205.882459
L 198.207839 208.158953
L 198.675374 213.325744
L 199.14291 208.534701
L 199.610446 205.698414
L 200.077981 211.764065
L 200.545517 215.184793
L 201.480589 226.203278
L 201.948124 224.474306
L 202.41566 227.072654
L 202.883196 228.329883
L 203.818267 219.198611
L 204.285803 220.224066
L 205.220874 214.766843
L 205.68841 214.511755
L 206.155946 211.225489
L 206.623481 213.139791
L 207.091017 207.931839
L 207.558553 209.638089
L 208.026089 214.048817
L 208.493624 217.101719
L 208.96116 213.069067
L 209.428696 207.115359
L 209.896231 207.346659
L 210.831303 216.45691
L 211.298839 215.497243
L 211.766374 212.098544
L 212.23391 206.821785
L 212.701446 205.818976
L 213.168981 202.707882
L 213.636517 208.499292
L 214.104053 205.381522
L 214.571589 208.220032
L 215.974196 220.384097
L 216.441732 223.115961
L 216.909267 220.033537
L 217.376803 221.86647
L 217.844339 220.139853
L 218.311874 219.307045
L 218.77941 217.643197
L 219.246946 220.611332
L 219.714482 222.078214
L 220.182017 220.736489
L 220.649553 217.705356
L 221.117089 213.346344
L 221.584624 216.637113
L 222.05216 213.552025
L 222.519696 209.398686
L 222.987232 206.905423
L 223.454767 206.862245
L 223.922303 209.186762
L 224.389839 203.694202
L 224.857374 207.267768
L 225.32491 206.214525
L 225.792446 211.752549
L 226.259982 214.712093
L 226.727517 212.399365
L 227.195053 218.281637
L 227.662589 219.243712
L 228.130124 223.747021
L 228.59766 218.304947
L 229.065196 217.339576
L 229.532732 215.833789
L 230.467803 211.335066
L 230.935339 212.906118
L 231.402874 209.842333
L 231.87041 204.811311
L 232.337946 208.634023
L 233.273017 201.505974
L 233.740553 200.43218
L 234.208089 196.076876
L 234.675624 201.168806
L 235.14316 202.196638
L 235.610696 200.789205
L 236.078232 200.651613
L 236.545767 204.061878
L 237.013303 205.315445
L 237.480839 203.969991
L 237.948375 201.033047
L 238.41591 199.317036
L 238.883446 192.677018
L 239.350982 188.850281
L 239.818517 190.972473
L 240.286053 196.008312
L 240.753589 196.708443
L 241.221125 203.548692
L 241.68866 204.348729
L 242.156196 198.937669
L 242.623732 196.144598
L 243.091267 202.830692
L 243.558803 198.86257
L 244.026339 196.241525
L 244.493875 195.04302
L 244.96141 200.371746
L 245.428946 197.477282
L 245.896482 190.829271
L 246.364017 194.457246
L 246.831553 196.74614
L 247.299089 200.547854
L 247.766625 202.403449
L 248.23416 201.108707
L 248.701696 200.325553
L 249.169232 204.663623
L 249.636767 207.16341
L 250.104303 205.967642
L 250.571839 205.974565
L 251.039375 201.198975
L 251.50691 207.504935
L 251.974446 207.285129
L 252.441982 203.789542
L 252.909517 209.254099
L 253.377053 206.560795
L 253.844589 208.711925
L 254.312125 206.142948
L 255.247196 193.978577
L 255.714732 194.258367
L 256.182267 200.060674
L 256.649803 198.207799
L 257.117339 193.602366
L 257.584875 194.995698
L 258.05241 198.41408
L 258.519946 200.752306
L 258.987482 197.044191
L 259.455018 192.024227
L 260.390089 185.874871
L 260.857625 192.796957
L 261.32516 192.548078
L 261.792696 186.811194
L 262.260232 189.856476
L 262.727768 182.79001
L 263.195303 184.830861
L 264.130375 198.434075
L 264.59791 192.303688
L 265.065446 194.299615
L 266.000518 191.468357
L 266.468053 184.648895
L 266.935589 191.275501
L 267.403125 192.165512