-
Notifications
You must be signed in to change notification settings - Fork 64
/
bxs.json
2028 lines (2028 loc) · 207 KB
/
bxs.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
{
"prefix": "bxs",
"info": {
"name": "BoxIcons Solid",
"total": 665,
"version": "2.1.4",
"author": {
"name": "Atisa",
"url": "https://github.com/atisawd/boxicons"
},
"license": {
"title": "CC BY 4.0",
"spdx": "CC-BY-4.0",
"url": "https://creativecommons.org/licenses/by/4.0/"
},
"samples": [
"edit-alt",
"tree-alt",
"circle-half",
"eject",
"flag",
"download"
],
"height": 24,
"category": "UI 24px",
"palette": false
},
"lastModified": 1722793024,
"icons": {
"add-to-queue": {
"body": "<path fill=\"currentColor\" d=\"M4 22h12v-2H4V8H2v12c0 1.103.897 2 2 2\"/><path fill=\"currentColor\" d=\"M20 2H8c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m-2 9h-3v3h-2v-3h-3V9h3V6h2v3h3z\"/>"
},
"adjust": {
"body": "<path fill=\"currentColor\" d=\"M12 2C6.579 2 2 6.58 2 12s4.579 10 10 10s10-4.58 10-10S17.421 2 12 2m0 17V5c3.829 0 7 3.169 7 7c0 3.828-3.171 7-7 7\"/>"
},
"adjust-alt": {
"body": "<path fill=\"currentColor\" d=\"M19.071 19.071c3.833-3.833 3.833-10.31 0-14.143s-10.31-3.833-14.143 0s-3.833 10.31 0 14.143s10.31 3.833 14.143 0M7.051 7.051c2.706-2.707 7.191-2.708 9.898 0l-9.898 9.898c-2.708-2.707-2.71-7.19 0-9.898\"/>"
},
"alarm": {
"body": "<path fill=\"currentColor\" d=\"M12 4c-4.878 0-9 4.122-9 9s4.122 9 9 9s9-4.122 9-9s-4.121-9-9-9m5 10h-6V8h2v4h4zm3.292-7.292l-3.01-3l1.412-1.417l3.01 3zM5.282 2.294L6.7 3.706l-2.99 3l-1.417-1.413z\"/>"
},
"alarm-add": {
"body": "<path fill=\"currentColor\" d=\"M12 4c-4.879 0-9 4.121-9 9s4.121 9 9 9s9-4.121 9-9s-4.121-9-9-9m4 10h-3v3h-2v-3H8v-2h3V9h2v3h3zm1.284-10.293l1.412-1.416l3.01 3l-1.413 1.417zM5.282 2.294L6.7 3.706l-2.99 3l-1.417-1.413z\"/>"
},
"alarm-exclamation": {
"body": "<path fill=\"currentColor\" d=\"m17.284 3.707l1.412-1.416l3.01 3l-1.413 1.417zm-10.586 0l-2.99 2.999L2.29 5.294l2.99-3zM12 4c-4.879 0-9 4.121-9 9s4.121 9 9 9s9-4.121 9-9s-4.121-9-9-9m1 14h-2v-2h2zm0-4h-2V8h2z\"/>"
},
"alarm-off": {
"body": "<path fill=\"currentColor\" d=\"m20.292 6.708l-3.01-3l1.412-1.417l3.01 3zm1.415 13.585l-2.287-2.288C20.409 16.563 21 14.837 21 13c0-4.878-4.121-9-9-9c-1.838 0-3.563.59-5.006 1.581L5.91 4.496l.788-.79l-1.416-1.412l-.786.788l-.789-.789l-1.414 1.414l18 18zM17 14h-1.586l-2-2H17zm-6-6h2v3.586l-2-2zm1 14c1.658 0 3.224-.485 4.574-1.305L4.305 8.426A8.8 8.8 0 0 0 3 13c0 4.878 4.122 9 9 9\"/>"
},
"alarm-snooze": {
"body": "<path fill=\"currentColor\" d=\"m17.284 3.707l1.412-1.416l3.01 3l-1.413 1.417zm-10.586 0l-2.99 2.999L2.29 5.294l2.99-3zM12 4c-4.878 0-9 4.121-9 9s4.122 9 9 9s9-4.121 9-9s-4.121-9-9-9m4 13H8.131l4-6H8V9h7.868l-1.035 1.554l-.001.001L11.869 15H16z\"/>"
},
"album": {
"body": "<path fill=\"currentColor\" d=\"M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m-4.607 8.055A5 5 0 0 0 7 12H5a6.98 6.98 0 0 1 2.051-4.95a7 7 0 0 1 2.225-1.5l.779 1.842c-.596.252-1.13.612-1.59 1.072s-.82.995-1.072 1.591m4.6 3.945a2.007 2.007 0 1 1 0-4.014a2.007 2.007 0 0 1 0 4.014\"/>"
},
"ambulance": {
"body": "<path fill=\"currentColor\" d=\"M21.86 12.48L19.15 8a2 2 0 0 0-1.72-1H15V5a1 1 0 0 0-1-1H4a2 2 0 0 0-2 2v10a2 2 0 0 0 1 1.73a3.49 3.49 0 0 0 7 .27h3.1a3.48 3.48 0 0 0 6.9 0a2 2 0 0 0 2-2v-3a1.1 1.1 0 0 0-.14-.52M6.5 19A1.5 1.5 0 1 1 8 17.5A1.5 1.5 0 0 1 6.5 19m5.5-8h-2v2H8v-2H6V9h2V7h2v2h2zm4.5 8a1.5 1.5 0 1 1 1.5-1.5a1.5 1.5 0 0 1-1.5 1.5M15 12V9h2.43l1.8 3z\"/>"
},
"analyse": {
"body": "<path fill=\"currentColor\" d=\"M4.626 8.878a7.9 7.9 0 0 1 1.71-2.541a7.9 7.9 0 0 1 2.542-1.71a8.12 8.12 0 0 1 6.13-.041A2.49 2.49 0 0 0 17.5 7C18.886 7 20 5.886 20 4.5S18.886 2 17.5 2c-.689 0-1.312.276-1.763.725c-2.431-.973-5.223-.958-7.635.059c-1.19.5-2.26 1.22-3.18 2.139A9.98 9.98 0 0 0 2 12h2c0-1.086.211-2.136.626-3.122m14.747 6.244c-.401.952-.977 1.808-1.71 2.541s-1.589 1.309-2.542 1.71a8.12 8.12 0 0 1-6.13.041A2.49 2.49 0 0 0 6.5 17C5.114 17 4 18.114 4 19.5S5.114 22 6.5 22c.689 0 1.312-.276 1.763-.725A10 10 0 0 0 12 22a9.98 9.98 0 0 0 9.217-6.102A10 10 0 0 0 22 12h-2a8 8 0 0 1-.627 3.122\"/><path fill=\"currentColor\" d=\"M12 7.462c-2.502 0-4.538 2.036-4.538 4.538S9.498 16.538 12 16.538s4.538-2.036 4.538-4.538S14.502 7.462 12 7.462\"/>"
},
"angry": {
"body": "<path fill=\"currentColor\" d=\"M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m-5 8.5l.002-.022l-1.373-.549l.742-1.857l5 2l-.742 1.857l-1.031-.413c-.014.014-.023.031-.037.044A1.499 1.499 0 0 1 7 10.5M8 17s1-3 4-3s4 3 4 3zm8.986-6.507c0 .412-.167.785-.438 1.056a1.49 1.49 0 0 1-2.112 0l-.029-.035l-1.037.415l-.742-1.857l5-2l.742 1.857l-1.386.554z\"/>"
},
"arch": {
"body": "<path fill=\"currentColor\" d=\"M21 8V6H3v14H2v2h6v-7c0-.163.046-4 4-4c3.821 0 3.993 3.602 4 4v7h6v-2h-1zM2 2h20v2H2z\"/>"
},
"archive": {
"body": "<path fill=\"currentColor\" d=\"m21.704 5.29l-2.997-2.997A1 1 0 0 0 18 2H6a1 1 0 0 0-.707.293L2.296 5.29A1 1 0 0 0 2 5.999V19a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5.999a1 1 0 0 0-.296-.709M6.414 4h11.172l1 1H5.414zM17 13v1H7v-4h2v2h6v-2h2z\"/>"
},
"archive-in": {
"body": "<path fill=\"currentColor\" d=\"m21.706 5.292l-2.999-2.999A1 1 0 0 0 18 2H6a1 1 0 0 0-.707.293L2.294 5.292A1 1 0 0 0 2 6v13c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V6a1 1 0 0 0-.294-.708M6.414 4h11.172l1 1H5.414zM12 18l-5-5h3v-3h4v3h3z\"/>"
},
"archive-out": {
"body": "<path fill=\"currentColor\" d=\"m21.706 5.292l-2.999-2.999A1 1 0 0 0 18 2H6a1 1 0 0 0-.707.293L2.294 5.292A1 1 0 0 0 2 6v13c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V6a1 1 0 0 0-.294-.708M6.414 4h11.172l1 1H5.414zM14 14v3h-4v-3H7l5-5l5 5z\"/>"
},
"area": {
"body": "<path fill=\"currentColor\" d=\"M3 19a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2zm9-13h6v6h-2V8h-4zm-6 6h2v4h4v2H6z\"/>"
},
"arrow-from-bottom": {
"body": "<path fill=\"currentColor\" d=\"M6 18h12v2H6zm6-14l-6 6h5v6h2v-6h5z\"/>"
},
"arrow-from-left": {
"body": "<path fill=\"currentColor\" d=\"M4 6h2v12H4zm10 5H8v2h6v5l6-6l-6-6z\"/>"
},
"arrow-from-right": {
"body": "<path fill=\"currentColor\" d=\"M18 6h2v12h-2zm-8 12v-5h6v-2h-6V6l-6 6z\"/>"
},
"arrow-from-top": {
"body": "<path fill=\"currentColor\" d=\"M6 4h12v2H6zm5 4v6H6l6 6l6-6h-5V8z\"/>"
},
"arrow-to-bottom": {
"body": "<path fill=\"currentColor\" d=\"M6 18h12v2H6zm5-14v6H6l6 6l6-6h-5V4z\"/>"
},
"arrow-to-left": {
"body": "<path fill=\"currentColor\" d=\"M4 6h2v12H4zm10 7h6v-2h-6V6l-6 6l6 6z\"/>"
},
"arrow-to-right": {
"body": "<path fill=\"currentColor\" d=\"M18 6h2v12h-2zm-8 5H4v2h6v5l6-6l-6-6z\"/>"
},
"arrow-to-top": {
"body": "<path fill=\"currentColor\" d=\"M6 4h12v2H6zm5 10v6h2v-6h5l-6-6l-6 6z\"/>"
},
"award": {
"body": "<path fill=\"currentColor\" d=\"M5 8.999a6.99 6.99 0 0 0 2.879 5.646l.001.001a7 7 0 0 0 1.881.979l.051.019a7 7 0 0 0 1.163.271a7 7 0 0 0 1.024.085H12c.35 0 .69-.034 1.027-.084l.182-.028q.505-.088.981-.243l.042-.016C17 14.693 19 12.078 19 8.999C19 5.14 15.86 2 12 2S5 5.14 5 8.999M12 4c2.756 0 5 2.242 5 4.999h-2A3.003 3.003 0 0 0 12 6zM7.521 16.795V22L12 20.5l4.479 1.5l.001-5.205a8.93 8.93 0 0 1-8.959 0\"/>"
},
"baby-carriage": {
"body": "<path fill=\"currentColor\" d=\"M21.666 12.277a8 8 0 0 0 .171-.665l.008-.05c.02-.098.029-.199.045-.298c.025-.157.055-.313.07-.471a7.98 7.98 0 0 0-2.303-6.45A7.98 7.98 0 0 0 14 2v8H6.517l-.858-2H2v2h2.341l1.828 4.266A3.5 3.5 0 0 0 4 17.5C4 19.43 5.57 21 7.5 21c1.759 0 3.204-1.309 3.449-3h2.102c.245 1.691 1.69 3 3.449 3c1.93 0 3.5-1.57 3.5-3.5c0-.63-.181-1.213-.473-1.725c.042-.041.089-.077.131-.119c.36-.361.688-.759.977-1.184c.288-.43.536-.886.736-1.359c.016-.037.026-.076.041-.113h.001l.015-.042q.133-.329.235-.668zM7.5 19c-.827 0-1.5-.673-1.5-1.5S6.673 16 7.5 16s1.5.673 1.5 1.5S8.327 19 7.5 19m9 0c-.827 0-1.5-.673-1.5-1.5s.673-1.5 1.5-1.5s1.5.673 1.5 1.5s-.673 1.5-1.5 1.5\"/>"
},
"backpack": {
"body": "<path fill=\"currentColor\" d=\"M16 15a1 1 0 0 0-1-1H9c-.551 0-1 .448-1 1v2h8zm-8 4h8v3H8z\"/><path fill=\"currentColor\" d=\"M21 12c0-2.967-2.167-5.432-5-5.91V5c0-1.654-1.346-3-3-3h-2C9.346 2 8 3.346 8 5v1.09C5.167 6.568 3 9.033 3 12v8c0 1.103.897 2 2 2h1v-7c0-1.654 1.346-3 3-3h6c1.654 0 3 1.346 3 3v7h1c1.103 0 2-.897 2-2zM10 5c0-.552.449-1 1-1h2a1 1 0 0 1 1 1v1h-4z\"/>"
},
"badge": {
"body": "<path fill=\"currentColor\" d=\"M19.965 8.521Q20 8.26 20 8c0-2.379-2.143-4.288-4.521-3.965C14.786 2.802 13.466 2 12 2s-2.786.802-3.479 2.035C6.138 3.712 4 5.621 4 8q0 .26.035.521C2.802 9.215 2 10.535 2 12s.802 2.785 2.035 3.479A4 4 0 0 0 4 16c0 2.379 2.138 4.283 4.521 3.965C9.214 21.198 10.534 22 12 22s2.786-.802 3.479-2.035C17.857 20.283 20 18.379 20 16q0-.26-.035-.521C21.198 14.785 22 13.465 22 12s-.802-2.785-2.035-3.479\"/>"
},
"badge-check": {
"body": "<path fill=\"currentColor\" d=\"M19.965 8.521Q20 8.26 20 8c0-2.379-2.143-4.288-4.521-3.965C14.786 2.802 13.466 2 12 2s-2.786.802-3.479 2.035C6.138 3.712 4 5.621 4 8q0 .26.035.521C2.802 9.215 2 10.535 2 12s.802 2.785 2.035 3.479A4 4 0 0 0 4 16c0 2.379 2.138 4.283 4.521 3.965C9.214 21.198 10.534 22 12 22s2.786-.802 3.479-2.035C17.857 20.283 20 18.379 20 16q0-.26-.035-.521C21.198 14.785 22 13.465 22 12s-.802-2.785-2.035-3.479m-9.01 7.895l-3.667-3.714l1.424-1.404l2.257 2.286l4.327-4.294l1.408 1.42z\"/>"
},
"badge-dollar": {
"body": "<path fill=\"currentColor\" d=\"M2.047 14.668a1 1 0 0 0 .465.607l1.91 1.104v2.199a1 1 0 0 0 1 1h2.199l1.104 1.91a1.01 1.01 0 0 0 .866.5c.174 0 .347-.046.501-.135L12 20.75l1.91 1.104a1 1 0 0 0 1.366-.365l1.103-1.91h2.199a1 1 0 0 0 1-1V16.38l1.91-1.104a1 1 0 0 0 .365-1.367L20.75 12l1.104-1.908a1 1 0 0 0-.365-1.366l-1.91-1.104v-2.2a1 1 0 0 0-1-1H16.38l-1.103-1.909a1 1 0 0 0-.607-.466a1 1 0 0 0-.759.1L12 3.25l-1.909-1.104a1 1 0 0 0-1.366.365l-1.104 1.91H5.422a1 1 0 0 0-1 1V7.62l-1.91 1.104a1.003 1.003 0 0 0-.365 1.368L3.251 12l-1.104 1.908a1 1 0 0 0-.1.76M12 13c-3.48 0-4-1.879-4-3c0-1.287 1.029-2.583 3-2.915V6.012h2v1.109c1.734.41 2.4 1.853 2.4 2.879h-1l-1 .018C13.386 9.638 13.185 9 12 9c-1.299 0-2 .515-2 1c0 .374 0 1 2 1c3.48 0 4 1.879 4 3c0 1.287-1.029 2.583-3 2.915V18h-2v-1.08c-2.339-.367-3-2.003-3-2.92h2c.011.143.159 1 2 1c1.38 0 2-.585 2-1c0-.325 0-1-2-1\"/>"
},
"baguette": {
"body": "<path fill=\"currentColor\" d=\"m11.13 4.41l4.23 4.23L14.3 9.7l-4.24-4.24l-1.77 1.77l4.24 4.24l-1.06 1.06l-4.24-4.24l-1.77 1.77L9.7 14.3l-1.06 1.06l-4.23-4.23C1.86 14 1.55 18 3.79 20.21a5.38 5.38 0 0 0 3.85 1.5a8 8 0 0 0 5.6-2.47l6-6c2.87-2.87 3.31-7.11 1-9.45s-6.24-1.93-9.11.62\"/>"
},
"ball": {
"body": "<path fill=\"currentColor\" d=\"M20.247 3.034c-.069-.018-1.742-.433-4.052-.433c-2.842 0-6.868.64-9.91 3.687c-5.34 5.349-3.34 13.61-3.252 13.96a1 1 0 0 0 .728.726c.069.018 1.726.426 4.018.426c2.849 0 6.884-.641 9.932-3.688c5.335-5.335 3.351-13.6 3.264-13.949a1 1 0 0 0-.728-.729m-3.537 9.262l-1.414 1.414l-1.793-1.792l-1.586 1.586l1.792 1.793l-1.414 1.414l-1.792-1.793l-1.793 1.793l-1.414-1.414l1.793-1.793l-1.793-1.794l1.414-1.414l1.793 1.794l1.586-1.586l-1.794-1.793l1.414-1.414l1.794 1.793l1.793-1.793l1.414 1.414l-1.793 1.793z\"/>"
},
"balloon": {
"body": "<path fill=\"currentColor\" d=\"M11 19.91L10 22h4l-1-2.09c4-.65 7-5.28 7-9.91a8 8 0 0 0-16 0c0 4.63 3.08 9.26 7 9.91m1-15.66v1.5A4.26 4.26 0 0 0 7.75 10h-1.5A5.76 5.76 0 0 1 12 4.25\"/>"
},
"band-aid": {
"body": "<path fill=\"currentColor\" d=\"m11.646 3.868l-7.778 7.778a6.007 6.007 0 0 0 0 8.485a5.98 5.98 0 0 0 4.242 1.754a5.98 5.98 0 0 0 4.243-1.754l7.778-7.778a6.007 6.007 0 0 0 0-8.485a6.01 6.01 0 0 0-8.485 0M9 13a1 1 0 1 1 0-2a1 1 0 0 1 0 2m3 3a1 1 0 1 1 0-2a1 1 0 0 1 0 2m0-6a1 1 0 1 1 0-2a1 1 0 0 1 0 2m3 3a1 1 0 1 1 0-2a1 1 0 0 1 0 2\"/>"
},
"bank": {
"body": "<path fill=\"currentColor\" d=\"M2 8v4.001h1V18H2v3h16l3 .001V21h1v-3h-1v-5.999h1V8L12 2zm4 10v-5.999h2V18zm5 0v-5.999h2V18zm7 0h-2v-5.999h2zM14 8a2 2 0 1 1-4.001-.001A2 2 0 0 1 14 8\"/>"
},
"bar-chart-alt-2": {
"body": "<path fill=\"currentColor\" d=\"M6 21H3a1 1 0 0 1-1-1v-8a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1m7 0h-3a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v17a1 1 0 0 1-1 1m7 0h-3a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v11a1 1 0 0 1-1 1\"/>"
},
"bar-chart-square": {
"body": "<path fill=\"currentColor\" d=\"M21 19V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2M9 18H7v-6h2zm4 0h-2V7h2zm4 0h-2v-8h2z\"/>"
},
"barcode": {
"body": "<path fill=\"currentColor\" d=\"M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2M8 17H5V7h3zm2 0H9V7h1zm2 0h-1V7h1zm4 0h-3V7h3zm3 0h-2V7h2z\"/>"
},
"baseball": {
"body": "<path fill=\"currentColor\" d=\"M21.984 12.236a9.97 9.97 0 0 0-2.913-7.308a9.97 9.97 0 0 0-7.308-2.913a9.04 9.04 0 0 1-.673 4.313l-1.84-.78a7.04 7.04 0 0 0 .526-3.284a9.93 9.93 0 0 0-4.847 2.665a9.9 9.9 0 0 0-2.666 4.852a7.1 7.1 0 0 0 2.576-.276l.575 1.916c-1.1.33-2.257.443-3.398.344a9.96 9.96 0 0 0 2.913 7.307a9.97 9.97 0 0 0 7.307 2.913a9.1 9.1 0 0 1 .344-3.398l1.916.575a7.1 7.1 0 0 0-.276 2.576a9.93 9.93 0 0 0 4.853-2.666a9.93 9.93 0 0 0 2.665-4.848a7.06 7.06 0 0 0-3.284.526l-.78-1.841a9 9 0 0 1 4.31-.673M9.17 9.173a9 9 0 0 1-2.192 1.612l-.927-1.772a7 7 0 0 0 2.576-2.314l1.663 1.113c-.328.49-.705.948-1.12 1.361m7.074 7.068a7 7 0 0 0-1.257 1.708l-1.772-.927a9 9 0 0 1 2.972-3.312l1.113 1.663a7 7 0 0 0-1.056.868\"/>"
},
"basket": {
"body": "<path fill=\"currentColor\" d=\"M8.132 2.504L4.42 9H3a1 1 0 0 0-.965 1.263l2.799 10.263A2.004 2.004 0 0 0 6.764 22h10.473c.898 0 1.692-.605 1.93-1.475l2.799-10.263A.998.998 0 0 0 21 9h-1.42l-3.712-6.496l-1.736.992L17.277 9H6.723l3.145-5.504zM14 13h2v5h-2zm-6 0h2v5H8z\"/>"
},
"basketball": {
"body": "<path fill=\"currentColor\" d=\"M18.328 4.258a9.95 9.95 0 0 0-5.949-2.235a9 9 0 0 1-1.835 7.107L12 10.586zM7.701 9.115L4.258 5.672a9.94 9.94 0 0 0-2.112 4.704a7 7 0 0 0 5.555-1.261m12.041-3.443L13.414 12l1.456 1.456a9 9 0 0 1 7.107-1.835a9.95 9.95 0 0 0-2.235-5.949m2.112 7.952a7 7 0 0 0-5.555 1.261l3.443 3.443a9.9 9.9 0 0 0 2.112-4.704M9.115 7.701a7 7 0 0 0 1.261-5.555a9.9 9.9 0 0 0-4.704 2.112zm4.509 14.153a9.94 9.94 0 0 0 4.704-2.111L14.885 16.3a7 7 0 0 0-1.261 5.554M12 13.414l-6.328 6.328a9.95 9.95 0 0 0 5.949 2.235a9 9 0 0 1 1.835-7.107zm-7.742 4.914L10.586 12L9.13 10.544a9 9 0 0 1-7.107 1.835a9.95 9.95 0 0 0 2.235 5.949\"/>"
},
"bath": {
"body": "<path fill=\"currentColor\" d=\"M21 10H7V7.113c0-.997.678-1.923 1.661-2.085A2.003 2.003 0 0 1 11 7h2a4.003 4.003 0 0 0-4.398-3.98C6.523 3.222 5 5.089 5 7.178V10H3a1 1 0 0 0-1 1v2c0 2.606 1.674 4.823 4 5.65V22h2v-3h8v3h2v-3.35c2.326-.827 4-3.044 4-5.65v-2a1 1 0 0 0-1-1\"/>"
},
"battery": {
"body": "<path fill=\"currentColor\" d=\"M20 8a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-2h2v-4h-2z\"/>"
},
"battery-charging": {
"body": "<path fill=\"currentColor\" d=\"M20 10V8a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-2h2v-4zM9 17l2-3.89L7 12l6-5l-1 3.89L16 12z\"/>"
},
"battery-full": {
"body": "<path fill=\"currentColor\" d=\"M4 18h14a2 2 0 0 0 2-2v-2h2v-4h-2V8a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2m1-9h12v6H5z\"/>"
},
"battery-low": {
"body": "<path fill=\"currentColor\" d=\"M20 8a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-2h2v-4h-2zM5 15V9h3l4 6z\"/>"
},
"bed": {
"body": "<path fill=\"currentColor\" d=\"M20 9.556V3h-2v2H6V3H4v6.557C2.81 10.25 2 11.526 2 13v4a1 1 0 0 0 1 1h1v4h2v-4h12v4h2v-4h1a1 1 0 0 0 1-1v-4c0-1.474-.811-2.75-2-3.444M11 9H6V7h5zm7 0h-5V7h5z\"/>"
},
"been-here": {
"body": "<path fill=\"currentColor\" d=\"M12 2C7.589 2 4 5.589 4 9.995C3.971 16.44 11.696 21.784 12 22c0 0 8.029-5.56 8-12c0-4.411-3.589-8-8-8m-1 13.414l-3.707-3.707l1.414-1.414L11 12.586l5.293-5.293l1.414 1.414z\"/>"
},
"beer": {
"body": "<path fill=\"currentColor\" d=\"M20 6h-2V4a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v15c0 1.654 1.346 3 3 3h10c1.654 0 3-1.346 3-3v-1h2c1.103 0 2-.897 2-2V8c0-1.103-.897-2-2-2M8 17H6V7h2zm6 0h-2V7h2zm6-1h-2V8h2z\"/>"
},
"bell": {
"body": "<path fill=\"currentColor\" d=\"M12 22a2.98 2.98 0 0 0 2.818-2H9.182A2.98 2.98 0 0 0 12 22m7-7.414V10c0-3.217-2.185-5.927-5.145-6.742C13.562 2.52 12.846 2 12 2s-1.562.52-1.855 1.258C7.185 4.074 5 6.783 5 10v4.586l-1.707 1.707A1 1 0 0 0 3 17v1a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-1a1 1 0 0 0-.293-.707z\"/>"
},
"bell-minus": {
"body": "<path fill=\"currentColor\" d=\"M12 22a2.98 2.98 0 0 0 2.818-2H9.182A2.98 2.98 0 0 0 12 22m8.707-5.707L19 14.586V10c0-3.217-2.185-5.926-5.145-6.743C13.562 2.52 12.846 2 12 2s-1.562.52-1.855 1.258C7.185 4.074 5 6.783 5 10v4.586l-1.707 1.707A1 1 0 0 0 3 17v1a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-1a1 1 0 0 0-.293-.707M16 12H8v-2h8z\"/>"
},
"bell-off": {
"body": "<path fill=\"currentColor\" d=\"M20.345 18.931A.99.99 0 0 0 21 18v-1a1 1 0 0 0-.293-.707L19 14.586V10c0-3.217-2.185-5.927-5.145-6.742C13.562 2.52 12.846 2 12 2s-1.562.52-1.855 1.258c-1.323.364-2.463 1.128-3.346 2.127L3.707 2.293L2.293 3.707l18 18l1.414-1.414zM12 22a2.98 2.98 0 0 0 2.818-2H9.182A2.98 2.98 0 0 0 12 22M5 10v4.586l-1.707 1.707A1 1 0 0 0 3 17v1a1 1 0 0 0 1 1h10.879L5.068 9.189C5.037 9.457 5 9.724 5 10\"/>"
},
"bell-plus": {
"body": "<path fill=\"currentColor\" d=\"M12 22a2.98 2.98 0 0 0 2.818-2H9.182A2.98 2.98 0 0 0 12 22m8.707-5.707L19 14.586V10c0-3.217-2.185-5.926-5.145-6.743C13.562 2.52 12.846 2 12 2s-1.562.52-1.855 1.258C7.185 4.074 5 6.783 5 10v4.586l-1.707 1.707A1 1 0 0 0 3 17v1a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-1a1 1 0 0 0-.293-.707M16 12h-3v3h-2v-3H8v-2h3V7h2v3h3z\"/>"
},
"bell-ring": {
"body": "<path fill=\"currentColor\" d=\"m5.705 3.71l-1.41-1.42C1 5.563 1 7.935 1 11h1l1-.063C3 8.009 3 6.396 5.705 3.71m13.999-1.42l-1.408 1.42C21 6.396 21 8.009 21 11l2-.063c0-3.002 0-5.374-3.296-8.647M12 22a2.98 2.98 0 0 0 2.818-2H9.182A2.98 2.98 0 0 0 12 22m7-7.414V10c0-3.217-2.185-5.927-5.145-6.742C13.562 2.52 12.846 2 12 2s-1.562.52-1.855 1.258C7.184 4.073 5 6.783 5 10v4.586l-1.707 1.707A1 1 0 0 0 3 17v1a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-1a1 1 0 0 0-.293-.707z\"/>"
},
"bible": {
"body": "<path fill=\"currentColor\" d=\"M6 22h15v-2H6.012C5.55 19.988 5 19.805 5 19s.55-.988 1.012-1H21V4a2 2 0 0 0-2-2H6c-1.206 0-3 .799-3 3v14c0 2.201 1.794 3 3 3M8 7h3V5h2v2h3v2h-3v6h-2V9H8z\"/>"
},
"binoculars": {
"body": "<path fill=\"currentColor\" d=\"M19.447 5.345A3.27 3.27 0 0 0 16.29 3a3.293 3.293 0 0 0-3.277 3h-2.025a3.297 3.297 0 0 0-3.284-3a3.27 3.27 0 0 0-3.151 2.345l-2.511 8.368A1 1 0 0 0 2 14v1a5.006 5.006 0 0 0 5.001 5a5 5 0 0 0 4.576-3h.846a5 5 0 0 0 4.576 3A5.006 5.006 0 0 0 22 14.999V14q0-.147-.042-.287zM7.001 18A3.005 3.005 0 0 1 4 15c0-.076.017-.147.022-.222A2.995 2.995 0 0 1 7 12a3 3 0 0 1 3 3v.009A3.004 3.004 0 0 1 7.001 18m9.998 0A3.004 3.004 0 0 1 14 15.009V15a3 3 0 0 1 6-.001A3.005 3.005 0 0 1 16.999 18\"/>"
},
"blanket": {
"body": "<path fill=\"currentColor\" d=\"M20 2H7C4.243 2 2 4.243 2 7v10c0 2.757 2.243 5 5 5h12c1.654 0 3-1.346 3-3s-1.346-3-3-3H6v2h13a1 1 0 0 1 0 2H7c-1.654 0-3-1.346-3-3s1.346-3 3-3h13c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2M4 13h.003L4 13.002z\"/>"
},
"bolt": {
"body": "<path fill=\"currentColor\" d=\"M17.168 8H13l.806-4.835A1 1 0 0 0 12.819 2H7.667a1 1 0 0 0-.986.835l-1.667 10A1 1 0 0 0 6 14h4v8l8.01-12.459A1 1 0 0 0 17.168 8\"/>"
},
"bolt-circle": {
"body": "<path fill=\"currentColor\" d=\"M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m-1 16v-5H7l6-7v5h4z\"/>"
},
"bomb": {
"body": "<path fill=\"currentColor\" d=\"m18.293 4.293l-1.086 1.086l-1.086-1.086a1 1 0 0 0-1.414 0l-1.249 1.249A8.4 8.4 0 0 0 10.499 5C5.813 5 2 8.813 2 13.5S5.813 22 10.499 22s8.5-3.813 8.5-8.5a8.4 8.4 0 0 0-.431-2.654L19.914 9.5a1 1 0 0 0 0-1.414l-1.293-1.293l1.09-1.09C19.94 5.474 20.556 5 21 5h1V3h-1c-1.4 0-2.584 1.167-2.707 1.293M10.499 10c-.935 0-1.813.364-2.475 1.025A3.48 3.48 0 0 0 7 13.5H5c0-1.468.571-2.849 1.609-3.888A5.46 5.46 0 0 1 10.499 8z\"/>"
},
"bone": {
"body": "<path fill=\"currentColor\" d=\"M18.852 5.148a3.32 3.32 0 0 0-.96-2.183a3.333 3.333 0 1 0-4.713 4.714l-5.499 5.5a3.333 3.333 0 1 0-4.714 4.713c.606.606 1.39.918 2.183.96c.042.793.354 1.576.96 2.183a3.333 3.333 0 1 0 4.713-4.714l5.499-5.499a3.333 3.333 0 1 0 4.714-4.713a3.3 3.3 0 0 0-2.183-.961\"/>"
},
"bong": {
"body": "<path fill=\"currentColor\" d=\"m19.293 8.293l-2.069 2.069A7 7 0 0 0 15 8.681V4h1V2H8v2h1v4.681A7.01 7.01 0 0 0 5 15c0 3.859 3.141 7 7 7s7-3.141 7-7a7 7 0 0 0-.652-2.934l2.359-2.359zm-8.959 1.998l.666-.235V4h2v6.056l.666.235A5 5 0 0 1 16.886 14H7.114a5 5 0 0 1 3.22-3.709\"/>"
},
"book": {
"body": "<path fill=\"currentColor\" d=\"M6.012 18H21V4a2 2 0 0 0-2-2H6c-1.206 0-3 .799-3 3v14c0 2.201 1.794 3 3 3h15v-2H6.012C5.55 19.988 5 19.805 5 19s.55-.988 1.012-1M8 6h9v2H8z\"/>"
},
"book-add": {
"body": "<path fill=\"currentColor\" d=\"M6.012 18H21V4c0-1.103-.897-2-2-2H6c-1.206 0-3 .799-3 3v14c0 2.201 1.794 3 3 3h15v-2H6.012C5.55 19.988 5 19.806 5 19s.55-.988 1.012-1M8 9h3V6h2v3h3v2h-3v3h-2v-3H8z\"/>"
},
"book-alt": {
"body": "<path fill=\"currentColor\" d=\"M3 5v14c0 2.201 1.794 3 3 3h15v-2H6.012C5.55 19.988 5 19.806 5 19s.55-.988 1.012-1H21V4c0-1.103-.897-2-2-2H6c-1.206 0-3 .799-3 3\"/>"
},
"book-bookmark": {
"body": "<path fill=\"currentColor\" d=\"M19 2H6c-1.206 0-3 .799-3 3v14c0 2.201 1.794 3 3 3h15v-2H6.012C5.55 19.988 5 19.806 5 19q0-.15.024-.273c.112-.576.584-.717.988-.727H21V4a2 2 0 0 0-2-2m0 9l-2-1l-2 1V4h4z\"/>"
},
"book-content": {
"body": "<path fill=\"currentColor\" d=\"M20 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2m-1 4v2h-5V7zm-5 4h5v2h-5zM4 19V5h7v14z\"/>"
},
"book-heart": {
"body": "<path fill=\"currentColor\" d=\"M6.012 18H21V4c0-1.103-.897-2-2-2H6c-1.206 0-3 .799-3 3v14c0 2.201 1.794 3 3 3h15v-2H6.012C5.55 19.988 5 19.806 5 19q0-.15.024-.273c.112-.576.584-.717.988-.727M8.648 7.642a2.224 2.224 0 0 1 3.125 0l.224.219l.223-.219a2.225 2.225 0 0 1 3.126 0a2.13 2.13 0 0 1 0 3.069L11.998 14l-3.349-3.289a2.13 2.13 0 0 1-.001-3.069\"/>"
},
"book-open": {
"body": "<path fill=\"currentColor\" d=\"M21 3h-7a2.98 2.98 0 0 0-2 .78A2.98 2.98 0 0 0 10 3H3a1 1 0 0 0-1 1v15a1 1 0 0 0 1 1h5.758a2 2 0 0 1 1.414.586l1.121 1.121c.009.009.021.012.03.021c.086.08.182.15.294.196h.002a1 1 0 0 0 .762 0h.002c.112-.046.208-.117.294-.196c.009-.009.021-.012.03-.021l1.121-1.121A2 2 0 0 1 15.242 20H21a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1m-1 15h-4.758a4.03 4.03 0 0 0-2.242.689V6c0-.551.448-1 1-1h6z\"/>"
},
"book-reader": {
"body": "<path fill=\"currentColor\" d=\"M2 8v11.529S6.621 19.357 12 22c5.379-2.643 10-2.471 10-2.471V8s-5.454 0-10 2.471C7.454 8 2 8 2 8\"/><circle cx=\"12\" cy=\"5\" r=\"3\" fill=\"currentColor\"/>"
},
"bookmark": {
"body": "<path fill=\"currentColor\" d=\"M19 10.132v-6c0-1.103-.897-2-2-2H7c-1.103 0-2 .897-2 2V22l7-4.666L19 22z\"/>"
},
"bookmark-alt": {
"body": "<path fill=\"currentColor\" d=\"M18.5 2h-12C4.57 2 3 3.57 3 5.5V22l7-3.5l7 3.5v-9h5V5.5C22 3.57 20.43 2 18.5 2m1.5 9h-3V5.5c0-.827.673-1.5 1.5-1.5s1.5.673 1.5 1.5z\"/>"
},
"bookmark-alt-minus": {
"body": "<path fill=\"currentColor\" d=\"M18.5 2h-12C4.57 2 3 3.57 3 5.5V22l7-3.5l7 3.5v-9h5V5.5C22 3.57 20.43 2 18.5 2M13 11H7V9h6zm7 0h-3V5.5c0-.827.673-1.5 1.5-1.5s1.5.673 1.5 1.5z\"/>"
},
"bookmark-alt-plus": {
"body": "<path fill=\"currentColor\" d=\"M18.5 2h-12C4.57 2 3 3.57 3 5.5V22l7-3.5l7 3.5v-9h5V5.5C22 3.57 20.43 2 18.5 2M13 11h-2v2H9v-2H7V9h2V7h2v2h2zm7 0h-3V5.5c0-.827.673-1.5 1.5-1.5s1.5.673 1.5 1.5z\"/>"
},
"bookmark-heart": {
"body": "<path fill=\"currentColor\" d=\"M19 22V4c0-1.103-.897-2-2-2H7c-1.103 0-2 .897-2 2v18l7-4.666zM8.006 8.056c0-.568.224-1.083.585-1.456c.361-.372.86-.603 1.412-.603c0 0 .996-.003 1.997 1.029c1.001-1.032 1.997-1.029 1.997-1.029c.552 0 1.051.23 1.412.603s.585.888.585 1.456s-.224 1.084-.585 1.456L12 13.203L8.591 9.512a2.08 2.08 0 0 1-.585-1.456\"/>"
},
"bookmark-minus": {
"body": "<path fill=\"currentColor\" d=\"M17 2H7a2 2 0 0 0-2 2v18l7-4.848L19 22V4a2 2 0 0 0-2-2m-1 9H8V9h8z\"/>"
},
"bookmark-plus": {
"body": "<path fill=\"currentColor\" d=\"M17 2H7a2 2 0 0 0-2 2v18l7-4.848L19 22V4a2 2 0 0 0-2-2m-1 9h-3v3h-2v-3H8V9h3V6h2v3h3z\"/>"
},
"bookmark-star": {
"body": "<path fill=\"currentColor\" d=\"M12 11.222L14.667 13l-.89-3.111L16 8l-2.667-.333L12 5l-1.333 2.667L8 8l2.223 1.889L9.333 13z\"/><path fill=\"currentColor\" d=\"M19 21.723V4a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v17.723l7-4.571zM8 8l2.667-.333L12 5l1.333 2.667L16 8l-2.223 1.889l.89 3.111L12 11.222L9.333 13l.89-3.111z\"/>"
},
"bookmarks": {
"body": "<path fill=\"currentColor\" d=\"M16.999 23V7c0-1.103-.897-2-2-2h-8c-1.103 0-2 .897-2 2v16l6-3.601z\"/><path fill=\"currentColor\" d=\"M15.585 3h1.414c1.103 0 2 .897 2 2v10.443l2 2.489V3c0-1.103-.897-2-2-2h-8c-1.103 0-2 .897-2 2z\"/>"
},
"bot": {
"body": "<path fill=\"currentColor\" d=\"M21 10.975V8a2 2 0 0 0-2-2h-6V4.688c.305-.274.5-.668.5-1.11a1.5 1.5 0 0 0-3 0c0 .442.195.836.5 1.11V6H5a2 2 0 0 0-2 2v2.998l-.072.005A1 1 0 0 0 2 12v2a1 1 0 0 0 1 1v5a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a1 1 0 0 0 1-1v-1.938a1 1 0 0 0-.072-.455c-.202-.488-.635-.605-.928-.632M7 12c0-1.104.672-2 1.5-2s1.5.896 1.5 2s-.672 2-1.5 2S7 13.104 7 12m8.998 6c-1.001-.003-7.997 0-7.998 0v-2s7.001-.002 8.002 0zm-.498-4c-.828 0-1.5-.896-1.5-2s.672-2 1.5-2s1.5.896 1.5 2s-.672 2-1.5 2\"/>"
},
"bowl-hot": {
"body": "<path fill=\"currentColor\" d=\"M21 10H3a1 1 0 0 0-1 1a10 10 0 0 0 5 8.66V21a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-1.34A10 10 0 0 0 22 11a1 1 0 0 0-1-1M9 9V7.93a4.5 4.5 0 0 0-1.28-3.15A2.5 2.5 0 0 1 7 3V2H5v1a4.5 4.5 0 0 0 1.28 3.17A2.5 2.5 0 0 1 7 7.93V9zm4 0V7.93a4.5 4.5 0 0 0-1.28-3.15A2.5 2.5 0 0 1 11 3V2H9v1a4.5 4.5 0 0 0 1.28 3.15A2.5 2.5 0 0 1 11 7.93V9zm4 0V7.93a4.5 4.5 0 0 0-1.28-3.15A2.5 2.5 0 0 1 15 3V2h-2v1a4.5 4.5 0 0 0 1.28 3.15A2.5 2.5 0 0 1 15 7.93V9z\"/>"
},
"bowl-rice": {
"body": "<path fill=\"currentColor\" d=\"M21 10a3.58 3.58 0 0 0-1.8-3a3.66 3.66 0 0 0-3.63-3.13a4 4 0 0 0-1 .13a3.7 3.7 0 0 0-5.11 0a4 4 0 0 0-1-.13A3.66 3.66 0 0 0 4.81 7A3.58 3.58 0 0 0 3 10a1 1 0 0 0-1 1a10 10 0 0 0 5 8.66V21a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-1.34A10 10 0 0 0 22 11a1 1 0 0 0-1-1M5 10a1.59 1.59 0 0 1 1.11-1.39l.83-.26l-.16-.85a1.64 1.64 0 0 1 1.66-1.62a1.8 1.8 0 0 1 .83.2l.81.45l.5-.77a1.71 1.71 0 0 1 2.84 0l.5.77l.81-.45a1.8 1.8 0 0 1 .83-.2a1.65 1.65 0 0 1 1.67 1.6l-.16.85l.82.28A1.59 1.59 0 0 1 19 10z\"/>"
},
"bowling-ball": {
"body": "<path fill=\"currentColor\" d=\"M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2M6.5 12a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 6.5 12M9 6.5a1.5 1.5 0 1 1 3.001.001A1.5 1.5 0 0 1 9 6.5m2.5 6.5a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 11.5 13\"/>"
},
"box": {
"body": "<path fill=\"currentColor\" d=\"M2 3h20v4H2zm17 5H3v11a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8zm-3 6H8v-2h8z\"/>"
},
"brain": {
"body": "<path fill=\"currentColor\" d=\"M3.299 17.596c.432 1.332 1.745 2.182 3.146 2.182H6.5A2.78 2.78 0 0 0 9.223 22c.457 0 .884-.115 1.262-.313a.99.99 0 0 0 .515-.882V3.027a1 1 0 0 0-.785-.983a2.32 2.32 0 0 0-1.479.201c-.744.356-1.18 1.151-1.18 1.978v.055a2.778 2.778 0 0 0-2.744 4.433A3.33 3.33 0 0 0 2 12c0 1.178.611 2.211 1.533 2.812c-.43.771-.571 1.746-.234 2.784m15.889-8.885a2.778 2.778 0 0 0-2.744-4.433v-.055c0-.826-.437-1.622-1.181-1.978a2.32 2.32 0 0 0-1.478-.201a1 1 0 0 0-.785.983v17.777c0 .365.192.712.516.882c.378.199.804.314 1.261.314a2.78 2.78 0 0 0 2.723-2.223h.056c1.4 0 2.714-.85 3.146-2.182c.337-1.038.196-2.013-.234-2.784A3.35 3.35 0 0 0 22 12a3.33 3.33 0 0 0-2.812-3.289\"/>"
},
"briefcase": {
"body": "<path fill=\"currentColor\" d=\"M20 6h-3V4c0-1.103-.897-2-2-2H9c-1.103 0-2 .897-2 2v2H4c-1.103 0-2 .897-2 2v3h20V8c0-1.103-.897-2-2-2M9 4h6v2H9zm5 10h-4v-2H2v7c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2v-7h-8z\"/>"
},
"briefcase-alt": {
"body": "<path fill=\"currentColor\" d=\"M20 6h-3V4c0-1.103-.897-2-2-2H9c-1.103 0-2 .897-2 2v2H4c-1.103 0-2 .897-2 2v11c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V8c0-1.103-.897-2-2-2M6 8h2v11H6zm12 11h-2V8h2zM15 4v2H9V4z\"/>"
},
"briefcase-alt-2": {
"body": "<path fill=\"currentColor\" d=\"M20 6h-3V4c0-1.103-.897-2-2-2H9c-1.103 0-2 .897-2 2v2H4c-1.103 0-2 .897-2 2v4h5v-2h2v2h6v-2h2v2h5V8c0-1.103-.897-2-2-2M9 4h6v2H9zm8 11h-2v-2H9v2H7v-2H2v6c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2v-6h-5z\"/>"
},
"brightness": {
"body": "<path fill=\"currentColor\" d=\"M21.546 11.646L19 9.101V5.5a.5.5 0 0 0-.5-.5h-3.601l-2.546-2.546a.5.5 0 0 0-.707 0L9.101 5H5.5a.5.5 0 0 0-.5.5v3.601l-2.546 2.546a.5.5 0 0 0 0 .707L5 14.899V18.5a.5.5 0 0 0 .5.5h3.601l2.546 2.546a.5.5 0 0 0 .707 0L14.899 19H18.5a.5.5 0 0 0 .5-.5v-3.601l2.546-2.546a.5.5 0 0 0 0-.707M12 16a4 4 0 1 1 0-8a4 4 0 0 1 0 8\"/>"
},
"brightness-half": {
"body": "<path fill=\"currentColor\" d=\"M21.546 11.646L19 9.101V5.5a.5.5 0 0 0-.5-.5h-3.601l-2.546-2.546a.5.5 0 0 0-.707 0L9.101 5H5.5a.5.5 0 0 0-.5.5v3.601l-2.546 2.546a.5.5 0 0 0 0 .707L5 14.899V18.5a.5.5 0 0 0 .5.5h3.601l2.546 2.546a.5.5 0 0 0 .707 0L14.899 19H18.5a.5.5 0 0 0 .5-.5v-3.601l2.546-2.546a.5.5 0 0 0 0-.707M12 8a4 4 0 0 1 0 8\"/>"
},
"brush": {
"body": "<path fill=\"currentColor\" d=\"m21.207 11.278l-2.035-2.035l-1.415-1.415l-5.035-5.035a1 1 0 0 0-1.414 0L6.151 7.949L4.736 9.363a3 3 0 0 0-.878 2.122c0 .802.313 1.556.879 2.121l.707.707l-2.122 2.122a2.93 2.93 0 0 0-.873 2.108a2.97 2.97 0 0 0 1.063 2.308a2.92 2.92 0 0 0 1.886.681c.834 0 1.654-.341 2.25-.937l2.039-2.039l.707.706c1.133 1.133 3.107 1.134 4.242.001l.708-.707l.569-.569l.138-.138l5.156-5.157a1 1 0 0 0 0-1.414m-7.277 5.865l-.708.706a1.02 1.02 0 0 1-1.414 0l-1.414-1.413a1 1 0 0 0-1.414 0l-2.746 2.745a1.2 1.2 0 0 1-.836.352a.9.9 0 0 1-.595-.208a.98.98 0 0 1-.354-.782a.96.96 0 0 1 .287-.692l2.829-2.829a1 1 0 0 0 0-1.414l-1.414-1.415c-.189-.188-.293-.438-.293-.706s.104-.519.293-.708l.707-.707l3.536 3.536z\"/>"
},
"brush-alt": {
"body": "<path fill=\"currentColor\" d=\"M18 8.001h-2V8h-1V4.999a2.92 2.92 0 0 0-.874-2.108a2.94 2.94 0 0 0-2.39-.879C10.202 2.144 9 3.508 9 5.117V8H6c-1.103 0-2 .897-2 2v11a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V10.001c0-1.103-.897-2-2-2M6 12v-2h5V5.117c0-.57.407-1.07 1.002-1.117c.266 0 .512.103.712.307a.96.96 0 0 1 .286.692V10h.995l.005.001h4V12z\"/>"
},
"bug": {
"body": "<path fill=\"currentColor\" d=\"M6.787 7h10.426c-.108-.158-.201-.331-.318-.481l2.813-2.812l-1.414-1.414l-2.846 2.846a7 7 0 0 0-.723-.454a5.78 5.78 0 0 0-5.45 0c-.25.132-.488.287-.722.453L5.707 2.293L4.293 3.707l2.813 2.812c-.118.151-.21.323-.319.481M5.756 9H2v2h2.307c-.065.495-.107.997-.107 1.5c0 .507.042 1.013.107 1.511H2v2h2.753c.013.039.021.08.034.118c.188.555.421 1.093.695 1.6c.044.081.095.155.141.234l-2.33 2.33l1.414 1.414l2.11-2.111a7.5 7.5 0 0 0 2.068 1.619c.479.253.982.449 1.496.58c.204.052.411.085.618.118V16h2v5.914a6 6 0 0 0 .618-.118a6.8 6.8 0 0 0 1.496-.58c.465-.246.914-.55 1.333-.904c.258-.218.5-.462.734-.716l2.111 2.111l1.414-1.414l-2.33-2.33c.047-.08.098-.155.142-.236c.273-.505.507-1.043.694-1.599c.013-.039.021-.079.034-.118H22v-2h-2.308c.065-.499.107-1.004.107-1.511c0-.503-.042-1.005-.106-1.5H22V9z\"/>"
},
"bug-alt": {
"body": "<path fill=\"currentColor\" d=\"m18 5.414l1.707-1.707l-1.414-1.414l-1.563 1.562C15.483 2.708 13.824 2 12 2s-3.483.708-4.73 1.855L5.707 2.293L4.293 3.707L6 5.414A6.94 6.94 0 0 0 5 9H3v2h2v2H3v2h2c0 3.86 3.141 7 7 7s7-3.14 7-7h2v-2h-2v-2h2V9h-2a6.94 6.94 0 0 0-1-3.586M15 15H9v-2h6zm0-4H9V9h6z\"/>"
},
"building": {
"body": "<path fill=\"currentColor\" d=\"M17 2H7a2 2 0 0 0-2 2v17a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4a2 2 0 0 0-2-2m-6 14H8v-2h3zm0-4H8v-2h3zm0-4H8V6h3zm5 8h-3v-2h3zm0-4h-3v-2h3zm0-4h-3V6h3z\"/>"
},
"building-house": {
"body": "<path fill=\"currentColor\" d=\"M18.991 2H9.01C7.899 2 7 2.899 7 4.01v5.637l-4.702 4.642A1 1 0 0 0 3 16v5a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4.009C21 2.899 20.102 2 18.991 2m-8.069 13.111V20H5v-5.568l2.987-2.949l2.935 3.003zM13 9h-2V7h2zm4 8h-2v-2h2zm0-4h-2v-2h2zm0-4h-2V7h2z\"/><path fill=\"currentColor\" d=\"M7 15h2v2H7z\"/>"
},
"buildings": {
"body": "<path fill=\"currentColor\" d=\"M7 14.001h2v2H7z\"/><path fill=\"currentColor\" d=\"M19 2h-8a2 2 0 0 0-2 2v6H5c-1.103 0-2 .897-2 2v9a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4a2 2 0 0 0-2-2M5 20v-8h6v8zm9-12h-2V6h2zm4 8h-2v-2h2zm0-4h-2v-2h2zm0-4h-2V6h2z\"/>"
},
"bulb": {
"body": "<path fill=\"currentColor\" d=\"M9 20h6v2H9zm7.906-6.288C17.936 12.506 19 11.259 19 9c0-3.859-3.141-7-7-7S5 5.141 5 9c0 2.285 1.067 3.528 2.101 4.73c.358.418.729.851 1.084 1.349c.144.206.38.996.591 1.921h-.792v2h8.032v-2h-.79c.213-.927.45-1.719.593-1.925c.352-.503.726-.94 1.087-1.363\"/>"
},
"bullseye": {
"body": "<path fill=\"currentColor\" d=\"M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 17c-3.859 0-7-3.14-7-7s3.141-7 7-7s7 3.14 7 7s-3.141 7-7 7\"/><path fill=\"currentColor\" d=\"M12 7c-2.757 0-5 2.243-5 5s2.243 5 5 5s5-2.243 5-5s-2.243-5-5-5m0 7c-1.103 0-2-.897-2-2s.897-2 2-2s2 .897 2 2s-.897 2-2 2\"/>"
},
"buoy": {
"body": "<path fill=\"currentColor\" d=\"M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m7.736 8h-3.16A5.02 5.02 0 0 0 14 7.424V4.263A8.02 8.02 0 0 1 19.736 10M12 15c-1.654 0-3-1.346-3-3s1.346-3 3-3s3 1.346 3 3s-1.346 3-3 3M10 4.263v3.161A5.02 5.02 0 0 0 7.424 10h-3.16A8.02 8.02 0 0 1 10 4.263M4.264 14h3.16A5.02 5.02 0 0 0 10 16.576v3.161A8.02 8.02 0 0 1 4.264 14M14 19.737v-3.161A5.02 5.02 0 0 0 16.576 14h3.16A8.02 8.02 0 0 1 14 19.737\"/>"
},
"bus": {
"body": "<path fill=\"currentColor\" d=\"M21 6.021c.003-.146-.007-1.465-1.3-2.735C18.427 2.036 17.143 2 17 2H6.996c-.239 0-1.493.063-2.708 1.302C3.036 4.578 3 5.859 3 6v3H2v3h1v6c0 .734.406 1.373 1 1.721V21a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h10v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1.277A1.99 1.99 0 0 0 21 18v-6h1V9h-1zM9 4h6v2H9zM6.5 18a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 6.5 18m4.5-5H5V8h6zm6.5 5a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 17.5 18m1.5-5h-6V8h6z\"/>"
},
"bus-school": {
"body": "<path fill=\"currentColor\" d=\"M21 11.597V11h1V8h-1V6c0-2.206-1.794-4-4-4H7C4.794 2 3 3.794 3 6v2H2v3h1v.597a3.97 3.97 0 0 0-.999 2.648l.004 3.758c.001.733.404 1.369.995 1.716V21a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h12v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1.274a2 2 0 0 0 .421-.313c.377-.378.585-.881.584-1.415l-.004-3.759A3.97 3.97 0 0 0 21 11.597M8 4h8v2H8zM6.5 17a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 6.5 17m4.5-5H5V8h6zm6.5 5a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 17.5 17m1.5-5h-6V8h6z\"/>"
},
"business": {
"body": "<path fill=\"currentColor\" d=\"M21 7h-6a1 1 0 0 0-1 1v3h-2V4a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1M8 6h2v2H8zM6 16H4v-2h2zm0-4H4v-2h2zm0-4H4V6h2zm4 8H8v-2h2zm0-4H8v-2h2zm9 4h-2v-2h2zm0-4h-2v-2h2z\"/>"
},
"cabinet": {
"body": "<path fill=\"currentColor\" d=\"M21 4c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v7h18zm-5 4H8V5h2v1h4V5h2zM5 22h14c1.103 0 2-.897 2-2v-7H3v7c0 1.103.897 2 2 2m3-6h2v1h4v-1h2v3H8z\"/>"
},
"cable-car": {
"body": "<path fill=\"currentColor\" d=\"m2 9.76l9-2.45V10H7a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2h-4V6.76l9-2.45V2.24L2 7.69zM11 12v3H7v-3zm6 0v3h-4v-3z\"/>"
},
"cake": {
"body": "<path fill=\"currentColor\" d=\"M16.997 15c-1.601 0-2.446-.676-3.125-1.219c-.567-.453-.977-.781-1.878-.781c-.898 0-1.287.311-1.874.78c-.679.544-1.524 1.22-3.125 1.22s-2.444-.676-3.123-1.22C3.285 13.311 2.897 13 2 13v5c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2v-5c-.899 0-1.288.311-1.876.781c-.68.543-1.525 1.219-3.127 1.219M19 5h-6V2h-2v3H5C3.346 5 2 6.346 2 8v3c1.6 0 2.443.676 3.122 1.22c.587.469.975.78 1.873.78c.899 0 1.287-.311 1.875-.781c.679-.543 1.524-1.219 3.124-1.219c1.602 0 2.447.676 3.127 1.219c.588.47.977.781 1.876.781c.9 0 1.311-.328 1.878-.781C19.554 11.676 20.399 11 22 11V8c0-1.654-1.346-3-3-3\"/>"
},
"calculator": {
"body": "<path fill=\"currentColor\" d=\"M6 22h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2m3-3H7v-2h2zm0-4H7v-2h2zm0-4H7V9h2zm4 8h-2v-2h2zm0-4h-2v-2h2zm0-4h-2V9h2zm4 8h-2v-6h2zm0-8h-2V9h2zM6 4h12v3H6z\"/>"
},
"calendar": {
"body": "<path fill=\"currentColor\" d=\"M21 20V6c0-1.103-.897-2-2-2h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2M9 18H7v-2h2zm0-4H7v-2h2zm4 4h-2v-2h2zm0-4h-2v-2h2zm4 4h-2v-2h2zm0-4h-2v-2h2zm2-5H5V7h14z\"/>"
},
"calendar-alt": {
"body": "<path fill=\"currentColor\" d=\"M5 22h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2M5 7h14v2H5z\"/>"
},
"calendar-check": {
"body": "<path fill=\"currentColor\" d=\"M5 22h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2m6-3.586l-3.707-3.707l1.414-1.414L11 15.586l4.293-4.293l1.414 1.414zM5 7h14v2H5z\"/>"
},
"calendar-edit": {
"body": "<path fill=\"currentColor\" d=\"M5 22h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2m4.799-2.013H8v-1.799l4.977-4.97l1.799 1.799zm5.824-5.817l-1.799-1.799L15.196 11l1.799 1.799zM5 7h14v2H5z\"/>"
},
"calendar-event": {
"body": "<path fill=\"currentColor\" d=\"M19 4h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2m-1 15h-6v-6h6zm1-10H5V7h14z\"/>"
},
"calendar-exclamation": {
"body": "<path fill=\"currentColor\" d=\"M19 4h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2m-6 16h-2v-2h2zm0-4h-2v-5h2zm6-7H5V7h14z\"/>"
},
"calendar-heart": {
"body": "<path fill=\"currentColor\" d=\"M19 4h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2m-3.648 11.711L12.002 19l-3.349-3.289a2.13 2.13 0 0 1 0-3.069a2.224 2.224 0 0 1 3.125 0l.224.219l.224-.219a2.225 2.225 0 0 1 3.126 0a2.13 2.13 0 0 1 0 3.069M19 9H5V7h14z\"/>"
},
"calendar-minus": {
"body": "<path fill=\"currentColor\" d=\"M5 22h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2m11-6H8v-2h8zM5 7h14v2H5z\"/>"
},
"calendar-plus": {
"body": "<path fill=\"currentColor\" d=\"M5 22h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2m11-6h-3v3h-2v-3H8v-2h3v-3h2v3h3zM5 7h14v2H5z\"/>"
},
"calendar-star": {
"body": "<path fill=\"currentColor\" d=\"M19 4h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2m-4.588 15l-2.449-1.288L9.514 19l.468-2.728L8 14.342l2.738-.398l1.225-2.48l1.225 2.48l2.738.398l-1.981 1.931zM19 9H5V7h14z\"/>"
},
"calendar-week": {
"body": "<path fill=\"currentColor\" d=\"M19 4h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2m-2 8v2H7v-3h10zm2-3H5V7h14z\"/>"
},
"calendar-x": {
"body": "<path fill=\"currentColor\" d=\"M5 22h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2m10.707-4.707l-1.414 1.414L12 16.414l-2.293 2.293l-1.414-1.414L10.586 15l-2.293-2.293l1.414-1.414L12 13.586l2.293-2.293l1.414 1.414L13.414 15zM5 7h14v2H5z\"/>"
},
"camera": {
"body": "<path fill=\"currentColor\" d=\"M12 9c-1.626 0-3 1.374-3 3s1.374 3 3 3s3-1.374 3-3s-1.374-3-3-3\"/><path fill=\"currentColor\" d=\"M20 5h-2.586l-2.707-2.707A1 1 0 0 0 14 2h-4a1 1 0 0 0-.707.293L6.586 5H4c-1.103 0-2 .897-2 2v11c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V7c0-1.103-.897-2-2-2m-8 12c-2.71 0-5-2.29-5-5s2.29-5 5-5s5 2.29 5 5s-2.29 5-5 5\"/>"
},
"camera-home": {
"body": "<circle cx=\"12\" cy=\"10\" r=\"3\" fill=\"currentColor\"/><path fill=\"currentColor\" d=\"M18.125 2H5.875A1.877 1.877 0 0 0 4 3.875v12.25C4 17.159 4.841 18 5.875 18H11v2H7v2h10v-2h-4v-2h5.125A1.877 1.877 0 0 0 20 16.125V3.875A1.877 1.877 0 0 0 18.125 2M12 15c-2.757 0-5-2.243-5-5s2.243-5 5-5s5 2.243 5 5s-2.243 5-5 5\"/>"
},
"camera-movie": {
"body": "<path fill=\"currentColor\" d=\"M18 11c0-.959-.68-1.761-1.581-1.954C16.779 8.445 17 7.75 17 7c0-2.206-1.794-4-4-4c-1.516 0-2.822.857-3.5 2.104C8.822 3.857 7.516 3 6 3C3.794 3 2 4.794 2 7c0 .902.312 1.726.817 2.396A2 2 0 0 0 2 11v8c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2v-2.637l4 2v-7l-4 2zm-5-6c1.103 0 2 .897 2 2s-.897 2-2 2s-2-.897-2-2s.897-2 2-2M6 5c1.103 0 2 .897 2 2s-.897 2-2 2s-2-.897-2-2s.897-2 2-2\"/>"
},
"camera-off": {
"body": "<path fill=\"currentColor\" d=\"M4 20h11.879l-3.083-3.083A5 5 0 0 1 12 17c-2.71 0-5-2.29-5-5c0-.271.039-.535.083-.796L2.144 6.265C2.054 6.493 2 6.74 2 7v11c0 1.103.897 2 2 2M20 5h-2.586l-2.707-2.707A1 1 0 0 0 14 2h-4a1 1 0 0 0-.707.293L6.586 5h-.172L3.707 2.293L2.293 3.707l18 18l1.414-1.414l-.626-.626A1.98 1.98 0 0 0 22 18V7c0-1.103-.897-2-2-2m-5.312 8.274A2.86 2.86 0 0 0 15 12c0-1.626-1.374-3-3-3c-.456 0-.884.12-1.274.312l-1.46-1.46A4.9 4.9 0 0 1 12 7c2.71 0 5 2.29 5 5a4.9 4.9 0 0 1-.852 2.734z\"/>"
},
"camera-plus": {
"body": "<path fill=\"currentColor\" d=\"M20 5h-2.586l-2.707-2.707A1 1 0 0 0 14 2h-4a1 1 0 0 0-.707.293L6.586 5H4c-1.103 0-2 .897-2 2v11c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V7c0-1.103-.897-2-2-2m-8 12c-2.71 0-5-2.29-5-5s2.29-5 5-5s5 2.289 5 5s-2.29 5-5 5\"/><path fill=\"currentColor\" d=\"M13 9h-2v2H9v2h2v2h2v-2h2v-2h-2z\"/>"
},
"capsule": {
"body": "<path fill=\"currentColor\" d=\"M8.434 20.566c1.335 0 2.591-.52 3.535-1.464l7.134-7.133a5.01 5.01 0 0 0-.001-7.072a4.97 4.97 0 0 0-3.536-1.463c-1.335 0-2.59.52-3.534 1.464l-7.134 7.133a5.01 5.01 0 0 0-.001 7.072a4.97 4.97 0 0 0 3.537 1.463m5.011-14.254a2.98 2.98 0 0 1 2.12-.878c.802 0 1.556.312 2.122.878a3.004 3.004 0 0 1 .001 4.243l-2.893 2.892l-4.242-4.244z\"/>"
},
"captions": {
"body": "<path fill=\"currentColor\" d=\"M20 4H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2m-9 6H8v4h3v2H8c-1.103 0-2-.897-2-2v-4c0-1.103.897-2 2-2h3zm7 0h-3v4h3v2h-3c-1.103 0-2-.897-2-2v-4c0-1.103.897-2 2-2h3z\"/>"
},
"car": {
"body": "<path fill=\"currentColor\" d=\"m20.772 10.155l-1.368-4.104A2.995 2.995 0 0 0 16.559 4H7.441a2.995 2.995 0 0 0-2.845 2.051l-1.368 4.104A2 2 0 0 0 2 12v5c0 .738.404 1.376 1 1.723V21a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-2h12v2a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-2.277A1.99 1.99 0 0 0 22 17v-5a2 2 0 0 0-1.228-1.845M7.441 6h9.117c.431 0 .813.274.949.684L18.613 10H5.387l1.105-3.316A1 1 0 0 1 7.441 6M5.5 16a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 5.5 16m13 0a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 18.5 16\"/>"
},
"car-battery": {
"body": "<path fill=\"currentColor\" d=\"M20 6H4c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V8c0-1.103-.897-2-2-2M9 14H4v-2h5zm11 0h-2v2h-2v-2h-2v-2h2v-2h2v2h2zM4 3h4v2H4zm12 0h4v2h-4z\"/>"
},
"car-crash": {
"body": "<path fill=\"currentColor\" d=\"M2.634 17.918a1.77 1.77 0 0 0 1.201 1.291l.18.791H4v2h16v-2H6.683a.8.8 0 0 0-.007-.278l-.196-.863l10.357-2.356l.196.863a.886.886 0 0 0 1.06.667l.863-.197a.885.885 0 0 0 .667-1.06l-.251-1.103c.446-.416.67-1.046.525-1.683l-.59-2.59a1.76 1.76 0 0 0-1.262-1.307l-2.049-3.378a2.77 2.77 0 0 0-2.982-1.263l-7.868 1.79a2.77 2.77 0 0 0-2.144 2.43l-.387 3.932a1.76 1.76 0 0 0-.57 1.724zm3.02-.688a1.327 1.327 0 1 1-.59-2.589a1.327 1.327 0 0 1 .59 2.589m11.222-2.552a1.328 1.328 0 1 1-.59-2.587a1.328 1.328 0 0 1 .59 2.587M5.589 9.192l7.869-1.791a.77.77 0 0 1 .83.351l1.585 2.613l-.566.129l-10.046 2.287l-.568.129l.299-3.042a.77.77 0 0 1 .597-.676M18.405 4L17 2l-.5 3L19 9l3 1l-2-2.539l2-.933l-2-.933L22 2z\"/>"
},
"car-garage": {
"body": "<path fill=\"currentColor\" d=\"M3 19.723V21a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h12v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1.277A1.99 1.99 0 0 0 22 18v-3c0-.831-.507-1.542-1.228-1.845l-1.368-4.104A2.995 2.995 0 0 0 16.559 7H7.441a2.995 2.995 0 0 0-2.845 2.051l-1.368 4.104A2 2 0 0 0 2 15v3c0 .738.404 1.376 1 1.723M5.5 18a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 5.5 18m13 0a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 18.5 18M7.441 9h9.117a1 1 0 0 1 .949.684L18.613 13H5.387l1.105-3.316c.137-.409.519-.684.949-.684\"/><path fill=\"currentColor\" d=\"M22 7.388V5.279l-9.684-3.228a1 1 0 0 0-.658.009L2 5.572V7.7l10.015-3.642z\"/>"
},
"car-mechanic": {
"body": "<path fill=\"currentColor\" d=\"m20.772 13.155l-1.368-4.104A2.995 2.995 0 0 0 16.559 7H7.441a2.995 2.995 0 0 0-2.845 2.051l-1.368 4.104A2 2 0 0 0 2 15v3c0 .738.404 1.376 1 1.723V21a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h12v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1.277A1.99 1.99 0 0 0 22 18v-3c0-.831-.507-1.542-1.228-1.845M7.441 9h9.117a1 1 0 0 1 .949.684L18.613 13H5.387l1.105-3.316c.137-.409.519-.684.949-.684M5.5 18a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 5.5 18m13 0a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 18.5 18M5.277 5c.347.595.985 1 1.723 1s1.376-.405 1.723-1h6.555c.346.595.984 1 1.722 1s1.376-.405 1.723-1H17V3h1.723c-.347-.595-.985-1-1.723-1s-1.376.405-1.723 1H8.723C8.376 2.405 7.738 2 7 2s-1.376.405-1.723 1H7v2z\"/>"
},
"car-wash": {
"body": "<path fill=\"currentColor\" d=\"m20.772 13.155l-1.368-4.104A2.995 2.995 0 0 0 16.559 7H7.441a2.995 2.995 0 0 0-2.845 2.051l-1.368 4.104A2 2 0 0 0 2 15v3c0 .738.404 1.376 1 1.723V21a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h12v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1.277A1.99 1.99 0 0 0 22 18v-3c0-.831-.507-1.542-1.228-1.845M7.441 9h9.117a1 1 0 0 1 .949.684L18.613 13H5.387l1.105-3.316c.137-.409.519-.684.949-.684M5.5 18a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 5.5 18m13 0a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 18.5 18M9 4.378c.005-1.088-1.037-2.051-1.387-2.344a.176.176 0 0 0-.228 0C7.033 2.325 5.995 3.271 6 4.377C6 5.272 6.673 6 7.5 6S9 5.272 9 4.378m4.5 0c.005-1.088-1.037-2.052-1.387-2.344a.176.176 0 0 0-.228 0c-.353.291-1.391 1.238-1.386 2.344C10.5 5.272 11.173 6 12 6s1.5-.728 1.5-1.622m4.5 0c.005-1.088-1.037-2.052-1.387-2.344a.176.176 0 0 0-.228 0c-.352.291-1.39 1.237-1.385 2.343C15 5.272 15.673 6 16.5 6S18 5.272 18 4.378\"/>"
},
"card": {
"body": "<path fill=\"currentColor\" d=\"M18 17c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H6c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2zM4 19h16v2H4z\"/>"
},
"caret-down-circle": {
"body": "<path fill=\"currentColor\" d=\"M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.515 2 12 2m0 14l-5-6h10z\"/>"
},
"caret-down-square": {
"body": "<path fill=\"currentColor\" d=\"M5 21h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2m12-11l-5 6l-5-6z\"/>"
},
"caret-left-circle": {
"body": "<path fill=\"currentColor\" d=\"M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m2 15l-6-5l6-5z\"/>"
},
"caret-left-square": {
"body": "<path fill=\"currentColor\" d=\"M5 21h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2m9-14v10l-6-5z\"/>"
},
"caret-right-circle": {
"body": "<path fill=\"currentColor\" d=\"M12 22c5.514 0 10-4.486 10-10S17.514 2 12 2S2 6.486 2 12s4.486 10 10 10M10 7l6 5l-6 5z\"/>"
},
"caret-right-square": {
"body": "<path fill=\"currentColor\" d=\"M5 21h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2m5-14l6 5l-6 5z\"/>"
},
"caret-up-circle": {
"body": "<path fill=\"currentColor\" d=\"M12 2C6.485 2 2 6.486 2 12s4.485 10 10 10s10-4.486 10-10S17.514 2 12 2M7 14l5-6l5 6z\"/>"
},
"caret-up-square": {
"body": "<path fill=\"currentColor\" d=\"M5 21h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2m7-13l5 6H7z\"/>"
},
"carousel": {
"body": "<path fill=\"currentColor\" d=\"M16 3H8c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h8c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M2 7v10c0 1.103.897 2 2 2V5c-1.103 0-2 .897-2 2m18-2v14c1.103 0 2-.897 2-2V7c0-1.103-.897-2-2-2\"/>"
},
"cart": {
"body": "<path fill=\"currentColor\" d=\"M21.822 7.431A1 1 0 0 0 21 7H7.333L6.179 4.23A1.99 1.99 0 0 0 4.333 3H2v2h2.333l4.744 11.385A1 1 0 0 0 10 17h8c.417 0 .79-.259.937-.648l3-8a1 1 0 0 0-.115-.921\"/><circle cx=\"10.5\" cy=\"19.5\" r=\"1.5\" fill=\"currentColor\"/><circle cx=\"17.5\" cy=\"19.5\" r=\"1.5\" fill=\"currentColor\"/>"
},
"cart-add": {
"body": "<circle cx=\"10.5\" cy=\"19.5\" r=\"1.5\" fill=\"currentColor\"/><circle cx=\"17.5\" cy=\"19.5\" r=\"1.5\" fill=\"currentColor\"/><path fill=\"currentColor\" d=\"M21 7H7.334L6.18 4.23A1.995 1.995 0 0 0 4.333 3H2v2h2.334l4.743 11.385c.155.372.52.615.923.615h8c.417 0 .79-.259.937-.648l3-8A1.003 1.003 0 0 0 21 7m-4 6h-2v2h-2v-2h-2v-2h2V9h2v2h2z\"/>"
},
"cart-alt": {
"body": "<path fill=\"currentColor\" d=\"M21 4H2v2h2.3l3.521 9.683A2 2 0 0 0 9.7 17H18v-2H9.7l-.728-2H18c.4 0 .762-.238.919-.606l3-7A.998.998 0 0 0 21 4\"/><circle cx=\"10.5\" cy=\"19.5\" r=\"1.5\" fill=\"currentColor\"/><circle cx=\"16.5\" cy=\"19.5\" r=\"1.5\" fill=\"currentColor\"/>"
},
"cart-download": {
"body": "<circle cx=\"10.5\" cy=\"19.5\" r=\"1.5\" fill=\"currentColor\"/><circle cx=\"17.5\" cy=\"19.5\" r=\"1.5\" fill=\"currentColor\"/><path fill=\"currentColor\" d=\"M21 7H7.334L6.18 4.23A1.995 1.995 0 0 0 4.333 3H2v2h2.334l4.743 11.385c.155.372.52.615.923.615h8c.417 0 .79-.259.937-.648l3-8A1.003 1.003 0 0 0 21 7m-7 8l-3-3h2V9h2v3h2z\"/>"
},
"castle": {
"body": "<path fill=\"currentColor\" d=\"M20 11h-2V6h1V2h-2v2h-1V2h-2v2h-1V2h-2v2h-1V2H8v2H7V2H5v4h1v5H4V9H2v12h7v-5a3 3 0 0 1 6 0v5h7V9h-2zm-10-1H8V7h2zm6 0h-2V7h2z\"/>"
},
"cat": {
"body": "<path fill=\"currentColor\" d=\"M17 14a5 5 0 0 0 2.71-.81L20 13a3 3 0 0 0 .45-.37l.21-.2a4.5 4.5 0 0 0 .48-.58l.06-.08a4.3 4.3 0 0 0 .41-.76a2 2 0 0 0 .09-.23a4 4 0 0 0 .2-.63l.06-.25A5.5 5.5 0 0 0 22 9V2l-3 3h-4l-3-3v7a5 5 0 0 0 5 5m2-7a1 1 0 1 1-1 1a1 1 0 0 1 1-1m-4 0a1 1 0 1 1-1 1a1 1 0 0 1 1-1\"/><path fill=\"currentColor\" d=\"M11 22v-5H8v5H5V11.9a3.49 3.49 0 0 1-2.48-1.64A3.6 3.6 0 0 1 2 8.5A3.65 3.65 0 0 1 6 5a1.89 1.89 0 0 0 2-2a1 1 0 0 1 1-1a1 1 0 0 1 1 1a3.89 3.89 0 0 1-4 4C4.19 7 4 8.16 4 8.51S4.18 10 6 10h5.09A6 6 0 0 0 19 14.65V22h-3v-5h-2v5z\"/>"
},
"category": {
"body": "<path fill=\"currentColor\" d=\"M4 11h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1m10 0h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1M4 21h6a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1m13 0c2.206 0 4-1.794 4-4s-1.794-4-4-4s-4 1.794-4 4s1.794 4 4 4\"/>"
},
"category-alt": {
"body": "<path fill=\"currentColor\" d=\"M10 3H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1m10 10h-6a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1M17 3c-2.206 0-4 1.794-4 4s1.794 4 4 4s4-1.794 4-4s-1.794-4-4-4M7 13c-2.206 0-4 1.794-4 4s1.794 4 4 4s4-1.794 4-4s-1.794-4-4-4\"/>"
},
"cctv": {
"body": "<path fill=\"currentColor\" d=\"M18.618 7.462L6.403 2.085a1 1 0 0 0-.77-.016a1 1 0 0 0-.552.537l-3 7a1 1 0 0 0 .525 1.313L9.563 13.9L8.323 17H4v-3H2v8h2v-3h4.323c.823 0 1.552-.494 1.856-1.258l1.222-3.054l3.419 1.465a1 1 0 0 0 1.311-.518l3-6.857a1 1 0 0 0-.513-1.316m1.312 8.91l-1.858-.742l1.998-5l1.858.741z\"/>"
},
"certification": {
"body": "<path fill=\"currentColor\" d=\"M2.047 14.667a1 1 0 0 0 .466.607l1.909 1.104v2.199a1 1 0 0 0 1 1h2.199l1.104 1.91a1 1 0 0 0 1.366.366L12 20.75l1.91 1.104a1 1 0 0 0 1.366-.366l1.103-1.909h2.199a1 1 0 0 0 1-1V16.38l1.909-1.104a1 1 0 0 0 .366-1.366L20.75 12l1.104-1.909a1 1 0 0 0-.366-1.366l-1.909-1.104V5.422a1 1 0 0 0-1-1H16.38l-1.103-1.909a1 1 0 0 0-.607-.466a1 1 0 0 0-.759.1L12 3.25l-1.909-1.104a1 1 0 0 0-1.366.365l-1.104 1.91H5.422a1 1 0 0 0-1 1V7.62L2.513 8.725a1 1 0 0 0-.365 1.366L3.251 12l-1.104 1.909a1 1 0 0 0-.1.758\"/>"
},
"chalkboard": {
"body": "<path fill=\"currentColor\" d=\"M20 4H4c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h4l-1.8 2.4l1.6 1.2l2.7-3.6h3l2.7 3.6l1.6-1.2L16 18h4c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2M5 13h4v2H5z\"/>"
},
"chart": {
"body": "<path fill=\"currentColor\" d=\"M19 21c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2zM9.553 9.658l4 2l1.553-3.105l1.789.895l-2.447 4.895l-4-2l-1.553 3.105l-1.789-.895z\"/>"
},
"chat": {
"body": "<path fill=\"currentColor\" d=\"M4 18h2v4.081L11.101 18H16c1.103 0 2-.897 2-2V8c0-1.103-.897-2-2-2H4c-1.103 0-2 .897-2 2v8c0 1.103.897 2 2 2\"/><path fill=\"currentColor\" d=\"M20 2H8c-1.103 0-2 .897-2 2h12c1.103 0 2 .897 2 2v8c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2\"/>"
},
"check-circle": {
"body": "<path fill=\"currentColor\" d=\"M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m-1.999 14.413l-3.713-3.705L7.7 11.292l2.299 2.295l5.294-5.294l1.414 1.414z\"/>"
},
"check-shield": {
"body": "<path fill=\"currentColor\" d=\"M11.488 21.754c.294.157.663.156.957-.001c8.012-4.304 8.581-12.713 8.574-15.104a.99.99 0 0 0-.596-.903l-8.05-3.566a1 1 0 0 0-.813.001L3.566 5.747a.99.99 0 0 0-.592.892c-.034 2.379.445 10.806 8.514 15.115M8.674 10.293l2.293 2.293l4.293-4.293l1.414 1.414l-5.707 5.707l-3.707-3.707z\"/>"
},
"check-square": {
"body": "<path fill=\"currentColor\" d=\"M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2m-7.933 13.481l-3.774-3.774l1.414-1.414l2.226 2.226l4.299-5.159l1.537 1.28z\"/>"
},
"checkbox": {
"body": "<path fill=\"currentColor\" d=\"M7 19h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2\"/>"
},
"checkbox-checked": {
"body": "<path fill=\"currentColor\" d=\"M7 5a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2zm4 10.414l-2.707-2.707l1.414-1.414L11 12.586l3.793-3.793l1.414 1.414z\"/>"
},
"checkbox-minus": {
"body": "<path fill=\"currentColor\" d=\"M17 5H7a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2m-1 8H8v-2h8z\"/>"
},
"cheese": {
"body": "<path fill=\"currentColor\" d=\"M15.16 2a1 1 0 0 0-.66.13l-12 7a.6.6 0 0 0-.13.1l-.1.08a1.2 1.2 0 0 0-.17.26a.84.84 0 0 0-.1.43v10a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V10a8.08 8.08 0 0 0-6.84-8m0 2.05A6.07 6.07 0 0 1 19.93 9H6.7zM6.5 18A1.5 1.5 0 1 1 8 16.5A1.5 1.5 0 0 1 6.5 18m5-3a1.5 1.5 0 1 1 1.5-1.5a1.5 1.5 0 0 1-1.5 1.5m5.5 3a2 2 0 1 1 2-2a2 2 0 0 1-2 2\"/>"
},
"chess": {
"body": "<path fill=\"currentColor\" d=\"M21 2H3a1 1 0 0 0-1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1m-1 6h-4v4h4v4h-4v4h-4v-4H8v4H4v-4h4v-4H4V8h4V4h4v4h4V4h4z\"/><path fill=\"currentColor\" d=\"M8 8h4v4H8zm4 4h4v4h-4z\"/>"
},
"chevron-down": {
"body": "<path fill=\"currentColor\" d=\"M16.939 7.939L12 12.879l-4.939-4.94l-2.122 2.122L12 17.121l7.061-7.06z\"/>"
},
"chevron-down-circle": {
"body": "<path fill=\"currentColor\" d=\"M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 14.414l-5.707-5.707l1.414-1.414L12 13.586l4.293-4.293l1.414 1.414z\"/>"
},
"chevron-down-square": {
"body": "<path fill=\"currentColor\" d=\"M5 21h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2M7.707 9.293L12 13.586l4.293-4.293l1.414 1.414L12 16.414l-5.707-5.707z\"/>"
},
"chevron-left": {
"body": "<path fill=\"currentColor\" d=\"M13.939 4.939L6.879 12l7.06 7.061l2.122-2.122L11.121 12l4.94-4.939z\"/>"
},
"chevron-left-circle": {
"body": "<path fill=\"currentColor\" d=\"M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m2.707 14.293l-1.414 1.414L7.586 12l5.707-5.707l1.414 1.414L10.414 12z\"/>"
},
"chevron-left-square": {
"body": "<path fill=\"currentColor\" d=\"M5 3c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2zm9.707 13.293l-1.414 1.414L7.586 12l5.707-5.707l1.414 1.414L10.414 12z\"/>"
},
"chevron-right": {
"body": "<path fill=\"currentColor\" d=\"M10.061 19.061L17.121 12l-7.06-7.061l-2.122 2.122L12.879 12l-4.94 4.939z\"/>"
},
"chevron-right-circle": {
"body": "<path fill=\"currentColor\" d=\"M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m-1.293 15.707l-1.414-1.414L13.586 12L9.293 7.707l1.414-1.414L16.414 12z\"/>"
},
"chevron-right-square": {
"body": "<path fill=\"currentColor\" d=\"M3 5v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2m6.293 2.707l1.414-1.414L16.414 12l-5.707 5.707l-1.414-1.414L13.586 12z\"/>"
},
"chevron-up": {
"body": "<path fill=\"currentColor\" d=\"m12 6.879l-7.061 7.06l2.122 2.122L12 11.121l4.939 4.94l2.122-2.122z\"/>"
},
"chevron-up-circle": {
"body": "<path fill=\"currentColor\" d=\"M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m4.293 12.707L12 10.414l-4.293 4.293l-1.414-1.414L12 7.586l5.707 5.707z\"/>"
},
"chevron-up-square": {
"body": "<path fill=\"currentColor\" d=\"M5 21h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2m7-13.414l5.707 5.707l-1.414 1.414L12 10.414l-4.293 4.293l-1.414-1.414z\"/>"
},
"chevrons-down": {
"body": "<path fill=\"currentColor\" d=\"M16.939 10.939L12 15.879l-4.939-4.94l-2.122 2.122L12 20.121l7.061-7.06z\"/><path fill=\"currentColor\" d=\"M16.939 3.939L12 8.879l-4.939-4.94l-2.122 2.122L12 13.121l7.061-7.06z\"/>"
},
"chevrons-left": {
"body": "<path fill=\"currentColor\" d=\"m8.121 12l4.94-4.939l-2.122-2.122L3.879 12l7.06 7.061l2.122-2.122z\"/><path fill=\"currentColor\" d=\"M17.939 4.939L10.879 12l7.06 7.061l2.122-2.122L15.121 12l4.94-4.939z\"/>"
},
"chevrons-right": {
"body": "<path fill=\"currentColor\" d=\"m13.061 4.939l-2.122 2.122L15.879 12l-4.94 4.939l2.122 2.122L20.121 12z\"/><path fill=\"currentColor\" d=\"M6.061 19.061L13.121 12l-7.06-7.061l-2.122 2.122L8.879 12l-4.94 4.939z\"/>"
},
"chevrons-up": {
"body": "<path fill=\"currentColor\" d=\"m12 3.879l-7.061 7.06l2.122 2.122L12 8.121l4.939 4.94l2.122-2.122z\"/><path fill=\"currentColor\" d=\"m4.939 17.939l2.122 2.122L12 15.121l4.939 4.94l2.122-2.122L12 10.879z\"/>"
},
"chip": {
"body": "<path fill=\"currentColor\" d=\"M19 7a2 2 0 0 0-2-2h-1V2h-2v3h-4V2H8v3H7a2 2 0 0 0-2 2v1H2v2h3v4H2v2h3v1a2 2 0 0 0 2 2h1v3h2v-3h4v3h2v-3h1a2 2 0 0 0 2-2v-1h3v-2h-3v-4h3V8h-3zm-4 8H9V9h6z\"/>"
},
"church": {
"body": "<path fill=\"currentColor\" d=\"M10 22v-4a2 2 0 0 1 4 0v4h4V12a1 1 0 0 0-.485-.857L13 8.434V6h2V4h-2V2h-2v2H9v2h2v2.434l-4.515 2.709A1 1 0 0 0 6 12v10zm-7 0h2v-8.118l-2.447 1.224A1 1 0 0 0 2 16v5a1 1 0 0 0 1 1m18.447-6.895L19 13.882V22h2a1 1 0 0 0 1-1v-5c0-.379-.214-.725-.553-.895\"/>"
},
"circle": {
"body": "<path fill=\"currentColor\" d=\"M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2\"/>"
},
"circle-half": {
"body": "<path fill=\"currentColor\" d=\"M12 2h-1v20h1a10 10 0 0 0 0-20\"/>"
},
"circle-quarter": {
"body": "<path fill=\"currentColor\" d=\"M12 2h-1v11h11v-1A10 10 0 0 0 12 2\"/>"
},
"circle-three-quarter": {
"body": "<path fill=\"currentColor\" d=\"M12 2h-1v9H2v1a10 10 0 0 0 17.07 7.07A10 10 0 0 0 12 2\"/>"
},
"city": {
"body": "<path fill=\"currentColor\" d=\"M21 6h-4V3a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7H3a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1M6 18H4v-2h2zm0-4H4v-2h2zm5 4H9v-2h2zm0-4H9v-2h2zm0-4H9V8h2zm0-4H9V4h2zm4 12h-2v-2h2zm0-4h-2v-2h2zm0-4h-2V8h2zm0-4h-2V4h2zm5 12h-2v-2h2zm0-4h-2v-2h2zm0-4h-2V8h2z\"/>"
},
"clinic": {
"body": "<path fill=\"currentColor\" d=\"m21.743 12.331l-9-10c-.379-.422-1.107-.422-1.486 0l-9 10a1 1 0 0 0-.17 1.076c.16.361.518.593.913.593h2v7a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-7h2a.998.998 0 0 0 .743-1.669M16 15h-3v3h-2v-3H8v-2h3v-3h2v3h3z\"/>"
},
"cloud": {
"body": "<path fill=\"currentColor\" d=\"M18.944 11.112C18.507 7.67 15.56 5 12 5C9.244 5 6.85 6.611 5.757 9.15C3.609 9.792 2 11.82 2 14c0 2.757 2.243 5 5 5h11c2.206 0 4-1.794 4-4a4.01 4.01 0 0 0-3.056-3.888\"/>"
},
"cloud-download": {
"body": "<path fill=\"currentColor\" d=\"M18.944 11.112C18.507 7.67 15.56 5 12 5C9.244 5 6.85 6.61 5.757 9.149C3.609 9.792 2 11.82 2 14c0 2.657 2.089 4.815 4.708 4.971V19H17.99v-.003L18 19c2.206 0 4-1.794 4-4a4.01 4.01 0 0 0-3.056-3.888M8 12h3V9h2v3h3l-4 5z\"/>"
},
"cloud-lightning": {
"body": "<path fill=\"currentColor\" d=\"M18.944 10.112C18.507 6.67 15.56 4 12 4C9.244 4 6.85 5.611 5.757 8.15C3.609 8.792 2 10.82 2 13c0 2.757 2.243 5 5 5h1.333L10 13h4l-2 3h2.975l-1.325 2H18c2.206 0 4-1.794 4-4a4.01 4.01 0 0 0-3.056-3.888M11 18H8.333L8 19h3v3l2.649-4H11.5z\"/>"
},
"cloud-rain": {
"body": "<path fill=\"currentColor\" d=\"M18.944 10.112C18.507 6.67 15.56 4 12 4C9.244 4 6.85 5.611 5.757 8.15C3.609 8.792 2 10.82 2 13c0 2.757 2.243 5 5 5h1v3h2v-3h4v3h2v-3h2c2.206 0 4-1.794 4-4a4.01 4.01 0 0 0-3.056-3.888\"/><path fill=\"currentColor\" d=\"M11 19h2v3h-2z\"/>"
},
"cloud-upload": {
"body": "<path fill=\"currentColor\" d=\"M18.944 11.112C18.507 7.67 15.56 5 12 5C9.244 5 6.85 6.611 5.757 9.15C3.609 9.792 2 11.82 2 14c0 2.757 2.243 5 5 5h11c2.206 0 4-1.794 4-4a4.01 4.01 0 0 0-3.056-3.888M13 14v3h-2v-3H8l4-5l4 5z\"/>"
},
"coffee": {
"body": "<path fill=\"currentColor\" d=\"M5 2h2v3H5zm4 0h2v3H9zm4 0h2v3h-2zm6 7h-2V8a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v10a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3h2c1.103 0 2-.897 2-2v-5c0-1.103-.897-2-2-2m-2 7v-5h2l.002 5z\"/>"
},
"coffee-alt": {
"body": "<path fill=\"currentColor\" d=\"M19 5h-1V4a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v9a4 4 0 0 0 4 4h6c1.858 0 3.411-1.279 3.858-3H19a3 3 0 0 0 3-3V8a3 3 0 0 0-3-3m1 6a1 1 0 0 1-1 1h-1V7h1a1 1 0 0 1 1 1zm-2 8H3c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3z\"/>"
},
"coffee-bean": {
"body": "<path fill=\"currentColor\" d=\"M6 18a6.06 6.06 0 0 0 5.17-6a7.62 7.62 0 0 1 6.52-7.51l2.59-.37c-.07-.08-.13-.16-.21-.24c-3.26-3.26-9.52-2.28-14 2.18C2.28 9.9 1 15 2.76 18.46z\"/><path fill=\"currentColor\" d=\"M12.73 12a7.63 7.63 0 0 1-6.51 7.52l-2.46.35l.15.17c3.26 3.26 9.52 2.29 14-2.17C21.68 14.11 23 9 21.25 5.59l-3.34.48A6.05 6.05 0 0 0 12.73 12\"/>"
},
"coffee-togo": {
"body": "<path fill=\"currentColor\" d=\"m18.5 5l-1.224-2.447A1 1 0 0 0 16.382 2H7.618a1 1 0 0 0-.894.553L5.5 5H3v2h18V5zM6.734 21.142c.071.492.493.858.991.858h8.551a1 1 0 0 0 .99-.858L19 9H5zM16 12l-.714 5H8.714L8 12z\"/>"
},
"cog": {
"body": "<path fill=\"currentColor\" d=\"m2.344 15.271l2 3.46a1 1 0 0 0 1.366.365l1.396-.806c.58.457 1.221.832 1.895 1.112V21a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-1.598a8 8 0 0 0 1.895-1.112l1.396.806c.477.275 1.091.11 1.366-.365l2-3.46a1.004 1.004 0 0 0-.365-1.366l-1.372-.793a7.7 7.7 0 0 0-.002-2.224l1.372-.793c.476-.275.641-.89.365-1.366l-2-3.46a1 1 0 0 0-1.366-.365l-1.396.806A8 8 0 0 0 15 4.598V3a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v1.598A8 8 0 0 0 7.105 5.71L5.71 4.904a1 1 0 0 0-1.366.365l-2 3.46a1.004 1.004 0 0 0 .365 1.366l1.372.793a7.7 7.7 0 0 0 0 2.224l-1.372.793c-.476.275-.641.89-.365 1.366M12 8c2.206 0 4 1.794 4 4s-1.794 4-4 4s-4-1.794-4-4s1.794-4 4-4\"/>"
},
"coin": {
"body": "<path fill=\"currentColor\" d=\"M12 5C7.031 5 2 6.546 2 9.5S7.031 14 12 14s10-1.546 10-4.5S16.97 5 12 5m-5 9.938v3c1.237.299 2.605.482 4 .541v-3a21 21 0 0 1-4-.541m6 .54v3a21 21 0 0 0 4-.541v-3a21 21 0 0 1-4 .541m6-1.181v3c1.801-.755 3-1.857 3-3.297v-3c0 1.44-1.199 2.542-3 3.297m-14 3v-3C3.2 13.542 2 12.439 2 11v3c0 1.439 1.2 2.542 3 3.297\"/>"
},
"coin-stack": {
"body": "<path fill=\"currentColor\" d=\"M12 10c3.976 0 8-1.374 8-4s-4.024-4-8-4s-8 1.374-8 4s4.024 4 8 4\"/><path fill=\"currentColor\" d=\"M4 10c0 2.626 4.024 4 8 4s8-1.374 8-4V8c0 2.626-4.024 4-8 4s-8-1.374-8-4z\"/><path fill=\"currentColor\" d=\"M4 14c0 2.626 4.024 4 8 4s8-1.374 8-4v-2c0 2.626-4.024 4-8 4s-8-1.374-8-4z\"/><path fill=\"currentColor\" d=\"M4 18c0 2.626 4.024 4 8 4s8-1.374 8-4v-2c0 2.626-4.024 4-8 4s-8-1.374-8-4z\"/>"
},
"collection": {
"body": "<path fill=\"currentColor\" d=\"M19 10H5c-1.103 0-2 .897-2 2v8c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-8c0-1.103-.897-2-2-2M5 6h14v2H5zm2-4h10v2H7z\"/>"
},
"color": {
"body": "<path fill=\"currentColor\" d=\"M7.08 11.25A4.84 4.84 0 0 1 8 9.05L4.43 5.49A9.88 9.88 0 0 0 2 11.25zM9.05 8a4.84 4.84 0 0 1 2.2-.91V2a9.88 9.88 0 0 0-5.76 2.43zm3.7-6v5A4.84 4.84 0 0 1 15 8l3.56-3.56A9.88 9.88 0 0 0 12.75 2M8 15a4.84 4.84 0 0 1-.91-2.2H2a9.88 9.88 0 0 0 2.39 5.76zm3.25 1.92a4.84 4.84 0 0 1-2.2-.92l-3.56 3.57A9.88 9.88 0 0 0 11.25 22zM16 9.05a4.84 4.84 0 0 1 .91 2.2h5a9.88 9.88 0 0 0-2.39-5.76zM15 16a4.84 4.84 0 0 1-2.2.91v5a9.88 9.88 0 0 0 5.76-2.39zm1.92-3.25A4.84 4.84 0 0 1 16 15l3.56 3.56A9.88 9.88 0 0 0 22 12.75z\"/>"
},
"color-fill": {
"body": "<path fill=\"currentColor\" d=\"M20 14c-.092.064-2 2.083-2 3.5c0 1.494.949 2.448 2 2.5c.906.044 2-.891 2-2.5c0-1.5-1.908-3.436-2-3.5M9.586 20c.378.378.88.586 1.414.586s1.036-.208 1.414-.586l7-7l-.707-.707L11 4.586L8.707 2.293L7.293 3.707L9.586 6L4 11.586c-.378.378-.586.88-.586 1.414s.208 1.036.586 1.414zM11 7.414L16.586 13H5.414z\"/>"
},
"comment": {
"body": "<path fill=\"currentColor\" d=\"M20 2H4c-1.103 0-2 .897-2 2v18l4-4h14c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2\"/>"
},
"comment-add": {
"body": "<path fill=\"currentColor\" d=\"M20 2H4c-1.103 0-2 .897-2 2v18l4-4h14c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m-3 9h-4v4h-2v-4H7V9h4V5h2v4h4z\"/>"
},
"comment-check": {
"body": "<path fill=\"currentColor\" d=\"M20 2H4c-1.103 0-2 .897-2 2v18l4-4h14c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m-9 11.914l-3.707-3.707l1.414-1.414L11 11.086l4.793-4.793l1.414 1.414z\"/>"
},
"comment-detail": {
"body": "<path fill=\"currentColor\" d=\"M20 1.999H4c-1.103 0-2 .897-2 2v18l4-4h14c1.103 0 2-.897 2-2v-12c0-1.103-.897-2-2-2m-6 11H7v-2h7zm3-4H7v-2h10z\"/>"
},
"comment-dots": {
"body": "<path fill=\"currentColor\" d=\"M20 2H4c-1.103 0-2 .897-2 2v18l4-4h14c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2M9 12a2 2 0 1 1 .001-4.001A2 2 0 0 1 9 12m6 0a2 2 0 1 1 .001-4.001A2 2 0 0 1 15 12\"/>"
},
"comment-edit": {
"body": "<path fill=\"currentColor\" d=\"M20 2H4c-1.103 0-2 .897-2 2v18l4-4h14c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2M8.999 14.987H7v-1.999l5.53-5.522l1.998 1.999zm6.472-6.464l-1.999-1.999l1.524-1.523L16.995 7z\"/>"
},
"comment-error": {
"body": "<path fill=\"currentColor\" d=\"M20 2H4c-1.103 0-2 .897-2 2v18l4-4h14c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m-7 13h-2v-2h2zm0-4h-2V5h2z\"/>"
},
"comment-minus": {
"body": "<path fill=\"currentColor\" d=\"M20 2H4c-1.103 0-2 .897-2 2v18l4-4h14c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m-4 9H8V9h8z\"/>"
},
"comment-x": {
"body": "<path fill=\"currentColor\" d=\"M20 2H4c-1.103 0-2 .897-2 2v18l4-4h14c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m-3.294 11.543l-1.414 1.414l-3.293-3.292l-3.292 3.292l-1.414-1.414l3.292-3.292l-3.292-3.293l1.414-1.414l3.292 3.292l3.293-3.292l1.414 1.414l-3.292 3.293z\"/>"
},
"compass": {
"body": "<path fill=\"currentColor\" d=\"M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m3 13l-8 2l2-8l8-2z\"/><circle cx=\"12\" cy=\"12\" r=\"2\" fill=\"currentColor\"/>"
},
"component": {
"body": "<path fill=\"currentColor\" d=\"m3.553 18.895l4 2a1 1 0 0 0 .894 0L12 19.118l3.553 1.776a.99.99 0 0 0 .894.001l4-2c.339-.17.553-.516.553-.895v-5c0-.379-.214-.725-.553-.895L17 10.382V6c0-.379-.214-.725-.553-.895l-4-2a1 1 0 0 0-.895 0l-4 2C7.214 5.275 7 5.621 7 6v4.382l-3.447 1.724A1 1 0 0 0 3 13v5c0 .379.214.725.553.895M8 12.118l2.264 1.132l-2.913 1.457l-2.264-1.132zm4-2.5l3-1.5v2.264l-3 1.5zm6.264 3.632l-2.882 1.441l-2.264-1.132L16 12.118zM8 18.882l-.062-.031V16.65L11 15.118v2.264zm8 0v-2.264l3-1.5v2.264zM12 5.118l2.264 1.132l-2.882 1.441l-2.264-1.132z\"/>"
},
"confused": {
"body": "<path fill=\"currentColor\" d=\"M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m-5 8.5a1.5 1.5 0 1 1 3.001.001A1.5 1.5 0 0 1 7 10.5m1.124 6.492l-.248-1.984l8-1l.248 1.984zm7.369-5.006a1.494 1.494 0 1 1 .001-2.987a1.494 1.494 0 0 1-.001 2.987\"/>"
},
"contact": {
"body": "<path fill=\"currentColor\" d=\"M21 2H6a2 2 0 0 0-2 2v3H2v2h2v2H2v2h2v2H2v2h2v3a2 2 0 0 0 2 2h15a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1m-8 2.999c1.648 0 3 1.351 3 3A3.01 3.01 0 0 1 13 11c-1.647 0-3-1.353-3-3.001c0-1.649 1.353-3 3-3M19 18H7v-.75c0-2.219 2.705-4.5 6-4.5s6 2.281 6 4.5z\"/>"
},
"conversation": {
"body": "<path fill=\"currentColor\" d=\"M13 14h3.5c.827 0 1.5-.673 1.5-1.5v-9c0-.827-.673-1.5-1.5-1.5h-13C2.673 2 2 2.673 2 3.5V18l5.333-4zm-9-.1l.154-.016L4 14z\"/><path fill=\"currentColor\" d=\"M20.5 8H20v6.001c0 1.1-.893 1.993-1.99 1.999H8v.5c0 .827.673 1.5 1.5 1.5h7.167L22 22V9.5c0-.827-.673-1.5-1.5-1.5\"/>"
},
"cookie": {
"body": "<path fill=\"currentColor\" d=\"M21.598 11.064a1 1 0 0 0-.854-.172A3 3 0 0 1 20 11c-1.654 0-3-1.346-3.003-2.938c.005-.034.016-.134.017-.168a.998.998 0 0 0-1.254-1.006A3 3 0 0 1 15 7c-1.654 0-3-1.346-3-3c0-.217.031-.444.099-.716a1 1 0 0 0-1.067-1.236A9.956 9.956 0 0 0 2 12c0 5.514 4.486 10 10 10s10-4.486 10-10c0-.049-.003-.097-.007-.16a1 1 0 0 0-.395-.776M8.5 6a1.5 1.5 0 1 1 0 3a1.5 1.5 0 0 1 0-3m-2 8a1.5 1.5 0 1 1 0-3a1.5 1.5 0 0 1 0 3m3 4a1.5 1.5 0 1 1 0-3a1.5 1.5 0 0 1 0 3m2.5-6.5a1.5 1.5 0 1 1 3 0a1.5 1.5 0 0 1-3 0m3.5 6.5a1.5 1.5 0 1 1 0-3a1.5 1.5 0 0 1 0 3\"/>"
},
"cool": {
"body": "<path fill=\"currentColor\" d=\"M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m4.095 14.244a6 6 0 0 1-3.034 1.634a6.05 6.05 0 0 1-2.414 0a5.9 5.9 0 0 1-2.148-.903a6.1 6.1 0 0 1-1.621-1.622l1.658-1.117q.216.318.488.59a4 4 0 0 0 1.273.86q.366.154.749.232a4.1 4.1 0 0 0 1.616 0q.381-.079.75-.233c.234-.1.464-.224.679-.368q.313-.214.591-.489q.275-.274.489-.592l1.658 1.117c-.215.32-.462.62-.734.891M19 10a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2h-2a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V8h14z\"/>"
},
"copy": {
"body": "<path fill=\"currentColor\" d=\"M14 8H4c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h10c1.103 0 2-.897 2-2V10c0-1.103-.897-2-2-2\"/><path fill=\"currentColor\" d=\"M20 2H10a2 2 0 0 0-2 2v2h8a2 2 0 0 1 2 2v8h2a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2\"/>"
},
"copy-alt": {
"body": "<path fill=\"currentColor\" d=\"M20 2H10a2 2 0 0 0-2 2v2h8a2 2 0 0 1 2 2v8h2a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2\"/><path fill=\"currentColor\" d=\"M4 22h10c1.103 0 2-.897 2-2V10c0-1.103-.897-2-2-2H4c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2m2-10h6v2H6zm0 4h6v2H6z\"/>"
},
"copyright": {
"body": "<path fill=\"currentColor\" d=\"M12 2C6.579 2 2 6.58 2 12s4.579 10 10 10s10-4.58 10-10S17.421 2 12 2m0 13c.992 0 1.85-.265 2.293-.708l1.414 1.415C14.581 16.832 12.901 17 12 17c-2.757 0-5-2.243-5-5s2.243-5 5-5c.901 0 2.582.168 3.707 1.293l-1.414 1.414C13.851 9.264 12.993 9 12 9c-1.626 0-3 1.374-3 3s1.374 3 3 3\"/>"
},
"coupon": {
"body": "<path fill=\"currentColor\" d=\"M21 5H3a1 1 0 0 0-1 1v4h.893c.996 0 1.92.681 2.08 1.664A2 2 0 0 1 3 14H2v4a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-4h-1a2 2 0 0 1-1.973-2.336c.16-.983 1.084-1.664 2.08-1.664H22V6a1 1 0 0 0-1-1M11 17H9v-2h2zm0-4H9v-2h2zm0-4H9V7h2z\"/>"
},
"credit-card": {
"body": "<path fill=\"currentColor\" d=\"M20 4H4c-1.103 0-2 .897-2 2v2h20V6c0-1.103-.897-2-2-2M2 18c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2v-6H2zm3-3h6v2H5z\"/>"
},
"credit-card-alt": {
"body": "<path fill=\"currentColor\" d=\"M20 4H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2m-7.5 12a2.5 2.5 0 1 1 0-5a2.47 2.47 0 0 1 1.5.512c-.604.456-1 1.173-1 1.988s.396 1.532 1 1.988a2.47 2.47 0 0 1-1.5.512m4 0a2.5 2.5 0 1 1 0-5a2.5 2.5 0 0 1 0 5\"/>"
},
"credit-card-front": {
"body": "<path fill=\"currentColor\" d=\"M20 4H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2M5 8.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5zm6 7.5H5v-2h6zm8 0h-6v-2h6z\"/>"
},
"cricket-ball": {
"body": "<path fill=\"currentColor\" d=\"m3.67 16.26l.54.53l-.62.61a9 9 0 0 0 .84 1.11L18.51 4.42a11 11 0 0 0-1.1-.83l-.62.61l-.53-.53l.48-.48A10 10 0 0 0 3.2 16.74zM14.86 5.07l.53.53L14 7l-.53-.53zm-2.79 2.8l.52.53l-1.39 1.4l-.53-.53zm-2.8 2.8l.53.53l-1.4 1.39l-.53-.53zm-2.8 2.79L7 14l-1.4 1.4l-.53-.53zm.12 6.95l.62-.61l.53.53l-.48.48A10 10 0 0 0 20.8 7.26l-.47.48l-.54-.53l.62-.61a9 9 0 0 0-.84-1.11L5.49 19.58a11 11 0 0 0 1.1.83M18.4 8.61l.53.53l-1.4 1.4L17 10zm-2.8 2.8l.53.53l-1.4 1.39l-.53-.53zm-2.8 2.79l.53.53l-1.39 1.4l-.54-.53zM10 17l.53.53l-1.4 1.4l-.53-.53z\"/>"
},
"crop": {
"body": "<path fill=\"currentColor\" d=\"M19 7.5C19 6.121 17.879 5 16.5 5H8V2H5v3H2v3h14v14h3v-3h3v-3h-3z\"/><path fill=\"currentColor\" d=\"M8 10H5v6.5C5 17.879 6.121 19 7.5 19H14v-3H8z\"/>"
},
"crown": {
"body": "<path fill=\"currentColor\" d=\"m21 2l-5 5l-4-5l-4 5l-5-5v13h18zM5 21h14a2 2 0 0 0 2-2v-2H3v2a2 2 0 0 0 2 2\"/>"
},
"cube": {
"body": "<path fill=\"currentColor\" d=\"m21.406 6.086l-9-4a1 1 0 0 0-.813 0l-9 4c-.02.009-.034.024-.054.035c-.028.014-.058.023-.084.04c-.022.015-.039.034-.06.05a.9.9 0 0 0-.19.194q-.031.04-.059.081a1 1 0 0 0-.076.165c-.009.027-.023.052-.031.079A1 1 0 0 0 2 7v10c0 .396.232.753.594.914l9 4c.13.058.268.086.406.086a1 1 0 0 0 .402-.096l.004.01l9-4A1 1 0 0 0 22 17V7a1 1 0 0 0-.594-.914M12 4.095L18.538 7L12 9.905l-1.308-.581L5.463 7zm1 15.366V11.65l7-3.111v7.812z\"/>"
},
"cube-alt": {
"body": "<path fill=\"currentColor\" d=\"M17.895 3.553A1 1 0 0 0 17 3H7c-.379 0-.725.214-.895.553l-4 8a1 1 0 0 0 0 .895l4 8c.17.338.516.552.895.552h10c.379 0 .725-.214.895-.553l4-8a1 1 0 0 0 0-.895zM19.382 11h-7.764l-3-6h7.764zm-3 8H8.618l3-6h7.764z\"/>"
},
"cuboid": {
"body": "<path fill=\"currentColor\" d=\"M16.707 2.293A1 1 0 0 0 16 2H8c-.414 0-.785.255-.934.641l-5 13a1 1 0 0 0 .227 1.066l5 5A1 1 0 0 0 8 22h8c.414 0 .785-.255.934-.641l5-13a1 1 0 0 0-.227-1.066zM18.585 7h-5.171l-3-3h5.172zm-3.272 13h-6.23l4.583-11h5.878z\"/>"
},
"customize": {
"body": "<path fill=\"currentColor\" d=\"M10 3H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1m10 0h-6a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1M10 13H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1m8 1h-2v2h-2v2h2v2h2v-2h2v-2h-2z\"/>"
},
"cylinder": {
"body": "<path fill=\"currentColor\" d=\"M12 22c5.131 0 9-1.935 9-4.5V7c0-.051-.024-.097-.033-.146c.016-.117.033-.234.033-.354C21 3.935 17.131 2 12 2S3 3.935 3 6.5v11c0 2.565 3.869 4.5 9 4.5m0-18c4.273 0 7 1.48 7 2.5a.7.7 0 0 1-.025.158c-.004.01-.012.018-.015.027c-.274.848-2.29 1.98-5.496 2.253l-.05.003Q12.741 8.999 12 9C7.727 9 5 7.52 5 6.5S7.727 4 12 4\"/>"
},
"dashboard": {
"body": "<path fill=\"currentColor\" d=\"M4 13h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1m-1 7a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1zm10 0a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-7a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1zm1-10h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1\"/>"
},
"data": {
"body": "<path fill=\"currentColor\" d=\"M20 6c0-2.168-3.663-4-8-4S4 3.832 4 6v2c0 2.168 3.663 4 8 4s8-1.832 8-4zm-8 13c-4.337 0-8-1.832-8-4v3c0 2.168 3.663 4 8 4s8-1.832 8-4v-3c0 2.168-3.663 4-8 4\"/><path fill=\"currentColor\" d=\"M20 10c0 2.168-3.663 4-8 4s-8-1.832-8-4v3c0 2.168 3.663 4 8 4s8-1.832 8-4z\"/>"
},
"detail": {
"body": "<path fill=\"currentColor\" d=\"M20 3H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-9 14H5v-2h6zm8-4H5v-2h14zm0-4H5V7h14z\"/>"
},
"devices": {
"body": "<path fill=\"currentColor\" d=\"M20 3H7c-1.103 0-2 .897-2 2v2H4c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h6c1.103 0 2-.897 2-2h8c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M6 9h4l-.003 9H4V9zm6 8V9c0-1.103-.897-2-2-2H7V5h11v12z\"/>"
},
"diamond": {
"body": "<path fill=\"currentColor\" d=\"M16.445 3h-8.89c-.345 0-.666.178-.849.47L3.25 9h17.5l-3.456-5.53a1 1 0 0 0-.849-.47M11.26 21.186a1 1 0 0 0 1.48 0L22 11H2z\"/>"
},
"dice-1": {
"body": "<path fill=\"currentColor\" d=\"M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2m-7 10.5a1.5 1.5 0 1 1 0-3a1.5 1.5 0 0 1 0 3\"/>"
},
"dice-2": {
"body": "<path fill=\"currentColor\" d=\"M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M9.5 13.5a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 9.5 13.5m5 0a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 14.5 13.5\"/>"
},
"dice-3": {
"body": "<path fill=\"currentColor\" d=\"M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M8 9.5a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 8 9.5m4 4a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 12 13.5m4 4a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 16 17.5\"/>"
},
"dice-4": {
"body": "<path fill=\"currentColor\" d=\"M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M8 17.5a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 8 17.5m0-8a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 8 9.5m8 8a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 16 17.5m0-8a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 16 9.5\"/>"
},
"dice-5": {
"body": "<path fill=\"currentColor\" d=\"M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M8 17.5a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 8 17.5m0-8a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 8 9.5m4 4a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 12 13.5m4 4a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 16 17.5m0-8a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 16 9.5\"/>"
},
"dice-6": {
"body": "<path fill=\"currentColor\" d=\"M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M8 17.5a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 8 17.5m0-4a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 8 13.5m0-4a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 8 9.5m8 8a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 16 17.5m0-4a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 16 13.5m0-4a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 16 9.5\"/>"
},
"direction-left": {
"body": "<path fill=\"currentColor\" d=\"m21.707 11.294l-8.978-9a1 1 0 0 0-1.415-.002l-9.021 9a1 1 0 0 0 0 1.416l9.021 9c.39.389 1.026.388 1.415-.002l8.978-9a1 1 0 0 0 0-1.412M15 16h-2v-4h-3v2l-3-3l3-3v2h5z\"/>"
},
"direction-right": {
"body": "<path fill=\"currentColor\" d=\"m2.295 12.707l8.978 9c.389.39 1.025.391 1.414.002l9.021-9a1 1 0 0 0 0-1.416l-9.021-9a1 1 0 0 0-1.414.002l-8.978 9a1 1 0 0 0 0 1.412m6.707-2.706h5v-2l3 3l-3 3v-2h-3v4h-2z\"/>"
},
"directions": {
"body": "<path fill=\"currentColor\" d=\"M19 11h-6V8h6a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H5L2 5l3 3h6v3H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h6v5h2v-5h6l3-3z\"/>"
},
"disc": {
"body": "<path fill=\"currentColor\" d=\"M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 14c-2.206 0-4-1.794-4-4s1.794-4 4-4s4 1.794 4 4s-1.794 4-4 4\"/><circle cx=\"11.998\" cy=\"11.998\" r=\"2.002\" fill=\"currentColor\"/>"
},
"discount": {
"body": "<path fill=\"currentColor\" d=\"M21 5H3a1 1 0 0 0-1 1v4h.893c.996 0 1.92.681 2.08 1.664A2 2 0 0 1 3 14H2v4a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-4h-1a2 2 0 0 1-1.973-2.336c.16-.983 1.084-1.664 2.08-1.664H22V6a1 1 0 0 0-1-1M9 9a1 1 0 1 1 0 2a1 1 0 1 1 0-2m-.8 6.4l6-8l1.6 1.2l-6 8zM15 15a1 1 0 1 1 0-2a1 1 0 1 1 0 2\"/>"
},
"dish": {
"body": "<path fill=\"currentColor\" d=\"M21 15c0-4.625-3.507-8.441-8-8.941V4h-2v2.059c-4.493.5-8 4.316-8 8.941v2h18zM2 18h20v2H2z\"/>"
},
"dislike": {
"body": "<path fill=\"currentColor\" d=\"M20 3h-1v13h1a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2M4 16h7l-1.122 3.368A2 2 0 0 0 11.775 22H12l5-5.438V3H6l-3.937 8.649l-.063.293V14a2 2 0 0 0 2 2\"/>"
},
"dizzy": {
"body": "<path fill=\"currentColor\" d=\"M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2M8 12.414l-1.293 1.293l-1.414-1.414L6.586 11L5.293 9.707l1.414-1.414L8 9.586l1.293-1.293l1.414 1.414L9.414 11l1.293 1.293l-1.414 1.414zM14 18h-4v-2h4zm4.707-5.707l-1.414 1.414L16 12.414l-1.293 1.293l-1.414-1.414L14.586 11l-1.293-1.293l1.414-1.414L16 9.586l1.293-1.293l1.414 1.414L17.414 11z\"/>"
},
"dock-bottom": {
"body": "<path fill=\"currentColor\" d=\"M5 21h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2M19 5l.001 9H5V5z\"/>"
},
"dock-left": {
"body": "<path fill=\"currentColor\" d=\"M21 19V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2m-11 0V5h9l.002 14z\"/>"
},
"dock-right": {
"body": "<path fill=\"currentColor\" d=\"M21 5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2zM5 5h9v14H5z\"/>"
},
"dock-top": {
"body": "<path fill=\"currentColor\" d=\"M3 5v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2m2 14v-9h14.001l.001 9z\"/>"
},
"dog": {
"body": "<path fill=\"currentColor\" d=\"M21 6h-2l-1.27-1.27A2.5 2.5 0 0 0 16 4h-2.5A2.64 2.64 0 0 0 11 2v6.36a4.38 4.38 0 0 0 1.13 2.72a6.57 6.57 0 0 0 4.13 1.82l3.45-1.38a3 3 0 0 0 1.73-1.84L22 8.15a1 1 0 0 0 0-.31V7a1 1 0 0 0-1-1m-5 2a1 1 0 1 1 1-1a1 1 0 0 1-1 1\"/><path fill=\"currentColor\" d=\"M11.38 11.74A5.24 5.24 0 0 1 10.07 9H6a1.88 1.88 0 0 1-2-2a1 1 0 0 0-2 0a4.7 4.7 0 0 0 .48 2A3.6 3.6 0 0 0 4 10.53V22h3v-5h6v5h3v-8.13a7.35 7.35 0 0 1-4.62-2.13\"/>"
},
"dollar-circle": {
"body": "<path fill=\"currentColor\" d=\"M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m1 14.915V18h-2v-1.08c-2.339-.367-3-2.002-3-2.92h2c.011.143.159 1 2 1c1.38 0 2-.585 2-1c0-.324 0-1-2-1c-3.48 0-4-1.88-4-3c0-1.288 1.029-2.584 3-2.915V6.012h2v1.109c1.734.41 2.4 1.853 2.4 2.879h-1l-1 .018C13.386 9.638 13.185 9 12 9c-1.299 0-2 .516-2 1c0 .374 0 1 2 1c3.48 0 4 1.88 4 3c0 1.288-1.029 2.584-3 2.915\"/>"
},
"donate-blood": {
"body": "<path fill=\"currentColor\" d=\"M17.726 13.02L14 16H9v-1h4.065a.5.5 0 0 0 .416-.777l-.888-1.332A2 2 0 0 0 10.93 12H3a1 1 0 0 0-1 1v6a2 2 0 0 0 2 2h9.639a3 3 0 0 0 2.258-1.024L22 13l-1.452-.484a3 3 0 0 0-2.822.504M15.403 12a3 3 0 0 0 3-3c0-2.708-3-6-3-6s-3 3.271-3 6a3 3 0 0 0 3 3\"/>"
},
"donate-heart": {
"body": "<path fill=\"currentColor\" d=\"M17.726 13.02L14 16H9v-1h4.065a.5.5 0 0 0 .416-.777l-.888-1.332A2 2 0 0 0 10.93 12H3a1 1 0 0 0-1 1v6a2 2 0 0 0 2 2h9.639a3 3 0 0 0 2.258-1.024L22 13l-1.452-.484a3 3 0 0 0-2.822.504m1.532-5.63c.451-.465.73-1.108.73-1.818s-.279-1.353-.73-1.818A2.45 2.45 0 0 0 17.494 3S16.25 2.997 15 4.286C13.75 2.997 12.506 3 12.506 3a2.45 2.45 0 0 0-1.764.753c-.451.466-.73 1.108-.73 1.818s.279 1.354.73 1.818L15 12z\"/>"
},
"door-open": {
"body": "<path fill=\"currentColor\" d=\"M5 5v14a1 1 0 0 0 1 1h3v-2H7V6h2V4H6a1 1 0 0 0-1 1m14.242-.97l-8-2A1 1 0 0 0 10 3v18a.998.998 0 0 0 1.242.97l8-2A1 1 0 0 0 20 19V5a1 1 0 0 0-.758-.97M15 12.188a1.001 1.001 0 0 1-2 0v-.377a1 1 0 1 1 2 .001z\"/>"
},
"doughnut-chart": {
"body": "<path fill=\"currentColor\" d=\"M13 6c2.507.423 4.577 2.493 5 5h4c-.471-4.717-4.283-8.529-9-9z\"/><path fill=\"currentColor\" d=\"M18 13c-.478 2.833-2.982 4.949-5.949 4.949c-3.309 0-6-2.691-6-6C6.051 8.982 8.167 6.478 11 6V2c-5.046.504-8.949 4.773-8.949 9.949c0 5.514 4.486 10 10 10c5.176 0 9.445-3.903 9.949-8.949z\"/>"
},
"down-arrow": {
"body": "<path fill=\"currentColor\" d=\"M11.178 19.569a.998.998 0 0 0 1.644 0l9-13A.999.999 0 0 0 21 5H3a1.002 1.002 0 0 0-.822 1.569z\"/>"
},
"down-arrow-alt": {
"body": "<path fill=\"currentColor\" d=\"M18 12h-5V6h-2v6H6l6 7z\"/>"
},
"down-arrow-circle": {
"body": "<path fill=\"currentColor\" d=\"M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 15l-5-5h4V7h2v5h4z\"/>"
},
"down-arrow-square": {
"body": "<path fill=\"currentColor\" d=\"M19 21a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2zm-8-9V7h2v5h4l-5 5l-5-5z\"/>"
},
"download": {
"body": "<path fill=\"currentColor\" d=\"M19 9h-4V3H9v6H5l7 8zM4 19h16v2H4z\"/>"
},
"downvote": {
"body": "<path fill=\"currentColor\" d=\"M20.901 10.566A1 1 0 0 0 20 10h-4V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v7H4a1.001 1.001 0 0 0-.781 1.625l8 10a1 1 0 0 0 1.562 0l8-10c.24-.301.286-.712.12-1.059\"/>"
},
"drink": {
"body": "<path fill=\"currentColor\" d=\"M20.832 4.555A1 1 0 0 0 20 3H4a1 1 0 0 0-.832 1.554L11 16.303V20H8v2h8v-2h-3v-3.697zm-2.7.445l-2 3H7.868l-2-3z\"/>"
},
"droplet": {
"body": "<path fill=\"currentColor\" d=\"M12.6 2.4c-.4-.3-.9-.3-1.2 0C9.5 3.9 4 8.5 4 14c0 4.4 3.6 8 8 8s8-3.6 8-8c0-5.4-5.5-10.1-7.4-11.6\"/>"
},
"droplet-half": {
"body": "<path fill=\"currentColor\" d=\"M12.578 2.184a1 1 0 0 0-1.156 0C11.119 2.398 4 7.513 4 13.75C4 18.53 7.364 22 12 22s8-3.468 8-8.246c0-6.241-7.119-11.356-7.422-11.57M6 13.75c0-4.283 4.395-8.201 6-9.49V20c-3.533 0-6-2.57-6-6.25\"/>"
},
"dryer": {
"body": "<path fill=\"currentColor\" d=\"M4 22h16a1 1 0 0 0 1-1V5c0-1.654-1.346-3-3-3H6C4.346 2 3 3.346 3 5v16a1 1 0 0 0 1 1M18 3.924a1 1 0 1 1 0 2a1 1 0 0 1 0-2m-3 0a1 1 0 1 1 0 2a1 1 0 0 1 0-2m-3 3.117c3.309 0 6 2.691 6 6s-2.691 6-6 6s-6-2.691-6-6s2.691-6 6-6\"/><path fill=\"currentColor\" d=\"M9.32 12.265c-.415.384-1.041.964-1.041 2.067s.626 1.684 1.041 2.068c.352.325.4.398.4.6h2c0-1.104-.626-1.684-1.041-2.068c-.352-.325-.4-.398-.4-.6s.048-.275.4-.6c.414-.384 1.041-.964 1.041-2.068c0-1.103-.626-1.683-1.041-2.066c-.351-.325-.399-.397-.399-.598h-2c0 1.104.627 1.683 1.042 2.066c.351.324.399.396.399.597c-.001.203-.05.276-.401.602m4 0c-.414.384-1.04.964-1.04 2.067s.626 1.684 1.04 2.067c.351.325.399.398.399.601h2c0-1.104-.626-1.684-1.04-2.067c-.351-.325-.399-.398-.399-.601s.049-.275.399-.601c.414-.384 1.04-.964 1.04-2.068c0-1.103-.626-1.682-1.04-2.065c-.35-.324-.399-.397-.399-.598h-2c0 1.103.626 1.683 1.041 2.066c.35.324.398.397.398.598c.001.202-.048.275-.399.601\"/>"
},
"duplicate": {
"body": "<path fill=\"currentColor\" d=\"M4 22h12a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2m2-9h3v-3h2v3h3v2h-3v3H9v-3H6z\"/><path fill=\"currentColor\" d=\"M20 2H8v2h12v12h2V4c0-1.103-.897-2-2-2\"/>"
},
"edit": {
"body": "<path fill=\"currentColor\" d=\"m18.988 2.012l3 3L19.701 7.3l-3-3zM8 16h3l7.287-7.287l-3-3L8 13z\"/><path fill=\"currentColor\" d=\"M19 19H8.158c-.026 0-.053.01-.079.01c-.033 0-.066-.009-.1-.01H5V5h6.847l2-2H5c-1.103 0-2 .896-2 2v14c0 1.104.897 2 2 2h14a2 2 0 0 0 2-2v-8.668l-2 2z\"/>"
},
"edit-alt": {
"body": "<path fill=\"currentColor\" d=\"m16 2.012l3 3L16.713 7.3l-3-3zM4 14v3h3l8.299-8.287l-3-3zm0 6h16v2H4z\"/>"
},
"edit-location": {
"body": "<path fill=\"currentColor\" d=\"M12 2C7.589 2 4 5.589 4 9.995C3.971 16.44 11.696 21.784 12 22c0 0 8.029-5.56 8-12c0-4.411-3.589-8-8-8M9.799 14.987H8v-1.799l4.977-4.97l1.799 1.799zm5.824-5.817l-1.799-1.799L15.196 6l1.799 1.799z\"/>"
},
"eject": {
"body": "<path fill=\"currentColor\" d=\"m12 6l-6 8h12zM6 16h12v2H6z\"/>"
},
"envelope": {
"body": "<path fill=\"currentColor\" d=\"M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2m0 4.7l-8 5.334L4 8.7V6.297l8 5.333l8-5.333z\"/>"
},
"envelope-open": {
"body": "<path fill=\"currentColor\" d=\"m21.555 8.168l-9-6a1 1 0 0 0-1.109 0l-9 6A1 1 0 0 0 2.004 9H2v11a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9h-.004a1 1 0 0 0-.441-.832M20 12.7L12 17l-8-4.3v-2.403l8 4.299l8-4.299z\"/>"
},
"eraser": {
"body": "<path fill=\"currentColor\" d=\"M12.48 3L7.73 7.75L3 12.59a2 2 0 0 0 0 2.82l4.3 4.3A1 1 0 0 0 8 20h12v-2h-7l7.22-7.22a2 2 0 0 0 0-2.83L15.31 3a2 2 0 0 0-2.83 0M8.41 18l-4-4l4.75-4.84l.74-.75l4.95 4.95l-4.56 4.56l-.07.08z\"/>"
},
"error": {
"body": "<path fill=\"currentColor\" d=\"M12.884 2.532c-.346-.654-1.422-.654-1.768 0l-9 17A1 1 0 0 0 3 21h18a.998.998 0 0 0 .883-1.467zM13 18h-2v-2h2zm-2-4V9h2l.001 5z\"/>"
},
"error-alt": {
"body": "<path fill=\"currentColor\" d=\"M16.707 2.293A1 1 0 0 0 16 2H8a1 1 0 0 0-.707.293l-5 5A1 1 0 0 0 2 8v8c0 .266.105.52.293.707l5 5A1 1 0 0 0 8 22h8c.266 0 .52-.105.707-.293l5-5A1 1 0 0 0 22 16V8a1 1 0 0 0-.293-.707zM13 17h-2v-2h2zm0-4h-2V7h2z\"/>"
},
"error-circle": {
"body": "<path fill=\"currentColor\" d=\"M11.953 2C6.465 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.493 2 11.953 2M13 17h-2v-2h2zm0-4h-2V7h2z\"/>"
},
"ev-station": {
"body": "<path fill=\"currentColor\" d=\"m19.616 6.48l.014-.017l-4-3.24l-1.26 1.554l2.067 1.674a2.99 2.99 0 0 0-1.394 3.062c.15.899.769 1.676 1.57 2.111c.895.487 1.68.442 2.378.194L18.976 18a.996.996 0 0 1-1.39.922a1 1 0 0 1-.318-.217a1 1 0 0 1-.291-.705L17 16a2.98 2.98 0 0 0-.877-2.119A3 3 0 0 0 14 13h-1V5a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7a2 2 0 0 0 2-2v-4h1q.205 0 .391.078a1.03 1.03 0 0 1 .531.533A1 1 0 0 1 15 16l-.024 2c0 .406.079.799.236 1.168c.151.359.368.68.641.951a2.97 2.97 0 0 0 2.123.881q.611 0 1.168-.236c.358-.15.68-.367.951-.641A2.98 2.98 0 0 0 20.976 18L21 9a3 3 0 0 0-1.384-2.52M6 18l1-5H4l5-7l-1 5h3zm12-8a1 1 0 1 1 0-2a1 1 0 0 1 0 2\"/>"
},
"exit": {
"body": "<path fill=\"currentColor\" d=\"M5.002 21h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2h-14c-1.103 0-2 .897-2 2v6.001H10V7l6 5l-6 5v-3.999H3.002V19c0 1.103.897 2 2 2\"/>"
},
"extension": {
"body": "<path fill=\"currentColor\" d=\"M19 10V7c0-1.103-.897-2-2-2h-3c0-1.654-1.346-3-3-3S8 3.346 8 5H5c-1.103 0-2 .897-2 2v4h1a2 2 0 0 1 0 4H3v4c0 1.103.897 2 2 2h4v-1a2 2 0 0 1 4 0v1h4c1.103 0 2-.897 2-2v-3c1.654 0 3-1.346 3-3s-1.346-3-3-3\"/>"
},
"eyedropper": {
"body": "<path fill=\"currentColor\" d=\"m4 15.76l-1 4A1 1 0 0 0 3.75 21a1 1 0 0 0 .49 0l4-1a1 1 0 0 0 .47-.26L17 11.41l1.29 1.3l1.42-1.42l-1.3-1.29L21 7.41a2 2 0 0 0 0-2.82L19.41 3a2 2 0 0 0-2.82 0L14 5.59l-1.3-1.3l-1.42 1.42L12.58 7l-8.29 8.29a1 1 0 0 0-.29.47m1.87.75L14 8.42L15.58 10l-8.09 8.1l-2.12.53z\"/>"
},
"face": {
"body": "<path fill=\"currentColor\" d=\"M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8c0-1.168.258-2.275.709-3.276q.232.135.456.276c.396.25.791.5 1.286.688c.494.187 1.088.312 1.879.312c.792 0 1.386-.125 1.881-.313s.891-.437 1.287-.687s.792-.5 1.287-.688S13.873 8 14.665 8s1.386.125 1.88.313c.495.187.891.437 1.287.687s.792.5 1.287.688q.269.099.581.171c.191.682.3 1.398.3 2.141c0 4.411-3.589 8-8 8\"/><circle cx=\"8.5\" cy=\"12.5\" r=\"1.5\" fill=\"currentColor\"/><circle cx=\"15.5\" cy=\"12.5\" r=\"1.5\" fill=\"currentColor\"/>"
},
"face-mask": {
"body": "<path fill=\"currentColor\" d=\"M12 2C6.486 2 2 6.486 2 12c0 2.521.945 4.82 2.49 6.582c1.24 1.52 3.266 3.066 6.439 3.358a9.7 9.7 0 0 0 2.141 0c3.174-.292 5.199-1.839 6.439-3.358A9.95 9.95 0 0 0 22 12c0-5.514-4.486-10-10-10M4.709 8.724q.232.135.456.276c.396.25.791.5 1.286.688c.494.187 1.088.312 1.879.312c.792 0 1.386-.125 1.881-.313s.891-.437 1.287-.687s.792-.5 1.287-.688S13.873 8 14.665 8s1.386.125 1.88.313c.495.187.891.437 1.287.687s.792.5 1.287.688q.269.099.581.171c.191.682.3 1.398.3 2.141c0 .843-.133 1.654-.375 2.417c-.261.195-.733.474-1.577.756c-.769.256-1.672.458-2.685.602a25.3 25.3 0 0 1-6.727 0c-1.013-.144-1.916-.346-2.685-.602c-.844-.282-1.316-.561-1.577-.756a7.95 7.95 0 0 1 .335-5.693\"/><circle cx=\"8.5\" cy=\"12.5\" r=\"1.5\" fill=\"currentColor\"/><circle cx=\"15.5\" cy=\"12.5\" r=\"1.5\" fill=\"currentColor\"/>"
},
"factory": {
"body": "<path fill=\"currentColor\" d=\"M17 10V6l-5 4V6l-5 4V4H2v16h20V6zm-8 7H7v-3h2zm5 0h-2v-3h2zm5 0h-2v-3h2z\"/>"
},
"fast-forward-circle": {
"body": "<path fill=\"currentColor\" d=\"M12 2C6.485 2 2 6.485 2 12s4.485 10 10 10s10-4.485 10-10S17.514 2 12 2m1 14v-4l-6 4V8l6 4V8l6 4z\"/>"
},
"file": {
"body": "<path fill=\"currentColor\" d=\"M18 22a2 2 0 0 0 2-2V8l-6-6H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2zM13 4l5 5h-5zM7 8h3v2H7zm0 4h10v2H7zm0 4h10v2H7z\"/>"
},
"file-archive": {
"body": "<path fill=\"currentColor\" d=\"M6 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6h-3v2H9v2h2v2H9v2h2v8H7v-6h2v-2H7V8h2V6H7V4h2V2zm7 2l5 5h-5z\"/><path fill=\"currentColor\" d=\"M8 15h2v2H8z\"/>"
},
"file-blank": {
"body": "<path fill=\"currentColor\" d=\"M6 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6zm8 7h-1V4l5 5z\"/>"
},
"file-css": {
"body": "<path fill=\"currentColor\" d=\"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zM9.446 17.412c.275 0 .581-.061.762-.132l.138.713c-.168.084-.546.174-1.037.174c-1.397 0-2.117-.869-2.117-2.021C7.191 14.768 8.175 14 9.398 14c.474 0 .833.096.995.18l-.186.726a2 2 0 0 0-.768-.149c-.726 0-1.29.438-1.29 1.337c.001.808.482 1.318 1.297 1.318m2.491.755c-.461 0-.917-.119-1.145-.245l.186-.756c.246.126.624.252 1.014.252c.42 0 .642-.174.642-.438c0-.252-.192-.396-.678-.57c-.672-.234-1.109-.605-1.109-1.193c0-.689.575-1.217 1.529-1.217c.455 0 .791.096 1.031.203l-.204.738a1.9 1.9 0 0 0-.846-.192c-.396 0-.587.181-.587.39c0 .258.228.372.749.57c.714.264 1.05.636 1.05 1.205c-.001.678-.523 1.253-1.632 1.253m3.24 0c-.461 0-.917-.119-1.145-.245l.186-.756c.246.126.624.252 1.014.252c.42 0 .642-.174.642-.438c0-.252-.192-.396-.678-.57c-.672-.234-1.109-.605-1.109-1.193c0-.689.575-1.217 1.529-1.217c.455 0 .791.096 1.031.203l-.204.738a1.9 1.9 0 0 0-.846-.192c-.396 0-.587.181-.587.39c0 .258.228.372.749.57c.714.264 1.05.636 1.05 1.205c0 .678-.523 1.253-1.632 1.253M14 9h-1V4l5 5z\"/>"
},
"file-doc": {
"body": "<path fill=\"currentColor\" d=\"M12.186 14.552c-.617 0-.977.587-.977 1.373c0 .791.371 1.35.983 1.35c.617 0 .971-.588.971-1.374c0-.726-.348-1.349-.977-1.349\"/><path fill=\"currentColor\" d=\"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zM9.155 17.454c-.426.354-1.073.521-1.864.521c-.475 0-.81-.03-1.038-.06v-3.971a8 8 0 0 1 1.235-.083c.768 0 1.266.138 1.655.432c.42.312.684.81.684 1.522c0 .775-.282 1.309-.672 1.639m2.99.546c-1.2 0-1.901-.906-1.901-2.058c0-1.211.773-2.116 1.967-2.116c1.241 0 1.919.929 1.919 2.045c-.001 1.325-.805 2.129-1.985 2.129m4.655-.762c.275 0 .581-.061.762-.132l.138.713c-.168.084-.546.174-1.037.174c-1.397 0-2.117-.869-2.117-2.021c0-1.379.983-2.146 2.207-2.146c.474 0 .833.096.995.18l-.186.726a2 2 0 0 0-.768-.15c-.726 0-1.29.438-1.29 1.338c0 .809.48 1.318 1.296 1.318M14 9h-1V4l5 5z\"/><path fill=\"currentColor\" d=\"M7.584 14.563c-.203 0-.335.018-.413.036v2.645c.078.018.204.018.317.018c.828.006 1.367-.449 1.367-1.415c.006-.84-.485-1.284-1.271-1.284\"/>"
},
"file-export": {
"body": "<path fill=\"currentColor\" d=\"M18 22a2 2 0 0 0 2-2v-5l-5 4v-3H8v-2h7v-3l5 4V8l-6-6H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2zM13 4l5 5h-5z\"/>"
},
"file-find": {
"body": "<path fill=\"currentColor\" d=\"M6 22h12c.178 0 .348-.03.512-.074l-3.759-3.759A4.97 4.97 0 0 1 12 19c-2.757 0-5-2.243-5-5s2.243-5 5-5s5 2.243 5 5a4.96 4.96 0 0 1-.833 2.753l3.759 3.759c.044-.164.074-.334.074-.512V8l-6-6H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2\"/><circle cx=\"12\" cy=\"14\" r=\"3\" fill=\"currentColor\"/>"
},
"file-gif": {
"body": "<path fill=\"currentColor\" d=\"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zm-2.667 15.772A4.5 4.5 0 0 1 9.984 18c-.737 0-1.271-.186-1.644-.546c-.371-.348-.575-.875-.569-1.469c.006-1.344.983-2.111 2.309-2.111c.521 0 .924.103 1.121.198l-.191.731c-.222-.096-.498-.174-.941-.174c-.762 0-1.338.432-1.338 1.308c0 .833.522 1.325 1.271 1.325c.21 0 .378-.024.45-.061v-.846h-.624v-.713h1.505zm1.634.186h-.918v-4.042h.918zm3.262-3.292h-1.553v.923h1.451v.744h-1.451v1.625h-.918v-4.042h2.471zM14 9h-1V4l5 5z\"/>"
},
"file-html": {
"body": "<path fill=\"currentColor\" d=\"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zm-1 2l5 5h-5zM8.531 18h-.76v-1.411H6.515V18h-.767v-3.373h.767v1.296h1.257v-1.296h.76zm3-2.732h-.921V18h-.766v-2.732h-.905v-.641h2.592zM14.818 18l-.05-1.291c-.017-.405-.03-.896-.03-1.387h-.016c-.104.431-.245.911-.375 1.307l-.41 1.316h-.597l-.359-1.307a15 15 0 0 1-.306-1.316h-.011c-.021.456-.034.976-.059 1.396L12.545 18h-.705l.216-3.373h1.015l.331 1.126c.104.391.21.811.284 1.206h.017c.095-.391.209-.836.32-1.211l.359-1.121h.996L15.563 18zm3.434 0h-2.108v-3.373h.767v2.732h1.342z\"/>"
},
"file-image": {
"body": "<path fill=\"currentColor\" d=\"M6 22h12a2 2 0 0 0 2-2V8l-6-6H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2m7-18l5 5h-5zm-4.5 7a1.5 1.5 0 1 1-.001 3.001A1.5 1.5 0 0 1 8.5 11m.5 5l1.597 1.363L13 13l4 6H7z\"/>"
},
"file-import": {
"body": "<path fill=\"currentColor\" d=\"M20 14V8l-6-6H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-4h-7v3l-5-4l5-4v3zM13 4l5 5h-5z\"/>"
},
"file-jpg": {
"body": "<path fill=\"currentColor\" d=\"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zM9.239 16.446c0 1.152-.551 1.554-1.438 1.554c-.21 0-.486-.036-.665-.097l.101-.737c.127.042.289.072.469.072c.384 0 .623-.174.623-.804v-2.543h.911zm3.294-.365c-.313.293-.773.426-1.313.426c-.12 0-.228-.007-.312-.019v1.445h-.906v-3.988a7.5 7.5 0 0 1 1.236-.083c.563 0 .965.107 1.234.323c.259.204.433.54.433.936s-.133.732-.372.96m4.331 1.667c-.28.096-.815.228-1.349.228c-.737 0-1.271-.186-1.643-.546c-.371-.348-.575-.875-.57-1.469c.007-1.344.983-2.111 2.309-2.111c.521 0 .924.103 1.121.198l-.191.731c-.222-.096-.497-.174-.941-.174c-.761 0-1.338.432-1.338 1.308c0 .833.523 1.325 1.271 1.325c.211 0 .378-.024.451-.061v-.846h-.624v-.713h1.504zM14 9h-1V4l5 5z\"/><path fill=\"currentColor\" d=\"M11.285 14.552c-.186 0-.312.018-.377.036v1.193c.077.018.174.023.307.023c.484 0 .784-.246.784-.659c0-.372-.257-.593-.714-.593\"/>"
},
"file-js": {
"body": "<path fill=\"currentColor\" d=\"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zm-2.745 14.186c0 1.345-.644 1.814-1.681 1.814c-.245 0-.567-.042-.777-.112l.119-.861c.147.049.336.084.546.084c.448 0 .729-.203.729-.938v-2.97h1.064zm2.043 1.807c-.539 0-1.071-.141-1.337-.287l.217-.883c.287.147.729.294 1.184.294c.491 0 .749-.203.749-.511c0-.295-.224-.463-.791-.666c-.784-.272-1.295-.707-1.295-1.394c0-.806.672-1.422 1.786-1.422c.533 0 .925.112 1.205.238l-.238.861c-.189-.091-.525-.224-.987-.224s-.687.21-.687.455c0 .301.267.435.875.665c.834.309 1.226.742 1.226 1.408c-.002.793-.61 1.466-1.907 1.466M14 9h-1V4l5 5z\"/>"
},
"file-json": {
"body": "<path fill=\"currentColor\" d=\"M12.823 15.122c-.517 0-.816.491-.816 1.146c0 .661.311 1.126.82 1.126c.517 0 .812-.49.812-1.146c0-.604-.291-1.126-.816-1.126\"/><path fill=\"currentColor\" d=\"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zM8.022 16.704c0 .961-.461 1.296-1.2 1.296c-.176 0-.406-.029-.557-.08l.086-.615c.104.035.239.06.391.06c.319 0 .52-.145.52-.67v-2.122h.761zm1.459 1.291c-.385 0-.766-.1-.955-.205l.155-.631c.204.105.521.211.846.211c.35 0 .534-.146.534-.365c0-.211-.159-.331-.564-.476c-.562-.195-.927-.506-.927-.996c0-.576.481-1.017 1.277-1.017c.38 0 .659.08.861.171l-.172.615c-.135-.065-.375-.16-.705-.16s-.491.15-.491.325c0 .215.19.311.627.476c.596.22.876.53.876 1.006c.001.566-.436 1.046-1.362 1.046m3.306.005c-1.001 0-1.586-.755-1.586-1.716c0-1.012.646-1.768 1.642-1.768c1.035 0 1.601.776 1.601 1.707C14.443 17.33 13.773 18 12.787 18m4.947-.055h-.802l-.721-1.302a13 13 0 0 1-.585-1.19l-.016.005c.021.445.031.921.031 1.472v1.016h-.701v-3.373h.891l.701 1.236c.2.354.4.775.552 1.155h.014c-.05-.445-.065-.9-.065-1.406v-.985h.702zM14 9h-1V4l5 5z\"/>"
},
"file-md": {
"body": "<path fill=\"currentColor\" d=\"M14.481 14.015c-.238 0-.393.021-.483.042v3.089c.091.021.237.021.371.021c.966.007 1.597-.525 1.597-1.653c.007-.981-.568-1.499-1.485-1.499\"/><path fill=\"currentColor\" d=\"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zm-2.934 15.951l-.07-1.807a53 53 0 0 1-.042-1.94h-.021a26 26 0 0 1-.525 1.828l-.574 1.842H9l-.504-1.828a22 22 0 0 1-.428-1.842h-.013c-.028.638-.049 1.366-.084 1.954l-.084 1.793h-.988L7.2 13.23h1.422l.462 1.576c.147.546.295 1.135.399 1.688h.021a40 40 0 0 1 .448-1.694l.504-1.569h1.394l.26 4.721h-1.044zm5.25-.56c-.498.413-1.253.609-2.178.609a9 9 0 0 1-1.212-.07v-4.636a9.5 9.5 0 0 1 1.443-.099c.896 0 1.478.161 1.933.505c.49.364.799.945.799 1.778c0 .904-.33 1.528-.785 1.913M14 9h-1V4l5 5z\"/>"
},
"file-pdf": {
"body": "<path fill=\"currentColor\" d=\"M8.267 14.68c-.184 0-.308.018-.372.036v1.178c.076.018.171.023.302.023c.479 0 .774-.242.774-.651c0-.366-.254-.586-.704-.586m3.487.012c-.2 0-.33.018-.407.036v2.61c.077.018.201.018.313.018c.817.006 1.349-.444 1.349-1.396c.006-.83-.479-1.268-1.255-1.268\"/><path fill=\"currentColor\" d=\"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zM9.498 16.19c-.309.29-.765.42-1.296.42a2 2 0 0 1-.308-.018v1.426H7v-3.936A7.6 7.6 0 0 1 8.219 14c.557 0 .953.106 1.22.319c.254.202.426.533.426.923c-.001.392-.131.723-.367.948m3.807 1.355c-.42.349-1.059.515-1.84.515c-.468 0-.799-.03-1.024-.06v-3.917A8 8 0 0 1 11.66 14c.757 0 1.249.136 1.633.426c.415.308.675.799.675 1.504c0 .763-.279 1.29-.663 1.615M17 14.77h-1.532v.911H16.9v.734h-1.432v1.604h-.906V14.03H17zM14 9h-1V4l5 5z\"/>"
},
"file-plus": {
"body": "<path fill=\"currentColor\" d=\"M6 22h12a2 2 0 0 0 2-2V8l-6-6H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2m7-18l5 5h-5zM8 14h3v-3h2v3h3v2h-3v3h-2v-3H8z\"/>"
},
"file-png": {
"body": "<path fill=\"currentColor\" d=\"M7.782 14.576c-.186 0-.312.018-.377.036v1.193c.077.018.174.023.306.023c.485 0 .785-.246.785-.659c0-.371-.258-.593-.714-.593\"/><path fill=\"currentColor\" d=\"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zM9.03 16.105c-.313.293-.774.426-1.313.426c-.12 0-.229-.007-.312-.019v1.445h-.906V13.97a7.5 7.5 0 0 1 1.235-.083c.563 0 .966.107 1.235.323c.258.204.432.54.432.936s-.131.731-.371.959m4.302 1.853h-.96l-.863-1.56c-.24-.432-.504-.953-.701-1.427l-.019.006c.024.534.036 1.104.036 1.763v1.218h-.84v-4.042h1.067l.84 1.481c.24.426.479.93.659 1.385h.019a15 15 0 0 1-.078-1.685v-1.182h.84zm4.169-.186a4.5 4.5 0 0 1-1.349.228c-.737 0-1.271-.186-1.644-.546c-.371-.348-.575-.875-.569-1.469c.006-1.344.983-2.111 2.309-2.111c.521 0 .924.103 1.121.198l-.191.731c-.222-.096-.498-.174-.941-.174c-.762 0-1.338.432-1.338 1.308c0 .833.522 1.325 1.271 1.325c.21 0 .378-.024.45-.061v-.846h-.624v-.713h1.505zM14 9h-1V4l5 5z\"/>"
},
"file-txt": {
"body": "<path fill=\"currentColor\" d=\"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zM9.998 14.768H8.895v3.274h-.917v-3.274H6.893V14h3.105zm2.725 3.274l-.365-.731c-.15-.282-.246-.492-.359-.726h-.013c-.083.233-.185.443-.312.726l-.335.731h-1.045l1.171-2.045L10.336 14h1.05l.354.738c.121.245.21.443.306.671h.013c.096-.258.174-.438.276-.671l.341-.738h1.043l-1.139 1.973l1.198 2.069zm4.384-3.274h-1.104v3.274h-.917v-3.274h-1.085V14h3.105zM14 9h-1V4l5 5z\"/>"
},
"film": {
"body": "<path fill=\"currentColor\" d=\"M19 4v1h-2V3H7v2H5V3H3v18h2v-2h2v2h10v-2h2v2h2V3h-2zM5 7h2v2H5zm0 4h2v2H5zm0 6v-2h2v2zm12 0v-2h2v2zm2-4h-2v-2h2zm-2-4V7h2v2z\"/>"
},
"filter-alt": {
"body": "<path fill=\"currentColor\" d=\"M13 20v-4.586L20.414 8c.375-.375.586-.884.586-1.415V4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v2.585c0 .531.211 1.04.586 1.415L11 15.414V22z\"/>"
},
"first-aid": {
"body": "<path fill=\"currentColor\" d=\"M20 6h-3V4a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2v2H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2M9 4h6v2H9zm7 10h-3v3h-2v-3H8v-2h3V9h2v3h3z\"/>"
},
"flag": {
"body": "<path fill=\"currentColor\" d=\"M19 4H6V2H4v18H3v2h4v-2H6v-5h13a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1\"/>"
},
"flag-alt": {
"body": "<path fill=\"currentColor\" d=\"m14.303 6l-3-2H6V2H4v20h2v-8h4.697l3 2H20V6z\"/>"
},
"flag-checkered": {
"body": "<path fill=\"currentColor\" d=\"M4 2v18H3v2h4v-2H6v-5h13a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H6V2zm4 3v2h2V5h2v2h2V5h2v2h2v2h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H8v-2H6V9h2V7H6V5z\"/><path fill=\"currentColor\" d=\"M8 9h2v2H8zm4 0h2v2h-2zm-2-2h2v2h-2zm4 0h2v2h-2z\"/>"
},
"flame": {
"body": "<path fill=\"currentColor\" d=\"M12.579 2.393a.98.98 0 0 0-1.153.006C9.592 3.728 4 8.252 4 14c0 3.247 1.948 6.043 4.734 7.296A3.97 3.97 0 0 1 8 19c-.017-3.221 3.558-6.893 3.71-7a.5.5 0 0 1 .579 0c.152.107 3.711 2.974 3.711 7.002c0 .854-.275 1.643-.733 2.294C18.052 20.043 20 17.248 20 14.005c0-5.861-5.582-10.307-7.421-11.612\"/>"
},
"flask": {
"body": "<path fill=\"currentColor\" d=\"M15 9.783V4h1V2H8v2h1v5.783l-4.268 9.389a1.99 1.99 0 0 0 .14 1.911A1.99 1.99 0 0 0 6.553 22h10.895a1.99 1.99 0 0 0 1.681-.917c.37-.574.423-1.289.14-1.911zm-4.09.631c.06-.13.09-.271.09-.414V4h2v6c0 .143.03.284.09.414L15.177 15H8.825z\"/>"
},
"florist": {
"body": "<path fill=\"currentColor\" d=\"M10.84 21.871L12 22a10.22 10.22 0 0 0-9.013-8.891L2 13l.021.173a10 10 0 0 0 8.819 8.698m11.139-8.698L22 13l-.987.109c-4.7.523-8.427 4.2-9.013 8.891l1.16-.129a10 10 0 0 0 8.819-8.698M18.063 5.5a2.5 2.5 0 0 0-3.415-.915c-.062.035-.111.081-.168.121c.005-.069.02-.136.02-.206a2.5 2.5 0 1 0-5 0c0 .07.015.137.021.206c-.057-.04-.107-.086-.168-.121a2.5 2.5 0 0 0-2.5 4.33c.061.035.126.056.188.085c-.062.029-.127.05-.188.085a2.5 2.5 0 0 0 2.5 4.33c.062-.035.111-.081.168-.121c-.006.069-.021.136-.021.206a2.5 2.5 0 1 0 5 0c0-.07-.015-.137-.021-.206c.057.04.106.086.168.121a2.5 2.5 0 0 0 2.5-4.33c-.061-.035-.126-.056-.188-.085c.063-.029.127-.05.188-.085a2.5 2.5 0 0 0 .916-3.415M12 12a3 3 0 1 1 0-6a3 3 0 0 1 0 6\"/>"
},
"folder": {
"body": "<path fill=\"currentColor\" d=\"M20 5h-9.586L8.707 3.293A1 1 0 0 0 8 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V7c0-1.103-.897-2-2-2\"/>"
},
"folder-minus": {
"body": "<path fill=\"currentColor\" d=\"M20 5h-9.586L8.707 3.293A1 1 0 0 0 8 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V7c0-1.103-.897-2-2-2m-4 9H8v-2h8z\"/>"
},
"folder-open": {
"body": "<path fill=\"currentColor\" d=\"M2.165 19.551c.186.28.499.449.835.449h15c.4 0 .762-.238.919-.606l3-7A.998.998 0 0 0 21 11h-1V8c0-1.103-.897-2-2-2h-6.655L8.789 4H4c-1.103 0-2 .897-2 2v13h.007a1 1 0 0 0 .158.551M18 8v3H6c-.4 0-.762.238-.919.606L4 14.129V8z\"/>"
},
"folder-plus": {
"body": "<path fill=\"currentColor\" d=\"M20 5h-9.586L8.707 3.293A1 1 0 0 0 8 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V7c0-1.103-.897-2-2-2m-4 9h-3v3h-2v-3H8v-2h3V9h2v3h3z\"/>"