-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathresource_rc.py
More file actions
10529 lines (10522 loc) · 392 KB
/
resource_rc.py
File metadata and controls
10529 lines (10522 loc) · 392 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Resource object code (Python 3)
# Created by: object code
# Created by: The Resource Compiler for Qt version 6.8.0
# WARNING! All changes made in this file will be lost!
from PySide6 import QtCore
qt_resource_data = b"\
\x00\x00\x084\
\x00\
\x00%sx\xda\xdd\x1aKk\xdcF\xf8l\x83\xff\xc3\
\x14\x1d\xec\x0d\xdaX\xd2>b\xcb\xa78\xb1I!\x81\
\x18\xa7\xed\xd1H\xab\xd9]a\xadf#\x8d\xfc\x88\x09\
$\xb4\x84\xb4\x04BKK PhJ\x0f\xe9\xa1\xed\
\xa5\xb4\x0d\x94\xfe\x9a\xda\x89\xffE\xbf\xd1\xe81\x92F\
\xbbk\xc7\xf1\xa1+kY\x8d\xbe\xf9\xde\xf3=f\xbc\
\xb5M-\x1a\x85\xebVp\xb40\x8f\xe0c[\xbd\xdd\
A@\x22\xdf1\x91\xd2o\xb1kma\xfe\xe1\xc2\xfc\
\xc2\xfc\xd6\xdd(\x1c\xaeG\x94\x12_\xb1I\xe0\xe0l\
N\xfc\xd0\x0c,\xc7\x8dB\x13u\xc6\x07k\xfc\xc5\xd8\
r\x1c\xd7\x1f\x98h%\x1bJa\xdd\xc1\x90\x9a\xc8\x18\
\x1f\xa0\x90x\xae\x83\x94\x95\xf8S\x84\xb2\x09\x10\x1bM\
\x05\xf3p\x1fp\xe99P?\xfe\x14\x81(\x19\xcba\
*\xb2\xf5=\x8b\x9aC\xb2\x87\x03tT+z\x0eP\
\xd4Z\xb3G<\x12\x98\xc8c\x02\x0e\x02\xeb0\xa3p\
\x07\x87\xa15\xc0\xeb\xe4\x00\x09\xe8j\x11\x04\x03{\xc9\
\xe8h\xaa\xd11\xe0n5\xd6\xfe\x8f\xba\x9e,}k\
E5\xdam\xb8W\xcf*}\x99\xce\x19\xad\xb5\xf5\x99\
\xeb\x0c0\xad\x05W\xfa\xd7\xd8\x95\xd0\xe6\x83\xb6\x07`\
\x19\xe9\xdbnH9\x12\x15\xc5\x0f\x9f\xbax\x1f~\xde\
\x0b0\xce\xc6\xd9\x03\x1bO\xf9\x22\x11\xf5\x5c\x1f\x9bH\
\x13\x84\xb8\x83\xfd\xc84]\x8aGf\x88=\xdc\xa3\xd8\
I\xe1S\xd2(\xa5\xcd\x07\xc5%\xcc\xf5\xa8\xa9\xc8h\
u\xe0\xab\xad5$,\xa6\xf8$\xd8\x12g\xf7\x89\x8f\
\x13\xd5\xe4\xd38W\xc9\xdc\x91\x15\x0c\x5c\xdf\xec\xa4\x9c\
W\xe0\x8a&(\x80W\xe2\x0e\xb6\xd8%\xe1\xb4F\x11\
S\xb0\xb5\xd9\xb5V+c\x9f\xf8\xb4\xb9\x8f\xf9*\xb1\
\x89\xe7\xd4I\x90\x92\x9d\xe6M\xca\xcd\x16\xbb\x0a\xfc\x8b\
v\x9eY\xcfl\xd2t-\xe7P\xe7\xd5q\x19\xcd\xa5\
\xe8wa\xfe\x16P%\xc1\xe1]\xcb\xc7\x9eL\x80\xb2\
#C$D\xfc\xce\xbd\xf8\xc6\x10\xf7v!\xa6\xc2|\
\xdfq{\x16 \xac\x9bnt\xd8\x12H\xbe\xd2\x88\x02\
\x06\xa6C\xd3\xd02\xd1nqF\x85\x91R\xd0\xd1\xe1\
\x0d\xd7\x9a\x84\xb6\x19\xf9=6\x8a\x9d\xa3\x99\xf1\xbb#\
H\x0b&\x8a\x02o\xc9\x5cv{\xc4\x0f\x97\x03\x1c\x92\
(\xe8\xe10y\x8e|n\x92\xab\xe1\xde \x91]J\
\xfdC\xd0\xaeR\xde\xee\x05\xc4\xf3\xa0f0\xc1X\x14\
H{\xa8X\x09\xec\xc7\x84QY\x85&J\xfc\xbbd\
\x1d0\x8e\xb5\xa4\xb7Z*\xd2Y\x94\xd2!\xee#-\
5\x10\xc7\xd5\xcdP%\xbe\xc8\x90\x8bw\x855sh\
\xf9\x8e\x87\xab,\x0a^q\x9f\x85[\xc0\xc7L\x8b}\
\xbat\xa0\x9b\x10*\x0f\xe3\xef\x03\xc3\xd4\xe1\xb7\x01\xbf\
\xf9\xc40\xcejZ\xecJ\x05f\x1bj\xfa\xeej\xa7\
\xfe\xad.y\x95\xca8r\xfd\xe60Y \x82qF\
\xd6\x81|8\xd1\x00\x97\x1d\xd5zjK\xa6\x16H\x94\
\xcd8\xcb|\x08\xc5H\xccXR\x8e\x14B\xd0\x90\xe4\
}\xaa\xa5T\x15\x13\xdd*\x8cl\xf0Z\x0a\xe26\xc7\
$t\xa9\x0b\xc9\x1f\xf1\xda\xa6\x0aA\xa04b\x9a\xe4\
\x1a\xad\xea\x0a@?\x90\xae.OY\xe8\xcc\xda\x02\xf4\
\xe7S\xd5\x98\xc5\x92I\xaa\xaa]\xe8<\x96\x97\xbc\xf4\
\xbd\xd0m\xdd\x0d\xc8\x00B\x99\xd0\xda\xc4y\xa8o\x8d\
\x5c\xef\xd0D\x8b\xd7\x03\x17\xb0~\xe2C\x90s0\xba\
\xb3\xbdXT\x9cadz\xa3\xf8\x806-(\x11}\
\xb3\x07\x06\xc6\x81\x98\xd7B\xf7\x016\xf5v\x06\x5c,\
\x06\xab\x8bR\xd7eIT\xd9X\xdf\xd8\xd8\xecTY\
7!\xa4G\xfe\xee\xd1\xec\xa8\xca\xee\x18\x8e\x03l9\
&\x14\xc8j\xec\x99\xb1c\xc6~\x19\xbbe\xecL\x1a\
RVWY\x89\xae&\xbe\x05\x8f\x9a\xd6\xefg\xa9\x86\
\x8cl\x02\xa9fa^\xcaH\xab\xecby\x0f!\xad\
?\x85\x82\x9d\xb7\x0aF\xb9\x8eO\xda\x0c#\x0b`)\
\x07\xa6\xe3\x86\x96\xeda'g\xa5\x5c~\xc5^\x01\x8d\
\x13\xff3\xb4\x8cd\xf6zI\xefjjr\x97E\xe4\
\x15\xc8\x14\xecL\xa2\xec\xce\x09$\xd2\xeb\x05\xe9[\xba\
\xaaw\xba\xaaah\x0d\x94W-)5\xd3\x09\xc8\xb8\
\xe9\x90}\xbf\xa4[\xa1\x14,\xc2\x03h\xd3\x0a\x02\xb2\
\x9fM\xe0\xfd]\x1e\x15\x93\xec\xab\xe793\x0d\x06\xc2\
\xd0\x0c\x89\x9f\x91*\x14\x1c\x12&L\x923~Qt\
\xa3\xb1H\xf56\xb8\xf3\x86\xe3R\x89IL\x1aX~\
8\xb6\x02\xf0s\xe9b\x93\x15\xac\x89\x1d\x95\x8d\xeb\xec\
\xca4|\xcf\xb2\xe3\xe5F-\xbb\xbe\xb0\xafkK%\
E\xaf\xd8\x90\x8a\xf2\xe7\x1dr\xec\xe3Y\xaen\xcb \
b\xcb\x96@*\xecV\xaa\xf5\xbanZ\xda\x05\x02\xa2\
\xb4\xc7\x19C\x1d^,\xe4 }\xe4\xc1y\xec\xfa\xb1\
\xf1\xa3q\xd3\x8e\x9bju\xeb&\x89`-V\xdf\x1c\
\xd5\xa6\x8fD-S\xd2\x0fw\xe9\xa2;\x0b\x05\x90\xa4\
&\x12\xdcj\xb1\xb6\x90\x8dl\xe6X\x8b\x8d\xaaL\xb1\
C\xd7H%\xbc{/\xb9x\x11\x82\x98\xd5/Z2\
\xa8\x1fk$\xcbLb\x8eYF\xc1NY\xbc\x0a@\
\xa1\xe5\x8b\xc3\xb3\xe8w\xe94A)u\x98% \xb3\
\xe1\x8e#p\x19\xdbl\x1b8\xf8\xb0\x8c\xad\x84\x07\xc9\
\xb7,\xb5sd0Yj\xa8B\xce\xe5U\x02Z\x1d\
\xd3\x9c=\xc0\x0dtL\xc0\x00\x92\x81x\x81\xfb\x00 \
-\x0f\x18\x9c\x9b\xcb\x02'\xcf\x80ss<\x1fj\xc9\
S \x16\xc2ss\x09\xcf\xc9cU\xbcn\x0aWj\
\xb94\x95]\x1d.\xd1C\x81\xa9\xa4u*1\x95\xb8\
+H\x96\xe0\xcb\xbc5\x1d\x10\x0c\x8b\x9a\xdd\xe2`Q\
\x82d0\xddt,\x03K\x05l\xf2\xa509e\x15\
\x1b\xd5D\x9e\xac8-J$\xe9BWXQ\x00\xd9\
\xba\xd5V\xf5l5)!\xa6\x94U%lQ[\x90\
\x8f\x82\xa3I.\xd0\xd1\xd5\xe4n\xd4\xef \xe4\x018\
\xdb\x11,\xc7^i\xb3,\xdf\x82\x14\x9cL\xa8E\xb3\
\x1c\xd4\x91\xd2\xe3[.)\xd5\x0cX\xaf\xf6W\xc2V\
.\xd6\xd85m;\xb6d\xde\x09y\xb8\xb29\x5c\xe6\
o\xeaf[\xc6Q\xcd\xfc\xe9\xe9QYi\xdf\xd07\
7\x8b\xc9|\x7f\x08\xb3\xeb\xb1~4\xf3f\xa0\xa3\xe1\
n\xbf\x9db\x02\x5c\xb7\xa0\x1e\xc7\x01\xdfn\x0b\x01\x07\
d\x87\x09\xd3[\xad\x96\x9c1\x89\x85\xcb\xae\xd0\xcd\xed\
.\xa7\x9bn\x18M\xa0\xdf\xedv\x05\x1c\xc29\x88g\
\xd9\xd8\xdba\xd0\xe3\x1d?\x1a\xa13\xed\x96++\x1a\
\xbb\x8a\xee\xc2W}W\xd6x\xf1\x8a@r\x1aS\xe2\
b\xaa52^8&nS%^\xd8=\xbaC\xc1\
\xcc\xd2\x830Q\x02i\xee\xe0\xe86\x03k\x84\xcf\x87\
-\x09\xf8\xd9J\xe3\x89\xc7\xb8\x06\x9d\x03\xd4\x9b\x86\xb0\
\xe5y)D\xd8\xb1\x83B\x09\xf1vF\xf0\xab^\xa1\
\xa27\xa6\xe1B8B\xc2:\xbb\xceuz\xc3\xc5\xec\
\xb3\xef\x9d\xde\xd0\xa2G\xd2\xe3\xaab\xb3e\x18\x1d5\
\xb93Q\x96\xaf\xa0w\x8f\xbf:\xfe\xe9\xe7\xb7\xdf=\
;\xfd\xfe\xc7\x7f\xff\xfa\xe5\xf4\xc5\xef\xa7\x9f\xbf>~\
\xfa\xe4\xed\xcb/\xde\xfd\xf3\xe6\xe4\xd5\x13teYB\
q\xa7x\xcay!\xda-\x9f\x92i\xb3B\xa7\x02\xcf\
<avc\x83\x86N\xfexz\xf2\xf8\xb7\xe3\xe7_\
\x9f>z|\xf2\xec\xcb\xd3o~\xe5*\x11\xcf=\xa9\
\xcf\xb5\x12b\xdf\xa9O\x81`\xf3Uv\x9d\xdd\xe6\x13\
\x88\x9d\xfd\xb4\x15\x9a\xd5\x11T1\xd0=\xeeN9j\
\x94\x85'T<\xcd\xab \xe3\xfc\xcc\xc4N\x1d\xd2\xcc\
-\xb9\xea\xb9\xbao\xb3h\xa6\xd8\x91\x0d\x15ks\xc4\
\x0f\x8c\x9bL\x05u\xa4\x94\xd5\x0e\xeeuW\xa7t\xbf\
\xa9\xae\xc5:@J*\xc0=\xec\xee\xe1Zj\xb2\xc3\
\xde\xf3S\xbb\x1f\x11\x8a'\x96R-(\xa3\xf8\xdd\xb8\
(\xa2>\xa1n\x0fO(z\x84\x9e\xb9\xbb\xa2\xc6\x7f\
\x8dr\xbe(\xe1\xdc#\x80\xf22\xedT%X\xc0\xa8\
U0\x8aIj\x92\x0c\x97\xeb\x00R\x9ag\x90Dn\
`\xb7\xb7\xebC\x08?\x9anNX\x83\xdb\xd0!\xac\
[A\xbc\xfcD\xed\xb0q\xdb\x0a\xca\xfd\xe2\x94\x98\xda\
m\x14\xfe\x81 \xc5\xf2\xb1PgO\xa9I$3\xa7\
W\xc0\x0e\xbb$\xc7\xe5\x8a\x97\xfd\x94\xcaS\xd8d\x04\
e\x1c?}\xf1\xee\xd5\xeb\xd3WoN\x1f\xbd|\xfb\
\xed\xeb\x93\x1f\xfe<\xfe\xfby\x12\x99& -6\x12\
iW\xd8\xd5\xa4\xff\x8a\xa1\xa4\x1a\x97\x83\xcf\x12\xa3k\
\x9b\xf7l9\xb3$\xd9\x9et\xf0!\x96\x96\xc9\x8eL\
\x1d\xa3\xb3\xab_\xaaX\xc1\xc76|\x07\x94\xf9\x1f3\
\xf0LX\
\x00\x00\x07\xfa\
\x00\
\x00%'x\xda\xdd\x1aYo\xdcD\xf89\x95\xfa\x1f\
\x06\xedC\x1b\xb4Kmov\x9b\x9a'\x02\xa9\x8aT\
\xa4F\xe5x\x8c|Lv\xadx=\x8b=n\xd2F\
HT (\x08\x09\x818$\x04\x12E<\x14\x89C\
B\x88CB\xfc\x1a\x926\xff\x82o<c{f<\
\xf6n\x9a\xb4\x0f\xac\xe3\xd5z<\xf3\xdd\xe7L\xb6\xde\
\x88\xc2\x09\xa6\x07\xe7\xcf!\xf8\xf8^\xb0;II\x9e\
\x84\x83\x80\xc4$uQ\xcf\xbe\xc2\xae\xe7\xf9{1\xb8\
7\x8d(\x86\xa1\xb7\xce\x9f;\x7fn\xeb\x15\x9c\xe4\x1b\
^z\x1a\x107\xa9G\xf3\xac\x1b\xc8evu\x01\xb9\
\x91g\xd3\x8d\x9cR\x92\xf4|\x92\x86\xb8\x02V<\x0c\
R/\x8c\xf2\xccE\xa3\xf9\xbe\x802\xf7\xc20J&\
.Z\xaf\x86\xca\xb9\xd1dJ]\xe4\xcc\xf7QF\xe2\
(D=g\xc4.u\x96O\x00\xd9l\xe1\xb4\x18\xef\
\x00,\xbb\x9e\xa4\xc8CL\xa2dn\x9eS\xca8\xcb\
\xbc\x09\xde \xfbH\xe2\xf3\xff\xc3\xa0\xa2\xbev#P\
\xb0\xf3\xc1\xd2\x06N\x22\x88&JwJn\xe1\x14\xb5\
c\x1eZ\xec\xaa\xf4q=\xca(\xf7\x9c>*\x1e^\
\x8f\xf0\x1e\xfc|5\xc5\xb8\x1ag\x0fl\xbc\x04Kr\
\x1aG\x09v\x91USQx\x8f\xeb\x02\x0f37\xc3\
1\x0e(\x0e\xcb\xf9\x9a\x95\x9b)K'\xfe\xc5\xa1\xd5\
G\xfc^5\xc1Ux;\x15\xd0\x9am\x0d\x9c\x1f\x03\
\x0cE\x0bnB\x12,\xc9\xba^\xca\xa9\x12\xebg^\
:\x89\x12\xb7V\x95\xd1\xb5\xf5\xc5*K\x0d\x185C\
\xb2\xcd\xb4\x80\xd2\xa5\xde\x0d\xad\xb2\x83\x16Y\xee\x90\x84\
\x0e\xf60w/\x9f\xc4\xe1b\xc4\x8bm\xcfg\x97\x02\
H6\xabeTP-j\x17\xbe\x0a\xfcL\xe4,\x01\
zJR\xbe\x06XIz\xfb\x86\x97\xe0\xd8\xc4\x82\x8c\
\x85\x19\xf9\xc8\xe9#~\xd7F\xfe\xe2\x14\x07\xbb\x10i\
a}\x12F\x81\x07\x00\xdb\x96\xdb\xa3>\xe2\xf7\xaa\xa0\
\x0c4L\xa7\xaecU|]\xe3TJ#Z\x94\xb2\
\xe1\x0d\xd7\x91\x01\xb1\x9b'\x01\x1b\xc5\xe1\xc1\xd2\xf0\xa3\
\x19d\x0a\x17\xe5i|\xd1\xbd\x14\x05$\xc9.\xa58\
#y\x1a\xe0L<\xe7\x09\xd7\xc7s\xd9\xad\x89`\xdc\
\x88\xfdI\xe0nb\xbe\x19\xa4$\x8e!\xfb\xbb\xa0)\
\x0a\xa8c\xa4f\xb6\xbd\x021\xd2E\xe8\x22a\xe0\x9a\
j@3\xdeE{8\x04\xbd\x0c\x99r\x86\xeb}d\
\x95\x0a\xe2\xb0\xc6\x15(a\x88\x0c\xb8|7Hs\xa7\
^\x12\xc6\xb8I\xa2d\x12o\xb2\xf0\x0e\xf0\x98jq\
B/\xee\xdb.\x04\xd0\xdb\xc5\xf7\xbe\xe3\xda\xf0\xdb\x81\
\xdf|aVdD\x8b\xdb\x91L\xecj\xbf|\xf7\xdc\
\xa8\xfd\xadmxU\xf28\x8b\x92\xc1Tx\x87\xa4\x9c\
\x99\xb7o\x1e\x16\x12\xe0\xbc\xa3VK\x1d\x9a\xc4\x02\x99\
uPd\xb5'!\x18\x83\x1a5\xe1\x18gH\x122\
\xbc/\xa5T\x8a\xa2\xd3\xac\xb2\xdc\x07\xab\xa5\xc0\xee`\
N\xb2\x88FP+ ^\x175g\x10(\xab\x98$\
\xb9D\x9b\xb2\x82\xa9OHVOOX\xe8\xc4\xd2\x02\
\xf0\x8f'\xaa9\x8b%]\xa2jut\xd1U\xa8V\
z*p[7R2\x81P&5)E\x12\xda\xf1\
fQ|\xdbE\x17^H#\x80\xfaZ\x02A.\xc4\
\xe8\x95\x9b\x17T\xc19N%7\x8a\xf7\xe9\xc0\x8b\xa3\
I\xe2\x06\xa0`\x9c\xcaI-\x8b\xee`\xd7^\xd3\xca\
\xa1fn/\x9d\xd2\xb6M\x19\xb4\xb7\xb9\xb1\xb9yu\
\xd4$\xdd\x85\x90\x9e'\xbb\x07\xcb\x83\xd2\xcd1\x9b\xa7\
\xd8\x0b]\xa8\xa8\xfb\x85e\x16\x86Y\xd8ea\x96\x85\
1Y\xa8w\xe5\xca\x0e|\xfa\xc2\xb6\xe0\xd1\xb2vv\
\xaaTCf>\x81Ts\xfe\xdc\xc1r\xa5\xfcP7\
\xba\xba#aQ\xd0\x01\x959\xa01gmU-\xf8\
y\xd7\xe1\xe8}\x80\xe8X\x1c\xa9\xee)IB[/\
\xf8\x19M\xbd\x80\xbe\x0c\xc5C]\xc0\x18\xcbgt\xe9\
Ytx\xef\xcbG\xf7\x1f\x1c\xdf\xff\xeb\xe8\x8b\xf7\x8f\
\xbe\xfe\xf1\xf8\xbb\xaf\x1f}\xf0+z\xf6\x92\x0e\x98\xd7\
!\x15\xc7\x8d2\xaf0>`D\xfcU\xf9J0l\
+\x0c\x0f\xed>\x94\x1d\x8e\xb3\x8a\x96`\xa0\xa5\xf2\xd7\
\xc8s\xc3\x94\xcc\x07!\xd9Kj\x1a\x9b\x85\xbc<\x1f\
\xa6\x0e\xbc4%{\xd5\x02\xdeU\xd6\xf1T\xe4m\xbb\
\xce\xb6e\x18\x91\x86\x96(\x19\x18*\xa9`h!\xc3\
%5\xe9g\x859\x9f\xabx\xaf\x833l\x86\x115\
\xe8\xd1\x05\xa1'\xd9\xdcK\xc1K\x8cFl\xaau\x85\
\xf2\xf5\xe2\xf9U\xcf/\x9c\x95z~\xa9=\xb9\x85\x95\
\x99\xa8\xdb\xeb\xc2\xaa\xabd\xbdf\x9aQ(H\x9b\xd2\
\xc0\xd8\xa8\xd5\x97!\xb7\xecl\xe6Py\xab\xd5\x1b\xe4\
\x8c:\x22\xcf\xa3\xa4\xd0Z>\x1f\xf8E\xe3\xdd\xdfz\
\x89\xe4~\x8c\x9bo\x0eZs\x86\x10\xc5\x82\x9c\xc3\xad\
Q\xb5D\xa9\xea1\x14B\x92=\x5ch\xad^s\x9f\
Y\xc4\x85\xd5&O\x85%\xb6p%\xbd;\x15_\xbc\
\xf2@L\xd3g\xcd\x19\x14\x8d-\x9cU*q\xe7,\
\x8d\xe0Pg\xaf1Ai\xf2\x8a ,\xdbZ\xb9L\
\x12J\x1bd\xc3\x94\xe5`\x17\xd1V\x87v\xc2M\x1e\
\xb1L\x83\x82\xcc\xbbn\xd6\x12)j(\xa7(S\x06\
\xd0\xa6\xad\xd4%\x01\xba2\xa75a\x00\x150\xb8\xb0\
\x1c8\x02\xb6\xd2\xe8\x0e\xcc\xf4b me\xa5\x8at\
<\xbf\xad\xac\xf0lg\x89\xa7T\xaezWV\x04\xb5\
\xe2\xb1\xc9\xd8\xb8\x9c\xa7\xf5WV\x9f]#\x9e\xa7\xde\
\x92\x88\x12}\x92F\x940S`L\xc0\xab\xac\xb4\x1c\
\x90\x14\x8a\x06cuP\xe5@\x0c\x96\xbb\x93\xfad#\
\x83\x03\xee\x02\xddYF\xedJ\x05?U%\xaard\
h9\xd7\xad\xbe=\x1eC\xfa^\xeb\xdb\x95\x17\xf52\
L)\xab9\x983{\x90>\xd2\x83.\xfdCVg\
\x7f\xab\xed{\x05u\xd4\xad\xf6\x1a\xf5\x80kl\x8b\xeb\
\x9d\xf4\xe2\xd3(:\x91TuV\xc9fd\xc4\xa7\x96\
D\xd5d\xbb\xd9I-\xd8\x14n\xee\xd4j\xba\xed\xc8\
\x99\x12#f\xfa\x16\xba\xbb\x9e\xc5\xf4\xf5\x0b\xf3`\xf7\
FU\x0b\xd4g\x96\xde\xf7\x0b-<\xdeY\x93\xf6P\
\xafA\xe5\x8dS^\x94f\x00\x03RB\x17m\xc3a\
\xfb\x0e\x9a\xa6a\xdd\x14\xc6\xca>\xb9\x01o\xb95\xd4\
\x81\x7f<\x1e\x9b\xcefb\xcf\xc7\xf16\x9b;\xdfN\
\xf2\x999\x9cZZ\x03\xd4[\xb7\xd8\xa5\x1a\x09w\xf4\
\xb1\xa9\xb1R\x92\x7f\xd7\x91\xd4\x22\xf24%\xb5\x10\xb9\
\x18\xc3\xd5\xd4\x9b\xe1^\x11\x03\x02\xbaM\xc1(\x96<\
/S\x0fl\xd46\xc0\xb9\xdcw\xd6Y\x1bP\xa1\xe1\
\x96f\xc4\xf3\xd8\xa4\xb3\x93\x84\x1e%$\xde\x9e\xc1/\
=\xd6H\x1e\xae8\xc3\x89\xcebJ\xba\xaf\x92t\xb6\
-\x88\xef\xf0\xdb\x80]\x9ahw\xd8\xf7v0\xf5\xe8\
\x81\xf1\x0cK\x95\x9c\x0dQV\xdc\x95\xf0\xa0\x99{t\
\xf7\xc3\xc3\xef\x7fx\xf8\xf9G\xc7\xdf|\xf7\xef\x9f?\
\x1d\x7f\xf9\xdb\xf1;\x0f\x0e\xef\xbd\xf7\xf0\xabw\x1f\xfd\
\xf3\xd7\xd1\xfd\xf7\x8a\xc6\xae\x81q[=o|L\x8d\
\xca*\x1d\xcbT\x1d\xfd~\xef\xe8\xee/\x87\x1f\x7fr\
\xfc\xf6\xdd\xa3\x8f>8\xfe\xf4gN\x86|\xe0I\x13\
NI\x86\x93NJ\x9c\x90]gs\x82\xc6\xba\xb0\x19\
d{h\x8av\x17\x9d\xdc->\x03n\x00\xe3\xaew\
\x9a\xd8\xdb\x04)jHt\x0aB+3\xe1j\xe1\xaa\
\xb8\xce\xa2F\xcf\xcf}\xa8\x13\x073~X;`\xba\
hm\xa1\x86\xd8\x1f]\x1e-h\x14K\xa9+'4\
&T)\x0ept\x0b\xb77l\xa5\xcb\x9c\x09\xb67\
sB\xf1\xe2\xe6\xf0Lp%\x84F\x01\xee(5\xa4\
#K\x1b\x5cG\xdc\x8d\x90\xa8\x81\xbdE\x00\xea\xd3\xd4\
P\x13aK@.!Z\xcd\xf0h\x04\xf9tUo\
\xc4y\x02N\xcc:\x8e\x82\xdd\x04\x82\xe9\xc1R\x1a\x05\
\x07\xbc\x09\xa5\xf9\x86\x97\x16\xbeW\x8b\x87\x8d\xfa^#\
Y/\x13g5\x10/K\xe5\xed\x82\x04iXy\xd2\
\xc2\xb3>\x19\xee\xc5\xd5O#3\xca^\x9c\xbc\xf9x\
\xfc\xf6W\x0f?{p\xf4\xed\x1f\x87\x7f\x7f,\x22R\
\x07P\xb5~/;\xb1\xb1\xac')\xb7\x94\xc26O\
?I\xc6k\xb4\xca\x95?\xb3\x93\xa7\xb5\xae\x93\x05\xb9\
\xb6\x13\xbb\x1fm\x84./\xfe\xd6\xffV\x90Ll3\
\x09A\xa0\xff\x01\xd4k%+\
\x00\x00\x02T\
<\
?xml version=\x221.\
0\x22 standalone=\x22n\
o\x22?>\x0d\x0a<!DOCTYPE \
svg PUBLIC \x22-//W\
3C//DTD SVG 1.1/\
/EN\x22 \x22http://www\
.w3.org/Graphics\
/SVG/1.1/DTD/svg\
11.dtd\x22>\x0d\x0a<svg c\
lass=\x22icon\x22 view\
Box=\x220 0 1024 10\
24\x22 version=\x221.1\
\x22 xmlns=\x22http://\
www.w3.org/2000/\
svg\x22 width=\x2232\x22 \
height=\x2232\x22 xmln\
s:xlink=\x22http://\
www.w3.org/1999/\
xlink\x22>\x0d\x0a <pa\
th d=\x22M907.1 299\
.9c-14.6-14.6-38\
.4-14.6-53 0L513\
640.5 172 299.9\
c-14.6-14.6-38.4\
-14.6-53 0-14.6 \
14.6-14.6 38.4 0\
53l364.7 364.2c\
0.8 1 1.7 2 2.7 \
3 7.3 7.3 17 11 \
26.7 10.9 9.7 0 \
19.3-3.6 26.7-10\
.9 1-1 1.8-1.9 2\
.7-3l364.7-364.2\
c14.4-14.6 14.4-\
38.4-0.1-53z\x22 fi\
ll=\x22888888\x22>\x0d\x0a\x0d\x0a\
</path>\x0d\x0a</s\
vg>\
\x00\x00\x06\xbe\
<\
?xml version=\x221.\
0\x22 standalone=\x22n\
o\x22?><!DOCTYPE sv\
g PUBLIC \x22-//W3C\
//DTD SVG 1.1//E\
N\x22 \x22http://www.w\
3.org/Graphics/S\
VG/1.1/DTD/svg11\
.dtd\x22><svg t=\x2217\
32900837650\x22 cla\
ss=\x22icon\x22 viewBo\
x=\x220 0 1024 1024\
\x22 version=\x221.1\x22 \
xmlns=\x22http://ww\
w.w3.org/2000/sv\
g\x22 p-id=\x2210547\x22 \
xmlns:xlink=\x22htt\
p://www.w3.org/1\
999/xlink\x22 width\
=\x2264\x22 height=\x2264\
\x22><path d=\x22M425.\
66 411.07m-15.5 \
0a15.5 15.5 0 1 \
0 31 0 15.5 15.5\
0 1 0-31 0Z\x22 fi\
ll=\x22#A5D400\x22 p-i\
d=\x2210548\x22></path\
><path d=\x22M778.1\
6 1022.57h-535a1\
00 100 0 0 1-100\
-100v-595a40 40 \
0 0 1 40-40h655a\
40 40 0 0 1 40 4\
0v595a100 100 0 \
0 1-100 100z m-5\
55-655v555a20 20\
0 0 0 20 20h535\
a20 20 0 0 0 20-\
20v-555z\x22 fill=\x22\
#A4D400\x22 p-id=\x221\
0549\x22></path><pa\
th d=\x22M251.16 58\
8.29V411.07a15.5\
15.5 0 0 1 15.5\
-15.5h108.92a4 4\
0 0 1 2.79 1.14\
c13.29 13 4.27 2\
8.86-8.44 28.86H\
289a7.82 7.82 0 \
0 0-7.82 7.82v14\
9.25c0 12.72-15.\
83 21.74-28.86 8\
.44a4 4 0 0 1-1.\
16-2.79z\x22 fill=\x22\
#A5D400\x22 p-id=\x221\
0550\x22></path><pa\
th d=\x22M906.47 16\
8.57h-293a114.15\
114.15 0 0 0 11\
.37-55C622.24 54\
.21 574.07 6.27 \
514.73 4A114.68 \
114.68 0 0 0 407\
168.57H114c-20.\
7 0-39.4 16.85-4\
0.65 37.52a40 40\
0 0 0 39.93 42.\
48h794a40 40 0 0\
0 39.93-42.48c-\
1.34-20.67-20.04\
-37.52-40.74-37.\
52z m-396.26-85a\
34.7 34.7 0 1 1-\
34.7 34.7 34.74 \
34.74 0 0 1 34.6\
9-34.7z\x22 fill=\x22#\
FF8429\x22 p-id=\x2210\
551\x22></path><pat\
h d=\x22M300.16 812\
.75V640.13c0-20.\
7 16.86-39.41 37\
.52-40.65a40 40 \
0 0 1 42.48 39.9\
3v174.06a40 40 0\
0 1-42.48 39.93\
c-20.68-1.25-37.\
52-19.95-37.52-4\
0.65zM470.16 812\
.75v-244c0-20.7 \
16.86-39.41 37.5\
2-40.65a40 40 0 \
0 1 42.48 39.9v2\
45.47a40 40 0 0 \
1-42.48 39.93c-2\
0.68-1.25-37.52-\
19.95-37.52-40.6\
5zM640.16 812.75\
v-315.4c0-20.7 1\
6.86-39.41 37.52\
-40.65a40 40 0 0\
1 42.48 39.93v3\
16.84a40 40 0 0 \
1-42.48 39.93c-2\
0.68-1.25-37.52-\
19.95-37.52-40.6\
5z\x22 fill=\x22#A5D40\
0\x22 p-id=\x2210552\x22>\
</path></svg>\
\x00\x00\x06\xeb\
<\
?xml version=\x221.\
0\x22 standalone=\x22n\
o\x22?><!DOCTYPE sv\
g PUBLIC \x22-//W3C\
//DTD SVG 1.1//E\
N\x22 \x22http://www.w\
3.org/Graphics/S\
VG/1.1/DTD/svg11\
.dtd\x22><svg t=\x2217\
31693496846\x22 cla\
ss=\x22icon\x22 viewBo\
x=\x220 0 1024 1024\
\x22 version=\x221.1\x22 \
xmlns=\x22http://ww\
w.w3.org/2000/sv\
g\x22 p-id=\x2244095\x22 \
xmlns:xlink=\x22htt\
p://www.w3.org/1\
999/xlink\x22 width\
=\x2264\x22 height=\x2264\
\x22><path d=\x22M952.\
746667 169.984l-\
85.162667 31.146\
667v639.530666l8\
5.12 31.146667c3\
7.888 13.994667 \
71.125333-22.826\
667 71.125333-83\
.072V253.056c0-6\
0.245333-33.2373\
33-97.066667-71.\
125333-83.072M32\
7.253333 343.381\
333l-236.714666 \
30.592c-9.386667\
1.066667-16.64-\
12.970667-16.64-\
31.146666 0-18.6\
88 7.253333-34.7\
73333 16.64-36.8\
21334L327.210667\
260.266667c13.9\
94667-2.56 25.94\
1333 14.037333 2\
5.941333 37.376 \
0 23.338667-11.4\
34667 44.117333-\
25.941333 45.653\
333M73.898667 50\
9.013333c0-18.68\
8 7.253333-33.74\
9333 16.597333-3\
4.261333l119.893\
333-3.626667c11.\
946667-0.554667 \
21.333333 16.597\
333 21.333334 37\
.888s-9.898667 3\
8.4-21.333334 37\
.888l-119.893333\
-3.626666c-9.386\
667-0.512-16.64-\
15.573333-16.64-\
34.261334m172.88\
5333 233.6l-156.\
245333-30.122666\
c-9.386667-1.578\
667-16.64-18.176\
-16.64-36.864s7.\
253333-32.682667\
16.64-31.146667\
l156.245333 20.2\
66667c12.458667 \
1.536 22.826667 \
20.736 22.826667\
42.538666s-10.3\
68 37.376-22.826\
667 35.328M393.6\
42667 4.906667L5\
0.005333 132.608\
C21.973333 142.9\
76 0.170667 197.\
461333 0.170667 \
254.634667V763.3\
06667c0 57.13066\
7 21.802667 111.\
616 49.834666 12\
2.496l343.637334\
127.701333c53.9\
73333 20.266667 \
100.693333-32.68\
2667 100.693333-\
119.381333V124.2\
88c0-86.656-46.7\
2-139.093333-100\
.693333-119.3813\
33m320.298666 16\
5.12l-136.533333\
50.346666v601.6\
l136.533333 50.3\
46667c37.888 14.\
037333 71.082667\
-22.826667 71.08\
2667-83.029333V2\
53.013333c-0.512\
-60.245333-33.19\
4667-97.066667-7\
1.082667-83.072\x22\
fill=\x22#FF7702\x22 \
p-id=\x2244096\x22></p\
ath></svg>\
\x00\x00\x04\xcd\
<\
?xml version=\x221.\
0\x22 standalone=\x22n\
o\x22?><!DOCTYPE sv\
g PUBLIC \x22-//W3C\
//DTD SVG 1.1//E\
N\x22 \x22http://www.w\
3.org/Graphics/S\
VG/1.1/DTD/svg11\
.dtd\x22><svg t=\x2217\
31691085067\x22 cla\
ss=\x22icon\x22 viewBo\
x=\x220 0 1024 1024\
\x22 version=\x221.1\x22 \
xmlns=\x22http://ww\
w.w3.org/2000/sv\
g\x22 p-id=\x2213388\x22 \
xmlns:xlink=\x22htt\
p://www.w3.org/1\
999/xlink\x22 width\
=\x2264\x22 height=\x2264\
\x22><path d=\x22M937.\
387 488.107L772.\
267 372.48c-12.8\
-9.387-30.294-6.\
827-40.107 5.547\
-3.84 4.693-5.54\
7 10.666-5.547 1\
7.066v233.814c0 \
22.613 25.6 36.6\
93 45.654 22.613\
l165.546-115.627\
c14.08-14.08 14.\
08-36.693-0.426-\
47.786z m-23.04-\
274.774H129.28c-\
18.773 0-34.133-\
15.36-34.133-34.\
133s15.36-34.133\
34.133-34.133h7\
85.067c18.773 0 \
34.133 15.36 34.\
133 34.133s-14.9\
33 34.133-34.133\
34.133z m0 665.\
6H129.28c-18.773\
0-34.133-15.36-\
34.133-34.133s15\
.36-34.133 34.13\
3-34.133h785.067\
c18.773 0 34.133\
15.36 34.133 34\
.133s-14.933 34.\
133-34.133 34.13\
3zM624.213 435.2\
H129.28c-18.773 \
0-34.133-15.36-3\
4.133-34.133s15.\
36-34.134 34.133\
-34.134h494.933c\
18.774 0 34.134 \
15.36 34.134 34.\
134S643.413 435.\
2 624.213 435.2z\
m0.427 221.867H\
129.28c-18.773 0\
-34.133-15.36-34\
.133-34.134s15.3\
6-34.133 34.133-\
34.133h495.36c18\
.773 0 34.133 15\
.36 34.133 34.13\
3v0.427c-0.426 1\
8.347-15.36 33.7\
07-34.133 33.707\
z\x22 fill=\x22#888888\
\x22 p-id=\x2213389\x22><\
/path></svg>\
\x00\x00\x0c\x99\
<\
?xml version=\x221.\
0\x22 standalone=\x22n\
o\x22?><!DOCTYPE sv\
g PUBLIC \x22-//W3C\
//DTD SVG 1.1//E\
N\x22 \x22http://www.w\
3.org/Graphics/S\
VG/1.1/DTD/svg11\
.dtd\x22><svg t=\x2217\
24674316326\x22 cla\
ss=\x22icon\x22 viewBo\
x=\x220 0 1024 1024\
\x22 version=\x221.1\x22 \
xmlns=\x22http://ww\
w.w3.org/2000/sv\
g\x22 p-id=\x224252\x22 x\
mlns:xlink=\x22http\
://www.w3.org/19\
99/xlink\x22 width=\
\x2264\x22 height=\x2264\x22\
><path d=\x22M13.52\
4271 512.036685a\
498.504637 498.5\
04637 0 1 1 498.\
437016 498.43701\
5A498.437016 498\
.437016 0 0 1 13\
.524271 512.0366\
85z\x22 fill=\x22#FFF1\
00\x22 p-id=\x224253\x22>\
</path><path d=\x22\
M40.572814 593.1\
82312a556.253275\
556.253275 0 0 \
1 636.114096-550\
.099732A498.4370\
16 498.437016 0 \
0 0 56.260968 72\
3.623908 555.441\
819 555.441819 0\
0 1 40.572814 5\
93.182312z\x22 fill\
=\x22#FFFFFF\x22 p-id=\
\x224254\x22></path><p\
ath d=\x22M978.8867\
5 430.891057a555\
.847547 555.8475\
47 0 0 1-555.847\
546 555.847547 5\
68.763226 568.76\
3226 0 0 1-80.13\
1307-5.680194 49\
8.572258 498.572\
258 0 0 0 620.42\
5942-680.541327 \
556.253275 556.2\
53275 0 0 1 15.5\
52911 130.373974\
z\x22 fill=\x22#F8B62D\
\x22 p-id=\x224255\x22></\
path><path d=\x22M5\
11.961287 1023.9\
97971a511.961287\
511.961287 0 1 \
1 459.28425-738.\
425208A13.524271\
13.524271 0 0 1\
946.698985 297.\
609365a484.91274\
4 484.912744 0 1\
0 36.718396 327\
.354984 13.52427\
1 13.524271 0 1 \
1 26.304708 6.28\
8786 510.000267 \
510.000267 0 0 1\
-497.760802 392.\
744836z\x22 fill=\x22#\
231815\x22 p-id=\x2242\
56\x22></path><path\
d=\x22M1010.398302\
525.560956a13.5\
24271 13.524271 \
0 0 1-13.524271-\
13.524271A486.40\
0414 486.400414 \
0 0 0 989.300439\
426.089941a13.5\
24271 13.524271 \
0 0 1 26.642815-\
4.733495 514.328\
034 514.328034 0\
0 1 7.97932 90.\
680239 13.524271\
13.524271 0 0 1\
-13.524272 13.52\
4271z\x22 fill=\x22#23\
1815\x22 p-id=\x224257\
\x22></path><path d\
=\x22M561.257255 81\
5.99468V566.4042\
55h249.590426a29\
.618154 29.61815\
4 0 0 0 29.61815\
4-29.618154v-39.\
423251a29.618154\
29.618154 0 0 0\
-29.618154-29.61\
8154H561.257255V\
218.08665a29.618\
154 29.618154 0 \
0 0-29.618154-29\
.618154H492.2834\
72a29.618154 29.\
618154 0 0 0-29.\
618154 29.618154\
v249.658046H213.\
007272a29.618154\
29.618154 0 0 0\
-29.618154 29.61\
8154v39.423251a2\
9.618154 29.6181\
54 0 0 0 29.6181\
54 29.618154h249\
.658046v249.5904\
25A29.618154 29.\
618154 0 0 0 492\
.283472 845.3423\
49h39.423251a29.\
618154 29.618154\
0 0 0 29.550532\
-29.347669z\x22 fil\
l=\x22#FFFFFF\x22 p-id\
=\x224258\x22></path><\
path d=\x22M531.706\
723 858.86662H49\
2.283472a43.1424\
25 43.142425 0 0\
1-43.142425-43.\
142425V579.92852\
6H213.007272a43.\
142425 43.142425\
0 0 1-43.142426\
-43.142425v-39.4\
23251a43.142425 \
43.142425 0 0 1 \
43.142426-43.142\
425h236.133775V2\
18.08665a43.1424\
25 43.142425 0 0\
1 43.142425-43.\
142425h39.423251\
A43.142425 43.14\
2425 0 0 1 574.7\
81527 218.08665v\
236.133775h236.0\
66154a43.142425 \
43.142425 0 0 1 \
43.142425 43.142\
425v39.423251a43\
.142425 43.14242\
5 0 0 1-43.14242\
5 43.142425H574.\
781527v236.06615\
4a43.142425 43.1\
42425 0 0 1-43.0\
74804 42.87194zM\
213.007272 481.2\
68968a16.093883 \
16.093883 0 0 0-\
16.093883 16.093\
882v39.423251a16\
.161504 16.16150\
4 0 0 0 16.09388\
3 16.093883h263.\
182317v263.11469\
6A16.026261 16.0\
26261 0 0 0 492.\
283472 831.81807\
7h39.423251a16.0\
93883 16.093883 \
0 0 0 16.026261-\
15.823397V552.87\
9984h263.114697a\
16.093883 16.093\
883 0 0 0 16.093\
882-16.093883v-3\
9.423251a16.0262\
61 16.026261 0 0\
0-16.093882-16.\
093882H547.73298\
4V218.08665a16.1\
61504 16.161504 \
0 0 0-16.093883-\
16.093883H492.28\
3472a16.093883 1\
6.093883 0 0 0-1\
6.093883 16.0938\
83v263.182318z\x22 \
fill=\x22#231815\x22 p\
-id=\x224259\x22></pat\
h></svg>\
\x00\x00\x05\x06\
<\
?xml version=\x221.\
0\x22 standalone=\x22n\
o\x22?><!DOCTYPE sv\
g PUBLIC \x22-//W3C\
//DTD SVG 1.1//E\
N\x22 \x22http://www.w\
3.org/Graphics/S\
VG/1.1/DTD/svg11\
.dtd\x22><svg t=\x2217\
32900526185\x22 cla\
ss=\x22icon\x22 viewBo\
x=\x220 0 1024 1024\
\x22 version=\x221.1\x22 \
xmlns=\x22http://ww\
w.w3.org/2000/sv\
g\x22 p-id=\x229977\x22 x\
mlns:xlink=\x22http\
://www.w3.org/19\
99/xlink\x22 width=\
\x2264\x22 height=\x2264\x22\
><path d=\x22M558.0\
53773 398.871003\
A44.515611 44.51\
5611 0 0 0 618.3\
72426 381.732493\
l176.281819-315.\
393104a44.515611\
44.515611 0 1 0\
-77.902319-43.45\
8365l-175.836663\
315.393104a44.5\
15611 44.515611 \
0 0 0 17.13851 6\
0.596875z\x22 fill=\
\x22#0D6EFF\x22 p-id=\x22\
9978\x22></path><pa\
th d=\x22M717.14143\
8 701.243291a161\
.36909 161.36909\
0 0 0-29.714171\
2.782225L306.76\
3149 22.936669a4\
4.515611 44.5156\
11 0 1 0-77.9023\
19 43.458365l232\
.093266 414.9411\
39-124.476777 22\
2.578054a161.369\
09 161.36909 0 1\
0 79.627299 40.\
008406l95.875498\
-171.496391 95.8\
19852 171.60768a\
161.36909 161.36\
909 0 1 0 109.34\
147-42.790631zM3\
06.763149 934.95\
0248a72.337868 7\
2.337868 0 1 1 7\
2.337868-72.3378\
67 72.337868 72.\
337868 0 0 1-72.\
337868 72.337867\
z m205.884701-41\
8.502387A31.9955\
95 31.995595 0 1\
1 544.420867 48\
4.229687 31.9955\
95 31.995595 0 0\
1 512.64785 516\
.447861zM717.141\
438 934.950248a7\
2.337868 72.3378\
68 0 1 1 72.3378\
67-72.337867 72.\
337868 72.337868\
0 0 1-72.337867\
72.337867z\x22 fil\
l=\x22#333333\x22 p-id\
=\x229979\x22></path><\
/svg>\
\x00\x00\x03\x14\
<\
?xml version=\x221.\
0\x22 standalone=\x22n\
o\x22?><!DOCTYPE sv\
g PUBLIC \x22-//W3C\
//DTD SVG 1.1//E\
N\x22 \x22http://www.w\
3.org/Graphics/S\
VG/1.1/DTD/svg11\
.dtd\x22><svg t=\x2217\
04806879008\x22 cla\
ss=\x22icon\x22 viewBo\
x=\x220 0 1024 1024\
\x22 version=\x221.1\x22 \
xmlns=\x22http://ww\
w.w3.org/2000/sv\
g\x22 p-id=\x228579\x22 x\
mlns:xlink=\x22http\
://www.w3.org/19\
99/xlink\x22 width=\
\x2216\x22 height=\x2216\x22\
><path d=\x22M512 1\
28c211.2 0 384 1\
72.8 384 384s-17\
2.8 384-384 384-\
384-172.8-384-38\
4 172.8-384 384-\
384m0-64C262.4 6\
4 64 262.4 64 51\
2s198.4 448 448 \
448 448-198.4 44\
8-448-198.4-448-\
448-448z\x22 fill=\x22\
#1296db\x22 p-id=\x228\
580\x22></path><pat\
h d=\x22M448 704c-1\
2.8 0-25.6-6.4-3\
2-12.8L313.6 588\
.8c-12.8-12.8-12\
.8-32 0-44.8s32-\
12.8 44.8 0L448 \
633.6l275.2-275.\
2c12.8-12.8 32-1\
2.8 44.8 0 12.8 \
12.8 12.8 32 0 4\
4.8l-288 288c-6.\
4 12.8-19.2 12.8\
-32 12.8z\x22 fill=\
\x22#1296db\x22 p-id=\x22\
8581\x22></path></s\
vg>\
\x00\x00\x0eT\
<\
?xml version=\x221.\
0\x22 standalone=\x22n\
o\x22?><!DOCTYPE sv\
g PUBLIC \x22-//W3C\
//DTD SVG 1.1//E\
N\x22 \x22http://www.w\
3.org/Graphics/S\
VG/1.1/DTD/svg11\
.dtd\x22><svg t=\x2217\
32900703750\x22 cla\
ss=\x22icon\x22 viewBo\
x=\x220 0 1024 1024\
\x22 version=\x221.1\x22 \
xmlns=\x22http://ww\
w.w3.org/2000/sv\
g\x22 p-id=\x2211067\x22 \
xmlns:xlink=\x22htt\
p://www.w3.org/1\
999/xlink\x22 width\
=\x2264\x22 height=\x2264\
\x22><path d=\x22M754.\
601984 428.032V2\
97.82016c0-128.9\
70752-105.525248\
-234.496-234.496\
-234.496h-19.537\
92c-128.974848 0\
-234.496 105.525\
248-234.496 234.\
496v130.21184h48\
8.52992z\x22 fill=\x22\
#A6A6C9\x22 p-id=\x221\
1068\x22></path><pa\
th d=\x22M785.32198\
4 458.752H235.35\
2064V297.82016c0\
-146.239488 118.\
976512-265.216 2\
65.216-265.216h1\
9.53792c146.2394\
88 0 265.216 118\
.976512 265.216 \
265.216V458.752z\
M296.792064 397.\
312h427.08992V29\