-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2472 lines (2252 loc) · 185 KB
/
index.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 lang="en">
<head>
<title>Peme969 | My Homepage</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/>
<meta name="color-scheme" content="dark only"/>
<meta name="description" content="Learn more about me!"/>
<meta property="og:site_name" content="Peme969 | My Homepage"/>
<meta property="og:title" content="My Public Profile"/>
<meta property="og:type" content="website"/>
<meta property="og:description" content="
Peme969's Homepage
Visit to learn more!"/>
<meta property="og:image" content="https://raw.githubusercontent.com/peme969/peme969.github.io/main/peme969.png"/>
<meta property="og:image:type" content="image/jpeg"/>
<meta property="og:image:width" content="1280"/>
<meta property="og:image:height" content="800"/>
<meta property="og:url" content="https://peme969.is-a.dev"/>
<meta property="twitter:card" content="summary_large_image"/>
<link rel="canonical" href="https://peme969.is-a.dev"/>
<script src="https://beamanalytics.b-cdn.net/beam.min.js" data-token="cba54fb1-f1af-4593-b8c2-2899e4ea5d34" async></script>
<link rel="icon" href="https://praisehimz.codewizardshq.com/Firstwebsite/images/cmd_giphy.ico" type="images/x-icon">
<link href="https://fonts.googleapis.com/css2?display=swap&family=Inter:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600;1,700;1,900" rel="stylesheet" type="text/css"/>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-JRMW57R1L1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-JRMW57R1L1');
</script>
<style>
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
display: block;
}
body {
line-height: 1;
}
ol,ul {
list-style: none;
}
blockquote,q {
quotes: none;
}
blockquote:before,blockquote:after,q:before,q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
body {
-webkit-text-size-adjust: none
}
mark {
background-color: transparent;
color: inherit
}
input::-moz-focus-inner {
border: 0;
padding: 0
}
input[type="text"],input[type="email"],select,textarea {
-moz-appearance: none;
-webkit-appearance: none;
-ms-appearance: none;
appearance: none
}
*, *:before, *:after {
box-sizing: border-box;
}
body {
line-height: 1.0;
min-height: var(--viewport-height);
min-width: 320px;
overflow-x: hidden;
word-wrap: break-word;
}
body:before {
content: '';
display: block;
background-attachment: scroll;
height: var(--background-height);
left: 0;
pointer-events: none;
position: fixed;
top: 0;
transform: scale(1);
width: 100vw;
z-index: 0;
background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%22600%22%20height%3D%22347%22%20viewBox%3D%220%200%20600%20347%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cstyle%20type%3D%22text%2Fcss%22%3E%20polygon%20%7B%20fill%3A%20rgba(0,0,0,0.059)%3B%20transform%3A%20scale%28295%25%29%3B%20%7D%20%3C%2Fstyle%3E%20%3Cpolygon%20points%3D%220.0%2C0.0%2020.0%2C0.0%2030.0%2C17.3205%2020.0%2C34.641%200.0%2C34.641%20-10.0%2C17.3205%22%20fill-opacity%3D%220.2%22%20%2F%3E%20%3Cpolygon%20points%3D%2230.0%2C-17.3205%2050.0%2C-17.3205%2060.0%2C0.0%2050.0%2C17.3205%2030.0%2C17.3205%2020.0%2C0.0%22%20fill-opacity%3D%220.53%22%20%2F%3E%20%3Cpolygon%20points%3D%2260.0%2C0.0%2080.0%2C0.0%2090.0%2C17.3205%2080.0%2C34.641%2060.0%2C34.641%2050.0%2C17.3205%22%20fill-opacity%3D%220.84%22%20%2F%3E%20%3Cpolygon%20points%3D%2290.0%2C-17.3205%20110.0%2C-17.3205%20120.0%2C0.0%20110.0%2C17.3205%2090.0%2C17.3205%2080.0%2C0.0%22%20fill-opacity%3D%220.32%22%20%2F%3E%20%3Cpolygon%20points%3D%22120.0%2C0.0%20140.0%2C0.0%20150.0%2C17.3205%20140.0%2C34.641%20120.0%2C34.641%20110.0%2C17.3205%22%20fill-opacity%3D%220.3%22%20%2F%3E%20%3Cpolygon%20points%3D%22150.0%2C-17.3205%20170.0%2C-17.3205%20180.0%2C0.0%20170.0%2C17.3205%20150.0%2C17.3205%20140.0%2C0.0%22%20fill-opacity%3D%220.54%22%20%2F%3E%20%3Cpolygon%20points%3D%22180.0%2C0.0%20200.0%2C0.0%20210.0%2C17.3205%20200.0%2C34.641%20180.0%2C34.641%20170.0%2C17.3205%22%20fill-opacity%3D%220.51%22%20%2F%3E%20%3Cpolygon%20points%3D%22210.0%2C-17.3205%20230.0%2C-17.3205%20240.0%2C0.0%20230.0%2C17.3205%20210.0%2C17.3205%20200.0%2C0.0%22%20fill-opacity%3D%220.01%22%20%2F%3E%20%3Cpolygon%20points%3D%22240.0%2C0.0%20260.0%2C0.0%20270.0%2C17.3205%20260.0%2C34.641%20240.0%2C34.641%20230.0%2C17.3205%22%20fill-opacity%3D%220.31%22%20%2F%3E%20%3Cpolygon%20points%3D%22270.0%2C-17.3205%20290.0%2C-17.3205%20300.0%2C0.0%20290.0%2C17.3205%20270.0%2C17.3205%20260.0%2C0.0%22%20fill-opacity%3D%220.82%22%20%2F%3E%20%3Cpolygon%20points%3D%22300.0%2C0.0%20320.0%2C0.0%20330.0%2C17.3205%20320.0%2C34.641%20300.0%2C34.641%20290.0%2C17.3205%22%20fill-opacity%3D%220.05%22%20%2F%3E%20%3Cpolygon%20points%3D%22330.0%2C-17.3205%20350.0%2C-17.3205%20360.0%2C0.0%20350.0%2C17.3205%20330.0%2C17.3205%20320.0%2C0.0%22%20fill-opacity%3D%220.75%22%20%2F%3E%20%3Cpolygon%20points%3D%22360.0%2C0.0%20380.0%2C0.0%20390.0%2C17.3205%20380.0%2C34.641%20360.0%2C34.641%20350.0%2C17.3205%22%20fill-opacity%3D%220.27%22%20%2F%3E%20%3Cpolygon%20points%3D%22390.0%2C-17.3205%20410.0%2C-17.3205%20420.0%2C0.0%20410.0%2C17.3205%20390.0%2C17.3205%20380.0%2C0.0%22%20fill-opacity%3D%220.67%22%20%2F%3E%20%3Cpolygon%20points%3D%22420.0%2C0.0%20440.0%2C0.0%20450.0%2C17.3205%20440.0%2C34.641%20420.0%2C34.641%20410.0%2C17.3205%22%20fill-opacity%3D%220.75%22%20%2F%3E%20%3Cpolygon%20points%3D%22450.0%2C-17.3205%20470.0%2C-17.3205%20480.0%2C0.0%20470.0%2C17.3205%20450.0%2C17.3205%20440.0%2C0.0%22%20fill-opacity%3D%220.33%22%20%2F%3E%20%3Cpolygon%20points%3D%22480.0%2C0.0%20500.0%2C0.0%20510.0%2C17.3205%20500.0%2C34.641%20480.0%2C34.641%20470.0%2C17.3205%22%20fill-opacity%3D%220.01%22%20%2F%3E%20%3Cpolygon%20points%3D%22510.0%2C-17.3205%20530.0%2C-17.3205%20540.0%2C0.0%20530.0%2C17.3205%20510.0%2C17.3205%20500.0%2C0.0%22%20fill-opacity%3D%220.39%22%20%2F%3E%20%3Cpolygon%20points%3D%22540.0%2C0.0%20560.0%2C0.0%20570.0%2C17.3205%20560.0%2C34.641%20540.0%2C34.641%20530.0%2C17.3205%22%20fill-opacity%3D%220.53%22%20%2F%3E%20%3Cpolygon%20points%3D%22570.0%2C-17.3205%20590.0%2C-17.3205%20600.0%2C0.0%20590.0%2C17.3205%20570.0%2C17.3205%20560.0%2C0.0%22%20fill-opacity%3D%220.81%22%20%2F%3E%20%3Cpolygon%20points%3D%220.0%2C34.641%2020.0%2C34.641%2030.0%2C51.9615%2020.0%2C69.282%200.0%2C69.282%20-10.0%2C51.9615%22%20fill-opacity%3D%220.95%22%20%2F%3E%20%3Cpolygon%20points%3D%2230.0%2C17.3205%2050.0%2C17.3205%2060.0%2C34.641%2050.0%2C51.9615%2030.0%2C51.9615%2020.0%2C34.641%22%20fill-opacity%3D%220.82%22%20%2F%3E%20%3Cpolygon%20points%3D%2260.0%2C34.641%2080.0%2C34.641%2090.0%2C51.9615%2080.0%2C69.282%2060.0%2C69.282%2050.0%2C51.9615%22%20fill-opacity%3D%220.15%22%20%2F%3E%20%3Cpolygon%20points%3D%2290.0%2C17.3205%20110.0%2C17.3205%20120.0%2C34.641%20110.0%2C51.9615%2090.0%2C51.9615%2080.0%2C34.641%22%20fill-opacity%3D%220.46%22%20%2F%3E%20%3Cpolygon%20points%3D%22120.0%2C34.641%20140.0%2C34.641%20150.0%2C51.9615%20140.0%2C69.282%20120.0%2C69.282%20110.0%2C51.9615%22%20fill-opacity%3D%220.93%22%20%2F%3E%20%3Cpolygon%20points%3D%22150.0%2C17.3205%20170.0%2C17.3205%20180.0%2C34.641%20170.0%2C51.9615%20150.0%2C51.9615%20140.0%2C34.641%22%20fill-opacity%3D%220.88%22%20%2F%3E%20%3Cpolygon%20points%3D%22180.0%2C34.641%20200.0%2C34.641%20210.0%2C51.9615%20200.0%2C69.282%20180.0%2C69.282%20170.0%2C51.9615%22%20fill-opacity%3D%220.2%22%20%2F%3E%20%3Cpolygon%20points%3D%22210.0%2C17.3205%20230.0%2C17.3205%20240.0%2C34.641%20230.0%2C51.9615%20210.0%2C51.9615%20200.0%2C34.641%22%20fill-opacity%3D%220.05%22%20%2F%3E%20%3Cpolygon%20points%3D%22240.0%2C34.641%20260.0%2C34.641%20270.0%2C51.9615%20260.0%2C69.282%20240.0%2C69.282%20230.0%2C51.9615%22%20fill-opacity%3D%220.95%22%20%2F%3E%20%3Cpolygon%20points%3D%22270.0%2C17.3205%20290.0%2C17.3205%20300.0%2C34.641%20290.0%2C51.9615%20270.0%2C51.9615%20260.0%2C34.641%22%20fill-opacity%3D%220.97%22%20%2F%3E%20%3Cpolygon%20points%3D%22300.0%2C34.641%20320.0%2C34.641%20330.0%2C51.9615%20320.0%2C69.282%20300.0%2C69.282%20290.0%2C51.9615%22%20fill-opacity%3D%220.92%22%20%2F%3E%20%3Cpolygon%20points%3D%22330.0%2C17.3205%20350.0%2C17.3205%20360.0%2C34.641%20350.0%2C51.9615%20330.0%2C51.9615%20320.0%2C34.641%22%20fill-opacity%3D%220.27%22%20%2F%3E%20%3Cpolygon%20points%3D%22360.0%2C34.641%20380.0%2C34.641%20390.0%2C51.9615%20380.0%2C69.282%20360.0%2C69.282%20350.0%2C51.9615%22%20fill-opacity%3D%220.44%22%20%2F%3E%20%3Cpolygon%20points%3D%22390.0%2C17.3205%20410.0%2C17.3205%20420.0%2C34.641%20410.0%2C51.9615%20390.0%2C51.9615%20380.0%2C34.641%22%20fill-opacity%3D%220.11%22%20%2F%3E%20%3Cpolygon%20points%3D%22420.0%2C34.641%20440.0%2C34.641%20450.0%2C51.9615%20440.0%2C69.282%20420.0%2C69.282%20410.0%2C51.9615%22%20fill-opacity%3D%220.65%22%20%2F%3E%20%3Cpolygon%20points%3D%22450.0%2C17.3205%20470.0%2C17.3205%20480.0%2C34.641%20470.0%2C51.9615%20450.0%2C51.9615%20440.0%2C34.641%22%20fill-opacity%3D%220.35%22%20%2F%3E%20%3Cpolygon%20points%3D%22480.0%2C34.641%20500.0%2C34.641%20510.0%2C51.9615%20500.0%2C69.282%20480.0%2C69.282%20470.0%2C51.9615%22%20fill-opacity%3D%220.79%22%20%2F%3E%20%3Cpolygon%20points%3D%22510.0%2C17.3205%20530.0%2C17.3205%20540.0%2C34.641%20530.0%2C51.9615%20510.0%2C51.9615%20500.0%2C34.641%22%20fill-opacity%3D%220.58%22%20%2F%3E%20%3Cpolygon%20points%3D%22540.0%2C34.641%20560.0%2C34.641%20570.0%2C51.9615%20560.0%2C69.282%20540.0%2C69.282%20530.0%2C51.9615%22%20fill-opacity%3D%220.66%22%20%2F%3E%20%3Cpolygon%20points%3D%22570.0%2C17.3205%20590.0%2C17.3205%20600.0%2C34.641%20590.0%2C51.9615%20570.0%2C51.9615%20560.0%2C34.641%22%20fill-opacity%3D%220.76%22%20%2F%3E%20%3Cpolygon%20points%3D%220.0%2C69.282%2020.0%2C69.282%2030.0%2C86.6025%2020.0%2C103.923%200.0%2C103.923%20-10.0%2C86.6025%22%20fill-opacity%3D%220.89%22%20%2F%3E%20%3Cpolygon%20points%3D%2230.0%2C51.9615%2050.0%2C51.9615%2060.0%2C69.282%2050.0%2C86.6025%2030.0%2C86.6025%2020.0%2C69.282%22%20fill-opacity%3D%220.77%22%20%2F%3E%20%3Cpolygon%20points%3D%2260.0%2C69.282%2080.0%2C69.282%2090.0%2C86.6025%2080.0%2C103.923%2060.0%2C103.923%2050.0%2C86.6025%22%20fill-opacity%3D%220.12%22%20%2F%3E%20%3Cpolygon%20points%3D%2290.0%2C51.9615%20110.0%2C51.9615%20120.0%2C69.282%20110.0%2C86.6025%2090.0%2C86.6025%2080.0%2C69.282%22%20fill-opacity%3D%220.84%22%20%2F%3E%20%3Cpolygon%20points%3D%22120.0%2C69.282%20140.0%2C69.282%20150.0%2C86.6025%20140.0%2C103.923%20120.0%2C103.923%20110.0%2C86.6025%22%20fill-opacity%3D%220.5%22%20%2F%3E%20%3Cpolygon%20points%3D%22150.0%2C51.9615%20170.0%2C51.9615%20180.0%2C69.282%20170.0%2C86.6025%20150.0%2C86.6025%20140.0%2C69.282%22%20fill-opacity%3D%220.38%22%20%2F%3E%20%3Cpolygon%20points%3D%22180.0%2C69.282%20200.0%2C69.282%20210.0%2C86.6025%20200.0%2C103.923%20180.0%2C103.923%20170.0%2C86.6025%22%20fill-opacity%3D%220.41%22%20%2F%3E%20%3Cpolygon%20points%3D%22210.0%2C51.9615%20230.0%2C51.9615%20240.0%2C69.282%20230.0%2C86.6025%20210.0%2C86.6025%20200.0%2C69.282%22%20fill-opacity%3D%220.2%22%20%2F%3E%20%3Cpolygon%20points%3D%22240.0%2C69.282%20260.0%2C69.282%20270.0%2C86.6025%20260.0%2C103.923%20240.0%2C103.923%20230.0%2C86.6025%22%20fill-opacity%3D%220.97%22%20%2F%3E%20%3Cpolygon%20points%3D%22270.0%2C51.9615%20290.0%2C51.9615%20300.0%2C69.282%20290.0%2C86.6025%20270.0%2C86.6025%20260.0%2C69.282%22%20fill-opacity%3D%220.14%22%20%2F%3E%20%3Cpolygon%20points%3D%22300.0%2C69.282%20320.0%2C69.282%20330.0%2C86.6025%20320.0%2C103.923%20300.0%2C103.923%20290.0%2C86.6025%22%20fill-opacity%3D%220.03%22%20%2F%3E%20%3Cpolygon%20points%3D%22330.0%2C51.9615%20350.0%2C51.9615%20360.0%2C69.282%20350.0%2C86.6025%20330.0%2C86.6025%20320.0%2C69.282%22%20fill-opacity%3D%220.76%22%20%2F%3E%20%3Cpolygon%20points%3D%22360.0%2C69.282%20380.0%2C69.282%20390.0%2C86.6025%20380.0%2C103.923%20360.0%2C103.923%20350.0%2C86.6025%22%20fill-opacity%3D%221.0%22%20%2F%3E%20%3Cpolygon%20points%3D%22390.0%2C51.9615%20410.0%2C51.9615%20420.0%2C69.282%20410.0%2C86.6025%20390.0%2C86.6025%20380.0%2C69.282%22%20fill-opacity%3D%220.77%22%20%2F%3E%20%3Cpolygon%20points%3D%22420.0%2C69.282%20440.0%2C69.282%20450.0%2C86.6025%20440.0%2C103.923%20420.0%2C103.923%20410.0%2C86.6025%22%20fill-opacity%3D%220.02%22%20%2F%3E%20%3Cpolygon%20points%3D%22450.0%2C51.9615%20470.0%2C51.9615%20480.0%2C69.282%20470.0%2C86.6025%20450.0%2C86.6025%20440.0%2C69.282%22%20fill-opacity%3D%220.45%22%20%2F%3E%20%3Cpolygon%20points%3D%22480.0%2C69.282%20500.0%2C69.282%20510.0%2C86.6025%20500.0%2C103.923%20480.0%2C103.923%20470.0%2C86.6025%22%20fill-opacity%3D%220.1%22%20%2F%3E%20%3Cpolygon%20points%3D%22510.0%2C51.9615%20530.0%2C51.9615%20540.0%2C69.282%20530.0%2C86.6025%20510.0%2C86.6025%20500.0%2C69.282%22%20fill-opacity%3D%220.17%22%20%2F%3E%20%3Cpolygon%20points%3D%22540.0%2C69.282%20560.0%2C69.282%20570.0%2C86.6025%20560.0%2C103.923%20540.0%2C103.923%20530.0%2C86.6025%22%20fill-opacity%3D%220.2%22%20%2F%3E%20%3Cpolygon%20points%3D%22570.0%2C51.9615%20590.0%2C51.9615%20600.0%2C69.282%20590.0%2C86.6025%20570.0%2C86.6025%20560.0%2C69.282%22%20fill-opacity%3D%220.47%22%20%2F%3E%20%3Cpolygon%20points%3D%220.0%2C103.923%2020.0%2C103.923%2030.0%2C121.2436%2020.0%2C138.5641%200.0%2C138.5641%20-10.0%2C121.2436%22%20fill-opacity%3D%220.74%22%20%2F%3E%20%3Cpolygon%20points%3D%2230.0%2C86.6025%2050.0%2C86.6025%2060.0%2C103.923%2050.0%2C121.2436%2030.0%2C121.2436%2020.0%2C103.923%22%20fill-opacity%3D%220.59%22%20%2F%3E%20%3Cpolygon%20points%3D%2260.0%2C103.923%2080.0%2C103.923%2090.0%2C121.2436%2080.0%2C138.5641%2060.0%2C138.5641%2050.0%2C121.2436%22%20fill-opacity%3D%220.17%22%20%2F%3E%20%3Cpolygon%20points%3D%2290.0%2C86.6025%20110.0%2C86.6025%20120.0%2C103.923%20110.0%2C121.2436%2090.0%2C121.2436%2080.0%2C103.923%22%20fill-opacity%3D%220.65%22%20%2F%3E%20%3Cpolygon%20points%3D%22120.0%2C103.923%20140.0%2C103.923%20150.0%2C121.2436%20140.0%2C138.5641%20120.0%2C138.5641%20110.0%2C121.2436%22%20fill-opacity%3D%220.8%22%20%2F%3E%20%3Cpolygon%20points%3D%22150.0%2C86.6025%20170.0%2C86.6025%20180.0%2C103.923%20170.0%2C121.2436%20150.0%2C121.2436%20140.0%2C103.923%22%20fill-opacity%3D%220.02%22%20%2F%3E%20%3Cpolygon%20points%3D%22180.0%2C103.923%20200.0%2C103.923%20210.0%2C121.2436%20200.0%2C138.5641%20180.0%2C138.5641%20170.0%2C121.2436%22%20fill-opacity%3D%220.96%22%20%2F%3E%20%3Cpolygon%20points%3D%22210.0%2C86.6025%20230.0%2C86.6025%20240.0%2C103.923%20230.0%2C121.2436%20210.0%2C121.2436%20200.0%2C103.923%22%20fill-opacity%3D%220.75%22%20%2F%3E%20%3Cpolygon%20points%3D%22240.0%2C103.923%20260.0%2C103.923%20270.0%2C121.2436%20260.0%2C138.5641%20240.0%2C138.5641%20230.0%2C121.2436%22%20fill-opacity%3D%220.29%22%20%2F%3E%20%3Cpolygon%20points%3D%22270.0%2C86.6025%20290.0%2C86.6025%20300.0%2C103.923%20290.0%2C121.2436%20270.0%2C121.2436%20260.0%2C103.923%22%20fill-opacity%3D%220.38%22%20%2F%3E%20%3Cpolygon%20points%3D%22300.0%2C103.923%20320.0%2C103.923%20330.0%2C121.2436%20320.0%2C138.5641%20300.0%2C138.5641%20290.0%2C121.2436%22%20fill-opacity%3D%220.11%22%20%2F%3E%20%3Cpolygon%20points%3D%22330.0%2C86.6025%20350.0%2C86.6025%20360.0%2C103.923%20350.0%2C121.2436%20330.0%2C121.2436%20320.0%2C103.923%22%20fill-opacity%3D%220.63%22%20%2F%3E%20%3Cpolygon%20points%3D%22360.0%2C103.923%20380.0%2C103.923%20390.0%2C121.2436%20380.0%2C138.5641%20360.0%2C138.5641%20350.0%2C121.2436%22%20fill-opacity%3D%220.44%22%20%2F%3E%20%3Cpolygon%20points%3D%22390.0%2C86.6025%20410.0%2C86.6025%20420.0%2C103.923%20410.0%2C121.2436%20390.0%2C121.2436%20380.0%2C103.923%22%20fill-opacity%3D%220.78%22%20%2F%3E%20%3Cpolygon%20points%3D%22420.0%2C103.923%20440.0%2C103.923%20450.0%2C121.2436%20440.0%2C138.5641%20420.0%2C138.5641%20410.0%2C121.2436%22%20fill-opacity%3D%220.63%22%20%2F%3E%20%3Cpolygon%20points%3D%22450.0%2C86.6025%20470.0%2C86.6025%20480.0%2C103.923%20470.0%2C121.2436%20450.0%2C121.2436%20440.0%2C103.923%22%20fill-opacity%3D%220.83%22%20%2F%3E%20%3Cpolygon%20points%3D%22480.0%2C103.923%20500.0%2C103.923%20510.0%2C121.2436%20500.0%2C138.5641%20480.0%2C138.5641%20470.0%2C121.2436%22%20fill-opacity%3D%220.58%22%20%2F%3E%20%3Cpolygon%20points%3D%22510.0%2C86.6025%20530.0%2C86.6025%20540.0%2C103.923%20530.0%2C121.2436%20510.0%2C121.2436%20500.0%2C103.923%22%20fill-opacity%3D%220.14%22%20%2F%3E%20%3Cpolygon%20points%3D%22540.0%2C103.923%20560.0%2C103.923%20570.0%2C121.2436%20560.0%2C138.5641%20540.0%2C138.5641%20530.0%2C121.2436%22%20fill-opacity%3D%220.45%22%20%2F%3E%20%3Cpolygon%20points%3D%22570.0%2C86.6025%20590.0%2C86.6025%20600.0%2C103.923%20590.0%2C121.2436%20570.0%2C121.2436%20560.0%2C103.923%22%20fill-opacity%3D%220.08%22%20%2F%3E%20%3Cpolygon%20points%3D%220.0%2C138.5641%2020.0%2C138.5641%2030.0%2C155.8846%2020.0%2C173.2051%200.0%2C173.2051%20-10.0%2C155.8846%22%20fill-opacity%3D%220.31%22%20%2F%3E%20%3Cpolygon%20points%3D%2230.0%2C121.2436%2050.0%2C121.2436%2060.0%2C138.5641%2050.0%2C155.8846%2030.0%2C155.8846%2020.0%2C138.5641%22%20fill-opacity%3D%220.76%22%20%2F%3E%20%3Cpolygon%20points%3D%2260.0%2C138.5641%2080.0%2C138.5641%2090.0%2C155.8846%2080.0%2C173.2051%2060.0%2C173.2051%2050.0%2C155.8846%22%20fill-opacity%3D%220.61%22%20%2F%3E%20%3Cpolygon%20points%3D%2290.0%2C121.2436%20110.0%2C121.2436%20120.0%2C138.5641%20110.0%2C155.8846%2090.0%2C155.8846%2080.0%2C138.5641%22%20fill-opacity%3D%220.13%22%20%2F%3E%20%3Cpolygon%20points%3D%22120.0%2C138.5641%20140.0%2C138.5641%20150.0%2C155.8846%20140.0%2C173.2051%20120.0%2C173.2051%20110.0%2C155.8846%22%20fill-opacity%3D%220.31%22%20%2F%3E%20%3Cpolygon%20points%3D%22150.0%2C121.2436%20170.0%2C121.2436%20180.0%2C138.5641%20170.0%2C155.8846%20150.0%2C155.8846%20140.0%2C138.5641%22%20fill-opacity%3D%220.28%22%20%2F%3E%20%3Cpolygon%20points%3D%22180.0%2C138.5641%20200.0%2C138.5641%20210.0%2C155.8846%20200.0%2C173.2051%20180.0%2C173.2051%20170.0%2C155.8846%22%20fill-opacity%3D%220.79%22%20%2F%3E%20%3Cpolygon%20points%3D%22210.0%2C121.2436%20230.0%2C121.2436%20240.0%2C138.5641%20230.0%2C155.8846%20210.0%2C155.8846%20200.0%2C138.5641%22%20fill-opacity%3D%220.34%22%20%2F%3E%20%3Cpolygon%20points%3D%22240.0%2C138.5641%20260.0%2C138.5641%20270.0%2C155.8846%20260.0%2C173.2051%20240.0%2C173.2051%20230.0%2C155.8846%22%20fill-opacity%3D%220.54%22%20%2F%3E%20%3Cpolygon%20points%3D%22270.0%2C121.2436%20290.0%2C121.2436%20300.0%2C138.5641%20290.0%2C155.8846%20270.0%2C155.8846%20260.0%2C138.5641%22%20fill-opacity%3D%220.11%22%20%2F%3E%20%3Cpolygon%20points%3D%22300.0%2C138.5641%20320.0%2C138.5641%20330.0%2C155.8846%20320.0%2C173.2051%20300.0%2C173.2051%20290.0%2C155.8846%22%20fill-opacity%3D%220.46%22%20%2F%3E%20%3Cpolygon%20points%3D%22330.0%2C121.2436%20350.0%2C121.2436%20360.0%2C138.5641%20350.0%2C155.8846%20330.0%2C155.8846%20320.0%2C138.5641%22%20fill-opacity%3D%220.39%22%20%2F%3E%20%3Cpolygon%20points%3D%22360.0%2C138.5641%20380.0%2C138.5641%20390.0%2C155.8846%20380.0%2C173.2051%20360.0%2C173.2051%20350.0%2C155.8846%22%20fill-opacity%3D%220.66%22%20%2F%3E%20%3Cpolygon%20points%3D%22390.0%2C121.2436%20410.0%2C121.2436%20420.0%2C138.5641%20410.0%2C155.8846%20390.0%2C155.8846%20380.0%2C138.5641%22%20fill-opacity%3D%220.91%22%20%2F%3E%20%3Cpolygon%20points%3D%22420.0%2C138.5641%20440.0%2C138.5641%20450.0%2C155.8846%20440.0%2C173.2051%20420.0%2C173.2051%20410.0%2C155.8846%22%20fill-opacity%3D%220.76%22%20%2F%3E%20%3Cpolygon%20points%3D%22450.0%2C121.2436%20470.0%2C121.2436%20480.0%2C138.5641%20470.0%2C155.8846%20450.0%2C155.8846%20440.0%2C138.5641%22%20fill-opacity%3D%220.93%22%20%2F%3E%20%3Cpolygon%20points%3D%22480.0%2C138.5641%20500.0%2C138.5641%20510.0%2C155.8846%20500.0%2C173.2051%20480.0%2C173.2051%20470.0%2C155.8846%22%20fill-opacity%3D%220.62%22%20%2F%3E%20%3Cpolygon%20points%3D%22510.0%2C121.2436%20530.0%2C121.2436%20540.0%2C138.5641%20530.0%2C155.8846%20510.0%2C155.8846%20500.0%2C138.5641%22%20fill-opacity%3D%220.67%22%20%2F%3E%20%3Cpolygon%20points%3D%22540.0%2C138.5641%20560.0%2C138.5641%20570.0%2C155.8846%20560.0%2C173.2051%20540.0%2C173.2051%20530.0%2C155.8846%22%20fill-opacity%3D%220.87%22%20%2F%3E%20%3Cpolygon%20points%3D%22570.0%2C121.2436%20590.0%2C121.2436%20600.0%2C138.5641%20590.0%2C155.8846%20570.0%2C155.8846%20560.0%2C138.5641%22%20fill-opacity%3D%220.48%22%20%2F%3E%20%3Cpolygon%20points%3D%220.0%2C173.2051%2020.0%2C173.2051%2030.0%2C190.5256%2020.0%2C207.8461%200.0%2C207.8461%20-10.0%2C190.5256%22%20fill-opacity%3D%220.29%22%20%2F%3E%20%3Cpolygon%20points%3D%2230.0%2C155.8846%2050.0%2C155.8846%2060.0%2C173.2051%2050.0%2C190.5256%2030.0%2C190.5256%2020.0%2C173.2051%22%20fill-opacity%3D%220.09%22%20%2F%3E%20%3Cpolygon%20points%3D%2260.0%2C173.2051%2080.0%2C173.2051%2090.0%2C190.5256%2080.0%2C207.8461%2060.0%2C207.8461%2050.0%2C190.5256%22%20fill-opacity%3D%220.07%22%20%2F%3E%20%3Cpolygon%20points%3D%2290.0%2C155.8846%20110.0%2C155.8846%20120.0%2C173.2051%20110.0%2C190.5256%2090.0%2C190.5256%2080.0%2C173.2051%22%20fill-opacity%3D%220.72%22%20%2F%3E%20%3Cpolygon%20points%3D%22120.0%2C173.2051%20140.0%2C173.2051%20150.0%2C190.5256%20140.0%2C207.8461%20120.0%2C207.8461%20110.0%2C190.5256%22%20fill-opacity%3D%220.44%22%20%2F%3E%20%3Cpolygon%20points%3D%22150.0%2C155.8846%20170.0%2C155.8846%20180.0%2C173.2051%20170.0%2C190.5256%20150.0%2C190.5256%20140.0%2C173.2051%22%20fill-opacity%3D%220.7%22%20%2F%3E%20%3Cpolygon%20points%3D%22180.0%2C173.2051%20200.0%2C173.2051%20210.0%2C190.5256%20200.0%2C207.8461%20180.0%2C207.8461%20170.0%2C190.5256%22%20fill-opacity%3D%220.3%22%20%2F%3E%20%3Cpolygon%20points%3D%22210.0%2C155.8846%20230.0%2C155.8846%20240.0%2C173.2051%20230.0%2C190.5256%20210.0%2C190.5256%20200.0%2C173.2051%22%20fill-opacity%3D%220.28%22%20%2F%3E%20%3Cpolygon%20points%3D%22240.0%2C173.2051%20260.0%2C173.2051%20270.0%2C190.5256%20260.0%2C207.8461%20240.0%2C207.8461%20230.0%2C190.5256%22%20fill-opacity%3D%220.15%22%20%2F%3E%20%3Cpolygon%20points%3D%22270.0%2C155.8846%20290.0%2C155.8846%20300.0%2C173.2051%20290.0%2C190.5256%20270.0%2C190.5256%20260.0%2C173.2051%22%20fill-opacity%3D%220.16%22%20%2F%3E%20%3Cpolygon%20points%3D%22300.0%2C173.2051%20320.0%2C173.2051%20330.0%2C190.5256%20320.0%2C207.8461%20300.0%2C207.8461%20290.0%2C190.5256%22%20fill-opacity%3D%220.04%22%20%2F%3E%20%3Cpolygon%20points%3D%22330.0%2C155.8846%20350.0%2C155.8846%20360.0%2C173.2051%20350.0%2C190.5256%20330.0%2C190.5256%20320.0%2C173.2051%22%20fill-opacity%3D%220.57%22%20%2F%3E%20%3Cpolygon%20points%3D%22360.0%2C173.2051%20380.0%2C173.2051%20390.0%2C190.5256%20380.0%2C207.8461%20360.0%2C207.8461%20350.0%2C190.5256%22%20fill-opacity%3D%220.07%22%20%2F%3E%20%3Cpolygon%20points%3D%22390.0%2C155.8846%20410.0%2C155.8846%20420.0%2C173.2051%20410.0%2C190.5256%20390.0%2C190.5256%20380.0%2C173.2051%22%20fill-opacity%3D%220.87%22%20%2F%3E%20%3Cpolygon%20points%3D%22420.0%2C173.2051%20440.0%2C173.2051%20450.0%2C190.5256%20440.0%2C207.8461%20420.0%2C207.8461%20410.0%2C190.5256%22%20fill-opacity%3D%220.45%22%20%2F%3E%20%3Cpolygon%20points%3D%22450.0%2C155.8846%20470.0%2C155.8846%20480.0%2C173.2051%20470.0%2C190.5256%20450.0%2C190.5256%20440.0%2C173.2051%22%20fill-opacity%3D%220.26%22%20%2F%3E%20%3Cpolygon%20points%3D%22480.0%2C173.2051%20500.0%2C173.2051%20510.0%2C190.5256%20500.0%2C207.8461%20480.0%2C207.8461%20470.0%2C190.5256%22%20fill-opacity%3D%220.65%22%20%2F%3E%20%3Cpolygon%20points%3D%22510.0%2C155.8846%20530.0%2C155.8846%20540.0%2C173.2051%20530.0%2C190.5256%20510.0%2C190.5256%20500.0%2C173.2051%22%20fill-opacity%3D%220.61%22%20%2F%3E%20%3Cpolygon%20points%3D%22540.0%2C173.2051%20560.0%2C173.2051%20570.0%2C190.5256%20560.0%2C207.8461%20540.0%2C207.8461%20530.0%2C190.5256%22%20fill-opacity%3D%220.17%22%20%2F%3E%20%3Cpolygon%20points%3D%22570.0%2C155.8846%20590.0%2C155.8846%20600.0%2C173.2051%20590.0%2C190.5256%20570.0%2C190.5256%20560.0%2C173.2051%22%20fill-opacity%3D%220.11%22%20%2F%3E%20%3Cpolygon%20points%3D%220.0%2C207.8461%2020.0%2C207.8461%2030.0%2C225.1666%2020.0%2C242.4871%200.0%2C242.4871%20-10.0%2C225.1666%22%20fill-opacity%3D%220.14%22%20%2F%3E%20%3Cpolygon%20points%3D%2230.0%2C190.5256%2050.0%2C190.5256%2060.0%2C207.8461%2050.0%2C225.1666%2030.0%2C225.1666%2020.0%2C207.8461%22%20fill-opacity%3D%220.87%22%20%2F%3E%20%3Cpolygon%20points%3D%2260.0%2C207.8461%2080.0%2C207.8461%2090.0%2C225.1666%2080.0%2C242.4871%2060.0%2C242.4871%2050.0%2C225.1666%22%20fill-opacity%3D%220.85%22%20%2F%3E%20%3Cpolygon%20points%3D%2290.0%2C190.5256%20110.0%2C190.5256%20120.0%2C207.8461%20110.0%2C225.1666%2090.0%2C225.1666%2080.0%2C207.8461%22%20fill-opacity%3D%220.35%22%20%2F%3E%20%3Cpolygon%20points%3D%22120.0%2C207.8461%20140.0%2C207.8461%20150.0%2C225.1666%20140.0%2C242.4871%20120.0%2C242.4871%20110.0%2C225.1666%22%20fill-opacity%3D%220.39%22%20%2F%3E%20%3Cpolygon%20points%3D%22150.0%2C190.5256%20170.0%2C190.5256%20180.0%2C207.8461%20170.0%2C225.1666%20150.0%2C225.1666%20140.0%2C207.8461%22%20fill-opacity%3D%220.25%22%20%2F%3E%20%3Cpolygon%20points%3D%22180.0%2C207.8461%20200.0%2C207.8461%20210.0%2C225.1666%20200.0%2C242.4871%20180.0%2C242.4871%20170.0%2C225.1666%22%20fill-opacity%3D%220.48%22%20%2F%3E%20%3Cpolygon%20points%3D%22210.0%2C190.5256%20230.0%2C190.5256%20240.0%2C207.8461%20230.0%2C225.1666%20210.0%2C225.1666%20200.0%2C207.8461%22%20fill-opacity%3D%220.65%22%20%2F%3E%20%3Cpolygon%20points%3D%22240.0%2C207.8461%20260.0%2C207.8461%20270.0%2C225.1666%20260.0%2C242.4871%20240.0%2C242.4871%20230.0%2C225.1666%22%20fill-opacity%3D%220.82%22%20%2F%3E%20%3Cpolygon%20points%3D%22270.0%2C190.5256%20290.0%2C190.5256%20300.0%2C207.8461%20290.0%2C225.1666%20270.0%2C225.1666%20260.0%2C207.8461%22%20fill-opacity%3D%220.71%22%20%2F%3E%20%3Cpolygon%20points%3D%22300.0%2C207.8461%20320.0%2C207.8461%20330.0%2C225.1666%20320.0%2C242.4871%20300.0%2C242.4871%20290.0%2C225.1666%22%20fill-opacity%3D%220.83%22%20%2F%3E%20%3Cpolygon%20points%3D%22330.0%2C190.5256%20350.0%2C190.5256%20360.0%2C207.8461%20350.0%2C225.1666%20330.0%2C225.1666%20320.0%2C207.8461%22%20fill-opacity%3D%220.2%22%20%2F%3E%20%3Cpolygon%20points%3D%22360.0%2C207.8461%20380.0%2C207.8461%20390.0%2C225.1666%20380.0%2C242.4871%20360.0%2C242.4871%20350.0%2C225.1666%22%20fill-opacity%3D%220.5%22%20%2F%3E%20%3Cpolygon%20points%3D%22390.0%2C190.5256%20410.0%2C190.5256%20420.0%2C207.8461%20410.0%2C225.1666%20390.0%2C225.1666%20380.0%2C207.8461%22%20fill-opacity%3D%220.4%22%20%2F%3E%20%3Cpolygon%20points%3D%22420.0%2C207.8461%20440.0%2C207.8461%20450.0%2C225.1666%20440.0%2C242.4871%20420.0%2C242.4871%20410.0%2C225.1666%22%20fill-opacity%3D%220.56%22%20%2F%3E%20%3Cpolygon%20points%3D%22450.0%2C190.5256%20470.0%2C190.5256%20480.0%2C207.8461%20470.0%2C225.1666%20450.0%2C225.1666%20440.0%2C207.8461%22%20fill-opacity%3D%220.52%22%20%2F%3E%20%3Cpolygon%20points%3D%22480.0%2C207.8461%20500.0%2C207.8461%20510.0%2C225.1666%20500.0%2C242.4871%20480.0%2C242.4871%20470.0%2C225.1666%22%20fill-opacity%3D%220.02%22%20%2F%3E%20%3Cpolygon%20points%3D%22510.0%2C190.5256%20530.0%2C190.5256%20540.0%2C207.8461%20530.0%2C225.1666%20510.0%2C225.1666%20500.0%2C207.8461%22%20fill-opacity%3D%220.27%22%20%2F%3E%20%3Cpolygon%20points%3D%22540.0%2C207.8461%20560.0%2C207.8461%20570.0%2C225.1666%20560.0%2C242.4871%20540.0%2C242.4871%20530.0%2C225.1666%22%20fill-opacity%3D%220.95%22%20%2F%3E%20%3Cpolygon%20points%3D%22570.0%2C190.5256%20590.0%2C190.5256%20600.0%2C207.8461%20590.0%2C225.1666%20570.0%2C225.1666%20560.0%2C207.8461%22%20fill-opacity%3D%220.04%22%20%2F%3E%20%3Cpolygon%20points%3D%220.0%2C242.4871%2020.0%2C242.4871%2030.0%2C259.8076%2020.0%2C277.1281%200.0%2C277.1281%20-10.0%2C259.8076%22%20fill-opacity%3D%220.49%22%20%2F%3E%20%3Cpolygon%20points%3D%2230.0%2C225.1666%2050.0%2C225.1666%2060.0%2C242.4871%2050.0%2C259.8076%2030.0%2C259.8076%2020.0%2C242.4871%22%20fill-opacity%3D%220.68%22%20%2F%3E%20%3Cpolygon%20points%3D%2260.0%2C242.4871%2080.0%2C242.4871%2090.0%2C259.8076%2080.0%2C277.1281%2060.0%2C277.1281%2050.0%2C259.8076%22%20fill-opacity%3D%220.96%22%20%2F%3E%20%3Cpolygon%20points%3D%2290.0%2C225.1666%20110.0%2C225.1666%20120.0%2C242.4871%20110.0%2C259.8076%2090.0%2C259.8076%2080.0%2C242.4871%22%20fill-opacity%3D%220.8%22%20%2F%3E%20%3Cpolygon%20points%3D%22120.0%2C242.4871%20140.0%2C242.4871%20150.0%2C259.8076%20140.0%2C277.1281%20120.0%2C277.1281%20110.0%2C259.8076%22%20fill-opacity%3D%220.42%22%20%2F%3E%20%3Cpolygon%20points%3D%22150.0%2C225.1666%20170.0%2C225.1666%20180.0%2C242.4871%20170.0%2C259.8076%20150.0%2C259.8076%20140.0%2C242.4871%22%20fill-opacity%3D%220.74%22%20%2F%3E%20%3Cpolygon%20points%3D%22180.0%2C242.4871%20200.0%2C242.4871%20210.0%2C259.8076%20200.0%2C277.1281%20180.0%2C277.1281%20170.0%2C259.8076%22%20fill-opacity%3D%220.68%22%20%2F%3E%20%3Cpolygon%20points%3D%22210.0%2C225.1666%20230.0%2C225.1666%20240.0%2C242.4871%20230.0%2C259.8076%20210.0%2C259.8076%20200.0%2C242.4871%22%20fill-opacity%3D%220.27%22%20%2F%3E%20%3Cpolygon%20points%3D%22240.0%2C242.4871%20260.0%2C242.4871%20270.0%2C259.8076%20260.0%2C277.1281%20240.0%2C277.1281%20230.0%2C259.8076%22%20fill-opacity%3D%220.74%22%20%2F%3E%20%3Cpolygon%20points%3D%22270.0%2C225.1666%20290.0%2C225.1666%20300.0%2C242.4871%20290.0%2C259.8076%20270.0%2C259.8076%20260.0%2C242.4871%22%20fill-opacity%3D%220.92%22%20%2F%3E%20%3Cpolygon%20points%3D%22300.0%2C242.4871%20320.0%2C242.4871%20330.0%2C259.8076%20320.0%2C277.1281%20300.0%2C277.1281%20290.0%2C259.8076%22%20fill-opacity%3D%220.21%22%20%2F%3E%20%3Cpolygon%20points%3D%22330.0%2C225.1666%20350.0%2C225.1666%20360.0%2C242.4871%20350.0%2C259.8076%20330.0%2C259.8076%20320.0%2C242.4871%22%20fill-opacity%3D%220.17%22%20%2F%3E%20%3Cpolygon%20points%3D%22360.0%2C242.4871%20380.0%2C242.4871%20390.0%2C259.8076%20380.0%2C277.1281%20360.0%2C277.1281%20350.0%2C259.8076%22%20fill-opacity%3D%220.11%22%20%2F%3E%20%3Cpolygon%20points%3D%22390.0%2C225.1666%20410.0%2C225.1666%20420.0%2C242.4871%20410.0%2C259.8076%20390.0%2C259.8076%20380.0%2C242.4871%22%20fill-opacity%3D%220.67%22%20%2F%3E%20%3Cpolygon%20points%3D%22420.0%2C242.4871%20440.0%2C242.4871%20450.0%2C259.8076%20440.0%2C277.1281%20420.0%2C277.1281%20410.0%2C259.8076%22%20fill-opacity%3D%220.6%22%20%2F%3E%20%3Cpolygon%20points%3D%22450.0%2C225.1666%20470.0%2C225.1666%20480.0%2C242.4871%20470.0%2C259.8076%20450.0%2C259.8076%20440.0%2C242.4871%22%20fill-opacity%3D%220.58%22%20%2F%3E%20%3Cpolygon%20points%3D%22480.0%2C242.4871%20500.0%2C242.4871%20510.0%2C259.8076%20500.0%2C277.1281%20480.0%2C277.1281%20470.0%2C259.8076%22%20fill-opacity%3D%220.19%22%20%2F%3E%20%3Cpolygon%20points%3D%22510.0%2C225.1666%20530.0%2C225.1666%20540.0%2C242.4871%20530.0%2C259.8076%20510.0%2C259.8076%20500.0%2C242.4871%22%20fill-opacity%3D%220.21%22%20%2F%3E%20%3Cpolygon%20points%3D%22540.0%2C242.4871%20560.0%2C242.4871%20570.0%2C259.8076%20560.0%2C277.1281%20540.0%2C277.1281%20530.0%2C259.8076%22%20fill-opacity%3D%220.82%22%20%2F%3E%20%3Cpolygon%20points%3D%22570.0%2C225.1666%20590.0%2C225.1666%20600.0%2C242.4871%20590.0%2C259.8076%20570.0%2C259.8076%20560.0%2C242.4871%22%20fill-opacity%3D%220.53%22%20%2F%3E%20%3Cpolygon%20points%3D%220.0%2C277.1281%2020.0%2C277.1281%2030.0%2C294.4486%2020.0%2C311.7691%200.0%2C311.7691%20-10.0%2C294.4486%22%20fill-opacity%3D%220.22%22%20%2F%3E%20%3Cpolygon%20points%3D%2230.0%2C259.8076%2050.0%2C259.8076%2060.0%2C277.1281%2050.0%2C294.4486%2030.0%2C294.4486%2020.0%2C277.1281%22%20fill-opacity%3D%220.15%22%20%2F%3E%20%3Cpolygon%20points%3D%2260.0%2C277.1281%2080.0%2C277.1281%2090.0%2C294.4486%2080.0%2C311.7691%2060.0%2C311.7691%2050.0%2C294.4486%22%20fill-opacity%3D%220.31%22%20%2F%3E%20%3Cpolygon%20points%3D%2290.0%2C259.8076%20110.0%2C259.8076%20120.0%2C277.1281%20110.0%2C294.4486%2090.0%2C294.4486%2080.0%2C277.1281%22%20fill-opacity%3D%220.12%22%20%2F%3E%20%3Cpolygon%20points%3D%22120.0%2C277.1281%20140.0%2C277.1281%20150.0%2C294.4486%20140.0%2C311.7691%20120.0%2C311.7691%20110.0%2C294.4486%22%20fill-opacity%3D%220.34%22%20%2F%3E%20%3Cpolygon%20points%3D%22150.0%2C259.8076%20170.0%2C259.8076%20180.0%2C277.1281%20170.0%2C294.4486%20150.0%2C294.4486%20140.0%2C277.1281%22%20fill-opacity%3D%220.36%22%20%2F%3E%20%3Cpolygon%20points%3D%22180.0%2C277.1281%20200.0%2C277.1281%20210.0%2C294.4486%20200.0%2C311.7691%20180.0%2C311.7691%20170.0%2C294.4486%22%20fill-opacity%3D%220.8%22%20%2F%3E%20%3Cpolygon%20points%3D%22210.0%2C259.8076%20230.0%2C259.8076%20240.0%2C277.1281%20230.0%2C294.4486%20210.0%2C294.4486%20200.0%2C277.1281%22%20fill-opacity%3D%220.16%22%20%2F%3E%20%3Cpolygon%20points%3D%22240.0%2C277.1281%20260.0%2C277.1281%20270.0%2C294.4486%20260.0%2C311.7691%20240.0%2C311.7691%20230.0%2C294.4486%22%20fill-opacity%3D%220.28%22%20%2F%3E%20%3Cpolygon%20points%3D%22270.0%2C259.8076%20290.0%2C259.8076%20300.0%2C277.1281%20290.0%2C294.4486%20270.0%2C294.4486%20260.0%2C277.1281%22%20fill-opacity%3D%220.54%22%20%2F%3E%20%3Cpolygon%20points%3D%22300.0%2C277.1281%20320.0%2C277.1281%20330.0%2C294.4486%20320.0%2C311.7691%20300.0%2C311.7691%20290.0%2C294.4486%22%20fill-opacity%3D%220.82%22%20%2F%3E%20%3Cpolygon%20points%3D%22330.0%2C259.8076%20350.0%2C259.8076%20360.0%2C277.1281%20350.0%2C294.4486%20330.0%2C294.4486%20320.0%2C277.1281%22%20fill-opacity%3D%220.4%22%20%2F%3E%20%3Cpolygon%20points%3D%22360.0%2C277.1281%20380.0%2C277.1281%20390.0%2C294.4486%20380.0%2C311.7691%20360.0%2C311.7691%20350.0%2C294.4486%22%20fill-opacity%3D%220.08%22%20%2F%3E%20%3Cpolygon%20points%3D%22390.0%2C259.8076%20410.0%2C259.8076%20420.0%2C277.1281%20410.0%2C294.4486%20390.0%2C294.4486%20380.0%2C277.1281%22%20fill-opacity%3D%220.29%22%20%2F%3E%20%3Cpolygon%20points%3D%22420.0%2C277.1281%20440.0%2C277.1281%20450.0%2C294.4486%20440.0%2C311.7691%20420.0%2C311.7691%20410.0%2C294.4486%22%20fill-opacity%3D%220.01%22%20%2F%3E%20%3Cpolygon%20points%3D%22450.0%2C259.8076%20470.0%2C259.8076%20480.0%2C277.1281%20470.0%2C294.4486%20450.0%2C294.4486%20440.0%2C277.1281%22%20fill-opacity%3D%220.6%22%20%2F%3E%20%3Cpolygon%20points%3D%22480.0%2C277.1281%20500.0%2C277.1281%20510.0%2C294.4486%20500.0%2C311.7691%20480.0%2C311.7691%20470.0%2C294.4486%22%20fill-opacity%3D%220.56%22%20%2F%3E%20%3Cpolygon%20points%3D%22510.0%2C259.8076%20530.0%2C259.8076%20540.0%2C277.1281%20530.0%2C294.4486%20510.0%2C294.4486%20500.0%2C277.1281%22%20fill-opacity%3D%220.24%22%20%2F%3E%20%3Cpolygon%20points%3D%22540.0%2C277.1281%20560.0%2C277.1281%20570.0%2C294.4486%20560.0%2C311.7691%20540.0%2C311.7691%20530.0%2C294.4486%22%20fill-opacity%3D%220.71%22%20%2F%3E%20%3Cpolygon%20points%3D%22570.0%2C259.8076%20590.0%2C259.8076%20600.0%2C277.1281%20590.0%2C294.4486%20570.0%2C294.4486%20560.0%2C277.1281%22%20fill-opacity%3D%220.64%22%20%2F%3E%20%3Cpolygon%20points%3D%220.0%2C311.7691%2020.0%2C311.7691%2030.0%2C329.0897%2020.0%2C346.4102%200.0%2C346.4102%20-10.0%2C329.0897%22%20fill-opacity%3D%220.2%22%20%2F%3E%20%3Cpolygon%20points%3D%2230.0%2C294.4486%2050.0%2C294.4486%2060.0%2C311.7691%2050.0%2C329.0897%2030.0%2C329.0897%2020.0%2C311.7691%22%20fill-opacity%3D%220.51%22%20%2F%3E%20%3Cpolygon%20points%3D%2260.0%2C311.7691%2080.0%2C311.7691%2090.0%2C329.0897%2080.0%2C346.4102%2060.0%2C346.4102%2050.0%2C329.0897%22%20fill-opacity%3D%220.05%22%20%2F%3E%20%3Cpolygon%20points%3D%2290.0%2C294.4486%20110.0%2C294.4486%20120.0%2C311.7691%20110.0%2C329.0897%2090.0%2C329.0897%2080.0%2C311.7691%22%20fill-opacity%3D%220.51%22%20%2F%3E%20%3Cpolygon%20points%3D%22120.0%2C311.7691%20140.0%2C311.7691%20150.0%2C329.0897%20140.0%2C346.4102%20120.0%2C346.4102%20110.0%2C329.0897%22%20fill-opacity%3D%220.73%22%20%2F%3E%20%3Cpolygon%20points%3D%22150.0%2C294.4486%20170.0%2C294.4486%20180.0%2C311.7691%20170.0%2C329.0897%20150.0%2C329.0897%20140.0%2C311.7691%22%20fill-opacity%3D%220.75%22%20%2F%3E%20%3Cpolygon%20points%3D%22180.0%2C311.7691%20200.0%2C311.7691%20210.0%2C329.0897%20200.0%2C346.4102%20180.0%2C346.4102%20170.0%2C329.0897%22%20fill-opacity%3D%220.21%22%20%2F%3E%20%3Cpolygon%20points%3D%22210.0%2C294.4486%20230.0%2C294.4486%20240.0%2C311.7691%20230.0%2C329.0897%20210.0%2C329.0897%20200.0%2C311.7691%22%20fill-opacity%3D%220.56%22%20%2F%3E%20%3Cpolygon%20points%3D%22240.0%2C311.7691%20260.0%2C311.7691%20270.0%2C329.0897%20260.0%2C346.4102%20240.0%2C346.4102%20230.0%2C329.0897%22%20fill-opacity%3D%220.07%22%20%2F%3E%20%3Cpolygon%20points%3D%22270.0%2C294.4486%20290.0%2C294.4486%20300.0%2C311.7691%20290.0%2C329.0897%20270.0%2C329.0897%20260.0%2C311.7691%22%20fill-opacity%3D%220.65%22%20%2F%3E%20%3Cpolygon%20points%3D%22300.0%2C311.7691%20320.0%2C311.7691%20330.0%2C329.0897%20320.0%2C346.4102%20300.0%2C346.4102%20290.0%2C329.0897%22%20fill-opacity%3D%220.65%22%20%2F%3E%20%3Cpolygon%20points%3D%22330.0%2C294.4486%20350.0%2C294.4486%20360.0%2C311.7691%20350.0%2C329.0897%20330.0%2C329.0897%20320.0%2C311.7691%22%20fill-opacity%3D%220.14%22%20%2F%3E%20%3Cpolygon%20points%3D%22360.0%2C311.7691%20380.0%2C311.7691%20390.0%2C329.0897%20380.0%2C346.4102%20360.0%2C346.4102%20350.0%2C329.0897%22%20fill-opacity%3D%220.84%22%20%2F%3E%20%3Cpolygon%20points%3D%22390.0%2C294.4486%20410.0%2C294.4486%20420.0%2C311.7691%20410.0%2C329.0897%20390.0%2C329.0897%20380.0%2C311.7691%22%20fill-opacity%3D%220.98%22%20%2F%3E%20%3Cpolygon%20points%3D%22420.0%2C311.7691%20440.0%2C311.7691%20450.0%2C329.0897%20440.0%2C346.4102%20420.0%2C346.4102%20410.0%2C329.0897%22%20fill-opacity%3D%220.75%22%20%2F%3E%20%3Cpolygon%20points%3D%22450.0%2C294.4486%20470.0%2C294.4486%20480.0%2C311.7691%20470.0%2C329.0897%20450.0%2C329.0897%20440.0%2C311.7691%22%20fill-opacity%3D%220.02%22%20%2F%3E%20%3Cpolygon%20points%3D%22480.0%2C311.7691%20500.0%2C311.7691%20510.0%2C329.0897%20500.0%2C346.4102%20480.0%2C346.4102%20470.0%2C329.0897%22%20fill-opacity%3D%220.81%22%20%2F%3E%20%3Cpolygon%20points%3D%22510.0%2C294.4486%20530.0%2C294.4486%20540.0%2C311.7691%20530.0%2C329.0897%20510.0%2C329.0897%20500.0%2C311.7691%22%20fill-opacity%3D%220.0%22%20%2F%3E%20%3Cpolygon%20points%3D%22540.0%2C311.7691%20560.0%2C311.7691%20570.0%2C329.0897%20560.0%2C346.4102%20540.0%2C346.4102%20530.0%2C329.0897%22%20fill-opacity%3D%220.89%22%20%2F%3E%20%3Cpolygon%20points%3D%22570.0%2C294.4486%20590.0%2C294.4486%20600.0%2C311.7691%20590.0%2C329.0897%20570.0%2C329.0897%20560.0%2C311.7691%22%20fill-opacity%3D%220.85%22%20%2F%3E%20%3Cpolygon%20points%3D%22600.0%2C0.0%20620.0%2C0.0%20630.0%2C17.3205%20620.0%2C34.641%20600.0%2C34.641%20590.0%2C17.3205%22%20fill-opacity%3D%220.2%22%20%2F%3E%20%3Cpolygon%20points%3D%2230.0%2C329.0897%2050.0%2C329.0897%2060.0%2C346.4102%2050.0%2C363.7307%2030.0%2C363.7307%2020.0%2C346.4102%22%20fill-opacity%3D%220.53%22%20%2F%3E%20%3Cpolygon%20points%3D%2290.0%2C329.0897%20110.0%2C329.0897%20120.0%2C346.4102%20110.0%2C363.7307%2090.0%2C363.7307%2080.0%2C346.4102%22%20fill-opacity%3D%220.32%22%20%2F%3E%20%3Cpolygon%20points%3D%22150.0%2C329.0897%20170.0%2C329.0897%20180.0%2C346.4102%20170.0%2C363.7307%20150.0%2C363.7307%20140.0%2C346.4102%22%20fill-opacity%3D%220.54%22%20%2F%3E%20%3Cpolygon%20points%3D%22210.0%2C329.0897%20230.0%2C329.0897%20240.0%2C346.4102%20230.0%2C363.7307%20210.0%2C363.7307%20200.0%2C346.4102%22%20fill-opacity%3D%220.01%22%20%2F%3E%20%3Cpolygon%20points%3D%22270.0%2C329.0897%20290.0%2C329.0897%20300.0%2C346.4102%20290.0%2C363.7307%20270.0%2C363.7307%20260.0%2C346.4102%22%20fill-opacity%3D%220.82%22%20%2F%3E%20%3Cpolygon%20points%3D%22330.0%2C329.0897%20350.0%2C329.0897%20360.0%2C346.4102%20350.0%2C363.7307%20330.0%2C363.7307%20320.0%2C346.4102%22%20fill-opacity%3D%220.75%22%20%2F%3E%20%3Cpolygon%20points%3D%22390.0%2C329.0897%20410.0%2C329.0897%20420.0%2C346.4102%20410.0%2C363.7307%20390.0%2C363.7307%20380.0%2C346.4102%22%20fill-opacity%3D%220.67%22%20%2F%3E%20%3Cpolygon%20points%3D%22450.0%2C329.0897%20470.0%2C329.0897%20480.0%2C346.4102%20470.0%2C363.7307%20450.0%2C363.7307%20440.0%2C346.4102%22%20fill-opacity%3D%220.33%22%20%2F%3E%20%3Cpolygon%20points%3D%22510.0%2C329.0897%20530.0%2C329.0897%20540.0%2C346.4102%20530.0%2C363.7307%20510.0%2C363.7307%20500.0%2C346.4102%22%20fill-opacity%3D%220.39%22%20%2F%3E%20%3Cpolygon%20points%3D%22570.0%2C329.0897%20590.0%2C329.0897%20600.0%2C346.4102%20590.0%2C363.7307%20570.0%2C363.7307%20560.0%2C346.4102%22%20fill-opacity%3D%220.81%22%20%2F%3E%20%3Cpolygon%20points%3D%22600.0%2C34.641%20620.0%2C34.641%20630.0%2C51.9615%20620.0%2C69.282%20600.0%2C69.282%20590.0%2C51.9615%22%20fill-opacity%3D%220.95%22%20%2F%3E%20%3Cpolygon%20points%3D%22600.0%2C69.282%20620.0%2C69.282%20630.0%2C86.6025%20620.0%2C103.923%20600.0%2C103.923%20590.0%2C86.6025%22%20fill-opacity%3D%220.89%22%20%2F%3E%20%3Cpolygon%20points%3D%22600.0%2C103.923%20620.0%2C103.923%20630.0%2C121.2436%20620.0%2C138.5641%20600.0%2C138.5641%20590.0%2C121.2436%22%20fill-opacity%3D%220.74%22%20%2F%3E%20%3Cpolygon%20points%3D%22600.0%2C138.5641%20620.0%2C138.5641%20630.0%2C155.8846%20620.0%2C173.2051%20600.0%2C173.2051%20590.0%2C155.8846%22%20fill-opacity%3D%220.31%22%20%2F%3E%20%3Cpolygon%20points%3D%22600.0%2C173.2051%20620.0%2C173.2051%20630.0%2C190.5256%20620.0%2C207.8461%20600.0%2C207.8461%20590.0%2C190.5256%22%20fill-opacity%3D%220.29%22%20%2F%3E%20%3Cpolygon%20points%3D%22600.0%2C207.8461%20620.0%2C207.8461%20630.0%2C225.1666%20620.0%2C242.4871%20600.0%2C242.4871%20590.0%2C225.1666%22%20fill-opacity%3D%220.14%22%20%2F%3E%20%3Cpolygon%20points%3D%22600.0%2C242.4871%20620.0%2C242.4871%20630.0%2C259.8076%20620.0%2C277.1281%20600.0%2C277.1281%20590.0%2C259.8076%22%20fill-opacity%3D%220.49%22%20%2F%3E%20%3Cpolygon%20points%3D%22600.0%2C277.1281%20620.0%2C277.1281%20630.0%2C294.4486%20620.0%2C311.7691%20600.0%2C311.7691%20590.0%2C294.4486%22%20fill-opacity%3D%220.22%22%20%2F%3E%20%3Cpolygon%20points%3D%22600.0%2C311.7691%20620.0%2C311.7691%20630.0%2C329.0897%20620.0%2C346.4102%20600.0%2C346.4102%20590.0%2C329.0897%22%20fill-opacity%3D%220.2%22%20%2F%3E%3C%2Fsvg%3E'), linear-gradient(45deg, rgba(37,21,69,0.145) 21%, rgba(212,72,107,0.145) 62%, rgba(126,37,119,0.145) 100%), url('https://peme969.carrd.co/assets/images/bg.jpg?v=feb7db44');
background-size: cover, cover, cover;
background-position: center, 0% 0%, center;
background-repeat: no-repeat, repeat, no-repeat;
background-color: #E6E6E6;
}
body:after {
background-color: #242529;
content: '';
display: block;
height: 100%;
left: 0;
opacity: 0;
pointer-events: none;
position: fixed;
top: 0;
transform: scale(1);
transition: opacity 0.5s ease-in-out 0s, visibility 0.5s 0s;
visibility: hidden;
width: 100%;
z-index: 1;
}
body.is-loading:after {
opacity: 1;
visibility: visible;
}
:root {
--background-height: 100vh;
--site-language-alignment: left;
--site-language-direction: ltr;
--site-language-flex-alignment: flex-start;
--site-language-indent-left: 1;
--site-language-indent-right: 0;
--viewport-height: 100vh;
}
html {
font-size: 19pt;
}
u {
text-decoration: underline;
}
strong {
color: inherit;
font-weight: bolder;
}
em {
font-style: italic;
}
code {
background-color: rgba(144,144,144,0.25);
border-radius: 0.25em;
font-family: 'Lucida Console', 'Courier New', monospace;
font-size: 0.9em;
font-weight: normal;
letter-spacing: 0;
margin: 0 0.25em;
padding: 0.25em 0.5em;
text-indent: 0;
}
mark {
background-color: rgba(144,144,144,0.25);
}
spoiler-text {
-webkit-text-stroke: 0;
background-color: rgba(32,32,32,0.75);
text-shadow: none;
text-stroke: 0;
color: transparent;
cursor: pointer;
transition: color 0.1s ease-in-out;
}
spoiler-text.active {
color: #FFFFFF;
cursor: text;
}
s {
text-decoration: line-through;
}
sub {
font-size: smaller;
vertical-align: sub;
}
sup {
font-size: smaller;
vertical-align: super;
}
a {
color: inherit;
text-decoration: underline;
transition: color 0.25s ease;
}
a[onclick]:not([href]) {
cursor: pointer;
}
#wrapper {
-webkit-overflow-scrolling: touch;
align-items: center;
display: flex;
flex-direction: column;
justify-content: center;
min-height: var(--viewport-height);
overflow: hidden;
position: relative;
z-index: 2;
padding: 5rem 5rem 5rem 5rem;
}
#main {
--alignment: center;
--flex-alignment: center;
--indent-left: 1;
--indent-right: 1;
--border-radius-tl: 1.875rem;
--border-radius-tr: 1.875rem;
--border-radius-br: 1.875rem;
--border-radius-bl: 1.875rem;
align-items: center;
display: flex;
flex-grow: 0;
flex-shrink: 0;
justify-content: center;
max-width: 100%;
position: relative;
text-align: var(--alignment);
z-index: 1;
background-color: #242529;
background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%22600%22%20height%3D%22347%22%20viewBox%3D%220%200%20600%20347%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cstyle%20type%3D%22text%2Fcss%22%3E%20polygon%20%7B%20fill%3A%20rgba(0,0,0,0.188)%3B%20transform%3A%20scale%28162%25%29%3B%20%7D%20%3C%2Fstyle%3E%20%3Cpolygon%20points%3D%220.0%2C0.0%2020.0%2C0.0%2030.0%2C17.3205%2020.0%2C34.641%200.0%2C34.641%20-10.0%2C17.3205%22%20fill-opacity%3D%220.2%22%20%2F%3E%20%3Cpolygon%20points%3D%2230.0%2C-17.3205%2050.0%2C-17.3205%2060.0%2C0.0%2050.0%2C17.3205%2030.0%2C17.3205%2020.0%2C0.0%22%20fill-opacity%3D%220.53%22%20%2F%3E%20%3Cpolygon%20points%3D%2260.0%2C0.0%2080.0%2C0.0%2090.0%2C17.3205%2080.0%2C34.641%2060.0%2C34.641%2050.0%2C17.3205%22%20fill-opacity%3D%220.84%22%20%2F%3E%20%3Cpolygon%20points%3D%2290.0%2C-17.3205%20110.0%2C-17.3205%20120.0%2C0.0%20110.0%2C17.3205%2090.0%2C17.3205%2080.0%2C0.0%22%20fill-opacity%3D%220.32%22%20%2F%3E%20%3Cpolygon%20points%3D%22120.0%2C0.0%20140.0%2C0.0%20150.0%2C17.3205%20140.0%2C34.641%20120.0%2C34.641%20110.0%2C17.3205%22%20fill-opacity%3D%220.3%22%20%2F%3E%20%3Cpolygon%20points%3D%22150.0%2C-17.3205%20170.0%2C-17.3205%20180.0%2C0.0%20170.0%2C17.3205%20150.0%2C17.3205%20140.0%2C0.0%22%20fill-opacity%3D%220.54%22%20%2F%3E%20%3Cpolygon%20points%3D%22180.0%2C0.0%20200.0%2C0.0%20210.0%2C17.3205%20200.0%2C34.641%20180.0%2C34.641%20170.0%2C17.3205%22%20fill-opacity%3D%220.51%22%20%2F%3E%20%3Cpolygon%20points%3D%22210.0%2C-17.3205%20230.0%2C-17.3205%20240.0%2C0.0%20230.0%2C17.3205%20210.0%2C17.3205%20200.0%2C0.0%22%20fill-opacity%3D%220.01%22%20%2F%3E%20%3Cpolygon%20points%3D%22240.0%2C0.0%20260.0%2C0.0%20270.0%2C17.3205%20260.0%2C34.641%20240.0%2C34.641%20230.0%2C17.3205%22%20fill-opacity%3D%220.31%22%20%2F%3E%20%3Cpolygon%20points%3D%22270.0%2C-17.3205%20290.0%2C-17.3205%20300.0%2C0.0%20290.0%2C17.3205%20270.0%2C17.3205%20260.0%2C0.0%22%20fill-opacity%3D%220.82%22%20%2F%3E%20%3Cpolygon%20points%3D%22300.0%2C0.0%20320.0%2C0.0%20330.0%2C17.3205%20320.0%2C34.641%20300.0%2C34.641%20290.0%2C17.3205%22%20fill-opacity%3D%220.05%22%20%2F%3E%20%3Cpolygon%20points%3D%22330.0%2C-17.3205%20350.0%2C-17.3205%20360.0%2C0.0%20350.0%2C17.3205%20330.0%2C17.3205%20320.0%2C0.0%22%20fill-opacity%3D%220.75%22%20%2F%3E%20%3Cpolygon%20points%3D%22360.0%2C0.0%20380.0%2C0.0%20390.0%2C17.3205%20380.0%2C34.641%20360.0%2C34.641%20350.0%2C17.3205%22%20fill-opacity%3D%220.27%22%20%2F%3E%20%3Cpolygon%20points%3D%22390.0%2C-17.3205%20410.0%2C-17.3205%20420.0%2C0.0%20410.0%2C17.3205%20390.0%2C17.3205%20380.0%2C0.0%22%20fill-opacity%3D%220.67%22%20%2F%3E%20%3Cpolygon%20points%3D%22420.0%2C0.0%20440.0%2C0.0%20450.0%2C17.3205%20440.0%2C34.641%20420.0%2C34.641%20410.0%2C17.3205%22%20fill-opacity%3D%220.75%22%20%2F%3E%20%3Cpolygon%20points%3D%22450.0%2C-17.3205%20470.0%2C-17.3205%20480.0%2C0.0%20470.0%2C17.3205%20450.0%2C17.3205%20440.0%2C0.0%22%20fill-opacity%3D%220.33%22%20%2F%3E%20%3Cpolygon%20points%3D%22480.0%2C0.0%20500.0%2C0.0%20510.0%2C17.3205%20500.0%2C34.641%20480.0%2C34.641%20470.0%2C17.3205%22%20fill-opacity%3D%220.01%22%20%2F%3E%20%3Cpolygon%20points%3D%22510.0%2C-17.3205%20530.0%2C-17.3205%20540.0%2C0.0%20530.0%2C17.3205%20510.0%2C17.3205%20500.0%2C0.0%22%20fill-opacity%3D%220.39%22%20%2F%3E%20%3Cpolygon%20points%3D%22540.0%2C0.0%20560.0%2C0.0%20570.0%2C17.3205%20560.0%2C34.641%20540.0%2C34.641%20530.0%2C17.3205%22%20fill-opacity%3D%220.53%22%20%2F%3E%20%3Cpolygon%20points%3D%22570.0%2C-17.3205%20590.0%2C-17.3205%20600.0%2C0.0%20590.0%2C17.3205%20570.0%2C17.3205%20560.0%2C0.0%22%20fill-opacity%3D%220.81%22%20%2F%3E%20%3Cpolygon%20points%3D%220.0%2C34.641%2020.0%2C34.641%2030.0%2C51.9615%2020.0%2C69.282%200.0%2C69.282%20-10.0%2C51.9615%22%20fill-opacity%3D%220.95%22%20%2F%3E%20%3Cpolygon%20points%3D%2230.0%2C17.3205%2050.0%2C17.3205%2060.0%2C34.641%2050.0%2C51.9615%2030.0%2C51.9615%2020.0%2C34.641%22%20fill-opacity%3D%220.82%22%20%2F%3E%20%3Cpolygon%20points%3D%2260.0%2C34.641%2080.0%2C34.641%2090.0%2C51.9615%2080.0%2C69.282%2060.0%2C69.282%2050.0%2C51.9615%22%20fill-opacity%3D%220.15%22%20%2F%3E%20%3Cpolygon%20points%3D%2290.0%2C17.3205%20110.0%2C17.3205%20120.0%2C34.641%20110.0%2C51.9615%2090.0%2C51.9615%2080.0%2C34.641%22%20fill-opacity%3D%220.46%22%20%2F%3E%20%3Cpolygon%20points%3D%22120.0%2C34.641%20140.0%2C34.641%20150.0%2C51.9615%20140.0%2C69.282%20120.0%2C69.282%20110.0%2C51.9615%22%20fill-opacity%3D%220.93%22%20%2F%3E%20%3Cpolygon%20points%3D%22150.0%2C17.3205%20170.0%2C17.3205%20180.0%2C34.641%20170.0%2C51.9615%20150.0%2C51.9615%20140.0%2C34.641%22%20fill-opacity%3D%220.88%22%20%2F%3E%20%3Cpolygon%20points%3D%22180.0%2C34.641%20200.0%2C34.641%20210.0%2C51.9615%20200.0%2C69.282%20180.0%2C69.282%20170.0%2C51.9615%22%20fill-opacity%3D%220.2%22%20%2F%3E%20%3Cpolygon%20points%3D%22210.0%2C17.3205%20230.0%2C17.3205%20240.0%2C34.641%20230.0%2C51.9615%20210.0%2C51.9615%20200.0%2C34.641%22%20fill-opacity%3D%220.05%22%20%2F%3E%20%3Cpolygon%20points%3D%22240.0%2C34.641%20260.0%2C34.641%20270.0%2C51.9615%20260.0%2C69.282%20240.0%2C69.282%20230.0%2C51.9615%22%20fill-opacity%3D%220.95%22%20%2F%3E%20%3Cpolygon%20points%3D%22270.0%2C17.3205%20290.0%2C17.3205%20300.0%2C34.641%20290.0%2C51.9615%20270.0%2C51.9615%20260.0%2C34.641%22%20fill-opacity%3D%220.97%22%20%2F%3E%20%3Cpolygon%20points%3D%22300.0%2C34.641%20320.0%2C34.641%20330.0%2C51.9615%20320.0%2C69.282%20300.0%2C69.282%20290.0%2C51.9615%22%20fill-opacity%3D%220.92%22%20%2F%3E%20%3Cpolygon%20points%3D%22330.0%2C17.3205%20350.0%2C17.3205%20360.0%2C34.641%20350.0%2C51.9615%20330.0%2C51.9615%20320.0%2C34.641%22%20fill-opacity%3D%220.27%22%20%2F%3E%20%3Cpolygon%20points%3D%22360.0%2C34.641%20380.0%2C34.641%20390.0%2C51.9615%20380.0%2C69.282%20360.0%2C69.282%20350.0%2C51.9615%22%20fill-opacity%3D%220.44%22%20%2F%3E%20%3Cpolygon%20points%3D%22390.0%2C17.3205%20410.0%2C17.3205%20420.0%2C34.641%20410.0%2C51.9615%20390.0%2C51.9615%20380.0%2C34.641%22%20fill-opacity%3D%220.11%22%20%2F%3E%20%3Cpolygon%20points%3D%22420.0%2C34.641%20440.0%2C34.641%20450.0%2C51.9615%20440.0%2C69.282%20420.0%2C69.282%20410.0%2C51.9615%22%20fill-opacity%3D%220.65%22%20%2F%3E%20%3Cpolygon%20points%3D%22450.0%2C17.3205%20470.0%2C17.3205%20480.0%2C34.641%20470.0%2C51.9615%20450.0%2C51.9615%20440.0%2C34.641%22%20fill-opacity%3D%220.35%22%20%2F%3E%20%3Cpolygon%20points%3D%22480.0%2C34.641%20500.0%2C34.641%20510.0%2C51.9615%20500.0%2C69.282%20480.0%2C69.282%20470.0%2C51.9615%22%20fill-opacity%3D%220.79%22%20%2F%3E%20%3Cpolygon%20points%3D%22510.0%2C17.3205%20530.0%2C17.3205%20540.0%2C34.641%20530.0%2C51.9615%20510.0%2C51.9615%20500.0%2C34.641%22%20fill-opacity%3D%220.58%22%20%2F%3E%20%3Cpolygon%20points%3D%22540.0%2C34.641%20560.0%2C34.641%20570.0%2C51.9615%20560.0%2C69.282%20540.0%2C69.282%20530.0%2C51.9615%22%20fill-opacity%3D%220.66%22%20%2F%3E%20%3Cpolygon%20points%3D%22570.0%2C17.3205%20590.0%2C17.3205%20600.0%2C34.641%20590.0%2C51.9615%20570.0%2C51.9615%20560.0%2C34.641%22%20fill-opacity%3D%220.76%22%20%2F%3E%20%3Cpolygon%20points%3D%220.0%2C69.282%2020.0%2C69.282%2030.0%2C86.6025%2020.0%2C103.923%200.0%2C103.923%20-10.0%2C86.6025%22%20fill-opacity%3D%220.89%22%20%2F%3E%20%3Cpolygon%20points%3D%2230.0%2C51.9615%2050.0%2C51.9615%2060.0%2C69.282%2050.0%2C86.6025%2030.0%2C86.6025%2020.0%2C69.282%22%20fill-opacity%3D%220.77%22%20%2F%3E%20%3Cpolygon%20points%3D%2260.0%2C69.282%2080.0%2C69.282%2090.0%2C86.6025%2080.0%2C103.923%2060.0%2C103.923%2050.0%2C86.6025%22%20fill-opacity%3D%220.12%22%20%2F%3E%20%3Cpolygon%20points%3D%2290.0%2C51.9615%20110.0%2C51.9615%20120.0%2C69.282%20110.0%2C86.6025%2090.0%2C86.6025%2080.0%2C69.282%22%20fill-opacity%3D%220.84%22%20%2F%3E%20%3Cpolygon%20points%3D%22120.0%2C69.282%20140.0%2C69.282%20150.0%2C86.6025%20140.0%2C103.923%20120.0%2C103.923%20110.0%2C86.6025%22%20fill-opacity%3D%220.5%22%20%2F%3E%20%3Cpolygon%20points%3D%22150.0%2C51.9615%20170.0%2C51.9615%20180.0%2C69.282%20170.0%2C86.6025%20150.0%2C86.6025%20140.0%2C69.282%22%20fill-opacity%3D%220.38%22%20%2F%3E%20%3Cpolygon%20points%3D%22180.0%2C69.282%20200.0%2C69.282%20210.0%2C86.6025%20200.0%2C103.923%20180.0%2C103.923%20170.0%2C86.6025%22%20fill-opacity%3D%220.41%22%20%2F%3E%20%3Cpolygon%20points%3D%22210.0%2C51.9615%20230.0%2C51.9615%20240.0%2C69.282%20230.0%2C86.6025%20210.0%2C86.6025%20200.0%2C69.282%22%20fill-opacity%3D%220.2%22%20%2F%3E%20%3Cpolygon%20points%3D%22240.0%2C69.282%20260.0%2C69.282%20270.0%2C86.6025%20260.0%2C103.923%20240.0%2C103.923%20230.0%2C86.6025%22%20fill-opacity%3D%220.97%22%20%2F%3E%20%3Cpolygon%20points%3D%22270.0%2C51.9615%20290.0%2C51.9615%20300.0%2C69.282%20290.0%2C86.6025%20270.0%2C86.6025%20260.0%2C69.282%22%20fill-opacity%3D%220.14%22%20%2F%3E%20%3Cpolygon%20points%3D%22300.0%2C69.282%20320.0%2C69.282%20330.0%2C86.6025%20320.0%2C103.923%20300.0%2C103.923%20290.0%2C86.6025%22%20fill-opacity%3D%220.03%22%20%2F%3E%20%3Cpolygon%20points%3D%22330.0%2C51.9615%20350.0%2C51.9615%20360.0%2C69.282%20350.0%2C86.6025%20330.0%2C86.6025%20320.0%2C69.282%22%20fill-opacity%3D%220.76%22%20%2F%3E%20%3Cpolygon%20points%3D%22360.0%2C69.282%20380.0%2C69.282%20390.0%2C86.6025%20380.0%2C103.923%20360.0%2C103.923%20350.0%2C86.6025%22%20fill-opacity%3D%221.0%22%20%2F%3E%20%3Cpolygon%20points%3D%22390.0%2C51.9615%20410.0%2C51.9615%20420.0%2C69.282%20410.0%2C86.6025%20390.0%2C86.6025%20380.0%2C69.282%22%20fill-opacity%3D%220.77%22%20%2F%3E%20%3Cpolygon%20points%3D%22420.0%2C69.282%20440.0%2C69.282%20450.0%2C86.6025%20440.0%2C103.923%20420.0%2C103.923%20410.0%2C86.6025%22%20fill-opacity%3D%220.02%22%20%2F%3E%20%3Cpolygon%20points%3D%22450.0%2C51.9615%20470.0%2C51.9615%20480.0%2C69.282%20470.0%2C86.6025%20450.0%2C86.6025%20440.0%2C69.282%22%20fill-opacity%3D%220.45%22%20%2F%3E%20%3Cpolygon%20points%3D%22480.0%2C69.282%20500.0%2C69.282%20510.0%2C86.6025%20500.0%2C103.923%20480.0%2C103.923%20470.0%2C86.6025%22%20fill-opacity%3D%220.1%22%20%2F%3E%20%3Cpolygon%20points%3D%22510.0%2C51.9615%20530.0%2C51.9615%20540.0%2C69.282%20530.0%2C86.6025%20510.0%2C86.6025%20500.0%2C69.282%22%20fill-opacity%3D%220.17%22%20%2F%3E%20%3Cpolygon%20points%3D%22540.0%2C69.282%20560.0%2C69.282%20570.0%2C86.6025%20560.0%2C103.923%20540.0%2C103.923%20530.0%2C86.6025%22%20fill-opacity%3D%220.2%22%20%2F%3E%20%3Cpolygon%20points%3D%22570.0%2C51.9615%20590.0%2C51.9615%20600.0%2C69.282%20590.0%2C86.6025%20570.0%2C86.6025%20560.0%2C69.282%22%20fill-opacity%3D%220.47%22%20%2F%3E%20%3Cpolygon%20points%3D%220.0%2C103.923%2020.0%2C103.923%2030.0%2C121.2436%2020.0%2C138.5641%200.0%2C138.5641%20-10.0%2C121.2436%22%20fill-opacity%3D%220.74%22%20%2F%3E%20%3Cpolygon%20points%3D%2230.0%2C86.6025%2050.0%2C86.6025%2060.0%2C103.923%2050.0%2C121.2436%2030.0%2C121.2436%2020.0%2C103.923%22%20fill-opacity%3D%220.59%22%20%2F%3E%20%3Cpolygon%20points%3D%2260.0%2C103.923%2080.0%2C103.923%2090.0%2C121.2436%2080.0%2C138.5641%2060.0%2C138.5641%2050.0%2C121.2436%22%20fill-opacity%3D%220.17%22%20%2F%3E%20%3Cpolygon%20points%3D%2290.0%2C86.6025%20110.0%2C86.6025%20120.0%2C103.923%20110.0%2C121.2436%2090.0%2C121.2436%2080.0%2C103.923%22%20fill-opacity%3D%220.65%22%20%2F%3E%20%3Cpolygon%20points%3D%22120.0%2C103.923%20140.0%2C103.923%20150.0%2C121.2436%20140.0%2C138.5641%20120.0%2C138.5641%20110.0%2C121.2436%22%20fill-opacity%3D%220.8%22%20%2F%3E%20%3Cpolygon%20points%3D%22150.0%2C86.6025%20170.0%2C86.6025%20180.0%2C103.923%20170.0%2C121.2436%20150.0%2C121.2436%20140.0%2C103.923%22%20fill-opacity%3D%220.02%22%20%2F%3E%20%3Cpolygon%20points%3D%22180.0%2C103.923%20200.0%2C103.923%20210.0%2C121.2436%20200.0%2C138.5641%20180.0%2C138.5641%20170.0%2C121.2436%22%20fill-opacity%3D%220.96%22%20%2F%3E%20%3Cpolygon%20points%3D%22210.0%2C86.6025%20230.0%2C86.6025%20240.0%2C103.923%20230.0%2C121.2436%20210.0%2C121.2436%20200.0%2C103.923%22%20fill-opacity%3D%220.75%22%20%2F%3E%20%3Cpolygon%20points%3D%22240.0%2C103.923%20260.0%2C103.923%20270.0%2C121.2436%20260.0%2C138.5641%20240.0%2C138.5641%20230.0%2C121.2436%22%20fill-opacity%3D%220.29%22%20%2F%3E%20%3Cpolygon%20points%3D%22270.0%2C86.6025%20290.0%2C86.6025%20300.0%2C103.923%20290.0%2C121.2436%20270.0%2C121.2436%20260.0%2C103.923%22%20fill-opacity%3D%220.38%22%20%2F%3E%20%3Cpolygon%20points%3D%22300.0%2C103.923%20320.0%2C103.923%20330.0%2C121.2436%20320.0%2C138.5641%20300.0%2C138.5641%20290.0%2C121.2436%22%20fill-opacity%3D%220.11%22%20%2F%3E%20%3Cpolygon%20points%3D%22330.0%2C86.6025%20350.0%2C86.6025%20360.0%2C103.923%20350.0%2C121.2436%20330.0%2C121.2436%20320.0%2C103.923%22%20fill-opacity%3D%220.63%22%20%2F%3E%20%3Cpolygon%20points%3D%22360.0%2C103.923%20380.0%2C103.923%20390.0%2C121.2436%20380.0%2C138.5641%20360.0%2C138.5641%20350.0%2C121.2436%22%20fill-opacity%3D%220.44%22%20%2F%3E%20%3Cpolygon%20points%3D%22390.0%2C86.6025%20410.0%2C86.6025%20420.0%2C103.923%20410.0%2C121.2436%20390.0%2C121.2436%20380.0%2C103.923%22%20fill-opacity%3D%220.78%22%20%2F%3E%20%3Cpolygon%20points%3D%22420.0%2C103.923%20440.0%2C103.923%20450.0%2C121.2436%20440.0%2C138.5641%20420.0%2C138.5641%20410.0%2C121.2436%22%20fill-opacity%3D%220.63%22%20%2F%3E%20%3Cpolygon%20points%3D%22450.0%2C86.6025%20470.0%2C86.6025%20480.0%2C103.923%20470.0%2C121.2436%20450.0%2C121.2436%20440.0%2C103.923%22%20fill-opacity%3D%220.83%22%20%2F%3E%20%3Cpolygon%20points%3D%22480.0%2C103.923%20500.0%2C103.923%20510.0%2C121.2436%20500.0%2C138.5641%20480.0%2C138.5641%20470.0%2C121.2436%22%20fill-opacity%3D%220.58%22%20%2F%3E%20%3Cpolygon%20points%3D%22510.0%2C86.6025%20530.0%2C86.6025%20540.0%2C103.923%20530.0%2C121.2436%20510.0%2C121.2436%20500.0%2C103.923%22%20fill-opacity%3D%220.14%22%20%2F%3E%20%3Cpolygon%20points%3D%22540.0%2C103.923%20560.0%2C103.923%20570.0%2C121.2436%20560.0%2C138.5641%20540.0%2C138.5641%20530.0%2C121.2436%22%20fill-opacity%3D%220.45%22%20%2F%3E%20%3Cpolygon%20points%3D%22570.0%2C86.6025%20590.0%2C86.6025%20600.0%2C103.923%20590.0%2C121.2436%20570.0%2C121.2436%20560.0%2C103.923%22%20fill-opacity%3D%220.08%22%20%2F%3E%20%3Cpolygon%20points%3D%220.0%2C138.5641%2020.0%2C138.5641%2030.0%2C155.8846%2020.0%2C173.2051%200.0%2C173.2051%20-10.0%2C155.8846%22%20fill-opacity%3D%220.31%22%20%2F%3E%20%3Cpolygon%20points%3D%2230.0%2C121.2436%2050.0%2C121.2436%2060.0%2C138.5641%2050.0%2C155.8846%2030.0%2C155.8846%2020.0%2C138.5641%22%20fill-opacity%3D%220.76%22%20%2F%3E%20%3Cpolygon%20points%3D%2260.0%2C138.5641%2080.0%2C138.5641%2090.0%2C155.8846%2080.0%2C173.2051%2060.0%2C173.2051%2050.0%2C155.8846%22%20fill-opacity%3D%220.61%22%20%2F%3E%20%3Cpolygon%20points%3D%2290.0%2C121.2436%20110.0%2C121.2436%20120.0%2C138.5641%20110.0%2C155.8846%2090.0%2C155.8846%2080.0%2C138.5641%22%20fill-opacity%3D%220.13%22%20%2F%3E%20%3Cpolygon%20points%3D%22120.0%2C138.5641%20140.0%2C138.5641%20150.0%2C155.8846%20140.0%2C173.2051%20120.0%2C173.2051%20110.0%2C155.8846%22%20fill-opacity%3D%220.31%22%20%2F%3E%20%3Cpolygon%20points%3D%22150.0%2C121.2436%20170.0%2C121.2436%20180.0%2C138.5641%20170.0%2C155.8846%20150.0%2C155.8846%20140.0%2C138.5641%22%20fill-opacity%3D%220.28%22%20%2F%3E%20%3Cpolygon%20points%3D%22180.0%2C138.5641%20200.0%2C138.5641%20210.0%2C155.8846%20200.0%2C173.2051%20180.0%2C173.2051%20170.0%2C155.8846%22%20fill-opacity%3D%220.79%22%20%2F%3E%20%3Cpolygon%20points%3D%22210.0%2C121.2436%20230.0%2C121.2436%20240.0%2C138.5641%20230.0%2C155.8846%20210.0%2C155.8846%20200.0%2C138.5641%22%20fill-opacity%3D%220.34%22%20%2F%3E%20%3Cpolygon%20points%3D%22240.0%2C138.5641%20260.0%2C138.5641%20270.0%2C155.8846%20260.0%2C173.2051%20240.0%2C173.2051%20230.0%2C155.8846%22%20fill-opacity%3D%220.54%22%20%2F%3E%20%3Cpolygon%20points%3D%22270.0%2C121.2436%20290.0%2C121.2436%20300.0%2C138.5641%20290.0%2C155.8846%20270.0%2C155.8846%20260.0%2C138.5641%22%20fill-opacity%3D%220.11%22%20%2F%3E%20%3Cpolygon%20points%3D%22300.0%2C138.5641%20320.0%2C138.5641%20330.0%2C155.8846%20320.0%2C173.2051%20300.0%2C173.2051%20290.0%2C155.8846%22%20fill-opacity%3D%220.46%22%20%2F%3E%20%3Cpolygon%20points%3D%22330.0%2C121.2436%20350.0%2C121.2436%20360.0%2C138.5641%20350.0%2C155.8846%20330.0%2C155.8846%20320.0%2C138.5641%22%20fill-opacity%3D%220.39%22%20%2F%3E%20%3Cpolygon%20points%3D%22360.0%2C138.5641%20380.0%2C138.5641%20390.0%2C155.8846%20380.0%2C173.2051%20360.0%2C173.2051%20350.0%2C155.8846%22%20fill-opacity%3D%220.66%22%20%2F%3E%20%3Cpolygon%20points%3D%22390.0%2C121.2436%20410.0%2C121.2436%20420.0%2C138.5641%20410.0%2C155.8846%20390.0%2C155.8846%20380.0%2C138.5641%22%20fill-opacity%3D%220.91%22%20%2F%3E%20%3Cpolygon%20points%3D%22420.0%2C138.5641%20440.0%2C138.5641%20450.0%2C155.8846%20440.0%2C173.2051%20420.0%2C173.2051%20410.0%2C155.8846%22%20fill-opacity%3D%220.76%22%20%2F%3E%20%3Cpolygon%20points%3D%22450.0%2C121.2436%20470.0%2C121.2436%20480.0%2C138.5641%20470.0%2C155.8846%20450.0%2C155.8846%20440.0%2C138.5641%22%20fill-opacity%3D%220.93%22%20%2F%3E%20%3Cpolygon%20points%3D%22480.0%2C138.5641%20500.0%2C138.5641%20510.0%2C155.8846%20500.0%2C173.2051%20480.0%2C173.2051%20470.0%2C155.8846%22%20fill-opacity%3D%220.62%22%20%2F%3E%20%3Cpolygon%20points%3D%22510.0%2C121.2436%20530.0%2C121.2436%20540.0%2C138.5641%20530.0%2C155.8846%20510.0%2C155.8846%20500.0%2C138.5641%22%20fill-opacity%3D%220.67%22%20%2F%3E%20%3Cpolygon%20points%3D%22540.0%2C138.5641%20560.0%2C138.5641%20570.0%2C155.8846%20560.0%2C173.2051%20540.0%2C173.2051%20530.0%2C155.8846%22%20fill-opacity%3D%220.87%22%20%2F%3E%20%3Cpolygon%20points%3D%22570.0%2C121.2436%20590.0%2C121.2436%20600.0%2C138.5641%20590.0%2C155.8846%20570.0%2C155.8846%20560.0%2C138.5641%22%20fill-opacity%3D%220.48%22%20%2F%3E%20%3Cpolygon%20points%3D%220.0%2C173.2051%2020.0%2C173.2051%2030.0%2C190.5256%2020.0%2C207.8461%200.0%2C207.8461%20-10.0%2C190.5256%22%20fill-opacity%3D%220.29%22%20%2F%3E%20%3Cpolygon%20points%3D%2230.0%2C155.8846%2050.0%2C155.8846%2060.0%2C173.2051%2050.0%2C190.5256%2030.0%2C190.5256%2020.0%2C173.2051%22%20fill-opacity%3D%220.09%22%20%2F%3E%20%3Cpolygon%20points%3D%2260.0%2C173.2051%2080.0%2C173.2051%2090.0%2C190.5256%2080.0%2C207.8461%2060.0%2C207.8461%2050.0%2C190.5256%22%20fill-opacity%3D%220.07%22%20%2F%3E%20%3Cpolygon%20points%3D%2290.0%2C155.8846%20110.0%2C155.8846%20120.0%2C173.2051%20110.0%2C190.5256%2090.0%2C190.5256%2080.0%2C173.2051%22%20fill-opacity%3D%220.72%22%20%2F%3E%20%3Cpolygon%20points%3D%22120.0%2C173.2051%20140.0%2C173.2051%20150.0%2C190.5256%20140.0%2C207.8461%20120.0%2C207.8461%20110.0%2C190.5256%22%20fill-opacity%3D%220.44%22%20%2F%3E%20%3Cpolygon%20points%3D%22150.0%2C155.8846%20170.0%2C155.8846%20180.0%2C173.2051%20170.0%2C190.5256%20150.0%2C190.5256%20140.0%2C173.2051%22%20fill-opacity%3D%220.7%22%20%2F%3E%20%3Cpolygon%20points%3D%22180.0%2C173.2051%20200.0%2C173.2051%20210.0%2C190.5256%20200.0%2C207.8461%20180.0%2C207.8461%20170.0%2C190.5256%22%20fill-opacity%3D%220.3%22%20%2F%3E%20%3Cpolygon%20points%3D%22210.0%2C155.8846%20230.0%2C155.8846%20240.0%2C173.2051%20230.0%2C190.5256%20210.0%2C190.5256%20200.0%2C173.2051%22%20fill-opacity%3D%220.28%22%20%2F%3E%20%3Cpolygon%20points%3D%22240.0%2C173.2051%20260.0%2C173.2051%20270.0%2C190.5256%20260.0%2C207.8461%20240.0%2C207.8461%20230.0%2C190.5256%22%20fill-opacity%3D%220.15%22%20%2F%3E%20%3Cpolygon%20points%3D%22270.0%2C155.8846%20290.0%2C155.8846%20300.0%2C173.2051%20290.0%2C190.5256%20270.0%2C190.5256%20260.0%2C173.2051%22%20fill-opacity%3D%220.16%22%20%2F%3E%20%3Cpolygon%20points%3D%22300.0%2C173.2051%20320.0%2C173.2051%20330.0%2C190.5256%20320.0%2C207.8461%20300.0%2C207.8461%20290.0%2C190.5256%22%20fill-opacity%3D%220.04%22%20%2F%3E%20%3Cpolygon%20points%3D%22330.0%2C155.8846%20350.0%2C155.8846%20360.0%2C173.2051%20350.0%2C190.5256%20330.0%2C190.5256%20320.0%2C173.2051%22%20fill-opacity%3D%220.57%22%20%2F%3E%20%3Cpolygon%20points%3D%22360.0%2C173.2051%20380.0%2C173.2051%20390.0%2C190.5256%20380.0%2C207.8461%20360.0%2C207.8461%20350.0%2C190.5256%22%20fill-opacity%3D%220.07%22%20%2F%3E%20%3Cpolygon%20points%3D%22390.0%2C155.8846%20410.0%2C155.8846%20420.0%2C173.2051%20410.0%2C190.5256%20390.0%2C190.5256%20380.0%2C173.2051%22%20fill-opacity%3D%220.87%22%20%2F%3E%20%3Cpolygon%20points%3D%22420.0%2C173.2051%20440.0%2C173.2051%20450.0%2C190.5256%20440.0%2C207.8461%20420.0%2C207.8461%20410.0%2C190.5256%22%20fill-opacity%3D%220.45%22%20%2F%3E%20%3Cpolygon%20points%3D%22450.0%2C155.8846%20470.0%2C155.8846%20480.0%2C173.2051%20470.0%2C190.5256%20450.0%2C190.5256%20440.0%2C173.2051%22%20fill-opacity%3D%220.26%22%20%2F%3E%20%3Cpolygon%20points%3D%22480.0%2C173.2051%20500.0%2C173.2051%20510.0%2C190.5256%20500.0%2C207.8461%20480.0%2C207.8461%20470.0%2C190.5256%22%20fill-opacity%3D%220.65%22%20%2F%3E%20%3Cpolygon%20points%3D%22510.0%2C155.8846%20530.0%2C155.8846%20540.0%2C173.2051%20530.0%2C190.5256%20510.0%2C190.5256%20500.0%2C173.2051%22%20fill-opacity%3D%220.61%22%20%2F%3E%20%3Cpolygon%20points%3D%22540.0%2C173.2051%20560.0%2C173.2051%20570.0%2C190.5256%20560.0%2C207.8461%20540.0%2C207.8461%20530.0%2C190.5256%22%20fill-opacity%3D%220.17%22%20%2F%3E%20%3Cpolygon%20points%3D%22570.0%2C155.8846%20590.0%2C155.8846%20600.0%2C173.2051%20590.0%2C190.5256%20570.0%2C190.5256%20560.0%2C173.2051%22%20fill-opacity%3D%220.11%22%20%2F%3E%20%3Cpolygon%20points%3D%220.0%2C207.8461%2020.0%2C207.8461%2030.0%2C225.1666%2020.0%2C242.4871%200.0%2C242.4871%20-10.0%2C225.1666%22%20fill-opacity%3D%220.14%22%20%2F%3E%20%3Cpolygon%20points%3D%2230.0%2C190.5256%2050.0%2C190.5256%2060.0%2C207.8461%2050.0%2C225.1666%2030.0%2C225.1666%2020.0%2C207.8461%22%20fill-opacity%3D%220.87%22%20%2F%3E%20%3Cpolygon%20points%3D%2260.0%2C207.8461%2080.0%2C207.8461%2090.0%2C225.1666%2080.0%2C242.4871%2060.0%2C242.4871%2050.0%2C225.1666%22%20fill-opacity%3D%220.85%22%20%2F%3E%20%3Cpolygon%20points%3D%2290.0%2C190.5256%20110.0%2C190.5256%20120.0%2C207.8461%20110.0%2C225.1666%2090.0%2C225.1666%2080.0%2C207.8461%22%20fill-opacity%3D%220.35%22%20%2F%3E%20%3Cpolygon%20points%3D%22120.0%2C207.8461%20140.0%2C207.8461%20150.0%2C225.1666%20140.0%2C242.4871%20120.0%2C242.4871%20110.0%2C225.1666%22%20fill-opacity%3D%220.39%22%20%2F%3E%20%3Cpolygon%20points%3D%22150.0%2C190.5256%20170.0%2C190.5256%20180.0%2C207.8461%20170.0%2C225.1666%20150.0%2C225.1666%20140.0%2C207.8461%22%20fill-opacity%3D%220.25%22%20%2F%3E%20%3Cpolygon%20points%3D%22180.0%2C207.8461%20200.0%2C207.8461%20210.0%2C225.1666%20200.0%2C242.4871%20180.0%2C242.4871%20170.0%2C225.1666%22%20fill-opacity%3D%220.48%22%20%2F%3E%20%3Cpolygon%20points%3D%22210.0%2C190.5256%20230.0%2C190.5256%20240.0%2C207.8461%20230.0%2C225.1666%20210.0%2C225.1666%20200.0%2C207.8461%22%20fill-opacity%3D%220.65%22%20%2F%3E%20%3Cpolygon%20points%3D%22240.0%2C207.8461%20260.0%2C207.8461%20270.0%2C225.1666%20260.0%2C242.4871%20240.0%2C242.4871%20230.0%2C225.1666%22%20fill-opacity%3D%220.82%22%20%2F%3E%20%3Cpolygon%20points%3D%22270.0%2C190.5256%20290.0%2C190.5256%20300.0%2C207.8461%20290.0%2C225.1666%20270.0%2C225.1666%20260.0%2C207.8461%22%20fill-opacity%3D%220.71%22%20%2F%3E%20%3Cpolygon%20points%3D%22300.0%2C207.8461%20320.0%2C207.8461%20330.0%2C225.1666%20320.0%2C242.4871%20300.0%2C242.4871%20290.0%2C225.1666%22%20fill-opacity%3D%220.83%22%20%2F%3E%20%3Cpolygon%20points%3D%22330.0%2C190.5256%20350.0%2C190.5256%20360.0%2C207.8461%20350.0%2C225.1666%20330.0%2C225.1666%20320.0%2C207.8461%22%20fill-opacity%3D%220.2%22%20%2F%3E%20%3Cpolygon%20points%3D%22360.0%2C207.8461%20380.0%2C207.8461%20390.0%2C225.1666%20380.0%2C242.4871%20360.0%2C242.4871%20350.0%2C225.1666%22%20fill-opacity%3D%220.5%22%20%2F%3E%20%3Cpolygon%20points%3D%22390.0%2C190.5256%20410.0%2C190.5256%20420.0%2C207.8461%20410.0%2C225.1666%20390.0%2C225.1666%20380.0%2C207.8461%22%20fill-opacity%3D%220.4%22%20%2F%3E%20%3Cpolygon%20points%3D%22420.0%2C207.8461%20440.0%2C207.8461%20450.0%2C225.1666%20440.0%2C242.4871%20420.0%2C242.4871%20410.0%2C225.1666%22%20fill-opacity%3D%220.56%22%20%2F%3E%20%3Cpolygon%20points%3D%22450.0%2C190.5256%20470.0%2C190.5256%20480.0%2C207.8461%20470.0%2C225.1666%20450.0%2C225.1666%20440.0%2C207.8461%22%20fill-opacity%3D%220.52%22%20%2F%3E%20%3Cpolygon%20points%3D%22480.0%2C207.8461%20500.0%2C207.8461%20510.0%2C225.1666%20500.0%2C242.4871%20480.0%2C242.4871%20470.0%2C225.1666%22%20fill-opacity%3D%220.02%22%20%2F%3E%20%3Cpolygon%20points%3D%22510.0%2C190.5256%20530.0%2C190.5256%20540.0%2C207.8461%20530.0%2C225.1666%20510.0%2C225.1666%20500.0%2C207.8461%22%20fill-opacity%3D%220.27%22%20%2F%3E%20%3Cpolygon%20points%3D%22540.0%2C207.8461%20560.0%2C207.8461%20570.0%2C225.1666%20560.0%2C242.4871%20540.0%2C242.4871%20530.0%2C225.1666%22%20fill-opacity%3D%220.95%22%20%2F%3E%20%3Cpolygon%20points%3D%22570.0%2C190.5256%20590.0%2C190.5256%20600.0%2C207.8461%20590.0%2C225.1666%20570.0%2C225.1666%20560.0%2C207.8461%22%20fill-opacity%3D%220.04%22%20%2F%3E%20%3Cpolygon%20points%3D%220.0%2C242.4871%2020.0%2C242.4871%2030.0%2C259.8076%2020.0%2C277.1281%200.0%2C277.1281%20-10.0%2C259.8076%22%20fill-opacity%3D%220.49%22%20%2F%3E%20%3Cpolygon%20points%3D%2230.0%2C225.1666%2050.0%2C225.1666%2060.0%2C242.4871%2050.0%2C259.8076%2030.0%2C259.8076%2020.0%2C242.4871%22%20fill-opacity%3D%220.68%22%20%2F%3E%20%3Cpolygon%20points%3D%2260.0%2C242.4871%2080.0%2C242.4871%2090.0%2C259.8076%2080.0%2C277.1281%2060.0%2C277.1281%2050.0%2C259.8076%22%20fill-opacity%3D%220.96%22%20%2F%3E%20%3Cpolygon%20points%3D%2290.0%2C225.1666%20110.0%2C225.1666%20120.0%2C242.4871%20110.0%2C259.8076%2090.0%2C259.8076%2080.0%2C242.4871%22%20fill-opacity%3D%220.8%22%20%2F%3E%20%3Cpolygon%20points%3D%22120.0%2C242.4871%20140.0%2C242.4871%20150.0%2C259.8076%20140.0%2C277.1281%20120.0%2C277.1281%20110.0%2C259.8076%22%20fill-opacity%3D%220.42%22%20%2F%3E%20%3Cpolygon%20points%3D%22150.0%2C225.1666%20170.0%2C225.1666%20180.0%2C242.4871%20170.0%2C259.8076%20150.0%2C259.8076%20140.0%2C242.4871%22%20fill-opacity%3D%220.74%22%20%2F%3E%20%3Cpolygon%20points%3D%22180.0%2C242.4871%20200.0%2C242.4871%20210.0%2C259.8076%20200.0%2C277.1281%20180.0%2C277.1281%20170.0%2C259.8076%22%20fill-opacity%3D%220.68%22%20%2F%3E%20%3Cpolygon%20points%3D%22210.0%2C225.1666%20230.0%2C225.1666%20240.0%2C242.4871%20230.0%2C259.8076%20210.0%2C259.8076%20200.0%2C242.4871%22%20fill-opacity%3D%220.27%22%20%2F%3E%20%3Cpolygon%20points%3D%22240.0%2C242.4871%20260.0%2C242.4871%20270.0%2C259.8076%20260.0%2C277.1281%20240.0%2C277.1281%20230.0%2C259.8076%22%20fill-opacity%3D%220.74%22%20%2F%3E%20%3Cpolygon%20points%3D%22270.0%2C225.1666%20290.0%2C225.1666%20300.0%2C242.4871%20290.0%2C259.8076%20270.0%2C259.8076%20260.0%2C242.4871%22%20fill-opacity%3D%220.92%22%20%2F%3E%20%3Cpolygon%20points%3D%22300.0%2C242.4871%20320.0%2C242.4871%20330.0%2C259.8076%20320.0%2C277.1281%20300.0%2C277.1281%20290.0%2C259.8076%22%20fill-opacity%3D%220.21%22%20%2F%3E%20%3Cpolygon%20points%3D%22330.0%2C225.1666%20350.0%2C225.1666%20360.0%2C242.4871%20350.0%2C259.8076%20330.0%2C259.8076%20320.0%2C242.4871%22%20fill-opacity%3D%220.17%22%20%2F%3E%20%3Cpolygon%20points%3D%22360.0%2C242.4871%20380.0%2C242.4871%20390.0%2C259.8076%20380.0%2C277.1281%20360.0%2C277.1281%20350.0%2C259.8076%22%20fill-opacity%3D%220.11%22%20%2F%3E%20%3Cpolygon%20points%3D%22390.0%2C225.1666%20410.0%2C225.1666%20420.0%2C242.4871%20410.0%2C259.8076%20390.0%2C259.8076%20380.0%2C242.4871%22%20fill-opacity%3D%220.67%22%20%2F%3E%20%3Cpolygon%20points%3D%22420.0%2C242.4871%20440.0%2C242.4871%20450.0%2C259.8076%20440.0%2C277.1281%20420.0%2C277.1281%20410.0%2C259.8076%22%20fill-opacity%3D%220.6%22%20%2F%3E%20%3Cpolygon%20points%3D%22450.0%2C225.1666%20470.0%2C225.1666%20480.0%2C242.4871%20470.0%2C259.8076%20450.0%2C259.8076%20440.0%2C242.4871%22%20fill-opacity%3D%220.58%22%20%2F%3E%20%3Cpolygon%20points%3D%22480.0%2C242.4871%20500.0%2C242.4871%20510.0%2C259.8076%20500.0%2C277.1281%20480.0%2C277.1281%20470.0%2C259.8076%22%20fill-opacity%3D%220.19%22%20%2F%3E%20%3Cpolygon%20points%3D%22510.0%2C225.1666%20530.0%2C225.1666%20540.0%2C242.4871%20530.0%2C259.8076%20510.0%2C259.8076%20500.0%2C242.4871%22%20fill-opacity%3D%220.21%22%20%2F%3E%20%3Cpolygon%20points%3D%22540.0%2C242.4871%20560.0%2C242.4871%20570.0%2C259.8076%20560.0%2C277.1281%20540.0%2C277.1281%20530.0%2C259.8076%22%20fill-opacity%3D%220.82%22%20%2F%3E%20%3Cpolygon%20points%3D%22570.0%2C225.1666%20590.0%2C225.1666%20600.0%2C242.4871%20590.0%2C259.8076%20570.0%2C259.8076%20560.0%2C242.4871%22%20fill-opacity%3D%220.53%22%20%2F%3E%20%3Cpolygon%20points%3D%220.0%2C277.1281%2020.0%2C277.1281%2030.0%2C294.4486%2020.0%2C311.7691%200.0%2C311.7691%20-10.0%2C294.4486%22%20fill-opacity%3D%220.22%22%20%2F%3E%20%3Cpolygon%20points%3D%2230.0%2C259.8076%2050.0%2C259.8076%2060.0%2C277.1281%2050.0%2C294.4486%2030.0%2C294.4486%2020.0%2C277.1281%22%20fill-opacity%3D%220.15%22%20%2F%3E%20%3Cpolygon%20points%3D%2260.0%2C277.1281%2080.0%2C277.1281%2090.0%2C294.4486%2080.0%2C311.7691%2060.0%2C311.7691%2050.0%2C294.4486%22%20fill-opacity%3D%220.31%22%20%2F%3E%20%3Cpolygon%20points%3D%2290.0%2C259.8076%20110.0%2C259.8076%20120.0%2C277.1281%20110.0%2C294.4486%2090.0%2C294.4486%2080.0%2C277.1281%22%20fill-opacity%3D%220.12%22%20%2F%3E%20%3Cpolygon%20points%3D%22120.0%2C277.1281%20140.0%2C277.1281%20150.0%2C294.4486%20140.0%2C311.7691%20120.0%2C311.7691%20110.0%2C294.4486%22%20fill-opacity%3D%220.34%22%20%2F%3E%20%3Cpolygon%20points%3D%22150.0%2C259.8076%20170.0%2C259.8076%20180.0%2C277.1281%20170.0%2C294.4486%20150.0%2C294.4486%20140.0%2C277.1281%22%20fill-opacity%3D%220.36%22%20%2F%3E%20%3Cpolygon%20points%3D%22180.0%2C277.1281%20200.0%2C277.1281%20210.0%2C294.4486%20200.0%2C311.7691%20180.0%2C311.7691%20170.0%2C294.4486%22%20fill-opacity%3D%220.8%22%20%2F%3E%20%3Cpolygon%20points%3D%22210.0%2C259.8076%20230.0%2C259.8076%20240.0%2C277.1281%20230.0%2C294.4486%20210.0%2C294.4486%20200.0%2C277.1281%22%20fill-opacity%3D%220.16%22%20%2F%3E%20%3Cpolygon%20points%3D%22240.0%2C277.1281%20260.0%2C277.1281%20270.0%2C294.4486%20260.0%2C311.7691%20240.0%2C311.7691%20230.0%2C294.4486%22%20fill-opacity%3D%220.28%22%20%2F%3E%20%3Cpolygon%20points%3D%22270.0%2C259.8076%20290.0%2C259.8076%20300.0%2C277.1281%20290.0%2C294.4486%20270.0%2C294.4486%20260.0%2C277.1281%22%20fill-opacity%3D%220.54%22%20%2F%3E%20%3Cpolygon%20points%3D%22300.0%2C277.1281%20320.0%2C277.1281%20330.0%2C294.4486%20320.0%2C311.7691%20300.0%2C311.7691%20290.0%2C294.4486%22%20fill-opacity%3D%220.82%22%20%2F%3E%20%3Cpolygon%20points%3D%22330.0%2C259.8076%20350.0%2C259.8076%20360.0%2C277.1281%20350.0%2C294.4486%20330.0%2C294.4486%20320.0%2C277.1281%22%20fill-opacity%3D%220.4%22%20%2F%3E%20%3Cpolygon%20points%3D%22360.0%2C277.1281%20380.0%2C277.1281%20390.0%2C294.4486%20380.0%2C311.7691%20360.0%2C311.7691%20350.0%2C294.4486%22%20fill-opacity%3D%220.08%22%20%2F%3E%20%3Cpolygon%20points%3D%22390.0%2C259.8076%20410.0%2C259.8076%20420.0%2C277.1281%20410.0%2C294.4486%20390.0%2C294.4486%20380.0%2C277.1281%22%20fill-opacity%3D%220.29%22%20%2F%3E%20%3Cpolygon%20points%3D%22420.0%2C277.1281%20440.0%2C277.1281%20450.0%2C294.4486%20440.0%2C311.7691%20420.0%2C311.7691%20410.0%2C294.4486%22%20fill-opacity%3D%220.01%22%20%2F%3E%20%3Cpolygon%20points%3D%22450.0%2C259.8076%20470.0%2C259.8076%20480.0%2C277.1281%20470.0%2C294.4486%20450.0%2C294.4486%20440.0%2C277.1281%22%20fill-opacity%3D%220.6%22%20%2F%3E%20%3Cpolygon%20points%3D%22480.0%2C277.1281%20500.0%2C277.1281%20510.0%2C294.4486%20500.0%2C311.7691%20480.0%2C311.7691%20470.0%2C294.4486%22%20fill-opacity%3D%220.56%22%20%2F%3E%20%3Cpolygon%20points%3D%22510.0%2C259.8076%20530.0%2C259.8076%20540.0%2C277.1281%20530.0%2C294.4486%20510.0%2C294.4486%20500.0%2C277.1281%22%20fill-opacity%3D%220.24%22%20%2F%3E%20%3Cpolygon%20points%3D%22540.0%2C277.1281%20560.0%2C277.1281%20570.0%2C294.4486%20560.0%2C311.7691%20540.0%2C311.7691%20530.0%2C294.4486%22%20fill-opacity%3D%220.71%22%20%2F%3E%20%3Cpolygon%20points%3D%22570.0%2C259.8076%20590.0%2C259.8076%20600.0%2C277.1281%20590.0%2C294.4486%20570.0%2C294.4486%20560.0%2C277.1281%22%20fill-opacity%3D%220.64%22%20%2F%3E%20%3Cpolygon%20points%3D%220.0%2C311.7691%2020.0%2C311.7691%2030.0%2C329.0897%2020.0%2C346.4102%200.0%2C346.4102%20-10.0%2C329.0897%22%20fill-opacity%3D%220.2%22%20%2F%3E%20%3Cpolygon%20points%3D%2230.0%2C294.4486%2050.0%2C294.4486%2060.0%2C311.7691%2050.0%2C329.0897%2030.0%2C329.0897%2020.0%2C311.7691%22%20fill-opacity%3D%220.51%22%20%2F%3E%20%3Cpolygon%20points%3D%2260.0%2C311.7691%2080.0%2C311.7691%2090.0%2C329.0897%2080.0%2C346.4102%2060.0%2C346.4102%2050.0%2C329.0897%22%20fill-opacity%3D%220.05%22%20%2F%3E%20%3Cpolygon%20points%3D%2290.0%2C294.4486%20110.0%2C294.4486%20120.0%2C311.7691%20110.0%2C329.0897%2090.0%2C329.0897%2080.0%2C311.7691%22%20fill-opacity%3D%220.51%22%20%2F%3E%20%3Cpolygon%20points%3D%22120.0%2C311.7691%20140.0%2C311.7691%20150.0%2C329.0897%20140.0%2C346.4102%20120.0%2C346.4102%20110.0%2C329.0897%22%20fill-opacity%3D%220.73%22%20%2F%3E%20%3Cpolygon%20points%3D%22150.0%2C294.4486%20170.0%2C294.4486%20180.0%2C311.7691%20170.0%2C329.0897%20150.0%2C329.0897%20140.0%2C311.7691%22%20fill-opacity%3D%220.75%22%20%2F%3E%20%3Cpolygon%20points%3D%22180.0%2C311.7691%20200.0%2C311.7691%20210.0%2C329.0897%20200.0%2C346.4102%20180.0%2C346.4102%20170.0%2C329.0897%22%20fill-opacity%3D%220.21%22%20%2F%3E%20%3Cpolygon%20points%3D%22210.0%2C294.4486%20230.0%2C294.4486%20240.0%2C311.7691%20230.0%2C329.0897%20210.0%2C329.0897%20200.0%2C311.7691%22%20fill-opacity%3D%220.56%22%20%2F%3E%20%3Cpolygon%20points%3D%22240.0%2C311.7691%20260.0%2C311.7691%20270.0%2C329.0897%20260.0%2C346.4102%20240.0%2C346.4102%20230.0%2C329.0897%22%20fill-opacity%3D%220.07%22%20%2F%3E%20%3Cpolygon%20points%3D%22270.0%2C294.4486%20290.0%2C294.4486%20300.0%2C311.7691%20290.0%2C329.0897%20270.0%2C329.0897%20260.0%2C311.7691%22%20fill-opacity%3D%220.65%22%20%2F%3E%20%3Cpolygon%20points%3D%22300.0%2C311.7691%20320.0%2C311.7691%20330.0%2C329.0897%20320.0%2C346.4102%20300.0%2C346.4102%20290.0%2C329.0897%22%20fill-opacity%3D%220.65%22%20%2F%3E%20%3Cpolygon%20points%3D%22330.0%2C294.4486%20350.0%2C294.4486%20360.0%2C311.7691%20350.0%2C329.0897%20330.0%2C329.0897%20320.0%2C311.7691%22%20fill-opacity%3D%220.14%22%20%2F%3E%20%3Cpolygon%20points%3D%22360.0%2C311.7691%20380.0%2C311.7691%20390.0%2C329.0897%20380.0%2C346.4102%20360.0%2C346.4102%20350.0%2C329.0897%22%20fill-opacity%3D%220.84%22%20%2F%3E%20%3Cpolygon%20points%3D%22390.0%2C294.4486%20410.0%2C294.4486%20420.0%2C311.7691%20410.0%2C329.0897%20390.0%2C329.0897%20380.0%2C311.7691%22%20fill-opacity%3D%220.98%22%20%2F%3E%20%3Cpolygon%20points%3D%22420.0%2C311.7691%20440.0%2C311.7691%20450.0%2C329.0897%20440.0%2C346.4102%20420.0%2C346.4102%20410.0%2C329.0897%22%20fill-opacity%3D%220.75%22%20%2F%3E%20%3Cpolygon%20points%3D%22450.0%2C294.4486%20470.0%2C294.4486%20480.0%2C311.7691%20470.0%2C329.0897%20450.0%2C329.0897%20440.0%2C311.7691%22%20fill-opacity%3D%220.02%22%20%2F%3E%20%3Cpolygon%20points%3D%22480.0%2C311.7691%20500.0%2C311.7691%20510.0%2C329.0897%20500.0%2C346.4102%20480.0%2C346.4102%20470.0%2C329.0897%22%20fill-opacity%3D%220.81%22%20%2F%3E%20%3Cpolygon%20points%3D%22510.0%2C294.4486%20530.0%2C294.4486%20540.0%2C311.7691%20530.0%2C329.0897%20510.0%2C329.0897%20500.0%2C311.7691%22%20fill-opacity%3D%220.0%22%20%2F%3E%20%3Cpolygon%20points%3D%22540.0%2C311.7691%20560.0%2C311.7691%20570.0%2C329.0897%20560.0%2C346.4102%20540.0%2C346.4102%20530.0%2C329.0897%22%20fill-opacity%3D%220.89%22%20%2F%3E%20%3Cpolygon%20points%3D%22570.0%2C294.4486%20590.0%2C294.4486%20600.0%2C311.7691%20590.0%2C329.0897%20570.0%2C329.0897%20560.0%2C311.7691%22%20fill-opacity%3D%220.85%22%20%2F%3E%20%3Cpolygon%20points%3D%22600.0%2C0.0%20620.0%2C0.0%20630.0%2C17.3205%20620.0%2C34.641%20600.0%2C34.641%20590.0%2C17.3205%22%20fill-opacity%3D%220.2%22%20%2F%3E%20%3Cpolygon%20points%3D%2230.0%2C329.0897%2050.0%2C329.0897%2060.0%2C346.4102%2050.0%2C363.7307%2030.0%2C363.7307%2020.0%2C346.4102%22%20fill-opacity%3D%220.53%22%20%2F%3E%20%3Cpolygon%20points%3D%2290.0%2C329.0897%20110.0%2C329.0897%20120.0%2C346.4102%20110.0%2C363.7307%2090.0%2C363.7307%2080.0%2C346.4102%22%20fill-opacity%3D%220.32%22%20%2F%3E%20%3Cpolygon%20points%3D%22150.0%2C329.0897%20170.0%2C329.0897%20180.0%2C346.4102%20170.0%2C363.7307%20150.0%2C363.7307%20140.0%2C346.4102%22%20fill-opacity%3D%220.54%22%20%2F%3E%20%3Cpolygon%20points%3D%22210.0%2C329.0897%20230.0%2C329.0897%20240.0%2C346.4102%20230.0%2C363.7307%20210.0%2C363.7307%20200.0%2C346.4102%22%20fill-opacity%3D%220.01%22%20%2F%3E%20%3Cpolygon%20points%3D%22270.0%2C329.0897%20290.0%2C329.0897%20300.0%2C346.4102%20290.0%2C363.7307%20270.0%2C363.7307%20260.0%2C346.4102%22%20fill-opacity%3D%220.82%22%20%2F%3E%20%3Cpolygon%20points%3D%22330.0%2C329.0897%20350.0%2C329.0897%20360.0%2C346.4102%20350.0%2C363.7307%20330.0%2C363.7307%20320.0%2C346.4102%22%20fill-opacity%3D%220.75%22%20%2F%3E%20%3Cpolygon%20points%3D%22390.0%2C329.0897%20410.0%2C329.0897%20420.0%2C346.4102%20410.0%2C363.7307%20390.0%2C363.7307%20380.0%2C346.4102%22%20fill-opacity%3D%220.67%22%20%2F%3E%20%3Cpolygon%20points%3D%22450.0%2C329.0897%20470.0%2C329.0897%20480.0%2C346.4102%20470.0%2C363.7307%20450.0%2C363.7307%20440.0%2C346.4102%22%20fill-opacity%3D%220.33%22%20%2F%3E%20%3Cpolygon%20points%3D%22510.0%2C329.0897%20530.0%2C329.0897%20540.0%2C346.4102%20530.0%2C363.7307%20510.0%2C363.7307%20500.0%2C346.4102%22%20fill-opacity%3D%220.39%22%20%2F%3E%20%3Cpolygon%20points%3D%22570.0%2C329.0897%20590.0%2C329.0897%20600.0%2C346.4102%20590.0%2C363.7307%20570.0%2C363.7307%20560.0%2C346.4102%22%20fill-opacity%3D%220.81%22%20%2F%3E%20%3Cpolygon%20points%3D%22600.0%2C34.641%20620.0%2C34.641%20630.0%2C51.9615%20620.0%2C69.282%20600.0%2C69.282%20590.0%2C51.9615%22%20fill-opacity%3D%220.95%22%20%2F%3E%20%3Cpolygon%20points%3D%22600.0%2C69.282%20620.0%2C69.282%20630.0%2C86.6025%20620.0%2C103.923%20600.0%2C103.923%20590.0%2C86.6025%22%20fill-opacity%3D%220.89%22%20%2F%3E%20%3Cpolygon%20points%3D%22600.0%2C103.923%20620.0%2C103.923%20630.0%2C121.2436%20620.0%2C138.5641%20600.0%2C138.5641%20590.0%2C121.2436%22%20fill-opacity%3D%220.74%22%20%2F%3E%20%3Cpolygon%20points%3D%22600.0%2C138.5641%20620.0%2C138.5641%20630.0%2C155.8846%20620.0%2C173.2051%20600.0%2C173.2051%20590.0%2C155.8846%22%20fill-opacity%3D%220.31%22%20%2F%3E%20%3Cpolygon%20points%3D%22600.0%2C173.2051%20620.0%2C173.2051%20630.0%2C190.5256%20620.0%2C207.8461%20600.0%2C207.8461%20590.0%2C190.5256%22%20fill-opacity%3D%220.29%22%20%2F%3E%20%3Cpolygon%20points%3D%22600.0%2C207.8461%20620.0%2C207.8461%20630.0%2C225.1666%20620.0%2C242.4871%20600.0%2C242.4871%20590.0%2C225.1666%22%20fill-opacity%3D%220.14%22%20%2F%3E%20%3Cpolygon%20points%3D%22600.0%2C242.4871%20620.0%2C242.4871%20630.0%2C259.8076%20620.0%2C277.1281%20600.0%2C277.1281%20590.0%2C259.8076%22%20fill-opacity%3D%220.49%22%20%2F%3E%20%3Cpolygon%20points%3D%22600.0%2C277.1281%20620.0%2C277.1281%20630.0%2C294.4486%20620.0%2C311.7691%20600.0%2C311.7691%20590.0%2C294.4486%22%20fill-opacity%3D%220.22%22%20%2F%3E%20%3Cpolygon%20points%3D%22600.0%2C311.7691%20620.0%2C311.7691%20630.0%2C329.0897%20620.0%2C346.4102%20600.0%2C346.4102%20590.0%2C329.0897%22%20fill-opacity%3D%220.2%22%20%2F%3E%3C%2Fsvg%3E');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
box-shadow: 0rem 0rem 5.875rem 2.125rem rgba(0,0,0,0.2);
border-radius: var(--border-radius-tl) var(--border-radius-tr) var(--border-radius-br) var(--border-radius-bl);
transition: opacity 0.5s ease 0s,transform 0.5s ease 0s;
}
#main > .inner {
--padding-horizontal: 4rem;
--padding-vertical: 6rem;
--spacing: 1.5rem;
--width: 30rem;
border-radius: var(--border-radius-tl) var(--border-radius-tr) var(--border-radius-br) var(--border-radius-bl);
max-width: 100%;
position: relative;
width: var(--width);
z-index: 1;
padding: var(--padding-vertical) var(--padding-horizontal);
}
#main > .inner > * {
margin-top: var(--spacing);
margin-bottom: var(--spacing);
}
#main > .inner > :first-child {
margin-top: 0 !important;
}
#main > .inner > :last-child {
margin-bottom: 0 !important;
}
#main > .inner > .full {
margin-left: calc(var(--padding-horizontal) * -1);
max-width: calc(100% + calc(var(--padding-horizontal) * 2) + 0.4725px);
width: calc(100% + calc(var(--padding-horizontal) * 2) + 0.4725px);
}
#main > .inner > .full:first-child {
border-top-left-radius: inherit;
border-top-right-radius: inherit;
margin-top: calc(var(--padding-vertical) * -1) !important;
}
#main > .inner > .full:last-child {
border-bottom-left-radius: inherit;
border-bottom-right-radius: inherit;
margin-bottom: calc(var(--padding-vertical) * -1) !important;
}
#main > .inner > .full.screen {
border-radius: 0 !important;
max-width: 100vw;
position: relative;
width: 100vw;
left: 50%;
margin-left: -50vw;
right: auto;
}
body.is-loading #main {
opacity: 0;
transform: translateY(0.375rem);
}
body.is-instant #main, body.is-instant #main > .inner > *,body.is-instant #main > .inner > section > * {
transition: none !important;
}
body.is-instant:after {
display: none !important;
transition: none !important;
}
.image {
display: block;
line-height: 0;
max-width: 100%;
position: relative;
}
.image .frame {
-webkit-backface-visibility: hidden;
-webkit-transform: translate3d(0, 0, 0);
display: inline-block;
max-width: 100%;
overflow: hidden;
vertical-align: top;
width: 100%;
}
.image .frame img {
border-radius: 0 !important;
max-width: 100%;
vertical-align: top;
width: inherit;
}
.image.full .frame {
display: block;
}
.image.full:first-child .frame {
border-top-left-radius: inherit;
border-top-right-radius: inherit;
}
.image.full:last-child .frame {
border-bottom-left-radius: inherit;
border-bottom-right-radius: inherit;
}
.image.style1:not(:first-child) {
margin-top: 2.25rem !important;
}
.image.style1:not(:last-child) {
margin-bottom: 2.25rem !important;
}
.image.style1 .frame {
width: 7.75rem;
border-radius: 100%;
border-color: #9E9E9E;
border-style: solid;
border-width: 8px;
transition: none;
}
.image.style1 .frame img {
transition: none;
}
h1, h2, h3, p {
direction: var(--site-language-direction);
position: relative;
}
h1 span.p, h2 span.p, h3 span.p, p span.p {
display: block;
position: relative;
}
h1 span[style], h2 span[style], h3 span[style], p span[style], h1 strong, h2 strong, h3 strong, p strong, h1 a, h2 a, h3 a, p a, h1 code, h2 code, h3 code, p code, h1 mark, h2 mark, h3 mark, p mark, h1 spoiler-text, h2 spoiler-text, h3 spoiler-text, p spoiler-text {
-webkit-text-fill-color: currentcolor;
}
h1.style1:not(:first-child), h2.style1:not(:first-child), h3.style1:not(:first-child), p.style1:not(:first-child) {
margin-top: 2rem !important;
}
h1.style1:not(:last-child), h2.style1:not(:last-child), h3.style1:not(:last-child), p.style1:not(:last-child) {
margin-bottom: 2rem !important;
}
h1.style1, h2.style1, h3.style1, p.style1 {
color: #FFFFFF;
font-family: 'Inter', sans-serif;
font-size: 4.375em;
line-height: 1;
font-weight: 600;
background-image: linear-gradient(30deg, #7A7A7A 0%, #FFFFFF 73%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
h1.style1 mark, h2.style1 mark, h3.style1 mark, p.style1 mark {
background-color: transparent;
}
h1.style1 a:hover, h2.style1 a:hover, h3.style1 a:hover, p.style1 a:hover {
color: #6A00FF;
}
h1.style1 a, h2.style1 a, h3.style1 a, p.style1 a {
text-decoration: underline;
}
h1.style1 span.p:nth-child(n + 2), h2.style1 span.p:nth-child(n + 2), h3.style1 span.p:nth-child(n + 2), p.style1 span.p:nth-child(n + 2) {
margin-top: 1rem;
-webkit-text-fill-color: currentcolor;
}
h1.style1 span.p, h2.style1 span.p, h3.style1 span.p, p.style1 span.p {
background-image: linear-gradient(30deg, #7A7A7A 0%, #FFFFFF 73%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent !important;
}
h1.style2, h2.style2, h3.style2, p.style2 {
color: rgba(255,255,255,0.69);
font-family: 'Inter', sans-serif;
font-size: 1em;
line-height: 1.875;
font-weight: 400;
}
h1.style2 mark, h2.style2 mark, h3.style2 mark, p.style2 mark {
color: #FFFFFF;
background-color: transparent;
}
h1.style2 a, h2.style2 a, h3.style2 a, p.style2 a {
color: #FFFFFF;
text-decoration: underline;
}
h1.style2 a:hover, h2.style2 a:hover, h3.style2 a:hover, p.style2 a:hover {
color: #6A00FF;
}
h1.style2 span.p:nth-child(n + 2), h2.style2 span.p:nth-child(n + 2), h3.style2 span.p:nth-child(n + 2), p.style2 span.p:nth-child(n + 2) {
margin-top: 1rem;
}
h1.style3:not(:first-child), h2.style3:not(:first-child), h3.style3:not(:first-child), p.style3:not(:first-child) {
margin-top: 2rem !important;
}
h1.style3:not(:last-child), h2.style3:not(:last-child), h3.style3:not(:last-child), p.style3:not(:last-child) {
margin-bottom: 2rem !important;
}
h1.style3, h2.style3, h3.style3, p.style3 {
color: #FFFFFF;
font-family: 'Inter', sans-serif;
font-size: 3em;
line-height: 1;
font-weight: 600;
background-image: linear-gradient(30deg, #7A7A7A 0%, #FFFFFF 73%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
h1.style3 mark, h2.style3 mark, h3.style3 mark, p.style3 mark {
background-color: transparent;
}
h1.style3 a:hover, h2.style3 a:hover, h3.style3 a:hover, p.style3 a:hover {
color: #6A00FF;
}
h1.style3 a, h2.style3 a, h3.style3 a, p.style3 a {
text-decoration: underline;
}
h1.style3 span.p:nth-child(n + 2), h2.style3 span.p:nth-child(n + 2), h3.style3 span.p:nth-child(n + 2), p.style3 span.p:nth-child(n + 2) {
margin-top: 1rem;
-webkit-text-fill-color: currentcolor;
}
h1.style3 span.p, h2.style3 span.p, h3.style3 span.p, p.style3 span.p {
background-image: linear-gradient(30deg, #7A7A7A 0%, #FFFFFF 73%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent !important;
}
.icons {
display: flex;
flex-wrap: wrap;
justify-content: var(--flex-alignment);
letter-spacing: 0;
padding: 0;
}
.icons li {
position: relative;
z-index: 1;
}
.icons li a {
align-items: center;
display: flex;
justify-content: center;
}
.icons li a svg {
display: block;
position: relative;
}
.icons li a + svg {
display: block;
height: 100%;
left: 0;
pointer-events: none;
position: absolute;
top: 0;
width: 100%;
z-index: -1;
}
.icons li a .label {
display: none;
}
.icons.style1 {
font-size: 2em;
gap: 1.5rem;
}
.icons.style1:not(:first-child) {
margin-top: 2.5rem !important;
}
.icons.style1:not(:last-child) {
margin-bottom: 2.5rem !important;
}
.icons.style1 li a {
border-radius: 100%;
height: 2em;
width: 2em;
transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
.icons.style1 li a svg {
height: 60%;
width: 60%;
transition: fill 0.25s ease;
}
.icons.style1 a {
background-color: #FFFFFF;
background-image: linear-gradient(30deg, #ADADAD 0%, rgba(255,255,255,0.008) 100%);
background-position: 0% 0%;
background-repeat: repeat;
background-size: cover;
}
.icons.style1 a svg {
fill: rgba(36,37,41,0.62);
}
.icons.style1 li a + svg {
transition: transform 0.25s ease, fill 0.25s ease, stroke 0.25s ease;
}
.icons.style1 li a:hover {
transform: scale(1.1125);
}
.icons.style1 li a:hover + svg {
transform: scale(1.1125);
}
.container {
position: relative;
}
.container > .wrapper {
vertical-align: top;
position: relative;
max-width: 100%;
border-radius: inherit;
}
.container > .wrapper > .inner {
vertical-align: top;
position: relative;
max-width: 100%;
border-radius: inherit;
text-align: var(--alignment);
}
#main .container.full:first-child > .wrapper {
border-top-left-radius: inherit;
border-top-right-radius: inherit;
}
#main .container.full:last-child > .wrapper {
border-bottom-left-radius: inherit;
border-bottom-right-radius: inherit;
}
#main .container.full:first-child > .wrapper > .inner {
border-top-left-radius: inherit;
border-top-right-radius: inherit;
}
#main .container.full:last-child > .wrapper > .inner {
border-bottom-left-radius: inherit;
border-bottom-right-radius: inherit;
}
.container.style1 > .wrapper {
display: inline-block;
width: 98rem;
background-color: transparent;
}
.container.style1 > .wrapper > .inner {
--gutters: 2rem;
--padding-horizontal: 0rem;
--padding-vertical: 0rem;
padding: var(--padding-vertical) var(--padding-horizontal);
}
.container.style1.default > .wrapper > .inner > * {
margin-bottom: var(--spacing);
margin-top: var(--spacing);
}
.container.style1.default > .wrapper > .inner > *:first-child {
margin-top: 0 !important;
}
.container.style1.default > .wrapper > .inner > *:last-child {
margin-bottom: 0 !important;
}
.container.style1.columns > .wrapper > .inner {
flex-wrap: wrap;
display: flex;
align-items: flex-start;
}
.container.style1.columns > .wrapper > .inner > * {
flex-grow: 0;
flex-shrink: 0;
max-width: 100%;
text-align: var(--alignment);
padding: 0 0 0 var(--gutters);
}
.container.style1.columns > .wrapper > .inner > * > * {
margin-bottom: var(--spacing);
margin-top: var(--spacing);
}
.container.style1.columns > .wrapper > .inner > * > *:first-child {
margin-top: 0 !important;
}
.container.style1.columns > .wrapper > .inner > * > *:last-child {
margin-bottom: 0 !important;
}
.container.style1.columns > .wrapper > .inner > *:first-child {
margin-left: calc(var(--gutters) * -1);
}
.container.style1.default > .wrapper > .inner > .full {
margin-left: calc(var(--padding-horizontal) * -1);
max-width: none !important;
width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}
.container.style1.default > .wrapper > .inner > .full:first-child {
margin-top: calc(var(--padding-vertical) * -1) !important;
border-top-left-radius: inherit;
border-top-right-radius: inherit;
}
.container.style1.default > .wrapper > .inner > .full:last-child {
margin-bottom: calc(var(--padding-vertical) * -1) !important;
border-bottom-left-radius: inherit;
border-bottom-right-radius: inherit;
}
.container.style1.columns > .wrapper > .inner > div > .full {
margin-left: calc(var(--gutters) * -0.5);
max-width: none !important;
width: calc(100% + var(--gutters) + 0.4725px);
}
.container.style1.columns > .wrapper > .inner > div:first-child > .full {
margin-left: calc(var(--padding-horizontal) * -1);
width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}
.container.style1.columns > .wrapper > .inner > div:last-child > .full {
width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}
.container.style1.columns > .wrapper > .inner > div > .full:first-child {
margin-top: calc(var(--padding-vertical) * -1) !important;
}
.container.style1.columns > .wrapper > .inner > div > .full:last-child {
margin-bottom: calc(var(--padding-vertical) * -1) !important;
}
.container.style1.columns > .wrapper > .inner > div:first-child, .container.style1.columns > .wrapper > .inner > div:first-child > .full:first-child {
border-top-left-radius: inherit;
}
.container.style1.columns > .wrapper > .inner > div:last-child, .container.style1.columns > .wrapper > .inner > div:last-child > .full:first-child {
border-top-right-radius: inherit;
}
.container.style1.columns > .wrapper > .inner > .full {
align-self: stretch;
}
.container.style1.columns > .wrapper > .inner > .full:first-child {
border-bottom-left-radius: inherit;
border-top-left-radius: inherit;
}
.container.style1.columns > .wrapper > .inner > .full:last-child {
border-bottom-right-radius: inherit;
border-top-right-radius: inherit;
}
.container.style1.columns > .wrapper > .inner > .full > .full:first-child:last-child {
border-radius: inherit;
height: calc(100% + (var(--padding-vertical) * 2));
}
.container.style1.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
border-radius: inherit;
height: 100%;
position: absolute;
width: 100%;
}
hr {
align-items: center;
border: 0;
display: flex;
justify-content: var(--flex-alignment);
min-height: 1rem;
padding: 0;
position: relative;
width: 100%;
}
hr:before {
content: '';
}
hr.style1:not(:first-child) {
margin-top: 5rem !important;
}
hr.style1:not(:last-child) {
margin-bottom: 5rem !important;
}
hr.style1:before {
width: 100%;
border-top: dashed 2px rgba(255,255,255,0.051);
height: 2px;
}
.buttons {
cursor: default;
display: flex;
justify-content: var(--flex-alignment);
letter-spacing: 0;
padding: 0;
}
.buttons li {
max-width: 100%;
}
.buttons li a {
align-items: center;
justify-content: center;
max-width: 100%;
text-align: center;
text-decoration: none;
vertical-align: middle;
white-space: nowrap;
}
.buttons.style1 {
gap: 1.5rem;
flex-direction: row;
flex-wrap: wrap;
}
.buttons.style1:not(:first-child) {
margin-top: 2.5rem !important;
}
.buttons.style1:not(:last-child) {
margin-bottom: 2.5rem !important;
}
.buttons.style1 li a {
display: inline-flex;
width: 100vw;
height: auto;
line-height: 1.75rem;
padding: 0 1.625rem;
vertical-align: middle;
font-family: 'Inter', sans-serif;
font-size: 1em;
font-weight: 600;
border-radius: 0.75rem;
flex-direction: row-reverse;
justify-content: flex-end;
padding-bottom: 1.015625rem;
padding-top: 1.015625rem;
white-space: normal;
align-items: flex-start;
transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
.buttons.style1 li a svg {
display: block;
fill: #242529;
flex-grow: 0;
flex-shrink: 0;
height: 1.75rem;
min-width: 16px;
width: 1.25em;
margin-left: 0.75rem;
margin-right: calc(-0.125em + 0rem);
transition: fill 0.25s ease;
}
.buttons.style1 li a .label {
direction: var(--site-language-direction);
overflow: hidden;
flex-grow: 1;
flex-shrink: 1;
text-align: left;
width: 100%;
}
.buttons.style1 .button {
background-color: #FFFFFF;
color: #242529;
background-image: linear-gradient(20deg, #ADADAD 0%, rgba(255,255,255,0.008) 100%);
background-position: 0% 0%;
background-repeat: repeat;
background-size: cover;
}
.buttons.style1 .button svg {
fill: rgba(36,37,41,0.62);
}
.buttons.style1 li a:hover {
transform: scale(1.0425);
}
.icc-credits {
display: block;
opacity: 1 !important;
position: relative;
transition-delay: 0s !important;
}
.icc-credits span {
border-radius: 24px;
cursor: pointer;
display: inline-block;
font-family: Arial, sans-serif;
font-size: 12px;
letter-spacing: 0;
line-height: 1;
position: relative;
text-decoration: none;
width: auto;
}
.icc-credits span a {
display: inline-block;
padding: 0.5em 0.375em;
position: relative;
text-decoration: none;
transition: color 0.25s ease, transform 0.25s ease;
z-index: 1;
}
.icc-credits span a:before {
content: '( ';
opacity: 1;
transition: opacity 0.25s ease;
}
.icc-credits span a:after {
content: ' )';
opacity: 1;
transition: opacity 0.25s ease;
}
.icc-credits span::after {
background-image: linear-gradient(30deg, #A464A1 15%, #3B5DAD 85%);
border-radius: inherit;
box-shadow: 0 0.25em 1.25em 0 rgba(0,0,0,0.25);
content: '';
display: block;
height: calc(100% + 2px);
left: -1px;
opacity: 0;
pointer-events: none;
position: absolute;
top: -1px;
transition: opacity 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
width: calc(100% + 2px);
}
.icc-credits span:hover {
text-transform: none !important;
}
.icc-credits span:hover a {
color: #ffffff !important;
transform: scale(1.1) translateY(-0.05rem);
}
.icc-credits span:hover a:before {
opacity: 0;
}
.icc-credits span:hover a:after {
opacity: 0;
}
.icc-credits span:hover::after {
opacity: 1;
transform: scale(1.1) translateY(-0.05rem);
}
#credits span {
color: rgba(255,255,255,0.498);
margin-top: 1.5rem !important;
}
@media (max-width: 1920px) {
}
@media (max-width: 1680px) {
html {
font-size: 14pt;
}
}
@media (max-width: 1280px) {
html {
font-size: 14pt;
}
}
@media (max-width: 1024px) {