-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2035 lines (1989 loc) · 135 KB
/
index.html
File metadata and controls
2035 lines (1989 loc) · 135 KB
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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="public/images/mountain.png">
<title>Madeline Demers</title>
<link href="https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&family=Catamaran:wght@100..900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;1,400;1,500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/ScrollTrigger.min.js"></script>
</head>
<body>
<!-- NAVIGATION -->
<header id="site-header">
<a href="#" class="logo">Madeline Demers</a>
<nav>
<a href="#about">About</a>
<a href="#case-studies">Work</a>
<a href="#play">Play</a>
<a href="#footer">Contact</a>
</nav>
</header>
<!-- HERO -->
<section class="hero">
<div class="hero-bg" id="hero-bg"></div>
<canvas id="grain-canvas"></canvas>
<div class="hero-content">
<h1 aria-label="Always moving, always making. Restless by design.">
<span style="white-space:nowrap"><span class="word">Always</span> <span class="word">moving.</span> <span class="word">Always</span> <span class="word">making.</span></span>
<br>
<em><span style="white-space:nowrap"><span class="word">Restless</span> <span class="word">by</span> <span class="word">design.</span></span></em>
</h1>
<div class="hero-illustration" id="hero-illustration">
<svg id="drawing-svg" viewBox="0 0 1596 452" xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="xMidYMid meet"
aria-label="Unbroken journey line drawing">
<path class="draw-path" id="dp0" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.000000"
d="
M37.000000,304.000000
C35.612606,307.014923 36.708130,310.552582 35.000000,313.500000
"/>
<path class="draw-path" id="dp1" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M37.500000,333.500000
C37.763695,336.335846 35.741917,335.969025 34.000008,336.000519
C24.833323,336.166046 15.666667,336.333344 6.500000,336.500000
"/>
<path class="draw-path" id="dp2" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M40.500004,304.500000
C40.666672,305.000000 41.032574,305.526733 40.969601,305.995911
C40.230267,311.504913 42.961803,315.007111 47.500000,317.500000
"/>
<path class="draw-path" id="dp3" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="4.000000"
d="
M47.000000,318.500000
C43.748856,321.356812 42.712353,324.757172 43.899982,329.027802
C44.239761,330.249603 44.930542,332.647278 42.490402,332.911316
C40.692081,333.105927 38.747078,333.684448 36.960072,332.043488
C32.793381,328.217407 33.922958,323.151764 33.663956,318.490875
C33.609810,317.516571 33.733818,316.152435 34.000000,315.000000
"/>
<path class="draw-path" id="dp4" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.000000"
d="
M47.500000,316.500000
C49.546616,312.845917 48.188911,306.056183 45.027607,303.466309
C44.164841,302.759491 42.861813,302.748413 42.576756,303.068390
C40.773304,305.092621 38.686459,303.522980 37.016636,303.344421
C32.009914,302.809082 30.771433,303.868347 31.457359,309.005707
C31.696289,310.795227 31.622660,312.596527 33.000000,314.000000
"/>
<path class="draw-path" id="dp5" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M77.000000,277.000000
C70.447258,277.183960 65.820946,281.661560 60.541759,284.575653
C55.649017,287.276428 52.121151,291.548676 49.512787,296.506714
C48.861233,297.745209 47.857807,299.003052 49.000000,300.500000
"/>
<path class="draw-path" id="dp6" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M87.500000,256.500000
C84.615746,256.860596 85.495956,259.210358 84.912010,260.970825
C83.335793,265.722748 81.333336,270.333344 79.500000,275.000000
"/>
<path class="draw-path" id="dp7" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M90.250000,197.000000
C90.936279,201.090881 94.820389,201.317734 97.500000,203.000000
"/>
<path class="draw-path" id="dp8" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="5.000000"
d="
M95.500000,180.500000
C96.371246,181.745255 97.292786,183.192307 95.964996,184.463440
C92.637390,187.649017 90.249321,191.178802 90.200920,195.999512
C90.190964,196.991348 89.071739,196.292755 88.500000,196.500000
"/>
<path class="draw-path" id="dp9" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="5.000000"
d="
M97.000000,184.000000
C100.003593,186.968552 103.288719,189.482315 107.500000,190.500000
"/>
<path class="draw-path" id="dp10" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M105.500000,188.500000
C107.930687,180.345169 113.701111,173.758698 116.132935,165.539337
C117.115662,162.217819 117.772659,159.228592 114.927254,157.097107
C112.029106,154.926132 109.046852,155.870209 106.452980,158.452774
C105.204887,159.695450 104.434113,161.901169 102.000000,161.500000
"/>
<path class="draw-path" id="dp11" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M106.500000,212.500000
C109.500000,213.166672 112.518272,213.766541 115.479095,214.576431
C115.893837,214.689880 116.551086,215.833328 115.500000,216.500000
"/>
<path class="draw-path" id="dp12" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M108.500000,255.500000
C102.256813,255.572968 96.775887,253.749405 92.511932,248.989304
C91.747185,248.135605 90.833023,248.668228 90.000000,248.500000
"/>
<path class="draw-path" id="dp13" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M113.500000,139.000000
C110.425705,141.716064 113.952751,143.992035 113.515640,146.540619
C116.264297,146.315994 116.816078,143.930191 118.144318,142.837952
C125.690567,146.276077 126.199020,147.155762 126.026787,154.500626
C125.934875,158.420380 125.823715,162.075546 128.815750,165.654053
C131.532928,168.903824 131.219147,173.679825 131.028030,178.001236
C130.950058,179.764481 130.127640,180.450623 128.533585,181.084457
C126.763824,181.788132 124.487755,181.868469 123.255623,184.317993
C125.539185,185.872681 128.334869,184.215073 130.670364,185.420731
C131.338135,188.000687 131.352570,190.370712 129.505722,192.504944
C128.040436,194.198242 127.181206,195.986176 129.003098,197.952377
C128.318985,199.290268 127.104652,199.085693 126.001175,198.986847
C117.614960,198.235474 109.627464,200.686996 101.503098,202.018906
C99.991112,202.266785 98.091537,202.759308 98.078369,204.500595
C98.034157,210.342148 95.317131,216.358063 98.974670,222.105484
C104.184921,220.392105 109.342461,218.696045 114.500000,217.000000
"/>
<path class="draw-path" id="dp14" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M113.500000,184.500000
C112.587738,187.125748 109.778442,187.432907 108.000000,189.000000
"/>
<path class="draw-path" id="dp15" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M115.000000,138.000000
C114.472977,136.166672 115.405457,134.426102 115.126892,132.481827
C114.419022,127.541161 116.931480,124.650116 121.994804,123.477577
C123.528351,123.122437 124.999969,122.499916 126.499619,122.000168
C131.669861,125.028854 129.681320,132.564850 135.307266,135.159134
C134.382904,137.022034 132.547195,137.873932 132.959412,140.007843
C133.910873,144.933075 131.944092,148.192764 127.000000,149.500000
"/>
<path class="draw-path" id="dp16" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M116.500000,242.500000
C110.803970,254.134659 104.037010,265.190308 96.810989,275.872131
C92.922310,281.620575 86.673119,285.475769 80.521996,289.037964
C69.931679,295.170990 58.972637,300.818054 50.500000,310.000000
"/>
<path class="draw-path" id="dp17" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M120.000000,242.500000
C119.651314,250.803482 124.156471,256.955139 128.979019,263.016693
C132.090714,266.927826 134.708160,271.268463 138.076233,274.929871
C142.003784,279.199585 141.542419,284.282288 140.815796,288.971466
C139.821625,295.387329 140.665771,301.066833 144.000000,306.500000
"/>
<path class="draw-path" id="dp18" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M122.500000,124.000000
C120.419533,126.838470 121.021851,130.373672 120.103668,133.530151
C119.341705,136.149612 118.018204,137.142456 115.500000,137.000000
"/>
<path class="draw-path" id="dp19" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.000000"
d="
M125.500000,153.000000
C124.003059,154.142197 122.749023,153.132553 121.505638,152.489105
C114.009262,148.609818 105.140694,150.722900 102.274979,158.600037
C99.815453,165.360641 95.897240,171.691879 95.054398,179.006271
C94.871628,180.592422 94.251137,180.002274 93.500000,179.750000
"/>
<path class="draw-path" id="dp20" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M127.500000,121.000000
C130.009277,119.989906 130.110901,117.666557 130.500061,115.500412
C124.501381,114.076073 118.946617,115.452621 113.489922,117.978226
C103.149467,122.764244 103.878891,134.829926 112.000000,140.500000
"/>
<path class="draw-path" id="dp21" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M128.500000,214.000000
C122.386787,210.711792 116.108688,209.512146 109.500000,212.500000
"/>
<path class="draw-path" id="dp22" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M129.500000,191.500000
C124.126480,190.380615 118.827881,191.403748 113.492973,191.928604
C111.864998,192.088760 109.867348,192.829926 108.500000,191.000000
"/>
<path class="draw-path" id="dp23" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M131.000000,222.000000
C125.241013,224.953079 119.330597,227.632050 112.986862,228.936081
C105.607849,230.452881 98.574303,229.457809 92.501442,224.008896
C88.507088,231.383698 89.324280,238.999359 88.909973,246.495026
C88.494141,254.018539 88.728516,261.689056 86.430573,268.978119
C85.259537,272.692596 81.290909,273.962616 78.830566,276.341827
C75.104431,279.945099 70.871346,282.749023 66.917084,285.895813
C60.610279,290.914764 55.456608,297.276154 48.500000,301.500000
"/>
<path class="draw-path" id="dp24" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M131.500000,190.500000
C135.958176,191.026855 140.415359,191.555771 143.342545,196.415741
C138.729904,197.495728 137.708984,203.052902 133.000000,204.000000
"/>
<path class="draw-path" id="dp25" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M133.000000,211.500000
C130.303757,213.659271 130.228729,216.373306 130.957474,219.509872
C132.573471,226.465225 136.239624,232.539062 139.038666,238.983200
C139.329300,239.652328 140.276917,240.028198 140.191589,241.395462
C135.238480,246.513245 128.505798,248.291687 122.000000,250.500000
"/>
<path class="draw-path" id="dp26" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M146.000000,308.500000
C145.865097,320.333771 146.731262,332.181671 145.399384,343.934753
C145.999481,344.334137 146.575226,345.031830 146.988876,344.946228
C155.427689,343.199921 164.227219,343.845093 172.508072,341.023682
C176.422226,339.690033 179.072052,337.595703 178.500000,333.000000
"/>
<path class="draw-path" id="dp27" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M147.500000,331.000000
C154.045227,332.203583 157.722244,328.869904 155.901108,322.528412
C151.941299,308.739685 154.218842,294.866669 154.408157,280.998749
C154.443207,278.432404 154.885544,275.231384 151.958160,273.573883
C151.234299,273.164062 151.466522,272.725616 151.536285,272.511841
C154.165222,264.455780 147.634979,258.889191 145.905701,252.023758
C145.361038,249.861298 143.702194,247.979477 142.400955,245.702698
C138.078583,247.457306 135.350784,251.216507 132.178635,254.190536
C131.104324,255.197739 131.615173,258.522369 133.010193,260.492798
C135.976852,264.683044 138.821182,268.977600 142.039993,272.967743
C147.482132,279.713928 148.850708,287.551331 146.730637,295.427490
C145.569916,299.739655 147.562027,304.021576 145.483627,307.991425
C145.447769,308.059906 145.131760,308.059296 145.007996,307.986420
C144.811356,307.870667 144.666672,307.666656 144.500000,307.500000
"/>
<path class="draw-path" id="dp28" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M173.500000,208.500000
C174.040573,214.375992 179.876678,215.460785 183.001373,219.029053
C183.228928,220.852310 181.670776,223.029556 184.000000,224.500000
"/>
<path class="draw-path" id="dp29" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M177.500000,195.500000
C177.434296,199.890900 178.478882,204.548264 174.500000,208.000000
"/>
<path class="draw-path" id="dp30" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M183.000000,336.000000
C181.932846,332.300995 178.966721,332.008667 176.016754,332.585663
C173.485336,333.080811 170.999161,332.983093 168.500381,332.959534
C166.055832,332.936554 163.968185,332.443085 162.885422,329.542786
C162.078308,327.380737 160.294357,325.290009 157.503738,325.541534
C151.881668,326.048309 149.866379,322.750763 148.968765,318.005920
C148.865936,317.462311 148.333328,317.000000 147.999985,316.500000
"/>
<path class="draw-path" id="dp31" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M183.500000,230.000000
C182.263809,231.081543 180.824142,232.058441 181.006088,233.999435
C181.484283,239.100739 180.011765,244.001190 179.514130,249.001404
C179.010986,254.056900 182.009888,256.913422 186.421753,254.833969
C190.183624,253.060913 191.217590,255.119461 191.922180,257.522827
C193.776825,263.849121 196.563065,269.907196 197.500000,276.500000
"/>
<path class="draw-path" id="dp32" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M186.500000,279.000000
C186.666656,281.500000 186.712723,284.015564 187.032700,286.495789
C187.377319,289.167023 187.936371,290.789642 191.588577,289.204041
C194.258301,288.045013 196.998535,285.254150 200.490051,287.019653
C202.289307,287.929443 203.776642,288.958282 202.538940,291.518829
C199.748260,297.292206 197.311081,303.240173 194.403442,308.950836
C193.629089,310.471710 194.032089,312.177368 193.000000,313.500000
"/>
<path class="draw-path" id="dp33" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M186.500000,235.000000
C184.896408,233.927917 185.345917,231.834564 184.171463,230.363144
C183.377457,229.368332 183.315002,226.478806 185.070206,225.648376
C186.432709,225.003723 188.607224,224.771973 190.001114,226.499100
C194.393997,231.942200 200.954285,233.446014 206.938156,236.137497
C210.075974,237.548859 211.651886,236.380386 213.456894,234.542252
C212.207993,232.119629 209.122513,232.813797 207.500000,231.000000
"/>
<path class="draw-path" id="dp34" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="5.000000"
d="
M191.000000,315.500000
C191.000000,318.500000 190.756729,321.526367 191.078018,324.491547
C191.328735,326.805573 191.747299,328.968964 195.535645,328.168762
C199.300720,327.373535 203.234772,327.921143 202.641113,333.764343
C202.549423,334.667023 204.067963,336.000641 205.491913,336.522064
C207.402481,337.221741 208.385025,338.948303 209.500000,340.500000
"/>
<path class="draw-path" id="dp35" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="5.000000"
d="
M191.500000,330.000000
C187.688065,331.059479 183.763733,332.002716 184.335953,337.903534
C188.074478,342.397308 194.175110,341.228729 199.517059,341.854279
C204.101364,342.391083 208.833328,341.666656 213.500000,341.500000
"/>
<path class="draw-path" id="dp36" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M191.500000,227.000000
C191.833328,227.000000 192.208328,226.898132 192.493896,227.014908
C199.597397,229.920151 207.072617,229.494247 214.500000,229.500000
"/>
<path class="draw-path" id="dp37" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M192.000000,170.500000
C191.722641,178.858551 187.846619,185.150818 181.601471,190.615952
C177.488983,194.214798 172.285568,197.310913 171.824356,203.987869
C171.706192,205.698593 172.098022,206.495804 173.000000,207.500000
"/>
<path class="draw-path" id="dp38" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M194.000000,168.500000
C199.806915,171.142044 202.086868,176.352905 203.433685,182.015778
C204.314789,185.720474 202.536682,187.494247 198.503540,188.026840
C195.948700,188.364212 192.898560,188.547867 192.082642,191.522675
C190.793350,196.223434 187.604523,199.202148 184.026901,202.033981
C183.496078,202.454147 183.325333,203.329239 182.994461,203.981125
C183.806747,206.754715 186.224823,207.432114 188.470734,208.558350
C193.068283,210.863846 197.394394,213.722900 202.036804,215.922302
C205.177216,217.410110 208.888840,217.992401 211.922928,215.888840
C213.991196,214.454880 215.641525,215.390106 217.500000,215.500000
"/>
<path class="draw-path" id="dp39" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="4.000000"
d="
M196.500000,277.000000
C192.000000,279.383484 187.601746,279.211609 182.971115,277.062225
C178.422913,274.951050 174.613831,277.372070 175.651764,281.965698
C177.043747,288.126160 176.768936,294.341553 177.406494,300.509674
C177.826202,304.570282 179.555817,306.833099 183.996750,307.585602
C184.003967,301.556885 185.632187,295.988495 189.000000,291.000000
"/>
<path class="draw-path" id="dp40" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M198.000000,277.500000
C201.617966,282.301819 201.061905,287.153473 197.436600,291.446442
C193.085999,296.598267 191.328262,302.718231 190.144196,309.027069
C189.815063,310.780823 188.337112,314.180115 192.500000,314.500000
"/>
<path class="draw-path" id="dp41" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M199.500000,239.500000
C204.859772,243.612854 207.692795,249.340378 210.142792,255.442673
C210.638474,256.677277 211.287964,257.895874 210.936707,258.979492
C208.489853,266.527832 212.365051,273.092224 214.055252,279.986450
C214.122147,280.259277 215.000000,280.333344 215.500000,280.500000
"/>
<path class="draw-path" id="dp42" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M203.000000,211.500000
C203.606323,208.027222 205.835159,205.237610 207.228027,201.935059
C203.697159,199.607803 201.179565,204.282761 197.088898,202.401810
C205.119980,195.218491 214.424438,192.470810 225.349716,191.546616
C222.931168,182.702209 229.460831,172.682007 220.856888,164.866150
C219.166656,165.499985 217.630371,165.732864 216.544144,166.558121
C214.560074,168.065506 212.897293,171.281693 210.079315,168.905930
C206.357147,165.767838 199.437637,164.806396 201.035446,157.507767
C202.039764,152.920181 198.227264,150.615005 196.362427,147.584656
C191.632019,139.897827 192.917023,135.507080 201.473160,131.935684
C204.589035,130.635101 207.686157,129.987045 211.000015,129.995773
C216.788269,130.011002 219.285202,132.219467 220.000000,138.000000
C220.505875,142.090973 220.657440,142.469910 223.186752,145.741562
C221.956650,147.204239 221.749985,149.103088 222.036301,150.994507
C222.315994,152.842377 224.118454,155.332504 220.976028,155.856140
C218.435059,156.279556 215.199387,158.905975 213.075806,155.453384
C210.856064,151.844437 207.950699,148.712814 208.767883,143.463867
C209.648193,137.809479 213.305969,136.214890 217.500000,134.500000
"/>
<path class="draw-path" id="dp43" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.000000"
d="
M206.500000,228.000000
C196.799149,223.849350 187.578995,218.897598 179.478897,212.024872
C178.248520,210.980927 176.850876,209.754364 175.000000,211.000000
"/>
<path class="draw-path" id="dp44" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M209.000000,284.500000
C209.349503,289.857452 211.035645,295.361786 206.560837,300.057953
C205.438538,301.235809 204.752975,302.992737 203.877518,304.425140
C200.914474,309.273254 199.033432,314.323273 198.405334,319.989502
C198.139709,322.385773 196.833328,324.666656 196.000000,327.000000
"/>
<path class="draw-path" id="dp45" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M210.500000,254.500000
C215.257950,250.851517 221.489197,250.570557 226.803116,247.767105
C225.406754,244.187790 223.294678,241.574295 221.043365,238.962616
C217.727036,235.115463 217.517731,231.371277 220.559357,227.041702
C223.002228,223.564453 223.944489,220.550995 221.627197,216.428497
C219.473434,212.596848 220.877502,208.154144 221.526505,204.004150
C222.005753,200.939667 222.578461,197.921570 221.166458,194.697006
C218.062454,196.062454 216.679169,198.660919 214.984924,200.989029
C212.156418,204.875778 209.449188,208.973450 204.000000,209.500000
"/>
<path class="draw-path" id="dp46" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M216.000000,157.500000
C216.990692,158.853928 219.250656,159.748566 217.096878,162.089157
C216.471024,162.769318 216.792114,164.583206 218.000000,165.500000
"/>
<path class="draw-path" id="dp47" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M216.250000,283.000000
C216.250000,280.161255 216.250000,277.322510 216.250000,274.328552
C218.745224,273.549866 221.269913,274.556091 224.478470,272.917572
C217.951721,269.714966 215.619324,263.055664 209.676102,259.226654
C203.870590,255.486374 198.096298,255.682877 192.000000,255.500000
"/>
<path class="draw-path" id="dp48" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M217.500000,283.500000
C215.220200,282.886871 215.255112,284.607056 215.004913,286.000885
C214.546204,288.556366 213.724182,290.724182 210.500000,290.500000
"/>
<path class="draw-path" id="dp49" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M219.000000,167.500000
C219.600159,168.033249 220.404510,168.636185 219.970581,169.484955
C218.097366,173.148972 211.529984,175.154129 208.029465,172.953140
C205.217102,171.184830 202.809006,168.758469 199.954956,167.076447
C197.672958,165.731552 194.834106,164.179626 193.480331,168.493820
C192.657883,171.114807 189.415756,169.306885 187.814331,171.884659
C184.187897,177.722031 182.577606,184.162094 180.500000,190.500000
"/>
<path class="draw-path" id="dp50" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M236.500000,266.500000
C231.534744,262.413971 228.960480,259.154602 228.458420,251.899124
C231.008011,252.370667 231.868317,253.960358 233.117371,255.925400
C236.601593,261.406830 237.495148,267.851501 240.366959,273.566833
C242.729416,278.268524 238.667297,283.996826 233.500488,283.948395
C229.722382,283.912964 226.137344,284.932312 222.526566,285.636292
C220.548676,286.021942 219.215500,286.113556 218.000000,284.500000
"/>
<path class="draw-path" id="dp51" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M243.000000,280.500000
C248.738434,292.203827 256.243744,294.720093 269.995392,289.487854
C273.274017,288.240326 276.501892,286.896759 279.523773,285.038666
C282.540894,283.183533 285.229248,283.598694 287.000000,287.000000
"/>
<path class="draw-path" id="dp52" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M289.000000,287.000000
C291.948425,283.850647 292.658386,279.509247 294.931702,275.956299
C298.812531,269.891083 301.210663,269.227264 305.913757,274.575836
C309.516785,278.673309 313.857544,281.337280 318.410553,284.145050
C326.089874,288.880829 334.941437,290.054565 343.000000,293.500000
"/>
<path class="draw-path" id="dp53" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M308.500000,278.500000
C305.383759,280.503235 303.405457,283.193542 302.970093,286.996582
C302.635284,289.921478 301.560120,292.270935 298.002777,292.537048
C294.765259,292.779236 293.960297,295.492035 292.983032,297.993378
C291.917358,300.721008 291.129578,304.010284 287.008972,302.964600
C284.586304,302.349792 283.410980,298.168518 285.177429,294.587524
C285.738831,293.449402 285.303711,291.578308 287.000000,291.000000
"/>
<path class="draw-path" id="dp54" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M334.000000,212.000000
C328.733154,211.921982 325.658051,215.478210 324.225433,219.578766
C323.047089,222.951630 325.568451,226.110474 327.893066,229.083603
C332.729279,235.268951 339.988251,235.709320 346.500000,238.000000
"/>
<path class="draw-path" id="dp55" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M336.000000,250.500000
C333.173828,255.763214 334.992920,261.094604 336.673218,265.939941
C338.836609,272.178375 341.235413,278.534119 346.000000,283.500000
"/>
<path class="draw-path" id="dp56" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M338.500000,307.500000
C332.322144,297.835541 323.145782,292.363342 312.486267,289.044128
C310.978119,288.574554 309.388306,289.164001 307.687378,290.198212
C310.471436,292.987640 314.213379,293.566711 317.503113,294.992798
C322.550720,297.181000 326.844666,300.520966 330.956757,304.050385
C333.358459,306.111755 335.406677,308.264008 339.004425,308.093536
C340.955566,308.001068 341.885956,310.054657 343.015808,311.487549
C345.713867,314.909149 348.154877,318.813904 353.500000,318.000000
"/>
<path class="draw-path" id="dp57" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M344.500000,364.500000
C345.032837,362.779785 344.933807,360.985016 346.445068,359.446045
C351.913147,353.877594 352.862885,346.807678 351.937469,339.507935
C350.746704,330.114655 351.426239,321.377930 357.393951,313.420471
C359.564026,310.526886 359.770660,306.813843 358.601288,302.969177
C357.112427,298.073975 356.568146,292.921844 355.117004,287.965759
C354.454041,285.701538 354.380768,283.436615 358.469360,282.802521
C366.711761,281.524261 366.785706,280.982300 370.461060,288.020325
C374.568268,295.885406 379.369598,303.264343 384.405914,310.564911
C390.182800,318.939026 397.585846,320.789856 407.029907,318.630737
C410.694458,317.792908 414.088013,315.933777 418.000275,315.960358
C424.352936,316.003510 425.542938,316.985046 428.050354,322.978943
C432.516998,333.656189 434.431458,345.074799 438.055420,355.981598
C439.646240,360.769379 440.785248,366.182556 447.000000,367.500000
"/>
<path class="draw-path" id="dp58" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M345.500000,283.500000
C343.555786,283.857330 341.745239,285.225800 342.629578,286.932861
C344.768555,291.061737 342.709991,295.363068 343.857544,299.539154
C344.672058,302.503113 344.244904,305.850708 342.000000,308.500000
"/>
<path class="draw-path" id="dp59" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M346.500000,182.000000
C339.631531,183.648392 335.646698,187.344452 334.748199,194.970337
C334.228302,199.382935 331.326080,203.528320 328.043518,207.040680
C325.164612,210.121124 322.592499,213.418442 320.912903,217.463837
C318.749512,222.674438 320.519012,226.221130 325.500000,227.000000
"/>
<path class="draw-path" id="dp60" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M347.000000,241.000000
C342.645782,240.494400 338.738617,242.689651 334.509613,243.099152
C332.376221,243.305725 330.267548,244.627014 328.522217,242.481918
C326.982483,240.589554 328.543579,238.792664 329.025940,237.007004
C329.395599,235.638474 330.000000,234.333328 330.500000,233.000000
"/>
<path class="draw-path" id="dp61" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M347.500000,238.500000
C349.238251,241.502228 347.165039,242.917236 344.977936,243.953461
C342.205414,245.267059 339.184692,246.110382 337.500000,249.000000
"/>
<path class="draw-path" id="dp62" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M354.000000,173.000000
C348.530151,171.216721 344.833771,174.556839 340.945923,177.409943
C341.698181,181.694824 345.807617,179.813110 348.142548,181.271820
C353.757599,184.779739 355.222778,187.701599 351.454193,192.967224
C347.324097,198.738007 342.748230,204.176285 337.498840,208.998734
C333.737946,212.453735 333.434235,215.060730 336.508820,218.993118
C342.293365,226.391510 350.460693,230.003632 359.000000,233.000000
"/>
<path class="draw-path" id="dp63" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M359.500000,234.000000
C359.567596,237.572083 355.422394,238.135056 354.500000,241.000000
"/>
<path class="draw-path" id="dp64" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M362.000000,256.500000
C363.915466,250.209122 362.791595,248.211136 357.380554,248.506516
C356.489532,250.723969 356.864929,252.801620 358.526917,254.473251
C360.434998,256.392426 361.471344,259.156219 363.184967,260.808105
C366.627716,264.126831 366.152344,268.221863 366.859375,272.026123
C367.268188,274.225586 366.930573,276.987885 363.504639,277.529327
C357.488159,278.480286 351.865326,280.646210 346.500000,283.500000
"/>
<path class="draw-path" id="dp65" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.000000"
d="
M362.000000,261.500000
C361.017426,266.591492 362.433899,271.168915 365.000000,275.500000
"/>
<path class="draw-path" id="dp66" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M363.500000,168.500000
C366.088898,172.444443 368.865936,176.544571 370.652466,180.651199
C373.139679,186.368576 373.578339,193.000320 375.782715,199.078796
C376.555725,201.210342 373.674561,203.566711 371.977020,205.479614
C370.090515,207.605423 367.888306,209.421417 366.467041,211.981705
C364.936981,214.738037 364.560059,217.466461 365.463348,220.510880
C366.253571,223.174210 366.735748,225.931396 365.000000,228.500000
"/>
<path class="draw-path" id="dp67" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M363.500000,144.000000
C359.473877,145.768463 355.321289,147.237915 352.471497,150.978287
C347.980469,156.872757 347.817841,159.080948 352.000000,164.500000
"/>
<path class="draw-path" id="dp68" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M364.000000,363.000000
C363.089203,357.197144 359.005981,355.236176 354.513092,358.517944
C352.384949,360.072418 350.411285,362.013458 348.000000,359.000000
"/>
<path class="draw-path" id="dp69" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M365.000000,136.500000
C360.309723,133.223557 355.911926,129.554779 349.396210,132.791046
C347.868805,133.549698 346.996948,134.508377 346.031433,135.529724
C342.599976,139.159515 338.627777,141.103058 333.493927,140.557022
C331.698639,140.366089 329.812714,140.712708 328.003754,141.022049
C321.951996,142.056915 319.702545,145.713852 321.515808,151.495041
C321.849121,152.557709 322.339905,153.545151 322.919769,154.546463
C324.900513,157.966965 324.257172,161.066833 321.003510,163.504684
C319.483002,164.643967 317.887970,165.716537 316.523804,167.024841
C313.857086,169.582413 313.715607,173.021683 316.000000,175.500015
C318.386841,178.089478 323.060486,178.992859 325.452148,176.944153
C327.676239,175.039047 329.652832,172.786224 331.463867,170.471710
C334.119537,167.077698 337.875885,166.094528 341.445923,167.178177
C345.387604,168.374649 348.328827,167.081009 351.500000,165.500000
"/>
<path class="draw-path" id="dp70" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M365.500000,243.000000
C361.042511,245.922272 357.784698,241.946335 353.794220,241.062347
C351.408295,244.166672 354.832581,247.308685 354.050323,250.512283
C353.743073,251.770584 354.225525,253.214005 353.957458,254.491074
C353.173492,258.226013 351.484924,258.975525 348.026764,256.954224
C345.882538,255.700943 343.955750,254.054886 342.010468,252.487015
C339.161163,250.190521 335.939667,248.692230 332.515991,247.455750
C329.734955,246.451416 327.252411,247.159332 325.610291,249.093628
C324.224396,250.726059 323.308563,253.055725 324.486542,255.506454
C327.361115,261.486633 330.304932,267.442169 332.863068,273.557281
C333.286407,274.569275 334.009644,275.677856 334.038330,276.999176
C334.152191,282.239075 336.754456,285.505035 342.000000,286.500000
"/>
<path class="draw-path" id="dp71" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M367.000000,236.500000
C368.178223,237.907578 369.530731,238.918152 370.963348,236.972992
C372.078979,235.458191 371.620026,233.512115 369.976501,233.091873
C362.644257,231.216919 358.865417,223.985245 352.003479,221.490463
C350.049011,220.779892 348.343109,219.127548 345.742950,219.663040
C346.932159,224.686646 351.704224,225.327911 354.636688,227.840454
C356.142944,229.131027 357.866974,229.966354 358.500000,232.000000
"/>
<path class="draw-path" id="dp72" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M375.500000,368.500000
C372.850830,364.507690 370.036682,360.757324 364.500000,361.000000
"/>
<path class="draw-path" id="dp73" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M376.500000,300.500000
C375.690216,302.496826 376.306458,305.517517 372.755402,305.647369
C372.589020,305.653442 371.141998,306.641541 370.937927,307.990601
C369.249298,319.153564 365.699432,329.788269 360.915985,339.960510
C358.889709,344.269440 359.444550,348.322601 360.560760,352.483704
C361.008453,354.152679 361.955261,355.675629 361.500000,357.500000
"/>
<path class="draw-path" id="dp74" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="5.000000"
d="
M377.000000,368.750000
C369.956757,372.980225 362.346466,370.157135 354.997375,370.428772
C352.180206,370.532928 349.333344,369.833313 346.500000,369.500000
"/>
<path class="draw-path" id="dp75" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M449.500000,353.000000
C447.484497,351.162933 445.648712,352.010620 444.019501,353.521027
C442.287750,355.126495 442.493256,357.245972 443.550659,358.968903
C446.445435,363.685516 448.153198,369.025818 451.476898,373.517090
C455.089355,378.398712 461.515930,381.275909 466.500000,380.000000
"/>
<path class="draw-path" id="dp76" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M456.500000,351.000000
C457.166656,351.500000 457.764496,352.259460 458.511261,352.457581
C463.137573,353.685150 463.567657,356.458740 462.051483,360.519226
C459.768341,366.633545 459.253967,372.458527 465.971344,376.547089
C467.821808,377.673340 468.375061,380.863007 471.500000,380.000000
"/>
<path class="draw-path" id="dp77" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M490.000000,284.500000
C487.663177,287.681885 488.524841,291.519318 488.141083,295.015472
C487.627991,299.690491 486.063812,303.549164 482.484863,306.481537
C474.695618,312.863525 469.462372,321.277008 464.067474,329.544037
C463.192352,330.885040 462.493774,332.665436 463.000000,334.500000
"/>
<path class="draw-path" id="dp78" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M493.000000,277.000000
C495.427368,275.638794 497.875580,276.815155 499.399567,278.117523
C502.993713,281.189056 507.088165,282.907562 511.514557,283.937500
C513.929871,284.499512 515.071472,286.023743 516.104736,288.223450
C513.469788,292.650391 510.232727,296.767334 506.494720,300.494720
C503.848389,303.133545 501.879608,305.947418 502.969971,310.008057
C503.479523,311.905701 502.561401,313.770844 500.966248,314.416656
C495.678558,316.557617 492.638672,321.671234 487.522583,324.048584
C480.062561,327.515167 476.483765,334.776276 472.157471,341.107605
C470.666595,343.289490 468.942749,345.304077 467.399811,347.427185
C466.266907,348.986023 464.122742,349.928619 462.011047,349.451111
C459.616241,348.909576 460.048981,346.803619 459.953186,345.002502
C459.925690,344.486237 459.333344,344.000000 459.000000,343.500000
"/>
<path class="draw-path" id="dp79" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M507.000000,332.000000
C506.346863,334.166656 505.853607,336.059082 506.780457,338.580688
C507.628967,340.889160 507.897156,343.664215 507.737518,346.513306
C507.415009,352.267883 510.190582,357.036041 515.487793,360.021606
C517.689270,361.262421 519.657715,361.559021 521.500000,359.500000
"/>
<path class="draw-path" id="dp80" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M509.000000,332.000000
C510.615417,334.939819 513.536011,336.500458 516.035828,338.454193
C518.663086,340.507568 520.984131,342.297058 518.577637,346.049805
C518.047546,346.876495 518.334412,348.362122 518.531128,349.494598
C519.115540,352.858856 521.913574,355.252899 522.368164,358.954803
C522.548157,360.420685 526.233643,362.161469 529.501526,362.120270
C548.831726,361.876343 568.166687,362.000000 587.500000,362.000000
"/>
<path class="draw-path" id="dp81" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M513.000000,329.000000
C514.833313,330.166687 516.555054,331.589600 518.523193,332.446716
C522.639465,334.239380 522.951843,336.962952 521.000000,340.500000
"/>
<path class="draw-path" id="dp82" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M525.000000,171.500015
C525.500793,172.166077 526.001526,172.832138 526.687866,173.744995
C520.677124,175.646698 520.365112,181.398178 518.563660,186.024780
C514.621155,196.150238 510.719727,206.337906 510.999603,217.500015
C511.046844,219.385834 511.696838,221.280396 511.806427,223.012253
C512.103699,227.710419 515.382568,227.690002 517.951233,226.850800
C523.778442,224.947021 529.649048,225.565857 535.500000,225.566330
C541.011963,225.566788 546.486816,225.476044 551.474670,222.949966
C556.646606,220.330597 562.510681,219.513397 568.204956,216.846771
C564.684631,215.216965 570.624512,207.199081 562.500000,210.000000
"/>
<path class="draw-path" id="dp83" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M526.500000,252.000000
C520.621948,254.652756 515.533752,252.322723 510.493835,249.511047
C507.694855,247.949524 504.955811,246.162842 501.971436,245.078629
C497.446686,243.434845 493.890381,246.093842 494.049408,250.998398
C494.378601,261.153015 493.586029,271.156372 491.026672,281.006927
C490.823853,281.787567 490.744537,282.772369 491.038971,283.483856
C494.494110,291.832794 491.651367,299.903870 489.968872,307.993530
C488.579102,314.675751 483.015625,318.274658 478.439697,322.433655
C473.710663,326.731781 468.356750,330.336639 463.547272,334.553925
C459.967316,337.693146 459.466248,342.851471 456.541046,346.532623
C455.360809,348.017853 454.934296,349.874878 453.057068,351.088287
C448.419586,354.085938 448.608459,356.927277 453.532257,359.947388
C455.673401,361.260742 458.166656,362.000000 460.500000,363.000000
"/>
<path class="draw-path" id="dp84" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M527.000000,173.500000
C531.010315,171.430328 532.081238,175.754013 534.416992,177.139877
C535.681030,177.889847 536.309204,179.740173 537.981079,180.539612
C544.586670,183.698044 546.460266,186.885056 545.974182,193.998230
C545.802551,196.509277 544.783264,199.072845 545.102905,201.486374
C546.071594,208.801834 539.675537,210.657166 535.899353,214.398407
C535.477234,214.816620 533.666687,213.833328 532.500000,213.500000
"/>
<path class="draw-path" id="dp85" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M527.500000,261.000000
C525.396118,267.417877 521.865479,273.293335 520.460938,279.991821
C519.599731,284.098724 519.829407,284.595947 523.990051,283.463501
C533.495239,280.876495 542.739685,285.158813 549.665649,293.704407
C548.185974,295.914673 546.028992,297.152740 543.506409,298.018677
C536.692993,300.357544 531.663818,304.317383 528.829163,311.431915
C526.697998,316.780701 522.949585,321.421570 517.014038,323.539307
C515.915955,323.931030 514.845154,324.682404 514.024719,325.524078
C507.945099,331.761383 507.965973,331.781738 500.097748,327.796234
C496.726105,335.713318 501.585541,340.788666 506.000000,346.000000
"/>
<path class="draw-path" id="dp86" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M531.000000,253.000000
C536.171997,256.401520 541.181091,259.867493 548.014709,259.137512
C551.108643,258.807037 553.375366,261.854553 554.877930,264.082336
C561.494019,273.891632 567.700378,283.979004 573.955688,294.027588
C574.705444,295.231995 574.655151,296.592407 573.558594,298.044250
C570.210815,302.476624 567.681396,307.253052 561.576050,309.234406
C557.023499,310.711792 553.440186,315.000397 548.937134,316.846741
C541.840210,319.756592 534.333313,321.666687 527.000000,324.000031
"/>
<path class="draw-path" id="dp87" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M531.000000,243.000000
C536.832825,247.113342 540.048706,253.590408 545.000000,258.500000
"/>
<path class="draw-path" id="dp88" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M535.500000,179.500000
C531.429443,180.244110 528.893005,183.916885 524.772583,185.242798
C522.620117,181.833328 525.865601,178.666672 525.000000,175.500000
"/>
<path class="draw-path" id="dp89" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M537.000000,156.500000
C534.666687,157.500000 532.333313,158.500000 530.000000,159.500000
"/>
<path class="draw-path" id="dp90" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M538.000000,217.000000
C536.732178,222.106750 537.056580,226.984879 538.842957,232.055328
C539.955750,235.213913 538.926575,239.215103 536.342773,241.305679
C534.430359,242.853043 531.376160,242.896042 528.404175,241.164520
C525.159180,239.274002 521.166687,238.666672 517.500000,237.500015
"/>
<path class="draw-path" id="dp91" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M538.500000,181.500000
C538.456299,189.631226 535.138245,196.275650 529.560242,202.058090
C527.998535,203.677048 526.924622,205.901703 526.062317,208.025299
C525.022888,210.585129 523.659607,213.576416 526.070435,215.927765
C528.236084,218.039993 531.000000,217.385773 533.500000,216.000000
"/>
<path class="draw-path" id="dp92" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.000000"
d="
M541.500000,131.000000
C538.722412,129.885696 535.817810,130.495575 533.002197,130.576859
C529.772095,130.670090 527.336670,132.725494 526.065552,135.529709
C523.694885,140.759521 522.326294,146.166672 526.000000,151.500000
"/>
<path class="draw-path" id="dp93" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M542.500000,133.000000
C540.887512,134.547836 538.771118,133.530777 537.017517,134.058304
C531.423340,135.741180 528.776611,140.187744 528.125061,145.515289
C527.604065,149.775467 526.971802,154.169159 528.458923,158.514069
C530.368591,164.093658 528.068542,168.460938 523.031250,171.060516
C513.423584,176.018646 504.024017,181.378265 494.487640,186.476852
C490.892365,188.399048 490.469116,191.248810 492.046783,194.477142
C494.212402,198.908478 497.422974,202.786865 501.085266,205.899689
C509.884308,213.378555 509.131165,215.013412 505.422913,224.971298
C502.466492,232.910248 503.491547,239.072556 509.477020,244.525238
C511.095154,245.999298 512.986816,246.497925 514.991211,247.032913
C518.980957,248.097809 523.407715,247.859238 526.609985,251.400558
C527.367676,252.238464 530.064392,252.535248 530.893982,251.868164
C533.366394,249.880264 535.664856,251.641678 538.000000,251.500000
"/>
<path class="draw-path" id="dp94" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M542.500000,273.000000
C541.509766,279.372498 546.618042,285.730499 554.496460,288.012177
C556.875977,288.701324 559.264893,289.155151 561.558838,290.390808
C564.986694,292.237274 566.823486,294.840729 567.500000,298.500000
"/>
<path class="draw-path" id="dp95" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M544.500000,162.500000
C545.583740,167.663864 544.979797,172.536743 542.071960,177.104767
C539.377808,176.679291 537.557068,174.888351 535.480713,173.529510
C534.082031,172.614197 532.500000,171.688904 531.000000,173.500000
"/>
<path class="draw-path" id="dp96" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M546.500000,260.000000
C548.871826,265.655365 546.949890,269.601013 541.023071,272.055756
C538.131287,273.253479 536.029114,275.792297 533.035583,277.082581
C527.124329,279.630463 525.605286,279.114960 524.000000,273.000000
"/>
<path class="draw-path" id="dp97" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M551.000000,135.000000
C552.833008,138.439484 556.539124,141.105301 554.164551,146.078583
C553.150208,148.203140 556.709839,149.427048 557.641907,151.871353
C555.122620,154.029160 553.232422,156.693436 553.967712,160.506226
C554.472168,163.121826 551.994751,164.557343 550.526306,164.330063
C544.495972,163.396698 538.500610,164.133926 532.502197,163.934708
C531.653198,163.906525 530.833313,163.000015 530.000000,162.500015
"/>
<path class="draw-path" id="dp98" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M555.500000,132.000000
C550.921021,132.741882 548.015137,135.454697 547.010864,140.002396
C546.679382,141.502914 547.331238,143.009781 546.120850,144.592422
C545.112610,145.910873 543.322205,146.658310 543.290894,148.477020
C541.860535,148.585083 540.979553,148.086273 539.965454,147.567490
C536.971802,146.035965 535.548035,148.008469 536.132812,150.468430
C537.006714,154.144882 537.205688,158.568863 541.988403,160.037766
C542.737976,160.267975 543.333313,161.000000 544.000000,161.500000
"/>
<path class="draw-path" id="dp99" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.000000"
d="
M556.500000,310.000000
C549.659363,307.604095 543.306641,307.269348 537.961182,313.466522
C534.033508,318.019928 528.557556,320.882996 524.768616,325.822510
C522.988281,328.143433 522.705994,331.120544 520.500000,333.000000
"/>
<path class="draw-path" id="dp100" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M561.500000,206.000000
C563.625488,204.970612 565.309692,205.412079 566.500000,207.500000
"/>
<path class="draw-path" id="dp101" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M563.500000,205.000000
C564.035706,203.263092 564.630920,201.520233 562.892273,199.729538
C559.665161,201.891113 558.708984,205.462738 557.002258,208.501282
C553.869690,214.078461 543.596252,218.042801 537.510803,215.968353
C537.259644,215.882767 537.166687,215.333344 537.000000,215.000000
"/>
<path class="draw-path" id="dp102" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.000000"
d="
M655.000000,269.000000
C649.734924,272.444397 648.178711,277.551361 647.978760,283.619690
C653.148010,282.432678 653.847046,281.696869 658.000000,273.500000
"/>
<path class="draw-path" id="dp103" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.000000"
d="
M663.000000,272.000000
C659.403381,268.999695 658.986450,264.337585 657.083618,260.458954
C656.740906,259.760406 656.431152,258.320618 657.506836,257.509064
C658.643005,256.651886 659.766113,256.809326 661.013428,257.474823
C663.971680,259.053131 666.943726,260.628632 670.012512,261.971405
C675.297485,264.283936 678.460754,262.948212 679.945740,257.485260
C681.627686,251.297928 681.523376,244.846222 681.940247,238.496078
C682.245300,233.849426 681.975830,229.166489 682.009949,224.500076
C682.027405,222.104980 681.993103,219.758545 679.998901,218.000336
C668.282104,221.521103 665.798462,228.781876 666.463989,240.002136
C666.690979,243.829254 666.500000,247.681152 666.500000,251.778687
C661.608276,250.362518 662.336670,246.268646 662.171448,243.489807
C661.705566,235.654053 662.173828,227.969254 666.769958,220.851440
C668.280884,218.511475 670.159668,217.483734 672.009888,216.012421
C673.965820,214.457031 676.000000,212.999985 678.000000,211.499985
"/>
<path class="draw-path" id="dp104" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.000000"
d="
M664.000000,368.000000
C659.988892,368.366608 656.548645,366.782837 653.533142,364.457001
C649.142639,361.070496 644.664185,361.490356 640.004944,363.511414
C638.639404,364.103790 637.307068,364.785980 636.004333,365.507751
C628.250427,369.803162 620.159485,370.299347 612.578674,365.865448
C606.032898,362.036804 600.166687,363.163757 594.000000,366.000000
"/>
<path class="draw-path" id="dp105" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M666.500000,369.500000
C670.101990,366.967163 675.696106,367.049072 676.871399,360.772919
C674.429932,356.546844 670.282532,355.035126 664.973083,356.097046
C663.616211,360.959595 663.243835,365.729279 666.960999,370.033661
C668.052612,371.297729 669.418152,371.307526 670.472839,370.925079
C674.103088,369.608368 677.816101,370.143768 681.500000,370.000000
"/>
<path class="draw-path" id="dp106" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M670.000000,282.500000
C666.282776,287.093262 667.395813,292.728912 668.232300,297.458923
C671.153442,313.977020 670.495544,330.213776 667.089355,346.518646
C666.508423,349.299347 666.521912,352.427490 668.500000,355.000000
"/>
<path class="draw-path" id="dp107" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.000000"
d="
M678.500000,210.500000
C678.766174,209.347549 677.806641,207.862244 679.022461,207.032928
C682.606873,204.588028 684.990601,200.989410 688.018677,198.019028
C690.777344,195.312897 692.299561,195.902328 693.543335,199.484955
C695.762085,205.876160 694.157898,211.959335 691.377380,217.437790
C685.212952,229.584000 684.860840,241.870026 689.036133,254.488052
C691.640503,262.358856 689.893982,269.365112 683.361206,273.795288
C677.047729,278.076660 669.806274,277.809113 663.481384,272.522247
C663.465271,272.508789 663.166626,272.833313 663.000000,273.000000
C663.584656,276.317963 668.405762,281.422699 671.500000,282.000031
C682.506714,284.053711 684.434937,287.558533 681.037842,298.511749
C678.726074,305.965607 675.291809,313.086761 674.475830,320.997498
C673.647278,329.030548 675.653442,336.726166 677.045044,344.491913
C677.413025,346.545471 678.333313,348.500031 678.999939,350.500031
"/>
<path class="draw-path" id="dp108" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.000000"
d="
M679.000000,354.500000
C679.646667,359.129822 684.214050,360.664368 686.500000,364.000000
"/>
<path class="draw-path" id="dp109" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.000000"
d="
M682.500000,207.500000
C683.087708,210.546738 680.474609,210.699341 679.029236,210.371124
C675.227051,209.507690 672.295776,211.434448 668.964722,212.375122
C664.430054,213.655716 659.647766,214.059372 654.951111,214.842484
C657.223877,220.613083 662.609741,218.145523 666.500000,219.500000
"/>
<path class="draw-path" id="dp110" fill="none" opacity="1" stroke="rgba(255,255,255,0.82)" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.000000"
d="
M685.000000,340.500000
C686.319214,341.780914 686.322876,343.530273 685.934875,344.982605