-
Notifications
You must be signed in to change notification settings - Fork 4
/
selection.json
3328 lines (3328 loc) · 124 KB
/
selection.json
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
{
"IcoMoonType": "selection",
"icons": [
{
"icon": {
"paths": [
"M972.8 102.4h-921.6c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6h921.6c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6z",
"M972.8 921.6h-921.6c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6h921.6c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6z",
"M819.2 358.4c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6h-614.4c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6h614.4z",
"M972.8 512h-921.6c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6h921.6c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6z",
"M819.2 768c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6h-614.4c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6h614.4z"
],
"attrs": [
{},
{},
{},
{},
{}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"align-center"
],
"colorPermutations": {
"6868681": [
0,
0,
0,
0,
0
]
}
},
"attrs": [
{},
{},
{},
{},
{}
],
"properties": {
"order": 253,
"id": 83,
"prevSize": 40,
"code": 58880,
"name": "align-center"
},
"setIdx": 0,
"iconIdx": 0
},
{
"icon": {
"paths": [
"M25.6 128c0 14.15 11.45 25.6 25.6 25.6h921.6c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6h-921.6c-14.15 0-25.6 11.45-25.6 25.6z",
"M51.2 972.8h921.6c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6h-921.6c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6z",
"M51.2 358.4h921.6c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6h-921.6c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6z",
"M51.2 563.2h921.6c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6h-921.6c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6z",
"M51.2 768h921.6c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6h-921.6c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6z"
],
"attrs": [
{},
{},
{},
{},
{}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"align-justify"
],
"colorPermutations": {
"6868681": [
0,
0,
0,
0,
0
]
}
},
"attrs": [
{},
{},
{},
{},
{}
],
"properties": {
"order": 254,
"id": 82,
"prevSize": 40,
"code": 58881,
"name": "align-justify"
},
"setIdx": 0,
"iconIdx": 1
},
{
"icon": {
"paths": [
"M972.8 102.4h-921.6c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6h921.6c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6z",
"M51.2 972.8h921.6c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6h-921.6c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6z",
"M51.2 358.4h614.4c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6h-614.4c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6z",
"M972.8 512h-921.6c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6h921.6c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6z",
"M51.2 768h614.4c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6h-614.4c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6z"
],
"attrs": [
{},
{},
{},
{},
{}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"align-left"
],
"colorPermutations": {
"6868681": [
0,
0,
0,
0,
0
]
}
},
"attrs": [
{},
{},
{},
{},
{}
],
"properties": {
"order": 255,
"id": 81,
"prevSize": 40,
"code": 58882,
"name": "align-left"
},
"setIdx": 0,
"iconIdx": 2
},
{
"icon": {
"paths": [
"M972.8 102.4h-921.6c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6h921.6c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6z",
"M972.8 921.6h-921.6c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6h921.6c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6z",
"M972.8 307.2h-614.4c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6h614.4c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6z",
"M972.8 512h-921.6c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6h921.6c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6z",
"M972.8 716.8h-614.4c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6h614.4c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6z"
],
"attrs": [
{},
{},
{},
{},
{}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"align-right"
],
"colorPermutations": {
"6868681": [
0,
0,
0,
0,
0
]
}
},
"attrs": [
{},
{},
{},
{},
{}
],
"properties": {
"order": 256,
"id": 80,
"prevSize": 40,
"code": 58883,
"name": "align-right"
},
"setIdx": 0,
"iconIdx": 3
},
{
"icon": {
"paths": [
"M537.6 25.6c-14.15 0-25.6 11.45-25.6 25.6v884.947l-282.7-282.722c-10-10-26.2-10-36.2 0s-10 26.2 0 36.2l326.15 326.175c5 5 11.55 7.5 18.1 7.5s13.1-2.5 18.1-7.5l332.6-332.575c10-10 10-26.2 0-36.2s-26.2-10-36.2 0l-288.65 288.628v-884.453c0-14.15-11.45-25.6-25.6-25.6z"
],
"attrs": [
{}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"arrow-down"
],
"colorPermutations": {
"6868681": [
0
]
}
},
"attrs": [
{}
],
"properties": {
"order": 257,
"id": 79,
"prevSize": 40,
"code": 58884,
"name": "arrow-down"
},
"setIdx": 0,
"iconIdx": 4
},
{
"icon": {
"paths": [
"M998.4 486.4c0-14.15-11.45-25.6-25.6-25.6h-884.45l288.625-288.625c10-10 10-26.2 0-36.2s-26.2-10-36.2 0l-332.8 332.8c-10 10-10 26.2 0 36.2l331.6 331.6c5 5 11.55 7.5 18.1 7.5s13.1-2.5 18.1-7.5c10-10 10-26.2 0-36.2l-288.375-288.375h885.4c14.15 0 25.6-11.45 25.6-25.6z"
],
"attrs": [
{}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"arrow-left"
],
"colorPermutations": {
"6868681": [
0
]
}
},
"attrs": [
{}
],
"properties": {
"order": 258,
"id": 78,
"prevSize": 40,
"code": 58885,
"name": "arrow-left"
},
"setIdx": 0,
"iconIdx": 5
},
{
"icon": {
"paths": [
"M683.225 135.975c-10-10-26.2-10-36.2 0s-10 26.2 0 36.2l288.625 288.625h-884.45c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6h885.4l-287.2 287.2c-10 10-10 26.2 0 36.2 5 5 11.55 7.5 18.1 7.5s13.1-2.5 18.1-7.5l330.425-330.425c10-10 10-26.2 0-36.2l-332.8-332.8z"
],
"attrs": [
{}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"arrow-right"
],
"colorPermutations": {
"6868681": [
0
]
}
},
"attrs": [
{}
],
"properties": {
"order": 259,
"id": 77,
"prevSize": 40,
"code": 58886,
"name": "arrow-right"
},
"setIdx": 0,
"iconIdx": 6
},
{
"icon": {
"paths": [
"M504.275 8.2c-10-10-26.2-10-36.2 0l-332.35 332.325c-10 10-10 26.2 0 36.2 5 5 11.55 7.5 18.1 7.5s13.1-2.5 18.1-7.5l288.875-288.853v884.928c0 14.15 11.45 25.6 25.6 25.6s25.6-11.45 25.6-25.6v-884.475l288.75 288.75c5 5 11.55 7.5 18.1 7.5s13.1-2.5 18.1-7.5c10-10 10-26.2 0-36.2l-332.675-332.675z"
],
"attrs": [
{}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"arrow-up"
],
"colorPermutations": {
"6868681": [
0
]
}
},
"attrs": [
{}
],
"properties": {
"order": 260,
"id": 76,
"prevSize": 40,
"code": 58887,
"name": "arrow-up"
},
"setIdx": 0,
"iconIdx": 7
},
{
"icon": {
"paths": [
"M181.025 486.175c-17.397 89.034-35.534 180.934-87.303 242.537-20.128 13.159-35.653 27.866-46.631 43.809-2.631 2.841-5.219 5.594-6.338 9.228-7.122 13.059-10.978 26.966-10.978 41.725 0 119.15 248.45 183.45 482.225 183.45s482.225-64.3 482.225-183.45c0-18.109-6.334-34.791-16.884-50.331-0.534-0.778-0.994-1.559-1.594-2.284-11.022-15.419-26.253-29.684-45.894-42.462-0.509-0.431-0.759-1.106-1.303-1.497-50.55-61.575-68.35-152.625-85.575-240.725-27.212-139.169-58.053-293.672-227.341-337.262 1.031-5.816 2.141-11.628 2.141-17.538 0-58.325-47.45-105.775-105.775-105.775s-105.775 47.45-105.775 105.775c0 5.909 1.109 11.722 2.141 17.538-169.284 43.587-200.128 198.094-227.341 337.262zM512 955.725c-267.050 0-431.025-77.025-431.025-132.25 0-6.853 2.553-14.044 7.487-21.381 0.25-0.325 0.734-0.566 0.962-0.894 0.15-0.216 0.156-0.459 0.297-0.678 8.562-11.941 23.637-24.197 44.353-36.034 4.925-2.837 10.019-5.622 15.444-8.319 5.7-2.816 11.725-5.591 18.097-8.319 2.947-1.266 6.078-2.466 9.138-3.694 11.894-4.775 24.881-9.35 38.819-13.709 4.494-1.394 8.853-2.834 13.503-4.162 6.659-1.916 13.672-3.737 20.738-5.538 8.562-2.156 17.313-4.216 26.309-6.153 4.578-1 9-2.050 13.722-2.997 15.413-3.050 31.288-5.834 47.728-8.231 1.112-0.166 2.303-0.294 3.425-0.453 15.716-2.238 31.897-4.137 48.381-5.75 3.156-0.309 6.344-0.6 9.541-0.884 14.9-1.334 30.097-2.369 45.475-3.172 3.706-0.191 7.303-0.447 11.056-0.606 18.609-0.809 37.459-1.3 56.55-1.3s37.941 0.491 56.55 1.3c3.753 0.159 7.35 0.416 11.056 0.606 15.378 0.803 30.575 1.838 45.475 3.172 3.197 0.284 6.384 0.575 9.541 0.884 16.484 1.612 32.666 3.512 48.381 5.75 1.122 0.159 2.312 0.287 3.425 0.453 16.441 2.397 32.316 5.181 47.728 8.231 4.722 0.947 9.144 1.997 13.722 2.997 8.997 1.938 17.747 3.997 26.309 6.153 7.066 1.8 14.078 3.622 20.738 5.538 4.65 1.328 9.009 2.769 13.503 4.162 13.938 4.359 26.925 8.934 38.819 13.709 3.059 1.228 6.191 2.428 9.138 3.694 6.372 2.728 12.397 5.503 18.097 8.319 5.425 2.697 10.519 5.481 15.444 8.319 21.519 12.297 37.134 25.056 45.519 37.431 0.187 0.294 0.234 0.647 0.431 0.931 0.028 0.044 0.078 0.056 0.106 0.1 4.556 7.034 7.044 13.941 7.044 20.525 0 55.225-163.975 132.25-431.025 132.25zM457.425 131.375c0-30.1 24.475-54.575 54.575-54.575s54.575 24.475 54.575 54.575c0 2.759-0.575 5.516-1.041 8.272-16.813-1.891-34.406-3.147-53.534-3.147s-36.722 1.256-53.534 3.147c-0.466-2.756-1.041-5.512-1.041-8.272zM512 187.7c220.45 0 248.375 142.875 280.725 308.3 12.9 66.025 26.1 133.55 52.975 192.65-1.35-0.472-2.859-0.875-4.225-1.341-1.447-0.494-2.994-0.931-4.456-1.416-10.175-3.391-20.647-6.644-31.578-9.694-0.412-0.116-0.847-0.213-1.259-0.328-59.456-16.475-129.356-27.838-204.209-32.862-0.766-0.053-1.534-0.075-2.3-0.125-13.519-0.884-27.138-1.628-40.931-2.094-14.928-0.519-29.862-0.791-44.741-0.791s-29.813 0.272-44.741 0.791c-13.794 0.466-27.413 1.209-40.931 2.094-0.766 0.050-1.534 0.072-2.3 0.125-74.853 5.025-144.753 16.388-204.209 32.862-0.412 0.116-0.847 0.213-1.259 0.328-10.931 3.050-21.403 6.303-31.578 9.694-1.463 0.484-3.009 0.922-4.456 1.416-1.366 0.466-2.875 0.869-4.225 1.341 26.875-59.1 40.075-126.625 52.975-192.65 32.35-165.425 60.275-308.3 280.725-308.3z",
"M631.475 736.475c-14.15 0-25.6 11.45-25.6 25.6 0 53.4-43.45 96.85-96.875 96.85-53.4 0-96.85-43.45-96.85-96.85 0-14.15-11.45-25.6-25.6-25.6s-25.6 11.45-25.6 25.6c0 81.625 66.425 148.050 148.050 148.050 81.65 0 148.075-66.425 148.075-148.050 0-14.15-11.45-25.6-25.6-25.6z"
],
"attrs": [
{},
{}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"bell"
],
"colorPermutations": {
"6868681": [
0,
0
]
}
},
"attrs": [
{},
{}
],
"properties": {
"order": 261,
"id": 75,
"prevSize": 40,
"code": 58888,
"name": "bell"
},
"setIdx": 0,
"iconIdx": 8
},
{
"icon": {
"paths": [
"M817.45 528.9c-32.6-23.2-64.575-39.2-100.525-50.4l-15.25-4.8 12.575-6c27.85-12.9 52.125-28.95 78.6-51.95 26.175-22.45 46.675-49.45 60.925-80.25 14.575-31.6 21.65-66.15 21.65-105.65 0-45.6-10.175-83.85-31.15-116.95-19.275-30.4-44.025-53.95-77.75-73.95-32.525-19.6-95.025-34.8-102.050-36.45-1.7-0.4-3.45-0.65-5.225-0.7 0 0-68.275-1.8-104.725-1.8h-477.725c-14.15 0-25.6 11.45-25.6 25.6v84.15c0 23.25 21.125 25.65 36.55 27.4 10.3 1.15 24.575 2.7 34 4.75 8.525 1.85 34.4 7.5 48.575 14.6 14.175 6.7 21.125 13.3 22.85 17.2l3.375 7.4c4.25 9.050 8.25 17.6 8.25 25.2v626.85c0 9.1-5.15 18.25-12.225 30.85-0.375 0.6-4.175 6.15-25.65 15.85-3.175 1.45-13.6 5.15-41.475 9.1-10.575 1.5-23.175 2.75-33.175 3.7-20.2 2-41.075 4.1-41.075 27.75v78c0 14.15 11.45 25.6 25.6 25.6h484.875c43.225 0 123.025-5.050 130.075-5.75 8.325-1.75 82.375-17.9 117.45-41.95 35.875-24.45 65.375-56.050 87.725-93.95 22.75-38.7 34.275-84.45 34.275-136 0-50.75-11.1-94.9-33-131.2-21.425-35.5-48.75-64.6-80.75-86.25zM852.8 856.35c-18.475 31.35-42.85 57.5-72.5 77.7-22.7 15.55-79.275 29.9-95.475 33.6-0.8 0.050-81.55 5.15-123.15 5.15h-459.275v-29.7c9.625-0.95 20.7-2.1 30.225-3.45 25.575-3.6 43.625-7.85 55.3-13.1 17.725-8 39.375-19.6 51.35-41.2 6.65-11.8 16.725-29.7 16.725-52.2v-626.85c0-19-7.25-34.5-13.075-46.95l-2.925-6.35c-7.525-16.95-23.625-31.35-47.3-42.55-17.175-8.6-41.1-14.45-60.075-18.6-8.375-1.8-19.95-3.3-30.225-4.55v-36.1h452.125c31.7 0 87.75 1.4 100.675 1.7 18.825 4.65 64.125 17.35 85.025 29.95 26.7 15.85 46 34.1 60.8 57.45 15.6 24.65 23.2 53.95 23.2 89.55 0 31.95-5.55 59.45-16.925 84.15-11.3 24.45-26.925 45-47.925 63.050-22.775 19.75-43.325 33.4-66.875 44.3l-63.5 30.25c-8.925 4.25-14.6 13.25-14.6 23.1v6.4c0 11.2 7.25 21.050 17.9 24.4l69.325 21.85c30.725 9.55 58.1 23.3 86.65 43.6 26.275 17.8 48.525 41.55 66.075 70.7 17.025 28.2 25.65 63.4 25.65 104.7 0 42.3-9.15 79.35-27.2 110z",
"M384 460.8h67.85c42.3 0 77.975-8.6 107.3-17.050 27.4-7.9 53.55-23.3 77.8-45.9 20.55-19.15 35.125-40.6 43.375-63.75 7.85-22.1 11.825-48.2 11.825-77.65 0-52.25-18.475-94.1-54.9-124.4-35.5-29.5-88-43.85-160.45-43.85-13.875 0-21.675 0.2-40.050 0.7l-15.125 0.35c-48.575 1.15-63.225 1.5-63.225 26.85v319.1c0 14.15 11.45 25.6 25.6 25.6zM409.6 140.75c4.175-0.1 8.65-0.2 13.25-0.3l15.25-0.4c17.775-0.45 25.3-0.65 38.7-0.65 59.175 0 102.15 10.8 127.725 32.050 24.5 20.35 36.425 48.15 36.425 85 0 23.6-2.975 43.9-8.875 60.45-5.525 15.6-15.375 29.8-30.050 43.5-18.275 17.050-37.45 28.5-57.025 34.15-25.9 7.45-57.2 15.050-93.15 15.050h-42.25v-268.85z",
"M673.775 577.3c-44.575-33.8-107.875-50.9-188.125-50.9-30.85 0-45.375 0.25-66.5 0.85-45.45 1.2-60.75 1.6-60.75 27v282.15c0 22.75 0 57.1 39.325 76.6 29.275 14.5 61.35 20.7 107.225 20.7 76.225 0 134.1-18.1 176.925-55.35 42.050-36.55 62.475-90.1 62.475-163.8-0-55.6-23.75-101.8-70.575-137.25zM648.3 839.7c-33.125 28.8-80 42.8-143.35 42.8-37.475 0-62.725-4.6-84.475-15.4-9.375-4.65-10.875-7.1-10.875-30.7v-257.65c3.4-0.1 7.050-0.2 10.95-0.3 20.725-0.6 34.95-0.85 65.1-0.85 68.825 0 121.725 13.65 157.225 40.5 33.825 25.65 50.275 57.2 50.275 96.45-0 58.8-14.25 98.55-44.85 125.15z"
],
"attrs": [
{},
{},
{}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"bold"
],
"colorPermutations": {
"6868681": [
0,
0,
0
]
}
},
"attrs": [
{},
{},
{}
],
"properties": {
"order": 262,
"id": 74,
"prevSize": 40,
"code": 58889,
"name": "bold"
},
"setIdx": 0,
"iconIdx": 9
},
{
"icon": {
"paths": [
"M1005.95 141.725c-155.434-48.012-313.478-36.844-468.769 32.281-154.741-62.875-312.037-74.056-467.006-32.556-11.2 3-18.975 13.15-18.975 24.725v653.025c0 7.95 3.7 15.475 10.025 20.3 6.25 4.85 14.525 6.475 22.2 4.425 147.475-39.5 296.6-28 444.225 34.225 3.2 1.325 6.575 2 9.95 2 3.65 0 7.325-0.775 10.75-2.35 147.15-68.025 295.625-79.475 442.5-34.15 7.8 2.425 16.2 0.95 22.75-3.85 6.55-4.825 10.4-12.475 10.4-20.6v-653.025c0-11.225-7.325-21.15-18.050-24.45zM102.4 786.6v-600.5c136.25-32.425 273.3-21.45 409.6 32.6v598.2c-85.1-31.4-171.075-47.3-256.1-47.3-50.925 0-102.425 5.7-153.5 17zM972.8 785.4c-136.3-34.65-273.6-24.55-409.6 30.2v-597.5c136.35-59.475 273.375-70.45 409.6-32.75v600.050z"
],
"attrs": [
{}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"book"
],
"colorPermutations": {
"6868681": [
0
]
}
},
"attrs": [
{}
],
"properties": {
"order": 263,
"id": 73,
"prevSize": 40,
"code": 58890,
"name": "book"
},
"setIdx": 0,
"iconIdx": 10
},
{
"icon": {
"paths": [
"M257.125 975.95c26.65 0 53.35-2.8 79.075-8.35 122.609-26.453 193.7-108.719 186.331-211.319 196.947-84.35 463.516-613.262 495.644-678.231 5.1-10.35 2.675-22.825-5.95-30.475-8.6-7.675-21.325-8.625-30.95-2.325-23.625 15.341-569.656 372.753-609.225 588.613-75.087-5.819-114.3 48.059-146.050 92.763-43.7 61.575-78.25 110.3-191.65 62.475-9.125-3.875-19.625-2.1-27 4.5-7.375 6.575-10.3 16.8-7.525 26.3 30.75 105.075 143.5 156.050 257.3 156.050zM421.025 650.125c14.175-135.15 318.925-375.15 505.625-506.025-133.65 251.050-342.075 572.675-453.825 572.675h-0.025c-13.25 0-24.3-4.9-34.8-15.375-13.8-13.8-19.2-30.1-16.975-51.275zM267.75 756.25c34.794-48.962 58.153-77.194 105.166-71.119 4.556 19.616 13.766 37.35 28.884 52.469 20.113 20.113 43.941 30.322 70.825 30.359 2.916 108.181-110.659 141.703-147.225 149.591-89.275 19.3-195.975-0.725-248.925-61.925 106.55 20.2 154.675-47.775 191.275-99.375z"
],
"attrs": [
{}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"brush"
],
"colorPermutations": {
"6868681": [
0
]
}
},
"attrs": [
{}
],
"properties": {
"order": 264,
"id": 72,
"prevSize": 40,
"code": 58891,
"name": "brush"
},
"setIdx": 0,
"iconIdx": 11
},
{
"icon": {
"paths": [
"M870.4 665.6h102.4c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6h-102.4c-1.041 0-1.925 0.472-2.931 0.591-2.6-52.944-14.931-102.925-35.244-147.762l101.375-101.353c10-10 10-26.2 0-36.2s-26.2-10-36.2 0l-90.509 90.491c-29.241-46.178-67.387-84.763-111.887-112.056 0.709-25.672-0.841-111.863-50.903-165.784-27.15-29.25-63.4-44.075-107.65-44.075-44.3 0-80.5 14.825-107.7 44.1-50.075 53.934-51.612 140.138-50.903 165.784-45.85 28.128-85.078 68.122-114.634 116.181l-94.663-94.641c-10-10-26.2-10-36.2 0s-10 26.2 0 36.2l106.209 106.187c-19 43.466-30.597 91.569-33.156 142.459-0.212-0.006-0.387-0.122-0.603-0.122h-102.4c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6h102.4c0.569 0 1.041-0.284 1.6-0.322 3.553 50.206 15.694 98.041 35.644 141.403l-109.694 109.694c-10 10-10 26.2 0 36.2 5 5 11.55 7.5 18.1 7.5s13.1-2.5 18.1-7.5l99.119-99.119c33.506 52.187 78.788 94.856 133.294 122.256 0.294 0.213 0.634 0.344 0.941 0.547 1.472 0.734 2.763 1.756 4.247 2.466 0.841 0.409 1.756 0.291 2.616 0.597 0.606 0.184 1.056 0.613 1.684 0.753 1.066 0.238 2.1 0.247 3.144 0.35 1.216 0.175 2.381 0.825 3.606 0.825 2.322 0 4.359-1.25 6.581-1.869 0.359-0.116 0.719-0.172 1.072-0.303 6.419-2.091 12.297-5.787 15.447-12.353 1.894-3.956 2.334-8.106 2.137-12.203l4.969-22.144c28.541 10.784 58.369 16.247 89.044 16.247 30.663 0 60.481-5.466 88.997-16.234l6.353 28.309c0.294 1.303 1.009 2.363 1.484 3.569 0.253 0.659 0.203 1.356 0.516 2.006 0.175 0.359 0.509 0.562 0.7 0.909 1.225 2.256 2.772 4.194 4.559 5.947 0.472 0.466 0.822 1.038 1.325 1.463 2.409 2.025 5.106 3.656 8.097 4.687 0.372 0.131 0.778 0.084 1.156 0.197 2.309 0.678 4.681 1.222 7.163 1.222 0.266 0 0.541-0.081 0.806-0.091 0.591-0.016 1.153-0.134 1.744-0.194 1.016-0.103 2.016-0.109 3.050-0.341 0.956-0.216 1.669-0.834 2.572-1.147 1.003-0.347 2.056-0.319 3.028-0.803 54.822-26.587 100.244-69.003 134.344-120.606l95.056 95.056c5 5 11.55 7.5 18.1 7.5s13.1-2.5 18.1-7.5c10-10 10-26.2 0-36.2l-105.128-105.128c21.3-44.728 34.369-94.294 38.012-146.437 1.328 0.212 2.525 0.791 3.916 0.791zM466.3 177.2c17.3-18.675 40.25-27.75 70.15-27.75 29.8 0 52.7 9.025 70 27.6 27.447 29.447 34.959 75.856 36.828 105.856-33.575-12.872-69.419-20.181-106.828-20.181-37.453 0-73.341 7.328-106.956 20.231 2.116-32.203 10.769-77.753 36.806-105.756zM459.059 880.459l77.384-344.756 77.35 344.744c-49.797 20.697-104.772 20.744-154.734 0.012zM674.134 915.337l-112.684-502.238c-0.319-1.403-1.163-2.484-1.688-3.772-0.669-1.647-1.163-3.337-2.15-4.809-0.984-1.469-2.312-2.553-3.563-3.772-1.1-1.084-2.034-2.272-3.328-3.15-1.594-1.075-3.425-1.637-5.228-2.334-1.188-0.462-2.162-1.25-3.444-1.538-0.175-0.037-0.338 0.025-0.513-0.009-1.641-0.331-3.375-0.091-5.094-0.094-1.722 0.003-3.459-0.238-5.1 0.094-0.169 0.034-0.325-0.028-0.494 0.009-1.231 0.275-2.169 1.041-3.313 1.478-1.869 0.706-3.75 1.297-5.394 2.409-1.244 0.844-2.128 1.991-3.191 3.025-1.297 1.25-2.663 2.372-3.678 3.891-0.975 1.456-1.459 3.125-2.122 4.753-0.531 1.303-1.378 2.4-1.703 3.819l-112.738 502.269c-87.681-56.625-143.063-162.422-143.063-279.719 0-177.4 125.95-321.725 280.8-321.725 154.8 0 280.75 144.325 280.75 321.725 0 117.172-55.45 223.037-143.066 279.687z",
"M430.341 59.419c0 14.567-11.808 26.375-26.375 26.375s-26.375-11.808-26.375-26.375c0-14.567 11.808-26.375 26.375-26.375s26.375 11.808 26.375 26.375z",
"M683.191 59.419c0 14.567-11.808 26.375-26.375 26.375s-26.375-11.808-26.375-26.375c0-14.567 11.808-26.375 26.375-26.375s26.375 11.808 26.375 26.375z"
],
"attrs": [
{},
{},
{}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"bug"
],
"colorPermutations": {
"6868681": [
0,
0,
0
]
}
},
"attrs": [
{},
{},
{}
],
"properties": {
"order": 265,
"id": 71,
"prevSize": 40,
"code": 58892,
"name": "bug"
},
"setIdx": 0,
"iconIdx": 12
},
{
"icon": {
"paths": [
"M954.7 237.9l-617.375 617.4-268.025-268.050c-10-10-26.2-10-36.2 0s-10 26.2 0 36.2l286.125 286.15c4.8 4.8 11.3 7.5 18.1 7.5s13.3-2.7 18.1-7.5l635.475-635.5c10-10 10-26.2 0-36.2s-26.2-10-36.2 0z"
],
"attrs": [
{}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"check"
],
"colorPermutations": {
"6868681": [
0
]
}
},
"attrs": [
{}
],
"properties": {
"order": 266,
"id": 70,
"prevSize": 40,
"code": 58893,
"name": "check"
},
"setIdx": 0,
"iconIdx": 13
},
{
"icon": {
"paths": [
"M512 1018.65c279.375 0 506.675-227.3 506.675-506.65s-227.3-506.65-506.675-506.65-506.675 227.3-506.675 506.65 227.3 506.65 506.675 506.65zM512 56.55c251.15 0 455.475 204.3 455.475 455.45s-204.325 455.45-455.475 455.45-455.475-204.3-455.475-455.45 204.325-455.45 455.475-455.45z",
"M391.4 727.1c5 5 11.55 7.5 18.1 7.5s13.1-2.5 18.1-7.5l372.9-372.9c10-10 10-26.2 0-36.2s-26.2-10-36.2 0l-354.8 354.8-149.8-149.8c-10-10-26.2-10-36.2 0s-10 26.2 0 36.2l167.9 167.9z"
],
"attrs": [
{},
{}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"circle-check"
],
"colorPermutations": {
"6868681": [
0,
0
]
}
},
"attrs": [
{},
{}
],
"properties": {
"order": 267,
"id": 69,
"prevSize": 40,
"code": 58894,
"name": "circle-check"
},
"setIdx": 0,
"iconIdx": 14
},
{
"icon": {
"paths": [
"M716.8 512h-460.8c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6h460.8c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6z",
"M492.8 35.9c-271 0-491.45 220.45-491.45 491.45s220.45 491.45 491.45 491.45 491.45-220.45 491.45-491.45-220.45-491.45-491.45-491.45zM492.8 970.3c-244.25 0-442.95-198.7-442.95-442.95s198.7-442.95 442.95-442.95 442.95 198.7 442.95 442.95-198.7 442.95-442.95 442.95z"
],
"attrs": [
{},
{}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"circle-minus"
],
"colorPermutations": {
"6868681": [
0,
0
]
}
},
"attrs": [
{},
{}
],
"properties": {
"order": 268,
"id": 68,
"prevSize": 40,
"code": 58895,
"name": "circle-minus"
},
"setIdx": 0,
"iconIdx": 15
},
{
"icon": {
"paths": [
"M256 563.2h204.8v204.8c0 14.15 11.45 25.6 25.6 25.6s25.6-11.45 25.6-25.6v-204.8h204.8c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6h-204.8v-204.8c0-14.15-11.45-25.6-25.6-25.6s-25.6 11.45-25.6 25.6v204.8h-204.8c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6z",
"M492.8 1029.050c271 0 491.45-220.45 491.45-491.45s-220.45-491.45-491.45-491.45-491.45 220.45-491.45 491.45 220.45 491.45 491.45 491.45zM492.8 94.65c244.25 0 442.95 198.7 442.95 442.95s-198.7 442.95-442.95 442.95-442.95-198.7-442.95-442.95 198.7-442.95 442.95-442.95z"
],
"attrs": [
{},
{}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"circle-plus"
],
"colorPermutations": {
"6868681": [
0,
0
]
}
},
"attrs": [
{},
{}
],
"properties": {
"order": 269,
"id": 67,
"prevSize": 40,
"code": 58896,
"name": "circle-plus"
},
"setIdx": 0,
"iconIdx": 16
},
{
"icon": {
"paths": [
"M722.1 301.9c-10-10-26.2-10-36.2 0l-173.9 173.9-173.9-173.9c-10-10-26.2-10-36.2 0s-10 26.2 0 36.2l173.9 173.9-173.9 173.9c-10 10-10 26.2 0 36.2 5 5 11.55 7.5 18.1 7.5s13.1-2.5 18.1-7.5l173.9-173.9 173.9 173.9c5 5 11.55 7.5 18.1 7.5s13.1-2.5 18.1-7.5c10-10 10-26.2 0-36.2l-173.9-173.9 173.9-173.9c10-10 10-26.2-0-36.2z",
"M512 5.35c-279.375 0-506.675 227.3-506.675 506.65s227.3 506.65 506.675 506.65 506.675-227.3 506.675-506.65-227.3-506.65-506.675-506.65zM512 967.45c-251.15 0-455.475-204.3-455.475-455.45s204.325-455.45 455.475-455.45 455.475 204.3 455.475 455.45-204.325 455.45-455.475 455.45z"
],
"attrs": [
{},
{}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"circle-times"
],
"colorPermutations": {
"6868681": [
0,
0
]
}
},
"attrs": [
{},
{}
],
"properties": {
"order": 270,
"id": 66,
"prevSize": 40,
"code": 58897,
"name": "circle-times"
},
"setIdx": 0,
"iconIdx": 17
},
{
"icon": {
"paths": [
"M716.8 460.8h-409.6c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6h409.6c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6z",
"M716.8 563.2h-409.6c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6h409.6c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6z",
"M716.8 665.6h-409.6c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6h409.6c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6z",
"M512 768h-204.8c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6h204.8c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6z",
"M793.6 153.6h-148.75c-11.45-47.7-48.25-111.15-132.85-111.15s-121.4 63.45-132.85 111.15h-148.75c-14.15 0-25.6 11.45-25.6 25.6v76.8h-76.8c-14.15 0-25.6 11.45-25.6 25.6v716.8c0 14.15 11.45 25.6 25.6 25.6h768c14.15 0 25.6-11.45 25.6-25.6v-716.8c0-14.15-11.45-25.6-25.6-25.6h-76.8v-76.8c0-14.15-11.45-25.6-25.6-25.6zM256 204.8h144.85c13.35 0 24.45-10.275 25.5-23.6 0.3-3.575 7.8-87.55 85.65-87.55 75.8 0 84.85 78.7 85.65 87.55 1.050 13.325 12.15 23.6 25.5 23.6h144.85v102.4h-512v-102.4zM870.4 307.2v665.6h-716.8v-665.6h51.2v25.6c0 14.15 11.45 25.6 25.6 25.6h563.2c14.15 0 25.6-11.45 25.6-25.6v-25.6h51.2z"
],
"attrs": [
{},
{},
{},
{},
{}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"clipboard"
],
"colorPermutations": {
"6868681": [
0,
0,
0,
0,
0
]
}
},
"attrs": [
{},
{},
{},
{},
{}
],
"properties": {
"order": 271,
"id": 65,
"prevSize": 40,
"code": 58898,
"name": "clipboard"
},
"setIdx": 0,
"iconIdx": 18
},
{
"icon": {
"paths": [
"M507.1 99.55c-256.1 0-464.45 208.35-464.45 464.4 0 256.1 208.35 464.45 464.45 464.45s464.45-208.35 464.45-464.45c-0-256.050-208.35-464.4-464.45-464.4zM507.1 977.2c-227.85 0-413.25-185.4-413.25-413.25s185.4-413.2 413.25-413.2 413.25 185.35 413.25 413.2-185.4 413.25-413.25 413.25z",
"M665.6 51.2c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6h-307.2c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6h307.2z",
"M647.5 442.7l-135.5 135.5-237.9-237.9c-10-10-26.2-10-36.2 0s-10 26.2 0 36.2l256 256c5 5 11.55 7.5 18.1 7.5s13.1-2.5 18.1-7.5l153.6-153.6c10-10 10-26.2 0-36.2s-26.2-10-36.2 0z"
],
"attrs": [
{},
{},
{}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"clock"
],
"colorPermutations": {
"6868681": [
0,
0,
0
]
}
},
"attrs": [
{},
{},
{}
],
"properties": {
"order": 272,
"id": 64,
"prevSize": 40,
"code": 58899,
"name": "clock"
},
"setIdx": 0,
"iconIdx": 19
},
{
"icon": {
"paths": [
"M312.2 823.1c4.85 4.225 10.85 6.3 16.8 6.3 7.15 0 14.25-2.975 19.3-8.8 9.3-10.65 8.15-26.825-2.5-36.1l-270.9-235.775 278.4-241.625c10.65-9.25 11.8-25.425 2.55-36.1-9.3-10.75-25.45-11.875-36.15-2.55l-300.6 260.925c-5.6 4.85-8.8 11.9-8.8 19.3 0 7.425 3.2 14.475 8.8 19.325l293.1 255.1z",
"M689.65 829.4c5.95 0 11.95-2.050 16.8-6.275l300.6-260.925c5.6-4.85 8.8-11.9 8.8-19.3 0-7.425-3.2-14.475-8.8-19.325l-293.1-255.1c-10.65-9.275-26.8-8.175-36.1 2.5-9.3 10.65-8.15 26.825 2.5 36.1l270.9 235.775-278.4 241.625c-10.65 9.25-11.8 25.425-2.55 36.1 5.1 5.85 12.2 8.825 19.35 8.825z",
"M551.9 267.925l-121.1 544.65c-3.050 13.8 5.65 27.475 19.45 30.55 1.85 0.4 3.75 0.6 5.55 0.6 11.75 0 22.35-8.125 25-20.050l121.1-544.65c3.050-13.8-5.65-27.475-19.45-30.55-13.85-3-27.5 5.725-30.55 19.45z"
],
"attrs": [
{},
{},
{}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"code"
],
"colorPermutations": {
"6868681": [
0,
0,
0
]
}
},
"attrs": [
{},
{},
{}
],
"properties": {
"order": 273,
"id": 63,
"prevSize": 40,
"code": 58900,
"name": "code"
},
"setIdx": 0,
"iconIdx": 20
},
{
"icon": {
"paths": [
"M164.45 768.25c23.656 0 46.462-5.906 67.394-16.722 13.591 33.734 31.875 66.347 56.306 95.597 65.2 78.075 161.8 117.65 287.15 117.65s221.95-39.575 287.15-117.65c129.9-155.525 86.35-405.9 84.45-416.5-0.047-0.263-0.225-0.453-0.281-0.712-7.169-66.225-145.25-91.991-228.619-101.438-14-1.275-26.75 8.475-28.35 22.575-1.6 14.050 8.5 26.725 22.55 28.3 129.8 14.7 180.65 44.825 183.95 55.4-5.15 18.125-108.2 63.65-320.85 63.65s-315.7-45.525-320.85-62.75c4.85-16.9 95.75-59.125 292.15-63.35 14.15-0.3 25.35-12.025 25.050-26.15s-13.1-25.1-26.15-25.050c-34.241 0.731-327.378 10.187-340.922 107.322-0.219 0.778-0.731 1.391-0.878 2.203-0.437 2.444-3.075 18.056-5.306 41.903-11.175-2.691-22.494-4.253-33.944-4.253-82.7 0-150 67.275-150 149.975s67.3 150 150 150zM575.3 549.6c100.878 0 252.419-12.987 327.044-55.078 5.050 78.263 1.453 223.391-79.294 319.928-55 65.775-138.35 99.125-247.75 99.125s-192.75-33.35-247.75-99.125c-80.747-96.537-84.344-241.666-79.294-319.928 74.625 42.091 226.166 55.078 327.044 55.078zM164.45 519.475c10.397 0 20.722 2.347 30.913 5.825-1.050 49.447 2.844 112.597 19.934 175.694-15.647 9.778-32.719 16.056-50.847 16.056-54.5 0-98.8-44.325-98.8-98.8s44.3-98.775 98.8-98.775z",
"M629 280.3c6.9 82.65-100.6 130.975-101.65 131.45-12.95 5.7-18.85 20.775-13.2 33.7 4.25 9.625 13.6 15.35 23.45 15.35 3.45 0 6.9-0.675 10.2-2.125 5.85-2.525 142.15-63.325 132.2-182.625-4.75-57.075-37.2-103.85-65.85-145.1-25.45-36.75-47.5-68.5-41.4-94.35 3.25-13.75-5.25-27.55-19-30.8-14.15-3.1-27.6 5.375-30.8 19.050-11.35 48.050 18.050 90.425 49.15 135.275 26.2 37.75 53.25 76.775 56.9 120.175z"
],
"attrs": [
{},
{}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"coffee"
],
"colorPermutations": {
"6868681": [
0,
0
]
}
},
"attrs": [
{},
{}
],
"properties": {
"order": 274,
"id": 62,
"prevSize": 40,
"code": 58901,
"name": "coffee"
},
"setIdx": 0,
"iconIdx": 21
},
{
"icon": {
"paths": [
"M504.8 390.8c-66.85 0-121.2 54.35-121.2 121.2s54.35 121.2 121.2 121.2 121.2-54.35 121.2-121.2-54.35-121.2-121.2-121.2zM504.8 582c-38.6 0-70-31.4-70-70s31.4-70 70-70 70 31.4 70 70-31.4 70-70 70z",
"M945.25 409.6h-104.75c-6.95-30.15-16.6-46.2-27.5-62.9l74.35-73.35c13.1-13.1 20.3-30.4 20.3-48.85 0-18.4-7.2-35.7-20.35-48.85l-39.6-39.35c-26.2-26-71.65-26.3-98.55 0.45l-71.85 73.95c-16.65-10.9-32.75-20.55-62.9-27.5v-104.45c0-39.75-36.85-78.75-74.4-78.75h-56.050c-37.5 0-74.35 39-74.35 78.75v104.15c-30.3 6.95-46.55 16.65-63.35 27.65l-72.9-73.9c-26.15-26.15-71.35-26.3-97.7 0.050l-39.35 39.6c-26.95 27.050-26.9 71.15 0.45 98.55l73.45 71.4c-10.95 16.8-20.65 33.1-27.65 63.35h-103.8c-39.75 0-78.75 36.85-78.75 74.35v56.050c0 37.55 39 74.4 78.75 74.4h103.8c7.050 30.35 16.8 46.65 27.85 63.5l-73.75 72.75c-13.1 13.1-20.3 30.4-20.3 48.85 0 18.4 7.2 35.7 20.35 48.85l39.6 39.35c26.25 26.050 71.7 26.35 98.55-0.45l71.55-73.65c16.75 10.95 33 20.6 63.2 27.5v104.15c0 39.75 36.85 78.75 74.35 78.75h56.050c37.55 0 74.4-39 74.4-78.75v-104.45c30.25-6.95 46.35-16.65 63.050-27.7l73.2 74.25c26.2 26.15 71.35 26.3 97.7-0.050l39.35-39.6c26.95-27.050 26.9-71.15-0.45-98.55l-74.1-72c10.85-16.6 20.45-32.65 27.35-62.75h104.75c39.75 0 78.75-36.85 78.75-74.4v-56.050c0-37.5-39-74.35-78.75-74.35zM972.8 540c0 8.4-15.95 23.2-27.55 23.2h-125.95c-12.65 0-23.35 9.2-25.3 21.7-5.7 36.95-13.5 48.75-26.4 68.3l-9.1 14.15c-6.35 10.2-4.7 23.45 3.9 31.85l88.85 86.35c7.2 7.2 7.25 18.85 0.15 26l-39.3 39.6c-6.85 6.8-18.65 6.65-25.1 0.15l-87.75-89c-8.5-8.65-21.8-10.050-31.8-3.75l-14.2 9.2c-19.6 13-31.45 20.85-68.4 26.6-12.45 1.95-21.65 12.7-21.65 25.3v125.6c0 11.6-14.8 27.55-23.2 27.55h-56.050c-8.4 0-23.15-15.95-23.15-27.55v-125.35c0-12.65-9.25-23.4-21.7-25.3-37.1-5.7-49.1-13.55-68.95-26.65l-14-9c-4.15-2.6-8.85-3.85-13.5-3.85-6.75 0-13.4 2.65-18.35 7.75l-85.85 88.4c-6.9 6.95-19.1 7.050-26 0.15l-39.6-39.3c-3.4-3.4-5.3-7.9-5.3-12.6 0-4.75 1.9-9.25 5.2-12.5l88.5-87.3c8.5-8.45 10.050-21.65 3.7-31.8l-9.050-14c-13.15-19.9-21.1-31.95-26.9-69.050-1.95-12.45-12.7-21.65-25.3-21.65h-124.95c-11.6 0-27.55-14.8-27.55-23.2v-56.050c0-8.4 15.95-23.15 27.55-23.15h124.95c12.6 0 23.35-9.2 25.3-21.65 5.8-37.2 13.75-49.25 26.95-69.25l8.9-13.8c6.4-10.2 4.8-23.5-3.85-31.9l-88.25-85.75c-7.2-7.2-7.25-18.85-0.15-26l39.3-39.6c6.85-6.85 18.65-6.65 25.1-0.1l87.4 88.6c8.5 8.5 21.7 10.1 31.75 3.75l14.1-9.1c19.85-13.050 31.8-20.9 68.85-26.6 12.45-1.9 21.7-12.65 21.7-25.3v-125.35c0-11.6 14.75-27.55 23.15-27.55h56.050c8.4 0 23.2 15.95 23.2 27.55v125.6c0 12.6 9.2 23.35 21.65 25.3 36.95 5.75 48.8 13.55 68.45 26.55l14.15 9.2c10.3 6.4 23.55 4.7 31.9-3.9l86.2-88.75c6.95-6.9 19.15-7 26-0.15l39.6 39.3c3.4 3.4 5.3 7.9 5.3 12.6 0 4.75-1.9 9.25-5.2 12.55l-89.1 87.9c-8.5 8.35-10.050 21.55-3.75 31.7l9.25 14.3c12.9 19.55 20.65 31.35 26.35 68.15 1.95 12.5 12.65 21.7 25.3 21.7h125.95c11.6 0 27.55 14.75 27.55 23.15v56.050z"
],
"attrs": [
{},
{}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"cog"
],
"colorPermutations": {
"6868681": [
0,
0
]
}
},
"attrs": [
{},
{}
],
"properties": {
"order": 275,
"id": 61,
"prevSize": 40,
"code": 58902,
"name": "cog"
},
"setIdx": 0,
"iconIdx": 22
},
{
"icon": {
"paths": [
"M999.891 272.466c-16.006-58.109-46.556-111.466-90.341-155.216-0.934-0.934-1.972-1.719-2.913-2.641-0.103-0.106-0.131-0.253-0.238-0.359-0.175-0.175-0.409-0.222-0.587-0.391-45.559-44.3-101.056-74.647-161.406-89.384-0.209-0.088-0.434-0.081-0.647-0.162-27.044-6.55-54.931-10.312-83.459-10.312-94.15 0-182.7 36.7-249.25 103.25-53.709 53.669-87.528 121.747-98.769 195.431-73.684 11.241-141.772 45.059-195.481 98.769-137.45 137.5-137.45 361.15 0 498.55 66.6 66.6 155.15 103.25 249.3 103.25s182.7-36.7 249.25-103.25c53.713-53.672 87.566-121.756 98.816-195.444 73.666-11.256 141.725-45.097 195.384-98.756 66.6-66.6 103.3-155.15 103.3-249.3 0-32.097-4.587-63.444-12.85-93.591-0.056-0.144-0.050-0.3-0.109-0.444zM667.45 660.75c0 2.275-0.281 4.503-0.331 6.769-2.284 0.050-4.525 0.331-6.819 0.331-10.709 0-21.313-0.641-31.816-1.737l37.222-37.228c1.1 10.519 1.744 21.141 1.744 31.866zM568.65 653.55c-38.684-12.306-74.478-32.531-105.669-59.681l130.456-130.456c27.138 31.2 47.369 66.987 59.684 105.653l-84.472 84.484zM370.497 448.6l77.697-77.703c39.575 11.15 76.537 30.153 108.747 56.613l-129.847 129.847c-26.45-32.225-45.453-69.188-56.597-108.756zM359 366.5c0-2.275 0.278-4.5 0.328-6.769 2.269-0.050 4.497-0.331 6.772-0.331 6.794 0 13.491 0.541 20.206 0.984l-26.322 26.325c-0.444-6.716-0.984-13.416-0.984-20.209zM851.141 133.309l-257.997 257.997c-31.35-26.509-66.663-46.862-104.488-60.878l253.706-253.741c39.584 11.147 76.559 30.153 108.778 56.622zM629.644 427.206l258.006-258.006c27.156 31.175 47.378 66.956 59.684 105.619l-254.191 254.219c-14.919-37.047-36.403-71.328-63.5-101.831zM447.25 153.45c56.9-56.9 132.55-88.25 213.050-88.25 6.781 0 13.469 0.544 20.172 0.984l-248.284 248.316c-21.575-4.075-43.653-6.3-66.088-6.3-0.494 0-0.975 0.069-1.469 0.072 11.344-58.294 39.659-111.9 82.619-154.822zM579.15 873.8c-56.9 56.9-132.55 88.25-213.050 88.25s-156.15-31.35-213.1-88.25c-117.45-117.45-117.45-308.65 0-426.15 42.959-42.922 96.575-71.256 154.872-82.613-0.003 0.491-0.072 0.972-0.072 1.463 0 92.209 35.347 178.913 99.362 245.016 0.325 0.366 0.437 0.834 0.788 1.184 0.213 0.213 0.506 0.275 0.725 0.481 0.831 0.847 1.534 1.778 2.375 2.619 43.772 43.772 97.163 74.319 155.303 90.312 0.047 0.019 0.094 0.019 0.137 0.037 30.213 8.3 61.634 12.9 93.809 12.9 0.509 0 1.003-0.072 1.512-0.075-11.356 58.297-39.703 111.903-82.663 154.825zM873.35 579.6c-42.909 42.909-96.497 71.244-154.772 82.606 0.003-0.488 0.072-0.966 0.072-1.456 0-26-3.069-51.494-8.522-76.294l249.778-249.809c1.097 10.516 1.744 21.131 1.744 31.853 0 80.5-31.4 156.15-88.3 213.1z"
],
"attrs": [
{}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"color"
],
"colorPermutations": {
"6868681": [
0
]
}
},
"attrs": [
{}
],
"properties": {
"order": 276,
"id": 60,
"prevSize": 40,
"code": 58903,
"name": "color"
},
"setIdx": 0,
"iconIdx": 23
},
{
"icon": {
"paths": [
"M25.6 1024c6.55 0 13.1-2.5 18.1-7.5l365.9-365.9v219.8c0 14.15 11.45 25.6 25.6 25.6s25.6-11.45 25.6-25.6v-281.6c0-14.15-11.45-25.6-25.6-25.6h-281.6c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6h219.8l-365.9 365.9c-10 10-10 26.2 0 36.2 5 5 11.55 7.5 18.1 7.5z",
"M980.3 7.5l-365.9 365.9v-219.8c0-14.15-11.45-25.6-25.6-25.6s-25.6 11.45-25.6 25.6v281.6c0 14.15 11.45 25.6 25.6 25.6h281.6c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6h-219.8l365.9-365.9c10-10 10-26.2 0-36.2s-26.2-10-36.2 0z"
],
"attrs": [
{},
{}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"contract"
],
"colorPermutations": {
"6868681": [
0,
0
]
}
},
"attrs": [
{},
{}
],
"properties": {
"order": 277,
"id": 59,
"prevSize": 40,
"code": 58904,
"name": "contract"
},
"setIdx": 0,
"iconIdx": 24
},
{
"icon": {
"paths": [
"M281.6 1024h614.4c14.15 0 25.6-11.45 25.6-25.6v-768c0-14.15-11.45-25.6-25.6-25.6h-76.8c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6h51.2v716.8h-563.2v-51.2c0-14.15-11.45-25.6-25.6-25.6s-25.6 11.45-25.6 25.6v76.8c0 14.15 11.45 25.6 25.6 25.6z",
"M563.2 204.8h-307.2c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6h307.2c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6z",
"M563.2 307.2h-307.2c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6h307.2c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6z",
"M563.2 409.6h-307.2c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6h307.2c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6z",
"M409.6 512h-153.6c-14.15 0-25.6 11.45-25.6 25.6s11.45 25.6 25.6 25.6h153.6c14.15 0 25.6-11.45 25.6-25.6s-11.45-25.6-25.6-25.6z",
"M51.2 25.6v819.2c0 14.15 11.45 25.6 25.6 25.6h665.6c14.15 0 25.6-11.45 25.6-25.6v-819.2c0-14.15-11.45-25.6-25.6-25.6h-665.6c-14.15 0-25.6 11.45-25.6 25.6zM102.4 51.2h614.4v768h-614.4v-768z"
],
"attrs": [
{},
{},
{},
{},
{},
{}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"copy"
],
"colorPermutations": {
"6868681": [
0,
0,
0,
0,
0,
0
]
}
},
"attrs": [
{},
{},
{},
{},
{},
{}
],
"properties": {
"order": 278,
"id": 58,
"prevSize": 40,
"code": 58905,
"name": "copy"
},
"setIdx": 0,
"iconIdx": 25
},
{