-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
index.html
2199 lines (2188 loc) · 97.5 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>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Netlify CMS on Vercel</title>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@adrianub" />
<meta
property="og:site_name"
content="Use Netlify CMS for sites hosted on Vercel."
/>
<meta property="og:type" content="website" />
<meta
property="og:title"
content="Use Netlify CMS for sites hosted on Vercel."
/>
<meta property="og:locale" content="en" />
<meta property="og:url" content="https://netlify-cms.adrianub.vercel.app" />
<link rel="canonical" href="https://netlify-cms.adrianub.vercel.app" />
<meta
name="description"
content="Use Netlify CMS for sites hosted on Vercel."
/>
<meta
property="og:description"
content="Use Netlify CMS for sites hosted on Vercel."
/>
<meta
property="og:image"
content="https://banners.adrianub.vercel.app/Use%20Netlify%20CMS%20for%20sites%20hosted%20on%20Vercel..png?type=banner&theme=dark&author=Adri%C3%A1n+UB&username=adrian-ub&images=netlify&widths=250&heights=250&images=vercel&widths=250&heights=250&pattern=architect&md=1&showWatermark=1&fontSize=100px"
/>
<style>
.github-corner:hover .octo-arm {
animation: octocat-wave 560ms ease-in-out;
}
@keyframes octocat-wave {
0%,
100% {
transform: rotate(0);
}
20%,
60% {
transform: rotate(-25deg);
}
40%,
80% {
transform: rotate(10deg);
}
}
</style>
<style>
svg#stories-authentication:not(.animated) .animable {
opacity: 0;
}
svg#stories-authentication.animated #verification-code--inject-31 {
animation: 1.5s Infinite linear shake;
animation-delay: 0s;
}
svg#stories-authentication.animated #eye-scan--inject-31 {
animation: 1.5s Infinite linear wind;
animation-delay: 0s;
}
svg#stories-authentication.animated #Character--inject-31 {
animation: 1.5s Infinite linear floating;
animation-delay: 0s;
}
@keyframes shake {
10%,
90% {
transform: translate3d(-1px, 0, 0);
}
20%,
80% {
transform: translate3d(2px, 0, 0);
}
30%,
50%,
70% {
transform: translate3d(-4px, 0, 0);
}
40%,
60% {
transform: translate3d(4px, 0, 0);
}
}
@keyframes wind {
0% {
transform: rotate(0deg);
}
25% {
transform: rotate(1deg);
}
75% {
transform: rotate(-1deg);
}
}
@keyframes floating {
0% {
opacity: 1;
transform: translateY(0px);
}
50% {
transform: translateY(-10px);
}
100% {
opacity: 1;
transform: translateY(0px);
}
}
</style>
<script src="https://unpkg.com/tailwindcss-jit-cdn"></script>
</head>
<body class="min-h-screen border-t-4 border-gray-900 flex flex-col">
<a
href="https://github.com/ublabs/netlify-cms-oauth"
class="github-corner"
aria-label="View source on GitHub"
>
<svg
width="80"
height="80"
viewBox="0 0 250 250"
style="
fill: #151513;
color: #fff;
position: absolute;
top: 0;
border: 0;
right: 0;
"
aria-hidden="true"
>
<path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path>
<path
d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2"
fill="currentColor"
style="transform-origin: 130px 106px"
class="octo-arm"
></path>
<path
d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z"
fill="currentColor"
></path>
</svg>
</a>
<header class="h-24 sm:h-32 flex items-center">
<div
class="container mx-auto px-6 sm:px-12 flex items-center justify-between"
>
<div
class="text-black font-black text-2xl flex items-center text-gray-800 space-x-4"
>
<div class="flex justify-center items-center space-x-1">
<svg
id="netlify-svg"
class="w-10 h-10 fill-current"
role="img"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<title>Netlify icon</title>
<path
d="M17.3877 8.3286l-.0088-.0037c-.005-.002-.01-.0038-.0144-.0082a.0689.0689 0 0 1-.0176-.0582l.4839-2.9581 2.269 2.2696L17.74 8.574a.052.052 0 0 1-.0206.0037H17.71a.0647.0647 0 0 1-.0126-.0106 1.074 1.074 0 0 0-.3097-.2385zm3.291-.1802l2.4262 2.426c.5039.5045.7561.7562.8481 1.0479.0138.0431.025.0863.0338.1308l-5.798-2.4555a.4557.4557 0 0 0-.0093-.0038c-.0232-.0094-.0501-.02-.0501-.0439 0-.0237.0275-.035.0507-.0444l.0075-.0031zm3.2092 4.3833c-.1252.2354-.3693.4795-.7824.8932l-2.7353 2.7347-3.5377-.7367-.0188-.0038c-.0313-.005-.0645-.0107-.0645-.0388a1.0678 1.0678 0 0 0-.41-.7467c-.0144-.0144-.0106-.037-.0063-.0576 0-.003 0-.0063.0013-.0088l.6654-4.0848.0025-.0138c.0038-.0313.0094-.0676.0376-.0676a1.0829 1.0829 0 0 0 .726-.4162c.0056-.0063.0094-.0131.017-.0169.02-.0094.0437 0 .0644.0088l6.0402 2.555zm-4.1467 4.257l-4.498 4.4979.77-4.732.0012-.0063a.083.083 0 0 1 .0038-.0182c.0063-.015.0226-.0213.0382-.0275l.0075-.0031a1.158 1.158 0 0 0 .435-.3236c.015-.0176.0332-.0345.0564-.0376a.0563.0563 0 0 1 .0181 0l3.1672.651zm-5.45 5.4499l-.507.507-5.6052-8.1007a.2654.2654 0 0 0-.0062-.0088c-.0088-.012-.0182-.0238-.0163-.0376.0006-.01.0069-.0188.0138-.0263l.0062-.0081c.017-.025.0313-.05.047-.077l.0125-.0219.0019-.0019c.0087-.015.0169-.0294.0319-.0376.0131-.0063.0313-.0038.0457-.0006l6.2098 1.2807a.1027.1027 0 0 1 .0476.0206c.008.0081.01.017.0119.027a1.0998 1.0998 0 0 0 .6434.7354c.0175.0088.01.0282.002.0488a.149.149 0 0 0-.0095.0282c-.0782.4757-.7492 4.568-.9295 5.6728zm-1.059 1.0584c-.3737.37-.594.5659-.8432.6447a1.2519 1.2519 0 0 1-.7549 0c-.2916-.0926-.5439-.3442-1.0478-.8487l-5.629-5.629 1.4704-2.2802a.0938.0938 0 0 1 .025-.0294c.0157-.0113.0382-.0063.057 0a1.5235 1.5235 0 0 0 1.0253-.052c.0169-.0063.0338-.0106.0469.0013a.119.119 0 0 1 .0175.02l5.6327 8.174zm-8.8175-6.3756L3.1234 15.63l2.55-1.0879a.0526.0526 0 0 1 .0207-.0044c.0213 0 .0338.0213.045.0407a1.8214 1.8214 0 0 0 .0814.1152l.0082.01c.0075.0106.0025.0213-.005.0313l-1.4084 2.1864zm-1.8628-1.8628L.9183 13.4249c-.278-.2779-.4795-.4794-.6197-.6528l4.9674 1.0303a.5258.5258 0 0 0 .0187.003c.0307.005.0645.0107.0645.0395 0 .0313-.037.0457-.0682.0576l-.0144.0063zM.0132 11.932a1.2519 1.2519 0 0 1 .0563-.3098c.0927-.2917.3443-.5434.8488-1.0478l2.0906-2.0906a1361.7196 1361.7196 0 0 0 2.8955 4.1855c.017.0226.0357.0476.0163.0664-.0914.1008-.1828.211-.2473.3305a.1001.1001 0 0 1-.0313.0388c-.008.005-.0169.003-.0262.0013h-.0013l-5.6014-1.175zm3.5553-4.0078l2.811-2.811c.2641.1157 1.2256.522 2.0856.885.651.2754 1.2443.5258 1.4308.6071.0188.0076.0357.015.0439.0338.005.0113.0025.0257 0 .0376a1.2537 1.2537 0 0 0 .3273 1.1442c.0188.0188 0 .0457-.0163.0689l-.0088.0131-2.8542 4.421c-.0075.0124-.0144.023-.0269.0312-.015.0094-.0363.005-.0538.0006a1.4234 1.4234 0 0 0-.34-.0463c-.1026 0-.214.0188-.3266.0395h-.0007c-.0125.0019-.0238.0044-.0338-.0031a.1314.1314 0 0 1-.0281-.032zm3.3787-3.3788l3.6391-3.639c.504-.5039.7562-.7561 1.0478-.8481a1.2519 1.2519 0 0 1 .755 0c.2916.092.5438.3442 1.0477.848l.7887.7888-2.5882 4.0084a.097.097 0 0 1-.0257.03c-.0156.0107-.0375.0063-.0563 0a1.3126 1.3126 0 0 0-1.2018.2316c-.0169.0176-.042.0075-.0632-.0019-.338-.147-2.967-1.258-3.343-1.4177zm7.8278-2.3009l2.3898 2.3898-.5758 3.5665v.0094a.0845.0845 0 0 1-.005.0238c-.0063.0125-.0188.015-.0313.0188a1.1454 1.1454 0 0 0-.343.1709.0964.0964 0 0 0-.0125.0106c-.007.0075-.0138.0144-.025.0157a.0714.0714 0 0 1-.027-.0044l-3.6416-1.5473-.007-.0031c-.0231-.0094-.0506-.0207-.0506-.0445a1.3758 1.3758 0 0 0-.194-.5727c-.0176-.0288-.037-.0588-.022-.0883zm-2.461 5.3868l3.4138 1.446c.0188.0087.0394.0168.0476.0362a.0663.0663 0 0 1 0 .0357.848.848 0 0 0-.0188.1646v.0958c0 .0238-.0244.0338-.047.0432l-.0069.0025c-.5408.231-7.5924 3.238-7.603 3.238-.0107 0-.022 0-.0326-.0107-.0188-.0188 0-.0451.0169-.0689a.4757.4757 0 0 0 .0087-.0125l2.8054-4.344.005-.0074c.0163-.0263.035-.0557.0651-.0557l.0282.0043c.0638.0088.1202.017.1771.017.4257 0 .82-.2072 1.0579-.5615a.1001.1001 0 0 1 .0212-.025c.017-.0126.042-.0063.0614.0024zm-3.9095 5.7492l7.6863-3.278s.0113 0 .022.0106c.0419.042.0776.0701.112.0964l.0169.0107c.0156.0088.0313.0188.0325.035 0 .0063 0 .01-.0013.0157l-.6584 4.0447-.0025.0163c-.0044.0313-.0088.067-.0382.067a1.0822 1.0822 0 0 0-.8594.5301l-.0031.005c-.0088.0144-.017.0282-.0313.0357-.0131.0063-.03.0038-.0438.0006L8.5064 13.706c-.0063-.0013-.0952-.3249-.102-.3255z"
></path>
</svg>
<span class="text-4xl">+</span>
<svg
id="vercel-svg"
class="w-10 h-10 fill-current"
role="img"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<title>Vercel icon</title>
<path d="M24 22.525H0l12-21.05 12 21.05z"></path>
</svg>
</div>
<span>Use Netlify CMS for sites hosted on Vercel. </span>
</div>
</div>
</header>
<main class="flex-grow">
<div
class="container mx-auto px-6 sm:px-12 flex flex-col-reverse sm:flex-row items-center"
>
<div class="sm:w-3/5 flex flex-col items-start mt-8 sm:mt-0">
<h1 class="text-4xl lg:text-6xl leading-none mb-4">
<strong class="font-black">Usage</strong>
</h1>
<p class="lg:text-lg mb-4 sm:mb-12">
In yours projects modify
<span class="bg-gray-900 text-gray-200 rounded-md px-1"
>config.yml</span
>
file:
</p>
<div class="w-full">
<div
class="coding inverse-toggle px-5 pt-4 shadow-lg text-gray-100 text-sm font-mono subpixel-antialiased bg-gray-800 pb-6 pt-4 rounded-lg leading-normal overflow-hidden"
>
<div class="top mb-2 flex">
<div class="h-3 w-3 bg-red-500 rounded-full"></div>
<div class="ml-2 h-3 w-3 bg-yellow-300 rounded-full"></div>
<div class="ml-2 h-3 w-3 bg-green-500 rounded-full"></div>
</div>
<div class="mt-4">
<div>
<span class="text-yellow-400">backend:</span>
</div>
<div class="ml-6">
<div>
<span class="text-yellow-400"> name: </span>
<span> [ </span>
<span class="text-green-400"> github | gitlab </span>
<span> ] </span>
</div>
<div>
<span class="text-yellow-400"> repo: </span>
<span class="text-green-400"> adrian-ub/adrian-ub </span>
<span> # Path to your Github/Gitlab </span>
</div>
<div>
<span class="text-yellow-400"> repository branch: </span>
<span class="text-green-400"> main </span>
<span> # Branch to update </span>
</div>
<div>
<span class="text-yellow-400"> base_url: </span>
<span class="text-green-400">
https://netlify-cms.adrianub.vercel.app
</span>
</div>
</div>
</div>
</div>
</div>
<div class="w-full mt-4 flex justify-end">
<a href="https://vercel.com/new/git/external?repository-url=https%3A%2F%2Fgithub.com%2Fublabs%2Fnetlify-cms-oauth&env=OAUTH_GITHUB_CLIENT_ID,OAUTH_GITHUB_CLIENT_SECRET,OAUTH_GITLAB_CLIENT_ID,OAUTH_GITLAB_CLIENT_SECRET&envDescription=Create%20a%20OAuth%20App%20on%20Github%20and%20Gitlab%20and%20set%20variables%20information%20&envLink=https%3A%2F%2Fgithub.com%2Fublabs%2Fnetlify-cms-oauth%23deploy&project-name=netlify-cms-oauth&repo-name=netlify-cms-oauth&demo-title=Netlify%20CMS%20OAuth&demo-description=Use%20Netlify%20CMS%20for%20sites%20hosted%20on%20Vercel.&demo-url=https%3A%2F%2Fnetlify-cms-adrianub.vercel.app">
<button class="flex-shrink-0 bg-gray-800 text-white text-base font-semibold py-2 px-4 rounded-lg shadow-md hover:bg-gray-700 focus:outline-none focus:ring-2 focus:ring-gray-500 focus:ring-offset-2 focus:ring-offset-gray-200">
<svg
id="vercel-svg"
class="h-6 w-6 fill-current inline-flex"
role="img"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<title>Vercel icon</title>
<path d="M24 22.525H0l12-21.05 12 21.05z"></path>
</svg>
<span>
Deploy
</span>
</button>
</a>
</div>
</div>
<div class="sm:w-2/5">
<svg
class="animated w-full"
id="stories-authentication"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 500 500"
version="1.1"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:svgjs="http://svgjs.com/svgjs"
>
<g
id="background-complete--inject-31"
class="animable"
style="transform-origin: 251.965px 240.575px"
>
<path
d="M238.4,341.53H45.31a5.72,5.72,0,0,1-5.71-5.71V64.39a5.72,5.72,0,0,1,5.71-5.66H238.4a5.71,5.71,0,0,1,5.7,5.71h0V335.82A5.71,5.71,0,0,1,238.4,341.53ZM45.31,58.93a5.47,5.47,0,0,0-5.46,5.46V335.82a5.47,5.47,0,0,0,5.46,5.46H238.4a5.46,5.46,0,0,0,5.45-5.46V64.39a5.46,5.46,0,0,0-5.45-5.46Z"
style="
fill: rgb(230, 230, 230);
transform-origin: 141.85px 200.13px;
"
id="elcxxka4x3jku"
class="animable"
></path>
<path
d="M454.7,341.53H261.6a5.71,5.71,0,0,1-5.7-5.71V64.39a5.71,5.71,0,0,1,5.7-5.66H454.7a5.71,5.71,0,0,1,5.7,5.66V335.82A5.71,5.71,0,0,1,454.7,341.53ZM261.6,58.93a5.46,5.46,0,0,0-5.45,5.46V335.82a5.46,5.46,0,0,0,5.45,5.46H454.7a5.48,5.48,0,0,0,5.47-5.46V64.39a5.48,5.48,0,0,0-5.47-5.46Z"
style="
fill: rgb(230, 230, 230);
transform-origin: 358.15px 200.13px;
"
id="elr4hyjjbxnjg"
class="animable"
></path>
<path
d="M207.75,197.46,206.38,315c-4.84,39.11-74.17,70.16-74.17,70.16S62.87,354.14,58,315L56.59,197.46l74.1-24.39Z"
style="
fill: rgb(245, 245, 245);
transform-origin: 132.17px 279.115px;
"
id="ellawjtbt3m3"
class="animable"
></path>
<path
d="M198.08,204.9l-1.19,105.54c-4.22,34.11-64.69,61.19-64.69,61.19s-60.47-27.08-64.68-61.19L66.25,204.9l64.63-21.27Z"
style="
fill: rgb(224, 224, 224);
transform-origin: 132.165px 277.63px;
"
id="elo2qucdyfrkc"
class="animable"
></path>
<path
d="M193.84,211.56l-1.12,96.89c-4,32-60.65,57.36-60.65,57.36s-56.69-25.39-60.64-57.36l-1.19-96.89,60.59-19.94Z"
style="
fill: none;
stroke: rgb(255, 255, 255);
stroke-linecap: round;
stroke-linejoin: round;
stroke-width: 3px;
stroke-dasharray: 0, 33;
transform-origin: 132.04px 278.715px;
"
id="elxm2cr2mvvjp"
class="animable"
></path>
<rect
x="306.94"
y="157.79"
width="133.38"
height="234.04"
style="
fill: rgb(245, 245, 245);
transform-origin: 373.63px 274.81px;
"
id="ela8r7txaw4um"
class="animable"
></rect>
<rect
x="316.8"
y="166.99"
width="113.85"
height="224.84"
style="
fill: rgb(224, 224, 224);
transform-origin: 373.725px 279.41px;
"
id="elnofgmrxjaz"
class="animable"
></rect>
<path
d="M320,392.83a1.43,1.43,0,0,1-.58-.12,1.39,1.39,0,0,1-.48-.32,1.33,1.33,0,0,1-.33-.49,1.56,1.56,0,0,1-.11-.57,1.5,1.5,0,0,1,1.79-1.47l.28.08.26.14a2.11,2.11,0,0,1,.23.19,1,1,0,0,1,.18.23,1.08,1.08,0,0,1,.14.26,1.31,1.31,0,0,1,.09.28,1.36,1.36,0,0,1,0,.29,1.39,1.39,0,0,1-.12.57,1.43,1.43,0,0,1-.32.49A1.52,1.52,0,0,1,320,392.83Z"
style="
fill: rgb(255, 255, 255);
transform-origin: 319.989px 391.331px;
"
id="el49g5wec9jmm"
class="animable"
></path>
<path
d="M318.48,354.49A1.5,1.5,0,0,1,320,353h0a1.5,1.5,0,0,1,1.5,1.5h0A1.5,1.5,0,0,1,320,356h0A1.5,1.5,0,0,1,318.48,354.49Zm0-36.83a1.5,1.5,0,0,1,1.5-1.5h0a1.5,1.5,0,0,1,1.5,1.5h0a1.5,1.5,0,0,1-1.5,1.5h0A1.5,1.5,0,0,1,318.48,317.66Zm0-36.84a1.5,1.5,0,0,1,1.5-1.5h0a1.5,1.5,0,0,1,1.5,1.5h0a1.5,1.5,0,0,1-1.5,1.5h0A1.5,1.5,0,0,1,318.48,280.82Zm0-36.84a1.5,1.5,0,0,1,1.5-1.5h0a1.5,1.5,0,0,1,1.5,1.5h0a1.5,1.5,0,0,1-1.5,1.5h0A1.5,1.5,0,0,1,318.48,244Zm0-36.83a1.5,1.5,0,0,1,1.5-1.5h0a1.5,1.5,0,0,1,1.5,1.5h0a1.5,1.5,0,0,1-1.5,1.5h0A1.5,1.5,0,0,1,318.48,207.15Z"
style="
fill: rgb(255, 255, 255);
transform-origin: 319.99px 280.825px;
"
id="el44hmzhsrry8"
class="animable"
></path>
<path
d="M320,171.81a1.48,1.48,0,0,1-1.06-.44,1.06,1.06,0,0,1-.19-.23,2,2,0,0,1-.14-.25,1,1,0,0,1-.08-.29,1.36,1.36,0,0,1,0-.29,1.52,1.52,0,0,1,.44-1.06,1.37,1.37,0,0,1,.22-.19,1.26,1.26,0,0,1,.26-.13,1.52,1.52,0,0,1,.28-.09,1.47,1.47,0,0,1,.59,0,1.52,1.52,0,0,1,.28.09,1.26,1.26,0,0,1,.26.13,2.11,2.11,0,0,1,.23.19,1.52,1.52,0,0,1,.44,1.06,1.36,1.36,0,0,1,0,.29,1.61,1.61,0,0,1-.09.29,1.23,1.23,0,0,1-.14.25,1,1,0,0,1-.18.23A1.52,1.52,0,0,1,320,171.81Z"
style="
fill: rgb(255, 255, 255);
transform-origin: 320.03px 170.31px;
"
id="elk8q3iadmbng"
class="animable"
></path>
<path
d="M389.88,170.31a1.5,1.5,0,0,1,1.5-1.5h0a1.5,1.5,0,0,1,1.5,1.5h0a1.5,1.5,0,0,1-1.5,1.5h0A1.5,1.5,0,0,1,389.88,170.31Zm-35.7,0a1.5,1.5,0,0,1,1.5-1.5h0a1.5,1.5,0,0,1,1.5,1.5h0a1.5,1.5,0,0,1-1.5,1.5h0A1.5,1.5,0,0,1,354.18,170.31Z"
style="
fill: rgb(255, 255, 255);
transform-origin: 373.53px 170.31px;
"
id="el96a4ch85pro"
class="animable"
></path>
<path
d="M427.08,171.81a1.43,1.43,0,0,1-.29,0l-.28-.08-.26-.14a2.11,2.11,0,0,1-.23-.19,1.5,1.5,0,0,1-.44-1.06,1.52,1.52,0,0,1,.44-1.06,1.3,1.3,0,0,1,.23-.18.94.94,0,0,1,.26-.14,1.31,1.31,0,0,1,.28-.09,1.47,1.47,0,0,1,.59,0l.28.09a.89.89,0,0,1,.25.14,1,1,0,0,1,.23.18,1.52,1.52,0,0,1,.44,1.06,1.5,1.5,0,0,1-.44,1.06,1.45,1.45,0,0,1-.23.19,2,2,0,0,1-.25.14l-.28.08A1.53,1.53,0,0,1,427.08,171.81Z"
style="
fill: rgb(255, 255, 255);
transform-origin: 427.08px 170.329px;
"
id="elo5xeody8nj"
class="animable"
></path>
<path
d="M425.58,354.49a1.5,1.5,0,0,1,1.5-1.5h0a1.5,1.5,0,0,1,1.5,1.5h0a1.5,1.5,0,0,1-1.5,1.5h0A1.5,1.5,0,0,1,425.58,354.49Zm0-36.83a1.5,1.5,0,0,1,1.5-1.5h0a1.5,1.5,0,0,1,1.5,1.5h0a1.5,1.5,0,0,1-1.5,1.5h0A1.5,1.5,0,0,1,425.58,317.66Zm0-36.84a1.5,1.5,0,0,1,1.5-1.5h0a1.5,1.5,0,0,1,1.5,1.5h0a1.5,1.5,0,0,1-1.5,1.5h0A1.5,1.5,0,0,1,425.58,280.82Zm0-36.84a1.5,1.5,0,0,1,1.5-1.5h0a1.5,1.5,0,0,1,1.5,1.5h0a1.5,1.5,0,0,1-1.5,1.5h0A1.5,1.5,0,0,1,425.58,244Zm0-36.83a1.5,1.5,0,0,1,1.5-1.5h0a1.5,1.5,0,0,1,1.5,1.5h0a1.5,1.5,0,0,1-1.5,1.5h0A1.5,1.5,0,0,1,425.58,207.15Z"
style="
fill: rgb(255, 255, 255);
transform-origin: 427.08px 280.82px;
"
id="elkxtiktmizws"
class="animable"
></path>
<path
d="M427.08,392.83a1.5,1.5,0,0,1-1.06-2.56,2.11,2.11,0,0,1,.23-.19l.26-.14.28-.08a1.47,1.47,0,0,1,.59,0l.28.08a2,2,0,0,1,.25.14,1.45,1.45,0,0,1,.23.19,1.5,1.5,0,0,1,.44,1.06,1.46,1.46,0,0,1-.44,1.06A1.5,1.5,0,0,1,427.08,392.83Z"
style="
fill: rgb(255, 255, 255);
transform-origin: 427.081px 391.33px;
"
id="el123gxift3qxr"
class="animable"
></path>
<rect
x="53.79"
y="392.21"
width="41.21"
height="0.25"
style="
fill: rgb(224, 224, 224);
transform-origin: 74.395px 392.335px;
"
id="elbazo28t5bt5"
class="animable"
></rect>
<rect
x="137.67"
y="390.21"
width="41.33"
height="0.25"
style="
fill: rgb(224, 224, 224);
transform-origin: 158.335px 390.335px;
"
id="el0v2e2ol7zow"
class="animable"
></rect>
<rect
x="222.78"
y="390.21"
width="10"
height="0.25"
style="
fill: rgb(224, 224, 224);
transform-origin: 227.78px 390.335px;
"
id="elv3t55zlcie"
class="animable"
></rect>
<rect
x="86.58"
y="398.75"
width="46.25"
height="0.25"
style="
fill: rgb(224, 224, 224);
transform-origin: 109.705px 398.875px;
"
id="elyfzeyg8lutr"
class="animable"
></rect>
<rect
x="271.2"
y="392.08"
width="21.6"
height="0.25"
style="
fill: rgb(224, 224, 224);
transform-origin: 282px 392.205px;
"
id="el39afhtf3vq1"
class="animable"
></rect>
<rect
x="301.7"
y="392.08"
width="27.93"
height="0.25"
style="
fill: rgb(224, 224, 224);
transform-origin: 315.665px 392.205px;
"
id="elw2y4mjx4uy7"
class="animable"
></rect>
<rect
x="401.89"
y="396.31"
width="62.44"
height="0.25"
style="
fill: rgb(224, 224, 224);
transform-origin: 433.11px 396.435px;
"
id="el58yb5yie0c"
class="animable"
></rect>
<polygon
points="233.41 87.65 187.34 87.65 189.86 58.94 235.92 58.94 233.41 87.65"
style="
fill: rgb(235, 235, 235);
transform-origin: 211.63px 73.295px;
"
id="elma8nqcoh3nr"
class="animable"
></polygon>
<polygon
points="234.34 55.04 233.08 70.03 231.82 88.05 187.52 88.05 190.04 55.04 234.34 55.04"
style="
fill: rgb(250, 250, 250);
transform-origin: 210.93px 71.545px;
"
id="el2pm5f2jgoc8"
class="animable"
></polygon>
<polygon
points="230.11 58.94 232.62 87.65 186.56 87.65 184.04 58.94 187.96 58.94 189.32 56.78 201.73 56.78 203.51 58.94 230.11 58.94"
style="
fill: rgb(224, 224, 224);
transform-origin: 208.33px 72.215px;
"
id="elkf7bottfv"
class="animable"
></polygon>
<rect
x="255.79"
y="94.06"
width="49.02"
height="49.02"
style="
fill: rgb(235, 235, 235);
transform-origin: 280.3px 118.57px;
"
id="elacnthmak6ar"
class="animable"
></rect>
<rect
x="304.81"
y="94.06"
width="1.25"
height="49.02"
style="
fill: rgb(224, 224, 224);
transform-origin: 305.435px 118.57px;
"
id="elvqym56tfi6f"
class="animable"
></rect>
<rect
x="260.31"
y="98.6"
width="39.96"
height="39.96"
style="
fill: rgb(245, 245, 245);
transform-origin: 280.29px 118.58px;
"
id="elz2zqm618mab"
class="animable"
></rect>
<rect
x="260.32"
y="98.6"
width="0.37"
height="39.96"
style="
fill: rgb(224, 224, 224);
transform-origin: 260.505px 118.58px;
"
id="elafe5zkalhlu"
class="animable"
></rect>
<ellipse
cx="280.67"
cy="114.43"
rx="7.79"
ry="9.92"
style="
fill: rgb(224, 224, 224);
transform-origin: 280.67px 114.43px;
"
id="elht7x90ow14b"
class="animable"
></ellipse>
<g id="el7c6nd7bomqm">
<rect
x="276.6"
y="121.15"
width="8.21"
height="8.21"
style="
fill: rgb(224, 224, 224);
transform-origin: 280.705px 125.255px;
transform: rotate(180deg);
"
class="animable"
></rect>
</g>
<g id="elbpqfoisz48d">
<path
d="M265.4,126.12h30.08a0,0,0,0,1,0,0v2.8a9.64,9.64,0,0,1-9.64,9.64H275a9.64,9.64,0,0,1-9.64-9.64v-2.8A0,0,0,0,1,265.4,126.12Z"
style="
fill: rgb(224, 224, 224);
transform-origin: 280.42px 132.34px;
transform: rotate(180deg);
"
class="animable"
></path>
</g>
<path
d="M264.64,121.88c0,1.63,3,3,3,3s3-1.33,3-3c0-.78-1.08-1.22-1.79-1A2.18,2.18,0,0,0,267.6,122a3.87,3.87,0,0,0-1.47-1.2A1.12,1.12,0,0,0,264.64,121.88Z"
style="
fill: rgb(224, 224, 224);
transform-origin: 267.64px 122.809px;
"
id="el8f1vnhl9sa2"
class="animable"
></path>
<path
d="M291.26,114.59c0,2.15,3.89,3.89,3.89,3.89s3.89-1.74,3.89-3.89c0-1-1.44-1.59-2.35-1.33a2.84,2.84,0,0,0-1.54,1.48,5.26,5.26,0,0,0-1.93-1.58A1.47,1.47,0,0,0,291.26,114.59Z"
style="
fill: rgb(224, 224, 224);
transform-origin: 295.15px 115.778px;
"
id="elz63r6o14ahj"
class="animable"
></path>
<path
d="M205.71,359.32c.46,2.89,2.55,5.38,2.71,8.3.13,2.29-.94,4.44-1.47,6.67s-.27,5,1.68,6.18a4.48,4.48,0,0,0,4.52-.27,10.26,10.26,0,0,0,3.15-3.49,32.46,32.46,0,0,0,4.85-16.48c0-2.45-.25-5.05-1.69-7C215,347,204.57,352.12,205.71,359.32Z"
style="
fill: rgb(245, 245, 245);
transform-origin: 213.387px 365.694px;
"
id="ely25w2up1a3n"
class="animable"
></path>
<path
d="M202,351.67a3.2,3.2,0,0,0,1.61.95,2.32,2.32,0,0,0,2.21-.43,2.61,2.61,0,0,0,.5-2.11,5,5,0,0,0-.91-2.56,2.78,2.78,0,0,0-2.36-1.15,2,2,0,0,0-1.82,1.74A6.11,6.11,0,0,0,202,351.67Z"
style="
fill: rgb(245, 245, 245);
transform-origin: 203.788px 349.551px;
"
id="eldykb3gm81ef"
class="animable"
></path>
<path
d="M210.31,345.66a1.92,1.92,0,0,0-1.94-.85,1.87,1.87,0,0,0-1.44,1.54,5.54,5.54,0,0,0,0,.73,5.82,5.82,0,0,0,.13,1.17,2.27,2.27,0,0,0,.51,1,2.39,2.39,0,0,0,1.25.64,1.86,1.86,0,0,0,1.67-.42,2.35,2.35,0,0,0,.52-1.75A3.72,3.72,0,0,0,210.31,345.66Z"
style="
fill: rgb(245, 245, 245);
transform-origin: 208.971px 347.362px;
"
id="els0eivnn3rqs"
class="animable"
></path>
<path
d="M214.94,345.41a1.43,1.43,0,0,0-1.75-.66,2.08,2.08,0,0,0-1.24,1.51c0,.22-.06.44-.07.66A4.28,4.28,0,0,0,212,348a1.65,1.65,0,0,0,.52.9,1.84,1.84,0,0,0,1,.42,1.66,1.66,0,0,0,1.33-.43,2.41,2.41,0,0,0,.6-1.6A3,3,0,0,0,214.94,345.41Z"
style="
fill: rgb(245, 245, 245);
transform-origin: 213.668px 346.997px;
"
id="elan5o9cmgb3k"
class="animable"
></path>
<path
d="M219.07,346.37c-.49-.73-1-.78-1.56-.47a2.63,2.63,0,0,0-1,1.49,3.64,3.64,0,0,0-.12.59,3.1,3.1,0,0,0,0,1,1.27,1.27,0,0,0,.52.79,1.35,1.35,0,0,0,.83.2,1.61,1.61,0,0,0,1-.47,2.57,2.57,0,0,0,.67-1.43A2.41,2.41,0,0,0,219.07,346.37Z"
style="
fill: rgb(245, 245, 245);
transform-origin: 217.897px 347.847px;
"
id="el7urrhbdngeb"
class="animable"
></path>
<path
d="M219.88,350.42a1.6,1.6,0,0,0,0,.72.75.75,0,0,0,.43.56,1.06,1.06,0,0,0,1.1-.42,2.57,2.57,0,0,0,.63-1.08,1.57,1.57,0,0,0-.15-1.22C221,347.53,220,349.7,219.88,350.42Z"
style="
fill: rgb(245, 245, 245);
transform-origin: 220.97px 350.109px;
"
id="el9142vhcb4wa"
class="animable"
></path>
<path
d="M220.69,426.11c.67-2.36,1.06-4.95.17-7.24-2.75-7.13-14.11-4.86-14.86,2.4Z"
style="
fill: rgb(245, 245, 245);
transform-origin: 213.689px 420.322px;
"
id="elfgyk5787ckv"
class="animable"
></path>
<path
d="M204.42,412.93a3.19,3.19,0,0,0,1.32,1.33,2.31,2.31,0,0,0,2.24.15,2.63,2.63,0,0,0,1-1.91,5,5,0,0,0-.22-2.7,2.81,2.81,0,0,0-2-1.73,2,2,0,0,0-2.2,1.21A6.17,6.17,0,0,0,204.42,412.93Z"
style="
fill: rgb(245, 245, 245);
transform-origin: 206.641px 411.335px;
"
id="eljtofqcc0fd"
class="animable"
></path>
<path
d="M214,409.24a1.94,1.94,0,0,0-1.66-1.32,1.89,1.89,0,0,0-1.79,1.12,5.78,5.78,0,0,0-.22.7,5.51,5.51,0,0,0-.18,1.16,2.2,2.2,0,0,0,.23,1.13,2.42,2.42,0,0,0,1,.93,1.82,1.82,0,0,0,1.71,0,2.36,2.36,0,0,0,1-1.55A3.84,3.84,0,0,0,214,409.24Z"
style="
fill: rgb(245, 245, 245);
transform-origin: 212.175px 410.546px;
"
id="el7t5vy951ntd"
class="animable"
></path>
<path
d="M218.5,410.19A1.44,1.44,0,0,0,217,409.1a2.11,2.11,0,0,0-1.59,1.15,6.44,6.44,0,0,0-.24.61,4.07,4.07,0,0,0-.2,1.05,1.69,1.69,0,0,0,.26,1,1.81,1.81,0,0,0,.9.67,1.64,1.64,0,0,0,1.4-.08,2.4,2.4,0,0,0,1-1.38A3,3,0,0,0,218.5,410.19Z"
style="
fill: rgb(245, 245, 245);
transform-origin: 216.821px 411.398px;
"
id="el2k6p2zs814b"
class="animable"
></path>
<path
d="M222.24,412.18c-.28-.84-.81-1-1.38-.86a2.66,2.66,0,0,0-1.38,1.17,5.42,5.42,0,0,0-.27.54,3.07,3.07,0,0,0-.22.94,1.28,1.28,0,0,0,.29.89,1.33,1.33,0,0,0,.75.41,1.55,1.55,0,0,0,1.09-.19,2.58,2.58,0,0,0,1-1.21A2.4,2.4,0,0,0,222.24,412.18Z"
style="
fill: rgb(245, 245, 245);
transform-origin: 220.664px 413.287px;
"
id="elv97z5y2sso"
class="animable"
></path>
<path
d="M222,416.3a1.58,1.58,0,0,0-.21.69.77.77,0,0,0,.27.65,1.06,1.06,0,0,0,1.17-.12,2.68,2.68,0,0,0,.89-.88,1.59,1.59,0,0,0,.17-1.22C223.77,413.79,222.32,415.65,222,416.3Z"
style="
fill: rgb(245, 245, 245);
transform-origin: 223.065px 416.265px;
"
id="ela7pkzvxmfk"
class="animable"
></path>
<path
d="M181.27,383.66c.37,2.91-1,5.88-.3,8.73.51,2.23,2.14,4,3.26,6s1.65,4.72.09,6.4a4.46,4.46,0,0,1-4.41,1,10.49,10.49,0,0,1-4-2.49,32.45,32.45,0,0,1-9.22-14.49c-.72-2.35-1.16-4.92-.32-7.23C169,374.39,180.38,376.43,181.27,383.66Z"
style="
fill: rgb(245, 245, 245);
transform-origin: 175.603px 391.552px;
"
id="el8l71al5kz92"
class="animable"
></path>
<path
d="M182.68,375.3a3.15,3.15,0,0,1-1.28,1.35,2.29,2.29,0,0,1-2.24.2,2.59,2.59,0,0,1-1.07-1.89,5.09,5.09,0,0,1,.16-2.71,2.81,2.81,0,0,1,2-1.76,2,2,0,0,1,2.23,1.16C182.76,372.58,183.11,374.39,182.68,375.3Z"
style="
fill: rgb(245, 245, 245);
transform-origin: 180.429px 373.752px;
"
id="eldzml6mxhcpv"
class="animable"
></path>
<path
d="M173.07,371.81a1.94,1.94,0,0,1,1.63-1.36,1.89,1.89,0,0,1,1.81,1.09,5,5,0,0,1,.24.69,5.42,5.42,0,0,1,.2,1.15,2.14,2.14,0,0,1-.21,1.14,2.34,2.34,0,0,1-1,1,1.82,1.82,0,0,1-1.71.07,2.36,2.36,0,0,1-1-1.54A3.72,3.72,0,0,1,173.07,371.81Z"
style="
fill: rgb(245, 245, 245);
transform-origin: 174.918px 373.109px;
"
id="elpeqs39f5ef"
class="animable"
></path>
<path
d="M168.55,372.85a1.43,1.43,0,0,1,1.5-1.12,2.11,2.11,0,0,1,1.61,1.11,5.22,5.22,0,0,1,.25.61,4.1,4.1,0,0,1,.23,1.05,1.73,1.73,0,0,1-.25,1,1.81,1.81,0,0,1-.88.69,1.63,1.63,0,0,1-1.4-.05,2.37,2.37,0,0,1-1-1.36A3,3,0,0,1,168.55,372.85Z"
style="
fill: rgb(245, 245, 245);
transform-origin: 170.281px 374.025px;
"
id="ellnx339e78ep"
class="animable"
></path>
<path
d="M164.85,374.92c.27-.84.79-1,1.37-.89a2.66,2.66,0,0,1,1.4,1.15,4.6,4.6,0,0,1,.28.53,2.72,2.72,0,0,1,.24.93,1.24,1.24,0,0,1-.27.9,1.32,1.32,0,0,1-.74.42,1.57,1.57,0,0,1-1.1-.16,2.63,2.63,0,0,1-1.05-1.19A2.41,2.41,0,0,1,164.85,374.92Z"
style="
fill: rgb(245, 245, 245);
transform-origin: 166.45px 375.998px;
"
id="elq3sz22gyly"
class="animable"
></path>
<path
d="M165.19,379a1.76,1.76,0,0,1,.23.69.79.79,0,0,1-.26.66,1.09,1.09,0,0,1-1.18-.1,2.56,2.56,0,0,1-.9-.86,1.55,1.55,0,0,1-.19-1.22C163.36,376.56,164.85,378.39,165.19,379Z"
style="
fill: rgb(245, 245, 245);
transform-origin: 164.132px 379.001px;
"
id="el5cyb8zcvx9q"
class="animable"
></path>
<path
d="M156.73,143.59a11.75,11.75,0,1,1,10-13.27A11.77,11.77,0,0,1,156.73,143.59Zm-2.38-17.1a5.51,5.51,0,1,0,6.21,4.7A5.52,5.52,0,0,0,154.35,126.49Z"
style="
fill: rgb(224, 224, 224);
transform-origin: 155.093px 131.954px;
"
id="elzacbkokbnp9"
class="animable"
></path>
<g id="elv9sner1p85m">
<rect
x="149.86"
y="97.09"
width="4.46"
height="28.69"
style="
fill: rgb(224, 224, 224);
transform-origin: 152.09px 111.435px;
transform: rotate(-7.95deg);
"
class="animable"
></rect>
</g>
<g id="elzruw2iehd9j">
<rect
x="147.94"
y="93.82"
width="8.37"
height="4.46"
style="
fill: rgb(224, 224, 224);
transform-origin: 152.125px 96.05px;
transform: rotate(-8.04906deg);
"
class="animable"
></rect>
</g>
<g id="elvyycxo9k98g">
<rect
x="149.23"
y="99.46"
width="7.87"
height="4.46"
style="
fill: rgb(224, 224, 224);
transform-origin: 153.165px 101.69px;
transform: rotate(-7.94deg);
"
class="animable"
></rect>
</g>
<g id="elwsynu5xuamb">
<rect
x="151.36"
y="107.4"
width="6.87"
height="4.46"
style="
fill: rgb(224, 224, 224);
transform-origin: 154.795px 109.63px;
transform: rotate(-7.94deg);
"
class="animable"
></rect>
</g>
</g>
<g
id="Shadows--inject-31"
class="animable"
style="transform-origin: 250px 431.27px"
>
<g
id="Shadow--inject-214--inject-31"
class="animable"
style="transform-origin: 250px 431.27px"
>
<ellipse
id="path--inject-214--inject-31"
cx="250"
cy="431.27"
rx="193.89"
ry="11.32"
style="
fill: rgb(245, 245, 245);
transform-origin: 250px 431.27px;
"
class="animable"
></ellipse>
</g>
</g>
<g
id="Fingerprint--inject-31"
class="animable"
style="transform-origin: 128.44px 225.06px"
>
<g id="ellhovn2m8aeb">
<ellipse
cx="128.44"
cy="225.06"
rx="24.14"
ry="26.34"
style="
fill: rgb(55, 71, 79);
transform-origin: 128.44px 225.06px;
transform: rotate(-46.25deg);
"
class="animable"
></ellipse>
</g>
<g id="el5mxvpqbnfzl">
<g
style="opacity: 0.8; transform-origin: 128.44px 225.06px"
class="animable"
>
<g id="el4a1wx4spo75">
<ellipse
cx="128.44"
cy="225.06"
rx="24.14"
ry="26.34"
style="
fill: rgb(255, 255, 255);
transform-origin: 128.44px 225.06px;
transform: rotate(-46.25deg);
"
class="animable"
></ellipse>
</g>
</g>
</g>
<path
d="M116.69,209.24a1,1,0,0,1-.6-1.8,19.21,19.21,0,0,1,11.57-3.6h0a1,1,0,0,1,0,2h0a17.18,17.18,0,0,0-10.37,3.2A1,1,0,0,1,116.69,209.24Z"
style="
fill: rgb(55, 71, 79);
transform-origin: 122.175px 206.538px;
"
id="eloqvxr6gge"
class="animable"
></path>
<path
d="M121.42,243.64a1,1,0,0,1-.47-.12,23.3,23.3,0,0,1-11.9-16.18,20.37,20.37,0,0,1,4-17,1,1,0,0,1,1.54,1.28A18.39,18.39,0,0,0,111,227a21.37,21.37,0,0,0,10.88,14.8,1,1,0,0,1-.47,1.88Z"
style="
fill: rgb(55, 71, 79);
transform-origin: 115.5px 226.829px;
"
id="el2fy1of7ms17"
class="animable"
></path>
<path
d="M131.43,246.25a21.6,21.6,0,0,1-6.59-1.06,1,1,0,0,1,.62-1.91c6.15,2,12.29.88,16.84-3a17.92,17.92,0,0,0,5.78-16.6,1,1,0,1,1,2-.32,19.83,19.83,0,0,1-6.45,18.43A18.44,18.44,0,0,1,131.43,246.25Z"
style="
fill: rgb(55, 71, 79);
transform-origin: 137.271px 234.377px;
"
id="el0y0n9ofefvwa"
class="animable"
></path>
<path
d="M148.25,221.12a1,1,0,0,1-.95-.7,21.31,21.31,0,0,0-11.58-12.89,1,1,0,0,1,.8-1.84,23.34,23.34,0,0,1,12.68,14.12,1,1,0,0,1-.64,1.26A1.18,1.18,0,0,1,148.25,221.12Z"
style="
fill: rgb(55, 71, 79);
transform-origin: 142.184px 213.364px;
"
id="el8gvbo6ddkk"
class="animable"
></path>
<path
d="M132.49,206.4a.85.85,0,0,1-.23,0,20.33,20.33,0,0,0-4.59-.53,1,1,0,0,1-1-1,1,1,0,0,1,1-1h0a22.05,22.05,0,0,1,5,.59,1,1,0,0,1-.23,2Z"
style="
fill: rgb(55, 71, 79);
transform-origin: 130.116px 205.168px;
"
id="elp2aufcc97ha"
class="animable"
></path>
<path
d="M114.85,230.29a1,1,0,0,1-.94-.65,15.87,15.87,0,0,1,1.76-14.78,15,15,0,0,1,12.52-6.46h0a1,1,0,0,1,0,2h0A13.09,13.09,0,0,0,117.3,216,13.93,13.93,0,0,0,115.79,229a1,1,0,0,1-.59,1.28A1.07,1.07,0,0,1,114.85,230.29Z"
style="
fill: rgb(55, 71, 79);
transform-origin: 121.014px 219.349px;
"
id="el1vmjycn4ta0h"
class="animable"
></path>
<path
d="M130.71,241.71h0a18.63,18.63,0,0,1-15-8.47,1,1,0,0,1,1.67-1.09,16.62,16.62,0,0,0,13.33,7.56,1,1,0,0,1,0,2Z"
style="
fill: rgb(55, 71, 79);
transform-origin: 123.648px 236.734px;
"
id="elatm73qpep5b"
class="animable"
></path>
<path
d="M134.45,241.28a1,1,0,0,1-1-.76,1,1,0,0,1,.73-1.21c8.11-2,10.21-9.11,9.54-14.57-.87-7.12-6.49-14.33-15.56-14.34a1,1,0,0,1-1-1,1,1,0,0,1,1-1h0c10.23,0,16.57,8.1,17.55,16.1,1,8.25-3.33,14.83-11.05,16.75A1,1,0,0,1,134.45,241.28Z"
style="
fill: rgb(55, 71, 79);
transform-origin: 136.506px 224.84px;
"
id="el7mz416rg9my"
class="animable"
></path>
<path
d="M124.1,215.92a1,1,0,0,1-.9-.58,1,1,0,0,1,.48-1.33,11.71,11.71,0,0,1,4.87-1,1,1,0,0,1,0,2,9.66,9.66,0,0,0-4,.87A1,1,0,0,1,124.1,215.92Z"