-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
executable file
·1200 lines (1168 loc) · 265 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>Flat Design Character Maker</title>
<meta charset="utf-8">
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1">
<meta name="description" content="Just a simple flat design vector based character designer.">
<meta name="author" content="Michael Schwartz">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="apple-touch-icon" href="logo.png">
<link rel="icon" type="image/vnd.microsoft.icon" href="favicon.ico">
<link rel="SHORTCUT ICON" href="favicon.ico">
<link rel="stylesheet" href="libraries/normalize/normalize.css" />
<link rel="stylesheet" href="libraries/jqwidgets/styles/jqx.base.css">
<link rel="stylesheet" href="libraries/jqwidgets/styles/jqx.android.css">
<link rel="stylesheet" href="libraries/jqwidgets/styles/jqx.arctic.css">
<link rel="stylesheet" href="libraries/jqwidgets/styles/jqx.black.css">
<link rel="stylesheet" href="libraries/jqwidgets/styles/jqx.blackberry.css">
<link rel="stylesheet" href="libraries/jqwidgets/styles/jqx.bootstrap.css">
<link rel="stylesheet" href="libraries/jqwidgets/styles/jqx.classic.css">
<link rel="stylesheet" href="libraries/jqwidgets/styles/jqx.darkblue.css">
<link rel="stylesheet" href="libraries/jqwidgets/styles/jqx.energyblue.css">
<link rel="stylesheet" href="libraries/jqwidgets/styles/jqx.fresh.css">
<link rel="stylesheet" href="libraries/jqwidgets/styles/jqx.highcontrast.css">
<link rel="stylesheet" href="libraries/jqwidgets/styles/jqx.metro.css">
<link rel="stylesheet" href="libraries/jqwidgets/styles/jqx.metrodark.css">
<link rel="stylesheet" href="libraries/jqwidgets/styles/jqx.mobile.css">
<link rel="stylesheet" href="libraries/jqwidgets/styles/jqx.office.css">
<link rel="stylesheet" href="libraries/jqwidgets/styles/jqx.orange.css">
<link rel="stylesheet" href="libraries/jqwidgets/styles/jqx.shinyblack.css">
<link rel="stylesheet" href="libraries/jqwidgets/styles/jqx.summer.css">
<link rel="stylesheet" href="libraries/jqwidgets/styles/jqx.ui-darkness.css">
<link rel="stylesheet" href="libraries/jqwidgets/styles/jqx.ui-le-frog.css">
<link rel="stylesheet" href="libraries/jqwidgets/styles/jqx.ui-lightness.css">
<link rel="stylesheet" href="libraries/jqwidgets/styles/jqx.ui-overcast.css">
<link rel="stylesheet" href="libraries/jqwidgets/styles/jqx.ui-redmond.css">
<link rel="stylesheet" href="libraries/jqwidgets/styles/jqx.ui-smoothness.css">
<link rel="stylesheet" href="libraries/jqwidgets/styles/jqx.ui-start.css">
<link rel="stylesheet" href="libraries/jqwidgets/styles/jqx.ui-sunny.css">
<link rel="stylesheet" href="libraries/jqwidgets/styles/jqx.web.css">
<link rel="stylesheet" href="libraries/jqwidgets/styles/jqx.windowsphone.css">
<link rel="stylesheet" href="libraries/font-awesome/font-awesome.css" />
<link rel="stylesheet" href="libraries/font-awesome/macset.css" />
<link rel="stylesheet" href="libraries/jqueryminicolors/jquery.minicolors.css" />
<link rel="stylesheet" href="css/index.css" />
<script src="libraries/jquery/jquery.js"></script>
<script src="libraries/jquery/jquery-migrate-1.2.1.min.js"></script>
<script src="libraries/jqueryminicolors/jquery.minicolors.js"></script>
<script src="libraries/sweetalert2/sweetalert2.min.js"></script>
<script src="libraries/FileSaver/FileSaver.js"></script>
<script src="libraries/FileSaver/Blob.js"></script>
<script src="libraries/jqwidgets/jqxcore.js"></script>
<script src="libraries/jqwidgets/jqxsplitter.js"></script>
<script src="libraries/saveSvgAsPng/saveSvgAsPng.js"></script>
<script src="libraries/tinycolor/tinycolor.js"></script>
<script src="js/moveit.js"></script>
</head>
<body>
<!-- splitter container -->
<div id="mainSplitter">
<!-- displays character result -->
<div class="splitter-panel viewer background">
<?xml version="1.0" standalone="no"?>
<!-- Generator: Gravit.io -->
<svg id="character" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 500 912" width="500" height="912" preserveAspectRatio="xMidYMin">
<g id="body">
<g id="arms">
<path d=" M 352.657 274.503 L 352.784 274.503 C 368.697 274.503 381.616 287.422 381.616 303.335 L 381.616 655.62 C 381.616 671.532 368.697 684.451 352.784 684.451 L 352.657 684.451 C 336.744 684.451 323.825 671.532 323.825 655.62 L 323.825 303.335 C 323.825 287.422 336.744 274.503 352.657 274.503 Z M 163.033 274.503 L 163.16 274.503 C 179.073 274.503 191.992 287.422 191.992 303.335 L 191.992 655.62 C 191.992 671.532 179.073 684.451 163.16 684.451 L 163.033 684.451 C 147.121 684.451 134.202 671.532 134.202 655.62 L 134.202 303.335 C 134.202 287.422 147.121 274.503 163.033 274.503 Z " fill-rule="evenodd" fill="rgb(252,194,151)" />
</g>
<g id="shirt">
<path d=" M 334.315 281.125 C 339.288 276.983 345.685 274.503 352.657 274.503 L 352.784 274.503 C 368.697 274.503 381.616 287.422 381.616 303.335 L 381.616 398 L 350.915 398 L 350.915 491.216 L 164.903 491.216 L 164.903 398 L 134.202 398 L 134.202 303.335 C 134.202 287.422 147.121 274.503 163.033 274.503 L 163.16 274.503 C 170.132 274.503 176.529 276.983 181.502 281.125 C 190.055 273.63 201.256 269.085 213.511 269.085 L 302.306 269.085 C 314.561 269.085 325.762 273.63 334.315 281.125 Z " fill="rgb(244,0,75)" />
</g>
<g id="pants">
<path d=" M 237.14 912 L 164.903 912 L 164.903 491.216 L 350.915 491.216 L 350.915 912 L 276.871 912 L 276.871 567.065 L 237.14 567.065 L 237.14 912 Z " fill="rgb(13,45,60)" />
</g>
</g>
<g id="shoes">
<path d=" M 390.645 912 C 390.645 889.075 370.01 870.463 344.594 870.463 C 319.177 870.463 298.542 889.075 298.542 912 L 390.645 912 Z M 217.275 912 C 217.275 889.075 196.64 870.463 171.223 870.463 C 145.807 870.463 125.172 889.075 125.172 912 L 217.275 912 Z " fill-rule="evenodd" fill="rgb(244,0,75)" />
</g>
<g id="head">
<g id="ears">
<path d=" M 309.02 176.383 C 309.02 166.397 317.127 158.29 327.112 158.29 C 337.098 158.29 345.205 166.397 345.205 176.383 C 345.205 186.368 337.098 194.475 327.112 194.475 C 317.127 194.475 309.02 186.368 309.02 176.383 Z M 170.612 176.383 C 170.612 166.397 178.719 158.29 188.705 158.29 C 198.69 158.29 206.797 166.397 206.797 176.383 C 206.797 186.368 198.69 194.475 188.705 194.475 C 178.719 194.475 170.612 186.368 170.612 176.383 Z " fill-rule="evenodd" fill="rgb(246,145,120)" />
</g>
<g id="hair">
<path d=" M 296.233 91.348 C 299.463 85.435 301.299 78.653 301.299 71.446 C 301.299 48.48 282.653 29.834 259.686 29.834 L 198.172 29.834 C 175.205 29.834 156.559 48.48 156.559 71.446 C 156.559 86.489 164.558 99.678 176.524 106.998 C 168.6 115.124 163.796 125.8 163.796 137.484 C 163.796 162.947 186.611 183.62 214.714 183.62 L 308.34 183.62 C 336.443 183.62 359.258 162.947 359.258 137.484 C 359.258 112.021 336.443 91.348 308.34 91.348 L 296.233 91.348 Z " fill="rgb(16,45,60)" />
</g>
<g id="neck">
<path d="M 257.909 241.516 L 257.909 241.516 C 279.377 241.516 296.807 258.946 296.807 280.415 L 296.807 303.935 C 296.807 325.404 279.377 342.834 257.909 342.834 L 257.909 342.834 C 236.44 342.834 219.01 325.404 219.01 303.935 L 219.01 280.415 C 219.01 258.946 236.44 241.516 257.909 241.516 Z" fill="rgb(250, 146, 120)" />
</g>
<g id="face">
<path d="M 193.98 91.348 L 319.751 91.348 C 325.562 91.348 330.279 96.065 330.279 101.875 L 330.279 227.042 C 330.279 266.984 297.851 299.412 257.909 299.412 L 257.909 299.412 C 217.967 299.412 185.539 266.984 185.539 227.042 L 185.539 99.79 C 185.539 95.131 189.321 91.348 193.98 91.348 Z" fill="rgb(252, 192, 146)" />
</g>
<g id="mouth">
<path d=" M 301.031 243.325 C 302.978 238.307 304.044 232.863 304.044 227.175 L 211.773 227.175 C 211.773 232.863 212.839 238.307 214.787 243.325 L 301.031 243.325 Z " fill="rgb(252,254,253)" />
<path d=" M 301.031 243.325 C 294.406 260.399 277.588 272.54 257.909 272.54 C 238.23 272.54 221.412 260.399 214.787 243.325 L 301.031 243.325 Z " fill="rgb(180,1,54)" />
</g>
<g id="facial-hair">
<path d=" M 257.266 214.774 C 262.369 214.772 267.456 211.58 267.456 211.834 C 267.456 233.634 247.209 249.834 225.409 249.834 C 213.092 249.834 198.632 234.699 191.409 225.834 C 211.7 225.383 235.693 226.892 247.204 211.834 C 248.243 211.948 252.761 214.776 257.266 214.774 Z " fill="rgba(255,255,255,0)"/><path d=" M 257.393 214.774 C 252.29 214.772 247.204 211.58 247.204 211.834 C 247.204 233.634 267.45 249.834 289.251 249.834 C 301.567 249.834 316.027 234.699 323.251 225.834 C 302.959 225.383 278.966 226.892 267.456 211.834 C 266.416 211.948 261.898 214.776 257.393 214.774 Z " fill="rgba(255,255,255,0)"/>
</g>
<g id="nose">
<path d=" M 242.533 200.641 C 242.53 200.693 242.53 200.746 242.53 200.798 C 242.53 209.286 249.421 216.177 257.909 216.177 C 266.396 216.177 273.287 209.286 273.287 200.798 C 273.287 200.746 273.287 200.693 273.285 200.641 C 270.561 207.907 264.697 212.939 257.909 212.939 C 251.121 212.939 245.257 207.907 242.533 200.641 Z " fill="rgb(248,146,113)" />
</g>
<g id="eyes">
<path d=" M 278.715 178.192 C 278.715 168.206 286.822 160.099 296.807 160.099 C 306.793 160.099 314.9 168.206 314.9 178.192 C 314.9 188.177 306.793 196.284 296.807 196.284 C 286.822 196.284 278.715 188.177 278.715 178.192 Z M 200.917 178.192 C 200.917 168.206 209.024 160.099 219.01 160.099 C 228.995 160.099 237.102 168.206 237.102 178.192 C 237.102 188.177 228.995 196.284 219.01 196.284 C 209.024 196.284 200.917 188.177 200.917 178.192 Z " fill-rule="evenodd" fill="rgb(252,254,253)" />
<path d=" M 293.189 178.192 C 293.189 176.195 294.81 174.573 296.807 174.573 C 298.805 174.573 300.426 176.195 300.426 178.192 C 300.426 180.189 298.805 181.81 296.807 181.81 C 294.81 181.81 293.189 180.189 293.189 178.192 Z M 215.391 178.192 C 215.391 176.195 217.013 174.573 219.01 174.573 C 221.007 174.573 222.628 176.195 222.628 178.192 C 222.628 180.189 221.007 181.81 219.01 181.81 C 217.013 181.81 215.391 180.189 215.391 178.192 Z " fill-rule="evenodd" fill="rgb(11,45,61)" />
</g>
<g id="eyebrows">
<path d=" M 283.505 138.389 L 310.11 138.389 C 314.751 138.389 318.518 142.156 318.518 146.797 L 318.518 148.072 C 318.518 152.713 314.751 156.481 310.11 156.481 L 283.505 156.481 C 278.864 156.481 275.096 152.713 275.096 148.072 L 275.096 146.797 C 275.096 142.156 278.864 138.389 283.505 138.389 Z M 205.707 138.389 L 232.312 138.389 C 236.953 138.389 240.721 142.156 240.721 146.797 L 240.721 148.072 C 240.721 152.713 236.953 156.481 232.312 156.481 L 205.707 156.481 C 201.067 156.481 197.299 152.713 197.299 148.072 L 197.299 146.797 C 197.299 142.156 201.067 138.389 205.707 138.389 Z " fill-rule="evenodd" fill="rgb(11,45,61)" />
</g>
<g id="glasses">
<path d=" M 339.409 168.9 L 176.409 168.9 L 176.409 156.481 L 339.409 156.481 L 339.409 168.9 Z " fill="rgb(255,255,255)" />
<path d=" M 187.802 158.918 L 187.802 174.079 C 187.802 191.241 201.71 205.152 218.875 205.152 C 236.033 205.152 249.946 191.241 249.946 174.079 L 249.946 158.918 L 187.802 158.918 Z " fill="rgb(46,189,231)" />
<path d=" M 265.69 158.918 L 265.69 174.079 C 265.69 191.241 279.6 205.152 296.763 205.152 C 313.923 205.152 327.834 191.241 327.834 174.079 L 327.834 158.918 L 265.69 158.918 Z " fill="rgb(46,189,231)" />
<path d=" M 187.802 158.918 L 187.802 174.079 C 187.802 181.395 190.336 188.118 194.569 193.427 L 229.08 158.918 L 187.802 158.918 Z " fill="rgb(165,223,249)" />
<path d=" M 249.945 158.918 L 235.836 158.918 L 197.822 196.932 C 201.196 200.041 205.255 202.41 209.748 203.789 L 249.945 163.593 L 249.945 158.918 Z " fill="rgb(165,223,249)" />
<path d=" M 265.69 158.918 L 265.69 174.079 C 265.69 181.411 268.234 188.147 272.478 193.46 L 307.023 158.918 L 265.69 158.918 Z " fill="rgb(165,223,249)" />
<path d=" M 327.835 174.078 L 327.835 168.9 L 291.953 204.785 C 293.522 205.022 295.128 205.153 296.763 205.153 C 313.923 205.153 327.835 191.242 327.835 174.078 Z " fill="rgb(165,223,249)" />
<path d=" M 210.371 201.433 L 210.464 201.46 C 213.194 202.298 216.019 202.718 218.873 202.718 C 234.666 202.718 247.512 189.871 247.512 174.078 L 247.512 161.353 L 190.231 161.353 L 190.231 174.078 C 190.231 174.93 190.276 175.829 190.371 176.815 C 190.391 176.984 190.412 177.154 190.438 177.323 L 190.491 177.71 C 190.565 178.304 190.648 178.89 190.76 179.47 C 190.816 179.78 190.885 180.086 190.961 180.387 C 191.106 181.026 191.235 181.535 191.376 182.036 C 191.486 182.403 191.595 182.763 191.713 183.114 C 191.87 183.587 192.046 184.057 192.226 184.526 L 192.297 184.698 C 192.411 184.996 192.528 185.293 192.653 185.578 C 192.856 186.037 193.077 186.48 193.301 186.925 L 193.493 187.308 C 193.59 187.511 193.686 187.712 193.8 187.912 C 194.113 188.482 194.457 189.022 194.803 189.565 C 195.094 190.014 195.403 190.449 195.718 190.878 L 195.976 191.238 C 196.05 191.346 196.126 191.451 196.203 191.563 L 196.478 191.902 C 197.356 193.004 198.372 194.085 199.495 195.12 L 200.402 195.955 C 200.441 195.987 200.476 196.017 200.508 196.048 L 200.787 196.275 C 201.369 196.753 201.972 197.194 202.585 197.619 L 203.029 197.929 C 203.667 198.36 204.323 198.75 204.991 199.121 L 205.494 199.393 C 206.177 199.759 206.881 200.1 207.599 200.408 L 207.99 200.563 C 208.713 200.863 209.445 201.133 210.188 201.372 L 210.371 201.433 Z M 218.873 207.583 C 216.031 207.583 213.21 207.227 210.467 206.516 L 210.414 206.571 L 208.767 206.024 C 207.873 205.74 207.011 205.421 206.146 205.065 L 205.671 204.877 C 204.879 204.535 204.07 204.146 203.213 203.691 L 202.635 203.38 C 201.836 202.935 201.08 202.476 200.336 201.98 L 199.815 201.622 C 199.095 201.121 198.394 200.606 197.718 200.055 L 197.434 199.819 C 196.976 199.436 196.571 199.083 196.174 198.718 L 194.375 197.06 L 194.371 197.067 L 194.309 197.003 L 194.315 196.998 L 192.664 194.944 C 192.436 194.658 192.221 194.357 192.006 194.059 L 191.779 193.737 C 191.414 193.238 191.057 192.732 190.717 192.204 C 190.307 191.57 189.911 190.93 189.543 190.265 C 189.393 190 189.257 189.721 189.121 189.446 L 188.959 189.12 C 188.697 188.599 188.436 188.074 188.2 187.537 C 188.047 187.187 187.905 186.831 187.763 186.473 L 187.701 186.304 C 187.484 185.757 187.28 185.209 187.095 184.651 C 186.952 184.231 186.828 183.815 186.702 183.391 C 186.532 182.808 186.384 182.205 186.244 181.603 C 186.134 181.121 186.048 180.757 185.979 180.384 C 185.85 179.704 185.75 179.017 185.659 178.32 L 185.621 178.006 C 185.585 177.762 185.549 177.517 185.528 177.271 C 185.421 176.133 185.366 175.087 185.366 174.078 L 185.366 156.482 L 252.381 156.482 L 252.381 174.078 C 252.381 192.553 237.349 207.583 218.873 207.583 Z " fill="rgb(255,255,255)" />
<path d=" M 293.302 202.49 L 293.583 202.523 C 293.762 202.547 293.937 202.573 294.12 202.583 C 295.101 202.674 295.965 202.719 296.762 202.719 C 312.552 202.719 325.401 189.871 325.401 174.078 L 325.401 161.353 L 268.122 161.353 L 268.122 174.078 C 268.122 174.932 268.163 175.832 268.261 176.815 C 268.275 176.989 268.303 177.163 268.327 177.334 L 268.377 177.707 C 268.451 178.308 268.537 178.895 268.647 179.47 C 268.704 179.783 268.776 180.088 268.845 180.393 C 268.995 181.031 269.122 181.543 269.268 182.049 C 269.372 182.405 269.484 182.767 269.599 183.116 C 269.761 183.595 269.936 184.066 270.119 184.529 L 270.179 184.69 C 270.298 184.993 270.417 185.294 270.542 185.59 C 270.744 186.043 270.969 186.485 271.196 186.934 L 271.381 187.306 C 271.484 187.513 271.584 187.719 271.696 187.924 C 271.983 188.451 272.309 188.961 272.632 189.465 C 272.94 189.944 273.262 190.41 273.596 190.868 L 273.853 191.223 C 273.935 191.343 274.021 191.462 274.108 191.581 L 274.39 191.93 C 278.878 197.551 285.259 201.245 292.357 202.345 L 293.302 202.49 Z M 296.762 207.584 C 295.812 207.584 294.803 207.536 293.679 207.432 C 293.447 207.406 293.218 207.382 292.986 207.351 L 292.366 207.281 C 292.104 207.253 291.842 207.227 291.581 207.188 L 286.838 206.451 L 287.144 206.145 C 281.543 204.475 276.48 201.369 272.443 197.1 L 272.364 197.186 L 270.58 194.979 C 270.339 194.679 270.115 194.363 269.886 194.048 L 269.663 193.731 C 269.272 193.197 268.897 192.648 268.537 192.089 C 268.158 191.496 267.783 190.901 267.438 190.279 C 267.287 190.006 267.148 189.727 267.013 189.45 L 266.851 189.128 C 266.59 188.606 266.328 188.083 266.092 187.549 C 265.934 187.187 265.793 186.826 265.65 186.459 L 265.59 186.315 C 265.374 185.764 265.171 185.215 264.985 184.652 C 264.846 184.24 264.72 183.825 264.596 183.407 C 264.422 182.81 264.273 182.209 264.131 181.606 C 264.023 181.124 263.937 180.761 263.866 180.388 C 263.736 179.711 263.639 179.016 263.551 178.322 L 263.507 178.022 C 263.472 177.774 263.439 177.525 263.415 177.272 C 263.31 176.137 263.255 175.09 263.255 174.078 L 263.255 156.481 L 330.268 156.481 L 330.268 174.078 C 330.268 192.553 315.236 207.584 296.762 207.584 Z " fill="rgb(255,255,255)" />
</g>
<g id="front-hair">
<path d=" M 275.416 89.086 C 275.416 68.367 292.238 51.545 312.958 51.545 C 333.678 51.545 350.5 68.367 350.5 89.086 C 350.5 109.806 333.678 126.628 312.958 126.628 C 292.238 126.628 275.416 109.806 275.416 89.086 Z " fill="rgb(16,45,60)" />
</g>
</g>
</svg>
</div>
<!-- holds the other svg elements we'll be mirroring -->
<div class="splitter-panel container">
<div class="categories fr">
<div class="category face"
data-call="face">
</div>
<div class="category neck"
data-call="neck">
</div>
<div class="category hair"
data-call="hair">
</div>
<div class="category front-hair"
data-call="front-hair">
</div>
<div class="category ears"
data-call="ears">
</div>
<div class="category eyebrows"
data-call="eyebrows">
</div>
<div class="category glasses"
data-call="glasses">
</div>
<div class="category eyes"
data-call="eyes">
</div>
<div class="category nose"
data-call="nose">
</div>
<div class="category facial-hair"
data-call="facial-hair">
</div>
<div class="category mouth"
data-call="mouth">
</div>
<div class="category head"
data-call="head">
</div>
<div class="category body-types"
data-call="body-types">
</div>
<div class="category shoes"
data-call="shoes">
</div>
<div class="category background active"
data-call="background">
</div>
</div>
<div class="features">
<!-- move settings -->
<div class="move-holder pointer" data-call="settings-panel">
<i class="fa fa-cog"></i>
</div>
<div class="settings-panel fl hide" data-toggle="settings-panel">
<div class="table">
<div class="cell">
<div>
<h2>Scale: <input id="scaleadj" class="fr" type="number" step=".01" value="1"></h2>
<input id="scalerange" type="range" value="1" min="0" max="100" step=".01">
</div>
<div>
<h2>Translate X: <input id="translatexadj" class="fr" type="number" value="0"></h2>
<input id="translatexrange" type="range" value="0" min="-1000" max="1000">
</div>
<div>
<h2>Translate Y: <input id="translateyadj" class="fr" type="number" value="0"></h2>
<input id="translateyrange" value="0" type="range" min="-1000" max="1000">
</div>
</div>
</div>
</div>
<div class="feature face hide" data-display="face">
<div class="asset">
<?xml version="1.0" standalone="no"?>
<!-- Generator: Gravit.io -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912">
<defs>
<clipPath id="_clipPath_Akea2h9zLQf9h0XWvbWXDRhMILpvi2Mq">
<rect width="515.8" height="912" />
</clipPath>
</defs>
<g clip-path="url(#_clipPath_Akea2h9zLQf9h0XWvbWXDRhMILpvi2Mq)">
<g id="change">
<path d="M 193.98 91.348 L 319.751 91.348 C 325.562 91.348 330.279 96.065 330.279 101.875 L 330.279 227.042 C 330.279 266.984 297.851 299.412 257.909 299.412 L 257.909 299.412 C 217.967 299.412 185.539 266.984 185.539 227.042 L 185.539 99.79 C 185.539 95.131 189.321 91.348 193.98 91.348 Z" fill="rgb(252, 193, 148)"/>
</g>
</g>
</svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?>
<!-- Generator: Gravit.io -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912">
<defs>
<clipPath id="_clipPath_D7qJ3Ez9H3MTrxrFvQScdUDrl88oLSRE">
<rect width="515.8" height="912" />
</clipPath>
</defs>
<g clip-path="url(#_clipPath_D7qJ3Ez9H3MTrxrFvQScdUDrl88oLSRE)">
<g id="change">
<path d="M 257.909 91.348 L 257.909 91.348 C 297.851 91.348 330.279 123.776 330.279 163.718 L 330.279 227.042 C 330.279 266.984 297.851 299.412 257.909 299.412 L 257.909 299.412 C 217.967 299.412 185.539 266.984 185.539 227.042 L 185.539 163.718 C 185.539 123.776 217.967 91.348 257.909 91.348 Z" fill="rgb(252, 193, 148)"/>
</g>
</g>
</svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?>
<!-- Generator: Gravit.io -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912">
<defs>
<clipPath id="_clipPath_xMpgQv1cKNSnbFNmBOaCuOZ1XzfdI3Dp">
<rect width="515.8" height="912" />
</clipPath>
</defs>
<g clip-path="url(#_clipPath_xMpgQv1cKNSnbFNmBOaCuOZ1XzfdI3Dp)">
<g id="change">
<path d=" M 185.539 210.073 L 185.539 99.79 C 185.539 95.131 189.321 91.348 193.98 91.348 L 319.751 91.348 C 325.562 91.348 330.279 96.065 330.279 101.875 L 330.279 210.073 L 330.482 210.276 C 338.587 218.382 338.587 231.544 330.482 239.65 L 272.595 297.536 C 264.49 305.642 251.328 305.642 243.222 297.536 L 185.336 239.65 C 177.23 231.544 177.23 218.382 185.336 210.276 L 185.539 210.073 Z " fill="rgb(252,193,148)" />
</g>
</g>
</svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?>
<!-- Generator: Gravit.io -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912">
<defs>
<clipPath id="_clipPath_am0GWQWkMXa6pxWuVRISPenApCrm01Hn">
<rect width="515.8" height="912" />
</clipPath>
</defs>
<g clip-path="url(#_clipPath_am0GWQWkMXa6pxWuVRISPenApCrm01Hn)">
<g id="change">
<path d=" M 185.539 210.073 L 185.539 163.718 C 185.539 123.776 217.967 91.348 257.909 91.348 L 257.909 91.348 C 297.851 91.348 330.279 123.776 330.279 163.718 L 330.279 210.073 L 330.482 210.276 C 338.587 218.382 338.587 231.544 330.482 239.65 L 272.595 297.536 C 264.49 305.642 251.328 305.642 243.222 297.536 L 185.336 239.65 C 177.23 231.544 177.23 218.382 185.336 210.276 L 185.539 210.073 Z " fill="rgb(252,193,148)" />
</g>
</g>
</svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?>
<!-- Generator: Gravit.io -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912">
<defs>
<clipPath id="_clipPath_dX2jQacoKKdbENh0C9ry5CXLgFOJ0fib">
<rect width="515.8" height="912" />
</clipPath>
</defs>
<g clip-path="url(#_clipPath_dX2jQacoKKdbENh0C9ry5CXLgFOJ0fib)">
<g id="change">
<path d=" M 330.279 180.294 L 330.279 163.718 C 330.279 123.776 297.851 91.348 257.909 91.348 C 217.967 91.348 185.539 123.776 185.539 163.718 L 185.539 180.294 L 172.952 192.881 C 163.463 202.37 163.463 217.777 172.952 227.266 L 186.935 241.25 C 192.691 270.116 215.641 292.813 244.64 298.193 C 252.671 303.459 263.146 303.459 271.177 298.193 C 300.176 292.813 323.126 270.116 328.882 241.25 L 342.865 227.266 C 352.354 217.777 352.354 202.37 342.865 192.881 L 330.279 180.294 Z " fill="rgb(252, 193, 148)"/>
</g>
</g>
</svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?>
<!-- Generator: Gravit.io -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912">
<defs>
<clipPath id="_clipPath_rHeZweFGnDFaX9wXPNGYOpz0HkIpfXQX">
<rect width="515.8" height="912" />
</clipPath>
</defs>
<g clip-path="url(#_clipPath_rHeZweFGnDFaX9wXPNGYOpz0HkIpfXQX)">
<g id="change">
<path d="M 200.823 91.348 L 313.016 91.348 C 318.526 91.348 323 95.822 323 101.332 L 323 230.777 C 323 268.658 293.834 299.412 257.909 299.412 L 257.909 299.412 C 221.984 299.412 192.817 268.658 192.817 230.777 L 192.817 99.354 C 192.817 94.935 196.405 91.348 200.823 91.348 Z" fill="rgb(252, 193, 148)"/>
</g>
</g>
</svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?>
<!-- Generator: Gravit.io -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912">
<defs>
<clipPath id="_clipPath_pyiDXW7XGGVVs4DnoKqShQyZHJQfuvf6">
<rect width="515.8" height="912" />
</clipPath>
</defs>
<g clip-path="url(#_clipPath_pyiDXW7XGGVVs4DnoKqShQyZHJQfuvf6)">
<g id="change">
<path d="M 257.909 91.348 L 257.909 91.348 C 293.834 91.348 323 120.515 323 156.439 L 323 234.32 C 323 270.245 293.834 299.412 257.909 299.412 L 257.909 299.412 C 221.984 299.412 192.817 270.245 192.817 234.32 L 192.817 156.439 C 192.817 120.515 221.984 91.348 257.909 91.348 Z" fill="rgb(252, 193, 148)"/>
</g>
</g>
</svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_MUdwVqmrgTgSAuNp6TDTLJSZc7KLmrfT"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_MUdwVqmrgTgSAuNp6TDTLJSZc7KLmrfT)"><g id="change"><path d="M 190.409 140 L 325.409 140 L 325.409 224.5 C 325.409 261.754 295.163 292 257.909 292 L 257.909 292 C 220.654 292 190.409 261.754 190.409 224.5 L 190.409 140 Z" fill="rgb(249, 196, 149)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_28T03Oz6rzLi5qTQ8vZWx17CaEv99Tb4"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_28T03Oz6rzLi5qTQ8vZWx17CaEv99Tb4)"><g id="change"><path d=" M 303.697 274.063 C 317.048 261.736 325.409 244.086 325.409 224.5 L 325.409 140 L 190.409 140 L 190.409 224.5 C 190.409 245.069 199.628 263.501 214.16 275.882 C 218.047 296.989 236.56 313 258.784 313 C 281.641 313 300.573 296.063 303.697 274.063 Z " fill="rgb(249,196,149)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_yADl1NvftQ5XxBrti09wzBaGCoLH6QN7"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_yADl1NvftQ5XxBrti09wzBaGCoLH6QN7)"><g id="change"><path d=" M 309.839 265.87 C 319.561 254.243 325.409 239.272 325.409 222.946 L 325.409 140 L 190.409 140 L 190.409 222.946 C 190.409 239.272 196.256 254.243 205.978 265.87 C 204.97 268.038 204.409 270.454 204.409 273 C 204.409 282.383 212.026 290 221.409 290 L 257.463 290 L 258.354 290 L 294.409 290 C 303.791 290 311.409 282.383 311.409 273 C 311.409 270.454 310.848 268.038 309.839 265.87 Z " fill="rgb(249,196,149)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_LyYzqqFjOQmAi5k3JlYYGPL0W8KnLcwR"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_LyYzqqFjOQmAi5k3JlYYGPL0W8KnLcwR)"><g id="change"><path d=" M 303.409 274.343 C 316.925 261.996 325.409 244.231 325.409 224.5 L 325.409 140 L 190.409 140 L 190.409 224.5 C 190.409 244.713 199.312 262.863 213.409 275.238 L 213.409 348 C 213.409 372.836 233.572 393 258.409 393 C 283.245 393 303.409 372.836 303.409 348 L 303.409 274.343 Z " fill="rgb(249,196,149)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_eDMBoo3nJVe2nddU3ZV6xZQ7lc1XJ5T0"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_eDMBoo3nJVe2nddU3ZV6xZQ7lc1XJ5T0)"><g id="change"><path d=" M 321.667 250.913 C 331.281 242.055 337.31 229.362 337.31 215.273 L 337.31 92.705 C 337.31 65.973 315.607 44.27 288.875 44.27 L 226.942 44.27 C 200.21 44.27 178.507 65.973 178.507 92.705 L 178.507 215.273 C 178.507 231.032 186.05 245.044 197.717 253.895 C 197.852 254.042 197.993 254.186 198.136 254.328 L 226.617 282.81 C 244.208 300.401 272.771 300.401 290.362 282.81 L 317.682 255.491 C 319.134 254.038 320.467 252.51 321.667 250.913 Z " fill="rgb(253,194,149)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_ub3zwdCGnKa5MPZZzhKyj5CuM3hJauFc"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_ub3zwdCGnKa5MPZZzhKyj5CuM3hJauFc)"><g id="change"><path d="M 256.096 29.834 L 259.721 29.834 C 313.243 29.834 356.695 73.286 356.695 126.807 L 356.695 206.026 C 356.695 259.547 313.243 303 259.721 303 L 256.096 303 C 202.575 303 159.122 259.547 159.122 206.026 L 159.122 126.807 C 159.122 73.286 202.575 29.834 256.096 29.834 Z" fill="rgb(250, 193, 150)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_p1tzksvphZGNEKyxkwb8gp2YvQiY2Cws"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_p1tzksvphZGNEKyxkwb8gp2YvQiY2Cws)"><g id="change"><path d=" M 343.359 221.61 L 343.639 221.61 L 343.639 91.004 L 170.047 91.004 L 170.047 221.61 L 170.327 221.61 C 171.049 228.195 173.931 234.587 178.975 239.631 L 235.516 296.172 C 247.287 307.943 266.399 307.943 278.17 296.172 L 334.711 239.631 C 339.755 234.587 342.637 228.195 343.359 221.61 Z " fill="rgb(249,191,152)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_WWYElgIL55EltTB7ItpFAlSwz2GHrLPc"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_WWYElgIL55EltTB7ItpFAlSwz2GHrLPc)"><g id="change"><path d="M 184.019 150.743 L 330.305 150.743 L 330.305 229.857 C 330.305 270.226 297.531 303 257.162 303 L 257.162 303 C 216.794 303 184.019 270.226 184.019 229.857 L 184.019 150.743 Z" style="stroke:none;fill:#F9BF98;stroke-miterlimit:10;"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_W4vUdxgj5B77ycXcqvaIAqLN4XtoJgfZ"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_W4vUdxgj5B77ycXcqvaIAqLN4XtoJgfZ)"><g id="change"><path d="M 194.815 132.689 L 330.584 132.689 L 330.584 232.116 C 330.584 269.582 300.166 300 262.7 300 L 262.7 300 C 225.233 300 194.815 269.582 194.815 232.116 L 194.815 132.689 Z" fill="rgb(249, 191, 152);"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_Uwk5xuqJJvlaAKLZOFYQ99qpCGD6oUy5"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_Uwk5xuqJJvlaAKLZOFYQ99qpCGD6oUy5)"><g id="change"><path d="M 257.909 29.834 L 257.909 29.834 C 310.146 29.834 352.556 72.243 352.556 124.481 L 352.556 203.353 C 352.556 255.59 310.146 298 257.909 298 L 257.909 298 C 205.672 298 163.262 255.59 163.262 203.353 L 163.262 124.481 C 163.262 72.243 205.672 29.834 257.909 29.834 Z" fill="rgb(134, 76, 66)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_qkxlh52n3y7ObwJ20MRDcsMCWHi5NjYg"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_qkxlh52n3y7ObwJ20MRDcsMCWHi5NjYg)"><path d="M 194.471 102.458 L 334.653 102.458 L 334.653 230.271 C 334.653 268.791 303.379 300.064 264.859 300.064 L 264.264 300.064 C 225.744 300.064 194.471 268.791 194.471 230.271 L 194.471 102.458 Z" fill="rgb(250, 193, 150)"/></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_Ds3d47Rd8n5ecYHbNmnTQ0Nt9ygbtLYz"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_Ds3d47Rd8n5ecYHbNmnTQ0Nt9ygbtLYz)"><g id="change"><path d=" M 307.289 201.688 C 318.338 197.526 326.208 186.851 326.208 174.353 L 326.208 130.3 C 326.208 114.185 313.125 101.102 297.01 101.102 L 217.323 101.102 C 201.208 101.102 188.125 114.185 188.125 130.3 L 188.125 174.353 C 188.125 186.851 195.994 197.526 207.044 201.688 C 211.821 178.389 232.463 160.864 257.166 160.864 C 281.869 160.864 302.512 178.389 307.289 201.688 Z M 220.418 212.089 C 220.418 191.807 236.884 175.341 257.166 175.341 C 277.448 175.341 293.914 191.807 293.914 212.089 C 293.914 232.37 277.448 248.837 257.166 248.837 C 236.884 248.837 220.418 232.37 220.418 212.089 Z " fill-rule="evenodd" fill="rgb(249,191,152)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_6i2KziFVnEB77YvFE4VSlW6acGCGGycG"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_6i2KziFVnEB77YvFE4VSlW6acGCGGycG)"><g id="change"><path d="M 258.698 29.834 L 258.698 29.834 C 304.859 29.834 342.337 67.311 342.337 113.473 L 342.337 222.361 C 342.337 268.523 304.859 306 258.698 306 L 258.698 306 C 212.536 306 175.059 268.523 175.059 222.361 L 175.059 113.473 C 175.059 67.311 212.536 29.834 258.698 29.834 Z" fill="rgb(250, 193, 150)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_pI3XXLOXdenjhATE5CMcocSZFlMH9Bnk"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_pI3XXLOXdenjhATE5CMcocSZFlMH9Bnk)"><g id="change"><path d="M 260.376 93.774 L 260.376 93.774 C 299.42 93.774 331.118 125.473 331.118 164.516 L 331.118 235.258 C 331.118 274.302 299.42 306 260.376 306 L 260.376 306 C 221.333 306 189.634 274.302 189.634 235.258 L 189.634 164.516 C 189.634 125.473 221.333 93.774 260.376 93.774 Z" fill="rgb(250, 193, 150)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_2WkTsgjplxSnzE6ESxyM7R5ehhIYEArM"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_2WkTsgjplxSnzE6ESxyM7R5ehhIYEArM)"><g id="change"><path d=" M 325.521 194.717 C 325.521 232.061 295.251 262.333 257.91 262.333 C 220.567 262.333 190.296 232.061 190.296 194.717 L 190.296 120.212 C 190.296 82.866 220.567 52.598 257.91 52.598 C 295.251 52.598 325.521 82.866 325.521 120.212 L 325.521 194.717 Z " fill="rgb(242,192,155)"/></g></g></svg>
</div>
</div>
<div class="feature ears hide" data-display="ears">
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_sku3Zlcn894yR8ZRkucWbI4Fa3pzJQs8"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_sku3Zlcn894yR8ZRkucWbI4Fa3pzJQs8)"><g id="change"></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_5VqFxBlfTntdVB7XuQTR6G13Ly8CNc20"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_5VqFxBlfTntdVB7XuQTR6G13Ly8CNc20)"><g id="change"><path d=" M 309.02 176.383 C 309.02 166.397 317.127 158.29 327.112 158.29 C 337.098 158.29 345.205 166.397 345.205 176.383 C 345.205 186.368 337.098 194.475 327.112 194.475 C 317.127 194.475 309.02 186.368 309.02 176.383 Z M 170.612 176.383 C 170.612 166.397 178.719 158.29 188.705 158.29 C 198.69 158.29 206.797 166.397 206.797 176.383 C 206.797 186.368 198.69 194.475 188.705 194.475 C 178.719 194.475 170.612 186.368 170.612 176.383 Z " fill-rule="evenodd" fill="rgb(246,145,120)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_UotkS2DdzDsaQHsx0WsgvKb7WwcSkHxs"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_UotkS2DdzDsaQHsx0WsgvKb7WwcSkHxs)"><g id="change"><path d=" M 309.409 198 C 309.409 189.169 316.578 182 325.409 182 C 334.239 182 341.409 189.169 341.409 198 C 341.409 206.831 334.239 214 325.409 214 C 316.578 214 309.409 206.831 309.409 198 Z M 174.409 198 C 174.409 189.169 181.578 182 190.409 182 C 199.239 182 206.409 189.169 206.409 198 C 206.409 206.831 199.239 214 190.409 214 C 181.578 214 174.409 206.831 174.409 198 Z " fill-rule="evenodd" fill="rgb(249,196,149)"/><path d=" M 317.409 198 C 317.409 193.585 320.993 190 325.409 190 C 329.824 190 333.409 193.585 333.409 198 C 333.409 202.415 329.824 206 325.409 206 C 320.993 206 317.409 202.415 317.409 198 Z M 182.409 198 C 182.409 193.585 185.993 190 190.409 190 C 194.824 190 198.409 193.585 198.409 198 C 198.409 202.415 194.824 206 190.409 206 C 185.993 206 182.409 202.415 182.409 198 Z " fill-rule="evenodd" fill="rgb(243,99,99)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><g id="change"><path d=" M 164.07 182.862 C 164.07 174.894 170.539 168.426 178.507 168.426 C 186.475 168.426 192.944 174.894 192.944 182.862 C 192.944 190.83 186.475 197.299 178.507 197.299 C 170.539 197.299 164.07 190.83 164.07 182.862 Z " fill="rgb(254,194,149)"/><path d=" M 172.732 182.862 C 172.732 179.675 175.32 177.088 178.507 177.088 C 181.694 177.088 184.282 179.675 184.282 182.862 C 184.282 186.049 181.694 188.637 178.507 188.637 C 175.32 188.637 172.732 186.049 172.732 182.862 Z " fill="rgb(238,157,118)"/><path d=" M 322.874 182.862 C 322.874 174.894 329.342 168.426 337.31 168.426 C 345.278 168.426 351.747 174.894 351.747 182.862 C 351.747 190.83 345.278 197.299 337.31 197.299 C 329.342 197.299 322.874 190.83 322.874 182.862 Z " fill="rgb(254,194,149)"/><path d=" M 331.536 182.862 C 331.536 179.675 334.123 177.088 337.31 177.088 C 340.497 177.088 343.085 179.675 343.085 182.862 C 343.085 186.049 340.497 188.637 337.31 188.637 C 334.123 188.637 331.536 186.049 331.536 182.862 Z " fill="rgb(238,157,118)"/></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_2nCwfQsUnJYoVvx6bL3tQABZscYpolT6"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_2nCwfQsUnJYoVvx6bL3tQABZscYpolT6)"><g id="change"><path d=" M 131.634 159.774 C 131.634 144.602 143.951 132.285 159.122 132.285 C 174.293 132.285 186.61 144.602 186.61 159.774 C 186.61 174.945 174.293 187.262 159.122 187.262 C 143.951 187.262 131.634 174.945 131.634 159.774 Z " fill="rgb(249,191,152)"/><path d=" M 147.096 159.774 C 147.096 153.136 152.485 147.748 159.122 147.748 C 165.759 147.748 171.148 153.136 171.148 159.774 C 171.148 166.411 165.759 171.8 159.122 171.8 C 152.485 171.8 147.096 166.411 147.096 159.774 Z " fill="rgb(234,108,110)"/><path d=" M 329.207 159.774 C 329.207 144.602 341.524 132.285 356.695 132.285 C 371.866 132.285 384.184 144.602 384.184 159.774 C 384.184 174.945 371.866 187.262 356.695 187.262 C 341.524 187.262 329.207 174.945 329.207 159.774 Z " fill="rgb(249,191,152)"/><path d=" M 344.669 159.774 C 344.669 153.136 350.058 147.748 356.695 147.748 C 363.333 147.748 368.721 153.136 368.721 159.774 C 368.721 166.411 363.333 171.8 356.695 171.8 C 350.058 171.8 344.669 166.411 344.669 159.774 Z " fill="rgb(234,108,110)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_ZediMILAycdNXpjmbwsxNECtcXhUZjAb"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_ZediMILAycdNXpjmbwsxNECtcXhUZjAb)"><g id="change"><path d=" M 148.555 175.32 C 148.555 163.458 158.186 153.827 170.047 153.827 C 181.909 153.827 191.54 163.458 191.54 175.32 C 191.54 187.181 181.909 196.812 170.047 196.812 C 158.186 196.812 148.555 187.181 148.555 175.32 Z " fill="rgb(249,191,152)"/><path d=" M 322.146 175.32 C 322.146 163.458 331.777 153.827 343.639 153.827 C 355.5 153.827 365.131 163.458 365.131 175.32 C 365.131 187.181 355.5 196.812 343.639 196.812 C 331.777 196.812 322.146 187.181 322.146 175.32 Z " fill="rgb(249,191,152)"/><path d=" M 160.128 175.32 C 160.128 169.845 164.573 165.4 170.047 165.4 C 175.522 165.4 179.967 169.845 179.967 175.32 C 179.967 180.794 175.522 185.239 170.047 185.239 C 164.573 185.239 160.128 180.794 160.128 175.32 Z " fill="rgb(224,115,108)"/><path d=" M 333.719 175.32 C 333.719 169.845 338.164 165.4 343.639 165.4 C 349.113 165.4 353.558 169.845 353.558 175.32 C 353.558 180.794 349.113 185.239 343.639 185.239 C 338.164 185.239 333.719 180.794 333.719 175.32 Z " fill="rgb(224,115,108)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_gp56JWQNvRozxWPHEOxIKlAACGDMfviF"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_gp56JWQNvRozxWPHEOxIKlAACGDMfviF)"><g id="change"><path d=" M 170.585 191.047 C 170.585 182.808 177.274 176.119 185.512 176.119 C 193.751 176.119 200.439 182.808 200.439 191.047 C 200.439 199.285 193.751 205.974 185.512 205.974 C 177.274 205.974 170.585 199.285 170.585 191.047 Z " fill="rgb(249,191,152)"/><path d=" M 315.378 191.047 C 315.378 182.808 322.067 176.119 330.305 176.119 C 338.544 176.119 345.232 182.808 345.232 191.047 C 345.232 199.285 338.544 205.974 330.305 205.974 C 322.067 205.974 315.378 199.285 315.378 191.047 Z " fill="rgb(249,191,152)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_QDGJMielm1MPhexZeSSOCw2hAOtII27x"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_QDGJMielm1MPhexZeSSOCw2hAOtII27x)"><g id="change"><g id="ears"><path d=" M 176.987 186.174 C 176.987 177.848 183.747 171.088 192.073 171.088 C 200.399 171.088 207.158 177.848 207.158 186.174 C 207.158 194.499 200.399 201.259 192.073 201.259 C 183.747 201.259 176.987 194.499 176.987 186.174 Z " fill="rgb(255,182,157)"/><path d=" M 183.844 186.174 C 183.844 181.632 187.531 177.945 192.073 177.945 C 196.614 177.945 200.301 181.632 200.301 186.174 C 200.301 190.715 196.614 194.402 192.073 194.402 C 187.531 194.402 183.844 190.715 183.844 186.174 Z " fill="rgb(238,104,121)"/><path d=" M 317.556 186.174 C 317.556 177.848 324.316 171.088 332.641 171.088 C 340.967 171.088 347.727 177.848 347.727 186.174 C 347.727 194.499 340.967 201.259 332.641 201.259 C 324.316 201.259 317.556 194.499 317.556 186.174 Z " fill="rgb(255,182,157)"/><path d=" M 324.413 186.174 C 324.413 181.632 328.1 177.945 332.641 177.945 C 337.183 177.945 340.87 181.632 340.87 186.174 C 340.87 190.715 337.183 194.402 332.641 194.402 C 328.1 194.402 324.413 190.715 324.413 186.174 Z " fill="rgb(238,104,121)"/></g></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_cjiqawClmM6ZAlUNEvo4ftIQENlUEmtL"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_cjiqawClmM6ZAlUNEvo4ftIQENlUEmtL)"><g id="change"><path d=" M 134.079 161.551 C 134.079 145.444 147.155 132.368 163.262 132.368 C 179.368 132.368 192.444 145.444 192.444 161.551 C 192.444 177.657 179.368 190.733 163.262 190.733 C 147.155 190.733 134.079 177.657 134.079 161.551 Z " fill="rgb(134,76,66)"/><path d=" M 149.065 161.551 C 149.065 153.715 155.426 147.354 163.262 147.354 C 171.097 147.354 177.459 153.715 177.459 161.551 C 177.459 169.386 171.097 175.748 163.262 175.748 C 155.426 175.748 149.065 169.386 149.065 161.551 Z " fill="rgb(83,39,31)"/><path d=" M 323.373 161.551 C 323.373 145.444 336.449 132.368 352.556 132.368 C 368.662 132.368 381.738 145.444 381.738 161.551 C 381.738 177.657 368.662 190.733 352.556 190.733 C 336.449 190.733 323.373 177.657 323.373 161.551 Z " fill="rgb(134,76,66)"/><path d=" M 338.359 161.551 C 338.359 153.715 344.72 147.354 352.556 147.354 C 360.391 147.354 366.753 153.715 366.753 161.551 C 366.753 169.386 360.391 175.748 352.556 175.748 C 344.72 175.748 338.359 169.386 338.359 161.551 Z " fill="rgb(83,39,31)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_JncMCQyqSmG6XkhD3SAa2BcFP4Khvgsb"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_JncMCQyqSmG6XkhD3SAa2BcFP4Khvgsb)"><g id="change"><path d=" M 146.095 150.842 C 146.095 133.381 160.271 119.206 177.731 119.206 C 195.192 119.206 209.368 133.381 209.368 150.842 C 209.368 168.303 195.192 182.478 177.731 182.478 C 160.271 182.478 146.095 168.303 146.095 150.842 Z " fill="rgb(249,191,152)"/><path d=" M 161.399 150.842 C 161.399 141.828 168.717 134.51 177.731 134.51 C 186.745 134.51 194.064 141.828 194.064 150.842 C 194.064 159.856 186.745 167.174 177.731 167.174 C 168.717 167.174 161.399 159.856 161.399 150.842 Z " fill="rgb(242,110,114)"/><path d=" M 306.45 150.842 C 306.45 133.381 320.625 119.206 338.086 119.206 C 355.547 119.206 369.722 133.381 369.722 150.842 C 369.722 168.303 355.547 182.478 338.086 182.478 C 320.625 182.478 306.45 168.303 306.45 150.842 Z " fill="rgb(249,191,152)"/><path d=" M 321.754 150.842 C 321.754 141.828 329.072 134.51 338.086 134.51 C 347.1 134.51 354.418 141.828 354.418 150.842 C 354.418 159.856 347.1 167.174 338.086 167.174 C 329.072 167.174 321.754 159.856 321.754 150.842 Z " fill="rgb(242,110,114)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_jVi8eGyz4MZJxDLo3RYWkfsYceHAWIm5"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_jVi8eGyz4MZJxDLo3RYWkfsYceHAWIm5)"><g id="change"><path d="M 171.113 127.675 L 343.126 127.675 C 360.11 127.675 373.898 141.464 373.898 158.448 L 373.898 158.448 C 373.898 175.432 360.11 189.221 343.126 189.221 L 171.113 189.221 C 154.129 189.221 140.341 175.432 140.341 158.448 L 140.341 158.448 C 140.341 141.464 154.129 127.675 171.113 127.675 Z" style="stroke:none;fill:#F9BF98;stroke-miterlimit:10;"/><path d="M 174.27 143.456 L 339.969 143.456 C 348.244 143.456 354.961 150.174 354.961 158.448 L 354.961 158.448 C 354.961 166.722 348.244 173.44 339.969 173.44 L 174.27 173.44 C 165.995 173.44 159.278 166.722 159.278 158.448 L 159.278 158.448 C 159.278 150.174 165.995 143.456 174.27 143.456 Z" style="stroke:none;fill:#F88A79;stroke-miterlimit:10;"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_4OAjNzHYvMOtXzvEhO5amgMGwlhfDnY9"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_4OAjNzHYvMOtXzvEhO5amgMGwlhfDnY9)"><g id="change"><path d="M 187.989 161.226 L 332.763 161.226 C 346.383 161.226 357.441 172.283 357.441 185.903 L 357.441 185.903 C 357.441 199.523 346.383 210.581 332.763 210.581 L 187.989 210.581 C 174.369 210.581 163.312 199.523 163.312 185.903 L 163.312 185.903 C 163.312 172.283 174.369 161.226 187.989 161.226 Z" style="stroke:none;fill:#F9BF98;stroke-miterlimit:10;"/><path d="M 189.838 172.742 L 330.914 172.742 C 337.383 172.742 342.634 177.902 342.634 184.258 L 342.634 184.258 C 342.634 190.614 337.383 195.774 330.914 195.774 L 189.838 195.774 C 183.37 195.774 178.118 190.614 178.118 184.258 L 178.118 184.258 C 178.118 177.902 183.37 172.742 189.838 172.742 Z" style="stroke:none;fill:#EA7174;stroke-miterlimit:10;"/></g></g></svg>
</div>
</div>
<div class="feature neck hide" data-display="neck">
<div class="asset">
<?xml version="1.0" standalone="no"?>
<!-- Generator: Gravit.io -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912">
<defs>
<clipPath id="_clipPath_FgFcotKday832gTzwcnC1cl22Q7GjbL2">
<rect width="515.8" height="912" />
</clipPath>
</defs>
<g clip-path="url(#_clipPath_FgFcotKday832gTzwcnC1cl22Q7GjbL2)">
<g id="change">
<path d="M 257.909 241.516 L 257.909 241.516 C 279.377 241.516 296.807 258.946 296.807 280.415 L 296.807 303.935 C 296.807 325.404 279.377 342.834 257.909 342.834 L 257.909 342.834 C 236.44 342.834 219.01 325.404 219.01 303.935 L 219.01 280.415 C 219.01 258.946 236.44 241.516 257.909 241.516 Z" fill="rgb(250, 145, 120)" />
</g>
</g>
</svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?>
<!-- Generator: Gravit.io -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912">
<defs>
<clipPath id="_clipPath_VldobAR0IK7LyAiyMEMmFaZbxgEXSGxi">
<rect width="515.8" height="912" />
</clipPath>
</defs>
<g clip-path="url(#_clipPath_VldobAR0IK7LyAiyMEMmFaZbxgEXSGxi)">
<g id="change">
<path d="M 257.909 251.349 L 257.909 251.349 C 271.205 251.349 282 263.663 282 278.831 L 282 305.519 C 282 320.686 271.205 333 257.909 333 L 257.909 333 C 244.612 333 233.817 320.686 233.817 305.519 L 233.817 278.831 C 233.817 263.663 244.612 251.349 257.909 251.349 Z" fill="rgb(250, 145, 120)" />
</g>
</g>
</svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?>
<!-- Generator: Gravit.io -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912">
<defs>
<clipPath id="_clipPath_RXZ9iq6tqkhK0C6uEzKr6feEhkFk2ZSC">
<rect width="515.8" height="912" />
</clipPath>
</defs>
<g clip-path="url(#_clipPath_RXZ9iq6tqkhK0C6uEzKr6feEhkFk2ZSC)">
<g id="change">
<path d="M 257.909 251.349 L 257.909 251.349 C 275.21 251.349 289.257 265.396 289.257 282.697 L 289.257 301.652 C 289.257 318.953 275.21 333 257.909 333 L 257.909 333 C 240.607 333 226.561 318.953 226.561 301.652 L 226.561 282.697 C 226.561 265.396 240.607 251.349 257.909 251.349 Z" fill="rgb(250, 145, 120)" />
</g>
</g>
</svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?>
<!-- Generator: Gravit.io -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912">
<defs>
<clipPath id="_clipPath_tKUcyIoX8VcaR2wxgHx7y1zNZXzq8JQJ">
<rect width="515.8" height="912" />
</clipPath>
</defs>
<g clip-path="url(#_clipPath_tKUcyIoX8VcaR2wxgHx7y1zNZXzq8JQJ)">
<g id="change">
<path d="M 257.909 256.349 L 257.909 256.349 C 266.238 256.349 273 265.479 273 276.724 L 273 307.625 C 273 318.87 266.238 328 257.909 328 L 257.909 328 C 249.579 328 242.817 318.87 242.817 307.625 L 242.817 276.724 C 242.817 265.479 249.579 256.349 257.909 256.349 Z" fill="rgb(250, 145, 120)" />
</g>
</g>
</svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?>
<!-- Generator: Gravit.io -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912">
<defs>
<clipPath id="_clipPath_RXZ9iq6tqkhK0C6uEzKr6feEhkFk2ZSC">
<rect width="515.8" height="912" />
</clipPath>
</defs>
<g clip-path="url(#_clipPath_RXZ9iq6tqkhK0C6uEzKr6feEhkFk2ZSC)">
<g id="change">
<path d="M 257.909 251.349 L 257.909 251.349 C 275.21 251.349 289.257 265.396 289.257 282.697 L 289.257 301.652 C 289.257 318.953 275.21 333 257.909 333 L 257.909 333 C 240.607 333 226.561 318.953 226.561 301.652 L 226.561 282.697 C 226.561 265.396 240.607 251.349 257.909 251.349 Z" fill="rgb(250, 145, 120)" />
</g>
</g>
</svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_SGJiuQZK11cl3bX3f9HNk77dwbYFP1g2"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_SGJiuQZK11cl3bX3f9HNk77dwbYFP1g2)"><g id="change"><path d="M 214.909 263.5 L 299.409 263.5 L 299.409 292 C 299.409 307.73 286.638 320.5 270.909 320.5 L 243.409 320.5 C 227.679 320.5 214.909 307.73 214.909 292 L 214.909 263.5 Z" fill="rgb(242, 150, 116)" /></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_WiVuEtL5zC7ForYzva0GwWrsAfYrUVbQ"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_WiVuEtL5zC7ForYzva0GwWrsAfYrUVbQ)"><g id="change"><path d=" M 183.114 268.623 C 183.114 227.664 216.366 194.412 257.325 194.412 C 298.283 194.412 331.536 227.664 331.536 268.623 C 331.536 309.581 298.283 342.834 257.325 342.834 C 216.366 342.834 183.114 309.581 183.114 268.623 Z " fill="rgb(253,194,149)"/><path d=" M 196.664 266.319 C 196.664 232.518 224.107 205.075 257.909 205.075 C 291.71 205.075 319.153 232.518 319.153 266.319 C 319.153 300.121 291.71 327.563 257.909 327.563 C 224.107 327.563 196.664 300.121 196.664 266.319 Z " fill="rgb(251,148,123)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_4KxwoI3A9tweyIkH3h6B9KNcV7kI8Gb5"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_4KxwoI3A9tweyIkH3h6B9KNcV7kI8Gb5)"><g id="change"><path d=" M 196.664 266.319 C 196.664 232.518 224.107 205.075 257.909 205.075 C 291.71 205.075 319.153 232.518 319.153 266.319 C 319.153 300.121 291.71 327.563 257.909 327.563 C 224.107 327.563 196.664 300.121 196.664 266.319 Z " fill="rgb(251,148,123)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_yoN9w8iCRIcKUoxBlSfkevxHBqCBqdBj"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_yoN9w8iCRIcKUoxBlSfkevxHBqCBqdBj)"><g id="change"><path d=" M 222.011 193.709 L 222.011 277.183 C 231.99 284.748 244.422 289.245 257.909 289.245 C 271.397 289.245 283.828 284.75 293.805 277.184 L 293.805 193.709 L 222.011 193.709 Z " fill="rgb(234,147,124)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 500 912" width="500" height="912"><defs><clipPath id="_clipPath_bXQNdfC1QtjMJBmR9gGpsJA7uGmOsWr0"><rect width="500" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_bXQNdfC1QtjMJBmR9gGpsJA7uGmOsWr0)"><g id="change"><path d=" M 285.556 277 L 230.261 277 L 230.261 303.694 C 247.777 308.578 266.246 308.616 285.556 303.694 L 285.556 277 Z " fill="rgb(255,225,198)"/></g></g></svg>
</div>
</div>
<div class="feature hair hide" data-display="hair">
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_sku3Zlcn894yR8ZRkucWbI4Fa3pzJQs8"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_sku3Zlcn894yR8ZRkucWbI4Fa3pzJQs8)"><g id="change"></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_0NSs6pCN1tVCcaUasdxf1smvhyvBOa0J"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_0NSs6pCN1tVCcaUasdxf1smvhyvBOa0J)"><g id="change"><path d=" M 296.233 91.348 C 299.463 85.435 301.299 78.653 301.299 71.446 C 301.299 48.48 282.653 29.834 259.686 29.834 L 198.172 29.834 C 175.205 29.834 156.559 48.48 156.559 71.446 C 156.559 86.489 164.558 99.678 176.524 106.998 C 168.6 115.124 163.796 125.8 163.796 137.484 C 163.796 162.947 186.611 183.62 214.714 183.62 L 308.34 183.62 C 336.443 183.62 359.258 162.947 359.258 137.484 C 359.258 112.021 336.443 91.348 308.34 91.348 L 296.233 91.348 Z " fill="rgb(16,45,60)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 500 912" width="500" height="912"><defs><clipPath id="_clipPath_rERblxjbIxsF28JEoojOLkOq8jjyaeKc"><rect width="500" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_rERblxjbIxsF28JEoojOLkOq8jjyaeKc)"><g id="change"><path d="M 170.613 100.694 L 345.204 100.694 L 345.204 287.889 C 345.204 300.093 335.297 310 323.093 310 L 192.902 310 C 180.6 310 170.613 300.013 170.613 287.711 L 170.613 100.694 Z" fill="rgb(11, 45, 61)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_H65QQTQeXxipdwWh4HOqNqmXdc79vONt"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_H65QQTQeXxipdwWh4HOqNqmXdc79vONt)"><g id="change"><path d="M 257.909 29.834 L 257.909 29.834 C 308.575 29.834 349.71 70.969 349.71 121.635 L 349.71 271.653 L 166.107 271.653 L 166.107 121.635 C 166.107 70.969 207.242 29.834 257.909 29.834 Z" fill="rgb(13, 47, 59)"</g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_KrQbSTThKgnQEcZujfP6TFGqg4HgZKmE"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_KrQbSTThKgnQEcZujfP6TFGqg4HgZKmE)"><g id="change"><path d=" M 277.1 183.431 C 277.1 162.238 294.306 145.031 315.499 145.031 C 336.692 145.031 353.898 162.238 353.898 183.431 C 353.898 204.624 336.692 221.83 315.499 221.83 C 294.306 221.83 277.1 204.624 277.1 183.431 Z M 231.042 165.017 C 232.448 161.367 233.215 157.402 233.215 153.26 C 233.215 135.094 218.467 120.346 200.301 120.346 C 182.136 120.346 167.387 135.094 167.387 153.26 C 167.387 162.043 170.835 170.028 176.461 175.922 C 173.302 181.355 171.502 187.67 171.502 194.402 C 171.502 214.838 188.093 231.43 208.529 231.43 C 228.966 231.43 245.557 214.838 245.557 194.402 C 245.557 182.433 239.867 171.784 231.042 165.017 Z " fill-rule="evenodd" fill="rgb(244,41,0)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_VkToA9agVK15JBSQVkUlpPiHvYhDfLsJ"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_VkToA9agVK15JBSQVkUlpPiHvYhDfLsJ)"><g id="change"><path d=" M 232.267 127.37 L 232.267 190.705 C 232.267 211.912 215.05 229.129 193.844 229.129 L 193.844 229.129 C 172.637 229.129 155.42 211.912 155.42 190.705 L 155.42 127.37 C 155.42 106.164 172.637 88.947 193.844 88.947 L 193.844 88.947 C 215.05 88.947 232.267 106.164 232.267 127.37 Z M 374.343 127.37 L 374.343 190.705 C 374.343 211.912 357.126 229.129 335.919 229.129 L 335.919 229.129 C 314.713 229.129 297.496 211.912 297.496 190.705 L 297.496 127.37 C 297.496 106.164 314.713 88.947 335.919 88.947 L 335.919 88.947 C 357.126 88.947 374.343 106.164 374.343 127.37 Z M 216.862 260.592 L 216.862 347.982 C 216.862 360.686 206.548 371 193.844 371 L 193.844 371 C 181.14 371 170.825 360.686 170.825 347.982 L 170.825 260.592 C 170.825 247.888 181.14 237.574 193.844 237.574 L 193.844 237.574 C 206.548 237.574 216.862 247.888 216.862 260.592 Z M 358.733 260.592 L 358.733 347.982 C 358.733 360.686 348.419 371 335.715 371 L 335.715 371 C 323.011 371 312.697 360.686 312.697 347.982 L 312.697 260.592 C 312.697 247.888 323.011 237.574 335.715 237.574 L 335.715 237.574 C 348.419 237.574 358.733 247.888 358.733 260.592 Z " fill-rule="evenodd" fill="rgb(13,47,59)"/><path d="M 180.115 217.306 L 213.893 217.306 C 220.885 217.306 226.56 222.982 226.56 229.973 L 226.56 229.973 C 226.56 236.964 220.885 242.64 213.893 242.64 L 180.115 242.64 C 173.123 242.64 167.447 236.964 167.447 229.973 L 167.447 229.973 C 167.447 222.982 173.123 217.306 180.115 217.306 Z" style="stroke:none;fill:#F50062;stroke-miterlimit:10;"/><path d="M 315.23 217.306 L 349.009 217.306 C 356 217.306 361.676 222.982 361.676 229.973 L 361.676 229.973 C 361.676 236.964 356 242.64 349.009 242.64 L 315.23 242.64 C 308.239 242.64 302.563 236.964 302.563 229.973 L 302.563 229.973 C 302.563 222.982 308.239 217.306 315.23 217.306 Z" style="stroke:none;fill:#F50062;stroke-miterlimit:10;"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_RlpVos4qkFYPmPhffCDHmTSoY0cC3UVz"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_RlpVos4qkFYPmPhffCDHmTSoY0cC3UVz)"><g id="change"><path d="M 257.909 29.834 L 257.909 29.834 C 302.16 29.834 338.086 65.76 338.086 110.011 L 338.086 225.823 C 338.086 270.074 302.16 306 257.909 306 L 257.909 306 C 213.658 306 177.731 270.074 177.731 225.823 L 177.731 110.011 C 177.731 65.76 213.658 29.834 257.909 29.834 Z" style="stroke:none;fill:#0D2F3B;stroke-miterlimit:10;"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_IojiKZ2tXV3HABqMtK7X7BstIariIWJv"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_IojiKZ2tXV3HABqMtK7X7BstIariIWJv)"><g id="change"><path d=" M 146.038 179.323 C 146.038 147.543 171.839 121.742 203.618 121.742 C 235.398 121.742 261.199 147.543 261.199 179.323 C 261.199 211.102 235.398 236.903 203.618 236.903 C 171.839 236.903 146.038 211.102 146.038 179.323 Z " fill="rgb(13,47,59)"/><path d=" M 258.731 179.323 C 258.731 147.543 284.532 121.742 316.312 121.742 C 348.091 121.742 373.892 147.543 373.892 179.323 C 373.892 211.102 348.091 236.903 316.312 236.903 C 284.532 236.903 258.731 211.102 258.731 179.323 Z " fill="rgb(13,47,59)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_OEmx6DY6fkd90YfFdoEUqdigHeeJuAhv"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_OEmx6DY6fkd90YfFdoEUqdigHeeJuAhv)"><g id="change"><path d=" M 257.909 29.834 C 201.354 29.834 155.505 75.682 155.505 132.239 L 155.505 163.916 L 155.505 195.597 L 155.505 298 L 360.312 298 L 360.312 195.597 L 360.312 163.916 L 360.312 132.239 C 360.312 75.682 314.463 29.834 257.909 29.834 Z " fill="rgb(218,28,75)"/><path d=" M 317.387 229.762 C 317.387 262.613 290.759 289.245 257.91 289.245 C 225.062 289.245 198.43 262.613 198.43 229.762 L 198.43 164.221 C 198.43 131.367 225.062 104.741 257.91 104.741 C 290.759 104.741 317.387 131.367 317.387 164.221 L 317.387 229.762 Z " fill="rgb(178,30,72)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 500 912" width="500" height="912"><defs><clipPath id="_clipPath_24SIDlUpTGTli9ywIMkCxqnn23olbX2X"><rect width="500" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_24SIDlUpTGTli9ywIMkCxqnn23olbX2X)"><g id="change"><path d=" M 195.06 182.171 C 179.238 160.724 171.51 135.135 171.822 105.35 C 174.529 107.474 177.544 108.106 180.76 107.137 C 179.965 90.893 182.366 77.803 187.91 67.812 C 191.891 70.393 195.484 73.986 198.635 78.537 C 205.363 68.218 214.319 58.702 225.447 49.937 C 227.193 57.267 232.378 63.243 240.949 67.812 C 249.502 55.854 253.29 46.934 252.259 41 C 267.424 46.829 278.762 55.784 286.222 67.812 C 291.433 63.573 295.624 57.633 298.742 49.937 C 308.254 56.659 315.419 67.402 320.184 82.112 L 329.122 67.812 C 335.366 74.684 336.575 89.597 332.697 108.925 L 343.422 101.775 C 346.29 121.591 338.562 147.663 320.184 179.938 C 276.882 225.161 235.191 225.924 195.06 182.171 Z " fill="rgb(0,0,0)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 500 912" width="500" height="912"><defs><clipPath id="_clipPath_s7c2dRgu0J5SEqZKG4KEJ2dqqQvb1Aed"><rect width="500" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_s7c2dRgu0J5SEqZKG4KEJ2dqqQvb1Aed)"><g id="change"><path d=" M 318.548 56.726 C 311.598 52.19 308.718 35.103 306.009 33.595 C 300.592 30.58 296.949 38.825 290.657 36.667 C 282.419 33.843 279.598 20.779 269.912 19.772 C 265.289 19.291 264.949 36.667 260.005 36.667 C 250.14 36.667 248 22.642 239.29 24.38 C 237.308 24.775 230.747 42.732 225.441 44.347 C 217.948 46.628 209.449 32.773 206.867 33.595 C 199.173 36.047 203.515 62.276 197.019 65.886 C 190.523 69.497 169.521 38.315 164.308 42.811 C 159.587 46.882 170.535 86.564 166.934 91.148 C 163.081 96.053 137.312 85.896 134.814 91.148 C 132.68 95.638 153.629 115.506 152.537 120.082 C 151.446 124.658 127.609 129.239 127.609 133.747 C 127.609 141.579 142.127 146.41 145.622 153.398 C 147.712 157.576 142.21 175.864 145.622 179.508 C 147.488 181.501 156.86 172.646 165.052 171.829 C 171.843 171.151 176.374 179.379 176.597 179.508 Q 183.829 172.774 199.851 153.398 L 219.476 163.443 L 235.119 130.359 L 262.819 145.078 L 281.54 125.751 L 290.657 158.752 L 318.548 153.398 L 329.356 177.874 Q 354.942 184.722 358.176 179.508 C 361.411 174.294 356.763 160.15 358.176 158.752 C 361.004 155.956 377.835 162.07 379.792 158.752 C 381.084 156.562 373.048 146.184 372.587 141.11 C 372.126 136.036 386.446 136.267 386.997 133.747 C 388.281 127.886 366.037 126.422 365.382 120.082 C 364.55 112.036 376.42 104.57 372.587 96.568 C 369.073 89.233 347.891 87.773 341.965 81.209 C 338.815 77.72 345.773 59.845 341.965 56.726 C 339.707 54.877 325.497 61.263 318.548 56.726 Z " fill="rgb(0,0,0)"/></g></g></svg>
</div>
</div>
<div class="feature front-hair hide" data-display="front-hair">
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_sku3Zlcn894yR8ZRkucWbI4Fa3pzJQs8"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_sku3Zlcn894yR8ZRkucWbI4Fa3pzJQs8)"><g id="change"></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_2uCEPqFeDn4IL13FKxATUZfWisrap4D0"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_2uCEPqFeDn4IL13FKxATUZfWisrap4D0)"><g id="change"><path d=" M 275.416 89.086 C 275.416 68.367 292.238 51.545 312.958 51.545 C 333.678 51.545 350.5 68.367 350.5 89.086 C 350.5 109.806 333.678 126.628 312.958 126.628 C 292.238 126.628 275.416 109.806 275.416 89.086 Z " fill="rgb(16,45,60)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_kFpUmtyVCsYXotbfGkw3hM9SAdUSW5ck"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_kFpUmtyVCsYXotbfGkw3hM9SAdUSW5ck)"><g id="change"><path d=" M 256.409 73 L 160.409 73 L 160.409 119 C 160.409 144.388 181.021 165 206.409 165 L 210.409 165 L 210.409 141 L 227.145 160.247 L 227.145 150.05 L 240.145 165 L 325.409 165 L 325.409 119 C 325.409 93.612 304.797 73 279.409 73 L 270.209 73 L 256.409 85 L 256.409 73 Z " fill="rgb(14,34,54)"/><g style="mix-blend-mode:normal;" opacity="0.1"><path d="M 190.909 95 L 282.909 95 C 287.048 95 290.409 98.361 290.409 102.5 L 290.409 102.5 C 290.409 106.639 287.048 110 282.909 110 L 190.909 110 C 186.769 110 183.409 106.639 183.409 102.5 L 183.409 102.5 C 183.409 98.361 186.769 95 190.909 95 Z" style="stroke:none;fill:#EBEBEB;stroke-miterlimit:10;"/></g><g style="mix-blend-mode:normal;" opacity="0.22"><path d="M 276.409 137 L 306.409 137 C 311.376 137 315.409 141.033 315.409 146 L 315.409 146 C 315.409 150.967 311.376 155 306.409 155 L 276.409 155 C 271.441 155 267.409 150.967 267.409 146 L 267.409 146 C 267.409 141.033 271.441 137 276.409 137 Z" style="stroke:none;fill:#EBEBEB;stroke-miterlimit:10;" fill="rgb(252, 193, 148)"/></g></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_Y9q83wxZGoP5MZovS3a82QpQ7AE8LC3R"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_Y9q83wxZGoP5MZovS3a82QpQ7AE8LC3R)"><g id="change"><path d="M 242.03 91.348 L 273.788 91.348 L 273.788 121.121 C 273.788 129.885 266.672 137 257.909 137 L 257.909 137 C 249.145 137 242.03 129.885 242.03 121.121 L 242.03 91.348 Z" style="stroke:none;fill:#0B2D3D;stroke-miterlimit:10;"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 500 912" width="500" height="912"><defs><clipPath id="_clipPath_SO6eyRYp6Wm246LZIlactIDHaHnBDXtz"><rect width="500" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_SO6eyRYp6Wm246LZIlactIDHaHnBDXtz)"><g id="change"><path d=" M 330.238 94.56 C 330.267 94.728 330.279 94.902 330.279 95.079 L 330.279 196.911 C 330.279 198.969 328.607 200.641 326.549 200.641 C 324.49 200.641 322.818 198.969 322.818 196.911 L 322.818 115.853 C 315.723 125.591 304.231 131.924 291.271 131.924 L 224.547 131.924 C 211.587 131.924 200.095 125.591 193 115.853 L 193 196.911 C 193 198.969 191.328 200.641 189.27 200.641 C 187.211 200.641 185.539 198.969 185.539 196.911 L 185.539 95.079 C 185.539 94.902 185.551 94.728 185.58 94.56 C 185.55 94.016 185.539 93.467 185.539 92.916 L 185.539 89.78 C 185.539 68.251 203.018 50.772 224.547 50.772 L 291.271 50.772 C 312.8 50.772 330.279 68.251 330.279 89.78 L 330.279 92.916 C 330.279 93.467 330.268 94.016 330.238 94.56 Z " fill="rgb(11,45,61)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 500 912" width="500" height="912"><defs><clipPath id="_clipPath_ySOdKgPXqa4lubQ17GNJ5YFkWftpfhny"><rect width="500" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_ySOdKgPXqa4lubQ17GNJ5YFkWftpfhny)"><g id="change"><path d="M 208.308 63 L 307.51 63 C 328.315 63 345.205 79.89 345.205 100.695 L 345.205 100.695 C 345.205 121.499 328.315 138.389 307.51 138.389 L 208.308 138.389 C 187.503 138.389 170.613 121.499 170.613 100.695 L 170.613 100.695 C 170.613 79.89 187.503 63 208.308 63 Z" fill="rgb(11, 45, 61)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_U7bxs6wc98sZ1OoA03XoN5MgwbjJ1P5w"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_U7bxs6wc98sZ1OoA03XoN5MgwbjJ1P5w)"><g id="change"><path d=" M 337.31 92.705 L 337.31 159.493 L 337.31 159.493 C 328.432 157.973 321.667 150.232 321.667 140.924 L 321.667 133.778 L 214.599 133.778 C 207.898 133.778 201.54 132.302 195.831 129.658 L 195.831 129.658 L 195.831 140.924 C 195.831 150.812 188.197 158.93 178.507 159.703 L 178.507 115.478 C 173.062 108.066 169.845 98.918 169.845 89.024 L 169.845 44.27 L 292.557 44.27 C 317.257 44.27 337.31 64.324 337.31 89.024 L 337.31 92.705 Z " fill="rgb(0,23,42)"/><path d="M 169.845 29.834 L 255.734 29.834 C 272.068 29.834 285.33 43.095 285.33 59.429 L 285.33 89.024 L 199.44 89.024 C 183.106 89.024 169.845 75.763 169.845 59.429 L 169.845 29.834 Z" fill="rgb(0,23,42)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_0sjRMrohapXBWlneIXmskfeoyqufFmUL"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_0sjRMrohapXBWlneIXmskfeoyqufFmUL)"><g id="change"><path d=" M 200.438 67.012 C 195.285 64.379 189.449 62.902 183.27 62.902 C 162.285 62.902 145.249 79.939 145.249 100.923 C 145.249 121.908 162.285 138.945 183.27 138.945 C 200.542 138.945 215.14 127.402 219.741 111.607 C 226.8 116.356 235.303 119.109 244.444 119.109 L 343.639 119.109 C 368.275 119.109 388.276 99.108 388.276 74.471 C 388.276 49.835 368.275 29.834 343.639 29.834 L 244.444 29.834 C 222.35 29.834 203.984 45.919 200.438 67.012 Z " fill="rgb(13,47,59)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_pDBetbyLX5EYbIVnqUdZXaXdaKEJxhAE"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_pDBetbyLX5EYbIVnqUdZXaXdaKEJxhAE)"><g id="change"><path d=" M 307.44 158.544 C 306.262 158.688 305.059 158.745 303.842 158.745 C 290.638 158.745 279.01 151.945 272.292 141.644 C 260.151 154.695 242.829 162.86 223.615 162.86 C 186.905 162.86 157.102 133.056 157.102 96.347 C 157.102 59.637 186.905 29.834 223.615 29.834 C 256.887 29.834 284.486 54.317 289.349 86.24 C 293.802 84.349 298.703 83.318 303.842 83.318 C 324.657 83.318 341.556 100.217 341.556 121.032 C 341.556 123.144 341.382 125.215 341.043 127.231 C 351.309 130.72 358.698 140.448 358.698 151.888 C 358.698 166.27 347.023 177.945 332.641 177.945 C 320.56 177.945 310.388 169.705 307.44 158.544 Z " fill="rgb(248,117,0)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_0tF3QL7VR16p8HTzqizZ907oGSI7sjao"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_0tF3QL7VR16p8HTzqizZ907oGSI7sjao)"><g id="change"><path d="M 184.337 29.834 L 278.918 29.834 C 314.339 29.834 343.097 58.592 343.097 94.013 L 343.097 94.013 C 343.097 129.435 314.339 158.193 278.918 158.193 L 184.337 158.193 C 148.915 158.193 120.157 129.435 120.157 94.013 L 120.157 94.013 C 120.157 58.592 148.915 29.834 184.337 29.834 Z" fill="rgb(13, 47, 59);"/><path d=" M 265.678 92.596 C 262.746 91.328 259.512 90.636 256.117 90.636 C 242.601 90.636 231.627 101.609 231.627 115.125 C 231.627 128.641 242.601 139.615 256.117 139.615 C 269.633 139.615 280.607 128.641 280.607 115.125 C 280.607 111.73 279.914 108.496 278.646 105.564 C 281.577 106.833 284.812 107.525 288.207 107.525 C 301.723 107.525 312.697 96.551 312.697 83.035 C 312.697 69.519 301.723 58.546 288.207 58.546 C 274.691 58.546 263.717 69.519 263.717 83.035 C 263.717 86.43 264.41 89.665 265.678 92.596 Z " style="stroke:none;fill:rgb(201,0,83);stroke-miterlimit:10;"/><path d=" M 262.028 98.236 C 262.028 92.177 266.947 87.258 273.006 87.258 C 279.065 87.258 283.985 92.177 283.985 98.236 C 283.985 104.295 279.065 109.214 273.006 109.214 C 266.947 109.214 262.028 104.295 262.028 98.236 Z " style="stroke:none;fill:rgb(248,0,98);stroke-miterlimit:10;"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_IIMARr58ta7HSZtBUP9VjgwRiGbf1p2K"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_IIMARr58ta7HSZtBUP9VjgwRiGbf1p2K)"><g id="change"><path d=" M 323.399 86.645 L 358.118 86.645 C 371.182 86.645 381.789 97.252 381.789 110.316 L 381.789 110.316 C 381.789 123.381 371.182 133.988 358.118 133.988 L 323.399 133.988 C 310.335 133.988 299.728 123.381 299.728 110.316 L 299.728 110.316 C 299.728 97.252 310.335 86.645 323.399 86.645 Z M 157.7 86.645 L 192.418 86.645 C 205.482 86.645 216.089 97.252 216.089 110.316 L 216.089 110.316 C 216.089 123.381 205.482 133.988 192.418 133.988 L 157.7 133.988 C 144.635 133.988 134.028 123.381 134.028 110.316 L 134.028 110.316 C 134.028 97.252 144.635 86.645 157.7 86.645 Z " fill-rule="evenodd" fill="rgb(146,189,211)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_jUDhQFywSQIT9VP37FMkbucxMZede2gi"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_jUDhQFywSQIT9VP37FMkbucxMZede2gi)"><g id="change"><path d=" M 295.054 34.943 C 284.892 14.241 263.591 0 238.989 0 C 211.714 0 188.495 17.505 179.969 41.886 C 150.046 46.528 127.118 72.43 127.118 103.645 C 127.118 138.149 155.131 166.161 189.634 166.161 C 216.91 166.161 240.129 148.656 248.655 124.275 C 255.206 123.259 261.422 121.224 267.145 118.353 C 269.615 149.691 295.86 174.387 327.828 174.387 C 361.424 174.387 388.699 147.112 388.699 113.516 C 388.699 84.008 367.657 59.376 339.756 53.866 C 336.015 40.813 323.98 31.258 309.731 31.258 C 304.423 31.258 299.422 32.584 295.054 34.943 Z " fill="rgb(13,47,59)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_FhmJBHOEhLHolp013dGZE4oSao8fhC9n"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_FhmJBHOEhLHolp013dGZE4oSao8fhC9n)"><g id="change"><path d=" M 278.944 55.951 C 272.321 53.785 265.256 52.597 257.911 52.597 C 220.566 52.597 190.297 82.866 190.297 120.211 L 190.297 142.51 C 235.373 135.78 271.152 100.674 278.944 55.951 Z " fill="rgb(12,36,54)"/><path d=" M 257.91 52.598 C 255.498 52.598 253.119 52.729 250.774 52.977 C 250.115 57.747 249.748 62.606 249.748 67.558 C 249.748 115.604 281.709 156.165 325.521 169.196 L 325.521 120.212 C 325.521 82.866 295.25 52.598 257.91 52.598 Z " fill="rgb(19,52,65)"/></g></g></svg>
</div>
</div>
<div class="feature eyebrows hide" data-display="eyebrows">
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_2LRr08yrQvhEPNHX1CuH4uPDH2ipxey0"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_2LRr08yrQvhEPNHX1CuH4uPDH2ipxey0)"><g id="change"></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_2LRr08yrQvhEPNHX1CuH4uPDH2ipxey0"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_2LRr08yrQvhEPNHX1CuH4uPDH2ipxey0)"><g id="change"><g id="brows"><path d=" M 283.505 138.389 L 310.11 138.389 C 314.751 138.389 318.518 142.156 318.518 146.797 L 318.518 148.072 C 318.518 152.713 314.751 156.481 310.11 156.481 L 283.505 156.481 C 278.864 156.481 275.096 152.713 275.096 148.072 L 275.096 146.797 C 275.096 142.156 278.864 138.389 283.505 138.389 Z M 205.707 138.389 L 232.312 138.389 C 236.953 138.389 240.721 142.156 240.721 146.797 L 240.721 148.072 C 240.721 152.713 236.953 156.481 232.312 156.481 L 205.707 156.481 C 201.067 156.481 197.299 152.713 197.299 148.072 L 197.299 146.797 C 197.299 142.156 201.067 138.389 205.707 138.389 Z " fill-rule="evenodd" fill="rgb(11,45,61)"/></g></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_CSHetOo14ch7d3lzrDQOEQFk0qGtUxzg"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_CSHetOo14ch7d3lzrDQOEQFk0qGtUxzg)"><g id="change"><path d=" M 302.078 168.511 L 265.57 177.159 C 260.991 178.243 258.154 182.841 259.239 187.42 L 259.281 187.598 C 260.365 192.176 264.963 195.013 269.542 193.929 L 306.05 185.281 C 310.628 184.196 313.465 179.599 312.381 175.02 L 312.339 174.842 C 311.254 170.263 306.656 167.427 302.078 168.511 Z M 212.24 168.511 L 248.748 177.159 C 253.326 178.243 256.163 182.841 255.079 187.42 L 255.036 187.598 C 253.952 192.176 249.354 195.013 244.775 193.929 L 208.267 185.281 C 203.689 184.196 200.852 179.599 201.936 175.02 L 201.979 174.842 C 203.063 170.263 207.661 167.427 212.24 168.511 Z " fill-rule="evenodd" fill="rgb(86,101,113)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_KkOZIwMP4O3Yqs2YrFaY8o3hovFrTbDO"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_KkOZIwMP4O3Yqs2YrFaY8o3hovFrTbDO)"><g id="change"><path d=" M 308.832 184.516 L 281.23 170.605 C 276.703 168.324 271.174 170.147 268.893 174.675 L 268.893 174.675 C 266.611 179.202 268.434 184.731 272.962 187.013 L 300.563 200.923 C 305.091 203.204 310.619 201.381 312.901 196.853 L 312.901 196.853 C 315.183 192.326 313.359 186.797 308.832 184.516 Z M 205.486 184.516 L 233.087 170.605 C 237.614 168.324 243.143 170.147 245.425 174.675 L 245.425 174.675 C 247.706 179.202 245.883 184.731 241.355 187.013 L 213.754 200.923 C 209.227 203.204 203.698 201.381 201.416 196.853 L 201.416 196.853 C 199.135 192.326 200.958 186.797 205.486 184.516 Z " fill-rule="evenodd" fill="rgb(89,99,111)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_Iy03QxOJCU9hDm8eDmFzpZ1VKe0Z6ag3"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_Iy03QxOJCU9hDm8eDmFzpZ1VKe0Z6ag3)"><g id="change"><path d="M 211.374 167.311 L 241.859 167.311 C 246.853 167.311 250.909 171.366 250.909 176.361 L 250.909 176.361 C 250.909 181.355 246.853 185.411 241.859 185.411 L 211.374 185.411 C 206.38 185.411 202.324 181.355 202.324 176.361 L 202.324 176.361 C 202.324 171.366 206.38 167.311 211.374 167.311 Z" style="stroke:none;fill:#596372;stroke-miterlimit:10;"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?>
<!-- Generator: Gravit.io -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 500 912" width="500" height="912">
<g id="change">
<path d=" M 205.707 118.389 L 232.312 118.389 C 236.953 118.389 240.721 122.156 240.721 126.797 L 240.721 128.072 C 240.721 132.713 236.953 136.481 232.312 136.481 L 205.707 136.481 C 201.067 136.481 197.299 132.713 197.299 128.072 L 197.299 126.797 C 197.299 122.156 201.067 118.389 205.707 118.389 Z " fill-rule="evenodd" fill="rgb(11,45,61)" />
<path d=" M 283.505 138.389 L 310.11 138.389 C 314.751 138.389 318.518 142.156 318.518 146.797 L 318.518 148.072 C 318.518 152.713 314.751 156.481 310.11 156.481 L 283.505 156.481 C 278.864 156.481 275.096 152.713 275.096 148.072 L 275.096 146.797 C 275.096 142.156 278.864 138.389 283.505 138.389 Z " fill-rule="evenodd" fill="rgb(11,45,61)" />
</g>
</svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_y22YX9AYdZynoGiKwRdg5iLCOCqnt1JE"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_y22YX9AYdZynoGiKwRdg5iLCOCqnt1JE)"><g id="change"><path d="M 207.38 153.989 L 221.817 153.989 C 225.004 153.989 227.592 156.576 227.592 159.764 L 227.592 159.764 C 227.592 162.951 225.004 165.538 221.817 165.538 L 207.38 165.538 C 204.193 165.538 201.606 162.951 201.606 159.764 L 201.606 159.764 C 201.606 156.576 204.193 153.989 207.38 153.989 Z" fill="rgb(52, 80, 97)" /><path d="M 294 153.989 L 308.437 153.989 C 311.624 153.989 314.212 156.576 314.212 159.764 L 314.212 159.764 C 314.212 162.951 311.624 165.538 308.437 165.538 L 294 165.538 C 290.813 165.538 288.226 162.951 288.226 159.764 L 288.226 159.764 C 288.226 156.576 290.813 153.989 294 153.989 Z" fill="rgb(52, 80, 97)" /></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_FW5g14rChvptWQVVrJLyNyCSZUv7wheY"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_FW5g14rChvptWQVVrJLyNyCSZUv7wheY)"><g id="change"><path d=" M 293.987 96.837 L 326.63 96.837 C 333.741 96.837 339.515 102.61 339.515 109.722 L 339.515 109.722 C 339.515 116.833 333.741 122.607 326.63 122.607 L 293.987 122.607 C 286.876 122.607 281.102 116.833 281.102 109.722 L 281.102 109.722 C 281.102 102.61 286.876 96.837 293.987 96.837 Z M 189.187 96.837 L 221.83 96.837 C 228.942 96.837 234.715 102.61 234.715 109.722 L 234.715 109.722 C 234.715 116.833 228.942 122.607 221.83 122.607 L 189.187 122.607 C 182.076 122.607 176.302 116.833 176.302 109.722 L 176.302 109.722 C 176.302 102.61 182.076 96.837 189.187 96.837 Z " fill-rule="evenodd" fill="rgb(246,69,58)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_n7cQujCOjC3lwylkSxDtfU1VyjIrEJ7J"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_n7cQujCOjC3lwylkSxDtfU1VyjIrEJ7J)"><g id="change"><path d=" M 281.642 142.255 L 318.013 142.255 C 323.944 142.255 328.759 147.07 328.759 153.001 L 328.759 153.001 C 328.759 158.932 323.944 163.747 318.013 163.747 L 281.642 163.747 C 275.711 163.747 270.896 158.932 270.896 153.001 L 270.896 153.001 C 270.896 147.07 275.711 142.255 281.642 142.255 Z M 195.673 142.255 L 232.044 142.255 C 237.975 142.255 242.79 147.07 242.79 153.001 L 242.79 153.001 C 242.79 158.932 237.975 163.747 232.044 163.747 L 195.673 163.747 C 189.742 163.747 184.927 158.932 184.927 153.001 L 184.927 153.001 C 184.927 147.07 189.742 142.255 195.673 142.255 Z " fill-rule="evenodd" fill="rgb(13,47,57)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_nBXOWmZhpEhNpziZ4riHQPivJYuJMFPL"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_nBXOWmZhpEhNpziZ4riHQPivJYuJMFPL)"><g id="change"><path d=" M 284.575 117.382 L 319.279 117.382 C 324.938 117.382 329.532 121.976 329.532 127.635 L 329.532 127.635 C 329.532 133.294 324.938 137.889 319.279 137.889 L 284.575 137.889 C 278.916 137.889 274.322 133.294 274.322 127.635 L 274.322 127.635 C 274.322 121.976 278.916 117.382 284.575 117.382 Z M 196.538 117.382 L 231.242 117.382 C 236.901 117.382 241.495 121.976 241.495 127.635 L 241.495 127.635 C 241.495 133.294 236.901 137.889 231.242 137.889 L 196.538 137.889 C 190.879 137.889 186.285 133.294 186.285 127.635 L 186.285 127.635 C 186.285 121.976 190.879 117.382 196.538 117.382 Z " fill-rule="evenodd" fill="rgb(17,46,59)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_Xd9ApaQmZM4rHGqgwf24vnGeFS594AxF"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_Xd9ApaQmZM4rHGqgwf24vnGeFS594AxF)"><g id="change"><path d=" M 286.119 96.648 L 318.784 96.648 C 323.701 96.648 327.693 100.64 327.693 105.557 L 327.693 105.557 C 327.693 110.473 323.701 114.465 318.784 114.465 L 286.119 114.465 C 281.202 114.465 277.211 110.473 277.211 105.557 L 277.211 105.557 C 277.211 100.64 281.202 96.648 286.119 96.648 Z M 195.548 96.648 L 228.213 96.648 C 233.13 96.648 237.122 100.64 237.122 105.557 L 237.122 105.557 C 237.122 110.473 233.13 114.465 228.213 114.465 L 195.548 114.465 C 190.632 114.465 186.64 110.473 186.64 105.557 L 186.64 105.557 C 186.64 100.64 190.632 96.648 195.548 96.648 Z " fill-rule="evenodd" fill="rgb(59,121,144)"/></g></g></svg>
</div>
</div>
<div class="feature glasses hide" data-display="glasses">
<div class="asset">
<?xml version="1.0" standalone="no"?>
<!-- Generator: Gravit.io -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912">
<defs>
<clipPath id="_clipPath_fpK4GWwOM3ysxGgmgd0HwuUTsdfNl2gZ">
<rect width="515.8" height="912" />
</clipPath>
</defs>
<g clip-path="url(#_clipPath_fpK4GWwOM3ysxGgmgd0HwuUTsdfNl2gZ)">
<g id="change">
</g>
</g>
</svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?>
<!-- Generator: Gravit.io -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912">
<defs>
<clipPath id="_clipPath_fpK4GWwOM3ysxGgmgd0HwuUTsdfNl2gZ">
<rect width="515.8" height="912" />
</clipPath>
</defs>
<g clip-path="url(#_clipPath_fpK4GWwOM3ysxGgmgd0HwuUTsdfNl2gZ)">
<g id="change">
<path d=" M 339.409 168.9 L 176.409 168.9 L 176.409 156.481 L 339.409 156.481 L 339.409 168.9 Z " fill="rgb(255,255,255)" />
<path d=" M 187.802 158.918 L 187.802 174.079 C 187.802 191.241 201.71 205.152 218.875 205.152 C 236.033 205.152 249.946 191.241 249.946 174.079 L 249.946 158.918 L 187.802 158.918 Z " fill="rgb(46,189,231)" />
<path d=" M 265.69 158.918 L 265.69 174.079 C 265.69 191.241 279.6 205.152 296.763 205.152 C 313.923 205.152 327.834 191.241 327.834 174.079 L 327.834 158.918 L 265.69 158.918 Z " fill="rgb(46,189,231)" />
<path d=" M 187.802 158.918 L 187.802 174.079 C 187.802 181.395 190.336 188.118 194.569 193.427 L 229.08 158.918 L 187.802 158.918 Z " fill="rgb(165,223,249)" />
<path d=" M 249.945 158.918 L 235.836 158.918 L 197.822 196.932 C 201.196 200.041 205.255 202.41 209.748 203.789 L 249.945 163.593 L 249.945 158.918 Z " fill="rgb(165,223,249)" />
<path d=" M 265.69 158.918 L 265.69 174.079 C 265.69 181.411 268.234 188.147 272.478 193.46 L 307.023 158.918 L 265.69 158.918 Z " fill="rgb(165,223,249)" />
<path d=" M 327.835 174.078 L 327.835 168.9 L 291.953 204.785 C 293.522 205.022 295.128 205.153 296.763 205.153 C 313.923 205.153 327.835 191.242 327.835 174.078 Z " fill="rgb(165,223,249)" />
<path d=" M 210.371 201.433 L 210.464 201.46 C 213.194 202.298 216.019 202.718 218.873 202.718 C 234.666 202.718 247.512 189.871 247.512 174.078 L 247.512 161.353 L 190.231 161.353 L 190.231 174.078 C 190.231 174.93 190.276 175.829 190.371 176.815 C 190.391 176.984 190.412 177.154 190.438 177.323 L 190.491 177.71 C 190.565 178.304 190.648 178.89 190.76 179.47 C 190.816 179.78 190.885 180.086 190.961 180.387 C 191.106 181.026 191.235 181.535 191.376 182.036 C 191.486 182.403 191.595 182.763 191.713 183.114 C 191.87 183.587 192.046 184.057 192.226 184.526 L 192.297 184.698 C 192.411 184.996 192.528 185.293 192.653 185.578 C 192.856 186.037 193.077 186.48 193.301 186.925 L 193.493 187.308 C 193.59 187.511 193.686 187.712 193.8 187.912 C 194.113 188.482 194.457 189.022 194.803 189.565 C 195.094 190.014 195.403 190.449 195.718 190.878 L 195.976 191.238 C 196.05 191.346 196.126 191.451 196.203 191.563 L 196.478 191.902 C 197.356 193.004 198.372 194.085 199.495 195.12 L 200.402 195.955 C 200.441 195.987 200.476 196.017 200.508 196.048 L 200.787 196.275 C 201.369 196.753 201.972 197.194 202.585 197.619 L 203.029 197.929 C 203.667 198.36 204.323 198.75 204.991 199.121 L 205.494 199.393 C 206.177 199.759 206.881 200.1 207.599 200.408 L 207.99 200.563 C 208.713 200.863 209.445 201.133 210.188 201.372 L 210.371 201.433 Z M 218.873 207.583 C 216.031 207.583 213.21 207.227 210.467 206.516 L 210.414 206.571 L 208.767 206.024 C 207.873 205.74 207.011 205.421 206.146 205.065 L 205.671 204.877 C 204.879 204.535 204.07 204.146 203.213 203.691 L 202.635 203.38 C 201.836 202.935 201.08 202.476 200.336 201.98 L 199.815 201.622 C 199.095 201.121 198.394 200.606 197.718 200.055 L 197.434 199.819 C 196.976 199.436 196.571 199.083 196.174 198.718 L 194.375 197.06 L 194.371 197.067 L 194.309 197.003 L 194.315 196.998 L 192.664 194.944 C 192.436 194.658 192.221 194.357 192.006 194.059 L 191.779 193.737 C 191.414 193.238 191.057 192.732 190.717 192.204 C 190.307 191.57 189.911 190.93 189.543 190.265 C 189.393 190 189.257 189.721 189.121 189.446 L 188.959 189.12 C 188.697 188.599 188.436 188.074 188.2 187.537 C 188.047 187.187 187.905 186.831 187.763 186.473 L 187.701 186.304 C 187.484 185.757 187.28 185.209 187.095 184.651 C 186.952 184.231 186.828 183.815 186.702 183.391 C 186.532 182.808 186.384 182.205 186.244 181.603 C 186.134 181.121 186.048 180.757 185.979 180.384 C 185.85 179.704 185.75 179.017 185.659 178.32 L 185.621 178.006 C 185.585 177.762 185.549 177.517 185.528 177.271 C 185.421 176.133 185.366 175.087 185.366 174.078 L 185.366 156.482 L 252.381 156.482 L 252.381 174.078 C 252.381 192.553 237.349 207.583 218.873 207.583 Z " fill="rgb(255,255,255)" />
<path d=" M 293.302 202.49 L 293.583 202.523 C 293.762 202.547 293.937 202.573 294.12 202.583 C 295.101 202.674 295.965 202.719 296.762 202.719 C 312.552 202.719 325.401 189.871 325.401 174.078 L 325.401 161.353 L 268.122 161.353 L 268.122 174.078 C 268.122 174.932 268.163 175.832 268.261 176.815 C 268.275 176.989 268.303 177.163 268.327 177.334 L 268.377 177.707 C 268.451 178.308 268.537 178.895 268.647 179.47 C 268.704 179.783 268.776 180.088 268.845 180.393 C 268.995 181.031 269.122 181.543 269.268 182.049 C 269.372 182.405 269.484 182.767 269.599 183.116 C 269.761 183.595 269.936 184.066 270.119 184.529 L 270.179 184.69 C 270.298 184.993 270.417 185.294 270.542 185.59 C 270.744 186.043 270.969 186.485 271.196 186.934 L 271.381 187.306 C 271.484 187.513 271.584 187.719 271.696 187.924 C 271.983 188.451 272.309 188.961 272.632 189.465 C 272.94 189.944 273.262 190.41 273.596 190.868 L 273.853 191.223 C 273.935 191.343 274.021 191.462 274.108 191.581 L 274.39 191.93 C 278.878 197.551 285.259 201.245 292.357 202.345 L 293.302 202.49 Z M 296.762 207.584 C 295.812 207.584 294.803 207.536 293.679 207.432 C 293.447 207.406 293.218 207.382 292.986 207.351 L 292.366 207.281 C 292.104 207.253 291.842 207.227 291.581 207.188 L 286.838 206.451 L 287.144 206.145 C 281.543 204.475 276.48 201.369 272.443 197.1 L 272.364 197.186 L 270.58 194.979 C 270.339 194.679 270.115 194.363 269.886 194.048 L 269.663 193.731 C 269.272 193.197 268.897 192.648 268.537 192.089 C 268.158 191.496 267.783 190.901 267.438 190.279 C 267.287 190.006 267.148 189.727 267.013 189.45 L 266.851 189.128 C 266.59 188.606 266.328 188.083 266.092 187.549 C 265.934 187.187 265.793 186.826 265.65 186.459 L 265.59 186.315 C 265.374 185.764 265.171 185.215 264.985 184.652 C 264.846 184.24 264.72 183.825 264.596 183.407 C 264.422 182.81 264.273 182.209 264.131 181.606 C 264.023 181.124 263.937 180.761 263.866 180.388 C 263.736 179.711 263.639 179.016 263.551 178.322 L 263.507 178.022 C 263.472 177.774 263.439 177.525 263.415 177.272 C 263.31 176.137 263.255 175.09 263.255 174.078 L 263.255 156.481 L 330.268 156.481 L 330.268 174.078 C 330.268 192.553 315.236 207.584 296.762 207.584 Z " fill="rgb(255,255,255)" />
</g>
</g>
</svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?>
<!-- Generator: Gravit.io -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912">
<defs>
<clipPath id="_clipPath_tqSigyTFKoUyTrvpC8pD2KwYWjvRWtdB">
<rect width="515.8" height="912" />
</clipPath>
</defs>
<g clip-path="url(#_clipPath_tqSigyTFKoUyTrvpC8pD2KwYWjvRWtdB)">
<g id="change">
<path d=" M 323 150.479 C 323 143.585 317.415 138 310.523 138 L 205.296 138 C 198.404 138 192.817 143.585 192.817 150.479 L 192.817 173.681 L 192.817 173.773 L 192.817 173.863 C 192.817 189.223 205.273 201.68 220.636 201.68 L 295.181 201.68 C 310.544 201.68 323 189.223 323 173.863 L 323 173.773 L 323 150.479 Z " fill="rgb(12,36,54)" />
<path d=" M 211.08 138 L 192.818 156.263 L 192.818 173.681 L 192.818 173.773 L 192.818 173.862 C 192.818 175.561 192.975 177.218 193.27 178.834 L 234.101 138 L 211.08 138 Z " fill="rgb(95,121,187)" />
<path d=" M 238.499 138 L 194.143 182.354 C 194.742 184.225 195.534 186.002 196.494 187.677 L 246.17 138 L 238.499 138 Z " fill="rgb(95,121,187)" />
</g>
</g>
</svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?>
<!-- Generator: Gravit.io -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912">
<defs>
<clipPath id="_clipPath_MZaCk2U6mv7CYhuNjQBbE1yDSGoPiQQi">
<rect width="515.8" height="912" />
</clipPath>
</defs>
<g clip-path="url(#_clipPath_MZaCk2U6mv7CYhuNjQBbE1yDSGoPiQQi)">
<g id="change">
<g opacity="0.69999701">
<path d=" M 188.425 172.461 C 189.047 179.379 191.99 185.632 196.463 190.447 L 214.45 172.461 L 188.425 172.461 Z " fill="rgb(255,255,255)" />
</g>
<g opacity="0.69999701">
<path d=" M 199.107 192.974 C 201.873 195.32 205.059 197.179 208.535 198.42 L 234.493 172.461 L 219.624 172.461 L 199.107 192.974 Z " fill="rgb(255,255,255)" />
</g>
<g opacity="0.69999701">
<path d=" M 278.759 172.596 L 269.202 182.155 C 272.159 188.745 277.392 194.098 283.891 197.214 L 308.506 172.596 L 278.759 172.596 Z " fill="rgb(255,255,255)" />
</g>
<g opacity="0.69999701">
<path d=" M 313.679 172.596 L 287.58 198.697 C 290.56 199.668 293.734 200.199 297.029 200.199 C 298.459 200.199 299.865 200.099 301.246 199.908 L 327.215 173.935 C 327.276 173.494 327.333 173.048 327.373 172.596 L 313.679 172.596 Z " fill="rgb(255,255,255)" />
</g>
<path d=" M 297.028 200.199 C 281.193 200.199 268.141 188.062 266.684 172.596 L 327.374 172.596 C 325.921 188.062 312.865 200.199 297.028 200.199 Z M 218.789 200.199 C 202.905 200.199 189.817 187.992 188.426 172.461 L 245.966 172.461 L 245.966 172.596 L 249.135 172.596 C 247.678 188.062 234.626 200.199 218.789 200.199 Z M 332.406 166.977 L 333 166.977 L 261.058 166.977 L 254.757 166.977 L 245.966 166.977 L 182.817 166.977 L 182.817 169.715 C 182.817 189.553 198.954 205.69 218.789 205.69 C 237.651 205.69 253.159 191.087 254.631 172.596 L 261.181 172.596 C 262.66 191.087 278.164 205.69 297.028 205.69 C 315.892 205.69 331.402 191.087 332.874 172.596 L 332.404 172.596 L 332.406 166.977 Z " fill="rgb(58,77,92)" />
</g>
</g>
</svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_XEPn5tDX8a5gM8brAI0qkVbE4mMYhf6l"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_XEPn5tDX8a5gM8brAI0qkVbE4mMYhf6l)"><g id="change"><path d=" M 318.529 172.8 L 252.306 172.8 L 252.306 160.001 L 318.529 160.001 L 318.529 172.8 Z " fill="rgb(0,102,132)"/><path d=" M 185.749 162.511 L 185.749 178.136 C 185.749 195.824 200.084 210.163 217.773 210.163 C 235.457 210.163 249.797 195.824 249.797 178.136 L 249.797 162.511 L 185.749 162.511 Z " fill="rgb(46,189,231)"/><path d=" M 266.023 162.511 L 266.023 178.136 C 266.023 195.824 280.358 210.163 298.047 210.163 C 315.733 210.163 330.071 195.824 330.071 178.136 L 330.071 162.511 L 266.023 162.511 Z " fill="rgb(46,189,231)"/><path d=" M 185.749 162.511 L 185.749 178.136 C 185.749 185.676 188.362 192.605 192.722 198.078 L 228.291 162.511 L 185.749 162.511 Z " fill="rgb(165,223,249)"/><path d=" M 249.796 162.511 L 235.255 162.511 L 196.076 201.69 C 199.552 204.894 203.738 207.334 208.368 208.756 L 249.796 167.328 L 249.796 162.511 Z " fill="rgb(165,223,249)"/><path d=" M 266.023 162.511 L 266.023 178.136 C 266.023 185.694 268.645 192.635 273.019 198.113 L 308.621 162.511 L 266.023 162.511 Z " fill="rgb(165,223,249)"/><path d=" M 330.071 178.136 L 330.071 172.799 L 293.091 209.783 C 294.706 210.027 296.362 210.162 298.047 210.162 C 315.733 210.162 330.071 195.825 330.071 178.136 Z " fill="rgb(165,223,249)"/><path d=" M 209.01 206.327 L 209.105 206.357 C 211.92 207.219 214.831 207.654 217.773 207.654 C 234.05 207.654 247.288 194.413 247.288 178.136 L 247.288 165.019 L 188.254 165.019 L 188.254 178.136 C 188.254 179.014 188.297 179.939 188.397 180.956 C 188.418 181.131 188.439 181.307 188.466 181.478 L 188.522 181.878 C 188.598 182.49 188.684 183.095 188.797 183.692 C 188.857 184.011 188.926 184.326 189.004 184.64 C 189.153 185.296 189.289 185.822 189.433 186.34 C 189.546 186.716 189.659 187.087 189.781 187.448 C 189.943 187.936 190.123 188.423 190.31 188.903 L 190.382 189.082 C 190.5 189.387 190.618 189.695 190.749 189.987 C 190.958 190.46 191.184 190.918 191.417 191.377 L 191.616 191.77 C 191.715 191.979 191.813 192.189 191.931 192.394 C 192.255 192.979 192.61 193.539 192.965 194.098 C 193.266 194.56 193.583 195.008 193.906 195.45 L 194.173 195.82 C 194.249 195.932 194.328 196.042 194.407 196.154 L 194.69 196.506 C 195.597 197.643 196.643 198.757 197.799 199.823 L 198.735 200.683 C 198.775 200.717 198.812 200.745 198.843 200.778 L 199.132 201.013 C 199.734 201.506 200.353 201.962 200.985 202.398 L 201.442 202.717 C 202.101 203.162 202.777 203.564 203.465 203.944 L 203.984 204.227 C 204.687 204.603 205.413 204.954 206.153 205.273 L 206.557 205.432 C 207.301 205.739 208.055 206.02 208.822 206.265 L 209.01 206.327 Z M 217.773 212.667 C 214.843 212.667 211.936 212.3 209.109 211.566 L 209.055 211.623 L 207.355 211.059 C 206.436 210.766 205.546 210.438 204.657 210.071 L 204.165 209.877 C 203.348 209.525 202.515 209.123 201.632 208.656 L 201.036 208.335 C 200.212 207.876 199.433 207.404 198.669 206.891 L 198.13 206.524 C 197.389 206.007 196.667 205.476 195.97 204.909 L 195.677 204.666 C 195.205 204.269 194.788 203.905 194.377 203.529 L 192.523 201.821 L 192.521 201.828 L 192.456 201.763 L 192.461 201.757 L 190.76 199.644 C 190.525 199.346 190.302 199.033 190.081 198.728 L 189.848 198.399 C 189.472 197.884 189.105 197.362 188.753 196.816 C 188.332 196.165 187.923 195.503 187.544 194.817 C 187.389 194.545 187.249 194.259 187.108 193.973 L 186.942 193.636 C 186.673 193.101 186.402 192.561 186.16 192.006 C 186.002 191.643 185.856 191.278 185.71 190.909 L 185.646 190.736 C 185.421 190.172 185.212 189.608 185.02 189.034 C 184.874 188.6 184.746 188.17 184.617 187.734 C 184.441 187.131 184.287 186.511 184.144 185.89 C 184.032 185.395 183.941 185.019 183.869 184.635 C 183.738 183.934 183.634 183.224 183.54 182.507 L 183.501 182.184 C 183.466 181.932 183.427 181.681 183.406 181.425 C 183.296 180.252 183.239 179.175 183.239 178.136 L 183.239 160 L 252.306 160 L 252.306 178.136 C 252.306 197.177 236.813 212.667 217.773 212.667 Z " fill="rgb(0,102,132)"/><path d=" M 294.481 207.417 L 294.769 207.45 C 294.953 207.477 295.135 207.503 295.323 207.512 C 296.334 207.607 297.226 207.653 298.047 207.653 C 314.319 207.653 327.563 194.412 327.563 178.135 L 327.563 165.019 L 268.529 165.019 L 268.529 178.135 C 268.529 179.015 268.573 179.943 268.672 180.956 C 268.689 181.138 268.716 181.315 268.741 181.491 L 268.791 181.876 C 268.869 182.497 268.956 183.101 269.069 183.693 C 269.129 184.015 269.203 184.329 269.274 184.642 C 269.43 185.301 269.559 185.828 269.711 186.35 C 269.818 186.718 269.931 187.09 270.051 187.451 C 270.218 187.945 270.399 188.43 270.587 188.907 L 270.65 189.074 C 270.772 189.383 270.895 189.696 271.024 189.999 C 271.231 190.466 271.464 190.922 271.698 191.386 L 271.886 191.769 C 271.993 191.981 272.097 192.195 272.213 192.407 C 272.509 192.948 272.843 193.472 273.178 193.992 C 273.494 194.486 273.828 194.968 274.171 195.439 L 274.434 195.806 C 274.52 195.93 274.61 196.05 274.698 196.175 L 274.988 196.536 C 279.613 202.327 286.193 206.135 293.507 207.267 L 294.481 207.417 Z M 298.047 212.667 C 297.068 212.667 296.027 212.617 294.869 212.512 C 294.631 212.485 294.393 212.459 294.154 212.427 L 293.515 212.355 C 293.247 212.325 292.976 212.3 292.707 212.26 L 287.817 211.499 L 288.134 211.186 C 282.361 209.464 277.143 206.262 272.983 201.862 L 272.9 201.951 L 271.062 199.677 C 270.815 199.367 270.584 199.042 270.349 198.717 L 270.116 198.39 C 269.714 197.84 269.328 197.276 268.956 196.698 C 268.565 196.089 268.18 195.474 267.824 194.833 C 267.669 194.55 267.524 194.263 267.386 193.977 L 267.219 193.646 C 266.951 193.108 266.68 192.569 266.437 192.02 C 266.274 191.647 266.128 191.274 265.979 190.897 L 265.919 190.745 C 265.698 190.181 265.488 189.612 265.297 189.033 C 265.152 188.61 265.024 188.183 264.896 187.751 C 264.716 187.136 264.561 186.515 264.417 185.895 C 264.304 185.397 264.217 185.021 264.143 184.639 C 264.009 183.941 263.908 183.224 263.818 182.509 L 263.773 182.2 C 263.738 181.945 263.704 181.69 263.678 181.426 C 263.57 180.258 263.514 179.181 263.514 178.135 L 263.514 160.001 L 332.578 160.001 L 332.578 178.135 C 332.578 197.177 317.085 212.667 298.047 212.667 Z " fill="rgb(0,102,132)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_DaIAcfLETclNGSSRtQtODaXL376TSevO"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_DaIAcfLETclNGSSRtQtODaXL376TSevO)"><g id="change"><g id="g19371"><g id="g19379"><clipPath id="_clipPath_sq6AisXupTCkwo89wwYiTa8OzLH77mij"><path d=" M 192.161 147.724 L 251.292 147.724 L 251.292 206.871 L 192.161 206.871 L 192.161 147.724 Z " fill="rgb(255,255,255)"/></clipPath><g clip-path="url(#_clipPath_sq6AisXupTCkwo89wwYiTa8OzLH77mij)"><g id="g19381" style="opacity:0.64999402;"><g id="g19383" style="opacity:0.64999402;"><g opacity="0.64999402"><path d=" M 192.159 164.363 L 234.654 206.865 C 241.747 203.072 247.209 196.648 249.741 188.89 L 210.127 149.283 C 202.372 151.808 195.947 157.273 192.159 164.363 Z " fill="rgb(255,255,255)"/></g></g><g id="g19387" style="opacity:0.64999402;"><g opacity="0.64999402"><path d=" M 219.879 147.729 C 219.2 147.729 218.537 147.758 217.869 147.802 L 251.215 181.152 C 251.262 180.482 251.289 179.814 251.289 179.142 C 251.289 161.795 237.226 147.729 219.879 147.729 Z " fill="rgb(255,255,255)"/></g></g></g></g></g></g><g id="g19391"><path d=" M 219.879 210.553 C 202.53 210.553 188.467 196.489 188.467 179.143 C 188.467 161.796 202.53 147.729 219.879 147.729 C 237.226 147.729 251.289 161.796 251.289 179.143 C 251.289 196.489 237.226 210.553 219.879 210.553 Z M 219.879 143.084 C 199.963 143.084 183.817 159.228 183.817 179.143 C 183.817 199.055 199.963 215.201 219.879 215.201 C 239.791 215.201 255.937 199.055 255.937 179.143 C 255.937 159.228 239.791 143.084 219.879 143.084 Z " fill="rgb(155,29,89)"/></g><g id="g19395"><g id="g19403"><clipPath id="_clipPath_ZkzPF2PPM7Gx9D2eLjhzfzfYWSOAC94q"><path d=" M 268.221 147.724 L 327.352 147.724 L 327.352 206.871 L 268.221 206.871 L 268.221 147.724 Z " fill="rgb(255,255,255)"/></clipPath><g clip-path="url(#_clipPath_ZkzPF2PPM7Gx9D2eLjhzfzfYWSOAC94q)"><g id="g19405" style="opacity:0.64999402;"><g id="g19407" style="opacity:0.64999402;"><g opacity="0.64999402"><path d=" M 268.224 164.363 L 310.72 206.865 C 317.811 203.072 323.274 196.648 325.801 188.89 L 286.193 149.283 C 278.435 151.808 272.008 157.273 268.224 164.363 Z " fill="rgb(255,255,255)"/></g></g><g id="g19411" style="opacity:0.64999402;"><g opacity="0.64999402"><path d=" M 295.942 147.729 C 295.264 147.729 294.598 147.758 293.932 147.802 L 327.282 181.152 C 327.323 180.482 327.351 179.814 327.351 179.142 C 327.351 161.795 313.29 147.729 295.942 147.729 Z " fill="rgb(255,255,255)"/></g></g></g></g></g></g><g id="g19415"><path d=" M 295.942 210.553 C 278.592 210.553 264.53 196.489 264.53 179.143 C 264.53 161.796 278.592 147.729 295.942 147.729 C 313.29 147.729 327.351 161.796 327.351 179.143 C 327.351 196.489 313.29 210.553 295.942 210.553 Z M 295.942 143.084 C 276.024 143.084 259.88 159.228 259.88 179.143 C 259.88 199.055 276.024 215.201 295.942 215.201 C 315.856 215.201 332 199.055 332 179.143 C 332 159.228 315.856 143.084 295.942 143.084 Z " fill="rgb(155,29,89)"/></g><path d=" M 263.879 182.653 L 253.936 182.653 L 253.936 175.631 L 263.879 175.631 L 263.879 182.653 Z " fill="rgb(155,29,89)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_EqYSskeHKoeCmgatHvkDUcuR8x6vYciL"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_EqYSskeHKoeCmgatHvkDUcuR8x6vYciL)"><g id="change"><path d=" M 335 174.978 L 316.17 174.978 L 316.17 166.284 L 335 166.284 L 335 174.978 Z " fill="rgb(0,0,0)"/><g id="g19937"><path d=" M 291.828 199.744 C 278.844 199.744 268.317 189.219 268.317 176.237 C 268.317 163.251 278.844 152.727 291.828 152.727 C 304.814 152.727 315.34 163.251 315.34 176.237 C 315.34 189.219 304.814 199.744 291.828 199.744 Z M 291.828 144.91 C 274.53 144.91 260.503 158.936 260.503 176.237 C 260.503 193.537 274.53 207.562 291.828 207.562 C 309.128 207.562 323.157 193.537 323.157 176.237 C 323.157 158.936 309.128 144.91 291.828 144.91 Z " fill="rgb(0,0,0)"/></g><g id="g19949"><g id="g19957"><clipPath id="_clipPath_1Qsa4VqzLyZ8HasavMNE0tycxJqK6L2o"><path d=" M 268.312 152.719 L 312.918 152.719 L 312.918 197.325 L 268.312 197.325 L 268.312 152.719 Z " fill="rgb(255,255,255)"/></clipPath><g clip-path="url(#_clipPath_1Qsa4VqzLyZ8HasavMNE0tycxJqK6L2o)"><g id="g19959" style="opacity:0.55000299;"><g id="g19961" style="opacity:0.55000299;"><g opacity="0.55000299"><path d=" M 291.828 152.726 C 289.542 152.726 287.332 153.059 285.24 153.667 L 269.261 169.65 C 268.651 171.74 268.317 173.947 268.317 176.236 C 268.317 181.162 269.837 185.735 272.425 189.512 L 305.106 156.835 C 301.327 154.243 296.754 152.726 291.828 152.726 Z " fill="rgb(255,255,255)"/></g></g><g id="g19965" style="opacity:0.55000299;"><g opacity="0.55000299"><path d=" M 308.034 159.213 L 274.804 192.438 C 276.7 194.434 278.941 196.091 281.434 197.327 L 312.918 165.842 C 311.687 163.348 310.026 161.11 308.034 159.213 Z " fill="rgb(255,255,255)"/></g></g></g></g></g></g><g id="g19905"><path d=" M 224.58 199.744 C 211.596 199.744 201.07 189.219 201.07 176.237 C 201.07 163.251 211.596 152.727 224.58 152.727 C 237.566 152.727 248.091 163.251 248.091 176.237 C 248.091 189.219 237.566 199.744 224.58 199.744 Z M 224.58 144.91 C 207.28 144.91 193.255 158.936 193.255 176.237 C 193.255 193.537 207.28 207.562 224.58 207.562 C 241.88 207.562 255.909 193.537 255.909 176.237 C 255.909 158.936 241.88 144.91 224.58 144.91 Z " fill="rgb(0,0,0)"/></g><g id="g19917"><g id="g19925"><clipPath id="_clipPath_C99kLcJDgVjgL4EjlHrCbZLgPImeJE9s"><path d=" M 201.076 152.719 L 245.665 152.719 L 245.665 197.325 L 201.076 197.325 L 201.076 152.719 Z " fill="rgb(255,255,255)"/></clipPath><g clip-path="url(#_clipPath_C99kLcJDgVjgL4EjlHrCbZLgPImeJE9s)"><g id="g19927" style="opacity:0.55000299;"><g id="g19929" style="opacity:0.55000299;"><g opacity="0.55000299"><path d=" M 224.58 152.726 C 222.292 152.726 220.086 153.059 217.994 153.667 L 202.013 169.65 C 201.401 171.74 201.07 173.947 201.07 176.236 C 201.07 181.162 202.587 185.735 205.177 189.512 L 237.858 156.835 C 234.079 154.243 229.507 152.726 224.58 152.726 Z " fill="rgb(255,255,255)"/></g></g><g id="g19933" style="opacity:0.55000299;"><g opacity="0.55000299"><path d=" M 240.786 159.213 L 207.556 192.438 C 209.452 194.434 211.692 196.091 214.186 197.327 L 245.668 165.842 C 244.439 163.348 242.778 161.11 240.786 159.213 Z " fill="rgb(255,255,255)"/></g></g></g></g></g></g><path d=" M 199.646 174.978 L 180.817 174.978 L 180.817 166.284 L 199.646 166.284 L 199.646 174.978 Z " fill="rgb(0,0,0)"/><path d=" M 274.014 160.397 L 244.144 160.397 L 244.144 151.703 L 274.014 151.703 L 274.014 160.397 Z " fill="rgb(0,0,0)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_p5JnoNr5tRm0szlprYIkwlRejR1YOpqC"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_p5JnoNr5tRm0szlprYIkwlRejR1YOpqC)"><g id="change"><g id="g22531"><g id="g22539"><clipPath id="_clipPath_J4aWaykYE2bUFiJAYJt9EhUwBdvzzpL4"><path d=" M 192.734 146.92 L 323.075 146.92 L 323.075 203.117 L 192.734 203.117 L 192.734 146.92 Z " fill="rgb(255,255,255)"/></clipPath><g clip-path="url(#_clipPath_J4aWaykYE2bUFiJAYJt9EhUwBdvzzpL4)"><g id="g22541" style="opacity:0.44999701;"><g id="g22543" style="opacity:0.44999701;"><g opacity="0.44999701"><path d=" M 220.832 146.918 L 199.912 146.918 L 192.735 154.097 L 192.735 175.015 C 192.735 179.303 193.703 183.366 195.428 187.003 L 232.823 149.61 C 229.184 147.887 225.119 146.918 220.832 146.918 Z " fill="rgb(255,255,255)"/></g></g><g id="g22547" style="opacity:0.44999701;"><g opacity="0.44999701"><path d=" M 237.472 152.391 L 198.208 191.655 C 200.727 195.07 203.999 197.893 207.778 199.887 L 245.702 161.961 C 243.71 158.183 240.886 154.911 237.472 152.391 Z " fill="rgb(255,255,255)"/></g></g><g id="g22551" style="opacity:0.44999701;"><g opacity="0.44999701"><path d=" M 323.081 146.918 L 307.241 146.918 L 268.848 185.309 C 272.081 193.489 279.044 199.8 287.631 202.13 L 323.081 166.678 L 323.081 146.918 Z " fill="rgb(255,255,255)"/></g></g><g id="g22555" style="opacity:0.44999701;"><g opacity="0.44999701"><path d=" M 294.985 203.113 C 310.48 203.113 323.081 190.508 323.081 175.016 L 323.081 174.109 L 294.1 203.09 C 294.398 203.1 294.688 203.113 294.985 203.113 Z " fill="rgb(255,255,255)"/></g></g></g></g></g></g><g id="g22559"><path d=" M 192.735 146.918 L 192.735 175.015 C 192.735 190.507 205.34 203.114 220.832 203.114 C 236.326 203.114 248.931 190.507 248.931 175.015 C 248.931 159.521 236.326 146.918 220.832 146.918 L 192.735 146.918 Z M 220.832 209.031 C 202.076 209.031 186.817 193.771 186.817 175.015 L 186.817 141 L 220.832 141 C 239.588 141 254.848 156.259 254.848 175.015 C 254.848 193.771 239.588 209.031 220.832 209.031 Z " fill="rgb(218,22,108)"/></g><g id="g22563"><path d=" M 294.985 146.918 C 279.49 146.918 266.886 159.521 266.886 175.015 C 266.886 190.507 279.49 203.114 294.985 203.114 C 310.48 203.114 323.081 190.507 323.081 175.015 L 323.081 146.918 L 294.985 146.918 Z M 260.971 175.015 C 260.971 156.259 276.231 141 294.985 141 L 329 141 L 329 175.015 C 329 193.771 313.739 209.031 294.985 209.031 C 276.231 209.031 260.971 193.771 260.971 175.015 Z " fill="rgb(218,22,108)"/></g><path d=" M 262.028 178.766 L 253.741 178.766 L 253.741 171.821 L 262.028 171.821 L 262.028 178.766 Z " fill="rgb(218,22,108)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_Yrf2T2d6h1DdyElmIOpjVc2OmUuY3KAE"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_Yrf2T2d6h1DdyElmIOpjVc2OmUuY3KAE)"><g id="change"><path d=" M 336 184.89 L 179.817 184.89 L 179.817 178 L 336 178 L 336 184.89 Z " fill="rgb(12,36,54)"/><g id="g26509"><path d=" M 225.028 209.634 C 242.502 209.634 256.669 195.471 256.669 178 L 193.392 178 C 193.392 195.471 207.554 209.634 225.028 209.634 Z " fill="rgb(12,36,54)"/></g><g id="g26513"><path d=" M 211.901 178 L 197.084 192.819 C 199.725 197.799 203.661 201.988 208.446 204.934 L 235.381 178 L 211.901 178 Z " fill="rgb(58,77,92)"/></g><g id="g26517"><path d=" M 242.521 178 L 213.186 207.331 C 216.161 208.534 219.369 209.296 222.716 209.542 L 254.267 178 L 242.521 178 Z " fill="rgb(58,77,92)"/></g><g id="g26521"><path d=" M 292.115 209.634 C 309.583 209.634 323.75 195.471 323.75 178 L 260.471 178 C 260.471 195.471 274.64 209.634 292.115 209.634 Z " fill="rgb(12,36,54)"/></g><g id="g26525"><path d=" M 278.986 178 L 264.162 192.819 C 266.808 197.799 270.743 201.988 275.53 204.934 L 302.465 178 L 278.986 178 Z " fill="rgb(58,77,92)"/></g><g id="g26529"><path d=" M 309.606 178 L 280.267 207.331 C 283.249 208.534 286.449 209.296 289.801 209.542 L 321.344 178 L 309.606 178 Z " fill="rgb(58,77,92)"/></g></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_9dTQobWT6qMZGI2pvYoHOuTwFg5I2YlT"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_9dTQobWT6qMZGI2pvYoHOuTwFg5I2YlT)"><g id="change"><path d=" M 336 184.89 L 179.817 184.89 L 179.817 178 L 336 178 L 336 184.89 Z " fill="rgb(12,36,54)"/><g id="g26509"><path d=" M 225.028 209.634 C 242.502 209.634 256.669 195.471 256.669 178 L 193.392 178 C 193.392 195.471 207.554 209.634 225.028 209.634 Z " fill="rgb(12,36,54)"/></g><g id="g26513"><path d=" M 211.901 178 L 197.084 192.819 C 199.725 197.799 203.661 201.988 208.446 204.934 L 235.381 178 L 211.901 178 Z " fill="rgb(95,121,187)"/></g><g id="g26517"><path d=" M 242.521 178 L 213.186 207.331 C 216.161 208.534 219.369 209.296 222.716 209.542 L 254.267 178 L 242.521 178 Z " fill="rgb(95,121,187)"/></g><g id="g26521"><path d=" M 292.115 209.634 C 309.583 209.634 323.75 195.471 323.75 178 L 260.471 178 C 260.471 195.471 274.64 209.634 292.115 209.634 Z " fill="rgb(12,36,54)"/></g><g id="g26525"><path d=" M 278.986 178 L 264.162 192.819 C 266.808 197.799 270.743 201.988 275.53 204.934 L 302.465 178 L 278.986 178 Z " fill="rgb(95,121,187)"/></g><g id="g26529"><path d=" M 309.606 178 L 280.267 207.331 C 283.249 208.534 286.449 209.296 289.801 209.542 L 321.344 178 L 309.606 178 Z " fill="rgb(95,121,187)"/></g></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_WTBYhclUb8fSJUuMAjzUzlXdekjO5XhW"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_WTBYhclUb8fSJUuMAjzUzlXdekjO5XhW)"><g id="change"><g id="g33707"><path d=" M 301.937 204.5 L 292.829 204.5 C 278.751 204.5 267.29 193.044 267.29 178.959 L 267.29 153.419 L 301.937 153.419 C 316.018 153.419 327.476 164.879 327.476 178.959 C 327.476 193.044 316.018 204.5 301.937 204.5 Z M 248.528 178.959 C 248.528 193.044 237.072 204.5 222.988 204.5 L 213.882 204.5 C 199.799 204.5 188.341 193.044 188.341 178.959 C 188.341 164.879 199.799 153.419 213.882 153.419 L 248.528 153.419 L 248.528 178.959 Z M 329.075 161.899 C 323.391 152.892 313.351 146.893 301.937 146.893 L 267.29 146.893 L 260.766 146.893 L 255.053 146.893 L 252.936 146.893 L 213.882 146.893 C 196.201 146.893 181.817 161.279 181.817 178.959 C 181.817 196.642 196.201 211.025 213.882 211.025 L 222.988 211.025 C 240.673 211.025 255.053 196.642 255.053 178.959 L 255.053 153.419 L 260.766 153.419 L 260.766 178.959 C 260.766 196.642 275.147 211.025 292.829 211.025 L 301.937 211.025 C 319.622 211.025 334 196.642 334 178.959 C 334 175.332 333.398 171.85 332.284 168.599 L 329.075 161.899 Z " fill="rgb(136,206,234)"/></g><g id="g33711"><g id="g33719"><clipPath id="_clipPath_wBhxb8Vvjp0tBxtnrwEdDdoVydDmKDyT"><path d=" M 188.335 153.411 L 248.53 153.411 L 248.53 204.493 L 188.335 204.493 L 188.335 153.411 Z " fill="rgb(255,255,255)"/></clipPath><g clip-path="url(#_clipPath_wBhxb8Vvjp0tBxtnrwEdDdoVydDmKDyT)"><g id="g33721" style="opacity:0.5;"><g id="g33723" style="opacity:0.5;"><g opacity="0.5"><path d=" M 188.341 178.959 C 188.341 193.042 199.798 204.5 213.882 204.5 L 222.99 204.5 C 237.071 204.5 248.529 193.042 248.529 178.959 L 248.529 153.419 L 213.882 153.419 C 199.798 153.419 188.341 164.879 188.341 178.959 Z " fill="rgb(255,255,255)"/></g></g></g></g></g></g><g id="g33727"><g id="g33735"><clipPath id="_clipPath_6LBpcm9AZWgiI8z25PaKAqCABSJJnzPE"><path d=" M 267.297 153.411 L 327.475 153.411 L 327.475 204.493 L 267.297 204.493 L 267.297 153.411 Z " fill="rgb(255,255,255)"/></clipPath><g clip-path="url(#_clipPath_6LBpcm9AZWgiI8z25PaKAqCABSJJnzPE)"><g id="g33737" style="opacity:0.5;"><g id="g33739" style="opacity:0.5;"><g opacity="0.5"><path d=" M 301.937 153.42 L 267.29 153.42 L 267.29 178.959 C 267.29 193.042 278.751 204.5 292.829 204.5 L 301.937 204.5 C 316.018 204.5 327.476 193.042 327.476 178.959 C 327.476 164.877 316.018 153.42 301.937 153.42 Z " fill="rgb(255,255,255)"/></g></g></g></g></g></g><g id="g33743"><g id="g33751"><clipPath id="_clipPath_eMKA5IF9W6SUHHQW4iEls0ttq4RKF34P"><path d=" M 188.335 153.411 L 233.586 153.411 L 233.586 193.844 L 188.335 193.844 L 188.335 153.411 Z " fill="rgb(255,255,255)"/></clipPath><g clip-path="url(#_clipPath_eMKA5IF9W6SUHHQW4iEls0ttq4RKF34P)"><g id="g33753" style="opacity:0.5;"><g id="g33755" style="opacity:0.5;"><g opacity="0.5"><path d=" M 213.882 153.42 C 199.8 153.42 188.341 164.877 188.341 178.959 C 188.341 184.516 190.132 189.655 193.152 193.852 L 233.583 153.42 L 213.882 153.42 Z " fill="rgb(255,255,255)"/></g></g></g></g></g></g><g id="g33759"><g id="g33767"><clipPath id="_clipPath_ebrMimBlUxOh5r9OjW8AKNhmqSxcutl9"><path d=" M 198.234 153.411 L 248.53 153.411 L 248.53 203.83 L 198.234 203.83 L 198.234 153.411 Z " fill="rgb(255,255,255)"/></clipPath><g clip-path="url(#_clipPath_ebrMimBlUxOh5r9OjW8AKNhmqSxcutl9)"><g id="g33769" style="opacity:0.5;"><g id="g33771" style="opacity:0.5;"><g opacity="0.5"><path d=" M 248.528 153.42 L 243.928 153.42 L 198.232 199.121 C 201.097 201.349 204.445 202.981 208.097 203.829 L 248.528 163.397 L 248.528 153.42 Z " fill="rgb(255,255,255)"/></g></g></g></g></g></g><g id="g33775"><g id="g33783"><clipPath id="_clipPath_PJjB3u9I4E4PH5noqP9VaXAS34PMc629"><path d=" M 267.297 153.411 L 323.285 153.411 L 323.285 203.254 L 267.297 203.254 L 267.297 153.411 Z " fill="rgb(255,255,255)"/></clipPath><g clip-path="url(#_clipPath_PJjB3u9I4E4PH5noqP9VaXAS34PMc629)"><g id="g33785" style="opacity:0.5;"><g id="g33787" style="opacity:0.5;"><g opacity="0.5"><path d=" M 301.937 153.42 L 287.08 153.42 L 267.29 173.213 L 267.29 178.959 C 267.29 190.308 274.734 199.945 284.989 203.26 L 323.286 164.963 C 318.716 158.02 310.852 153.42 301.937 153.42 Z " fill="rgb(255,255,255)"/></g></g></g></g></g></g><g id="g33791"><g id="g33799"><clipPath id="_clipPath_yZoN1B9vOXqmWdWhEoqEFTU7UfldImBh"><path d=" M 290.272 169.124 L 327.283 169.124 L 327.283 204.493 L 290.272 204.493 L 290.272 169.124 Z " fill="rgb(255,255,255)"/></clipPath><g clip-path="url(#_clipPath_yZoN1B9vOXqmWdWhEoqEFTU7UfldImBh)"><g id="g33801" style="opacity:0.5;"><g id="g33803" style="opacity:0.5;"><g opacity="0.5"><path d=" M 325.508 169.132 L 290.271 204.372 C 291.113 204.454 291.966 204.5 292.829 204.5 L 298.724 204.5 L 327.291 175.933 C 327.01 173.55 326.408 171.269 325.508 169.132 Z " fill="rgb(255,255,255)"/></g></g></g></g></g></g></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_bI4lxqulQeDHpEEqLZ9Rgp0wGaqP2p6g"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_bI4lxqulQeDHpEEqLZ9Rgp0wGaqP2p6g)"><g id="change"><g id="g22285"><g id="g22293"><clipPath id="_clipPath_YPhO4CEqz6rRlj3dhYABlbR7QqvdH1wu"><path d=" M 187.889 146.064 L 249.664 146.064 L 249.664 207.857 L 187.889 207.857 L 187.889 146.064 Z " fill="rgb(255,255,255)"/></clipPath><g clip-path="url(#_clipPath_YPhO4CEqz6rRlj3dhYABlbR7QqvdH1wu)"><g id="g22295" style="opacity:0.44999701;"><g id="g22297" style="opacity:0.44999701;"><g opacity="0.44999701"><path d=" M 187.885 176.963 C 187.885 194.025 201.71 207.854 218.776 207.854 C 228.658 207.854 237.451 203.205 243.103 195.98 L 199.753 152.632 C 192.532 158.282 187.885 167.081 187.885 176.963 Z " fill="rgb(255,255,255)"/></g></g><g id="g22301" style="opacity:0.44999701;"><g opacity="0.44999701"><path d=" M 249.654 176.606 L 219.133 146.08 C 219.009 146.076 218.895 146.073 218.775 146.073 C 214.722 146.073 210.852 146.857 207.309 148.277 L 247.457 188.426 C 248.874 184.879 249.67 181.015 249.67 176.962 C 249.67 176.84 249.658 176.724 249.654 176.606 Z " fill="rgb(255,255,255)"/></g></g></g></g></g></g><g id="g22305"><path d=" M 218.775 207.853 C 201.709 207.853 187.884 194.025 187.884 176.962 C 187.884 159.905 201.709 146.073 218.775 146.073 C 235.834 146.073 249.67 159.905 249.67 176.962 C 249.67 194.025 235.834 207.853 218.775 207.853 Z M 218.775 140 C 198.362 140 181.817 156.551 181.817 176.962 C 181.817 197.375 198.362 213.922 218.775 213.922 C 239.185 213.922 255.733 197.375 255.733 176.962 C 255.733 156.551 239.185 140 218.775 140 Z " fill="rgb(218,22,108)"/></g><g id="g22309"><g id="g22317"><clipPath id="_clipPath_2OA1ORjAyqpLY93Zbc7GqPk6bhA5oGUr"><path d=" M 266.149 146.064 L 327.924 146.064 L 327.924 207.857 L 266.149 207.857 L 266.149 146.064 Z " fill="rgb(255,255,255)"/></clipPath><g clip-path="url(#_clipPath_2OA1ORjAyqpLY93Zbc7GqPk6bhA5oGUr)"><g id="g22319" style="opacity:0.44999701;"><g id="g22321" style="opacity:0.44999701;"><g opacity="0.44999701"><path d=" M 266.148 176.963 C 266.148 194.025 279.976 207.854 297.035 207.854 C 306.921 207.854 315.71 203.205 321.366 195.98 L 278.019 152.632 C 270.795 158.282 266.148 167.081 266.148 176.963 Z " fill="rgb(255,255,255)"/></g></g><g id="g22325" style="opacity:0.44999701;"><g opacity="0.44999701"><path d=" M 327.917 176.606 L 297.399 146.08 C 297.276 146.076 297.157 146.073 297.034 146.073 C 292.988 146.073 289.114 146.857 285.579 148.277 L 325.724 188.426 C 327.14 184.879 327.929 181.015 327.929 176.962 C 327.929 176.84 327.921 176.724 327.917 176.606 Z " fill="rgb(255,255,255)"/></g></g></g></g></g></g><g id="g22329"><path d=" M 297.034 207.853 C 279.975 207.853 266.147 194.025 266.147 176.962 C 266.147 159.905 279.975 146.073 297.034 146.073 C 314.097 146.073 327.929 159.905 327.929 176.962 C 327.929 194.025 314.097 207.853 297.034 207.853 Z M 297.034 140 C 276.625 140 260.08 156.551 260.08 176.962 C 260.08 197.375 276.625 213.922 297.034 213.922 C 317.455 213.922 334 197.375 334 176.962 C 334 156.551 317.455 140 297.034 140 Z " fill="rgb(218,22,108)"/></g><path d=" M 264.59 180.25 L 250.168 180.25 L 250.168 173.673 L 264.59 173.673 L 264.59 180.25 Z " fill="rgb(218,22,108)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_T1xRsS21DHb9oI8pdNxLBhEFQI9aBsir"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_T1xRsS21DHb9oI8pdNxLBhEFQI9aBsir)"><g id="change"><path d=" M 290.042 176.074 L 196.199 176.074 L 196.199 169.667 L 290.042 169.667 L 290.042 176.074 Z " fill="rgb(12,36,54)"/><g id="g20389"><path d=" M 187.084 169.668 C 187.494 188.149 202.6 203 221.179 203 C 239.758 203 254.863 188.149 255.27 169.668 L 187.084 169.668 Z " fill="rgb(12,36,54)"/></g><g id="g20393"><path d=" M 210.237 169.668 L 192.52 187.386 C 194.997 191.224 198.228 194.53 202.001 197.1 L 229.435 169.668 L 210.237 169.668 Z " fill="rgb(95,121,187)"/></g><g id="g20397"><path d=" M 234.36 169.668 L 205.064 198.963 C 207.216 200.117 209.505 201.049 211.9 201.725 L 243.958 169.668 L 234.36 169.668 Z " fill="rgb(95,121,187)"/></g><g id="g20401"><path d=" M 260.544 169.668 C 260.951 188.149 276.057 203 294.639 203 C 313.215 203 328.323 188.149 328.733 169.668 L 260.544 169.668 Z " fill="rgb(12,36,54)"/></g><g id="g20405"><path d=" M 283.697 169.668 L 265.977 187.386 C 268.457 191.224 271.688 194.53 275.461 197.1 L 302.892 169.668 L 283.697 169.668 Z " fill="rgb(95,121,187)"/></g><g id="g20409"><path d=" M 307.817 169.668 L 278.524 198.963 C 280.673 200.117 282.965 201.049 285.36 201.725 L 317.418 169.668 L 307.817 169.668 Z " fill="rgb(95,121,187)"/></g></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_MTSulDFZqBUEyg4ZBuVjrgRArwCPR7aC"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_MTSulDFZqBUEyg4ZBuVjrgRArwCPR7aC)"><g id="change"><path d=" M 186.258 188.807 C 186.258 171.507 200.305 157.461 217.605 157.461 C 234.906 157.461 248.952 171.507 248.952 188.807 C 248.952 206.108 234.906 220.154 217.605 220.154 C 200.305 220.154 186.258 206.108 186.258 188.807 L 186.258 188.807 Z M 329.559 188.807 C 329.559 206.108 315.513 220.154 298.212 220.154 C 280.911 220.154 266.865 206.108 266.865 188.807 C 266.865 171.507 280.911 157.461 298.212 157.461 C 315.513 157.461 329.559 171.507 329.559 188.807 L 329.559 188.807 Z M 266.904 167.163 C 273.778 157.244 285.242 150.743 298.212 150.743 L 336.276 150.743 L 336.276 150.743 L 336.276 188.807 C 336.276 209.816 319.22 226.872 298.212 226.872 C 277.204 226.872 260.148 209.816 260.148 188.807 C 260.148 183.796 261.118 179.01 262.881 174.627 L 252.936 174.627 C 254.699 179.01 255.67 183.796 255.67 188.807 C 255.67 209.816 238.614 226.872 217.605 226.872 C 196.597 226.872 179.541 209.816 179.541 188.807 L 179.541 150.743 L 217.605 150.743 C 230.576 150.743 242.039 157.244 248.913 167.163 L 248.913 167.163 L 266.904 167.163 Z " fill-rule="evenodd" fill="rgb(201,0,83)"/><path d=" M 267.792 181.216 L 290.621 158.388 C 293.052 157.782 295.594 157.461 298.212 157.461 C 302.609 157.461 306.795 158.368 310.595 160.005 L 269.409 201.19 C 267.772 197.391 266.865 193.204 266.865 188.807 C 266.865 186.19 267.186 183.647 267.792 181.216 Z M 187.185 181.216 L 210.014 158.388 C 212.445 157.782 214.988 157.461 217.605 157.461 C 222.002 157.461 226.189 158.368 229.988 160.005 L 188.803 201.19 C 187.166 197.391 186.258 193.204 186.258 188.807 C 186.258 186.19 186.58 183.647 187.185 181.216 Z " fill-rule="evenodd" fill="rgb(255,255,255)" fill-opacity="0.77"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_ryaKAXb0GHSxFRMp9gHk9lb8dLIAL9NL"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_ryaKAXb0GHSxFRMp9gHk9lb8dLIAL9NL)"><g id="change"><path d=" M 263.027 175.202 C 265.37 158.169 279.998 145.031 297.671 145.031 C 316.972 145.031 332.641 160.701 332.641 180.002 C 332.641 199.303 316.972 214.973 297.671 214.973 C 279.527 214.973 264.591 201.125 262.866 183.431 L 262.866 183.431 L 257.734 183.431 C 256.009 201.125 241.073 214.973 222.929 214.973 C 203.628 214.973 187.958 199.303 187.958 180.002 L 187.958 180.002 C 187.958 160.701 203.628 145.031 222.929 145.031 C 240.602 145.031 255.23 158.169 257.573 175.202 L 263.027 175.202 Z M 270.928 180.002 C 270.928 164.864 283.218 152.574 298.356 152.574 C 313.494 152.574 325.784 164.864 325.784 180.002 C 325.784 195.14 313.494 207.43 298.356 207.43 C 283.218 207.43 270.928 195.14 270.928 180.002 L 270.928 180.002 Z M 196.187 180.002 C 196.187 164.864 208.477 152.574 223.615 152.574 C 238.753 152.574 251.043 164.864 251.043 180.002 C 251.043 195.14 238.753 207.43 223.615 207.43 C 208.477 207.43 196.187 195.14 196.187 180.002 L 196.187 180.002 Z " fill-rule="evenodd" fill="rgb(200,0,73)"/><path d=" M 271.858 172.901 C 271.252 175.166 270.928 177.547 270.928 180.002 C 270.928 184.208 271.877 188.194 273.572 191.758 L 310.112 155.218 C 306.549 153.523 302.562 152.574 298.356 152.574 C 295.901 152.574 293.521 152.898 291.255 153.504 L 271.858 172.901 Z M 197.117 172.901 C 196.51 175.166 196.187 177.547 196.187 180.002 C 196.187 184.208 197.136 188.194 198.831 191.758 L 235.371 155.218 C 231.807 153.523 227.821 152.574 223.615 152.574 C 221.16 152.574 218.779 152.898 216.514 153.504 L 197.117 172.901 Z " fill-rule="evenodd" fill="rgb(255,255,255)" fill-opacity="0.75"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 500 912" width="500" height="912"><defs><clipPath id="_clipPath_WJwAQepk4foRQV4SjLWrb3mnP5FLcNuV"><rect width="500" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_WJwAQepk4foRQV4SjLWrb3mnP5FLcNuV)"><g id="change"><path d=" M 195.294 187.824 C 195.294 174.935 205.758 164.471 218.647 164.471 C 231.536 164.471 242 174.935 242 187.824 C 242 200.712 231.536 211.176 218.647 211.176 C 205.758 211.176 195.294 200.712 195.294 187.824 Z " fill="rgb(116,198,184)"/><path d=" M 273.814 187.824 C 273.814 174.935 284.278 164.471 297.167 164.471 C 310.055 164.471 320.519 174.935 320.519 187.824 C 320.519 200.712 310.055 211.176 297.167 211.176 C 284.278 211.176 273.814 200.712 273.814 187.824 Z " fill="rgb(116,198,184)"/><path d=" M 319.519 187.824 C 319.519 175.487 309.504 165.471 297.167 165.471 C 284.83 165.471 274.814 175.487 274.814 187.824 C 274.814 200.16 284.83 210.176 297.167 210.176 C 309.504 210.176 319.519 200.16 319.519 187.824 L 319.519 187.824 Z M 196.294 187.824 C 196.294 200.16 206.31 210.176 218.647 210.176 C 230.984 210.176 241 200.16 241 187.824 C 241 175.487 230.984 165.471 218.647 165.471 C 206.31 165.471 196.294 175.487 196.294 187.824 L 196.294 187.824 Z M 272.007 174.785 C 276.717 165.686 286.222 159.471 297.167 159.471 C 311.579 159.471 323.495 170.248 325.287 184.176 L 325.287 184.176 L 330.814 184.176 L 330.814 189.954 L 325.44 189.954 C 324.35 204.609 312.098 216.176 297.167 216.176 C 281.518 216.176 268.814 203.472 268.814 187.824 C 268.814 185.099 269.199 182.464 269.933 179.976 C 266.221 178.232 262.075 177.263 257.705 177.263 C 253.473 177.263 249.451 178.172 245.83 179.814 C 246.598 182.348 247 185.039 247 187.824 C 247 203.472 234.296 216.176 218.647 216.176 C 203.715 216.176 191.464 204.609 190.373 189.954 L 185 189.954 L 185 184.176 L 190.527 184.176 L 190.527 184.176 C 192.319 170.248 204.235 159.471 218.647 159.471 C 229.52 159.471 238.971 165.604 243.71 174.608 C 247.858 172.306 252.63 171 257.705 171 C 262.907 171 267.79 172.372 272.007 174.785 Z " fill-rule="evenodd" fill="rgb(157,127,102)"/></g></g></svg>
</div>
</div>
<div class="feature eyes hide" data-display="eyes">
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_sku3Zlcn894yR8ZRkucWbI4Fa3pzJQs8"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_sku3Zlcn894yR8ZRkucWbI4Fa3pzJQs8)"><g id="change"></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_5lj5DBeXK5cvCqMPpWrgpwqpBeFTYkQL"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_5lj5DBeXK5cvCqMPpWrgpwqpBeFTYkQL)"><g id="change"><g id="eyes"><path d=" M 278.715 178.192 C 278.715 168.206 286.822 160.099 296.807 160.099 C 306.793 160.099 314.9 168.206 314.9 178.192 C 314.9 188.177 306.793 196.284 296.807 196.284 C 286.822 196.284 278.715 188.177 278.715 178.192 Z M 200.917 178.192 C 200.917 168.206 209.024 160.099 219.01 160.099 C 228.995 160.099 237.102 168.206 237.102 178.192 C 237.102 188.177 228.995 196.284 219.01 196.284 C 209.024 196.284 200.917 188.177 200.917 178.192 Z " fill-rule="evenodd" fill="rgb(252,254,253)"/><path d=" M 293.189 178.192 C 293.189 176.195 294.81 174.573 296.807 174.573 C 298.805 174.573 300.426 176.195 300.426 178.192 C 300.426 180.189 298.805 181.81 296.807 181.81 C 294.81 181.81 293.189 180.189 293.189 178.192 Z M 215.391 178.192 C 215.391 176.195 217.013 174.573 219.01 174.573 C 221.007 174.573 222.628 176.195 222.628 178.192 C 222.628 180.189 221.007 181.81 219.01 181.81 C 217.013 181.81 215.391 180.189 215.391 178.192 Z " fill-rule="evenodd" fill="rgb(11,45,61)"/></g></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_Ze6XtWL2wKQ7X9X5MicSSp6BJlDJWjL6"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_Ze6XtWL2wKQ7X9X5MicSSp6BJlDJWjL6)"><g id="change"><path d=" M 274.409 188 C 274.409 177.514 282.922 169 293.409 169 C 303.895 169 312.409 177.514 312.409 188 C 312.409 198.486 303.895 207 293.409 207 C 282.922 207 274.409 198.486 274.409 188 Z M 205.159 188 C 205.159 177.514 213.672 169 224.159 169 C 234.645 169 243.159 177.514 243.159 188 C 243.159 198.486 234.645 207 224.159 207 C 213.672 207 205.159 198.486 205.159 188 Z " fill-rule="evenodd" fill="rgb(253,255,255)"/><path d=" M 289.409 188 C 289.409 185.792 291.201 184 293.409 184 C 295.616 184 297.409 185.792 297.409 188 C 297.409 190.208 295.616 192 293.409 192 C 291.201 192 289.409 190.208 289.409 188 Z M 220.159 188 C 220.159 185.792 221.951 184 224.159 184 C 226.366 184 228.159 185.792 228.159 188 C 228.159 190.208 226.366 192 224.159 192 C 221.951 192 220.159 190.208 220.159 188 Z " fill-rule="evenodd" fill="rgb(0,0,0)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_kj6Ph3KCdJFyiSvmk65PbgMiIE9Lvrrj"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_kj6Ph3KCdJFyiSvmk65PbgMiIE9Lvrrj)"><g id="change"><path d=" M 272.409 191 C 272.409 180.514 280.922 172 291.409 172 C 301.895 172 310.409 180.514 310.409 191 C 310.409 201.486 301.895 210 291.409 210 C 280.922 210 272.409 201.486 272.409 191 Z M 206.409 191 C 206.409 180.514 214.922 172 225.409 172 C 235.895 172 244.409 180.514 244.409 191 C 244.409 201.486 235.895 210 225.409 210 C 214.922 210 206.409 201.486 206.409 191 Z " fill-rule="evenodd" fill="rgb(253,255,255)"/><path d=" M 287.409 191 C 287.409 188.792 289.201 187 291.409 187 C 293.616 187 295.409 188.792 295.409 191 C 295.409 193.208 293.616 195 291.409 195 C 289.201 195 287.409 193.208 287.409 191 Z M 221.409 191 C 221.409 188.792 223.201 187 225.409 187 C 227.616 187 229.409 188.792 229.409 191 C 229.409 193.208 227.616 195 225.409 195 C 223.201 195 221.409 193.208 221.409 191 Z " fill-rule="evenodd" fill="rgb(13,33,55)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_oE048qvpn9Xc0cYwxMd84MC7GeWcwxMn"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_oE048qvpn9Xc0cYwxMd84MC7GeWcwxMn)"><g id="change"><g id="eyes"><path d=" M 204.409 191.5 C 204.409 180.186 213.594 171 224.909 171 C 236.223 171 245.409 180.186 245.409 191.5 C 245.409 202.814 236.223 212 224.909 212 C 213.594 212 204.409 202.814 204.409 191.5 Z " fill="rgb(255,255,255)"/><path d=" M 220.409 191 C 220.409 188.792 222.201 187 224.409 187 C 226.616 187 228.409 188.792 228.409 191 C 228.409 193.208 226.616 195 224.409 195 C 222.201 195 220.409 193.208 220.409 191 Z " fill="rgb(13,23,45)"/><path d=" M 204.415 191 C 204.68 179.916 213.761 171 224.909 171 C 236.056 171 245.137 179.916 245.403 191 L 204.415 191 Z " fill="rgb(245,149,119)"/><path d=" M 270.409 191 C 270.409 179.686 279.594 170.5 290.909 170.5 C 302.223 170.5 311.409 179.686 311.409 191 C 311.409 202.314 302.223 211.5 290.909 211.5 C 279.594 211.5 270.409 202.314 270.409 191 Z " fill="rgb(255,255,255)"/><path d=" M 286.409 190.5 C 286.409 188.292 288.201 186.5 290.409 186.5 C 292.616 186.5 294.409 188.292 294.409 190.5 C 294.409 192.708 292.616 194.5 290.409 194.5 C 288.201 194.5 286.409 192.708 286.409 190.5 Z " fill="rgb(13,23,45)"/><path d=" M 270.415 190.5 C 270.68 179.416 279.761 170.5 290.909 170.5 C 302.056 170.5 311.137 179.416 311.403 190.5 L 270.415 190.5 Z " fill="rgb(245,149,119)"/></g></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_oEyx6knIHGoz5TcCkKdPpHTRvj9616L5"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_oEyx6knIHGoz5TcCkKdPpHTRvj9616L5)"><g id="change"><g id="eyes"><path d=" M 196.409 217.5 C 196.409 208.945 203.354 202 211.909 202 C 220.463 202 227.409 208.945 227.409 217.5 C 227.409 226.055 220.463 233 211.909 233 C 203.354 233 196.409 226.055 196.409 217.5 Z " fill="rgb(249,155,131)"/><path d=" M 201.409 194 C 201.409 179.098 213.507 167 228.409 167 C 243.31 167 255.409 179.098 255.409 194 C 255.409 208.902 243.31 221 228.409 221 C 213.507 221 201.409 208.902 201.409 194 Z " fill="rgb(253,255,253)"/><path d=" M 214.219 196.887 L 227.51 210.25 L 240.562 196.887 C 240.562 196.887 240.562 196.887 240.562 196.886 C 243.153 193.538 242.851 188.785 239.857 185.79 C 236.864 182.795 232.112 182.49 228.761 185.079 C 227.953 185.703 227.509 186.047 227.509 186.047 C 227.509 186.047 227.06 185.696 226.247 185.059 C 222.883 182.425 218.087 182.695 215.04 185.69 C 211.993 188.684 211.64 193.474 214.215 196.883 C 214.217 196.886 214.218 196.887 214.218 196.887 L 214.219 196.887 Z " fill-rule="evenodd" fill="rgb(246,0,66)"/><path d=" M 319.409 217.5 C 319.409 208.945 312.463 202 303.909 202 C 295.354 202 288.409 208.945 288.409 217.5 C 288.409 226.055 295.354 233 303.909 233 C 312.463 233 319.409 226.055 319.409 217.5 Z " fill="rgb(249,155,131)"/><path d=" M 314.409 194 C 314.409 179.098 302.31 167 287.409 167 C 272.507 167 260.409 179.098 260.409 194 C 260.409 208.902 272.507 221 287.409 221 C 302.31 221 314.409 208.902 314.409 194 Z " fill="rgb(253,255,253)"/><path d=" M 301.598 196.887 L 288.308 210.25 L 275.255 196.887 C 275.255 196.887 275.255 196.887 275.255 196.886 C 272.664 193.538 272.966 188.785 275.96 185.79 C 278.953 182.795 283.705 182.49 287.056 185.079 C 287.865 185.703 288.308 186.047 288.308 186.047 C 288.308 186.047 288.757 185.696 289.571 185.059 C 292.934 182.425 297.73 182.695 300.777 185.69 C 303.824 188.684 304.177 193.474 301.602 196.883 C 301.6 196.886 301.599 196.887 301.599 196.887 L 301.598 196.887 Z " fill-rule="evenodd" fill="rgb(246,0,66)"/></g></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_YLZ1RKpc60mB1nkqbJi728Yn4SRnxIX6"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_YLZ1RKpc60mB1nkqbJi728Yn4SRnxIX6)"><g id="change"><path d=" M 267.008 193.72 C 267.008 183.233 275.521 174.72 286.008 174.72 C 296.494 174.72 305.008 183.233 305.008 193.72 C 305.008 204.206 296.494 212.72 286.008 212.72 C 275.521 212.72 267.008 204.206 267.008 193.72 Z M 209.008 193.72 C 209.008 183.233 217.521 174.72 228.008 174.72 C 238.494 174.72 247.008 183.233 247.008 193.72 C 247.008 204.206 238.494 212.72 228.008 212.72 C 217.521 212.72 209.008 204.206 209.008 193.72 Z " fill-rule="evenodd" fill="rgb(255,255,255)"/><path d=" M 282.008 193.72 C 282.008 191.512 283.8 189.72 286.008 189.72 C 288.215 189.72 290.008 191.512 290.008 193.72 C 290.008 195.928 288.215 197.72 286.008 197.72 C 283.8 197.72 282.008 195.928 282.008 193.72 Z M 224.008 193.72 C 224.008 191.512 225.8 189.72 228.008 189.72 C 230.215 189.72 232.008 191.512 232.008 193.72 C 232.008 195.928 230.215 197.72 228.008 197.72 C 225.8 197.72 224.008 195.928 224.008 193.72 Z " fill-rule="evenodd" fill="rgb(0,0,0)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_2ifSuOliNDjeJouCZoTpAEJlZY7UCKJ9"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_2ifSuOliNDjeJouCZoTpAEJlZY7UCKJ9)"><g id="change"><path d=" M 288.409 169 L 288.409 169 C 298.895 169 307.409 177.514 307.409 188 L 307.409 214 L 269.409 214 L 269.409 188 C 269.409 177.514 277.922 169 288.409 169 Z M 226.409 169 L 226.409 169 C 236.895 169 245.409 177.514 245.409 188 L 245.409 214 L 207.409 214 L 207.409 188 C 207.409 177.514 215.922 169 226.409 169 Z " fill-rule="evenodd" fill="rgb(237,157,122)"/><path d=" M 268.651 213 L 307.166 213 C 309.508 213 311.409 214.901 311.409 217.243 L 311.409 217.757 C 311.409 220.099 309.508 222 307.166 222 L 268.651 222 C 266.31 222 264.409 220.099 264.409 217.757 L 264.409 217.243 C 264.409 214.901 266.31 213 268.651 213 Z M 206.651 213 L 245.166 213 C 247.508 213 249.409 214.901 249.409 217.243 L 249.409 217.757 C 249.409 220.099 247.508 222 245.166 222 L 206.651 222 C 204.31 222 202.409 220.099 202.409 217.757 L 202.409 217.243 C 202.409 214.901 204.31 213 206.651 213 Z " fill-rule="evenodd" fill="rgb(243,99,98)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_TS4t67zxqbyMLpr0oSNADIZBkoqAs66f"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_TS4t67zxqbyMLpr0oSNADIZBkoqAs66f)"><g id="change"><path d=" M 264.649 203.878 C 264.649 192.563 273.835 183.378 285.149 183.378 C 296.463 183.378 305.649 192.563 305.649 203.878 C 305.649 215.192 296.463 224.378 285.149 224.378 C 273.835 224.378 264.649 215.192 264.649 203.878 Z M 209.649 203.878 C 209.649 192.563 218.835 183.378 230.149 183.378 C 241.463 183.378 250.649 192.563 250.649 203.878 C 250.649 215.192 241.463 224.378 230.149 224.378 C 218.835 224.378 209.649 215.192 209.649 203.878 Z " fill-rule="evenodd" fill="rgb(252,254,254)"/><path d=" M 280.649 203.878 C 280.649 201.394 282.665 199.378 285.149 199.378 C 287.633 199.378 289.649 201.394 289.649 203.878 C 289.649 206.361 287.633 208.378 285.149 208.378 C 282.665 208.378 280.649 206.361 280.649 203.878 Z M 225.649 203.878 C 225.649 201.394 227.665 199.378 230.149 199.378 C 232.633 199.378 234.649 201.394 234.649 203.878 C 234.649 206.361 232.633 208.378 230.149 208.378 C 227.665 208.378 225.649 206.361 225.649 203.878 Z " fill-rule="evenodd" fill="rgb(10,33,56)"/><path d=" M 248.316 213.378 L 211.981 213.378 C 215.409 219.914 222.262 224.378 230.149 224.378 C 238.036 224.378 244.888 219.914 248.316 213.378 L 248.316 213.378 Z M 285.149 224.378 C 293.036 224.378 299.888 219.914 303.316 213.378 L 303.316 213.378 L 266.981 213.378 C 269.259 217.721 273.049 221.149 277.649 222.96 L 277.649 240.628 C 277.649 242.697 279.329 244.378 281.399 244.378 C 283.469 244.378 285.149 242.697 285.149 240.628 L 285.149 224.378 Z " fill-rule="evenodd" fill="rgb(19,171,208)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_YFjeYaBI0wIxG25YkVnqXEXZwnaUVHzP"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_YFjeYaBI0wIxG25YkVnqXEXZwnaUVHzP)"><g id="change"><path d=" M 249.003 191.126 C 249.003 202.168 240.039 211.132 228.998 211.132 C 217.957 211.132 208.993 202.168 208.993 191.126 C 208.993 180.085 217.957 171.121 228.998 171.121 C 240.039 171.121 249.003 180.085 249.003 191.126 Z M 269.961 191.126 C 269.961 180.085 278.925 171.121 289.967 171.121 C 301.008 171.121 309.972 180.085 309.972 191.126 C 309.972 202.168 301.008 211.132 289.967 211.132 C 278.925 211.132 269.961 202.168 269.961 191.126 Z " fill-rule="evenodd" fill="rgb(255,255,255)"/><path d=" M 238.524 198.747 C 238.524 201.113 236.604 203.034 234.238 203.034 C 231.872 203.034 229.951 201.113 229.951 198.747 C 229.951 196.381 231.872 194.461 234.238 194.461 C 236.604 194.461 238.524 196.381 238.524 198.747 Z M 280.44 183.505 C 280.44 181.139 282.361 179.218 284.727 179.218 C 287.093 179.218 289.014 181.139 289.014 183.505 C 289.014 185.871 287.093 187.792 284.727 187.792 C 282.361 187.792 280.44 185.871 280.44 183.505 Z " fill-rule="evenodd" fill="rgb(15,29,48)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_tcefVobb4bbTzF5oeHMRKORlRqR0RKhJ"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_tcefVobb4bbTzF5oeHMRKORlRqR0RKhJ)"><g id="change"><path d="M 209.725 186.572 L 245.223 186.572 C 247.053 186.572 248.539 188.058 248.539 189.889 L 248.539 189.889 C 248.539 191.719 247.053 193.205 245.223 193.205 L 209.725 193.205 C 207.895 193.205 206.409 191.719 206.409 189.889 L 206.409 189.889 C 206.409 188.058 207.895 186.572 209.725 186.572 Z" style="stroke:none;fill:#EC9971;stroke-miterlimit:10;"/><path d=" M 268.44 189.889 C 268.44 178.905 277.357 169.988 288.341 169.988 C 299.324 169.988 308.241 178.905 308.241 189.889 C 308.241 200.872 299.324 209.789 288.341 209.789 C 277.357 209.789 268.44 200.872 268.44 189.889 Z " fill="rgb(254,255,254)"/><path d=" M 284.55 189.889 C 284.55 187.797 286.248 186.098 288.341 186.098 C 290.433 186.098 292.131 187.797 292.131 189.889 C 292.131 191.981 290.433 193.679 288.341 193.679 C 286.248 193.679 284.55 191.981 284.55 189.889 Z " fill="rgb(17,30,53)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_q6UeV03Apao40Dr7eL3wo5ctli0QMKW7"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_q6UeV03Apao40Dr7eL3wo5ctli0QMKW7)"><g id="change"><path d=" M 207.38 178.531 C 207.38 174.547 210.615 171.313 214.599 171.313 C 218.583 171.313 221.817 174.547 221.817 178.531 C 221.817 182.515 218.583 185.75 214.599 185.75 C 210.615 185.75 207.38 182.515 207.38 178.531 Z " fill="rgb(14,44,58)"/><path d=" M 294 178.531 C 294 174.547 297.235 171.313 301.219 171.313 C 305.203 171.313 308.437 174.547 308.437 178.531 C 308.437 182.515 305.203 185.75 301.219 185.75 C 297.235 185.75 294 182.515 294 178.531 Z " fill="rgb(14,44,58)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_o3bX0gQgtue4lzOLxokv2IwKu6FuCg19"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_o3bX0gQgtue4lzOLxokv2IwKu6FuCg19)"><g id="change"><path d=" M 191.765 138.069 C 191.765 133.328 195.614 129.479 200.355 129.479 C 205.096 129.479 208.945 133.328 208.945 138.069 C 208.945 142.81 205.096 146.659 200.355 146.659 C 195.614 146.659 191.765 142.81 191.765 138.069 Z " fill="rgb(20,46,58)"/><path d=" M 306.337 138.069 C 306.337 133.328 310.186 129.479 314.927 129.479 C 319.668 129.479 323.518 133.328 323.518 138.069 C 323.518 142.81 319.668 146.659 314.927 146.659 C 310.186 146.659 306.337 142.81 306.337 138.069 Z " fill="rgb(20,46,58)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_aH6CNcdxvAlylPDL5K4vCvgBfb1zw4qQ"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_aH6CNcdxvAlylPDL5K4vCvgBfb1zw4qQ)"><g id="change"><path d=" M 199.806 180.279 C 199.806 173.892 204.991 168.707 211.379 168.707 C 217.766 168.707 222.951 173.892 222.951 180.279 C 222.951 186.666 217.766 191.852 211.379 191.852 C 204.991 191.852 199.806 186.666 199.806 180.279 Z " fill="rgb(17,45,58)"/><path d=" M 290.735 180.279 C 290.735 173.892 295.92 168.707 302.307 168.707 C 308.694 168.707 313.88 173.892 313.88 180.279 C 313.88 186.666 308.694 191.852 302.307 191.852 C 295.92 191.852 290.735 186.666 290.735 180.279 Z " fill="rgb(17,45,58)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_Rs5WFwL1FPzA7wvXiqc3cYRYzr9BD09Y"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_Rs5WFwL1FPzA7wvXiqc3cYRYzr9BD09Y)"><g id="change"><path d="M 217.605 179.105 L 217.605 179.105 C 221.313 179.105 224.323 182.115 224.323 185.822 L 224.323 196.271 C 224.323 199.978 221.313 202.988 217.605 202.988 L 217.605 202.988 C 213.898 202.988 210.888 199.978 210.888 196.271 L 210.888 185.822 C 210.888 182.115 213.898 179.105 217.605 179.105 Z" style="stroke:none;fill:#102E3B;stroke-miterlimit:10;"/><path d="M 298.212 179.105 L 298.212 179.105 C 301.919 179.105 304.929 182.115 304.929 185.822 L 304.929 196.271 C 304.929 199.978 301.919 202.988 298.212 202.988 L 298.212 202.988 C 294.505 202.988 291.495 199.978 291.495 196.271 L 291.495 185.822 C 291.495 182.115 294.505 179.105 298.212 179.105 Z" style="stroke:none;fill:#102E3B;stroke-miterlimit:10;"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_y8dNTL0P1T6Q1mHsUNtGM2RIUvDtNKht"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_y8dNTL0P1T6Q1mHsUNtGM2RIUvDtNKht)"><g id="change"><path d=" M 290.128 183.431 C 290.128 178.889 293.815 175.202 298.356 175.202 C 302.898 175.202 306.585 178.889 306.585 183.431 C 306.585 187.972 302.898 191.659 298.356 191.659 C 293.815 191.659 290.128 187.972 290.128 183.431 Z M 215.387 183.431 C 215.387 178.889 219.074 175.202 223.615 175.202 C 228.156 175.202 231.843 178.889 231.843 183.431 C 231.843 187.972 228.156 191.659 223.615 191.659 C 219.074 191.659 215.387 187.972 215.387 183.431 Z " fill-rule="evenodd" fill="rgb(18,49,61)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_lZR6i0Y4PC2ildqZiWwatRQfkUb1cmdE"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_lZR6i0Y4PC2ildqZiWwatRQfkUb1cmdE)"><g id="change"><path d=" M 188.501 151.297 C 188.501 139.109 198.396 129.213 210.585 129.213 C 222.774 129.213 232.669 139.109 232.669 151.297 C 232.669 163.486 222.774 173.381 210.585 173.381 C 198.396 173.381 188.501 163.486 188.501 151.297 Z " fill="rgb(255,254,255)"/><path d=" M 202.698 149.72 C 202.698 145.367 206.232 141.833 210.585 141.833 C 214.938 141.833 218.472 145.367 218.472 149.72 C 218.472 154.073 214.938 157.607 210.585 157.607 C 206.232 157.607 202.698 154.073 202.698 149.72 Z " fill="rgb(19,46,60)"/><path d=" M 283.148 149.72 C 283.148 137.531 293.043 127.635 305.232 127.635 C 317.421 127.635 327.316 137.531 327.316 149.72 C 327.316 161.908 317.421 171.804 305.232 171.804 C 293.043 171.804 283.148 161.908 283.148 149.72 Z " fill="rgb(255,254,255)"/><path d=" M 297.345 149.72 C 297.345 145.367 300.879 141.833 305.232 141.833 C 309.585 141.833 313.119 145.367 313.119 149.72 C 313.119 154.073 309.585 157.607 305.232 157.607 C 300.879 157.607 297.345 154.073 297.345 149.72 Z " fill="rgb(19,46,60)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_y8M6Gf8soCqKhKkM47j0Y9xYOBcBNJDb"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_y8M6Gf8soCqKhKkM47j0Y9xYOBcBNJDb)"><g id="change"><path d="M 220.649 171.705 L 220.649 171.705 C 224.844 171.705 228.249 175.11 228.249 179.305 L 228.249 191.128 C 228.249 195.322 224.844 198.728 220.649 198.728 L 220.649 198.728 C 216.454 198.728 213.049 195.322 213.049 191.128 L 213.049 179.305 C 213.049 175.11 216.454 171.705 220.649 171.705 Z" style="stroke:none;fill:#0D2F3B;stroke-miterlimit:10;"/><path d="M 308.474 171.705 L 308.474 171.705 C 312.669 171.705 316.074 175.11 316.074 179.305 L 316.074 191.128 C 316.074 195.322 312.669 198.728 308.474 198.728 L 308.474 198.728 C 304.279 198.728 300.874 195.322 300.874 191.128 L 300.874 179.305 C 300.874 175.11 304.279 171.705 308.474 171.705 Z" fill="rgb(13, 47, 59)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_WvCA58gGBf1X83LcknE0wac596Q0O2MO"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_WvCA58gGBf1X83LcknE0wac596Q0O2MO)"><g id="change"><path d=" M 295.028 130.3 C 295.028 125.793 298.687 122.134 303.194 122.134 C 307.701 122.134 311.36 125.793 311.36 130.3 C 311.36 134.807 307.701 138.466 303.194 138.466 C 298.687 138.466 295.028 134.807 295.028 130.3 Z M 204.457 130.3 C 204.457 125.793 208.116 122.134 212.623 122.134 C 217.13 122.134 220.789 125.793 220.789 130.3 C 220.789 134.807 217.13 138.466 212.623 138.466 C 208.116 138.466 204.457 134.807 204.457 130.3 Z " fill-rule="evenodd" fill="rgb(17,46,62)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_DWqvsRN4Jw9Y39RHE0GFVwvSsmuBfB8g"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_DWqvsRN4Jw9Y39RHE0GFVwvSsmuBfB8g)"><g id="change"><path d=" M 306.04 156.87 C 306.04 153.822 308.515 151.347 311.564 151.347 C 314.612 151.347 317.087 153.822 317.087 156.87 C 317.087 159.919 314.612 162.393 311.564 162.393 C 308.515 162.393 306.04 159.919 306.04 156.87 Z M 198.73 156.87 C 198.73 153.822 201.205 151.347 204.253 151.347 C 207.302 151.347 209.777 153.822 209.777 156.87 C 209.777 159.919 207.302 162.393 204.253 162.393 C 201.205 162.393 198.73 159.919 198.73 156.87 Z " fill-rule="evenodd" fill="rgb(28,44,57)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_MKNKzJQFWHbOD6KhbY8RYJ2tMRvXLdVD"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_MKNKzJQFWHbOD6KhbY8RYJ2tMRvXLdVD)"><g id="change"><path d=" M 207.731 188.371 C 207.731 182.469 212.523 177.677 218.425 177.677 C 224.327 177.677 229.118 182.469 229.118 188.371 C 229.118 194.273 224.327 199.065 218.425 199.065 C 212.523 199.065 207.731 194.273 207.731 188.371 Z " fill="rgb(5,47,64)"/><path d=" M 288.344 188.371 C 288.344 182.469 293.136 177.677 299.038 177.677 C 304.94 177.677 309.731 182.469 309.731 188.371 C 309.731 194.273 304.94 199.065 299.038 199.065 C 293.136 199.065 288.344 194.273 288.344 188.371 Z " fill="rgb(5,47,64)"/></g></g></svg>
</div>
</div>
<div class="feature nose hide" data-display="nose">
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_G24X46gx8qyKW1cpRbm6PScZcKom8wQ7"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_G24X46gx8qyKW1cpRbm6PScZcKom8wQ7)"><g id="change"><g id="nose"><path d=" M 242.533 200.641 C 242.53 200.693 242.53 200.746 242.53 200.798 C 242.53 209.286 249.421 216.177 257.909 216.177 C 266.396 216.177 273.287 209.286 273.287 200.798 C 273.287 200.746 273.287 200.693 273.285 200.641 C 270.561 207.907 264.697 212.939 257.909 212.939 C 251.121 212.939 245.257 207.907 242.533 200.641 Z " fill="rgb(248,146,113)"/></g></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_BDIuYLWq8A4et0FnKZ83TPrSB5zWyNvs"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_BDIuYLWq8A4et0FnKZ83TPrSB5zWyNvs)"><g id="change"><path d=" M 262.409 209 C 262.409 206.792 264.201 205 266.409 205 C 268.616 205 270.409 206.792 270.409 209 C 270.409 211.208 268.616 213 266.409 213 C 264.201 213 262.409 211.208 262.409 209 Z M 246.409 209 C 246.409 206.792 248.201 205 250.409 205 C 252.616 205 254.409 206.792 254.409 209 C 254.409 211.208 252.616 213 250.409 213 C 248.201 213 246.409 211.208 246.409 209 Z " fill-rule="evenodd" fill="rgb(236,153,113)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_9XmgLadebLdI1YqXce7lqEFKTtejb40G"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_9XmgLadebLdI1YqXce7lqEFKTtejb40G)"><g id="change"><path d=" M 264.409 215 C 264.409 213.896 265.305 213 266.409 213 C 267.512 213 268.409 213.896 268.409 215 C 268.409 216.104 267.512 217 266.409 217 C 265.305 217 264.409 216.104 264.409 215 Z M 248.409 215 C 248.409 213.896 249.305 213 250.409 213 C 251.512 213 252.409 213.896 252.409 215 C 252.409 216.104 251.512 217 250.409 217 C 249.305 217 248.409 216.104 248.409 215 Z " fill-rule="evenodd" fill="rgb(237,154,115)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_uSGSEGVsrseC7aOFzPN0lEQlByaLphlF"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_uSGSEGVsrseC7aOFzPN0lEQlByaLphlF)"><g id="change"><path d=" M 262.409 224 C 262.409 221.792 264.201 220 266.409 220 C 268.616 220 270.409 221.792 270.409 224 C 270.409 226.208 268.616 228 266.409 228 C 264.201 228 262.409 226.208 262.409 224 Z M 246.409 224 C 246.409 221.792 248.201 220 250.409 220 C 252.616 220 254.409 221.792 254.409 224 C 254.409 226.208 252.616 228 250.409 228 C 248.201 228 246.409 226.208 246.409 224 Z " fill-rule="evenodd" fill="rgb(236,153,113)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_yG32MJJ3K9my6Ww1RdJAoWnYjRl8plsd"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_yG32MJJ3K9my6Ww1RdJAoWnYjRl8plsd)"><g id="change"><path d=" M 263.008 212.72 C 263.008 211.064 264.352 209.72 266.008 209.72 C 267.663 209.72 269.008 211.064 269.008 212.72 C 269.008 214.376 267.663 215.72 266.008 215.72 C 264.352 215.72 263.008 214.376 263.008 212.72 Z M 246.008 212.72 C 246.008 211.064 247.352 209.72 249.008 209.72 C 250.663 209.72 252.008 211.064 252.008 212.72 C 252.008 214.376 250.663 215.72 249.008 215.72 C 247.352 215.72 246.008 214.376 246.008 212.72 Z " fill-rule="evenodd" fill="rgb(236,154,115)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_LMz6D9uair8Y48eDl2kpqsg2mxUiJZJs"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_LMz6D9uair8Y48eDl2kpqsg2mxUiJZJs)"><g id="change"><path d=" M 262.649 249.756 C 262.649 247.824 264.217 246.256 266.149 246.256 C 268.081 246.256 269.649 247.824 269.649 249.756 C 269.649 251.688 268.081 253.256 266.149 253.256 C 264.217 253.256 262.649 251.688 262.649 249.756 Z M 246.649 249.756 C 246.649 247.824 248.217 246.256 250.149 246.256 C 252.081 246.256 253.649 247.824 253.649 249.756 C 253.649 251.688 252.081 253.256 250.149 253.256 C 248.217 253.256 246.649 251.688 246.649 249.756 Z " fill-rule="evenodd" fill="rgb(236,163,121)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_cuxbYJrUsuY0jnvR9jibjtVov1GlXnXa"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_cuxbYJrUsuY0jnvR9jibjtVov1GlXnXa)"><g id="change"><path d="M 257.909 107.145 L 257.909 107.145 C 268.813 107.145 277.666 115.998 277.666 126.902 L 277.666 166.417 C 277.666 177.321 268.813 186.174 257.909 186.174 L 257.909 186.174 C 247.004 186.174 238.151 177.321 238.151 166.417 L 238.151 126.902 C 238.151 115.998 247.004 107.145 257.909 107.145 Z" fill="rgb(245, 139, 120)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_Bcy5qSuiivR6GUUMCjTHhUzl8YOkpXU7"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_Bcy5qSuiivR6GUUMCjTHhUzl8YOkpXU7)"><g id="change"><path d=" M 236.177 217.477 C 236.177 214.284 238.77 211.691 241.964 211.691 C 245.157 211.691 247.75 214.284 247.75 217.477 C 247.75 220.671 245.157 223.264 241.964 223.264 C 238.77 223.264 236.177 220.671 236.177 217.477 Z " fill="rgb(236,110,115)"/><path d=" M 266.597 217.477 C 266.597 214.284 269.19 211.691 272.384 211.691 C 275.577 211.691 278.17 214.284 278.17 217.477 C 278.17 220.671 275.577 223.264 272.384 223.264 C 269.19 223.264 266.597 220.671 266.597 217.477 Z " fill="rgb(236,110,115)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_Ad3I3A4L001D6IIYL2bIrmTCzxJD8AfJ"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_Ad3I3A4L001D6IIYL2bIrmTCzxJD8AfJ)"><g id="change"><path d=" M 267.5 221.83 C 267.5 219.181 269.651 217.03 272.3 217.03 C 274.949 217.03 277.1 219.181 277.1 221.83 C 277.1 224.479 274.949 226.63 272.3 226.63 C 269.651 226.63 267.5 224.479 267.5 221.83 Z M 244.186 221.83 C 244.186 219.181 246.337 217.03 248.986 217.03 C 251.635 217.03 253.786 219.181 253.786 221.83 C 253.786 224.479 251.635 226.63 248.986 226.63 C 246.337 226.63 244.186 224.479 244.186 221.83 Z " fill-rule="evenodd" fill="rgb(235,143,120)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_2WWQRXWRCeCAOxTHX2BRjPQXpXvFgv3k"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_2WWQRXWRCeCAOxTHX2BRjPQXpXvFgv3k)"><g id="change"><path d=" M 275.261 178.114 L 275.261 161.551 C 275.261 151.539 267.132 143.41 257.12 143.41 C 247.108 143.41 238.979 151.539 238.979 161.551 L 238.979 178.114 L 233.458 178.114 C 223.446 178.114 215.317 186.242 215.317 196.255 C 215.317 206.267 223.446 214.395 233.458 214.395 L 239.836 214.395 C 242.174 221.711 249.033 227.015 257.12 227.015 C 265.207 227.015 272.066 221.711 274.404 214.395 L 280.782 214.395 C 290.794 214.395 298.922 206.267 298.922 196.255 C 298.922 186.242 290.794 178.114 280.782 178.114 L 275.261 178.114 Z " fill="rgb(83,39,31)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_3PS4SVmi7908bFdrPQkElRB9COWOO28E"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_3PS4SVmi7908bFdrPQkElRB9COWOO28E)"><g id="change"><path d="M 257.909 104.072 L 257.909 104.072 C 270.201 104.072 280.18 114.051 280.18 126.343 L 280.18 175.341 C 280.18 187.633 270.201 197.612 257.909 197.612 L 257.909 197.612 C 245.617 197.612 235.637 187.633 235.637 175.341 L 235.637 126.343 C 235.637 114.051 245.617 104.072 257.909 104.072 Z" style="stroke:none;fill:#F26E72;stroke-miterlimit:10;"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_n3VDAnu7glgtEqEM1DwcufiBqO0GFmXU"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_n3VDAnu7glgtEqEM1DwcufiBqO0GFmXU)"><g id="change"><path d="M 257.909 83.489 L 257.909 83.489 C 274.022 83.489 287.103 96.571 287.103 112.684 L 287.103 169.495 C 287.103 185.608 274.022 198.69 257.909 198.69 L 257.909 198.69 C 241.796 198.69 228.714 185.608 228.714 169.495 L 228.714 112.684 C 228.714 96.571 241.796 83.489 257.909 83.489 Z" fill="rgb(240, 72, 100)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_DEHF3FXouW1Eum5D6F1J3NTREc6S6mi1"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_DEHF3FXouW1Eum5D6F1J3NTREc6S6mi1)"><g id="change"><path d=" M 270.247 205.645 L 270.247 176.032 C 270.247 170.584 265.824 166.161 260.376 166.161 C 254.928 166.161 250.505 170.584 250.505 176.032 L 250.505 205.645 L 248.86 205.645 C 243.412 205.645 238.989 210.068 238.989 215.516 C 238.989 220.964 243.412 225.387 248.86 225.387 L 250.505 225.387 C 250.505 230.835 254.928 235.258 260.376 235.258 C 265.824 235.258 270.247 230.835 270.247 225.387 L 271.892 225.387 C 277.34 225.387 281.763 220.964 281.763 215.516 C 281.763 210.068 277.34 205.645 271.892 205.645 L 270.247 205.645 Z " fill="rgb(243,140,124)"/></g></g></svg>
</div>
</div>
<div class="feature facial-hair hide" data-display="facial-hair">
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_sku3Zlcn894yR8ZRkucWbI4Fa3pzJQs8"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_sku3Zlcn894yR8ZRkucWbI4Fa3pzJQs8)"><g id="change"></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_sku3Zlcn894yR8ZRkucWbI4Fa3pzJQs8"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_sku3Zlcn894yR8ZRkucWbI4Fa3pzJQs8)"><g id="change"><g id="facial-hair"><path d=" M 257.266 214.774 C 262.369 214.772 267.456 211.58 267.456 211.834 C 267.456 233.634 247.209 249.834 225.409 249.834 C 213.092 249.834 198.632 234.699 191.409 225.834 C 211.7 225.383 235.693 226.892 247.204 211.834 C 248.243 211.948 252.761 214.776 257.266 214.774 Z " fill="rgb(0,0,0)"/><path d=" M 257.393 214.774 C 252.29 214.772 247.204 211.58 247.204 211.834 C 247.204 233.634 267.45 249.834 289.251 249.834 C 301.567 249.834 316.027 234.699 323.251 225.834 C 302.959 225.383 278.966 226.892 267.456 211.834 C 266.416 211.948 261.898 214.776 257.393 214.774 Z " fill="rgb(0,0,0)"/></g></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?>
<!-- Generator: Gravit.io -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912">
<g id="change">
<path d=" M 329.513 185.017 Q 334.081 214.951 334.717 237.471 Q 335.353 259.992 289.756 289.926 L 289.756 259.952 Q 314.546 247.503 319.73 231.851 C 324.914 216.199 325.554 192.666 327.223 188.763 Q 328.893 184.861 329.513 185.017 Z M 186.304 185.017 Q 181.736 214.951 181.1 237.471 Q 180.465 259.992 226.061 289.926 Q 241.413 297.419 256.035 297.419 Q 270.657 297.419 289.756 289.926 L 289.756 259.952 Q 271.012 263.184 269.149 254.332 Q 267.286 245.479 257.909 244.965 Q 246.668 245.107 246.668 254.332 Q 246.668 263.556 226.061 259.952 Q 201.271 247.503 196.087 231.851 C 190.904 216.199 190.263 192.666 188.594 188.763 Q 186.924 184.861 186.304 185.017 Z " fill-rule="evenodd" fill="rgb(0,0,0)" />
</g>
</svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_fmD6vSUMKCxOGNckjHqXJEzn3BStSkds"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_fmD6vSUMKCxOGNckjHqXJEzn3BStSkds)"><g id="change"><path d=" M 257.05 165.561 C 257.019 165.528 256.987 165.495 256.955 165.463 C 249.369 157.877 237.052 157.877 229.466 165.463 L 180.273 214.656 C 172.688 222.242 172.688 234.559 180.273 242.144 C 187.859 249.73 200.176 249.73 207.762 242.144 L 256.955 192.951 C 256.987 192.919 257.019 192.887 257.05 192.853 C 257.08 192.887 257.112 192.919 257.144 192.951 L 306.337 242.144 C 313.923 249.73 326.24 249.73 333.826 242.144 C 341.411 234.559 341.411 222.242 333.826 214.656 L 284.633 165.463 C 277.047 157.877 264.73 157.877 257.144 165.463 C 257.112 165.495 257.08 165.528 257.05 165.561 Z " fill="rgb(246,71,61)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_0tJVtpYIopPanpTrBDfZSvlJY5MtgiBW"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_0tJVtpYIopPanpTrBDfZSvlJY5MtgiBW)"><g id="change"><path d=" M 338.086 152 L 338.086 225.823 C 338.086 270.074 302.16 306 257.909 306 C 213.658 306 177.731 270.074 177.731 225.823 L 177.731 152 L 177.731 152 L 188.125 152 L 188.125 174.353 C 188.125 186.851 195.994 197.526 207.044 201.688 C 211.821 178.389 232.463 160.864 257.166 160.864 C 281.869 160.864 302.512 178.389 307.289 201.688 L 307.289 201.688 C 318.338 197.526 326.208 186.851 326.208 174.353 L 326.208 152 L 338.086 152 Z M 220.418 212.089 C 220.418 191.807 236.884 175.341 257.166 175.341 C 277.448 175.341 293.914 191.807 293.914 212.089 C 293.914 232.37 277.448 248.837 257.166 248.837 C 236.884 248.837 220.418 232.37 220.418 212.089 L 220.418 212.089 Z " fill-rule="evenodd" fill="rgb(13,47,59)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_FqX0FMIv0NF698zf8Uhd7endPvk2jEeO"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_FqX0FMIv0NF698zf8Uhd7endPvk2jEeO)"><g id="change"><path d=" M 338.086 124 L 338.086 225.823 C 338.086 270.074 302.16 306 257.909 306 C 213.658 306 177.731 270.074 177.731 225.823 L 177.731 124 L 177.731 124 L 188.807 124 C 188.36 126.029 188.125 128.137 188.125 130.3 L 188.125 174.353 C 188.125 186.851 195.994 197.526 207.044 201.688 C 211.821 178.389 232.463 160.864 257.166 160.864 C 281.869 160.864 302.512 178.389 307.289 201.688 L 307.289 201.688 C 318.338 197.526 326.208 186.851 326.208 174.353 L 326.208 130.3 C 326.208 128.137 325.972 126.029 325.525 124 L 338.086 124 Z M 220.418 212.089 C 220.418 191.807 236.884 175.341 257.166 175.341 C 277.448 175.341 293.914 191.807 293.914 212.089 C 293.914 232.37 277.448 248.837 257.166 248.837 C 236.884 248.837 220.418 232.37 220.418 212.089 L 220.418 212.089 Z " fill-rule="evenodd" fill="rgb(13,47,59)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_nbZOFeubc0mB2zmEB2UDdIp6qhJ4yE2w"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_nbZOFeubc0mB2zmEB2UDdIp6qhJ4yE2w)"><g id="change"><path d=" M 312.33 225.517 C 312.345 224.993 312.353 224.467 312.353 223.939 C 312.353 194.326 288.311 170.284 258.698 170.284 C 229.085 170.284 205.042 194.326 205.042 223.939 C 205.042 224.467 205.05 224.993 205.065 225.517 L 312.33 225.517 Z " fill="rgb(146,189,211)"/></g></g></svg>
</div>
</div>
<div class="feature mouth hide" data-display="mouth">
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_X8MaOjwbLA8rmai4hHV2EQGR6dlapkq8"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_X8MaOjwbLA8rmai4hHV2EQGR6dlapkq8)"><g id="change"><g id="mouth"><path d=" M 301.031 243.325 C 302.978 238.307 304.044 232.863 304.044 227.175 L 211.773 227.175 C 211.773 232.863 212.839 238.307 214.787 243.325 L 301.031 243.325 Z " fill="rgb(252,254,253)"/><path d=" M 301.031 243.325 C 294.406 260.399 277.588 272.54 257.909 272.54 C 238.23 272.54 221.412 260.399 214.787 243.325 L 301.031 243.325 Z " fill="rgb(180,1,54)"/></g></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_RhJ2U3i9ogf0lUxVTKpasFq6w2MaOV3B"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_RhJ2U3i9ogf0lUxVTKpasFq6w2MaOV3B)"><g id="change"><path d="M 232.284 217 L 285.284 217 L 285.284 265.5 C 285.284 280.126 273.409 292 258.784 292 L 258.784 292 C 244.158 292 232.284 280.126 232.284 265.5 L 232.284 217 Z" style="stroke:none;fill:#C20044;stroke-miterlimit:10;"/><path d="M 247.159 234.937 L 270.409 234.937 L 270.409 262.063 C 270.409 268.686 265.2 274.063 258.784 274.063 L 258.784 274.063 C 252.368 274.063 247.159 268.686 247.159 262.063 L 247.159 234.937 Z" style="stroke:none;fill:#770021;stroke-miterlimit:10;"/><path d=" M 258.784 292 C 244.158 292 232.284 280.126 232.284 265.5 L 232.284 252 C 246.909 252 258.784 263.874 258.784 278.5 L 258.784 292 Z " fill="rgb(244,0,71)"/><rect x="232.284" y="217" width="53" height="17.937" transform="matrix(1,0,0,1,0,0)" fill="rgb(249,249,235)"/><rect x="232.284" y="217" width="53" height="9.5" transform="matrix(1,0,0,1,0,0)" fill="rgb(205,225,235)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_XNtLarVFZrWRk7ltJQj7ezgLgL93EpNQ"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_XNtLarVFZrWRk7ltJQj7ezgLgL93EpNQ)"><g id="change"><path d=" M 249.869 250.03 C 251.179 249.89 252.509 250.27 253.539 251.1 C 254.569 251.93 255.239 253.14 255.379 254.46 C 255.519 255.77 255.139 257.1 254.309 258.13 C 253.479 259.16 252.269 259.83 250.949 259.97 C 248.839 260.2 246.709 260.2 244.599 259.97 C 242.589 259.74 240.609 259.29 238.699 258.6 C 236.749 257.89 234.879 256.96 233.149 255.82 C 231.249 254.58 229.479 253.14 227.869 251.54 C 226.359 250.02 224.989 248.36 223.799 246.59 C 222.579 244.78 221.539 242.87 220.679 240.87 C 219.749 238.71 219.029 236.46 218.519 234.17 C 217.939 231.58 217.579 228.94 217.419 226.3 C 217.339 224.97 217.789 223.67 218.669 222.68 C 219.549 221.69 220.789 221.09 222.109 221.01 C 223.439 220.93 224.739 221.38 225.729 222.26 C 226.719 223.14 227.319 224.38 227.399 225.7 C 227.529 227.82 227.819 229.93 228.279 232 C 228.649 233.69 229.189 235.34 229.869 236.92 C 230.479 238.35 231.219 239.71 232.089 241 C 232.929 242.24 233.879 243.4 234.949 244.46 C 236.069 245.59 237.299 246.59 238.629 247.46 C 239.709 248.17 240.869 248.75 242.089 249.19 C 243.259 249.61 244.469 249.89 245.699 250.03 C 247.089 250.18 248.479 250.18 249.869 250.03 Z " fill="rgb(240,99,101)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_8ni1d2Wz1Sa7I1OutMg8Z6vCITuXkGKn"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_8ni1d2Wz1Sa7I1OutMg8Z6vCITuXkGKn)"><g id="change"><path d=" M 297.268 271 C 297.361 269.928 297.409 268.844 297.409 267.75 C 297.409 246.363 279.261 229 256.909 229 C 234.556 229 216.409 246.363 216.409 267.75 C 216.409 268.844 216.456 269.928 216.549 271 L 297.268 271 Z " fill="rgb(195,0,70)"/><path d=" M 275.166 265 C 275.209 264.515 275.23 264.025 275.23 263.53 C 275.23 253.855 267.02 246 256.909 246 C 246.797 246 238.587 253.855 238.587 263.53 C 238.587 264.025 238.609 264.515 238.651 265 L 275.166 265 Z " fill="rgb(110,0,27)"/><path d=" M 264.408 271 C 264.408 270.958 264.409 270.917 264.409 270.875 C 264.409 263.769 258.64 258 251.534 258 L 221.284 258 C 214.178 258 208.409 263.769 208.409 270.875 C 208.409 270.917 208.409 270.958 208.409 271 L 264.408 271 Z " fill="rgb(244,0,68)"/><path d="M 222.409 258 L 222.409 258 C 230.135 258 236.409 264.273 236.409 272 L 236.409 299 C 236.409 306.727 230.135 313 222.409 313 L 222.409 313 C 214.682 313 208.409 306.727 208.409 299 L 208.409 272 C 208.409 264.273 214.682 258 222.409 258 Z" style="stroke:none;fill:#F40044;stroke-miterlimit:10;"/><path d="M 222.346 267.75 L 222.346 267.75 C 222.933 267.75 223.409 268.226 223.409 268.812 L 223.409 302.937 C 223.409 303.524 222.933 304 222.346 304 L 222.346 304 C 221.76 304 221.284 303.524 221.284 302.937 L 221.284 268.812 C 221.284 268.226 221.76 267.75 222.346 267.75 Z" style="stroke:none;fill:#CE0042;stroke-miterlimit:10;"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_KWWCtVcCMLTBA7UqVPWiHaJyALQ0uCYC"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_KWWCtVcCMLTBA7UqVPWiHaJyALQ0uCYC)"><g id="change"><g id="mouth"><path d="M 231.409 234 L 285.409 234 L 285.409 344 C 285.409 358.902 273.31 371 258.409 371 L 258.409 371 C 243.507 371 231.409 358.902 231.409 344 L 231.409 234 Z" style="stroke:none;fill:#C50046;stroke-miterlimit:10;"/><path d="M 246.409 249 L 270.409 249 L 270.409 344 C 270.409 350.623 265.032 356 258.409 356 L 258.409 356 C 251.786 356 246.409 350.623 246.409 344 L 246.409 249 Z" style="stroke:none;fill:#770021;stroke-miterlimit:10;"/><path d=" M 258.409 371 C 243.507 371 231.409 358.902 231.409 344 L 231.409 270.5 C 246.31 270.5 258.409 282.598 258.409 297.5 L 258.409 371 Z " fill="rgb(242,0,68)"/><rect x="231.409" y="234" width="54" height="7" transform="matrix(1,0,0,1,0,0)" fill="rgb(205,224,238)"/><rect x="231.409" y="241" width="54" height="8" transform="matrix(-1,0,0,-1,516.817,490)" fill="rgb(247,250,236)"/></g></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_RL2d3mvZlVkdGSjgSu4ghaeeY7auNqWq"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_RL2d3mvZlVkdGSjgSu4ghaeeY7auNqWq)"><g id="change"><g id="mouth"><path d="M 238.008 219.72 L 278.008 219.72 C 289.046 219.72 298.008 228.682 298.008 239.72 L 298.008 239.72 C 298.008 250.758 289.046 259.72 278.008 259.72 L 238.008 259.72 C 226.969 259.72 218.008 250.758 218.008 239.72 L 218.008 239.72 C 218.008 228.682 226.969 219.72 238.008 219.72 Z" style="stroke:none;fill:#F99778;stroke-miterlimit:10;"/><path d="M 237.008 225.72 L 279.008 225.72 C 286.734 225.72 293.008 231.993 293.008 239.72 L 293.008 239.72 C 293.008 247.447 286.734 253.72 279.008 253.72 L 237.008 253.72 C 229.281 253.72 223.008 247.447 223.008 239.72 L 223.008 239.72 C 223.008 231.993 229.281 225.72 237.008 225.72 Z" style="stroke:none;fill:#FDFEFF;stroke-miterlimit:10;"/><path d=" M 277.008 237.72 L 271.008 237.72 L 271.008 231.72 C 271.008 230.616 270.111 229.72 269.008 229.72 C 267.904 229.72 267.008 230.616 267.008 231.72 L 267.008 237.72 L 260.008 237.72 L 260.008 231.72 C 260.008 230.616 259.111 229.72 258.008 229.72 C 256.904 229.72 256.008 230.616 256.008 231.72 L 256.008 237.72 L 249.008 237.72 L 249.008 231.72 C 249.008 230.616 248.111 229.72 247.008 229.72 C 245.904 229.72 245.008 230.616 245.008 231.72 L 245.008 237.72 L 239.008 237.72 L 239.008 231.72 C 239.008 230.616 238.111 229.72 237.008 229.72 C 235.904 229.72 235.008 230.616 235.008 231.72 L 235.008 237.72 L 230.008 237.72 C 228.904 237.72 228.008 238.616 228.008 239.72 C 228.008 240.824 228.904 241.72 230.008 241.72 L 235.008 241.72 L 235.008 247.72 C 235.008 248.824 235.904 249.72 237.008 249.72 C 238.111 249.72 239.008 248.824 239.008 247.72 L 239.008 241.72 L 245.008 241.72 L 245.008 247.72 C 245.008 248.824 245.904 249.72 247.008 249.72 C 248.111 249.72 249.008 248.824 249.008 247.72 L 249.008 241.72 L 256.008 241.72 L 256.008 247.72 C 256.008 248.824 256.904 249.72 258.008 249.72 C 259.111 249.72 260.008 248.824 260.008 247.72 L 260.008 241.72 L 267.008 241.72 L 267.008 247.72 C 267.008 248.824 267.904 249.72 269.008 249.72 C 270.111 249.72 271.008 248.824 271.008 247.72 L 271.008 241.72 L 277.008 241.72 L 277.008 247.72 C 277.008 248.824 277.904 249.72 279.008 249.72 C 280.111 249.72 281.008 248.824 281.008 247.72 L 281.008 241.72 L 286.008 241.72 C 287.111 241.72 288.008 240.824 288.008 239.72 C 288.008 238.616 287.111 237.72 286.008 237.72 L 281.008 237.72 L 281.008 231.72 C 281.008 230.616 280.111 229.72 279.008 229.72 C 277.904 229.72 277.008 230.616 277.008 231.72 L 277.008 237.72 Z " fill="rgb(209,225,232)"/></g></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_Yw6r1OASfrYsHU46OoV9etl41nEZzbLs"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_Yw6r1OASfrYsHU46OoV9etl41nEZzbLs)"><g id="change"><path d=" M 265.949 252.51 C 266.609 251.86 267.509 251.49 268.439 251.5 C 269.359 251.51 270.249 251.88 270.899 252.54 C 271.549 253.2 271.919 254.1 271.909 255.03 C 271.899 255.95 271.529 256.84 270.869 257.49 C 269.869 258.47 268.789 259.36 267.629 260.14 C 266.539 260.88 265.379 261.5 264.169 262 C 262.969 262.5 261.719 262.87 260.439 263.12 C 259.109 263.37 257.759 263.5 256.409 263.5 C 255.059 263.5 253.709 263.37 252.379 263.12 C 251.099 262.87 249.849 262.5 248.649 262 C 247.439 261.5 246.279 260.88 245.189 260.14 C 244.029 259.36 242.949 258.47 241.949 257.49 C 241.289 256.84 240.919 255.95 240.909 255.03 C 240.899 254.1 241.269 253.2 241.919 252.54 C 242.569 251.88 243.459 251.51 244.379 251.5 C 245.309 251.49 246.209 251.86 246.869 252.51 C 247.559 253.19 248.309 253.8 249.109 254.34 C 249.799 254.81 250.549 255.21 251.329 255.53 C 252.089 255.85 252.879 256.09 253.699 256.24 C 254.589 256.41 255.499 256.5 256.409 256.5 C 257.319 256.5 258.229 256.41 259.119 256.24 C 259.939 256.09 260.729 255.85 261.489 255.53 C 262.269 255.21 263.019 254.81 263.709 254.34 C 264.509 253.8 265.259 253.19 265.949 252.51 Z " fill="rgb(237,157,122)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_3Y4DCVfyvnkY00bgxmcxdrBujqdqhquX"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_3Y4DCVfyvnkY00bgxmcxdrBujqdqhquX)"><g id="change"><g id="mouth"><path d=" M 229.409 239.5 C 229.409 232.049 235.458 226 242.909 226 C 250.359 226 256.409 232.049 256.409 239.5 C 256.409 246.951 250.359 253 242.909 253 C 235.458 253 229.409 246.951 229.409 239.5 Z " fill="rgb(129,0,37)"/><path d=" M 256.303 241.121 C 255.509 247.81 249.81 253 242.909 253 C 240.594 253 238.414 252.416 236.515 251.379 C 237.309 244.69 243.007 239.5 249.909 239.5 C 252.224 239.5 254.403 240.084 256.303 241.121 Z " fill="rgb(242,0,65)"/></g></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_NgqdUaYESrDTkywv3INGXod4WlRRQLDK"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_NgqdUaYESrDTkywv3INGXod4WlRRQLDK)"><g id="change"><path d=" M 244.489 256.578 C 243.639 257.598 242.419 258.238 241.099 258.358 C 239.779 258.478 238.469 258.068 237.449 257.218 C 236.429 256.368 235.789 255.148 235.669 253.828 C 235.549 252.508 235.959 251.198 236.809 250.178 C 237.989 248.758 239.339 247.498 240.829 246.418 C 242.369 245.308 244.029 244.378 245.779 243.658 C 247.639 242.888 249.579 242.328 251.559 241.988 C 253.899 241.578 256.269 241.378 258.649 241.378 C 261.089 241.378 263.529 241.598 265.939 242.028 C 267.959 242.388 269.939 242.978 271.839 243.788 C 273.529 244.508 275.119 245.428 276.599 246.518 C 278.039 247.578 279.349 248.808 280.489 250.178 C 281.339 251.198 281.749 252.508 281.629 253.828 C 281.509 255.148 280.869 256.368 279.849 257.218 C 278.829 258.068 277.519 258.478 276.199 258.358 C 274.879 258.238 273.659 257.598 272.809 256.578 C 272.179 255.828 271.459 255.148 270.669 254.568 C 269.819 253.938 268.889 253.408 267.909 252.988 C 266.709 252.468 265.459 252.098 264.169 251.868 C 262.349 251.538 260.499 251.378 258.649 251.378 C 256.849 251.378 255.039 251.538 253.269 251.838 C 252.009 252.058 250.769 252.418 249.589 252.908 C 248.559 253.328 247.589 253.868 246.699 254.518 C 245.879 255.108 245.139 255.798 244.489 256.578 Z " fill="rgb(238,99,97)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_vYua87AmnMzBMHSqYYp5croEQtOxMrdx"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_vYua87AmnMzBMHSqYYp5croEQtOxMrdx)"><g id="change"><path d=" M 244.489 276.956 C 243.639 277.976 242.419 278.616 241.099 278.736 C 239.779 278.856 238.469 278.446 237.449 277.596 C 236.429 276.746 235.789 275.526 235.669 274.206 C 235.549 272.886 235.959 271.576 236.809 270.556 C 237.989 269.136 239.339 267.876 240.829 266.796 C 242.369 265.686 244.029 264.756 245.779 264.036 C 247.639 263.266 249.579 262.706 251.559 262.366 C 253.899 261.956 256.269 261.756 258.649 261.756 C 261.089 261.756 263.529 261.976 265.939 262.406 C 267.959 262.766 269.939 263.356 271.839 264.166 C 273.529 264.886 275.119 265.806 276.599 266.896 C 278.039 267.956 279.349 269.186 280.489 270.556 C 281.339 271.576 281.749 272.886 281.629 274.206 C 281.509 275.526 280.869 276.746 279.849 277.596 C 278.829 278.446 277.519 278.856 276.199 278.736 C 274.879 278.616 273.659 277.976 272.809 276.956 C 272.179 276.206 271.459 275.526 270.669 274.946 C 269.819 274.316 268.889 273.786 267.909 273.366 C 266.709 272.846 265.459 272.476 264.169 272.246 C 262.349 271.916 260.499 271.756 258.649 271.756 C 256.849 271.756 255.039 271.916 253.269 272.216 C 252.009 272.436 250.769 272.796 249.589 273.286 C 248.559 273.706 247.589 274.246 246.699 274.896 C 245.879 275.486 245.139 276.176 244.489 276.956 Z " fill="rgb(238,99,97)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_LtR44kT6pVbqZpzeSJL1b5jHQiBN3jgh"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_LtR44kT6pVbqZpzeSJL1b5jHQiBN3jgh)"><g id="change"><path d="M 229.474 226.374 L 285.68 226.374 C 296.984 226.374 306.161 235.551 306.161 246.855 L 306.161 246.855 C 306.161 258.159 296.984 267.337 285.68 267.337 L 229.474 267.337 C 218.17 267.337 208.993 258.159 208.993 246.855 L 208.993 246.855 C 208.993 235.551 218.17 226.374 229.474 226.374 Z" style="stroke:none;fill:#C40044;stroke-miterlimit:10;"/><path d="M 243.852 236.853 L 271.302 236.853 C 276.822 236.853 281.304 241.335 281.304 246.855 L 281.304 246.855 C 281.304 252.376 276.822 256.858 271.302 256.858 L 243.852 256.858 C 238.332 256.858 233.85 252.376 233.85 246.855 L 233.85 246.855 C 233.85 241.335 238.332 236.853 243.852 236.853 Z" style="stroke:none;fill:#640014;stroke-miterlimit:10;"/><rect x="243.288" y="235.9" width="10.479" height="7.621" transform="matrix(1,0,0,1,0,0)" fill="rgb(235,235,235)"/><rect x="243.288" y="226.374" width="10.479" height="9.526" transform="matrix(1,0,0,1,0,0)" fill="rgb(203,225,238)"/><path d=" M 257.577 267.337 L 257.577 297.821 C 257.577 306.233 250.747 313.063 242.335 313.063 C 233.923 313.063 227.093 306.233 227.093 297.821 Q 227.093 262.762 227.093 262.097 C 227.093 256.051 232.002 251.142 238.048 251.142 L 242.335 251.142 L 242.335 251.142 L 278.059 251.142 C 284.105 251.142 289.014 256.051 289.014 262.097 C 289.014 263.995 288.53 265.78 287.68 267.337 L 257.577 267.337 Z " fill="rgb(245,0,68)"/><path d="M 241.62 256.858 L 241.62 256.858 C 243.592 256.858 245.193 258.459 245.193 260.43 L 245.193 299.012 C 245.193 300.983 243.592 302.584 241.62 302.584 L 241.62 302.584 C 239.649 302.584 238.048 300.983 238.048 299.012 L 238.048 260.43 C 238.048 258.459 239.649 256.858 241.62 256.858 Z" style="stroke:none;fill:#C1003D;stroke-miterlimit:10;"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_gKvDXrSkGHgStuUBQ2ZlYq5ry7uY5CGk"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_gKvDXrSkGHgStuUBQ2ZlYq5ry7uY5CGk)"><g id="change"><path d=" M 286.13 254.648 C 284.136 267.608 272.925 277.546 259.41 277.546 L 256.621 277.546 C 241.7 277.546 229.587 265.432 229.587 250.511 L 229.587 248.169 L 274.442 248.169 L 286.13 254.648 Z " fill="rgb(170,0,56)"/><path d=" M 266.422 276.625 C 265.237 262.809 253.631 251.959 239.51 251.959 L 236.721 251.959 C 234.296 251.959 231.946 252.279 229.709 252.88 C 230.894 266.696 242.501 277.546 256.621 277.546 L 259.41 277.546 C 261.835 277.546 264.186 277.226 266.422 276.625 Z " fill="rgb(238,0,68)"/><path d=" M 229.587 223.303 L 229.587 248.169 L 274.442 248.169 L 229.587 223.303 Z " fill="rgb(255,254,255)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_Dc8jYQlShqg2c4jZ0370Kp8jyVgye7VT"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_Dc8jYQlShqg2c4jZ0370Kp8jyVgye7VT)"><g id="change"><path d=" M 241.817 250 C 241.817 241.119 249.028 233.909 257.909 233.909 C 266.79 233.909 274 241.119 274 250 C 274 258.881 266.79 266.091 257.909 266.091 C 249.028 266.091 241.817 258.881 241.817 250 Z " fill="rgb(0,0,0)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_xZeFSGxxWahzQ2fiRIKGpxO3SRMiOCut"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_xZeFSGxxWahzQ2fiRIKGpxO3SRMiOCut)"><g id="change"><path d=" M 279.997 239.079 C 280.401 238.443 281.036 237.981 281.787 237.808 C 282.538 237.635 283.317 237.75 283.981 238.155 C 284.616 238.559 285.078 239.194 285.252 239.945 C 285.425 240.696 285.309 241.475 284.905 242.139 C 283.779 243.929 282.364 245.489 280.661 246.73 C 278.697 248.174 276.503 249.3 274.193 250.108 C 272.172 250.772 270.093 251.292 267.957 251.581 C 265.098 251.956 262.24 252.158 259.352 252.158 C 256.58 252.158 253.78 251.985 251.037 251.61 C 248.958 251.35 246.937 250.888 244.945 250.253 C 243.645 249.82 242.404 249.3 241.162 248.693 C 240.094 248.174 239.083 247.538 238.13 246.817 C 237.264 246.153 236.456 245.431 235.705 244.651 C 234.983 243.872 234.348 243.034 233.799 242.139 C 233.395 241.475 233.28 240.696 233.453 239.945 C 233.626 239.194 234.088 238.559 234.723 238.155 C 235.387 237.75 236.167 237.635 236.918 237.808 C 237.668 237.981 238.304 238.443 238.708 239.079 C 239.054 239.656 239.487 240.205 239.949 240.724 C 240.44 241.244 240.989 241.764 241.595 242.197 C 242.259 242.717 242.981 243.15 243.761 243.525 C 244.713 244.016 245.695 244.42 246.735 244.738 C 248.38 245.286 250.084 245.662 251.787 245.893 C 254.299 246.21 256.811 246.384 259.352 246.384 C 261.98 246.384 264.578 246.21 267.177 245.864 C 268.938 245.604 270.671 245.2 272.316 244.622 C 274.078 244.045 275.752 243.179 277.225 242.081 C 278.351 241.244 279.275 240.234 279.997 239.079 Z " fill="rgb(239,149,114)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_T3w93uKUKs6stLbnoJTOQLacAsczWZfc"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_T3w93uKUKs6stLbnoJTOQLacAsczWZfc)"><g id="change"><path d=" M 223.643 211.85 C 223.643 192.938 238.997 177.584 257.909 177.584 C 276.82 177.584 292.174 192.938 292.174 211.85 C 292.174 230.762 276.82 246.115 257.909 246.115 C 238.997 246.115 223.643 230.762 223.643 211.85 Z " fill="rgb(33,41,59)"/><path d=" M 283.128 235.043 C 276.861 241.848 267.879 246.116 257.909 246.116 C 247.938 246.116 238.956 241.848 232.689 235.043 C 238.956 228.239 247.938 223.971 257.909 223.971 C 267.879 223.971 276.861 228.239 283.128 235.043 Z " fill="rgb(203,0,78)"/><path d=" M 292.061 214.656 C 292.136 213.73 292.174 212.794 292.174 211.85 C 292.174 192.938 276.82 177.584 257.909 177.584 C 238.997 177.584 223.643 192.938 223.643 211.85 C 223.643 212.794 223.681 213.73 223.756 214.656 L 292.061 214.656 Z " fill="rgb(255,255,253)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_u2FGoIgTV76MGJOPfI01CWFsSIJkvXaN"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_u2FGoIgTV76MGJOPfI01CWFsSIJkvXaN)"><g id="change"><path d=" M 277.839 241.036 C 279.278 239.366 281.294 238.341 283.493 238.159 C 285.676 237.994 287.841 238.705 289.495 240.127 C 291.164 241.565 292.189 243.582 292.371 245.781 C 292.537 247.963 291.826 250.129 290.404 251.782 C 288.437 254.08 286.205 256.163 283.791 257.982 C 281.41 259.751 278.831 261.255 276.12 262.462 C 273.26 263.719 270.267 264.661 267.192 265.256 C 263.787 265.918 260.315 266.248 256.843 266.248 C 253.371 266.248 249.899 265.918 246.494 265.256 C 243.419 264.661 240.426 263.719 237.566 262.462 C 234.855 261.255 232.276 259.751 229.895 257.982 C 227.481 256.163 225.249 254.08 223.282 251.782 C 221.86 250.129 221.149 247.963 221.315 245.781 C 221.497 243.582 222.522 241.565 224.191 240.127 C 225.845 238.705 228.01 237.994 230.193 238.159 C 232.391 238.341 234.408 239.366 235.847 241.036 C 237.021 242.408 238.343 243.648 239.798 244.739 C 241.187 245.764 242.675 246.641 244.245 247.335 C 245.981 248.096 247.783 248.674 249.635 249.021 C 252.016 249.484 254.429 249.716 256.843 249.716 C 259.257 249.716 261.67 249.484 264.051 249.021 C 265.903 248.674 267.705 248.096 269.441 247.335 C 271.011 246.641 272.499 245.764 273.888 244.739 C 275.343 243.648 276.665 242.408 277.839 241.036 Z " fill="rgb(236,110,115)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_p0H8Tg6FMM4gvhw9eCmTGb15qzsJ2qKA"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_p0H8Tg6FMM4gvhw9eCmTGb15qzsJ2qKA)"><g id="change"><path d="M 246.648 253.74 L 268.423 253.74 C 271.682 253.74 274.328 256.387 274.328 259.646 L 274.328 259.777 C 274.328 263.036 271.682 265.682 268.423 265.682 L 246.648 265.682 C 243.389 265.682 240.742 263.036 240.742 259.777 L 240.742 259.646 C 240.742 256.387 243.389 253.74 246.648 253.74 Z" style="stroke:none;fill:#A00032;stroke-miterlimit:10;"/><path d="M 246.648 264.189 L 268.423 264.189 C 271.682 264.189 274.328 266.836 274.328 270.095 L 274.328 270.226 C 274.328 273.485 271.682 276.131 268.423 276.131 L 246.648 276.131 C 243.389 276.131 240.742 273.485 240.742 270.226 L 240.742 270.095 C 240.742 266.836 243.389 264.189 246.648 264.189 Z" style="stroke:none;fill:#A00032;stroke-miterlimit:10;"/><path d="M 247.965 256.726 L 267.853 256.726 C 269.367 256.726 270.597 257.955 270.597 259.47 L 270.597 270.402 C 270.597 271.916 269.367 273.146 267.853 273.146 L 247.965 273.146 C 246.45 273.146 245.221 271.916 245.221 270.402 L 245.221 259.47 C 245.221 257.955 246.45 256.726 247.965 256.726 Z" style="stroke:none;fill:#CA0051;stroke-miterlimit:10;"/><path d="M 250.623 263.443 L 265.194 263.443 C 266.322 263.443 267.238 264.279 267.238 265.309 L 267.238 265.309 C 267.238 266.339 266.322 267.175 265.194 267.175 L 250.623 267.175 C 249.495 267.175 248.579 266.339 248.579 265.309 L 248.579 265.309 C 248.579 264.279 249.495 263.443 250.623 263.443 Z" style="stroke:none;fill:#A00032;stroke-miterlimit:10;"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_a1xH9ljq8TLCzch4Yg20yfXWxHzom5cS"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_a1xH9ljq8TLCzch4Yg20yfXWxHzom5cS)"><g id="change"><path d=" M 246.242 242.401 C 244.929 244.884 244.186 247.713 244.186 250.715 C 244.186 260.555 252.175 268.543 262.014 268.543 C 271.854 268.543 279.842 260.555 279.842 250.715 C 279.842 247.713 279.099 244.884 277.786 242.401 L 246.242 242.401 Z " fill="rgb(27,42,56)"/><path d=" M 249.125 263.015 C 252.366 266.423 256.945 268.543 262.014 268.543 C 267.084 268.543 271.662 266.423 274.903 263.015 C 271.662 259.607 267.084 257.487 262.014 257.487 C 256.945 257.487 252.366 259.607 249.125 263.015 Z " fill="rgb(195,0,74)"/><path d=" M 244.186 250.715 C 244.186 247.713 244.929 244.884 246.242 242.401 L 277.786 242.401 C 279.099 244.884 279.842 247.713 279.842 250.715 L 244.186 250.715 Z " fill="rgb(254,254,250)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_6nP2uCE1FUaGwKT6w6vVxGIPCIa98mU1"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_6nP2uCE1FUaGwKT6w6vVxGIPCIa98mU1)"><g id="change"><path d=" M 287.77 230.454 C 289.789 228.324 292.565 227.094 295.483 227.015 C 298.417 226.952 301.257 228.04 303.371 230.059 C 305.5 232.078 306.731 234.855 306.81 237.773 C 306.873 240.707 305.784 243.546 303.765 245.66 C 300.831 248.768 297.581 251.56 294.08 254.005 C 290.72 256.371 287.107 258.359 283.321 259.968 C 279.472 261.592 275.45 262.807 271.333 263.596 C 266.9 264.448 262.42 264.874 257.909 264.874 C 253.397 264.874 248.917 264.448 244.485 263.596 C 240.367 262.807 236.345 261.592 232.496 259.968 C 228.71 258.359 225.098 256.371 221.738 254.005 C 218.236 251.56 214.986 248.768 212.052 245.66 C 210.033 243.546 208.945 240.707 209.008 237.773 C 209.087 234.855 210.317 232.078 212.447 230.059 C 214.56 228.04 217.4 226.952 220.334 227.015 C 223.252 227.094 226.028 228.324 228.047 230.454 C 229.988 232.473 232.117 234.318 234.405 235.927 C 236.503 237.394 238.743 238.625 241.093 239.619 C 243.522 240.644 246.046 241.417 248.633 241.906 C 251.693 242.49 254.801 242.789 257.909 242.789 C 261.016 242.789 264.124 242.49 267.184 241.906 C 269.771 241.417 272.295 240.644 274.724 239.619 C 277.075 238.625 279.315 237.394 281.413 235.927 C 283.7 234.318 285.829 232.473 287.77 230.454 Z " fill="rgb(244,140,124)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_g42tyQHf293zByorXrG3pP8fGJwex6Pu"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_g42tyQHf293zByorXrG3pP8fGJwex6Pu)"><g id="change"><path d=" M 231.835 201.688 C 230.576 204.849 229.884 208.296 229.884 211.903 C 229.884 227.166 242.275 239.557 257.537 239.557 C 272.8 239.557 285.191 227.166 285.191 211.903 C 285.191 208.296 284.499 204.849 283.24 201.688 L 231.835 201.688 Z " fill="rgb(13,47,59)"/><path d=" M 236.725 230.09 C 241.788 235.893 249.238 239.557 257.537 239.557 C 265.837 239.557 273.287 235.893 278.35 230.09 C 273.287 224.286 265.837 220.622 257.537 220.622 C 249.238 220.622 241.788 224.286 236.725 230.09 Z " fill="rgb(247,0,96)"/><path d=" M 229.884 212.089 C 229.884 212.027 229.884 211.965 229.884 211.903 C 229.884 208.296 230.576 204.849 231.835 201.688 L 283.24 201.688 C 284.499 204.849 285.191 208.296 285.191 211.903 C 285.191 211.965 285.191 212.027 285.191 212.089 L 229.884 212.089 Z " fill="rgb(255,255,255)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_GhQtYpbNRzRltEKXHYbFDD1XTv93ZBGb"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_GhQtYpbNRzRltEKXHYbFDD1XTv93ZBGb)"><g id="change"><path d=" M 227.136 228.673 C 227.136 211.689 240.925 197.901 257.909 197.901 C 274.893 197.901 288.681 211.689 288.681 228.673 C 288.681 245.657 274.893 259.446 257.909 259.446 C 240.925 259.446 227.136 245.657 227.136 228.673 Z " fill="rgb(20,45,59)"/><path d=" M 281.165 248.794 C 275.532 255.321 267.198 259.446 257.909 259.446 C 248.619 259.446 240.285 255.321 234.652 248.794 C 240.285 242.267 248.619 238.142 257.909 238.142 C 267.198 238.142 275.532 242.267 281.165 248.794 Z " fill="rgb(247,0,97)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_mC2ozuOXVYOJ8SQkCGCo9s787d2Z214l"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_mC2ozuOXVYOJ8SQkCGCo9s787d2Z214l)"><g id="change"><path d=" M 292.457 233.629 C 292.457 232.116 293.049 230.635 294.135 229.566 C 295.204 228.48 296.669 227.855 298.199 227.855 C 299.712 227.855 301.193 228.447 302.262 229.533 C 303.348 230.602 303.973 232.066 303.973 233.596 C 303.99 236.081 303.743 238.581 303.266 241.033 C 302.805 243.402 302.098 245.721 301.16 247.959 C 300.206 250.262 299.005 252.45 297.59 254.506 C 296.06 256.727 294.332 258.8 292.408 260.709 C 290.499 262.634 288.426 264.361 286.205 265.891 C 284.149 267.306 281.961 268.507 279.658 269.461 C 277.42 270.399 275.101 271.106 272.731 271.567 C 270.28 272.044 267.78 272.291 265.295 272.274 C 263.765 272.274 262.301 271.649 261.232 270.563 C 260.146 269.494 259.554 268.013 259.554 266.5 C 259.554 264.97 260.179 263.506 261.265 262.436 C 262.334 261.35 263.815 260.758 265.328 260.758 C 267.072 260.758 268.816 260.594 270.527 260.265 C 272.123 259.952 273.702 259.475 275.199 258.85 C 276.762 258.192 278.259 257.369 279.674 256.398 C 281.319 255.263 282.866 253.996 284.281 252.582 C 285.695 251.167 286.962 249.62 288.097 247.975 C 289.068 246.56 289.891 245.063 290.549 243.5 C 291.174 242.003 291.651 240.424 291.963 238.828 C 292.292 237.117 292.457 235.373 292.457 233.629 Z " fill="rgb(234,75,107)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912"><defs><clipPath id="_clipPath_haq9sPAr48L2pjU7MVwcipkLJicBVbKh"><rect width="515.8" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_haq9sPAr48L2pjU7MVwcipkLJicBVbKh)"><g id="change"><path d=" M 271.766 219.997 L 271.766 219.933 L 271.758 219.933 C 271.711 215.394 268.016 211.739 263.467 211.739 C 261.33 211.739 259.38 212.549 257.903 213.89 C 256.437 212.549 254.48 211.739 252.338 211.739 C 247.787 211.739 244.097 215.394 244.052 219.933 L 244.051 219.933 L 244.051 219.997 L 244.051 220.028 C 244.097 227.636 250.281 233.792 257.903 233.792 C 265.526 233.792 271.711 227.636 271.766 220.028 L 271.766 219.997 Z " fill="rgb(234,147,124)"/><path d=" M 267.806 220.343 C 267.806 221.395 266.961 222.233 265.915 222.233 L 249.901 222.233 C 248.861 222.233 248.009 221.395 248.009 220.343 C 248.009 219.298 248.861 218.449 249.901 218.449 L 265.915 218.449 C 266.961 218.449 267.806 219.298 267.806 220.343 Z " fill="rgb(228,101,106)"/></g></g></svg>
</div>
<div class="asset">
<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 500 912" width="500" height="912"><defs><clipPath id="_clipPath_YoBo4qnrT6cWXud8SgXrNQk1C2moHxwU"><rect width="500" height="912"/></clipPath></defs><g clip-path="url(#_clipPath_YoBo4qnrT6cWXud8SgXrNQk1C2moHxwU)"><g id="change"><path d=" M 243.442 245.25 C 243.442 237.266 249.924 230.783 257.908 230.783 C 265.893 230.783 272.375 237.266 272.375 245.25 C 272.375 253.234 265.893 259.717 257.908 259.717 C 249.924 259.717 243.442 253.234 243.442 245.25 Z " fill="rgb(246,145,120)"/></g></g></svg>
</div>
</div>
<div class="feature head" data-display="head">
<div class="table">
<div class="cell">
<h2>Use the settings dialog to adjust the head's position and scale</h2>
</div>
</div>
</div>
<div class="feature body-types hide" data-display="body-types">
<div class="assets">
<div class="asset" data-target="body">
<?xml version="1.0" standalone="no"?>
<!-- Generator: Gravit.io -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912">
<g id="change">
<g id="arms">
<path d=" M 352.657 274.503 L 352.784 274.503 C 368.697 274.503 381.616 287.422 381.616 303.335 L 381.616 655.62 C 381.616 671.532 368.697 684.451 352.784 684.451 L 352.657 684.451 C 336.744 684.451 323.825 671.532 323.825 655.62 L 323.825 303.335 C 323.825 287.422 336.744 274.503 352.657 274.503 Z M 163.033 274.503 L 163.16 274.503 C 179.073 274.503 191.992 287.422 191.992 303.335 L 191.992 655.62 C 191.992 671.532 179.073 684.451 163.16 684.451 L 163.033 684.451 C 147.121 684.451 134.202 671.532 134.202 655.62 L 134.202 303.335 C 134.202 287.422 147.121 274.503 163.033 274.503 Z " fill-rule="evenodd" fill="rgb(252,194,151)" />
</g>
<g id="shirt">
<path d=" M 334.315 281.125 C 339.288 276.983 345.685 274.503 352.657 274.503 L 352.784 274.503 C 368.697 274.503 381.616 287.422 381.616 303.335 L 381.616 398 L 350.915 398 L 350.915 491.216 L 164.903 491.216 L 164.903 398 L 134.202 398 L 134.202 303.335 C 134.202 287.422 147.121 274.503 163.033 274.503 L 163.16 274.503 C 170.132 274.503 176.529 276.983 181.502 281.125 C 190.055 273.63 201.256 269.085 213.511 269.085 L 302.306 269.085 C 314.561 269.085 325.762 273.63 334.315 281.125 Z " fill="rgb(244,0,75)" />
</g>
<g id="pants">
<path d=" M 237.14 912 L 164.903 912 L 164.903 491.216 L 350.915 491.216 L 350.915 912 L 276.871 912 L 276.871 567.065 L 237.14 567.065 L 237.14 912 Z " fill="rgb(13,45,60)" />
</g>
</g>
</svg>
</div>
<div class="asset" data-target="body">
<?xml version="1.0" standalone="no"?>
<!-- Generator: Gravit.io -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 515.8 912" width="515.8" height="912">
<g id="change">
<path d=" M 169.44 304.724 C 156.541 288.822 136.84 278.68 114.789 278.68 C 75.867 278.68 44.267 310.28 44.267 349.202 C 44.267 357.382 45.662 365.239 48.24 372.542 C 20.124 382.807 0.017 409.798 0.017 441.448 C 0.017 464.424 10.612 484.944 27.214 498.345 C 20.921 511.797 22.363 528.244 32.307 540.573 L 100.797 625.486 C 114.692 642.713 139.959 645.419 157.186 631.524 C 174.413 617.629 177.118 592.361 163.223 575.134 L 137.359 543.068 C 143.066 537.318 146.594 529.402 146.594 520.669 C 146.594 507.439 138.498 496.085 126.983 491.316 C 136.654 480.92 143.341 467.711 145.664 453.056 C 156.363 473.519 172.534 490.674 192.226 502.585 L 192.226 520.669 L 192.226 520.669 L 257.217 520.669 L 323.591 520.669 L 323.591 520.669 L 323.591 502.585 C 343.283 490.674 359.454 473.519 370.153 453.056 C 372.476 467.711 379.163 480.92 388.834 491.317 C 377.319 496.085 369.224 507.439 369.224 520.669 C 369.224 529.402 372.751 537.318 378.458 543.068 L 352.594 575.134 C 338.699 592.361 341.404 617.629 358.631 631.524 C 375.858 645.419 401.125 642.713 415.02 625.486 L 483.51 540.573 C 493.454 528.244 494.896 511.797 488.604 498.345 C 505.205 484.944 515.8 464.424 515.8 441.449 C 515.8 409.798 495.693 382.807 467.577 372.542 C 470.155 365.239 471.551 357.382 471.551 349.202 C 471.551 310.28 439.95 278.68 401.028 278.68 C 378.977 278.68 359.276 288.822 346.378 304.724 C 323.709 282.619 292.732 269 258.6 269 C 258.369 269 258.137 269.001 257.907 269.006 C 257.678 269.001 257.448 269 257.217 269 C 223.085 269 192.108 282.619 169.44 304.724 Z " fill="rgb(250,148,121)" />
<path d=" M 291.69 493.866 L 270.466 493.866 C 265.257 493.866 261.028 498.095 261.028 503.305 L 261.028 503.787 C 261.028 508.996 265.257 513.225 270.466 513.225 L 291.69 513.225 C 296.899 513.225 301.129 508.996 301.129 503.787 L 301.129 503.305 C 301.129 498.095 296.899 493.866 291.69 493.866 Z M 291.69 469.505 L 270.466 469.505 C 265.257 469.505 261.028 473.735 261.028 478.944 L 261.028 479.426 C 261.028 484.635 265.257 488.865 270.466 488.865 L 291.69 488.865 C 296.899 488.865 301.129 484.635 301.129 479.426 L 301.129 478.944 C 301.129 473.735 296.899 469.505 291.69 469.505 Z M 291.69 444.615 L 270.466 444.615 C 265.257 444.615 261.028 448.844 261.028 454.054 L 261.028 454.536 C 261.028 459.745 265.257 463.974 270.466 463.974 L 291.69 463.974 C 296.899 463.974 301.129 459.745 301.129 454.536 L 301.129 454.054 C 301.129 448.844 296.899 444.615 291.69 444.615 Z M 377.182 382.389 C 377.182 384.679 375.324 386.538 373.034 386.538 C 370.745 386.538 368.886 384.679 368.886 382.389 C 368.886 380.1 370.745 378.241 373.034 378.241 C 375.324 378.241 377.182 380.1 377.182 382.389 L 377.182 382.389 Z M 293.977 320.163 L 381.603 320.163 L 381.603 320.163 C 393.664 320.163 403.456 329.955 403.456 342.016 L 403.456 384.007 C 403.456 396.068 393.664 405.86 381.603 405.86 L 282.88 405.86 C 270.819 405.86 261.028 396.068 261.028 384.007 L 261.028 342.834 C 275.551 341.602 287.898 332.682 293.977 320.163 Z M 477.189 454.703 C 477.189 427.745 455.303 405.86 428.346 405.86 C 401.389 405.86 379.503 427.745 379.503 454.703 C 379.503 481.66 401.389 503.546 428.346 503.546 C 455.303 503.546 477.189 481.66 477.189 454.703 Z M 224.127 493.866 L 245.351 493.866 C 250.56 493.866 254.79 498.095 254.79 503.305 L 254.79 503.787 C 254.79 508.996 250.56 513.225 245.351 513.225 L 224.127 513.225 C 218.918 513.225 214.688 508.996 214.688 503.787 L 214.688 503.305 C 214.688 498.095 218.918 493.866 224.127 493.866 Z M 224.127 469.505 L 245.351 469.505 C 250.56 469.505 254.79 473.735 254.79 478.944 L 254.79 479.426 C 254.79 484.635 250.56 488.865 245.351 488.865 L 224.127 488.865 C 218.918 488.865 214.688 484.635 214.688 479.426 L 214.688 478.944 C 214.688 473.735 218.918 469.505 224.127 469.505 Z M 224.127 444.615 L 245.351 444.615 C 250.56 444.615 254.79 448.844 254.79 454.054 L 254.79 454.536 C 254.79 459.745 250.56 463.974 245.351 463.974 L 224.127 463.974 C 218.918 463.974 214.688 459.745 214.688 454.536 L 214.688 454.054 C 214.688 448.844 218.918 444.615 224.127 444.615 Z M 138.635 382.389 C 138.635 384.679 140.494 386.538 142.783 386.538 C 145.073 386.538 146.931 384.679 146.931 382.389 C 146.931 380.1 145.073 378.241 142.783 378.241 C 140.494 378.241 138.635 380.1 138.635 382.389 L 138.635 382.389 Z M 221.84 320.163 L 134.214 320.163 L 134.214 320.163 C 122.153 320.163 112.362 329.955 112.362 342.016 L 112.362 384.007 C 112.362 396.068 122.153 405.86 134.214 405.86 L 232.937 405.86 C 244.998 405.86 254.79 396.068 254.79 384.007 L 254.79 342.834 C 240.266 341.602 227.919 332.682 221.84 320.163 Z M 38.628 454.703 C 38.628 427.745 60.514 405.86 87.471 405.86 C 114.428 405.86 136.314 427.745 136.314 454.703 C 136.314 481.66 114.428 503.546 87.471 503.546 C 60.514 503.546 38.628 481.66 38.628 454.703 Z " fill-rule="evenodd" fill="rgb(253,194,149)" />
<path d=" M 279.342 912 L 323.591 912 L 323.591 520.669 L 192.226 520.669 L 192.226 912 L 233.982 912 L 233.982 582.895 L 279.342 582.895 L 279.342 912 Z " fill="rgb(0,25,40)" />
</g>
</svg>
</div>