blob: 3283be3d8e7b99cc12acf1995a296b593ba8c21d (
plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
  | 
  500px; f26e
  accessible-icon; f368
  accusoft; f369
  acquisitions-incorporated; f6af
  ad; f641
  address-book; f2b9
  address-card; f2bb
  adjust; f042
  adn; f170
  adversal; f36a
  affiliatetheme; f36b
  air-freshener; f5d0
  airbnb; f834
  algolia; f36c
  align-center; f037
  align-justify; f039
  align-left; f036
  align-right; f038
  alipay; f642
  allergies; f461
  amazon; f270
  amazon-pay; f42c
  ambulance; f0f9
  american-sign-language-interpreting; f2a3
  amilia; f36d
  anchor; f13d
  android; f17b
  angellist; f209
  angle-double-down; f103
  angle-double-left; f100
  angle-double-right; f101
  angle-double-up; f102
  angle-down; f107
  angle-left; f104
  angle-right; f105
  angle-up; f106
  angry; f556
  angrycreative; f36e
  angular; f420
  ankh; f644
  app-store; f36f
  app-store-ios; f370
  apper; f371
  apple; f179
  apple-alt; f5d1
  apple-pay; f415
  archive; f187
  archway; f557
  arrow-alt-circle-down; f358
  arrow-alt-circle-left; f359
  arrow-alt-circle-right; f35a
  arrow-alt-circle-up; f35b
  arrow-circle-down; f0ab
  arrow-circle-left; f0a8
  arrow-circle-right; f0a9
  arrow-circle-up; f0aa
  arrow-down; f063
  arrow-left; f060
  arrow-right; f061
  arrow-up; f062
  arrows-alt; f0b2
  arrows-alt-h; f337
  arrows-alt-v; f338
  artstation; f77a
  assistive-listening-systems; f2a2
  asterisk; f069
  asymmetrik; f372
  at; f1fa
  atlas; f558
  atlassian; f77b
  atom; f5d2
  audible; f373
  audio-description; f29e
  autoprefixer; f41c
  avianex; f374
  aviato; f421
  award; f559
  aws; f375
  baby; f77c
  baby-carriage; f77d
  backspace; f55a
  backward; f04a
  bacon; f7e5
  bacteria e059
  bacterium e05a
  bahai; f666
  balance-scale; f24e
  balance-scale-left; f515
  balance-scale-right; f516
  ban; f05e
  band-aid; f462
  bandcamp; f2d5
  barcode; f02a
  bars; f0c9
  baseball-ball; f433
  basketball-ball; f434
  bath; f2cd
  battery-empty; f244
  battery-full; f240
  battery-half; f242
  battery-quarter; f243
  battery-three-quarters; f241
  battle-net; f835
  bed; f236
  beer; f0fc
  behance; f1b4
  behance-square; f1b5
  bell; f0f3
  bell-slash; f1f6
  bezier-curve; f55b
  bible; f647
  bicycle; f206
  biking; f84a
  bimobject; f378
  binoculars; f1e5
  biohazard; f780
  birthday-cake; f1fd
  bitbucket; f171
  bitcoin; f379
  bity; f37a
  black-tie; f27e
  blackberry; f37b
  blender; f517
  blender-phone; f6b6
  blind; f29d
  blog; f781
  blogger; f37c
  blogger-b; f37d
  bluetooth; f293
  bluetooth-b; f294
  bold; f032
  bolt; f0e7
  bomb; f1e2
  bone; f5d7
  bong; f55c
  book; f02d
  book-dead; f6b7
  book-medical; f7e6
  book-open; f518
  book-reader; f5da
  bookmark; f02e
  bootstrap; f836
  border-all; f84c
  border-none; f850
  border-style; f853
  bowling-ball; f436
  box; f466
  box-open; f49e
  box-tissue e05b
  boxes; f468
  braille; f2a1
  brain; f5dc
  bread-slice; f7ec
  briefcase; f0b1
  briefcase-medical; f469
  broadcast-tower; f519
  broom; f51a
  brush; f55d
  btc; f15a
  buffer; f837
  bug; f188
  building; f1ad
  bullhorn; f0a1
  bullseye; f140
  burn; f46a
  buromobelexperte; f37f
  bus; f207
  bus-alt; f55e
  business-time; f64a
  buy-n-large; f8a6
  calculator; f1ec
  calendar; f133
  calendar-alt; f073
  calendar-check; f274
  calendar-day; f783
  calendar-minus; f272
  calendar-plus; f271
  calendar-times; f273
  calendar-week; f784
  camera; f030
  camera-retro; f083
  campground; f6bb
  canadian-maple-leaf; f785
  candy-cane; f786
  cannabis; f55f
  capsules; f46b
  car; f1b9
  car-alt; f5de
  car-battery; f5df
  car-crash; f5e1
  car-side; f5e4
  caravan; f8ff
  caret-down; f0d7
  caret-left; f0d9
  caret-right; f0da
  caret-square-down; f150
  caret-square-left; f191
  caret-square-right; f152
  caret-square-up; f151
  caret-up; f0d8
  carrot; f787
  cart-arrow-down; f218
  cart-plus; f217
  cash-register; f788
  cat; f6be
  cc-amazon-pay; f42d
  cc-amex; f1f3
  cc-apple-pay; f416
  cc-diners-club; f24c
  cc-discover; f1f2
  cc-jcb; f24b
  cc-mastercard; f1f1
  cc-paypal; f1f4
  cc-stripe; f1f5
  cc-visa; f1f0
  centercode; f380
  centos; f789
  certificate; f0a3
  chair; f6c0
  chalkboard; f51b
  chalkboard-teacher; f51c
  charging-station; f5e7
  chart-area; f1fe
  chart-bar; f080
  chart-line; f201
  chart-pie; f200
  check; f00c
  check-circle; f058
  check-double; f560
  check-square; f14a
  cheese; f7ef
  chess; f439
  chess-bishop; f43a
  chess-board; f43c
  chess-king; f43f
  chess-knight; f441
  chess-pawn; f443
  chess-queen; f445
  chess-rook; f447
  chevron-circle-down; f13a
  chevron-circle-left; f137
  chevron-circle-right; f138
  chevron-circle-up; f139
  chevron-down; f078
  chevron-left; f053
  chevron-right; f054
  chevron-up; f077
  child; f1ae
  chrome; f268
  chromecast; f838
  church; f51d
  circle; f111
  circle-notch; f1ce
  city; f64f
  clinic-medical; f7f2
  clipboard; f328
  clipboard-check; f46c
  clipboard-list; f46d
  clock; f017
  clone; f24d
  closed-captioning; f20a
  cloud; f0c2
  cloud-download-alt; f381
  cloud-meatball; f73b
  cloud-moon; f6c3
  cloud-moon-rain; f73c
  cloud-rain; f73d
  cloud-showers-heavy; f740
  cloud-sun; f6c4
  cloud-sun-rain; f743
  cloud-upload-alt; f382
  cloudflare e07d
  cloudscale; f383
  cloudsmith; f384
  cloudversify; f385
  cocktail; f561
  code; f121
  code-branch; f126
  codepen; f1cb
  codiepie; f284
  coffee; f0f4
  cog; f013
  cogs; f085
  coins; f51e
  columns; f0db
  comment; f075
  comment-alt; f27a
  comment-dollar; f651
  comment-dots; f4ad
  comment-medical; f7f5
  comment-slash; f4b3
  comments; f086
  comments-dollar; f653
  compact-disc; f51f
  compass; f14e
  compress; f066
  compress-alt; f422
  compress-arrows-alt; f78c
  concierge-bell; f562
  confluence; f78d
  connectdevelop; f20e
  contao; f26d
  cookie; f563
  cookie-bite; f564
  copy; f0c5
  copyright; f1f9
  cotton-bureau; f89e
  couch; f4b8
  cpanel; f388
  creative-commons; f25e
  creative-commons-by; f4e7
  creative-commons-nc; f4e8
  creative-commons-nc-eu; f4e9
  creative-commons-nc-jp; f4ea
  creative-commons-nd; f4eb
  creative-commons-pd; f4ec
  creative-commons-pd-alt; f4ed
  creative-commons-remix; f4ee
  creative-commons-sa; f4ef
  creative-commons-sampling; f4f0
  creative-commons-sampling-plus; f4f1
  creative-commons-share; f4f2
  creative-commons-zero; f4f3
  credit-card; f09d
  critical-role; f6c9
  crop; f125
  crop-alt; f565
  cross; f654
  crosshairs; f05b
  crow; f520
  crown; f521
  crutch; f7f7
  css3; f13c
  css3-alt; f38b
  cube; f1b2
  cubes; f1b3
  cut; f0c4
  cuttlefish; f38c
  d-and-d; f38d
  d-and-d-beyond; f6ca
  dailymotion e052
  dashcube; f210
  database; f1c0
  deaf; f2a4
  deezer e077
  delicious; f1a5
  democrat; f747
  deploydog; f38e
  deskpro; f38f
  desktop; f108
  dev; f6cc
  deviantart; f1bd
  dharmachakra; f655
  dhl; f790
  diagnoses; f470
  diaspora; f791
  dice; f522
  dice-d20; f6cf
  dice-d6; f6d1
  dice-five; f523
  dice-four; f524
  dice-one; f525
  dice-six; f526
  dice-three; f527
  dice-two; f528
  digg; f1a6
  digital-ocean; f391
  digital-tachograph; f566
  directions; f5eb
  discord; f392
  discourse; f393
  disease; f7fa
  divide; f529
  dizzy; f567
  dna; f471
  dochub; f394
  docker; f395
  dog; f6d3
  dollar-sign; f155
  dolly; f472
  dolly-flatbed; f474
  donate; f4b9
  door-closed; f52a
  door-open; f52b
  dot-circle; f192
  dove; f4ba
  download; f019
  draft2digital; f396
  drafting-compass; f568
  dragon; f6d5
  draw-polygon; f5ee
  dribbble; f17d
  dribbble-square; f397
  dropbox; f16b
  drum; f569
  drum-steelpan; f56a
  drumstick-bite; f6d7
  drupal; f1a9
  dumbbell; f44b
  dumpster; f793
  dumpster-fire; f794
  dungeon; f6d9
  dyalog; f399
  earlybirds; f39a
  ebay; f4f4
  edge; f282
  edge-legacy e078
  edit; f044
  egg; f7fb
  eject; f052
  elementor; f430
  ellipsis-h; f141
  ellipsis-v; f142
  ello; f5f1
  ember; f423
  empire; f1d1
  envelope; f0e0
  envelope-open; f2b6
  envelope-open-text; f658
  envelope-square; f199
  envira; f299
  equals; f52c
  eraser; f12d
  erlang; f39d
  ethereum; f42e
  ethernet; f796
  etsy; f2d7
  euro-sign; f153
  evernote; f839
  exchange-alt; f362
  exclamation; f12a
  exclamation-circle; f06a
  exclamation-triangle; f071
  expand; f065
  expand-alt; f424
  expand-arrows-alt; f31e
  expeditedssl; f23e
  external-link-alt; f35d
  external-link-square-alt; f360
  eye; f06e
  eye-dropper; f1fb
  eye-slash; f070
 ; facebook; f09a
 ; facebook-f; f39e
 ; facebook-messenger; f39f
 ; facebook-square; f082
 ; fan; f863
 ; fantasy-flight-games; f6dc
 ; fast-backward; f049
 ; fast-forward; f050
 ; faucet e005
 ; fax; f1ac
 ; feather; f52d
 ; feather-alt; f56b
 ; fedex; f797
 ; fedora; f798
 ; female; f182
 ; fighter-jet; f0fb
 ; figma; f799
 ; file; f15b
 ; file-alt; f15c
 ; file-archive; f1c6
 ; file-audio; f1c7
 ; file-code; f1c9
 ; file-contract; f56c
 ; file-csv; f6dd
 ; file-download; f56d
 ; file-excel; f1c3
 ; file-export; f56e
 ; file-image; f1c5
 ; file-import; f56f
 ; file-invoice; f570
 ; file-invoice-dollar; f571
 ; file-medical; f477
 ; file-medical-alt; f478
 ; file-pdf; f1c1
 ; file-powerpoint; f1c4
 ; file-prescription; f572
 ; file-signature; f573
 ; file-upload; f574
 ; file-video; f1c8
 ; file-word; f1c2
 ; fill; f575
 ; fill-drip; f576
 ; film; f008
 ; filter; f0b0
 ; fingerprint; f577
 ; fire; f06d
 ; fire-alt; f7e4
 ; fire-extinguisher; f134
 ; firefox; f269
 ; firefox-browser e007
 ; first-aid; f479
 ; first-order; f2b0
 ; first-order-alt; f50a
 ; firstdraft; f3a1
 ; fish; f578
 ; fist-raised; f6de
 ; flag; f024
 ; flag-checkered; f11e
 ; flag-usa; f74d
 ; flask; f0c3
 ; flickr; f16e
 ; flipboard; f44d
 ; flushed; f579
 ; fly; f417
 ; folder; f07b
 ; folder-minus; f65d
 ; folder-open; f07c
 ; folder-plus; f65e
 ; font; f031
 ; font-awesome; f2b4
 ; font-awesome-alt; f35c
 ; font-awesome-flag; f425
 ; fonticons; f280
 ; fonticons-fi; f3a2
 ; football-ball; f44e
 ; fort-awesome; f286
 ; fort-awesome-alt; f3a3
 ; forumbee; f211
 ; forward; f04e
 ; foursquare; f180
 ; free-code-camp; f2c5
 ; freebsd; f3a4
 ; frog; f52e
 ; frown; f119
 ; frown-open; f57a
 ; fulcrum; f50b
 ; funnel-dollar; f662
 ; futbol; f1e3
  galactic-republic; f50c
  galactic-senate; f50d
  gamepad; f11b
  gas-pump; f52f
  gavel; f0e3
  gem; f3a5
  genderless; f22d
  get-pocket; f265
  gg; f260
  gg-circle; f261
  ghost; f6e2
  gift; f06b
  gifts; f79c
  git; f1d3
  git-alt; f841
  git-square; f1d2
  github; f09b
  github-alt; f113
  github-square; f092
  gitkraken; f3a6
  gitlab; f296
  gitter; f426
  glass-cheers; f79f
  glass-martini; f000
  glass-martini-alt; f57b
  glass-whiskey; f7a0
  glasses; f530
  glide; f2a5
  glide-g; f2a6
  globe; f0ac
  globe-africa; f57c
  globe-americas; f57d
  globe-asia; f57e
  globe-europe; f7a2
  gofore; f3a7
  golf-ball; f450
  goodreads; f3a8
  goodreads-g; f3a9
  google; f1a0
  google-drive; f3aa
  google-pay e079
  google-play; f3ab
  google-plus; f2b3
  google-plus-g; f0d5
  google-plus-square; f0d4
  google-wallet; f1ee
  gopuram; f664
  graduation-cap; f19d
  gratipay; f184
  grav; f2d6
  greater-than; f531
  greater-than-equal; f532
  grimace; f57f
  grin; f580
  grin-alt; f581
  grin-beam; f582
  grin-beam-sweat; f583
  grin-hearts; f584
  grin-squint; f585
  grin-squint-tears; f586
  grin-stars; f587
  grin-tears; f588
  grin-tongue; f589
  grin-tongue-squint; f58a
  grin-tongue-wink; f58b
  grin-wink; f58c
  grip-horizontal; f58d
  grip-lines; f7a4
  grip-lines-vertical; f7a5
  grip-vertical; f58e
  gripfire; f3ac
  grunt; f3ad
  guilded e07e
  guitar; f7a6
  gulp; f3ae
  h-square; f0fd
  hacker-news; f1d4
  hacker-news-square; f3af
  hackerrank; f5f7
  hamburger; f805
  hammer; f6e3
  hamsa; f665
  hand-holding; f4bd
  hand-holding-heart; f4be
  hand-holding-medical e05c
  hand-holding-usd; f4c0
  hand-holding-water; f4c1
  hand-lizard; f258
  hand-middle-finger; f806
  hand-paper; f256
  hand-peace; f25b
  hand-point-down; f0a7
  hand-point-left; f0a5
  hand-point-right; f0a4
  hand-point-up; f0a6
  hand-pointer; f25a
  hand-rock; f255
  hand-scissors; f257
  hand-sparkles e05d
  hand-spock; f259
  hands; f4c2
  hands-helping; f4c4
  hands-wash e05e
  handshake; f2b5
  handshake-alt-slash e05f
  handshake-slash e060
  hanukiah; f6e6
  hard-hat; f807
  hashtag; f292
  hat-cowboy; f8c0
  hat-cowboy-side; f8c1
  hat-wizard; f6e8
  hdd; f0a0
  head-side-cough e061
  head-side-cough-slash e062
  head-side-mask e063
  head-side-virus e064
  heading; f1dc
  headphones; f025
  headphones-alt; f58f
  headset; f590
  heart; f004
  heart-broken; f7a9
  heartbeat; f21e
  helicopter; f533
  highlighter; f591
  hiking; f6ec
  hippo; f6ed
  hips; f452
  hire-a-helper; f3b0
  history; f1da
  hive e07f
  hockey-puck; f453
  holly-berry; f7aa
  home; f015
  hooli; f427
  hornbill; f592
  horse; f6f0
  horse-head; f7ab
  hospital; f0f8
  hospital-alt; f47d
  hospital-symbol; f47e
  hospital-user; f80d
  hot-tub; f593
  hotdog; f80f
  hotel; f594
  hotjar; f3b1
  hourglass; f254
  hourglass-end; f253
  hourglass-half; f252
  hourglass-start; f251
  house-damage; f6f1
  house-user e065
  houzz; f27c
  hryvnia; f6f2
  html5; f13b
  hubspot; f3b2
  i-cursor; f246
  ice-cream; f810
  icicles; f7ad
  icons; f86d
  id-badge; f2c1
  id-card; f2c2
  id-card-alt; f47f
  ideal e013
  igloo; f7ae
  image; f03e
  images; f302
  imdb; f2d8
  inbox; f01c
  indent; f03c
  industry; f275
  infinity; f534
  info; f129
  info-circle; f05a
  innosoft e080
  instagram; f16d
  instagram-square e055
  instalod e081
  intercom; f7af
  internet-explorer; f26b
  invision; f7b0
  ioxhost; f208
  italic; f033
  itch-io; f83a
  itunes; f3b4
  itunes-note; f3b5
  java; f4e4
  jedi; f669
  jedi-order; f50e
  jenkins; f3b6
  jira; f7b1
  joget; f3b7
  joint; f595
  joomla; f1aa
  journal-whills; f66a
  js; f3b8
  js-square; f3b9
  jsfiddle; f1cc
  kaaba; f66b
  kaggle; f5fa
  key; f084
  keybase; f4f5
  keyboard; f11c
  keycdn; f3ba
  khanda; f66d
  kickstarter; f3bb
  kickstarter-k; f3bc
  kiss; f596
  kiss-beam; f597
  kiss-wink-heart; f598
  kiwi-bird; f535
  korvue; f42f
  landmark; f66f
  language; f1ab
  laptop; f109
  laptop-code; f5fc
  laptop-house e066
  laptop-medical; f812
  laravel; f3bd
  lastfm; f202
  lastfm-square; f203
  laugh; f599
  laugh-beam; f59a
  laugh-squint; f59b
  laugh-wink; f59c
  layer-group; f5fd
  leaf; f06c
  leanpub; f212
  lemon; f094
  less; f41d
  less-than; f536
  less-than-equal; f537
  level-down-alt; f3be
  level-up-alt; f3bf
  life-ring; f1cd
  lightbulb; f0eb
  line; f3c0
  link; f0c1
  linkedin; f08c
  linkedin-in; f0e1
  linode; f2b8
  linux; f17c
  lira-sign; f195
  list; f03a
  list-alt; f022
  list-ol; f0cb
  list-ul; f0ca
  location-arrow; f124
  lock; f023
  lock-open; f3c1
  long-arrow-alt-down; f309
  long-arrow-alt-left; f30a
  long-arrow-alt-right; f30b
  long-arrow-alt-up; f30c
  low-vision; f2a8
  luggage-cart; f59d
  lungs; f604
  lungs-virus e067
  lyft; f3c3
  magento; f3c4
  magic; f0d0
  magnet; f076
  mail-bulk; f674
  mailchimp; f59e
  male; f183
  mandalorian; f50f
  map; f279
  map-marked; f59f
  map-marked-alt; f5a0
  map-marker; f041
  map-marker-alt; f3c5
  map-pin; f276
  map-signs; f277
  markdown; f60f
  marker; f5a1
  mars; f222
  mars-double; f227
  mars-stroke; f229
  mars-stroke-h; f22b
  mars-stroke-v; f22a
  mask; f6fa
  mastodon; f4f6
  maxcdn; f136
  mdb; f8ca
  medal; f5a2
  medapps; f3c6
  medium; f23a
  medium-m; f3c7
  medkit; f0fa
  medrt; f3c8
  meetup; f2e0
  megaport; f5a3
  meh; f11a
  meh-blank; f5a4
  meh-rolling-eyes; f5a5
  memory; f538
  mendeley; f7b3
  menorah; f676
  mercury; f223
  meteor; f753
  microblog e01a
  microchip; f2db
  microphone; f130
  microphone-alt; f3c9
  microphone-alt-slash; f539
  microphone-slash; f131
  microscope; f610
  microsoft; f3ca
  minus; f068
  minus-circle; f056
  minus-square; f146
  mitten; f7b5
  mix; f3cb
  mixcloud; f289
  mixer e056
  mizuni; f3cc
  mobile; f10b
  mobile-alt; f3cd
  modx; f285
  monero; f3d0
  money-bill; f0d6
  money-bill-alt; f3d1
  money-bill-wave; f53a
  money-bill-wave-alt; f53b
  money-check; f53c
  money-check-alt; f53d
  monument; f5a6
  moon; f186
  mortar-pestle; f5a7
  mosque; f678
  motorcycle; f21c
  mountain; f6fc
  mouse; f8cc
  mouse-pointer; f245
  mug-hot; f7b6
  music; f001
  napster; f3d2
  neos; f612
  network-wired; f6ff
  neuter; f22c
  newspaper; f1ea
  nimblr; f5a8
  node; f419
  node-js; f3d3
  not-equal; f53e
  notes-medical; f481
  npm; f3d4
  ns8; f3d5
  nutritionix; f3d6
  object-group; f247
  object-ungroup; f248
  octopus-deploy e082
  odnoklassniki; f263
  odnoklassniki-square; f264
  oil-can; f613
  old-republic; f510
  om; f679
  opencart; f23d
  openid; f19b
  opera; f26a
  optin-monster; f23c
  orcid; f8d2
  osi; f41a
  otter; f700
  outdent; f03b
  page4; f3d7
  pagelines; f18c
  pager; f815
  paint-brush; f1fc
  paint-roller; f5aa
  palette; f53f
  palfed; f3d8
  pallet; f482
  paper-plane; f1d8
  paperclip; f0c6
  parachute-box; f4cd
  paragraph; f1dd
  parking; f540
  passport; f5ab
  pastafarianism; f67b
  paste; f0ea
  patreon; f3d9
  pause; f04c
  pause-circle; f28b
  paw; f1b0
  paypal; f1ed
  peace; f67c
  pen; f304
  pen-alt; f305
  pen-fancy; f5ac
  pen-nib; f5ad
  pen-square; f14b
  pencil-alt; f303
  pencil-ruler; f5ae
  penny-arcade; f704
  people-arrows e068
  people-carry; f4ce
  pepper-hot; f816
  perbyte e083
  percent; f295
  percentage; f541
  periscope; f3da
  person-booth; f756
  phabricator; f3db
  phoenix-framework; f3dc
  phoenix-squadron; f511
  phone; f095
  phone-alt; f879
  phone-slash; f3dd
  phone-square; f098
  phone-square-alt; f87b
  phone-volume; f2a0
  photo-video; f87c
  php; f457
  pied-piper; f2ae
  pied-piper-alt; f1a8
  pied-piper-hat; f4e5
  pied-piper-pp; f1a7
  pied-piper-square e01e
  piggy-bank; f4d3
  pills; f484
  pinterest; f0d2
  pinterest-p; f231
  pinterest-square; f0d3
  pizza-slice; f818
  place-of-worship; f67f
  plane; f072
  plane-arrival; f5af
  plane-departure; f5b0
  plane-slash e069
  play; f04b
  play-circle; f144
  playstation; f3df
  plug; f1e6
  plus; f067
  plus-circle; f055
  plus-square; f0fe
  podcast; f2ce
  poll; f681
  poll-h; f682
  poo; f2fe
  poo-storm; f75a
  poop; f619
  portrait; f3e0
  pound-sign; f154
  power-off; f011
  pray; f683
  praying-hands; f684
  prescription; f5b1
  prescription-bottle; f485
  prescription-bottle-alt; f486
  print; f02f
  procedures; f487
  product-hunt; f288
  project-diagram; f542
  pump-medical e06a
  pump-soap e06b
  pushed; f3e1
  puzzle-piece; f12e
  python; f3e2
  qq; f1d6
  qrcode; f029
  question; f128
  question-circle; f059
  quidditch; f458
  quinscape; f459
  quora; f2c4
  quote-left; f10d
  quote-right; f10e
  quran; f687
  r-project; f4f7
  radiation; f7b9
  radiation-alt; f7ba
  rainbow; f75b
  random; f074
  raspberry-pi; f7bb
  ravelry; f2d9
  react; f41b
  reacteurope; f75d
  readme; f4d5
  rebel; f1d0
  receipt; f543
  record-vinyl; f8d9
  recycle; f1b8
  red-river; f3e3
  reddit; f1a1
  reddit-alien; f281
  reddit-square; f1a2
  redhat; f7bc
  redo; f01e
  redo-alt; f2f9
  registered; f25d
  remove-format; f87d
  renren; f18b
  reply; f3e5
  reply-all; f122
  replyd; f3e6
  republican; f75e
  researchgate; f4f8
  resolving; f3e7
  restroom; f7bd
  retweet; f079
  rev; f5b2
  ribbon; f4d6
  ring; f70b
  road; f018
  robot; f544
  rocket; f135
  rocketchat; f3e8
  rockrms; f3e9
  route; f4d7
  rss; f09e
  rss-square; f143
  ruble-sign; f158
  ruler; f545
  ruler-combined; f546
  ruler-horizontal; f547
  ruler-vertical; f548
  running; f70c
  rupee-sign; f156
  rust e07a
  sad-cry; f5b3
  sad-tear; f5b4
  safari; f267
  salesforce; f83b
  sass; f41e
  satellite; f7bf
  satellite-dish; f7c0
  save; f0c7
  schlix; f3ea
  school; f549
  screwdriver; f54a
  scribd; f28a
  scroll; f70e
  sd-card; f7c2
  search; f002
  search-dollar; f688
  search-location; f689
  search-minus; f010
  search-plus; f00e
  searchengin; f3eb
  seedling; f4d8
  sellcast; f2da
  sellsy; f213
  server; f233
  servicestack; f3ec
  shapes; f61f
  share; f064
  share-alt; f1e0
  share-alt-square; f1e1
  share-square; f14d
  shekel-sign; f20b
  shield-alt; f3ed
  shield-virus e06c
  ship; f21a
  shipping-fast; f48b
  shirtsinbulk; f214
  shoe-prints; f54b
  shopify e057
  shopping-bag; f290
  shopping-basket; f291
  shopping-cart; f07a
  shopware; f5b5
  shower; f2cc
  shuttle-van; f5b6
  sign; f4d9
  sign-in-alt; f2f6
  sign-language; f2a7
  sign-out-alt; f2f5
  signal; f012
  signature; f5b7
  sim-card; f7c4
  simplybuilt; f215
  sink e06d
  sistrix; f3ee
  sitemap; f0e8
  sith; f512
  skating; f7c5
  sketch; f7c6
  skiing; f7c9
  skiing-nordic; f7ca
  skull; f54c
  skull-crossbones; f714
  skyatlas; f216
  skype; f17e
  slack; f198
  slack-hash; f3ef
  slash; f715
  sleigh; f7cc
  sliders-h; f1de
  slideshare; f1e7
  smile; f118
  smile-beam; f5b8
  smile-wink; f4da
  smog; f75f
  smoking; f48d
  smoking-ban; f54d
  sms; f7cd
  snapchat; f2ab
  snapchat-ghost; f2ac
  snapchat-square; f2ad
  snowboarding; f7ce
  snowflake; f2dc
  snowman; f7d0
  snowplow; f7d2
  soap e06e
  socks; f696
  solar-panel; f5ba
  sort; f0dc
  sort-alpha-down; f15d
  sort-alpha-down-alt; f881
  sort-alpha-up; f15e
  sort-alpha-up-alt; f882
  sort-amount-down; f160
  sort-amount-down-alt; f884
  sort-amount-up; f161
  sort-amount-up-alt; f885
  sort-down; f0dd
  sort-numeric-down; f162
  sort-numeric-down-alt; f886
  sort-numeric-up; f163
  sort-numeric-up-alt; f887
  sort-up; f0de
  soundcloud; f1be
  sourcetree; f7d3
  spa; f5bb
  space-shuttle; f197
  speakap; f3f3
  speaker-deck; f83c
  spell-check; f891
  spider; f717
  spinner; f110
  splotch; f5bc
  spotify; f1bc
  spray-can; f5bd
  square; f0c8
  square-full; f45c
  square-root-alt; f698
  squarespace; f5be
  stack-exchange; f18d
  stack-overflow; f16c
  stackpath; f842
  stamp; f5bf
  star; f005
  star-and-crescent; f699
  star-half; f089
  star-half-alt; f5c0
  star-of-david; f69a
  star-of-life; f621
  staylinked; f3f5
  steam; f1b6
  steam-square; f1b7
  steam-symbol; f3f6
  step-backward; f048
  step-forward; f051
  stethoscope; f0f1
  sticker-mule; f3f7
  sticky-note; f249
  stop; f04d
  stop-circle; f28d
  stopwatch; f2f2
  stopwatch-20 e06f
  store; f54e
  store-alt; f54f
  store-alt-slash e070
  store-slash e071
  strava; f428
  stream; f550
  street-view; f21d
  strikethrough; f0cc
  stripe; f429
  stripe-s; f42a
  stroopwafel; f551
  studiovinari; f3f8
  stumbleupon; f1a4
  stumbleupon-circle; f1a3
  subscript; f12c
  subway; f239
  suitcase; f0f2
  suitcase-rolling; f5c1
  sun; f185
  superpowers; f2dd
  superscript; f12b
  supple; f3f9
  surprise; f5c2
  suse; f7d6
  swatchbook; f5c3
  swift; f8e1
  swimmer; f5c4
  swimming-pool; f5c5
  symfony; f83d
  synagogue; f69b
  sync; f021
  sync-alt; f2f1
  syringe; f48e
  table; f0ce
  table-tennis; f45d
  tablet; f10a
  tablet-alt; f3fa
  tablets; f490
  tachometer-alt; f3fd
  tag; f02b
  tags; f02c
  tape; f4db
  tasks; f0ae
  taxi; f1ba
  teamspeak; f4f9
  teeth; f62e
  teeth-open; f62f
  telegram; f2c6
  telegram-plane; f3fe
  temperature-high; f769
  temperature-low; f76b
  tencent-weibo; f1d5
  tenge; f7d7
  terminal; f120
  text-height; f034
  text-width; f035
  th; f00a
  th-large; f009
  th-list; f00b
  the-red-yeti; f69d
  theater-masks; f630
  themeco; f5c6
  themeisle; f2b2
  thermometer; f491
  thermometer-empty; f2cb
  thermometer-full; f2c7
  thermometer-half; f2c9
  thermometer-quarter; f2ca
  thermometer-three-quarters; f2c8
  think-peaks; f731
  thumbs-down; f165
  thumbs-up; f164
  thumbtack; f08d
  ticket-alt; f3ff
  tiktok e07b
  times; f00d
  times-circle; f057
  tint; f043
  tint-slash; f5c7
  tired; f5c8
  toggle-off; f204
  toggle-on; f205
  toilet; f7d8
  toilet-paper; f71e
  toilet-paper-slash e072
  toolbox; f552
  tools; f7d9
  tooth; f5c9
  torah; f6a0
  torii-gate; f6a1
  tractor; f722
  trade-federation; f513
  trademark; f25c
  traffic-light; f637
  trailer e041
  train; f238
  tram; f7da
  transgender; f224
  transgender-alt; f225
  trash; f1f8
  trash-alt; f2ed
  trash-restore; f829
  trash-restore-alt; f82a
  tree; f1bb
  trello; f181
  trophy; f091
  truck; f0d1
  truck-loading; f4de
  truck-monster; f63b
  truck-moving; f4df
  truck-pickup; f63c
  tshirt; f553
  tty; f1e4
  tumblr; f173
  tumblr-square; f174
  tv; f26c
  twitch; f1e8
  twitter; f099
  twitter-square; f081
  typo3; f42b
  uber; f402
  ubuntu; f7df
  uikit; f403
  umbraco; f8e8
  umbrella; f0e9
  umbrella-beach; f5ca
  uncharted e084
  underline; f0cd
  undo; f0e2
  undo-alt; f2ea
  uniregistry; f404
  unity e049
  universal-access; f29a
  university; f19c
  unlink; f127
  unlock; f09c
  unlock-alt; f13e
  unsplash e07c
  untappd; f405
  upload; f093
  ups; f7e0
  usb; f287
  user; f007
  user-alt; f406
  user-alt-slash; f4fa
  user-astronaut; f4fb
  user-check; f4fc
  user-circle; f2bd
  user-clock; f4fd
  user-cog; f4fe
  user-edit; f4ff
  user-friends; f500
  user-graduate; f501
  user-injured; f728
  user-lock; f502
  user-md; f0f0
  user-minus; f503
  user-ninja; f504
  user-nurse; f82f
  user-plus; f234
  user-secret; f21b
  user-shield; f505
  user-slash; f506
  user-tag; f507
  user-tie; f508
  user-times; f235
  users; f0c0
  users-cog; f509
  users-slash e073
  usps; f7e1
  ussunnah; f407
  utensil-spoon; f2e5
  utensils; f2e7
  vaadin; f408
  vector-square; f5cb
  venus; f221
  venus-double; f226
  venus-mars; f228
  vest e085
  vest-patches e086
  viacoin; f237
  viadeo; f2a9
  viadeo-square; f2aa
  vial; f492
  vials; f493
  viber; f409
  video; f03d
  video-slash; f4e2
  vihara; f6a7
  vimeo; f40a
  vimeo-square; f194
  vimeo-v; f27d
  vine; f1ca
  virus e074
  virus-slash e075
  viruses e076
  vk; f189
  vnv; f40b
  voicemail; f897
  volleyball-ball; f45f
  volume-down; f027
  volume-mute; f6a9
  volume-off; f026
  volume-up; f028
  vote-yea; f772
  vr-cardboard; f729
  vuejs; f41f
  walking; f554
  wallet; f555
  warehouse; f494
  watchman-monitoring e087
  water; f773
  wave-square; f83e
  waze; f83f
  weebly; f5cc
  weibo; f18a
  weight; f496
  weight-hanging; f5cd
  weixin; f1d7
  whatsapp; f232
  whatsapp-square; f40c
  wheelchair; f193
  whmcs; f40d
  wifi; f1eb
  wikipedia-w; f266
  wind; f72e
  window-close; f410
  window-maximize; f2d0
  window-minimize; f2d1
  window-restore; f2d2
  windows; f17a
  wine-bottle; f72f
  wine-glass; f4e3
  wine-glass-alt; f5ce
  wix; f5cf
  wizards-of-the-coast; f730
  wodu e088
  wolf-pack-battalion; f514
  won-sign; f159
  wordpress; f19a
  wordpress-simple; f411
  wpbeginner; f297
  wpexplorer; f2de
  wpforms; f298
  wpressr; f3e4
  wrench; f0ad
  x-ray; f497
  xbox; f412
  xing; f168
  xing-square; f169
  y-combinator; f23b
  yahoo; f19e
  yammer; f840
  yandex; f413
  yandex-international; f414
  yarn; f7e3
  yelp; f1e9
  yen-sign; f157
  yin-yang; f6ad
  yoast; f2b1
  youtube; f167
  youtube-square; f431
  zhihu; f63f
  |