@fugood/bricks-project 2.23.0-beta.9 → 2.23.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api/instance.ts +37 -5
- package/compile/action-name-map.ts +107 -0
- package/compile/index.ts +172 -66
- package/compile/util.ts +13 -4
- package/package.json +9 -5
- package/skills/bricks-project/SKILL.md +32 -0
- package/skills/bricks-project/rules/animation.md +159 -0
- package/skills/bricks-project/rules/architecture-patterns.md +62 -0
- package/skills/bricks-project/rules/automations.md +221 -0
- package/skills/bricks-project/rules/buttress.md +153 -0
- package/skills/bricks-project/rules/data-calculation.md +208 -0
- package/skills/bricks-project/rules/local-sync.md +129 -0
- package/skills/bricks-project/rules/media-flow.md +158 -0
- package/skills/bricks-project/rules/remote-data-bank.md +196 -0
- package/skills/bricks-project/rules/standby-transition.md +124 -0
- package/skills/rive-marketplace/SKILL.md +99 -0
- package/tools/deploy.ts +74 -12
- package/tools/icons/.gitattributes +1 -0
- package/tools/icons/fa6pro-glyphmap.json +4686 -0
- package/tools/icons/fa6pro-meta.json +26127 -0
- package/tools/mcp-server.ts +818 -9
- package/tools/postinstall.ts +75 -13
- package/tools/preview-main.mjs +54 -4
- package/tools/preview.ts +54 -7
- package/tools/pull.ts +37 -16
- package/types/automation.ts +232 -0
- package/types/brick-base.ts +1 -0
- package/types/bricks/Camera.ts +26 -10
- package/types/bricks/Chart.ts +1 -0
- package/types/bricks/GenerativeMedia.ts +21 -3
- package/types/bricks/Icon.ts +1 -0
- package/types/bricks/Image.ts +6 -0
- package/types/bricks/Items.ts +1 -0
- package/types/bricks/Lottie.ts +1 -0
- package/types/bricks/Maps.ts +254 -0
- package/types/bricks/QrCode.ts +1 -0
- package/types/bricks/Rect.ts +1 -0
- package/types/bricks/RichText.ts +1 -0
- package/types/bricks/Rive.ts +1 -0
- package/types/bricks/Slideshow.ts +1 -0
- package/types/bricks/Svg.ts +1 -0
- package/types/bricks/Text.ts +1 -0
- package/types/bricks/TextInput.ts +1 -0
- package/types/bricks/Video.ts +1 -0
- package/types/bricks/VideoStreaming.ts +1 -0
- package/types/bricks/WebRtcStream.ts +1 -0
- package/types/bricks/WebView.ts +8 -1
- package/types/bricks/index.ts +2 -0
- package/types/canvas.ts +1 -0
- package/types/common.ts +2 -0
- package/types/data-calc-command.ts +7003 -0
- package/types/data-calc-script.ts +21 -0
- package/types/data-calc.ts +3 -6977
- package/types/data.ts +3 -0
- package/types/generators/AlarmClock.ts +2 -0
- package/types/generators/Assistant.ts +30 -6
- package/types/generators/BleCentral.ts +2 -0
- package/types/generators/BlePeripheral.ts +2 -0
- package/types/generators/CanvasMap.ts +2 -0
- package/types/generators/CastlesPay.ts +2 -0
- package/types/generators/DataBank.ts +2 -0
- package/types/generators/File.ts +2 -0
- package/types/generators/GraphQl.ts +2 -0
- package/types/generators/Http.ts +84 -2
- package/types/generators/HttpServer.ts +5 -1
- package/types/generators/Information.ts +2 -0
- package/types/generators/Intent.ts +51 -0
- package/types/generators/Iterator.ts +11 -2
- package/types/generators/Keyboard.ts +2 -0
- package/types/generators/LlmAnthropicCompat.ts +2 -0
- package/types/generators/LlmAppleBuiltin.ts +144 -0
- package/types/generators/LlmGgml.ts +28 -4
- package/types/generators/LlmOnnx.ts +2 -0
- package/types/generators/LlmOpenAiCompat.ts +2 -0
- package/types/generators/LlmQualcommAiEngine.ts +2 -0
- package/types/generators/Mcp.ts +6 -4
- package/types/generators/McpServer.ts +8 -6
- package/types/generators/MediaFlow.ts +2 -0
- package/types/generators/MqttBroker.ts +2 -0
- package/types/generators/MqttClient.ts +2 -0
- package/types/generators/Question.ts +9 -0
- package/types/generators/RealtimeTranscription.ts +18 -8
- package/types/generators/RerankerGgml.ts +23 -16
- package/types/generators/SerialPort.ts +2 -0
- package/types/generators/SoundPlayer.ts +2 -0
- package/types/generators/SoundRecorder.ts +2 -0
- package/types/generators/SpeechToTextGgml.ts +19 -4
- package/types/generators/SpeechToTextOnnx.ts +2 -0
- package/types/generators/SpeechToTextPlatform.ts +2 -0
- package/types/generators/SqLite.ts +32 -1
- package/types/generators/Step.ts +2 -0
- package/types/generators/SttAppleBuiltin.ts +117 -0
- package/types/generators/Tcp.ts +2 -0
- package/types/generators/TcpServer.ts +5 -1
- package/types/generators/TextToSpeechApple.ts +113 -0
- package/types/generators/TextToSpeechAppleBuiltin.ts +114 -0
- package/types/generators/TextToSpeechGgml.ts +24 -3
- package/types/generators/TextToSpeechOnnx.ts +2 -0
- package/types/generators/TextToSpeechOpenAiLike.ts +2 -0
- package/types/generators/ThermalPrinter.ts +2 -0
- package/types/generators/Tick.ts +5 -1
- package/types/generators/TtsAppleBuiltin.ts +105 -0
- package/types/generators/Udp.ts +2 -0
- package/types/generators/VadGgml.ts +4 -2
- package/types/generators/VadOnnx.ts +201 -0
- package/types/generators/VadTraditional.ts +123 -0
- package/types/generators/VectorStore.ts +15 -2
- package/types/generators/Watchdog.ts +2 -0
- package/types/generators/WebCrawler.ts +2 -0
- package/types/generators/WebRtc.ts +4 -2
- package/types/generators/WebSocket.ts +2 -0
- package/types/generators/index.ts +5 -0
- package/types/index.ts +3 -0
- package/types/system.ts +48 -6
- package/utils/calc.ts +15 -9
- package/utils/data.ts +1 -0
- package/utils/event-props.ts +112 -2
- package/utils/id.ts +3 -1
|
@@ -0,0 +1,4686 @@
|
|
|
1
|
+
{
|
|
2
|
+
"0": 48,
|
|
3
|
+
"1": 49,
|
|
4
|
+
"2": 50,
|
|
5
|
+
"3": 51,
|
|
6
|
+
"4": 52,
|
|
7
|
+
"5": 53,
|
|
8
|
+
"6": 54,
|
|
9
|
+
"7": 55,
|
|
10
|
+
"8": 56,
|
|
11
|
+
"9": 57,
|
|
12
|
+
"100": 58396,
|
|
13
|
+
"fill-drip": 62838,
|
|
14
|
+
"arrows-to-circle": 58557,
|
|
15
|
+
"circle-chevron-right": 61752,
|
|
16
|
+
"chevron-circle-right": 61752,
|
|
17
|
+
"wagon-covered": 63726,
|
|
18
|
+
"line-height": 63601,
|
|
19
|
+
"bagel": 58327,
|
|
20
|
+
"transporter-7": 58024,
|
|
21
|
+
"at": 64,
|
|
22
|
+
"rectangles-mixed": 58147,
|
|
23
|
+
"phone-arrow-up-right": 57892,
|
|
24
|
+
"phone-arrow-up": 57892,
|
|
25
|
+
"phone-outgoing": 57892,
|
|
26
|
+
"trash-can": 62189,
|
|
27
|
+
"trash-alt": 62189,
|
|
28
|
+
"circle-l": 57620,
|
|
29
|
+
"head-side-goggles": 63210,
|
|
30
|
+
"head-vr": 63210,
|
|
31
|
+
"text-height": 61492,
|
|
32
|
+
"user-xmark": 62005,
|
|
33
|
+
"user-times": 62005,
|
|
34
|
+
"face-hand-yawn": 58233,
|
|
35
|
+
"gauge-simple-min": 63021,
|
|
36
|
+
"tachometer-slowest": 63021,
|
|
37
|
+
"stethoscope": 61681,
|
|
38
|
+
"coffin": 63174,
|
|
39
|
+
"message": 62074,
|
|
40
|
+
"comment-alt": 62074,
|
|
41
|
+
"salad": 63518,
|
|
42
|
+
"bowl-salad": 63518,
|
|
43
|
+
"info": 61737,
|
|
44
|
+
"robot-astromech": 58066,
|
|
45
|
+
"ring-diamond": 58795,
|
|
46
|
+
"fondue-pot": 58381,
|
|
47
|
+
"theta": 63134,
|
|
48
|
+
"face-hand-peeking": 58497,
|
|
49
|
+
"square-user": 57987,
|
|
50
|
+
"down-left-and-up-right-to-center": 62498,
|
|
51
|
+
"compress-alt": 62498,
|
|
52
|
+
"explosion": 58601,
|
|
53
|
+
"file-lines": 61788,
|
|
54
|
+
"file-alt": 61788,
|
|
55
|
+
"file-text": 61788,
|
|
56
|
+
"wave-square": 63550,
|
|
57
|
+
"ring": 63243,
|
|
58
|
+
"building-un": 58585,
|
|
59
|
+
"dice-three": 62759,
|
|
60
|
+
"tire-pressure-warning": 63027,
|
|
61
|
+
"wifi-fair": 63147,
|
|
62
|
+
"wifi-2": 63147,
|
|
63
|
+
"calendar-days": 61555,
|
|
64
|
+
"calendar-alt": 61555,
|
|
65
|
+
"mp3-player": 63694,
|
|
66
|
+
"anchor-circle-check": 58538,
|
|
67
|
+
"tally-4": 58007,
|
|
68
|
+
"rectangle-history": 58530,
|
|
69
|
+
"building-circle-arrow-right": 58577,
|
|
70
|
+
"volleyball": 62559,
|
|
71
|
+
"volleyball-ball": 62559,
|
|
72
|
+
"sun-haze": 63333,
|
|
73
|
+
"text-size": 63636,
|
|
74
|
+
"ufo": 57415,
|
|
75
|
+
"fork": 62179,
|
|
76
|
+
"utensil-fork": 62179,
|
|
77
|
+
"arrows-up-to-line": 58562,
|
|
78
|
+
"mobile-signal": 57839,
|
|
79
|
+
"barcode-scan": 62565,
|
|
80
|
+
"sort-down": 61661,
|
|
81
|
+
"sort-desc": 61661,
|
|
82
|
+
"folder-arrow-down": 57427,
|
|
83
|
+
"folder-download": 57427,
|
|
84
|
+
"circle-minus": 61526,
|
|
85
|
+
"minus-circle": 61526,
|
|
86
|
+
"face-icicles": 58236,
|
|
87
|
+
"shovel": 63251,
|
|
88
|
+
"door-open": 62763,
|
|
89
|
+
"films": 57722,
|
|
90
|
+
"right-from-bracket": 62197,
|
|
91
|
+
"sign-out-alt": 62197,
|
|
92
|
+
"face-glasses": 58231,
|
|
93
|
+
"nfc": 57847,
|
|
94
|
+
"atom": 62930,
|
|
95
|
+
"soap": 57454,
|
|
96
|
+
"icons": 63597,
|
|
97
|
+
"heart-music-camera-bolt": 63597,
|
|
98
|
+
"microphone-lines-slash": 62777,
|
|
99
|
+
"microphone-alt-slash": 62777,
|
|
100
|
+
"closed-captioning-slash": 57653,
|
|
101
|
+
"calculator-simple": 63052,
|
|
102
|
+
"calculator-alt": 63052,
|
|
103
|
+
"bridge-circle-check": 58569,
|
|
104
|
+
"sliders-up": 62449,
|
|
105
|
+
"sliders-v": 62449,
|
|
106
|
+
"location-minus": 62985,
|
|
107
|
+
"map-marker-minus": 62985,
|
|
108
|
+
"pump-medical": 57450,
|
|
109
|
+
"fingerprint": 62839,
|
|
110
|
+
"ski-boot": 58316,
|
|
111
|
+
"standard-definition": 57994,
|
|
112
|
+
"rectangle-sd": 57994,
|
|
113
|
+
"h1": 62227,
|
|
114
|
+
"hand-point-right": 61604,
|
|
115
|
+
"magnifying-glass-location": 63113,
|
|
116
|
+
"search-location": 63113,
|
|
117
|
+
"message-bot": 58296,
|
|
118
|
+
"forward-step": 61521,
|
|
119
|
+
"step-forward": 61521,
|
|
120
|
+
"face-smile-beam": 62904,
|
|
121
|
+
"smile-beam": 62904,
|
|
122
|
+
"light-ceiling": 57366,
|
|
123
|
+
"message-exclamation": 62629,
|
|
124
|
+
"comment-alt-exclamation": 62629,
|
|
125
|
+
"bowl-scoop": 58334,
|
|
126
|
+
"bowl-shaved-ice": 58334,
|
|
127
|
+
"square-x": 57990,
|
|
128
|
+
"utility-pole-double": 58052,
|
|
129
|
+
"flag-checkered": 61726,
|
|
130
|
+
"chevrons-up": 62245,
|
|
131
|
+
"chevron-double-up": 62245,
|
|
132
|
+
"football": 62542,
|
|
133
|
+
"football-ball": 62542,
|
|
134
|
+
"user-vneck": 58465,
|
|
135
|
+
"school-circle-exclamation": 58732,
|
|
136
|
+
"crop": 61733,
|
|
137
|
+
"angles-down": 61699,
|
|
138
|
+
"angle-double-down": 61699,
|
|
139
|
+
"users-rectangle": 58772,
|
|
140
|
+
"people-roof": 58679,
|
|
141
|
+
"square-arrow-right": 62267,
|
|
142
|
+
"arrow-square-right": 62267,
|
|
143
|
+
"location-plus": 62986,
|
|
144
|
+
"map-marker-plus": 62986,
|
|
145
|
+
"lightbulb-exclamation-on": 57802,
|
|
146
|
+
"people-line": 58676,
|
|
147
|
+
"beer-mug-empty": 61692,
|
|
148
|
+
"beer": 61692,
|
|
149
|
+
"crate-empty": 57681,
|
|
150
|
+
"diagram-predecessor": 58487,
|
|
151
|
+
"transporter": 57410,
|
|
152
|
+
"calendar-circle-user": 58481,
|
|
153
|
+
"arrow-up-long": 61814,
|
|
154
|
+
"long-arrow-up": 61814,
|
|
155
|
+
"person-carry-box": 62671,
|
|
156
|
+
"person-carry": 62671,
|
|
157
|
+
"fire-flame-simple": 62570,
|
|
158
|
+
"burn": 62570,
|
|
159
|
+
"person": 61827,
|
|
160
|
+
"male": 61827,
|
|
161
|
+
"laptop": 61705,
|
|
162
|
+
"file-csv": 63197,
|
|
163
|
+
"menorah": 63094,
|
|
164
|
+
"union": 63138,
|
|
165
|
+
"chevrons-left": 62243,
|
|
166
|
+
"chevron-double-left": 62243,
|
|
167
|
+
"circle-heart": 62663,
|
|
168
|
+
"heart-circle": 62663,
|
|
169
|
+
"truck-plane": 58767,
|
|
170
|
+
"record-vinyl": 63705,
|
|
171
|
+
"bring-forward": 63574,
|
|
172
|
+
"square-p": 57977,
|
|
173
|
+
"face-grin-stars": 62855,
|
|
174
|
+
"grin-stars": 62855,
|
|
175
|
+
"sigma": 63115,
|
|
176
|
+
"camera-movie": 63657,
|
|
177
|
+
"bong": 62812,
|
|
178
|
+
"clarinet": 63661,
|
|
179
|
+
"truck-flatbed": 58038,
|
|
180
|
+
"spaghetti-monster-flying": 63099,
|
|
181
|
+
"pastafarianism": 63099,
|
|
182
|
+
"arrow-down-up-across-line": 58543,
|
|
183
|
+
"leaf-heart": 62667,
|
|
184
|
+
"house-building": 57777,
|
|
185
|
+
"cheese-swiss": 63472,
|
|
186
|
+
"spoon": 62181,
|
|
187
|
+
"utensil-spoon": 62181,
|
|
188
|
+
"jar-wheat": 58647,
|
|
189
|
+
"envelopes-bulk": 63092,
|
|
190
|
+
"mail-bulk": 63092,
|
|
191
|
+
"file-circle-exclamation": 58603,
|
|
192
|
+
"bow-arrow": 63161,
|
|
193
|
+
"cart-xmark": 57565,
|
|
194
|
+
"hexagon-xmark": 62190,
|
|
195
|
+
"times-hexagon": 62190,
|
|
196
|
+
"xmark-hexagon": 62190,
|
|
197
|
+
"circle-h": 62590,
|
|
198
|
+
"hospital-symbol": 62590,
|
|
199
|
+
"merge": 58662,
|
|
200
|
+
"pager": 63509,
|
|
201
|
+
"cart-minus": 57563,
|
|
202
|
+
"address-book": 62137,
|
|
203
|
+
"contact-book": 62137,
|
|
204
|
+
"pan-frying": 58412,
|
|
205
|
+
"grid": 57749,
|
|
206
|
+
"grid-3": 57749,
|
|
207
|
+
"football-helmet": 62543,
|
|
208
|
+
"hand-love": 57765,
|
|
209
|
+
"trees": 63268,
|
|
210
|
+
"strikethrough": 61644,
|
|
211
|
+
"page": 58408,
|
|
212
|
+
"k": 75,
|
|
213
|
+
"diagram-previous": 58488,
|
|
214
|
+
"gauge-min": 63016,
|
|
215
|
+
"tachometer-alt-slowest": 63016,
|
|
216
|
+
"folder-grid": 57736,
|
|
217
|
+
"eggplant": 57708,
|
|
218
|
+
"ram": 63242,
|
|
219
|
+
"landmark-flag": 58652,
|
|
220
|
+
"lips": 62976,
|
|
221
|
+
"pencil": 62211,
|
|
222
|
+
"pencil-alt": 62211,
|
|
223
|
+
"backward": 61514,
|
|
224
|
+
"caret-right": 61658,
|
|
225
|
+
"comments": 61574,
|
|
226
|
+
"paste": 61674,
|
|
227
|
+
"file-clipboard": 61674,
|
|
228
|
+
"desktop-arrow-down": 57685,
|
|
229
|
+
"code-pull-request": 57660,
|
|
230
|
+
"pumpkin": 63239,
|
|
231
|
+
"clipboard-list": 62573,
|
|
232
|
+
"pen-field": 57873,
|
|
233
|
+
"blueberries": 58088,
|
|
234
|
+
"truck-ramp-box": 62686,
|
|
235
|
+
"truck-loading": 62686,
|
|
236
|
+
"note": 57855,
|
|
237
|
+
"arrow-down-to-square": 57494,
|
|
238
|
+
"user-check": 62716,
|
|
239
|
+
"cloud-xmark": 58207,
|
|
240
|
+
"vial-virus": 58775,
|
|
241
|
+
"book-blank": 62937,
|
|
242
|
+
"book-alt": 62937,
|
|
243
|
+
"golf-flag-hole": 58284,
|
|
244
|
+
"message-arrow-down": 57819,
|
|
245
|
+
"comment-alt-arrow-down": 57819,
|
|
246
|
+
"face-unamused": 58271,
|
|
247
|
+
"sheet-plastic": 58737,
|
|
248
|
+
"circle-9": 57590,
|
|
249
|
+
"blog": 63361,
|
|
250
|
+
"user-ninja": 62724,
|
|
251
|
+
"pencil-slash": 57877,
|
|
252
|
+
"bowling-pins": 62519,
|
|
253
|
+
"person-arrow-up-from-line": 58681,
|
|
254
|
+
"down-right": 57707,
|
|
255
|
+
"scroll-torah": 63136,
|
|
256
|
+
"torah": 63136,
|
|
257
|
+
"webhook": 58837,
|
|
258
|
+
"blinds-open": 63740,
|
|
259
|
+
"fence": 58115,
|
|
260
|
+
"up": 62295,
|
|
261
|
+
"arrow-alt-up": 62295,
|
|
262
|
+
"broom-ball": 62552,
|
|
263
|
+
"quidditch": 62552,
|
|
264
|
+
"quidditch-broom-ball": 62552,
|
|
265
|
+
"drumstick": 63190,
|
|
266
|
+
"square-v": 57988,
|
|
267
|
+
"face-awesome": 58377,
|
|
268
|
+
"gave-dandy": 58377,
|
|
269
|
+
"dial-off": 57698,
|
|
270
|
+
"toggle-off": 61956,
|
|
271
|
+
"face-smile-horns": 58257,
|
|
272
|
+
"box-archive": 61831,
|
|
273
|
+
"archive": 61831,
|
|
274
|
+
"grapes": 58118,
|
|
275
|
+
"person-drowning": 58693,
|
|
276
|
+
"dial-max": 57694,
|
|
277
|
+
"circle-m": 57621,
|
|
278
|
+
"calendar-image": 57556,
|
|
279
|
+
"circle-caret-down": 62253,
|
|
280
|
+
"caret-circle-down": 62253,
|
|
281
|
+
"arrow-down-9-1": 63622,
|
|
282
|
+
"sort-numeric-desc": 63622,
|
|
283
|
+
"sort-numeric-down-alt": 63622,
|
|
284
|
+
"face-grin-tongue-squint": 62858,
|
|
285
|
+
"grin-tongue-squint": 62858,
|
|
286
|
+
"shish-kebab": 63521,
|
|
287
|
+
"spray-can": 62909,
|
|
288
|
+
"alarm-snooze": 63557,
|
|
289
|
+
"scarecrow": 63245,
|
|
290
|
+
"truck-monster": 63035,
|
|
291
|
+
"gift-card": 63075,
|
|
292
|
+
"w": 87,
|
|
293
|
+
"code-pull-request-draft": 58362,
|
|
294
|
+
"square-b": 57956,
|
|
295
|
+
"elephant": 63194,
|
|
296
|
+
"earth-africa": 62844,
|
|
297
|
+
"globe-africa": 62844,
|
|
298
|
+
"rainbow": 63323,
|
|
299
|
+
"circle-notch": 61902,
|
|
300
|
+
"tablet-screen-button": 62458,
|
|
301
|
+
"tablet-alt": 62458,
|
|
302
|
+
"paw": 61872,
|
|
303
|
+
"message-question": 57827,
|
|
304
|
+
"cloud": 61634,
|
|
305
|
+
"trowel-bricks": 58762,
|
|
306
|
+
"square-3": 57944,
|
|
307
|
+
"face-flushed": 62841,
|
|
308
|
+
"flushed": 62841,
|
|
309
|
+
"hospital-user": 63501,
|
|
310
|
+
"microwave": 57371,
|
|
311
|
+
"chf-sign": 58882,
|
|
312
|
+
"tent-arrow-left-right": 58751,
|
|
313
|
+
"cart-circle-arrow-up": 58352,
|
|
314
|
+
"trash-clock": 58032,
|
|
315
|
+
"gavel": 61667,
|
|
316
|
+
"legal": 61667,
|
|
317
|
+
"sprinkler-ceiling": 58444,
|
|
318
|
+
"browsers": 57547,
|
|
319
|
+
"trillium": 58760,
|
|
320
|
+
"music-slash": 63697,
|
|
321
|
+
"truck-ramp": 62688,
|
|
322
|
+
"binoculars": 61925,
|
|
323
|
+
"microphone-slash": 61745,
|
|
324
|
+
"box-tissue": 57435,
|
|
325
|
+
"circle-c": 57601,
|
|
326
|
+
"star-christmas": 63444,
|
|
327
|
+
"chart-bullet": 57569,
|
|
328
|
+
"motorcycle": 61980,
|
|
329
|
+
"tree-christmas": 63451,
|
|
330
|
+
"tire-flat": 63026,
|
|
331
|
+
"sunglasses": 63634,
|
|
332
|
+
"badge": 62261,
|
|
333
|
+
"message-pen": 62628,
|
|
334
|
+
"comment-alt-edit": 62628,
|
|
335
|
+
"message-edit": 62628,
|
|
336
|
+
"bell-concierge": 62818,
|
|
337
|
+
"concierge-bell": 62818,
|
|
338
|
+
"pen-ruler": 62894,
|
|
339
|
+
"pencil-ruler": 62894,
|
|
340
|
+
"arrow-progress": 58847,
|
|
341
|
+
"chess-rook-piece": 62536,
|
|
342
|
+
"chess-rook-alt": 62536,
|
|
343
|
+
"square-root": 63127,
|
|
344
|
+
"album-collection-circle-plus": 58510,
|
|
345
|
+
"people-arrows": 57448,
|
|
346
|
+
"people-arrows-left-right": 57448,
|
|
347
|
+
"face-angry-horns": 58216,
|
|
348
|
+
"mars-and-venus-burst": 58659,
|
|
349
|
+
"tombstone": 63264,
|
|
350
|
+
"square-caret-right": 61778,
|
|
351
|
+
"caret-square-right": 61778,
|
|
352
|
+
"scissors": 61636,
|
|
353
|
+
"cut": 61636,
|
|
354
|
+
"list-music": 63689,
|
|
355
|
+
"sun-plant-wilt": 58746,
|
|
356
|
+
"toilets-portable": 58756,
|
|
357
|
+
"hockey-puck": 62547,
|
|
358
|
+
"mustache": 58812,
|
|
359
|
+
"hyphen": 45,
|
|
360
|
+
"table": 61646,
|
|
361
|
+
"user-chef": 58322,
|
|
362
|
+
"message-image": 57824,
|
|
363
|
+
"comment-alt-image": 57824,
|
|
364
|
+
"users-medical": 63536,
|
|
365
|
+
"sensor-triangle-exclamation": 57385,
|
|
366
|
+
"sensor-alert": 57385,
|
|
367
|
+
"magnifying-glass-arrow-right": 58657,
|
|
368
|
+
"tachograph-digital": 62822,
|
|
369
|
+
"digital-tachograph": 62822,
|
|
370
|
+
"face-mask": 58239,
|
|
371
|
+
"pickleball": 58421,
|
|
372
|
+
"star-sharp-half": 57996,
|
|
373
|
+
"users-slash": 57459,
|
|
374
|
+
"clover": 57657,
|
|
375
|
+
"meat": 63508,
|
|
376
|
+
"reply": 62437,
|
|
377
|
+
"mail-reply": 62437,
|
|
378
|
+
"star-and-crescent": 63129,
|
|
379
|
+
"empty-set": 63062,
|
|
380
|
+
"house-fire": 58636,
|
|
381
|
+
"square-minus": 61766,
|
|
382
|
+
"minus-square": 61766,
|
|
383
|
+
"helicopter": 62771,
|
|
384
|
+
"bird": 58473,
|
|
385
|
+
"compass": 61774,
|
|
386
|
+
"square-caret-down": 61776,
|
|
387
|
+
"caret-square-down": 61776,
|
|
388
|
+
"heart-half-stroke": 57772,
|
|
389
|
+
"heart-half-alt": 57772,
|
|
390
|
+
"file-circle-question": 58607,
|
|
391
|
+
"laptop-code": 62972,
|
|
392
|
+
"joystick": 63685,
|
|
393
|
+
"grill-fire": 58788,
|
|
394
|
+
"rectangle-vertical-history": 57911,
|
|
395
|
+
"swatchbook": 62915,
|
|
396
|
+
"prescription-bottle": 62597,
|
|
397
|
+
"bars": 61641,
|
|
398
|
+
"navicon": 61641,
|
|
399
|
+
"keyboard-left": 57795,
|
|
400
|
+
"people-group": 58675,
|
|
401
|
+
"hourglass-end": 62035,
|
|
402
|
+
"hourglass-3": 62035,
|
|
403
|
+
"heart-crack": 63401,
|
|
404
|
+
"heart-broken": 63401,
|
|
405
|
+
"face-beam-hand-over-mouth": 58492,
|
|
406
|
+
"droplet-percent": 63312,
|
|
407
|
+
"humidity": 63312,
|
|
408
|
+
"square-up-right": 62304,
|
|
409
|
+
"external-link-square-alt": 62304,
|
|
410
|
+
"face-kiss-beam": 62871,
|
|
411
|
+
"kiss-beam": 62871,
|
|
412
|
+
"corn": 63175,
|
|
413
|
+
"roller-coaster": 58148,
|
|
414
|
+
"photo-film-music": 57896,
|
|
415
|
+
"radar": 57380,
|
|
416
|
+
"sickle": 63522,
|
|
417
|
+
"film": 61448,
|
|
418
|
+
"coconut": 58102,
|
|
419
|
+
"ruler-horizontal": 62791,
|
|
420
|
+
"shield-cross": 63250,
|
|
421
|
+
"cassette-tape": 63659,
|
|
422
|
+
"square-terminal": 58154,
|
|
423
|
+
"people-robbery": 58678,
|
|
424
|
+
"lightbulb": 61675,
|
|
425
|
+
"caret-left": 61657,
|
|
426
|
+
"comment-middle": 57673,
|
|
427
|
+
"trash-can-list": 58027,
|
|
428
|
+
"block": 58474,
|
|
429
|
+
"circle-exclamation": 61546,
|
|
430
|
+
"exclamation-circle": 61546,
|
|
431
|
+
"school-circle-xmark": 58733,
|
|
432
|
+
"arrow-right-from-bracket": 61579,
|
|
433
|
+
"sign-out": 61579,
|
|
434
|
+
"face-frown-slight": 58230,
|
|
435
|
+
"circle-chevron-down": 61754,
|
|
436
|
+
"chevron-circle-down": 61754,
|
|
437
|
+
"sidebar-flip": 57935,
|
|
438
|
+
"unlock-keyhole": 61758,
|
|
439
|
+
"unlock-alt": 61758,
|
|
440
|
+
"temperature-list": 58009,
|
|
441
|
+
"cloud-showers-heavy": 63296,
|
|
442
|
+
"headphones-simple": 62863,
|
|
443
|
+
"headphones-alt": 62863,
|
|
444
|
+
"sitemap": 61672,
|
|
445
|
+
"pipe-section": 58424,
|
|
446
|
+
"space-station-moon-construction": 57396,
|
|
447
|
+
"space-station-moon-alt": 57396,
|
|
448
|
+
"circle-dollar-to-slot": 62649,
|
|
449
|
+
"donate": 62649,
|
|
450
|
+
"memory": 62776,
|
|
451
|
+
"face-sleeping": 58253,
|
|
452
|
+
"road-spikes": 58728,
|
|
453
|
+
"fire-burner": 58609,
|
|
454
|
+
"squirrel": 63258,
|
|
455
|
+
"arrow-up-to-line": 62273,
|
|
456
|
+
"arrow-to-top": 62273,
|
|
457
|
+
"flag": 61476,
|
|
458
|
+
"face-cowboy-hat": 58222,
|
|
459
|
+
"hanukiah": 63206,
|
|
460
|
+
"chart-scatter-3d": 57576,
|
|
461
|
+
"display-chart-up": 58851,
|
|
462
|
+
"square-code": 57959,
|
|
463
|
+
"feather": 62765,
|
|
464
|
+
"volume-low": 61479,
|
|
465
|
+
"volume-down": 61479,
|
|
466
|
+
"xmark-to-slot": 63345,
|
|
467
|
+
"times-to-slot": 63345,
|
|
468
|
+
"vote-nay": 63345,
|
|
469
|
+
"box-taped": 62618,
|
|
470
|
+
"box-alt": 62618,
|
|
471
|
+
"comment-slash": 62643,
|
|
472
|
+
"swords": 63261,
|
|
473
|
+
"cloud-sun-rain": 63299,
|
|
474
|
+
"album": 63647,
|
|
475
|
+
"circle-n": 57624,
|
|
476
|
+
"compress": 61542,
|
|
477
|
+
"wheat-awn": 58061,
|
|
478
|
+
"wheat-alt": 58061,
|
|
479
|
+
"ankh": 63044,
|
|
480
|
+
"hands-holding-child": 58618,
|
|
481
|
+
"asterisk": 42,
|
|
482
|
+
"key-skeleton-left-right": 58292,
|
|
483
|
+
"comment-lines": 62640,
|
|
484
|
+
"luchador-mask": 62549,
|
|
485
|
+
"luchador": 62549,
|
|
486
|
+
"mask-luchador": 62549,
|
|
487
|
+
"square-check": 61770,
|
|
488
|
+
"check-square": 61770,
|
|
489
|
+
"shredder": 63114,
|
|
490
|
+
"book-open-cover": 57536,
|
|
491
|
+
"book-open-alt": 57536,
|
|
492
|
+
"sandwich": 63519,
|
|
493
|
+
"peseta-sign": 57889,
|
|
494
|
+
"square-parking-slash": 62999,
|
|
495
|
+
"parking-slash": 62999,
|
|
496
|
+
"train-tunnel": 58452,
|
|
497
|
+
"heading": 61916,
|
|
498
|
+
"header": 61916,
|
|
499
|
+
"ghost": 63202,
|
|
500
|
+
"face-anguished": 58217,
|
|
501
|
+
"hockey-sticks": 62548,
|
|
502
|
+
"abacus": 63040,
|
|
503
|
+
"film-simple": 62368,
|
|
504
|
+
"film-alt": 62368,
|
|
505
|
+
"list": 61498,
|
|
506
|
+
"list-squares": 61498,
|
|
507
|
+
"tree-palm": 63531,
|
|
508
|
+
"square-phone-flip": 63611,
|
|
509
|
+
"phone-square-alt": 63611,
|
|
510
|
+
"cart-plus": 61975,
|
|
511
|
+
"gamepad": 61723,
|
|
512
|
+
"border-center-v": 63645,
|
|
513
|
+
"circle-dot": 61842,
|
|
514
|
+
"dot-circle": 61842,
|
|
515
|
+
"clipboard-medical": 57651,
|
|
516
|
+
"face-dizzy": 62823,
|
|
517
|
+
"dizzy": 62823,
|
|
518
|
+
"egg": 63483,
|
|
519
|
+
"up-to-line": 62285,
|
|
520
|
+
"arrow-alt-to-top": 62285,
|
|
521
|
+
"house-medical-circle-xmark": 58643,
|
|
522
|
+
"watch-fitness": 63038,
|
|
523
|
+
"clock-nine-thirty": 58189,
|
|
524
|
+
"campground": 63163,
|
|
525
|
+
"folder-plus": 63070,
|
|
526
|
+
"jug": 63686,
|
|
527
|
+
"futbol": 61923,
|
|
528
|
+
"futbol-ball": 61923,
|
|
529
|
+
"soccer-ball": 61923,
|
|
530
|
+
"snow-blowing": 63329,
|
|
531
|
+
"paintbrush": 61948,
|
|
532
|
+
"paint-brush": 61948,
|
|
533
|
+
"lock": 61475,
|
|
534
|
+
"arrow-down-from-line": 62277,
|
|
535
|
+
"arrow-from-top": 62277,
|
|
536
|
+
"gas-pump": 62767,
|
|
537
|
+
"signal-bars-slash": 63124,
|
|
538
|
+
"signal-alt-slash": 63124,
|
|
539
|
+
"monkey": 63227,
|
|
540
|
+
"rectangle-pro": 57909,
|
|
541
|
+
"pro": 57909,
|
|
542
|
+
"house-night": 57360,
|
|
543
|
+
"hot-tub-person": 62867,
|
|
544
|
+
"hot-tub": 62867,
|
|
545
|
+
"blanket": 62616,
|
|
546
|
+
"map-location": 62879,
|
|
547
|
+
"map-marked": 62879,
|
|
548
|
+
"house-flood-water": 58638,
|
|
549
|
+
"comments-question-check": 57679,
|
|
550
|
+
"tree": 61883,
|
|
551
|
+
"arrows-cross": 57506,
|
|
552
|
+
"backpack": 62932,
|
|
553
|
+
"square-small": 57982,
|
|
554
|
+
"folder-arrow-up": 57428,
|
|
555
|
+
"folder-upload": 57428,
|
|
556
|
+
"bridge-lock": 58572,
|
|
557
|
+
"crosshairs-simple": 58783,
|
|
558
|
+
"sack-dollar": 63517,
|
|
559
|
+
"pen-to-square": 61508,
|
|
560
|
+
"edit": 61508,
|
|
561
|
+
"square-sliders": 62448,
|
|
562
|
+
"sliders-h-square": 62448,
|
|
563
|
+
"car-side": 62948,
|
|
564
|
+
"message-middle-top": 57826,
|
|
565
|
+
"comment-middle-top-alt": 57826,
|
|
566
|
+
"lightbulb-on": 63090,
|
|
567
|
+
"knife": 62180,
|
|
568
|
+
"utensil-knife": 62180,
|
|
569
|
+
"share-nodes": 61920,
|
|
570
|
+
"share-alt": 61920,
|
|
571
|
+
"display-chart-up-circle-dollar": 58854,
|
|
572
|
+
"wave-sine": 63641,
|
|
573
|
+
"heart-circle-minus": 58623,
|
|
574
|
+
"circle-w": 57644,
|
|
575
|
+
"circle-calendar": 57602,
|
|
576
|
+
"calendar-circle": 57602,
|
|
577
|
+
"hourglass-half": 62034,
|
|
578
|
+
"hourglass-2": 62034,
|
|
579
|
+
"microscope": 62992,
|
|
580
|
+
"sunset": 63335,
|
|
581
|
+
"sink": 57453,
|
|
582
|
+
"calendar-exclamation": 62260,
|
|
583
|
+
"truck-container-empty": 58037,
|
|
584
|
+
"hand-heart": 62652,
|
|
585
|
+
"bag-shopping": 62096,
|
|
586
|
+
"shopping-bag": 62096,
|
|
587
|
+
"arrow-down-z-a": 63617,
|
|
588
|
+
"sort-alpha-desc": 63617,
|
|
589
|
+
"sort-alpha-down-alt": 63617,
|
|
590
|
+
"mitten": 63413,
|
|
591
|
+
"reply-clock": 57913,
|
|
592
|
+
"reply-time": 57913,
|
|
593
|
+
"person-rays": 58701,
|
|
594
|
+
"right": 62294,
|
|
595
|
+
"arrow-alt-right": 62294,
|
|
596
|
+
"circle-f": 57614,
|
|
597
|
+
"users": 61632,
|
|
598
|
+
"face-pleading": 58246,
|
|
599
|
+
"eye-slash": 61552,
|
|
600
|
+
"flask-vial": 58611,
|
|
601
|
+
"police-box": 57377,
|
|
602
|
+
"cucumber": 58369,
|
|
603
|
+
"head-side-brain": 63496,
|
|
604
|
+
"hand": 62038,
|
|
605
|
+
"hand-paper": 62038,
|
|
606
|
+
"person-biking-mountain": 63563,
|
|
607
|
+
"biking-mountain": 63563,
|
|
608
|
+
"utensils-slash": 58468,
|
|
609
|
+
"print-magnifying-glass": 63514,
|
|
610
|
+
"print-search": 63514,
|
|
611
|
+
"folder-bookmark": 57734,
|
|
612
|
+
"om": 63097,
|
|
613
|
+
"pi": 63102,
|
|
614
|
+
"flask-round-potion": 63201,
|
|
615
|
+
"flask-potion": 63201,
|
|
616
|
+
"face-shush": 58252,
|
|
617
|
+
"worm": 58777,
|
|
618
|
+
"house-circle-xmark": 58635,
|
|
619
|
+
"plug": 61926,
|
|
620
|
+
"calendar-circle-exclamation": 58478,
|
|
621
|
+
"square-i": 57970,
|
|
622
|
+
"chevron-up": 61559,
|
|
623
|
+
"face-saluting": 58500,
|
|
624
|
+
"gauge-simple-low": 63020,
|
|
625
|
+
"tachometer-slow": 63020,
|
|
626
|
+
"face-persevering": 58245,
|
|
627
|
+
"circle-camera": 57603,
|
|
628
|
+
"camera-circle": 57603,
|
|
629
|
+
"hand-spock": 62041,
|
|
630
|
+
"spider-web": 63257,
|
|
631
|
+
"circle-microphone": 57622,
|
|
632
|
+
"microphone-circle": 57622,
|
|
633
|
+
"book-arrow-up": 57530,
|
|
634
|
+
"popsicle": 58430,
|
|
635
|
+
"command": 57666,
|
|
636
|
+
"blinds": 63739,
|
|
637
|
+
"stopwatch": 62194,
|
|
638
|
+
"saxophone": 63708,
|
|
639
|
+
"square-2": 57943,
|
|
640
|
+
"field-hockey-stick-ball": 62540,
|
|
641
|
+
"field-hockey": 62540,
|
|
642
|
+
"arrow-up-square-triangle": 63627,
|
|
643
|
+
"sort-shapes-up-alt": 63627,
|
|
644
|
+
"face-scream": 58251,
|
|
645
|
+
"square-m": 57974,
|
|
646
|
+
"camera-web": 63538,
|
|
647
|
+
"webcam": 63538,
|
|
648
|
+
"comment-arrow-down": 57667,
|
|
649
|
+
"lightbulb-cfl": 58790,
|
|
650
|
+
"window-frame-open": 57424,
|
|
651
|
+
"face-kiss": 62870,
|
|
652
|
+
"kiss": 62870,
|
|
653
|
+
"bridge-circle-xmark": 58571,
|
|
654
|
+
"period": 46,
|
|
655
|
+
"face-grin-tongue": 62857,
|
|
656
|
+
"grin-tongue": 62857,
|
|
657
|
+
"up-to-dotted-line": 58455,
|
|
658
|
+
"thought-bubble": 58158,
|
|
659
|
+
"skeleton-ribs": 58827,
|
|
660
|
+
"raygun": 57381,
|
|
661
|
+
"flute": 63673,
|
|
662
|
+
"acorn": 63150,
|
|
663
|
+
"video-arrow-up-right": 58057,
|
|
664
|
+
"grate-droplet": 57748,
|
|
665
|
+
"seal-exclamation": 57922,
|
|
666
|
+
"chess-bishop": 62522,
|
|
667
|
+
"message-sms": 57829,
|
|
668
|
+
"coffee-beans": 57663,
|
|
669
|
+
"hat-witch": 63207,
|
|
670
|
+
"face-grin-wink": 62860,
|
|
671
|
+
"grin-wink": 62860,
|
|
672
|
+
"clock-three-thirty": 58199,
|
|
673
|
+
"ear-deaf": 62116,
|
|
674
|
+
"deaf": 62116,
|
|
675
|
+
"deafness": 62116,
|
|
676
|
+
"hard-of-hearing": 62116,
|
|
677
|
+
"alarm-clock": 62286,
|
|
678
|
+
"eclipse": 63305,
|
|
679
|
+
"face-relieved": 58249,
|
|
680
|
+
"road-circle-check": 58724,
|
|
681
|
+
"dice-five": 62755,
|
|
682
|
+
"octagon-minus": 62216,
|
|
683
|
+
"minus-octagon": 62216,
|
|
684
|
+
"square-rss": 61763,
|
|
685
|
+
"rss-square": 61763,
|
|
686
|
+
"face-zany": 58276,
|
|
687
|
+
"tricycle": 58819,
|
|
688
|
+
"land-mine-on": 58651,
|
|
689
|
+
"square-arrow-up-left": 57955,
|
|
690
|
+
"i-cursor": 62022,
|
|
691
|
+
"chart-mixed-up-circle-dollar": 58841,
|
|
692
|
+
"salt-shaker": 58438,
|
|
693
|
+
"stamp": 62911,
|
|
694
|
+
"file-plus": 62233,
|
|
695
|
+
"draw-square": 62959,
|
|
696
|
+
"toilet-paper-under-slash": 58017,
|
|
697
|
+
"toilet-paper-reverse-slash": 58017,
|
|
698
|
+
"stairs": 57993,
|
|
699
|
+
"drone-front": 63584,
|
|
700
|
+
"drone-alt": 63584,
|
|
701
|
+
"glass-empty": 57745,
|
|
702
|
+
"dial-high": 57692,
|
|
703
|
+
"user-helmet-safety": 63532,
|
|
704
|
+
"user-construction": 63532,
|
|
705
|
+
"user-hard-hat": 63532,
|
|
706
|
+
"i": 73,
|
|
707
|
+
"hryvnia-sign": 63218,
|
|
708
|
+
"hryvnia": 63218,
|
|
709
|
+
"arrow-down-left-and-arrow-up-right-to-center": 57490,
|
|
710
|
+
"pills": 62596,
|
|
711
|
+
"face-grin-wide": 62849,
|
|
712
|
+
"grin-alt": 62849,
|
|
713
|
+
"tooth": 62921,
|
|
714
|
+
"basketball-hoop": 62517,
|
|
715
|
+
"objects-align-bottom": 58299,
|
|
716
|
+
"v": 86,
|
|
717
|
+
"sparkles": 63632,
|
|
718
|
+
"squid": 58448,
|
|
719
|
+
"leafy-green": 58397,
|
|
720
|
+
"circle-arrow-up-right": 57596,
|
|
721
|
+
"calendars": 57559,
|
|
722
|
+
"bangladeshi-taka-sign": 58086,
|
|
723
|
+
"bicycle": 61958,
|
|
724
|
+
"hammer-war": 63204,
|
|
725
|
+
"circle-d": 57604,
|
|
726
|
+
"spider-black-widow": 63256,
|
|
727
|
+
"staff-snake": 58745,
|
|
728
|
+
"rod-asclepius": 58745,
|
|
729
|
+
"rod-snake": 58745,
|
|
730
|
+
"staff-aesculapius": 58745,
|
|
731
|
+
"pear": 57868,
|
|
732
|
+
"head-side-cough-slash": 57442,
|
|
733
|
+
"triangle": 62188,
|
|
734
|
+
"apartment": 58472,
|
|
735
|
+
"truck-medical": 61689,
|
|
736
|
+
"ambulance": 61689,
|
|
737
|
+
"pepper": 58418,
|
|
738
|
+
"piano": 63700,
|
|
739
|
+
"gun-squirt": 57757,
|
|
740
|
+
"wheat-awn-circle-exclamation": 58776,
|
|
741
|
+
"snowman": 63440,
|
|
742
|
+
"user-alien": 57418,
|
|
743
|
+
"shield-check": 62199,
|
|
744
|
+
"mortar-pestle": 62887,
|
|
745
|
+
"road-barrier": 58722,
|
|
746
|
+
"chart-candlestick": 57570,
|
|
747
|
+
"briefcase-blank": 57544,
|
|
748
|
+
"school": 62793,
|
|
749
|
+
"igloo": 63406,
|
|
750
|
+
"bracket-round": 40,
|
|
751
|
+
"parenthesis": 40,
|
|
752
|
+
"joint": 62869,
|
|
753
|
+
"horse-saddle": 63683,
|
|
754
|
+
"mug-marshmallows": 63415,
|
|
755
|
+
"filters": 57726,
|
|
756
|
+
"bell-on": 63738,
|
|
757
|
+
"angle-right": 61701,
|
|
758
|
+
"dial-med": 57695,
|
|
759
|
+
"horse": 63216,
|
|
760
|
+
"q": 81,
|
|
761
|
+
"monitor-waveform": 62993,
|
|
762
|
+
"monitor-heart-rate": 62993,
|
|
763
|
+
"link-simple": 57805,
|
|
764
|
+
"whistle": 62560,
|
|
765
|
+
"g": 71,
|
|
766
|
+
"wine-glass-crack": 62651,
|
|
767
|
+
"fragile": 62651,
|
|
768
|
+
"slot-machine": 58318,
|
|
769
|
+
"notes-medical": 62593,
|
|
770
|
+
"car-wash": 62950,
|
|
771
|
+
"escalator": 57713,
|
|
772
|
+
"comment-image": 57672,
|
|
773
|
+
"temperature-half": 62153,
|
|
774
|
+
"temperature-2": 62153,
|
|
775
|
+
"thermometer-2": 62153,
|
|
776
|
+
"thermometer-half": 62153,
|
|
777
|
+
"dong-sign": 57705,
|
|
778
|
+
"donut": 58374,
|
|
779
|
+
"doughnut": 58374,
|
|
780
|
+
"capsules": 62571,
|
|
781
|
+
"poo-storm": 63322,
|
|
782
|
+
"poo-bolt": 63322,
|
|
783
|
+
"tally-1": 58004,
|
|
784
|
+
"face-frown-open": 62842,
|
|
785
|
+
"frown-open": 62842,
|
|
786
|
+
"square-dashed": 57961,
|
|
787
|
+
"square-j": 57971,
|
|
788
|
+
"hand-point-up": 61606,
|
|
789
|
+
"money-bill": 61654,
|
|
790
|
+
"arrow-up-big-small": 63630,
|
|
791
|
+
"sort-size-up": 63630,
|
|
792
|
+
"barcode-read": 62564,
|
|
793
|
+
"baguette": 58328,
|
|
794
|
+
"bowl-soft-serve": 58475,
|
|
795
|
+
"face-holding-back-tears": 58498,
|
|
796
|
+
"square-up": 62291,
|
|
797
|
+
"arrow-alt-square-up": 62291,
|
|
798
|
+
"train-subway-tunnel": 58019,
|
|
799
|
+
"subway-tunnel": 58019,
|
|
800
|
+
"square-exclamation": 62241,
|
|
801
|
+
"exclamation-square": 62241,
|
|
802
|
+
"semicolon": 59,
|
|
803
|
+
"bookmark": 61486,
|
|
804
|
+
"fan-table": 57348,
|
|
805
|
+
"align-justify": 61497,
|
|
806
|
+
"battery-low": 57521,
|
|
807
|
+
"battery-1": 57521,
|
|
808
|
+
"credit-card-front": 62346,
|
|
809
|
+
"brain-arrow-curved-right": 63095,
|
|
810
|
+
"mind-share": 63095,
|
|
811
|
+
"umbrella-beach": 62922,
|
|
812
|
+
"helmet-un": 58627,
|
|
813
|
+
"location-smile": 62989,
|
|
814
|
+
"map-marker-smile": 62989,
|
|
815
|
+
"arrow-left-to-line": 62270,
|
|
816
|
+
"arrow-to-left": 62270,
|
|
817
|
+
"bullseye": 61760,
|
|
818
|
+
"sushi": 58506,
|
|
819
|
+
"nigiri": 58506,
|
|
820
|
+
"message-captions": 57822,
|
|
821
|
+
"comment-alt-captions": 57822,
|
|
822
|
+
"trash-list": 58033,
|
|
823
|
+
"bacon": 63461,
|
|
824
|
+
"option": 58136,
|
|
825
|
+
"hand-point-down": 61607,
|
|
826
|
+
"arrow-up-from-bracket": 57498,
|
|
827
|
+
"trash-plus": 58034,
|
|
828
|
+
"objects-align-top": 58304,
|
|
829
|
+
"folder": 61563,
|
|
830
|
+
"folder-blank": 61563,
|
|
831
|
+
"face-anxious-sweat": 58218,
|
|
832
|
+
"credit-card-blank": 62345,
|
|
833
|
+
"file-waveform": 62584,
|
|
834
|
+
"file-medical-alt": 62584,
|
|
835
|
+
"microchip-ai": 57836,
|
|
836
|
+
"mug": 63604,
|
|
837
|
+
"plane-up-slash": 57902,
|
|
838
|
+
"radiation": 63417,
|
|
839
|
+
"pen-circle": 57870,
|
|
840
|
+
"bag-seedling": 58866,
|
|
841
|
+
"chart-simple": 58483,
|
|
842
|
+
"crutches": 63480,
|
|
843
|
+
"circle-parking": 62997,
|
|
844
|
+
"parking-circle": 62997,
|
|
845
|
+
"mars-stroke": 61993,
|
|
846
|
+
"leaf-oak": 63223,
|
|
847
|
+
"square-bolt": 57957,
|
|
848
|
+
"vial": 62610,
|
|
849
|
+
"gauge": 63012,
|
|
850
|
+
"dashboard": 63012,
|
|
851
|
+
"gauge-med": 63012,
|
|
852
|
+
"tachometer-alt-average": 63012,
|
|
853
|
+
"wand-magic-sparkles": 58058,
|
|
854
|
+
"magic-wand-sparkles": 58058,
|
|
855
|
+
"lambda": 63086,
|
|
856
|
+
"e": 69,
|
|
857
|
+
"pizza": 63511,
|
|
858
|
+
"bowl-chopsticks-noodles": 58090,
|
|
859
|
+
"h3": 62229,
|
|
860
|
+
"pen-clip": 62213,
|
|
861
|
+
"pen-alt": 62213,
|
|
862
|
+
"bridge-circle-exclamation": 58570,
|
|
863
|
+
"badge-percent": 63046,
|
|
864
|
+
"user": 61447,
|
|
865
|
+
"sensor": 57384,
|
|
866
|
+
"comma": 44,
|
|
867
|
+
"school-circle-check": 58731,
|
|
868
|
+
"toilet-paper-under": 58016,
|
|
869
|
+
"toilet-paper-reverse": 58016,
|
|
870
|
+
"light-emergency": 58399,
|
|
871
|
+
"arrow-down-to-arc": 58542,
|
|
872
|
+
"dumpster": 63379,
|
|
873
|
+
"van-shuttle": 62902,
|
|
874
|
+
"shuttle-van": 62902,
|
|
875
|
+
"building-user": 58586,
|
|
876
|
+
"light-switch": 57367,
|
|
877
|
+
"square-caret-left": 61841,
|
|
878
|
+
"caret-square-left": 61841,
|
|
879
|
+
"highlighter": 62865,
|
|
880
|
+
"wave-pulse": 62968,
|
|
881
|
+
"heart-rate": 62968,
|
|
882
|
+
"key": 61572,
|
|
883
|
+
"hat-santa": 63399,
|
|
884
|
+
"tamale": 58449,
|
|
885
|
+
"box-check": 62567,
|
|
886
|
+
"bullhorn": 61601,
|
|
887
|
+
"steak": 63524,
|
|
888
|
+
"location-crosshairs-slash": 62979,
|
|
889
|
+
"location-slash": 62979,
|
|
890
|
+
"person-dolly": 62672,
|
|
891
|
+
"globe": 61612,
|
|
892
|
+
"synagogue": 63131,
|
|
893
|
+
"file-chart-column": 63065,
|
|
894
|
+
"file-chart-line": 63065,
|
|
895
|
+
"person-half-dress": 58696,
|
|
896
|
+
"folder-image": 57738,
|
|
897
|
+
"calendar-pen": 62259,
|
|
898
|
+
"calendar-edit": 62259,
|
|
899
|
+
"road-bridge": 58723,
|
|
900
|
+
"face-smile-tear": 58259,
|
|
901
|
+
"message-plus": 62632,
|
|
902
|
+
"comment-alt-plus": 62632,
|
|
903
|
+
"location-arrow": 61732,
|
|
904
|
+
"c": 67,
|
|
905
|
+
"tablet-button": 61706,
|
|
906
|
+
"rectangle-history-circle-user": 58532,
|
|
907
|
+
"building-lock": 58582,
|
|
908
|
+
"chart-line-up": 57573,
|
|
909
|
+
"mailbox": 63507,
|
|
910
|
+
"truck-bolt": 58320,
|
|
911
|
+
"pizza-slice": 63512,
|
|
912
|
+
"money-bill-wave": 62778,
|
|
913
|
+
"chart-area": 61950,
|
|
914
|
+
"area-chart": 61950,
|
|
915
|
+
"house-flag": 58637,
|
|
916
|
+
"circle-three-quarters-stroke": 58836,
|
|
917
|
+
"person-circle-minus": 58688,
|
|
918
|
+
"scalpel": 63005,
|
|
919
|
+
"ban": 61534,
|
|
920
|
+
"cancel": 61534,
|
|
921
|
+
"bell-exclamation": 63560,
|
|
922
|
+
"circle-bookmark": 57600,
|
|
923
|
+
"bookmark-circle": 57600,
|
|
924
|
+
"egg-fried": 63484,
|
|
925
|
+
"face-weary": 58273,
|
|
926
|
+
"uniform-martial-arts": 58321,
|
|
927
|
+
"camera-rotate": 57560,
|
|
928
|
+
"sun-dust": 63332,
|
|
929
|
+
"comment-text": 57677,
|
|
930
|
+
"spray-can-sparkles": 62928,
|
|
931
|
+
"air-freshener": 62928,
|
|
932
|
+
"signal-bars": 63120,
|
|
933
|
+
"signal-alt": 63120,
|
|
934
|
+
"signal-alt-4": 63120,
|
|
935
|
+
"signal-bars-strong": 63120,
|
|
936
|
+
"diamond-exclamation": 58373,
|
|
937
|
+
"star": 61445,
|
|
938
|
+
"dial-min": 57697,
|
|
939
|
+
"repeat": 62307,
|
|
940
|
+
"cross": 63060,
|
|
941
|
+
"page-caret-down": 58409,
|
|
942
|
+
"file-caret-down": 58409,
|
|
943
|
+
"box": 62566,
|
|
944
|
+
"venus-mars": 61992,
|
|
945
|
+
"clock-seven-thirty": 58193,
|
|
946
|
+
"arrow-pointer": 62021,
|
|
947
|
+
"mouse-pointer": 62021,
|
|
948
|
+
"clock-four-thirty": 58187,
|
|
949
|
+
"signal-bars-good": 63123,
|
|
950
|
+
"signal-alt-3": 63123,
|
|
951
|
+
"cactus": 63655,
|
|
952
|
+
"lightbulb-gear": 58877,
|
|
953
|
+
"maximize": 62238,
|
|
954
|
+
"expand-arrows-alt": 62238,
|
|
955
|
+
"charging-station": 62951,
|
|
956
|
+
"shapes": 63007,
|
|
957
|
+
"triangle-circle-square": 63007,
|
|
958
|
+
"plane-tail": 57900,
|
|
959
|
+
"gauge-simple-max": 63019,
|
|
960
|
+
"tachometer-fastest": 63019,
|
|
961
|
+
"circle-u": 57639,
|
|
962
|
+
"shield-slash": 57931,
|
|
963
|
+
"square-phone-hangup": 57978,
|
|
964
|
+
"phone-square-down": 57978,
|
|
965
|
+
"arrow-up-left": 57501,
|
|
966
|
+
"transporter-1": 57411,
|
|
967
|
+
"peanuts": 58417,
|
|
968
|
+
"shuffle": 61556,
|
|
969
|
+
"random": 61556,
|
|
970
|
+
"person-running": 63244,
|
|
971
|
+
"running": 63244,
|
|
972
|
+
"mobile-retro": 58663,
|
|
973
|
+
"grip-lines-vertical": 63397,
|
|
974
|
+
"bin-bottles-recycle": 58870,
|
|
975
|
+
"arrow-up-from-square": 57500,
|
|
976
|
+
"file-dashed-line": 63607,
|
|
977
|
+
"page-break": 63607,
|
|
978
|
+
"bracket-curly-right": 125,
|
|
979
|
+
"spider": 63255,
|
|
980
|
+
"clock-three": 58198,
|
|
981
|
+
"hands-bound": 58617,
|
|
982
|
+
"scalpel-line-dashed": 63006,
|
|
983
|
+
"scalpel-path": 63006,
|
|
984
|
+
"file-invoice-dollar": 62833,
|
|
985
|
+
"pipe-smoking": 58308,
|
|
986
|
+
"face-astonished": 58219,
|
|
987
|
+
"window": 62478,
|
|
988
|
+
"plane-circle-exclamation": 58710,
|
|
989
|
+
"ear": 62960,
|
|
990
|
+
"file-lock": 58278,
|
|
991
|
+
"diagram-venn": 57690,
|
|
992
|
+
"x-ray": 62615,
|
|
993
|
+
"goal-net": 58283,
|
|
994
|
+
"coffin-cross": 57425,
|
|
995
|
+
"spell-check": 63633,
|
|
996
|
+
"location-xmark": 62990,
|
|
997
|
+
"map-marker-times": 62990,
|
|
998
|
+
"map-marker-xmark": 62990,
|
|
999
|
+
"circle-quarter-stroke": 58835,
|
|
1000
|
+
"lasso": 63688,
|
|
1001
|
+
"slash": 63253,
|
|
1002
|
+
"person-to-portal": 57378,
|
|
1003
|
+
"portal-enter": 57378,
|
|
1004
|
+
"calendar-star": 63286,
|
|
1005
|
+
"computer-mouse": 63692,
|
|
1006
|
+
"mouse": 63692,
|
|
1007
|
+
"arrow-right-to-bracket": 61584,
|
|
1008
|
+
"sign-in": 61584,
|
|
1009
|
+
"pegasus": 63235,
|
|
1010
|
+
"files-medical": 63485,
|
|
1011
|
+
"nfc-lock": 57848,
|
|
1012
|
+
"person-ski-lift": 63432,
|
|
1013
|
+
"ski-lift": 63432,
|
|
1014
|
+
"square-6": 57947,
|
|
1015
|
+
"shop-slash": 57456,
|
|
1016
|
+
"store-alt-slash": 57456,
|
|
1017
|
+
"wind-turbine": 63643,
|
|
1018
|
+
"sliders-simple": 57939,
|
|
1019
|
+
"grid-round": 58842,
|
|
1020
|
+
"badge-sheriff": 63650,
|
|
1021
|
+
"server": 62003,
|
|
1022
|
+
"virus-covid-slash": 58537,
|
|
1023
|
+
"intersection": 63080,
|
|
1024
|
+
"shop-lock": 58533,
|
|
1025
|
+
"family": 58112,
|
|
1026
|
+
"hourglass-start": 62033,
|
|
1027
|
+
"hourglass-1": 62033,
|
|
1028
|
+
"user-hair-buns": 58323,
|
|
1029
|
+
"blender-phone": 63158,
|
|
1030
|
+
"hourglass-clock": 58395,
|
|
1031
|
+
"person-seat-reclined": 57887,
|
|
1032
|
+
"paper-plane-top": 57866,
|
|
1033
|
+
"paper-plane-alt": 57866,
|
|
1034
|
+
"send": 57866,
|
|
1035
|
+
"message-arrow-up": 57820,
|
|
1036
|
+
"comment-alt-arrow-up": 57820,
|
|
1037
|
+
"lightbulb-exclamation": 63089,
|
|
1038
|
+
"layer-minus": 62974,
|
|
1039
|
+
"layer-group-minus": 62974,
|
|
1040
|
+
"chart-pie-simple-circle-currency": 58884,
|
|
1041
|
+
"circle-e": 57609,
|
|
1042
|
+
"building-wheat": 58587,
|
|
1043
|
+
"gauge-max": 63014,
|
|
1044
|
+
"tachometer-alt-fastest": 63014,
|
|
1045
|
+
"person-breastfeeding": 58682,
|
|
1046
|
+
"apostrophe": 39,
|
|
1047
|
+
"fire-hydrant": 57727,
|
|
1048
|
+
"right-to-bracket": 62198,
|
|
1049
|
+
"sign-in-alt": 62198,
|
|
1050
|
+
"video-plus": 62689,
|
|
1051
|
+
"square-right": 62290,
|
|
1052
|
+
"arrow-alt-square-right": 62290,
|
|
1053
|
+
"comment-smile": 62644,
|
|
1054
|
+
"venus": 61985,
|
|
1055
|
+
"passport": 62891,
|
|
1056
|
+
"inbox-in": 62224,
|
|
1057
|
+
"inbox-arrow-down": 62224,
|
|
1058
|
+
"heart-pulse": 61982,
|
|
1059
|
+
"heartbeat": 61982,
|
|
1060
|
+
"circle-8": 57589,
|
|
1061
|
+
"clouds-moon": 63301,
|
|
1062
|
+
"clock-ten-thirty": 58197,
|
|
1063
|
+
"people-carry-box": 62670,
|
|
1064
|
+
"people-carry": 62670,
|
|
1065
|
+
"folder-user": 57742,
|
|
1066
|
+
"trash-can-xmark": 58030,
|
|
1067
|
+
"temperature-high": 63337,
|
|
1068
|
+
"microchip": 62171,
|
|
1069
|
+
"left-long-to-line": 58398,
|
|
1070
|
+
"crown": 62753,
|
|
1071
|
+
"weight-hanging": 62925,
|
|
1072
|
+
"xmarks-lines": 58778,
|
|
1073
|
+
"file-prescription": 62834,
|
|
1074
|
+
"calendar-range": 57558,
|
|
1075
|
+
"flower-daffodil": 63488,
|
|
1076
|
+
"hand-back-point-up": 57762,
|
|
1077
|
+
"weight-scale": 62614,
|
|
1078
|
+
"weight": 62614,
|
|
1079
|
+
"star-exclamation": 62195,
|
|
1080
|
+
"books": 62939,
|
|
1081
|
+
"user-group": 62720,
|
|
1082
|
+
"user-friends": 62720,
|
|
1083
|
+
"arrow-up-a-z": 61790,
|
|
1084
|
+
"sort-alpha-up": 61790,
|
|
1085
|
+
"layer-plus": 62975,
|
|
1086
|
+
"layer-group-plus": 62975,
|
|
1087
|
+
"play-pause": 57903,
|
|
1088
|
+
"block-question": 58333,
|
|
1089
|
+
"snooze": 63616,
|
|
1090
|
+
"zzz": 63616,
|
|
1091
|
+
"scanner-image": 63731,
|
|
1092
|
+
"tv-retro": 62465,
|
|
1093
|
+
"square-t": 57984,
|
|
1094
|
+
"farm": 63588,
|
|
1095
|
+
"barn-silo": 63588,
|
|
1096
|
+
"chess-knight": 62529,
|
|
1097
|
+
"bars-sort": 57518,
|
|
1098
|
+
"pallet-boxes": 62595,
|
|
1099
|
+
"palette-boxes": 62595,
|
|
1100
|
+
"pallet-alt": 62595,
|
|
1101
|
+
"face-laugh-squint": 62875,
|
|
1102
|
+
"laugh-squint": 62875,
|
|
1103
|
+
"code-simple": 57661,
|
|
1104
|
+
"bolt-slash": 57528,
|
|
1105
|
+
"panel-fire": 58415,
|
|
1106
|
+
"binary-circle-check": 58172,
|
|
1107
|
+
"comment-minus": 62641,
|
|
1108
|
+
"burrito": 63469,
|
|
1109
|
+
"violin": 63725,
|
|
1110
|
+
"objects-column": 58305,
|
|
1111
|
+
"square-chevron-down": 62249,
|
|
1112
|
+
"chevron-square-down": 62249,
|
|
1113
|
+
"comment-plus": 62642,
|
|
1114
|
+
"triangle-instrument": 63714,
|
|
1115
|
+
"triangle-music": 63714,
|
|
1116
|
+
"wheelchair": 61843,
|
|
1117
|
+
"user-pilot-tie": 58049,
|
|
1118
|
+
"piano-keyboard": 63701,
|
|
1119
|
+
"bed-empty": 63737,
|
|
1120
|
+
"circle-arrow-up": 61610,
|
|
1121
|
+
"arrow-circle-up": 61610,
|
|
1122
|
+
"toggle-on": 61957,
|
|
1123
|
+
"rectangle-vertical": 62203,
|
|
1124
|
+
"rectangle-portrait": 62203,
|
|
1125
|
+
"person-walking": 62804,
|
|
1126
|
+
"walking": 62804,
|
|
1127
|
+
"l": 76,
|
|
1128
|
+
"signal-stream": 63709,
|
|
1129
|
+
"down-to-bracket": 58599,
|
|
1130
|
+
"circle-z": 57648,
|
|
1131
|
+
"stars": 63330,
|
|
1132
|
+
"fire": 61549,
|
|
1133
|
+
"bed-pulse": 62599,
|
|
1134
|
+
"procedures": 62599,
|
|
1135
|
+
"house-day": 57358,
|
|
1136
|
+
"shuttle-space": 61847,
|
|
1137
|
+
"space-shuttle": 61847,
|
|
1138
|
+
"shirt-long-sleeve": 58311,
|
|
1139
|
+
"chart-pie-simple": 63054,
|
|
1140
|
+
"chart-pie-alt": 63054,
|
|
1141
|
+
"face-laugh": 62873,
|
|
1142
|
+
"laugh": 62873,
|
|
1143
|
+
"folder-open": 61564,
|
|
1144
|
+
"album-collection-circle-user": 58511,
|
|
1145
|
+
"candy": 58343,
|
|
1146
|
+
"bowl-hot": 63523,
|
|
1147
|
+
"soup": 63523,
|
|
1148
|
+
"flatbread": 58379,
|
|
1149
|
+
"heart-circle-plus": 58624,
|
|
1150
|
+
"code-fork": 57659,
|
|
1151
|
+
"city": 63055,
|
|
1152
|
+
"signal-bars-weak": 63121,
|
|
1153
|
+
"signal-alt-1": 63121,
|
|
1154
|
+
"microphone-lines": 62409,
|
|
1155
|
+
"microphone-alt": 62409,
|
|
1156
|
+
"clock-twelve": 58200,
|
|
1157
|
+
"pepper-hot": 63510,
|
|
1158
|
+
"citrus-slice": 58101,
|
|
1159
|
+
"sheep": 63249,
|
|
1160
|
+
"unlock": 61596,
|
|
1161
|
+
"colon-sign": 57664,
|
|
1162
|
+
"headset": 62864,
|
|
1163
|
+
"badger-honey": 63156,
|
|
1164
|
+
"h4": 63594,
|
|
1165
|
+
"store-slash": 57457,
|
|
1166
|
+
"road-circle-xmark": 58726,
|
|
1167
|
+
"signal-slash": 63125,
|
|
1168
|
+
"user-minus": 62723,
|
|
1169
|
+
"mars-stroke-up": 61994,
|
|
1170
|
+
"mars-stroke-v": 61994,
|
|
1171
|
+
"champagne-glasses": 63391,
|
|
1172
|
+
"glass-cheers": 63391,
|
|
1173
|
+
"taco": 63526,
|
|
1174
|
+
"hexagon-plus": 62208,
|
|
1175
|
+
"plus-hexagon": 62208,
|
|
1176
|
+
"clipboard": 62248,
|
|
1177
|
+
"house-circle-exclamation": 58634,
|
|
1178
|
+
"file-arrow-up": 62836,
|
|
1179
|
+
"file-upload": 62836,
|
|
1180
|
+
"wifi": 61931,
|
|
1181
|
+
"wifi-3": 61931,
|
|
1182
|
+
"wifi-strong": 61931,
|
|
1183
|
+
"messages": 62646,
|
|
1184
|
+
"comments-alt": 62646,
|
|
1185
|
+
"bath": 62157,
|
|
1186
|
+
"bathtub": 62157,
|
|
1187
|
+
"umbrella-simple": 58044,
|
|
1188
|
+
"umbrella-alt": 58044,
|
|
1189
|
+
"rectangle-history-circle-plus": 58531,
|
|
1190
|
+
"underline": 61645,
|
|
1191
|
+
"prescription-bottle-pill": 58816,
|
|
1192
|
+
"user-pen": 62719,
|
|
1193
|
+
"user-edit": 62719,
|
|
1194
|
+
"binary-slash": 58174,
|
|
1195
|
+
"square-o": 57976,
|
|
1196
|
+
"signature": 62903,
|
|
1197
|
+
"stroopwafel": 62801,
|
|
1198
|
+
"bold": 61490,
|
|
1199
|
+
"anchor-lock": 58541,
|
|
1200
|
+
"building-ngo": 58583,
|
|
1201
|
+
"transporter-3": 57413,
|
|
1202
|
+
"engine-warning": 62962,
|
|
1203
|
+
"engine-exclamation": 62962,
|
|
1204
|
+
"circle-down-right": 57608,
|
|
1205
|
+
"square-k": 57972,
|
|
1206
|
+
"manat-sign": 57813,
|
|
1207
|
+
"money-check-pen": 63602,
|
|
1208
|
+
"money-check-edit": 63602,
|
|
1209
|
+
"not-equal": 62782,
|
|
1210
|
+
"border-top-left": 63571,
|
|
1211
|
+
"border-style": 63571,
|
|
1212
|
+
"map-location-dot": 62880,
|
|
1213
|
+
"map-marked-alt": 62880,
|
|
1214
|
+
"tilde": 126,
|
|
1215
|
+
"jedi": 63081,
|
|
1216
|
+
"square-poll-vertical": 63105,
|
|
1217
|
+
"poll": 63105,
|
|
1218
|
+
"arrow-down-square-triangle": 63625,
|
|
1219
|
+
"sort-shapes-down-alt": 63625,
|
|
1220
|
+
"mug-hot": 63414,
|
|
1221
|
+
"dog-leashed": 63188,
|
|
1222
|
+
"car-battery": 62943,
|
|
1223
|
+
"battery-car": 62943,
|
|
1224
|
+
"face-downcast-sweat": 58225,
|
|
1225
|
+
"mailbox-flag-up": 58811,
|
|
1226
|
+
"memo-circle-info": 58522,
|
|
1227
|
+
"gift": 61547,
|
|
1228
|
+
"dice-two": 62760,
|
|
1229
|
+
"volume": 63144,
|
|
1230
|
+
"volume-medium": 63144,
|
|
1231
|
+
"transporter-5": 58022,
|
|
1232
|
+
"gauge-circle-bolt": 58518,
|
|
1233
|
+
"coin-front": 58364,
|
|
1234
|
+
"file-slash": 58279,
|
|
1235
|
+
"message-arrow-up-right": 57821,
|
|
1236
|
+
"treasure-chest": 63267,
|
|
1237
|
+
"chess-queen": 62533,
|
|
1238
|
+
"paintbrush-fine": 62889,
|
|
1239
|
+
"paint-brush-alt": 62889,
|
|
1240
|
+
"paint-brush-fine": 62889,
|
|
1241
|
+
"paintbrush-alt": 62889,
|
|
1242
|
+
"glasses": 62768,
|
|
1243
|
+
"hood-cloak": 63215,
|
|
1244
|
+
"square-quote": 58153,
|
|
1245
|
+
"up-left": 58045,
|
|
1246
|
+
"bring-front": 63575,
|
|
1247
|
+
"chess-board": 62524,
|
|
1248
|
+
"burger-cheese": 63473,
|
|
1249
|
+
"cheeseburger": 63473,
|
|
1250
|
+
"building-circle-check": 58578,
|
|
1251
|
+
"repeat-1": 62309,
|
|
1252
|
+
"arrow-down-to-line": 62269,
|
|
1253
|
+
"arrow-to-bottom": 62269,
|
|
1254
|
+
"grid-5": 57753,
|
|
1255
|
+
"right-long-to-line": 58436,
|
|
1256
|
+
"person-chalkboard": 58685,
|
|
1257
|
+
"mars-stroke-right": 61995,
|
|
1258
|
+
"mars-stroke-h": 61995,
|
|
1259
|
+
"hand-back-fist": 62037,
|
|
1260
|
+
"hand-rock": 62037,
|
|
1261
|
+
"grid-round-5": 58846,
|
|
1262
|
+
"tally": 63132,
|
|
1263
|
+
"tally-5": 63132,
|
|
1264
|
+
"square-caret-up": 61777,
|
|
1265
|
+
"caret-square-up": 61777,
|
|
1266
|
+
"cloud-showers-water": 58596,
|
|
1267
|
+
"chart-bar": 61568,
|
|
1268
|
+
"bar-chart": 61568,
|
|
1269
|
+
"hands-bubbles": 57438,
|
|
1270
|
+
"hands-wash": 57438,
|
|
1271
|
+
"less-than-equal": 62775,
|
|
1272
|
+
"train": 62008,
|
|
1273
|
+
"up-from-dotted-line": 58454,
|
|
1274
|
+
"eye-low-vision": 62120,
|
|
1275
|
+
"low-vision": 62120,
|
|
1276
|
+
"traffic-light-go": 63032,
|
|
1277
|
+
"face-exhaling": 58496,
|
|
1278
|
+
"sensor-fire": 57386,
|
|
1279
|
+
"user-unlock": 57432,
|
|
1280
|
+
"hexagon-divide": 57773,
|
|
1281
|
+
"00": 58471,
|
|
1282
|
+
"crow": 62752,
|
|
1283
|
+
"cassette-betamax": 63652,
|
|
1284
|
+
"betamax": 63652,
|
|
1285
|
+
"sailboat": 58437,
|
|
1286
|
+
"window-restore": 62162,
|
|
1287
|
+
"nfc-magnifying-glass": 57849,
|
|
1288
|
+
"file-binary": 57717,
|
|
1289
|
+
"circle-v": 57642,
|
|
1290
|
+
"square-plus": 61694,
|
|
1291
|
+
"plus-square": 61694,
|
|
1292
|
+
"bowl-scoops": 58335,
|
|
1293
|
+
"mistletoe": 63412,
|
|
1294
|
+
"custard": 58371,
|
|
1295
|
+
"lacrosse-stick": 58293,
|
|
1296
|
+
"hockey-mask": 63214,
|
|
1297
|
+
"sunrise": 63334,
|
|
1298
|
+
"panel-ews": 58414,
|
|
1299
|
+
"torii-gate": 63137,
|
|
1300
|
+
"cloud-exclamation": 58513,
|
|
1301
|
+
"message-lines": 62630,
|
|
1302
|
+
"comment-alt-lines": 62630,
|
|
1303
|
+
"frog": 62766,
|
|
1304
|
+
"bucket": 58575,
|
|
1305
|
+
"floppy-disk-pen": 57730,
|
|
1306
|
+
"image": 61502,
|
|
1307
|
+
"window-frame": 57423,
|
|
1308
|
+
"microphone": 61744,
|
|
1309
|
+
"cow": 63176,
|
|
1310
|
+
"file-zip": 58862,
|
|
1311
|
+
"square-ring": 58447,
|
|
1312
|
+
"down-from-line": 62281,
|
|
1313
|
+
"arrow-alt-from-top": 62281,
|
|
1314
|
+
"caret-up": 61656,
|
|
1315
|
+
"shield-xmark": 57932,
|
|
1316
|
+
"shield-times": 57932,
|
|
1317
|
+
"screwdriver": 62794,
|
|
1318
|
+
"circle-sort-down": 57393,
|
|
1319
|
+
"sort-circle-down": 57393,
|
|
1320
|
+
"folder-closed": 57733,
|
|
1321
|
+
"house-tsunami": 58645,
|
|
1322
|
+
"square-nfi": 58742,
|
|
1323
|
+
"forklift": 62586,
|
|
1324
|
+
"arrow-up-from-ground-water": 58549,
|
|
1325
|
+
"bracket-square-right": 93,
|
|
1326
|
+
"martini-glass": 62843,
|
|
1327
|
+
"glass-martini-alt": 62843,
|
|
1328
|
+
"rotate-left": 62186,
|
|
1329
|
+
"rotate-back": 62186,
|
|
1330
|
+
"rotate-backward": 62186,
|
|
1331
|
+
"undo-alt": 62186,
|
|
1332
|
+
"table-columns": 61659,
|
|
1333
|
+
"columns": 61659,
|
|
1334
|
+
"square-a": 57951,
|
|
1335
|
+
"tick": 58159,
|
|
1336
|
+
"lemon": 61588,
|
|
1337
|
+
"head-side-mask": 57443,
|
|
1338
|
+
"handshake": 62133,
|
|
1339
|
+
"gem": 62373,
|
|
1340
|
+
"dolly": 62578,
|
|
1341
|
+
"dolly-box": 62578,
|
|
1342
|
+
"smoking": 62605,
|
|
1343
|
+
"minimize": 63372,
|
|
1344
|
+
"compress-arrows-alt": 63372,
|
|
1345
|
+
"refrigerator": 57382,
|
|
1346
|
+
"monument": 62886,
|
|
1347
|
+
"octagon-xmark": 62192,
|
|
1348
|
+
"times-octagon": 62192,
|
|
1349
|
+
"xmark-octagon": 62192,
|
|
1350
|
+
"align-slash": 63558,
|
|
1351
|
+
"snowplow": 63442,
|
|
1352
|
+
"angles-right": 61697,
|
|
1353
|
+
"angle-double-right": 61697,
|
|
1354
|
+
"truck-ramp-couch": 62685,
|
|
1355
|
+
"truck-couch": 62685,
|
|
1356
|
+
"cannabis": 62815,
|
|
1357
|
+
"circle-play": 61764,
|
|
1358
|
+
"play-circle": 61764,
|
|
1359
|
+
"arrow-up-right-and-arrow-down-left-from-center": 57504,
|
|
1360
|
+
"tablets": 62608,
|
|
1361
|
+
"360-degrees": 58076,
|
|
1362
|
+
"ethernet": 63382,
|
|
1363
|
+
"euro-sign": 61779,
|
|
1364
|
+
"eur": 61779,
|
|
1365
|
+
"euro": 61779,
|
|
1366
|
+
"chair": 63168,
|
|
1367
|
+
"circle-check": 61528,
|
|
1368
|
+
"check-circle": 61528,
|
|
1369
|
+
"square-dashed-circle-plus": 58818,
|
|
1370
|
+
"money-simple-from-bracket": 58131,
|
|
1371
|
+
"bat": 63157,
|
|
1372
|
+
"circle-stop": 62093,
|
|
1373
|
+
"stop-circle": 62093,
|
|
1374
|
+
"head-side-headphones": 63682,
|
|
1375
|
+
"phone-rotary": 63699,
|
|
1376
|
+
"compass-drafting": 62824,
|
|
1377
|
+
"drafting-compass": 62824,
|
|
1378
|
+
"plate-wheat": 58714,
|
|
1379
|
+
"calendar-circle-minus": 58479,
|
|
1380
|
+
"chopsticks": 58359,
|
|
1381
|
+
"car-wrench": 62947,
|
|
1382
|
+
"car-mechanic": 62947,
|
|
1383
|
+
"icicles": 63405,
|
|
1384
|
+
"person-shelter": 58703,
|
|
1385
|
+
"neuter": 61996,
|
|
1386
|
+
"id-badge": 62145,
|
|
1387
|
+
"kazoo": 63687,
|
|
1388
|
+
"marker": 62881,
|
|
1389
|
+
"bin-bottles": 58869,
|
|
1390
|
+
"face-laugh-beam": 62874,
|
|
1391
|
+
"laugh-beam": 62874,
|
|
1392
|
+
"square-arrow-down-left": 57953,
|
|
1393
|
+
"battery-bolt": 62326,
|
|
1394
|
+
"tree-large": 63453,
|
|
1395
|
+
"helicopter-symbol": 58626,
|
|
1396
|
+
"aperture": 58079,
|
|
1397
|
+
"universal-access": 62106,
|
|
1398
|
+
"gear-complex": 58857,
|
|
1399
|
+
"file-magnifying-glass": 63589,
|
|
1400
|
+
"file-search": 63589,
|
|
1401
|
+
"up-right": 58046,
|
|
1402
|
+
"circle-chevron-up": 61753,
|
|
1403
|
+
"chevron-circle-up": 61753,
|
|
1404
|
+
"user-police": 58163,
|
|
1405
|
+
"lari-sign": 57800,
|
|
1406
|
+
"volcano": 63344,
|
|
1407
|
+
"teddy-bear": 58319,
|
|
1408
|
+
"stocking": 63445,
|
|
1409
|
+
"person-walking-dashed-line-arrow-right": 58707,
|
|
1410
|
+
"image-slash": 57783,
|
|
1411
|
+
"mask-snorkel": 58295,
|
|
1412
|
+
"smoke": 63328,
|
|
1413
|
+
"sterling-sign": 61780,
|
|
1414
|
+
"gbp": 61780,
|
|
1415
|
+
"pound-sign": 61780,
|
|
1416
|
+
"battery-exclamation": 57520,
|
|
1417
|
+
"viruses": 57462,
|
|
1418
|
+
"square-person-confined": 58743,
|
|
1419
|
+
"user-tie": 62728,
|
|
1420
|
+
"arrow-down-long": 61813,
|
|
1421
|
+
"long-arrow-down": 61813,
|
|
1422
|
+
"tent-arrow-down-to-line": 58750,
|
|
1423
|
+
"certificate": 61603,
|
|
1424
|
+
"crystal-ball": 58210,
|
|
1425
|
+
"reply-all": 61730,
|
|
1426
|
+
"mail-reply-all": 61730,
|
|
1427
|
+
"suitcase": 61682,
|
|
1428
|
+
"person-skating": 63429,
|
|
1429
|
+
"skating": 63429,
|
|
1430
|
+
"star-shooting": 57398,
|
|
1431
|
+
"binary-lock": 58173,
|
|
1432
|
+
"filter-circle-dollar": 63074,
|
|
1433
|
+
"funnel-dollar": 63074,
|
|
1434
|
+
"camera-retro": 61571,
|
|
1435
|
+
"circle-arrow-down": 61611,
|
|
1436
|
+
"arrow-circle-down": 61611,
|
|
1437
|
+
"comment-pen": 62638,
|
|
1438
|
+
"comment-edit": 62638,
|
|
1439
|
+
"file-import": 62831,
|
|
1440
|
+
"arrow-right-to-file": 62831,
|
|
1441
|
+
"banjo": 63651,
|
|
1442
|
+
"square-arrow-up-right": 61772,
|
|
1443
|
+
"external-link-square": 61772,
|
|
1444
|
+
"light-emergency-on": 58400,
|
|
1445
|
+
"kerning": 63599,
|
|
1446
|
+
"box-open": 62622,
|
|
1447
|
+
"square-f": 57968,
|
|
1448
|
+
"scroll": 63246,
|
|
1449
|
+
"spa": 62907,
|
|
1450
|
+
"arrow-left-from-line": 62276,
|
|
1451
|
+
"arrow-from-right": 62276,
|
|
1452
|
+
"strawberry": 58155,
|
|
1453
|
+
"location-pin-lock": 58655,
|
|
1454
|
+
"pause": 61516,
|
|
1455
|
+
"clock-eight-thirty": 58182,
|
|
1456
|
+
"plane-engines": 62430,
|
|
1457
|
+
"plane-alt": 62430,
|
|
1458
|
+
"hill-avalanche": 58631,
|
|
1459
|
+
"temperature-empty": 62155,
|
|
1460
|
+
"temperature-0": 62155,
|
|
1461
|
+
"thermometer-0": 62155,
|
|
1462
|
+
"thermometer-empty": 62155,
|
|
1463
|
+
"bomb": 61922,
|
|
1464
|
+
"gauge-low": 63015,
|
|
1465
|
+
"tachometer-alt-slow": 63015,
|
|
1466
|
+
"registered": 62045,
|
|
1467
|
+
"trash-can-plus": 58028,
|
|
1468
|
+
"address-card": 62139,
|
|
1469
|
+
"contact-card": 62139,
|
|
1470
|
+
"vcard": 62139,
|
|
1471
|
+
"scale-unbalanced-flip": 62742,
|
|
1472
|
+
"balance-scale-right": 62742,
|
|
1473
|
+
"globe-snow": 63395,
|
|
1474
|
+
"subscript": 61740,
|
|
1475
|
+
"diamond-turn-right": 62955,
|
|
1476
|
+
"directions": 62955,
|
|
1477
|
+
"integral": 63079,
|
|
1478
|
+
"burst": 58588,
|
|
1479
|
+
"house-laptop": 57446,
|
|
1480
|
+
"laptop-house": 57446,
|
|
1481
|
+
"face-tired": 62920,
|
|
1482
|
+
"tired": 62920,
|
|
1483
|
+
"money-bills": 57843,
|
|
1484
|
+
"blinds-raised": 63741,
|
|
1485
|
+
"smog": 63327,
|
|
1486
|
+
"ufo-beam": 57416,
|
|
1487
|
+
"circle-caret-up": 62257,
|
|
1488
|
+
"caret-circle-up": 62257,
|
|
1489
|
+
"user-vneck-hair-long": 58467,
|
|
1490
|
+
"square-a-lock": 58445,
|
|
1491
|
+
"crutch": 63479,
|
|
1492
|
+
"gas-pump-slash": 62964,
|
|
1493
|
+
"cloud-arrow-up": 61678,
|
|
1494
|
+
"cloud-upload": 61678,
|
|
1495
|
+
"cloud-upload-alt": 61678,
|
|
1496
|
+
"palette": 62783,
|
|
1497
|
+
"transporter-4": 58021,
|
|
1498
|
+
"chart-mixed-up-circle-currency": 58840,
|
|
1499
|
+
"objects-align-right": 58303,
|
|
1500
|
+
"arrows-turn-right": 58560,
|
|
1501
|
+
"vest": 57477,
|
|
1502
|
+
"pig": 63238,
|
|
1503
|
+
"inbox-full": 57786,
|
|
1504
|
+
"circle-envelope": 57612,
|
|
1505
|
+
"envelope-circle": 57612,
|
|
1506
|
+
"triangle-person-digging": 63581,
|
|
1507
|
+
"construction": 63581,
|
|
1508
|
+
"ferry": 58602,
|
|
1509
|
+
"bullseye-arrow": 63048,
|
|
1510
|
+
"arrows-down-to-people": 58553,
|
|
1511
|
+
"seedling": 62680,
|
|
1512
|
+
"sprout": 62680,
|
|
1513
|
+
"clock-seven": 58192,
|
|
1514
|
+
"left-right": 62263,
|
|
1515
|
+
"arrows-alt-h": 62263,
|
|
1516
|
+
"boxes-packing": 58567,
|
|
1517
|
+
"circle-arrow-left": 61608,
|
|
1518
|
+
"arrow-circle-left": 61608,
|
|
1519
|
+
"flashlight": 63672,
|
|
1520
|
+
"group-arrows-rotate": 58614,
|
|
1521
|
+
"bowl-food": 58566,
|
|
1522
|
+
"square-9": 57950,
|
|
1523
|
+
"candy-cane": 63366,
|
|
1524
|
+
"arrow-down-wide-short": 61792,
|
|
1525
|
+
"sort-amount-asc": 61792,
|
|
1526
|
+
"sort-amount-down": 61792,
|
|
1527
|
+
"square-dollar": 62185,
|
|
1528
|
+
"dollar-square": 62185,
|
|
1529
|
+
"usd-square": 62185,
|
|
1530
|
+
"phone-arrow-right": 58814,
|
|
1531
|
+
"hand-holding-seedling": 62655,
|
|
1532
|
+
"message-check": 62626,
|
|
1533
|
+
"comment-alt-check": 62626,
|
|
1534
|
+
"cloud-bolt": 63340,
|
|
1535
|
+
"thunderstorm": 63340,
|
|
1536
|
+
"chart-line-up-down": 58839,
|
|
1537
|
+
"text-slash": 63613,
|
|
1538
|
+
"remove-format": 63613,
|
|
1539
|
+
"watch": 62177,
|
|
1540
|
+
"circle-down-left": 57607,
|
|
1541
|
+
"text": 63635,
|
|
1542
|
+
"projector": 63702,
|
|
1543
|
+
"face-smile-wink": 62682,
|
|
1544
|
+
"smile-wink": 62682,
|
|
1545
|
+
"tombstone-blank": 63265,
|
|
1546
|
+
"tombstone-alt": 63265,
|
|
1547
|
+
"chess-king-piece": 62528,
|
|
1548
|
+
"chess-king-alt": 62528,
|
|
1549
|
+
"circle-6": 57587,
|
|
1550
|
+
"left": 62293,
|
|
1551
|
+
"arrow-alt-left": 62293,
|
|
1552
|
+
"file-word": 61890,
|
|
1553
|
+
"file-powerpoint": 61892,
|
|
1554
|
+
"square-down": 62288,
|
|
1555
|
+
"arrow-alt-square-down": 62288,
|
|
1556
|
+
"objects-align-center-vertical": 58301,
|
|
1557
|
+
"arrows-left-right": 61566,
|
|
1558
|
+
"arrows-h": 61566,
|
|
1559
|
+
"house-lock": 58640,
|
|
1560
|
+
"cloud-arrow-down": 61677,
|
|
1561
|
+
"cloud-download": 61677,
|
|
1562
|
+
"cloud-download-alt": 61677,
|
|
1563
|
+
"wreath": 63458,
|
|
1564
|
+
"children": 58593,
|
|
1565
|
+
"meter-droplet": 57834,
|
|
1566
|
+
"chalkboard": 62747,
|
|
1567
|
+
"blackboard": 62747,
|
|
1568
|
+
"user-large-slash": 62714,
|
|
1569
|
+
"user-alt-slash": 62714,
|
|
1570
|
+
"signal-strong": 63119,
|
|
1571
|
+
"signal-4": 63119,
|
|
1572
|
+
"lollipop": 58404,
|
|
1573
|
+
"lollypop": 58404,
|
|
1574
|
+
"list-tree": 57810,
|
|
1575
|
+
"envelope-open": 62134,
|
|
1576
|
+
"draw-circle": 62957,
|
|
1577
|
+
"cat-space": 57345,
|
|
1578
|
+
"handshake-simple-slash": 57439,
|
|
1579
|
+
"handshake-alt-slash": 57439,
|
|
1580
|
+
"rabbit-running": 63241,
|
|
1581
|
+
"rabbit-fast": 63241,
|
|
1582
|
+
"memo-pad": 57818,
|
|
1583
|
+
"mattress-pillow": 58661,
|
|
1584
|
+
"alarm-plus": 63556,
|
|
1585
|
+
"alicorn": 63152,
|
|
1586
|
+
"comment-question": 57675,
|
|
1587
|
+
"gingerbread-man": 63389,
|
|
1588
|
+
"guarani-sign": 57754,
|
|
1589
|
+
"burger-fries": 57549,
|
|
1590
|
+
"mug-tea": 63605,
|
|
1591
|
+
"border-top": 63573,
|
|
1592
|
+
"arrows-rotate": 61473,
|
|
1593
|
+
"refresh": 61473,
|
|
1594
|
+
"sync": 61473,
|
|
1595
|
+
"circle-book-open": 57599,
|
|
1596
|
+
"book-circle": 57599,
|
|
1597
|
+
"arrows-to-dotted-line": 57510,
|
|
1598
|
+
"fire-extinguisher": 61748,
|
|
1599
|
+
"garage-open": 57355,
|
|
1600
|
+
"shelves-empty": 57926,
|
|
1601
|
+
"cruzeiro-sign": 57682,
|
|
1602
|
+
"watch-apple": 58059,
|
|
1603
|
+
"watch-calculator": 63728,
|
|
1604
|
+
"list-dropdown": 57807,
|
|
1605
|
+
"cabinet-filing": 63051,
|
|
1606
|
+
"burger-soda": 63576,
|
|
1607
|
+
"square-arrow-up": 62268,
|
|
1608
|
+
"arrow-square-up": 62268,
|
|
1609
|
+
"greater-than-equal": 62770,
|
|
1610
|
+
"pallet-box": 57864,
|
|
1611
|
+
"face-confounded": 58220,
|
|
1612
|
+
"shield-halved": 62445,
|
|
1613
|
+
"shield-alt": 62445,
|
|
1614
|
+
"truck-plow": 63454,
|
|
1615
|
+
"book-atlas": 62808,
|
|
1616
|
+
"atlas": 62808,
|
|
1617
|
+
"virus": 57460,
|
|
1618
|
+
"grid-round-2": 58843,
|
|
1619
|
+
"comment-middle-top": 57674,
|
|
1620
|
+
"envelope-circle-check": 58600,
|
|
1621
|
+
"layer-group": 62973,
|
|
1622
|
+
"restroom-simple": 57914,
|
|
1623
|
+
"arrows-to-dot": 58558,
|
|
1624
|
+
"border-outer": 63569,
|
|
1625
|
+
"hashtag-lock": 58389,
|
|
1626
|
+
"clock-two-thirty": 58203,
|
|
1627
|
+
"archway": 62807,
|
|
1628
|
+
"heart-circle-check": 58621,
|
|
1629
|
+
"house-chimney-crack": 63217,
|
|
1630
|
+
"house-damage": 63217,
|
|
1631
|
+
"file-zipper": 61894,
|
|
1632
|
+
"file-archive": 61894,
|
|
1633
|
+
"heart-half": 57771,
|
|
1634
|
+
"comment-check": 62636,
|
|
1635
|
+
"square": 61640,
|
|
1636
|
+
"memo": 57816,
|
|
1637
|
+
"martini-glass-empty": 61440,
|
|
1638
|
+
"glass-martini": 61440,
|
|
1639
|
+
"couch": 62648,
|
|
1640
|
+
"cedi-sign": 57567,
|
|
1641
|
+
"italic": 61491,
|
|
1642
|
+
"glass-citrus": 63593,
|
|
1643
|
+
"calendar-lines-pen": 58482,
|
|
1644
|
+
"church": 62749,
|
|
1645
|
+
"person-snowmobiling": 63441,
|
|
1646
|
+
"snowmobile": 63441,
|
|
1647
|
+
"face-hushed": 58235,
|
|
1648
|
+
"comments-dollar": 63059,
|
|
1649
|
+
"pickaxe": 58815,
|
|
1650
|
+
"link-simple-slash": 57806,
|
|
1651
|
+
"democrat": 63303,
|
|
1652
|
+
"face-confused": 58221,
|
|
1653
|
+
"pinball": 57897,
|
|
1654
|
+
"z": 90,
|
|
1655
|
+
"person-skiing": 63433,
|
|
1656
|
+
"skiing": 63433,
|
|
1657
|
+
"deer": 63374,
|
|
1658
|
+
"input-pipe": 57790,
|
|
1659
|
+
"road-lock": 58727,
|
|
1660
|
+
"a": 65,
|
|
1661
|
+
"bookmark-slash": 57538,
|
|
1662
|
+
"temperature-arrow-down": 57407,
|
|
1663
|
+
"temperature-down": 57407,
|
|
1664
|
+
"mace": 63224,
|
|
1665
|
+
"feather-pointed": 62827,
|
|
1666
|
+
"feather-alt": 62827,
|
|
1667
|
+
"sausage": 63520,
|
|
1668
|
+
"trash-can-clock": 58026,
|
|
1669
|
+
"p": 80,
|
|
1670
|
+
"broom-wide": 58833,
|
|
1671
|
+
"snowflake": 62172,
|
|
1672
|
+
"stomach": 63011,
|
|
1673
|
+
"newspaper": 61930,
|
|
1674
|
+
"rectangle-ad": 63041,
|
|
1675
|
+
"ad": 63041,
|
|
1676
|
+
"guitar-electric": 63678,
|
|
1677
|
+
"arrow-turn-down-right": 58326,
|
|
1678
|
+
"moon-cloud": 63316,
|
|
1679
|
+
"bread-slice-butter": 58337,
|
|
1680
|
+
"circle-arrow-right": 61609,
|
|
1681
|
+
"arrow-circle-right": 61609,
|
|
1682
|
+
"user-group-crown": 63141,
|
|
1683
|
+
"users-crown": 63141,
|
|
1684
|
+
"circle-i": 57617,
|
|
1685
|
+
"toilet-paper-check": 58802,
|
|
1686
|
+
"filter-circle-xmark": 57723,
|
|
1687
|
+
"locust": 58656,
|
|
1688
|
+
"sort": 61660,
|
|
1689
|
+
"unsorted": 61660,
|
|
1690
|
+
"list-ol": 61643,
|
|
1691
|
+
"list-1-2": 61643,
|
|
1692
|
+
"list-numeric": 61643,
|
|
1693
|
+
"chart-waterfall": 57579,
|
|
1694
|
+
"sparkle": 58838,
|
|
1695
|
+
"face-party": 58243,
|
|
1696
|
+
"kidneys": 62971,
|
|
1697
|
+
"wifi-exclamation": 58063,
|
|
1698
|
+
"chart-network": 63370,
|
|
1699
|
+
"person-dress-burst": 58692,
|
|
1700
|
+
"dice-d4": 63184,
|
|
1701
|
+
"money-check-dollar": 62781,
|
|
1702
|
+
"money-check-alt": 62781,
|
|
1703
|
+
"vector-square": 62923,
|
|
1704
|
+
"bread-slice": 63468,
|
|
1705
|
+
"language": 61867,
|
|
1706
|
+
"wheat-awn-slash": 58168,
|
|
1707
|
+
"face-kiss-wink-heart": 62872,
|
|
1708
|
+
"kiss-wink-heart": 62872,
|
|
1709
|
+
"dagger": 63179,
|
|
1710
|
+
"podium": 63104,
|
|
1711
|
+
"memo-circle-check": 57817,
|
|
1712
|
+
"route-highway": 63002,
|
|
1713
|
+
"down-to-line": 62282,
|
|
1714
|
+
"arrow-alt-to-bottom": 62282,
|
|
1715
|
+
"filter": 61616,
|
|
1716
|
+
"square-g": 57969,
|
|
1717
|
+
"circle-phone": 57627,
|
|
1718
|
+
"phone-circle": 57627,
|
|
1719
|
+
"clipboard-prescription": 62952,
|
|
1720
|
+
"user-nurse-hair": 58461,
|
|
1721
|
+
"question": 63,
|
|
1722
|
+
"file-signature": 62835,
|
|
1723
|
+
"toggle-large-on": 58801,
|
|
1724
|
+
"up-down-left-right": 61618,
|
|
1725
|
+
"arrows-alt": 61618,
|
|
1726
|
+
"dryer-heat": 63586,
|
|
1727
|
+
"dryer-alt": 63586,
|
|
1728
|
+
"house-chimney-user": 57445,
|
|
1729
|
+
"hand-holding-heart": 62654,
|
|
1730
|
+
"arrow-up-small-big": 63631,
|
|
1731
|
+
"sort-size-up-alt": 63631,
|
|
1732
|
+
"train-track": 58451,
|
|
1733
|
+
"puzzle-piece": 61742,
|
|
1734
|
+
"money-check": 62780,
|
|
1735
|
+
"star-half-stroke": 62912,
|
|
1736
|
+
"star-half-alt": 62912,
|
|
1737
|
+
"file-exclamation": 62234,
|
|
1738
|
+
"code": 61729,
|
|
1739
|
+
"whiskey-glass": 63392,
|
|
1740
|
+
"glass-whiskey": 63392,
|
|
1741
|
+
"moon-stars": 63317,
|
|
1742
|
+
"building-circle-exclamation": 58579,
|
|
1743
|
+
"clothes-hanger": 57654,
|
|
1744
|
+
"mobile-notch": 57838,
|
|
1745
|
+
"mobile-iphone": 57838,
|
|
1746
|
+
"magnifying-glass-chart": 58658,
|
|
1747
|
+
"arrow-up-right-from-square": 61582,
|
|
1748
|
+
"external-link": 61582,
|
|
1749
|
+
"cubes-stacked": 58598,
|
|
1750
|
+
"images-user": 57785,
|
|
1751
|
+
"won-sign": 61785,
|
|
1752
|
+
"krw": 61785,
|
|
1753
|
+
"won": 61785,
|
|
1754
|
+
"image-polaroid-user": 57782,
|
|
1755
|
+
"virus-covid": 58536,
|
|
1756
|
+
"square-ellipsis": 57966,
|
|
1757
|
+
"pie": 63237,
|
|
1758
|
+
"chess-knight-piece": 62530,
|
|
1759
|
+
"chess-knight-alt": 62530,
|
|
1760
|
+
"austral-sign": 57513,
|
|
1761
|
+
"cloud-plus": 58206,
|
|
1762
|
+
"f": 70,
|
|
1763
|
+
"leaf": 61548,
|
|
1764
|
+
"bed-bunk": 63736,
|
|
1765
|
+
"road": 61464,
|
|
1766
|
+
"taxi": 61882,
|
|
1767
|
+
"cab": 61882,
|
|
1768
|
+
"person-circle-plus": 58689,
|
|
1769
|
+
"chart-pie": 61952,
|
|
1770
|
+
"pie-chart": 61952,
|
|
1771
|
+
"bolt-lightning": 57527,
|
|
1772
|
+
"clock-eight": 58181,
|
|
1773
|
+
"sack-xmark": 58730,
|
|
1774
|
+
"file-excel": 61891,
|
|
1775
|
+
"file-contract": 62828,
|
|
1776
|
+
"fish-fins": 58610,
|
|
1777
|
+
"circle-q": 57630,
|
|
1778
|
+
"building-flag": 58581,
|
|
1779
|
+
"face-grin-beam": 62850,
|
|
1780
|
+
"grin-beam": 62850,
|
|
1781
|
+
"object-ungroup": 62024,
|
|
1782
|
+
"face-disguise": 58224,
|
|
1783
|
+
"circle-arrow-down-right": 57594,
|
|
1784
|
+
"alien-8bit": 63734,
|
|
1785
|
+
"alien-monster": 63734,
|
|
1786
|
+
"hand-point-ribbon": 57766,
|
|
1787
|
+
"poop": 63001,
|
|
1788
|
+
"object-exclude": 58524,
|
|
1789
|
+
"telescope": 57406,
|
|
1790
|
+
"location-pin": 61505,
|
|
1791
|
+
"map-marker": 61505,
|
|
1792
|
+
"square-list": 58505,
|
|
1793
|
+
"kaaba": 63083,
|
|
1794
|
+
"toilet-paper": 63262,
|
|
1795
|
+
"helmet-safety": 63495,
|
|
1796
|
+
"hard-hat": 63495,
|
|
1797
|
+
"hat-hard": 63495,
|
|
1798
|
+
"comment-code": 57671,
|
|
1799
|
+
"sim-cards": 57937,
|
|
1800
|
+
"starship": 57401,
|
|
1801
|
+
"eject": 61522,
|
|
1802
|
+
"circle-right": 62298,
|
|
1803
|
+
"arrow-alt-circle-right": 62298,
|
|
1804
|
+
"plane-circle-check": 58709,
|
|
1805
|
+
"seal": 57921,
|
|
1806
|
+
"user-cowboy": 63722,
|
|
1807
|
+
"hexagon-vertical-nft": 58629,
|
|
1808
|
+
"face-rolling-eyes": 62885,
|
|
1809
|
+
"meh-rolling-eyes": 62885,
|
|
1810
|
+
"bread-loaf": 63467,
|
|
1811
|
+
"rings-wedding": 63515,
|
|
1812
|
+
"object-group": 62023,
|
|
1813
|
+
"french-fries": 63491,
|
|
1814
|
+
"chart-line": 61953,
|
|
1815
|
+
"line-chart": 61953,
|
|
1816
|
+
"calendar-arrow-down": 57552,
|
|
1817
|
+
"calendar-download": 57552,
|
|
1818
|
+
"send-back": 63614,
|
|
1819
|
+
"mask-ventilator": 58660,
|
|
1820
|
+
"signature-lock": 58314,
|
|
1821
|
+
"arrow-right": 61537,
|
|
1822
|
+
"signs-post": 62071,
|
|
1823
|
+
"map-signs": 62071,
|
|
1824
|
+
"octagon-plus": 62209,
|
|
1825
|
+
"plus-octagon": 62209,
|
|
1826
|
+
"cash-register": 63368,
|
|
1827
|
+
"person-circle-question": 58690,
|
|
1828
|
+
"melon-slice": 58129,
|
|
1829
|
+
"space-station-moon": 57395,
|
|
1830
|
+
"message-smile": 62634,
|
|
1831
|
+
"comment-alt-smile": 62634,
|
|
1832
|
+
"cup-straw": 58211,
|
|
1833
|
+
"left-from-line": 62280,
|
|
1834
|
+
"arrow-alt-from-right": 62280,
|
|
1835
|
+
"h": 72,
|
|
1836
|
+
"basket-shopping-simple": 57519,
|
|
1837
|
+
"shopping-basket-alt": 57519,
|
|
1838
|
+
"hands-holding-heart": 62659,
|
|
1839
|
+
"hands-heart": 62659,
|
|
1840
|
+
"clock-nine": 58188,
|
|
1841
|
+
"tarp": 58747,
|
|
1842
|
+
"face-sleepy": 58254,
|
|
1843
|
+
"hand-horns": 57769,
|
|
1844
|
+
"screwdriver-wrench": 63449,
|
|
1845
|
+
"tools": 63449,
|
|
1846
|
+
"arrows-to-eye": 58559,
|
|
1847
|
+
"circle-three-quarters": 57637,
|
|
1848
|
+
"trophy-star": 62187,
|
|
1849
|
+
"trophy-alt": 62187,
|
|
1850
|
+
"plug-circle-bolt": 58715,
|
|
1851
|
+
"face-thermometer": 58266,
|
|
1852
|
+
"grid-round-4": 58845,
|
|
1853
|
+
"shirt-running": 58312,
|
|
1854
|
+
"book-circle-arrow-up": 57533,
|
|
1855
|
+
"face-nauseated": 58241,
|
|
1856
|
+
"heart": 61444,
|
|
1857
|
+
"file-chart-pie": 63066,
|
|
1858
|
+
"mars-and-venus": 61988,
|
|
1859
|
+
"house-user": 57776,
|
|
1860
|
+
"home-user": 57776,
|
|
1861
|
+
"circle-arrow-down-left": 57593,
|
|
1862
|
+
"dumpster-fire": 63380,
|
|
1863
|
+
"hexagon-minus": 62215,
|
|
1864
|
+
"minus-hexagon": 62215,
|
|
1865
|
+
"left-to-line": 62283,
|
|
1866
|
+
"arrow-alt-to-left": 62283,
|
|
1867
|
+
"house-crack": 58289,
|
|
1868
|
+
"paw-simple": 63233,
|
|
1869
|
+
"paw-alt": 63233,
|
|
1870
|
+
"arrow-left-long-to-line": 58324,
|
|
1871
|
+
"brackets-round": 57541,
|
|
1872
|
+
"parentheses": 57541,
|
|
1873
|
+
"martini-glass-citrus": 62817,
|
|
1874
|
+
"cocktail": 62817,
|
|
1875
|
+
"user-shakespeare": 58050,
|
|
1876
|
+
"arrow-right-to-arc": 58546,
|
|
1877
|
+
"face-surprise": 62914,
|
|
1878
|
+
"surprise": 62914,
|
|
1879
|
+
"bottle-water": 58565,
|
|
1880
|
+
"circle-pause": 62091,
|
|
1881
|
+
"pause-circle": 62091,
|
|
1882
|
+
"gauge-circle-plus": 58520,
|
|
1883
|
+
"folders": 63072,
|
|
1884
|
+
"angel": 63353,
|
|
1885
|
+
"value-absolute": 63142,
|
|
1886
|
+
"rabbit": 63240,
|
|
1887
|
+
"toilet-paper-slash": 57458,
|
|
1888
|
+
"circle-euro": 58830,
|
|
1889
|
+
"apple-whole": 62929,
|
|
1890
|
+
"apple-alt": 62929,
|
|
1891
|
+
"kitchen-set": 58650,
|
|
1892
|
+
"diamond-half": 58807,
|
|
1893
|
+
"lock-keyhole": 62221,
|
|
1894
|
+
"lock-alt": 62221,
|
|
1895
|
+
"r": 82,
|
|
1896
|
+
"temperature-quarter": 62154,
|
|
1897
|
+
"temperature-1": 62154,
|
|
1898
|
+
"thermometer-1": 62154,
|
|
1899
|
+
"thermometer-quarter": 62154,
|
|
1900
|
+
"square-info": 62223,
|
|
1901
|
+
"info-square": 62223,
|
|
1902
|
+
"wifi-slash": 63148,
|
|
1903
|
+
"toilet-paper-xmark": 58803,
|
|
1904
|
+
"hands-holding-dollar": 62661,
|
|
1905
|
+
"hands-usd": 62661,
|
|
1906
|
+
"cube": 61874,
|
|
1907
|
+
"arrow-down-triangle-square": 63624,
|
|
1908
|
+
"sort-shapes-down": 63624,
|
|
1909
|
+
"bitcoin-sign": 57524,
|
|
1910
|
+
"shutters": 58441,
|
|
1911
|
+
"shield-dog": 58739,
|
|
1912
|
+
"solar-panel": 62906,
|
|
1913
|
+
"lock-open": 62401,
|
|
1914
|
+
"table-tree": 58003,
|
|
1915
|
+
"house-chimney-heart": 57778,
|
|
1916
|
+
"tally-3": 58006,
|
|
1917
|
+
"elevator": 57709,
|
|
1918
|
+
"money-bill-transfer": 58664,
|
|
1919
|
+
"money-bill-trend-up": 58665,
|
|
1920
|
+
"house-flood-water-circle-arrow-right": 58639,
|
|
1921
|
+
"square-poll-horizontal": 63106,
|
|
1922
|
+
"poll-h": 63106,
|
|
1923
|
+
"circle": 61713,
|
|
1924
|
+
"cart-circle-exclamation": 58354,
|
|
1925
|
+
"sword": 63260,
|
|
1926
|
+
"backward-fast": 61513,
|
|
1927
|
+
"fast-backward": 61513,
|
|
1928
|
+
"recycle": 61880,
|
|
1929
|
+
"user-astronaut": 62715,
|
|
1930
|
+
"interrobang": 58810,
|
|
1931
|
+
"plane-slash": 57449,
|
|
1932
|
+
"circle-dashed": 57605,
|
|
1933
|
+
"trademark": 62044,
|
|
1934
|
+
"basketball": 62516,
|
|
1935
|
+
"basketball-ball": 62516,
|
|
1936
|
+
"fork-knife": 62182,
|
|
1937
|
+
"utensils-alt": 62182,
|
|
1938
|
+
"satellite-dish": 63424,
|
|
1939
|
+
"badge-check": 62262,
|
|
1940
|
+
"circle-up": 62299,
|
|
1941
|
+
"arrow-alt-circle-up": 62299,
|
|
1942
|
+
"slider": 57938,
|
|
1943
|
+
"mobile-screen-button": 62413,
|
|
1944
|
+
"mobile-alt": 62413,
|
|
1945
|
+
"clock-one-thirty": 58191,
|
|
1946
|
+
"inbox-out": 62225,
|
|
1947
|
+
"inbox-arrow-up": 62225,
|
|
1948
|
+
"cloud-slash": 57655,
|
|
1949
|
+
"volume-high": 61480,
|
|
1950
|
+
"volume-up": 61480,
|
|
1951
|
+
"users-rays": 58771,
|
|
1952
|
+
"wallet": 62805,
|
|
1953
|
+
"octagon-check": 58406,
|
|
1954
|
+
"flatbread-stuffed": 58380,
|
|
1955
|
+
"clipboard-check": 62572,
|
|
1956
|
+
"cart-circle-plus": 58355,
|
|
1957
|
+
"truck-clock": 62604,
|
|
1958
|
+
"shipping-timed": 62604,
|
|
1959
|
+
"pool-8-ball": 58309,
|
|
1960
|
+
"file-audio": 61895,
|
|
1961
|
+
"turn-down-left": 58161,
|
|
1962
|
+
"lock-hashtag": 58403,
|
|
1963
|
+
"chart-radar": 57575,
|
|
1964
|
+
"staff": 63259,
|
|
1965
|
+
"burger": 63493,
|
|
1966
|
+
"hamburger": 63493,
|
|
1967
|
+
"utility-pole": 58051,
|
|
1968
|
+
"transporter-6": 58023,
|
|
1969
|
+
"wrench": 61613,
|
|
1970
|
+
"bugs": 58576,
|
|
1971
|
+
"vector-polygon": 58055,
|
|
1972
|
+
"diagram-nested": 57687,
|
|
1973
|
+
"rupee-sign": 61782,
|
|
1974
|
+
"rupee": 61782,
|
|
1975
|
+
"file-image": 61893,
|
|
1976
|
+
"circle-question": 61529,
|
|
1977
|
+
"question-circle": 61529,
|
|
1978
|
+
"image-user": 57784,
|
|
1979
|
+
"buoy": 58805,
|
|
1980
|
+
"plane-departure": 62896,
|
|
1981
|
+
"handshake-slash": 57440,
|
|
1982
|
+
"book-bookmark": 57531,
|
|
1983
|
+
"border-center-h": 63644,
|
|
1984
|
+
"can-food": 58342,
|
|
1985
|
+
"typewriter": 63719,
|
|
1986
|
+
"arrow-right-from-arc": 58545,
|
|
1987
|
+
"circle-k": 57619,
|
|
1988
|
+
"face-hand-over-mouth": 58232,
|
|
1989
|
+
"popcorn": 63513,
|
|
1990
|
+
"house-water": 63311,
|
|
1991
|
+
"house-flood": 63311,
|
|
1992
|
+
"object-subtract": 58526,
|
|
1993
|
+
"code-branch": 61734,
|
|
1994
|
+
"warehouse-full": 62613,
|
|
1995
|
+
"warehouse-alt": 62613,
|
|
1996
|
+
"hat-cowboy": 63680,
|
|
1997
|
+
"bridge": 58568,
|
|
1998
|
+
"phone-flip": 63609,
|
|
1999
|
+
"phone-alt": 63609,
|
|
2000
|
+
"arrow-down-from-dotted-line": 57488,
|
|
2001
|
+
"file-doc": 58861,
|
|
2002
|
+
"square-quarters": 58446,
|
|
2003
|
+
"truck-front": 58039,
|
|
2004
|
+
"cat": 63166,
|
|
2005
|
+
"trash-xmark": 58036,
|
|
2006
|
+
"circle-caret-left": 62254,
|
|
2007
|
+
"caret-circle-left": 62254,
|
|
2008
|
+
"files": 57720,
|
|
2009
|
+
"anchor-circle-exclamation": 58539,
|
|
2010
|
+
"face-clouds": 58493,
|
|
2011
|
+
"user-crown": 63140,
|
|
2012
|
+
"truck-field": 58765,
|
|
2013
|
+
"route": 62679,
|
|
2014
|
+
"cart-circle-check": 58353,
|
|
2015
|
+
"clipboard-question": 58595,
|
|
2016
|
+
"panorama": 57865,
|
|
2017
|
+
"comment-medical": 63477,
|
|
2018
|
+
"teeth-open": 63023,
|
|
2019
|
+
"user-tie-hair-long": 58464,
|
|
2020
|
+
"file-circle-minus": 58605,
|
|
2021
|
+
"head-side-medical": 63497,
|
|
2022
|
+
"tags": 61484,
|
|
2023
|
+
"wine-glass": 62691,
|
|
2024
|
+
"forward-fast": 61520,
|
|
2025
|
+
"fast-forward": 61520,
|
|
2026
|
+
"face-meh-blank": 62884,
|
|
2027
|
+
"meh-blank": 62884,
|
|
2028
|
+
"user-robot": 57419,
|
|
2029
|
+
"square-parking": 62784,
|
|
2030
|
+
"parking": 62784,
|
|
2031
|
+
"card-diamond": 58346,
|
|
2032
|
+
"face-zipper": 58277,
|
|
2033
|
+
"face-raised-eyebrow": 58248,
|
|
2034
|
+
"house-signal": 57362,
|
|
2035
|
+
"square-chevron-up": 62252,
|
|
2036
|
+
"chevron-square-up": 62252,
|
|
2037
|
+
"bars-progress": 63528,
|
|
2038
|
+
"tasks-alt": 63528,
|
|
2039
|
+
"faucet-drip": 57350,
|
|
2040
|
+
"arrows-to-line": 57511,
|
|
2041
|
+
"dolphin": 57704,
|
|
2042
|
+
"arrow-up-right": 57503,
|
|
2043
|
+
"circle-r": 57632,
|
|
2044
|
+
"cart-flatbed": 62580,
|
|
2045
|
+
"dolly-flatbed": 62580,
|
|
2046
|
+
"ban-smoking": 62797,
|
|
2047
|
+
"smoking-ban": 62797,
|
|
2048
|
+
"circle-sort-up": 57394,
|
|
2049
|
+
"sort-circle-up": 57394,
|
|
2050
|
+
"terminal": 61728,
|
|
2051
|
+
"mobile-button": 61707,
|
|
2052
|
+
"house-medical-flag": 58644,
|
|
2053
|
+
"basket-shopping": 62097,
|
|
2054
|
+
"shopping-basket": 62097,
|
|
2055
|
+
"tape": 62683,
|
|
2056
|
+
"chestnut": 58358,
|
|
2057
|
+
"bus-simple": 62814,
|
|
2058
|
+
"bus-alt": 62814,
|
|
2059
|
+
"eye": 61550,
|
|
2060
|
+
"face-sad-cry": 62899,
|
|
2061
|
+
"sad-cry": 62899,
|
|
2062
|
+
"heat": 57356,
|
|
2063
|
+
"ticket-airline": 58010,
|
|
2064
|
+
"boot-heeled": 58175,
|
|
2065
|
+
"arrows-minimize": 57509,
|
|
2066
|
+
"compress-arrows": 57509,
|
|
2067
|
+
"audio-description": 62110,
|
|
2068
|
+
"person-military-to-person": 58700,
|
|
2069
|
+
"file-shield": 58608,
|
|
2070
|
+
"hexagon": 62226,
|
|
2071
|
+
"manhole": 57814,
|
|
2072
|
+
"user-slash": 62726,
|
|
2073
|
+
"pen": 62212,
|
|
2074
|
+
"tower-observation": 58758,
|
|
2075
|
+
"floppy-disks": 57731,
|
|
2076
|
+
"toilet-paper-blank-under": 58015,
|
|
2077
|
+
"toilet-paper-reverse-alt": 58015,
|
|
2078
|
+
"file-code": 61897,
|
|
2079
|
+
"signal": 61458,
|
|
2080
|
+
"signal-5": 61458,
|
|
2081
|
+
"signal-perfect": 61458,
|
|
2082
|
+
"pump": 58434,
|
|
2083
|
+
"bus": 61959,
|
|
2084
|
+
"heart-circle-xmark": 58625,
|
|
2085
|
+
"arrow-up-left-from-circle": 57502,
|
|
2086
|
+
"house-chimney": 58287,
|
|
2087
|
+
"home-lg": 58287,
|
|
2088
|
+
"window-maximize": 62160,
|
|
2089
|
+
"dryer": 63585,
|
|
2090
|
+
"face-frown": 61721,
|
|
2091
|
+
"frown": 61721,
|
|
2092
|
+
"chess-bishop-piece": 62523,
|
|
2093
|
+
"chess-bishop-alt": 62523,
|
|
2094
|
+
"shirt-tank-top": 58313,
|
|
2095
|
+
"diploma": 62954,
|
|
2096
|
+
"scroll-ribbon": 62954,
|
|
2097
|
+
"screencast": 57918,
|
|
2098
|
+
"walker": 63537,
|
|
2099
|
+
"prescription": 62897,
|
|
2100
|
+
"shop": 62799,
|
|
2101
|
+
"store-alt": 62799,
|
|
2102
|
+
"floppy-disk": 61639,
|
|
2103
|
+
"save": 61639,
|
|
2104
|
+
"vihara": 63143,
|
|
2105
|
+
"face-kiss-closed-eyes": 58237,
|
|
2106
|
+
"scale-unbalanced": 62741,
|
|
2107
|
+
"balance-scale-left": 62741,
|
|
2108
|
+
"file-user": 63068,
|
|
2109
|
+
"user-police-tie": 58164,
|
|
2110
|
+
"face-tongue-money": 58269,
|
|
2111
|
+
"tennis-ball": 62558,
|
|
2112
|
+
"square-l": 57973,
|
|
2113
|
+
"sort-up": 61662,
|
|
2114
|
+
"sort-asc": 61662,
|
|
2115
|
+
"calendar-arrow-up": 57553,
|
|
2116
|
+
"calendar-upload": 57553,
|
|
2117
|
+
"comment-dots": 62637,
|
|
2118
|
+
"commenting": 62637,
|
|
2119
|
+
"plant-wilt": 58794,
|
|
2120
|
+
"scarf": 63425,
|
|
2121
|
+
"album-circle-plus": 58508,
|
|
2122
|
+
"user-nurse-hair-long": 58462,
|
|
2123
|
+
"diamond": 61977,
|
|
2124
|
+
"square-left": 62289,
|
|
2125
|
+
"arrow-alt-square-left": 62289,
|
|
2126
|
+
"face-grin-squint": 62853,
|
|
2127
|
+
"grin-squint": 62853,
|
|
2128
|
+
"circle-ellipsis-vertical": 57611,
|
|
2129
|
+
"hand-holding-dollar": 62656,
|
|
2130
|
+
"hand-holding-usd": 62656,
|
|
2131
|
+
"grid-dividers": 58285,
|
|
2132
|
+
"bacterium": 57434,
|
|
2133
|
+
"hand-pointer": 62042,
|
|
2134
|
+
"drum-steelpan": 62826,
|
|
2135
|
+
"hand-scissors": 62039,
|
|
2136
|
+
"hands-praying": 63108,
|
|
2137
|
+
"praying-hands": 63108,
|
|
2138
|
+
"face-pensive": 58244,
|
|
2139
|
+
"user-music": 63723,
|
|
2140
|
+
"arrow-rotate-right": 61470,
|
|
2141
|
+
"arrow-right-rotate": 61470,
|
|
2142
|
+
"arrow-rotate-forward": 61470,
|
|
2143
|
+
"redo": 61470,
|
|
2144
|
+
"messages-dollar": 63058,
|
|
2145
|
+
"comments-alt-dollar": 63058,
|
|
2146
|
+
"sensor-on": 57387,
|
|
2147
|
+
"balloon": 58083,
|
|
2148
|
+
"biohazard": 63360,
|
|
2149
|
+
"chess-queen-piece": 62534,
|
|
2150
|
+
"chess-queen-alt": 62534,
|
|
2151
|
+
"location-crosshairs": 62977,
|
|
2152
|
+
"location": 62977,
|
|
2153
|
+
"mars-double": 61991,
|
|
2154
|
+
"house-person-leave": 57359,
|
|
2155
|
+
"house-leave": 57359,
|
|
2156
|
+
"house-person-depart": 57359,
|
|
2157
|
+
"ruler-triangle": 63004,
|
|
2158
|
+
"card-club": 58345,
|
|
2159
|
+
"child-dress": 58780,
|
|
2160
|
+
"users-between-lines": 58769,
|
|
2161
|
+
"lungs-virus": 57447,
|
|
2162
|
+
"spinner-third": 62452,
|
|
2163
|
+
"face-grin-tears": 62856,
|
|
2164
|
+
"grin-tears": 62856,
|
|
2165
|
+
"phone": 61589,
|
|
2166
|
+
"computer-mouse-scrollwheel": 63693,
|
|
2167
|
+
"mouse-alt": 63693,
|
|
2168
|
+
"calendar-xmark": 62067,
|
|
2169
|
+
"calendar-times": 62067,
|
|
2170
|
+
"child-reaching": 58781,
|
|
2171
|
+
"table-layout": 58000,
|
|
2172
|
+
"narwhal": 63230,
|
|
2173
|
+
"ramp-loading": 62676,
|
|
2174
|
+
"calendar-circle-plus": 58480,
|
|
2175
|
+
"toothbrush": 63029,
|
|
2176
|
+
"border-inner": 63566,
|
|
2177
|
+
"paw-claws": 63234,
|
|
2178
|
+
"kiwi-fruit": 58124,
|
|
2179
|
+
"traffic-light-slow": 63033,
|
|
2180
|
+
"rectangle-code": 58146,
|
|
2181
|
+
"head-side-virus": 57444,
|
|
2182
|
+
"keyboard-brightness": 57792,
|
|
2183
|
+
"books-medical": 63464,
|
|
2184
|
+
"lightbulb-slash": 63091,
|
|
2185
|
+
"house-blank": 58503,
|
|
2186
|
+
"home-blank": 58503,
|
|
2187
|
+
"square-5": 57946,
|
|
2188
|
+
"square-heart": 62664,
|
|
2189
|
+
"heart-square": 62664,
|
|
2190
|
+
"puzzle": 58435,
|
|
2191
|
+
"user-gear": 62718,
|
|
2192
|
+
"user-cog": 62718,
|
|
2193
|
+
"pipe-circle-check": 58422,
|
|
2194
|
+
"arrow-up-1-9": 61795,
|
|
2195
|
+
"sort-numeric-up": 61795,
|
|
2196
|
+
"octagon-exclamation": 57860,
|
|
2197
|
+
"dial-low": 57693,
|
|
2198
|
+
"door-closed": 62762,
|
|
2199
|
+
"laptop-mobile": 63610,
|
|
2200
|
+
"phone-laptop": 63610,
|
|
2201
|
+
"conveyor-belt-boxes": 62575,
|
|
2202
|
+
"conveyor-belt-alt": 62575,
|
|
2203
|
+
"shield-virus": 57452,
|
|
2204
|
+
"starfighter-twin-ion-engine-advanced": 57998,
|
|
2205
|
+
"starfighter-alt-advanced": 57998,
|
|
2206
|
+
"dice-six": 62758,
|
|
2207
|
+
"starfighter-twin-ion-engine": 57400,
|
|
2208
|
+
"starfighter-alt": 57400,
|
|
2209
|
+
"rocket-launch": 57383,
|
|
2210
|
+
"mosquito-net": 58668,
|
|
2211
|
+
"vent-damper": 58469,
|
|
2212
|
+
"bridge-water": 58574,
|
|
2213
|
+
"ban-bug": 63481,
|
|
2214
|
+
"debug": 63481,
|
|
2215
|
+
"person-booth": 63318,
|
|
2216
|
+
"text-width": 61493,
|
|
2217
|
+
"garage-car": 57354,
|
|
2218
|
+
"square-kanban": 58504,
|
|
2219
|
+
"hat-wizard": 63208,
|
|
2220
|
+
"pen-fancy": 62892,
|
|
2221
|
+
"coffee-pot": 57346,
|
|
2222
|
+
"mouse-field": 58792,
|
|
2223
|
+
"person-digging": 63582,
|
|
2224
|
+
"digging": 63582,
|
|
2225
|
+
"shower-down": 57933,
|
|
2226
|
+
"shower-alt": 57933,
|
|
2227
|
+
"box-circle-check": 57540,
|
|
2228
|
+
"brightness": 57545,
|
|
2229
|
+
"car-side-bolt": 58180,
|
|
2230
|
+
"ornament": 63416,
|
|
2231
|
+
"phone-arrow-down-left": 57891,
|
|
2232
|
+
"phone-arrow-down": 57891,
|
|
2233
|
+
"phone-incoming": 57891,
|
|
2234
|
+
"cloud-word": 57656,
|
|
2235
|
+
"hand-fingers-crossed": 57763,
|
|
2236
|
+
"trash": 61944,
|
|
2237
|
+
"gauge-simple": 63017,
|
|
2238
|
+
"gauge-simple-med": 63017,
|
|
2239
|
+
"tachometer-average": 63017,
|
|
2240
|
+
"arrow-down-small-big": 63629,
|
|
2241
|
+
"sort-size-down-alt": 63629,
|
|
2242
|
+
"book-medical": 63462,
|
|
2243
|
+
"face-melting": 58499,
|
|
2244
|
+
"poo": 62206,
|
|
2245
|
+
"pen-clip-slash": 57871,
|
|
2246
|
+
"pen-alt-slash": 57871,
|
|
2247
|
+
"quote-right": 61710,
|
|
2248
|
+
"quote-right-alt": 61710,
|
|
2249
|
+
"scroll-old": 63247,
|
|
2250
|
+
"guitars": 63679,
|
|
2251
|
+
"phone-xmark": 57895,
|
|
2252
|
+
"hose": 58393,
|
|
2253
|
+
"clock-six": 58194,
|
|
2254
|
+
"shirt": 62803,
|
|
2255
|
+
"t-shirt": 62803,
|
|
2256
|
+
"tshirt": 62803,
|
|
2257
|
+
"billboard": 58829,
|
|
2258
|
+
"square-r": 57980,
|
|
2259
|
+
"cubes": 61875,
|
|
2260
|
+
"envelope-open-dollar": 63063,
|
|
2261
|
+
"divide": 62761,
|
|
2262
|
+
"sun-cloud": 63331,
|
|
2263
|
+
"lamp-floor": 57365,
|
|
2264
|
+
"square-7": 57948,
|
|
2265
|
+
"tenge-sign": 63447,
|
|
2266
|
+
"tenge": 63447,
|
|
2267
|
+
"headphones": 61477,
|
|
2268
|
+
"hands-holding": 62658,
|
|
2269
|
+
"campfire": 63162,
|
|
2270
|
+
"circle-ampersand": 57592,
|
|
2271
|
+
"snowflakes": 63439,
|
|
2272
|
+
"hands-clapping": 57768,
|
|
2273
|
+
"republican": 63326,
|
|
2274
|
+
"leaf-maple": 63222,
|
|
2275
|
+
"arrow-left": 61536,
|
|
2276
|
+
"person-circle-xmark": 58691,
|
|
2277
|
+
"ruler": 62789,
|
|
2278
|
+
"cup-straw-swoosh": 58212,
|
|
2279
|
+
"temperature-sun": 63338,
|
|
2280
|
+
"temperature-hot": 63338,
|
|
2281
|
+
"align-left": 61494,
|
|
2282
|
+
"dice-d6": 63185,
|
|
2283
|
+
"restroom": 63421,
|
|
2284
|
+
"high-definition": 57774,
|
|
2285
|
+
"rectangle-hd": 57774,
|
|
2286
|
+
"j": 74,
|
|
2287
|
+
"galaxy": 57352,
|
|
2288
|
+
"users-viewfinder": 58773,
|
|
2289
|
+
"file-video": 61896,
|
|
2290
|
+
"cherries": 57580,
|
|
2291
|
+
"up-right-from-square": 62301,
|
|
2292
|
+
"external-link-alt": 62301,
|
|
2293
|
+
"circle-sort": 57392,
|
|
2294
|
+
"sort-circle": 57392,
|
|
2295
|
+
"table-cells": 61450,
|
|
2296
|
+
"th": 61450,
|
|
2297
|
+
"file-pdf": 61889,
|
|
2298
|
+
"siren": 57389,
|
|
2299
|
+
"arrow-up-to-dotted-line": 57505,
|
|
2300
|
+
"image-landscape": 57781,
|
|
2301
|
+
"landscape": 57781,
|
|
2302
|
+
"tank-water": 58450,
|
|
2303
|
+
"curling-stone": 62538,
|
|
2304
|
+
"curling": 62538,
|
|
2305
|
+
"gamepad-modern": 58786,
|
|
2306
|
+
"gamepad-alt": 58786,
|
|
2307
|
+
"messages-question": 57831,
|
|
2308
|
+
"book-bible": 63047,
|
|
2309
|
+
"bible": 63047,
|
|
2310
|
+
"o": 79,
|
|
2311
|
+
"suitcase-medical": 61690,
|
|
2312
|
+
"medkit": 61690,
|
|
2313
|
+
"briefcase-arrow-right": 58098,
|
|
2314
|
+
"expand-wide": 62240,
|
|
2315
|
+
"clock-eleven-thirty": 58184,
|
|
2316
|
+
"rv": 63422,
|
|
2317
|
+
"user-secret": 61979,
|
|
2318
|
+
"otter": 63232,
|
|
2319
|
+
"dreidel": 63378,
|
|
2320
|
+
"person-dress": 61826,
|
|
2321
|
+
"female": 61826,
|
|
2322
|
+
"comment-dollar": 63057,
|
|
2323
|
+
"business-time": 63050,
|
|
2324
|
+
"briefcase-clock": 63050,
|
|
2325
|
+
"flower-tulip": 63489,
|
|
2326
|
+
"people-pants-simple": 57882,
|
|
2327
|
+
"cloud-drizzle": 63288,
|
|
2328
|
+
"table-cells-large": 61449,
|
|
2329
|
+
"th-large": 61449,
|
|
2330
|
+
"book-tanakh": 63527,
|
|
2331
|
+
"tanakh": 63527,
|
|
2332
|
+
"solar-system": 57391,
|
|
2333
|
+
"seal-question": 57923,
|
|
2334
|
+
"phone-volume": 62112,
|
|
2335
|
+
"volume-control-phone": 62112,
|
|
2336
|
+
"disc-drive": 63669,
|
|
2337
|
+
"hat-cowboy-side": 63681,
|
|
2338
|
+
"table-rows": 58002,
|
|
2339
|
+
"rows": 58002,
|
|
2340
|
+
"location-exclamation": 62984,
|
|
2341
|
+
"map-marker-exclamation": 62984,
|
|
2342
|
+
"face-fearful": 58229,
|
|
2343
|
+
"clipboard-user": 63475,
|
|
2344
|
+
"bus-school": 62941,
|
|
2345
|
+
"film-slash": 57721,
|
|
2346
|
+
"square-arrow-down-right": 57954,
|
|
2347
|
+
"book-sparkles": 63160,
|
|
2348
|
+
"book-spells": 63160,
|
|
2349
|
+
"washing-machine": 63640,
|
|
2350
|
+
"washer": 63640,
|
|
2351
|
+
"child": 61870,
|
|
2352
|
+
"lira-sign": 61845,
|
|
2353
|
+
"user-visor": 57420,
|
|
2354
|
+
"file-plus-minus": 57719,
|
|
2355
|
+
"chess-clock-flip": 62526,
|
|
2356
|
+
"chess-clock-alt": 62526,
|
|
2357
|
+
"satellite": 63423,
|
|
2358
|
+
"plane-lock": 58712,
|
|
2359
|
+
"steering-wheel": 63010,
|
|
2360
|
+
"tag": 61483,
|
|
2361
|
+
"stretcher": 63525,
|
|
2362
|
+
"book-section": 57537,
|
|
2363
|
+
"book-law": 57537,
|
|
2364
|
+
"inboxes": 57787,
|
|
2365
|
+
"coffee-bean": 57662,
|
|
2366
|
+
"circle-yen": 58832,
|
|
2367
|
+
"brackets-curly": 63466,
|
|
2368
|
+
"ellipsis-stroke-vertical": 62364,
|
|
2369
|
+
"ellipsis-v-alt": 62364,
|
|
2370
|
+
"comment": 61557,
|
|
2371
|
+
"square-1": 57942,
|
|
2372
|
+
"cake-candles": 61949,
|
|
2373
|
+
"birthday-cake": 61949,
|
|
2374
|
+
"cake": 61949,
|
|
2375
|
+
"head-side": 63209,
|
|
2376
|
+
"envelope": 61664,
|
|
2377
|
+
"dolly-empty": 62579,
|
|
2378
|
+
"face-tissue": 58268,
|
|
2379
|
+
"angles-up": 61698,
|
|
2380
|
+
"angle-double-up": 61698,
|
|
2381
|
+
"bin-recycle": 58871,
|
|
2382
|
+
"paperclip": 61638,
|
|
2383
|
+
"chart-line-down": 63053,
|
|
2384
|
+
"arrow-right-to-city": 58547,
|
|
2385
|
+
"lock-a": 58402,
|
|
2386
|
+
"ribbon": 62678,
|
|
2387
|
+
"lungs": 62980,
|
|
2388
|
+
"person-pinball": 57885,
|
|
2389
|
+
"arrow-up-9-1": 63623,
|
|
2390
|
+
"sort-numeric-up-alt": 63623,
|
|
2391
|
+
"apple-core": 57487,
|
|
2392
|
+
"circle-y": 57647,
|
|
2393
|
+
"h6": 58387,
|
|
2394
|
+
"litecoin-sign": 57811,
|
|
2395
|
+
"circle-small": 57634,
|
|
2396
|
+
"border-none": 63568,
|
|
2397
|
+
"arrow-turn-down-left": 58081,
|
|
2398
|
+
"circle-nodes": 58594,
|
|
2399
|
+
"parachute-box": 62669,
|
|
2400
|
+
"message-medical": 63476,
|
|
2401
|
+
"comment-alt-medical": 63476,
|
|
2402
|
+
"rugby-ball": 58310,
|
|
2403
|
+
"comment-music": 63664,
|
|
2404
|
+
"indent": 61500,
|
|
2405
|
+
"tree-deciduous": 62464,
|
|
2406
|
+
"tree-alt": 62464,
|
|
2407
|
+
"puzzle-piece-simple": 57905,
|
|
2408
|
+
"puzzle-piece-alt": 57905,
|
|
2409
|
+
"truck-field-un": 58766,
|
|
2410
|
+
"nfc-trash": 57853,
|
|
2411
|
+
"hourglass": 62036,
|
|
2412
|
+
"hourglass-empty": 62036,
|
|
2413
|
+
"mountain": 63228,
|
|
2414
|
+
"file-xmark": 62231,
|
|
2415
|
+
"file-times": 62231,
|
|
2416
|
+
"house-heart": 62665,
|
|
2417
|
+
"home-heart": 62665,
|
|
2418
|
+
"house-chimney-blank": 58288,
|
|
2419
|
+
"meter-bolt": 57833,
|
|
2420
|
+
"user-doctor": 61680,
|
|
2421
|
+
"user-md": 61680,
|
|
2422
|
+
"slash-back": 92,
|
|
2423
|
+
"circle-info": 61530,
|
|
2424
|
+
"info-circle": 61530,
|
|
2425
|
+
"fishing-rod": 58280,
|
|
2426
|
+
"hammer-crash": 58388,
|
|
2427
|
+
"message-heart": 58825,
|
|
2428
|
+
"cloud-meatball": 63291,
|
|
2429
|
+
"camera-polaroid": 63658,
|
|
2430
|
+
"camera": 61488,
|
|
2431
|
+
"camera-alt": 61488,
|
|
2432
|
+
"square-virus": 58744,
|
|
2433
|
+
"cart-arrow-up": 58350,
|
|
2434
|
+
"meteor": 63315,
|
|
2435
|
+
"car-on": 58589,
|
|
2436
|
+
"sleigh": 63436,
|
|
2437
|
+
"arrow-down-1-9": 61794,
|
|
2438
|
+
"sort-numeric-asc": 61794,
|
|
2439
|
+
"sort-numeric-down": 61794,
|
|
2440
|
+
"buoy-mooring": 58806,
|
|
2441
|
+
"square-4": 57945,
|
|
2442
|
+
"hand-holding-droplet": 62657,
|
|
2443
|
+
"hand-holding-water": 62657,
|
|
2444
|
+
"tricycle-adult": 58820,
|
|
2445
|
+
"waveform": 63729,
|
|
2446
|
+
"water": 63347,
|
|
2447
|
+
"star-sharp-half-stroke": 57997,
|
|
2448
|
+
"star-sharp-half-alt": 57997,
|
|
2449
|
+
"nfc-signal": 57851,
|
|
2450
|
+
"plane-prop": 57899,
|
|
2451
|
+
"calendar-check": 62068,
|
|
2452
|
+
"clock-desk": 57652,
|
|
2453
|
+
"calendar-clock": 57554,
|
|
2454
|
+
"calendar-time": 57554,
|
|
2455
|
+
"braille": 62113,
|
|
2456
|
+
"prescription-bottle-medical": 62598,
|
|
2457
|
+
"prescription-bottle-alt": 62598,
|
|
2458
|
+
"plate-utensils": 58427,
|
|
2459
|
+
"family-pants": 58114,
|
|
2460
|
+
"hose-reel": 58394,
|
|
2461
|
+
"house-window": 58291,
|
|
2462
|
+
"landmark": 63087,
|
|
2463
|
+
"truck": 61649,
|
|
2464
|
+
"crosshairs": 61531,
|
|
2465
|
+
"cloud-rainbow": 63294,
|
|
2466
|
+
"person-cane": 58684,
|
|
2467
|
+
"alien": 63733,
|
|
2468
|
+
"tent": 58749,
|
|
2469
|
+
"laptop-binary": 58855,
|
|
2470
|
+
"vest-patches": 57478,
|
|
2471
|
+
"people-dress-simple": 57880,
|
|
2472
|
+
"check-double": 62816,
|
|
2473
|
+
"arrow-down-a-z": 61789,
|
|
2474
|
+
"sort-alpha-asc": 61789,
|
|
2475
|
+
"sort-alpha-down": 61789,
|
|
2476
|
+
"bowling-ball-pin": 57539,
|
|
2477
|
+
"bell-school-slash": 62934,
|
|
2478
|
+
"plus-large": 58782,
|
|
2479
|
+
"money-bill-wheat": 58666,
|
|
2480
|
+
"camera-viewfinder": 57562,
|
|
2481
|
+
"screenshot": 57562,
|
|
2482
|
+
"message-music": 63663,
|
|
2483
|
+
"comment-alt-music": 63663,
|
|
2484
|
+
"car-building": 63577,
|
|
2485
|
+
"border-bottom-right": 63572,
|
|
2486
|
+
"border-style-alt": 63572,
|
|
2487
|
+
"octagon": 62214,
|
|
2488
|
+
"comment-arrow-up-right": 57669,
|
|
2489
|
+
"octagon-divide": 57859,
|
|
2490
|
+
"cookie": 62819,
|
|
2491
|
+
"arrow-rotate-left": 61666,
|
|
2492
|
+
"arrow-left-rotate": 61666,
|
|
2493
|
+
"arrow-rotate-back": 61666,
|
|
2494
|
+
"arrow-rotate-backward": 61666,
|
|
2495
|
+
"undo": 61666,
|
|
2496
|
+
"tv-music": 63718,
|
|
2497
|
+
"hard-drive": 61600,
|
|
2498
|
+
"hdd": 61600,
|
|
2499
|
+
"reel": 57912,
|
|
2500
|
+
"face-grin-squint-tears": 62854,
|
|
2501
|
+
"grin-squint-tears": 62854,
|
|
2502
|
+
"dumbbell": 62539,
|
|
2503
|
+
"rectangle-list": 61474,
|
|
2504
|
+
"list-alt": 61474,
|
|
2505
|
+
"tarp-droplet": 58748,
|
|
2506
|
+
"alarm-exclamation": 63555,
|
|
2507
|
+
"house-medical-circle-check": 58641,
|
|
2508
|
+
"traffic-cone": 63030,
|
|
2509
|
+
"grate": 57747,
|
|
2510
|
+
"arrow-down-right": 57491,
|
|
2511
|
+
"person-skiing-nordic": 63434,
|
|
2512
|
+
"skiing-nordic": 63434,
|
|
2513
|
+
"calendar-plus": 62065,
|
|
2514
|
+
"person-from-portal": 57379,
|
|
2515
|
+
"portal-exit": 57379,
|
|
2516
|
+
"plane-arrival": 62895,
|
|
2517
|
+
"cowbell-circle-plus": 63668,
|
|
2518
|
+
"cowbell-more": 63668,
|
|
2519
|
+
"circle-left": 62297,
|
|
2520
|
+
"arrow-alt-circle-left": 62297,
|
|
2521
|
+
"distribute-spacing-vertical": 58214,
|
|
2522
|
+
"signal-bars-fair": 63122,
|
|
2523
|
+
"signal-alt-2": 63122,
|
|
2524
|
+
"sportsball": 58443,
|
|
2525
|
+
"game-console-handheld-crank": 58809,
|
|
2526
|
+
"train-subway": 62009,
|
|
2527
|
+
"subway": 62009,
|
|
2528
|
+
"chart-gantt": 57572,
|
|
2529
|
+
"face-smile-upside-down": 58261,
|
|
2530
|
+
"ball-pile": 63358,
|
|
2531
|
+
"badge-dollar": 63045,
|
|
2532
|
+
"money-bills-simple": 57844,
|
|
2533
|
+
"money-bills-alt": 57844,
|
|
2534
|
+
"list-timeline": 57809,
|
|
2535
|
+
"indian-rupee-sign": 57788,
|
|
2536
|
+
"indian-rupee": 57788,
|
|
2537
|
+
"inr": 57788,
|
|
2538
|
+
"crop-simple": 62821,
|
|
2539
|
+
"crop-alt": 62821,
|
|
2540
|
+
"money-bill-1": 62417,
|
|
2541
|
+
"money-bill-alt": 62417,
|
|
2542
|
+
"left-long": 62218,
|
|
2543
|
+
"long-arrow-alt-left": 62218,
|
|
2544
|
+
"keyboard-down": 57794,
|
|
2545
|
+
"circle-up-right": 57641,
|
|
2546
|
+
"cloud-bolt-moon": 63341,
|
|
2547
|
+
"thunderstorm-moon": 63341,
|
|
2548
|
+
"dna": 62577,
|
|
2549
|
+
"virus-slash": 57461,
|
|
2550
|
+
"bracket-round-right": 41,
|
|
2551
|
+
"circle-sterling": 58831,
|
|
2552
|
+
"circle-5": 57586,
|
|
2553
|
+
"minus": 61544,
|
|
2554
|
+
"subtract": 61544,
|
|
2555
|
+
"fire-flame": 63199,
|
|
2556
|
+
"flame": 63199,
|
|
2557
|
+
"right-to-line": 62284,
|
|
2558
|
+
"arrow-alt-to-right": 62284,
|
|
2559
|
+
"gif": 57744,
|
|
2560
|
+
"chess": 62521,
|
|
2561
|
+
"trash-slash": 58035,
|
|
2562
|
+
"arrow-left-long": 61815,
|
|
2563
|
+
"long-arrow-left": 61815,
|
|
2564
|
+
"plug-circle-check": 58716,
|
|
2565
|
+
"font-case": 63590,
|
|
2566
|
+
"street-view": 61981,
|
|
2567
|
+
"arrow-down-left": 57489,
|
|
2568
|
+
"franc-sign": 57743,
|
|
2569
|
+
"flask-round-poison": 63200,
|
|
2570
|
+
"flask-poison": 63200,
|
|
2571
|
+
"volume-off": 61478,
|
|
2572
|
+
"book-circle-arrow-right": 57532,
|
|
2573
|
+
"chart-user": 63139,
|
|
2574
|
+
"user-chart": 63139,
|
|
2575
|
+
"hands-asl-interpreting": 62115,
|
|
2576
|
+
"american-sign-language-interpreting": 62115,
|
|
2577
|
+
"asl-interpreting": 62115,
|
|
2578
|
+
"hands-american-sign-language-interpreting": 62115,
|
|
2579
|
+
"presentation-screen": 63109,
|
|
2580
|
+
"presentation": 63109,
|
|
2581
|
+
"circle-bolt": 57598,
|
|
2582
|
+
"face-smile-halo": 58255,
|
|
2583
|
+
"cart-circle-arrow-down": 58351,
|
|
2584
|
+
"house-person-return": 57361,
|
|
2585
|
+
"house-person-arrive": 57361,
|
|
2586
|
+
"house-return": 57361,
|
|
2587
|
+
"message-xmark": 62635,
|
|
2588
|
+
"comment-alt-times": 62635,
|
|
2589
|
+
"message-times": 62635,
|
|
2590
|
+
"file-certificate": 62963,
|
|
2591
|
+
"file-award": 62963,
|
|
2592
|
+
"user-doctor-hair-long": 58457,
|
|
2593
|
+
"camera-security": 63742,
|
|
2594
|
+
"camera-home": 63742,
|
|
2595
|
+
"gear": 61459,
|
|
2596
|
+
"cog": 61459,
|
|
2597
|
+
"droplet-slash": 62919,
|
|
2598
|
+
"tint-slash": 62919,
|
|
2599
|
+
"book-heart": 62617,
|
|
2600
|
+
"mosque": 63096,
|
|
2601
|
+
"duck": 63192,
|
|
2602
|
+
"mosquito": 58667,
|
|
2603
|
+
"star-of-david": 63130,
|
|
2604
|
+
"flag-swallowtail": 63308,
|
|
2605
|
+
"flag-alt": 63308,
|
|
2606
|
+
"person-military-rifle": 58699,
|
|
2607
|
+
"car-garage": 62946,
|
|
2608
|
+
"cart-shopping": 61562,
|
|
2609
|
+
"shopping-cart": 61562,
|
|
2610
|
+
"book-font": 57535,
|
|
2611
|
+
"shield-plus": 57930,
|
|
2612
|
+
"vials": 62611,
|
|
2613
|
+
"eye-dropper-full": 57714,
|
|
2614
|
+
"distribute-spacing-horizontal": 58213,
|
|
2615
|
+
"tablet-rugged": 62607,
|
|
2616
|
+
"temperature-snow": 63336,
|
|
2617
|
+
"temperature-frigid": 63336,
|
|
2618
|
+
"moped": 58297,
|
|
2619
|
+
"face-smile-plus": 62905,
|
|
2620
|
+
"smile-plus": 62905,
|
|
2621
|
+
"radio-tuner": 63704,
|
|
2622
|
+
"radio-alt": 63704,
|
|
2623
|
+
"face-swear": 58265,
|
|
2624
|
+
"water-arrow-down": 63348,
|
|
2625
|
+
"water-lower": 63348,
|
|
2626
|
+
"scanner-touchscreen": 62602,
|
|
2627
|
+
"circle-7": 57588,
|
|
2628
|
+
"plug-circle-plus": 58719,
|
|
2629
|
+
"person-ski-jumping": 63431,
|
|
2630
|
+
"ski-jump": 63431,
|
|
2631
|
+
"place-of-worship": 63103,
|
|
2632
|
+
"water-arrow-up": 63349,
|
|
2633
|
+
"water-rise": 63349,
|
|
2634
|
+
"waveform-lines": 63730,
|
|
2635
|
+
"waveform-path": 63730,
|
|
2636
|
+
"split": 57940,
|
|
2637
|
+
"film-canister": 63671,
|
|
2638
|
+
"film-cannister": 63671,
|
|
2639
|
+
"folder-xmark": 63071,
|
|
2640
|
+
"folder-times": 63071,
|
|
2641
|
+
"toilet-paper-blank": 63263,
|
|
2642
|
+
"toilet-paper-alt": 63263,
|
|
2643
|
+
"tablet-screen": 62460,
|
|
2644
|
+
"tablet-android-alt": 62460,
|
|
2645
|
+
"hexagon-vertical-nft-slanted": 58630,
|
|
2646
|
+
"folder-music": 57741,
|
|
2647
|
+
"display-medical": 57702,
|
|
2648
|
+
"desktop-medical": 57702,
|
|
2649
|
+
"share-all": 62311,
|
|
2650
|
+
"peapod": 58140,
|
|
2651
|
+
"chess-clock": 62525,
|
|
2652
|
+
"axe": 63154,
|
|
2653
|
+
"square-d": 57960,
|
|
2654
|
+
"grip-vertical": 62862,
|
|
2655
|
+
"mobile-signal-out": 57840,
|
|
2656
|
+
"arrow-turn-up": 61768,
|
|
2657
|
+
"level-up": 61768,
|
|
2658
|
+
"u": 85,
|
|
2659
|
+
"arrow-up-from-dotted-line": 57499,
|
|
2660
|
+
"square-root-variable": 63128,
|
|
2661
|
+
"square-root-alt": 63128,
|
|
2662
|
+
"light-switch-on": 57369,
|
|
2663
|
+
"arrow-down-arrow-up": 63619,
|
|
2664
|
+
"sort-alt": 63619,
|
|
2665
|
+
"raindrops": 63324,
|
|
2666
|
+
"dash": 58372,
|
|
2667
|
+
"minus-large": 58372,
|
|
2668
|
+
"clock": 61463,
|
|
2669
|
+
"clock-four": 61463,
|
|
2670
|
+
"input-numeric": 57789,
|
|
2671
|
+
"truck-tow": 58040,
|
|
2672
|
+
"backward-step": 61512,
|
|
2673
|
+
"step-backward": 61512,
|
|
2674
|
+
"pallet": 62594,
|
|
2675
|
+
"car-bolt": 58177,
|
|
2676
|
+
"arrows-maximize": 62237,
|
|
2677
|
+
"expand-arrows": 62237,
|
|
2678
|
+
"faucet": 57349,
|
|
2679
|
+
"cloud-sleet": 63297,
|
|
2680
|
+
"lamp-street": 57797,
|
|
2681
|
+
"list-radio": 57808,
|
|
2682
|
+
"pen-nib-slash": 58529,
|
|
2683
|
+
"baseball-bat-ball": 62514,
|
|
2684
|
+
"square-up-left": 57986,
|
|
2685
|
+
"overline": 63606,
|
|
2686
|
+
"s": 83,
|
|
2687
|
+
"timeline": 58012,
|
|
2688
|
+
"keyboard": 61724,
|
|
2689
|
+
"arrows-from-dotted-line": 57507,
|
|
2690
|
+
"usb-drive": 63721,
|
|
2691
|
+
"ballot": 63282,
|
|
2692
|
+
"caret-down": 61655,
|
|
2693
|
+
"location-dot-slash": 62981,
|
|
2694
|
+
"map-marker-alt-slash": 62981,
|
|
2695
|
+
"cards": 58349,
|
|
2696
|
+
"house-chimney-medical": 63474,
|
|
2697
|
+
"clinic-medical": 63474,
|
|
2698
|
+
"boxing-glove": 62520,
|
|
2699
|
+
"glove-boxing": 62520,
|
|
2700
|
+
"temperature-three-quarters": 62152,
|
|
2701
|
+
"temperature-3": 62152,
|
|
2702
|
+
"thermometer-3": 62152,
|
|
2703
|
+
"thermometer-three-quarters": 62152,
|
|
2704
|
+
"bell-school": 62933,
|
|
2705
|
+
"mobile-screen": 62415,
|
|
2706
|
+
"mobile-android-alt": 62415,
|
|
2707
|
+
"plane-up": 57901,
|
|
2708
|
+
"folder-heart": 57737,
|
|
2709
|
+
"circle-location-arrow": 62978,
|
|
2710
|
+
"location-circle": 62978,
|
|
2711
|
+
"face-head-bandage": 58234,
|
|
2712
|
+
"sushi-roll": 58507,
|
|
2713
|
+
"maki-roll": 58507,
|
|
2714
|
+
"makizushi": 58507,
|
|
2715
|
+
"car-bump": 62944,
|
|
2716
|
+
"piggy-bank": 62675,
|
|
2717
|
+
"racquet": 62554,
|
|
2718
|
+
"car-mirrors": 58179,
|
|
2719
|
+
"industry-windows": 62387,
|
|
2720
|
+
"industry-alt": 62387,
|
|
2721
|
+
"bolt-auto": 57526,
|
|
2722
|
+
"battery-half": 62018,
|
|
2723
|
+
"battery-3": 62018,
|
|
2724
|
+
"flux-capacitor": 63674,
|
|
2725
|
+
"mountain-city": 58670,
|
|
2726
|
+
"coins": 62750,
|
|
2727
|
+
"honey-pot": 58392,
|
|
2728
|
+
"olive": 58134,
|
|
2729
|
+
"khanda": 63085,
|
|
2730
|
+
"filter-list": 57724,
|
|
2731
|
+
"outlet": 57372,
|
|
2732
|
+
"sliders": 61918,
|
|
2733
|
+
"sliders-h": 61918,
|
|
2734
|
+
"cauldron": 63167,
|
|
2735
|
+
"people": 57878,
|
|
2736
|
+
"folder-tree": 63490,
|
|
2737
|
+
"network-wired": 63231,
|
|
2738
|
+
"croissant": 63478,
|
|
2739
|
+
"map-pin": 62070,
|
|
2740
|
+
"hamsa": 63077,
|
|
2741
|
+
"cent-sign": 58357,
|
|
2742
|
+
"swords-laser": 57405,
|
|
2743
|
+
"flask": 61635,
|
|
2744
|
+
"person-pregnant": 58142,
|
|
2745
|
+
"square-u": 57985,
|
|
2746
|
+
"wand-sparkles": 63275,
|
|
2747
|
+
"router": 63706,
|
|
2748
|
+
"ellipsis-vertical": 61762,
|
|
2749
|
+
"ellipsis-v": 61762,
|
|
2750
|
+
"sword-laser-alt": 57404,
|
|
2751
|
+
"ticket": 61765,
|
|
2752
|
+
"power-off": 61457,
|
|
2753
|
+
"coin": 63580,
|
|
2754
|
+
"laptop-slash": 57799,
|
|
2755
|
+
"right-long": 62219,
|
|
2756
|
+
"long-arrow-alt-right": 62219,
|
|
2757
|
+
"circle-b": 57597,
|
|
2758
|
+
"person-dress-simple": 57884,
|
|
2759
|
+
"pipe-collar": 58423,
|
|
2760
|
+
"lights-holiday": 63410,
|
|
2761
|
+
"citrus": 58100,
|
|
2762
|
+
"flag-usa": 63309,
|
|
2763
|
+
"laptop-file": 58653,
|
|
2764
|
+
"tty": 61924,
|
|
2765
|
+
"teletype": 61924,
|
|
2766
|
+
"chart-tree-map": 57578,
|
|
2767
|
+
"diagram-next": 58486,
|
|
2768
|
+
"person-rifle": 58702,
|
|
2769
|
+
"clock-five-thirty": 58186,
|
|
2770
|
+
"pipe-valve": 58425,
|
|
2771
|
+
"arrow-up-from-arc": 58548,
|
|
2772
|
+
"face-spiral-eyes": 58501,
|
|
2773
|
+
"compress-wide": 62246,
|
|
2774
|
+
"circle-phone-hangup": 57629,
|
|
2775
|
+
"phone-circle-down": 57629,
|
|
2776
|
+
"gear-complex-code": 58859,
|
|
2777
|
+
"house-medical-circle-exclamation": 58642,
|
|
2778
|
+
"badminton": 58170,
|
|
2779
|
+
"closed-captioning": 61962,
|
|
2780
|
+
"person-hiking": 63212,
|
|
2781
|
+
"hiking": 63212,
|
|
2782
|
+
"right-from-line": 62279,
|
|
2783
|
+
"arrow-alt-from-left": 62279,
|
|
2784
|
+
"venus-double": 61990,
|
|
2785
|
+
"images": 62210,
|
|
2786
|
+
"calculator": 61932,
|
|
2787
|
+
"shuttlecock": 62555,
|
|
2788
|
+
"user-hair": 58458,
|
|
2789
|
+
"eye-evil": 63195,
|
|
2790
|
+
"people-pulling": 58677,
|
|
2791
|
+
"n": 78,
|
|
2792
|
+
"garage": 57353,
|
|
2793
|
+
"cable-car": 63450,
|
|
2794
|
+
"tram": 63450,
|
|
2795
|
+
"shovel-snow": 63427,
|
|
2796
|
+
"cloud-rain": 63293,
|
|
2797
|
+
"face-lying": 58238,
|
|
2798
|
+
"sprinkler": 57397,
|
|
2799
|
+
"building-circle-xmark": 58580,
|
|
2800
|
+
"person-sledding": 63435,
|
|
2801
|
+
"sledding": 63435,
|
|
2802
|
+
"game-console-handheld": 63675,
|
|
2803
|
+
"ship": 61978,
|
|
2804
|
+
"clock-six-thirty": 58195,
|
|
2805
|
+
"battery-slash": 62327,
|
|
2806
|
+
"tugrik-sign": 58042,
|
|
2807
|
+
"arrows-down-to-line": 58552,
|
|
2808
|
+
"download": 61465,
|
|
2809
|
+
"shelves": 62592,
|
|
2810
|
+
"inventory": 62592,
|
|
2811
|
+
"cloud-snow": 63298,
|
|
2812
|
+
"face-grin": 62848,
|
|
2813
|
+
"grin": 62848,
|
|
2814
|
+
"delete-left": 62810,
|
|
2815
|
+
"backspace": 62810,
|
|
2816
|
+
"oven": 57373,
|
|
2817
|
+
"cloud-binary": 58881,
|
|
2818
|
+
"eye-dropper": 61947,
|
|
2819
|
+
"eye-dropper-empty": 61947,
|
|
2820
|
+
"eyedropper": 61947,
|
|
2821
|
+
"comment-captions": 57670,
|
|
2822
|
+
"comments-question": 57678,
|
|
2823
|
+
"scribble": 57919,
|
|
2824
|
+
"rotate-exclamation": 57916,
|
|
2825
|
+
"file-circle-check": 58784,
|
|
2826
|
+
"glass": 63492,
|
|
2827
|
+
"loader": 57812,
|
|
2828
|
+
"forward": 61518,
|
|
2829
|
+
"user-pilot": 58048,
|
|
2830
|
+
"mobile": 62414,
|
|
2831
|
+
"mobile-android": 62414,
|
|
2832
|
+
"mobile-phone": 62414,
|
|
2833
|
+
"code-pull-request-closed": 58361,
|
|
2834
|
+
"face-meh": 61722,
|
|
2835
|
+
"meh": 61722,
|
|
2836
|
+
"align-center": 61495,
|
|
2837
|
+
"book-skull": 63159,
|
|
2838
|
+
"book-dead": 63159,
|
|
2839
|
+
"id-card": 62146,
|
|
2840
|
+
"drivers-license": 62146,
|
|
2841
|
+
"face-dotted": 58495,
|
|
2842
|
+
"face-worried": 58275,
|
|
2843
|
+
"outdent": 61499,
|
|
2844
|
+
"dedent": 61499,
|
|
2845
|
+
"heart-circle-exclamation": 58622,
|
|
2846
|
+
"house": 61461,
|
|
2847
|
+
"home": 61461,
|
|
2848
|
+
"home-alt": 61461,
|
|
2849
|
+
"home-lg-alt": 61461,
|
|
2850
|
+
"vector-circle": 58054,
|
|
2851
|
+
"car-circle-bolt": 58178,
|
|
2852
|
+
"calendar-week": 63364,
|
|
2853
|
+
"flying-disc": 58281,
|
|
2854
|
+
"laptop-medical": 63506,
|
|
2855
|
+
"square-down-right": 57964,
|
|
2856
|
+
"b": 66,
|
|
2857
|
+
"seat-airline": 57924,
|
|
2858
|
+
"moon-over-sun": 63306,
|
|
2859
|
+
"eclipse-alt": 63306,
|
|
2860
|
+
"pipe": 124,
|
|
2861
|
+
"file-medical": 62583,
|
|
2862
|
+
"potato": 58432,
|
|
2863
|
+
"dice-one": 62757,
|
|
2864
|
+
"circle-a": 57591,
|
|
2865
|
+
"helmet-battle": 63211,
|
|
2866
|
+
"butter": 58340,
|
|
2867
|
+
"blanket-fire": 58330,
|
|
2868
|
+
"kiwi-bird": 62773,
|
|
2869
|
+
"castle": 57566,
|
|
2870
|
+
"golf-club": 62545,
|
|
2871
|
+
"arrow-right-arrow-left": 61676,
|
|
2872
|
+
"exchange": 61676,
|
|
2873
|
+
"rotate-right": 62201,
|
|
2874
|
+
"redo-alt": 62201,
|
|
2875
|
+
"rotate-forward": 62201,
|
|
2876
|
+
"utensils": 62183,
|
|
2877
|
+
"cutlery": 62183,
|
|
2878
|
+
"arrow-up-wide-short": 61793,
|
|
2879
|
+
"sort-amount-up": 61793,
|
|
2880
|
+
"chart-pie-simple-circle-dollar": 58885,
|
|
2881
|
+
"balloons": 58084,
|
|
2882
|
+
"mill-sign": 57837,
|
|
2883
|
+
"bowl-rice": 58091,
|
|
2884
|
+
"timeline-arrow": 58013,
|
|
2885
|
+
"skull": 62796,
|
|
2886
|
+
"game-board-simple": 63592,
|
|
2887
|
+
"game-board-alt": 63592,
|
|
2888
|
+
"circle-video": 57643,
|
|
2889
|
+
"video-circle": 57643,
|
|
2890
|
+
"chart-scatter-bubble": 57577,
|
|
2891
|
+
"house-turret": 57780,
|
|
2892
|
+
"banana": 58085,
|
|
2893
|
+
"hand-holding-skull": 57764,
|
|
2894
|
+
"people-dress": 57879,
|
|
2895
|
+
"loveseat": 62668,
|
|
2896
|
+
"couch-small": 62668,
|
|
2897
|
+
"tower-broadcast": 62745,
|
|
2898
|
+
"broadcast-tower": 62745,
|
|
2899
|
+
"truck-pickup": 63036,
|
|
2900
|
+
"block-quote": 57525,
|
|
2901
|
+
"up-long": 62220,
|
|
2902
|
+
"long-arrow-alt-up": 62220,
|
|
2903
|
+
"stop": 61517,
|
|
2904
|
+
"code-merge": 62343,
|
|
2905
|
+
"money-check-dollar-pen": 63603,
|
|
2906
|
+
"money-check-edit-alt": 63603,
|
|
2907
|
+
"up-from-line": 62278,
|
|
2908
|
+
"arrow-alt-from-bottom": 62278,
|
|
2909
|
+
"upload": 61587,
|
|
2910
|
+
"hurricane": 63313,
|
|
2911
|
+
"grid-round-2-plus": 58844,
|
|
2912
|
+
"people-pants": 57881,
|
|
2913
|
+
"mound": 58669,
|
|
2914
|
+
"windsock": 63351,
|
|
2915
|
+
"circle-half": 57616,
|
|
2916
|
+
"brake-warning": 57543,
|
|
2917
|
+
"toilet-portable": 58755,
|
|
2918
|
+
"compact-disc": 62751,
|
|
2919
|
+
"file-arrow-down": 62829,
|
|
2920
|
+
"file-download": 62829,
|
|
2921
|
+
"saxophone-fire": 63707,
|
|
2922
|
+
"sax-hot": 63707,
|
|
2923
|
+
"camera-web-slash": 63539,
|
|
2924
|
+
"webcam-slash": 63539,
|
|
2925
|
+
"folder-medical": 57740,
|
|
2926
|
+
"folder-gear": 57735,
|
|
2927
|
+
"folder-cog": 57735,
|
|
2928
|
+
"hand-wave": 57767,
|
|
2929
|
+
"arrow-up-arrow-down": 57497,
|
|
2930
|
+
"sort-up-down": 57497,
|
|
2931
|
+
"caravan": 63743,
|
|
2932
|
+
"shield-cat": 58738,
|
|
2933
|
+
"message-slash": 62633,
|
|
2934
|
+
"comment-alt-slash": 62633,
|
|
2935
|
+
"bolt": 61671,
|
|
2936
|
+
"zap": 61671,
|
|
2937
|
+
"trash-can-check": 58025,
|
|
2938
|
+
"glass-water": 58612,
|
|
2939
|
+
"oil-well": 58674,
|
|
2940
|
+
"person-simple": 57888,
|
|
2941
|
+
"vault": 58053,
|
|
2942
|
+
"mars": 61986,
|
|
2943
|
+
"toilet": 63448,
|
|
2944
|
+
"plane-circle-xmark": 58711,
|
|
2945
|
+
"yen-sign": 61783,
|
|
2946
|
+
"cny": 61783,
|
|
2947
|
+
"jpy": 61783,
|
|
2948
|
+
"rmb": 61783,
|
|
2949
|
+
"yen": 61783,
|
|
2950
|
+
"gear-code": 58856,
|
|
2951
|
+
"notes": 57858,
|
|
2952
|
+
"ruble-sign": 61784,
|
|
2953
|
+
"rouble": 61784,
|
|
2954
|
+
"rub": 61784,
|
|
2955
|
+
"ruble": 61784,
|
|
2956
|
+
"trash-undo": 63637,
|
|
2957
|
+
"trash-arrow-turn-left": 63637,
|
|
2958
|
+
"champagne-glass": 63390,
|
|
2959
|
+
"glass-champagne": 63390,
|
|
2960
|
+
"objects-align-center-horizontal": 58300,
|
|
2961
|
+
"sun": 61829,
|
|
2962
|
+
"trash-can-slash": 58029,
|
|
2963
|
+
"trash-alt-slash": 58029,
|
|
2964
|
+
"screen-users": 63037,
|
|
2965
|
+
"users-class": 63037,
|
|
2966
|
+
"guitar": 63398,
|
|
2967
|
+
"square-arrow-left": 62266,
|
|
2968
|
+
"arrow-square-left": 62266,
|
|
2969
|
+
"square-8": 57949,
|
|
2970
|
+
"face-smile-hearts": 58256,
|
|
2971
|
+
"brackets-square": 63465,
|
|
2972
|
+
"brackets": 63465,
|
|
2973
|
+
"laptop-arrow-down": 57798,
|
|
2974
|
+
"hockey-stick-puck": 58286,
|
|
2975
|
+
"house-tree": 57779,
|
|
2976
|
+
"signal-fair": 63117,
|
|
2977
|
+
"signal-2": 63117,
|
|
2978
|
+
"face-laugh-wink": 62876,
|
|
2979
|
+
"laugh-wink": 62876,
|
|
2980
|
+
"circle-dollar": 62184,
|
|
2981
|
+
"dollar-circle": 62184,
|
|
2982
|
+
"usd-circle": 62184,
|
|
2983
|
+
"horse-head": 63403,
|
|
2984
|
+
"arrows-repeat": 62308,
|
|
2985
|
+
"repeat-alt": 62308,
|
|
2986
|
+
"bore-hole": 58563,
|
|
2987
|
+
"industry": 62069,
|
|
2988
|
+
"image-polaroid": 63684,
|
|
2989
|
+
"wave-triangle": 63642,
|
|
2990
|
+
"person-running-fast": 58879,
|
|
2991
|
+
"circle-down": 62296,
|
|
2992
|
+
"arrow-alt-circle-down": 62296,
|
|
2993
|
+
"grill": 58787,
|
|
2994
|
+
"arrows-turn-to-dots": 58561,
|
|
2995
|
+
"chart-mixed": 63043,
|
|
2996
|
+
"analytics": 63043,
|
|
2997
|
+
"florin-sign": 57732,
|
|
2998
|
+
"arrow-down-short-wide": 63620,
|
|
2999
|
+
"sort-amount-desc": 63620,
|
|
3000
|
+
"sort-amount-down-alt": 63620,
|
|
3001
|
+
"less-than": 60,
|
|
3002
|
+
"display-code": 57701,
|
|
3003
|
+
"desktop-code": 57701,
|
|
3004
|
+
"face-drooling": 58226,
|
|
3005
|
+
"oil-temperature": 62996,
|
|
3006
|
+
"oil-temp": 62996,
|
|
3007
|
+
"square-question": 62205,
|
|
3008
|
+
"question-square": 62205,
|
|
3009
|
+
"air-conditioner": 63732,
|
|
3010
|
+
"angle-down": 61703,
|
|
3011
|
+
"mountains": 63229,
|
|
3012
|
+
"omega": 63098,
|
|
3013
|
+
"car-tunnel": 58590,
|
|
3014
|
+
"person-dolly-empty": 62673,
|
|
3015
|
+
"pan-food": 58411,
|
|
3016
|
+
"head-side-cough": 57441,
|
|
3017
|
+
"grip-lines": 63396,
|
|
3018
|
+
"thumbs-down": 61797,
|
|
3019
|
+
"user-lock": 62722,
|
|
3020
|
+
"arrow-right-long": 61816,
|
|
3021
|
+
"long-arrow-right": 61816,
|
|
3022
|
+
"tickets-airline": 58011,
|
|
3023
|
+
"anchor-circle-xmark": 58540,
|
|
3024
|
+
"ellipsis": 61761,
|
|
3025
|
+
"ellipsis-h": 61761,
|
|
3026
|
+
"nfc-slash": 57852,
|
|
3027
|
+
"chess-pawn": 62531,
|
|
3028
|
+
"kit-medical": 62585,
|
|
3029
|
+
"first-aid": 62585,
|
|
3030
|
+
"grid-2-plus": 57751,
|
|
3031
|
+
"bells": 63359,
|
|
3032
|
+
"person-through-window": 58793,
|
|
3033
|
+
"toolbox": 62802,
|
|
3034
|
+
"envelope-dot": 57711,
|
|
3035
|
+
"envelope-badge": 57711,
|
|
3036
|
+
"hands-holding-circle": 58619,
|
|
3037
|
+
"bug": 61832,
|
|
3038
|
+
"bowl-chopsticks": 58089,
|
|
3039
|
+
"credit-card": 61597,
|
|
3040
|
+
"credit-card-alt": 61597,
|
|
3041
|
+
"circle-s": 57633,
|
|
3042
|
+
"box-ballot": 63285,
|
|
3043
|
+
"car": 61881,
|
|
3044
|
+
"automobile": 61881,
|
|
3045
|
+
"hand-holding-hand": 58615,
|
|
3046
|
+
"user-tie-hair": 58463,
|
|
3047
|
+
"podium-star": 63320,
|
|
3048
|
+
"user-hair-mullet": 58460,
|
|
3049
|
+
"business-front": 58460,
|
|
3050
|
+
"party-back": 58460,
|
|
3051
|
+
"trian-balbot": 58460,
|
|
3052
|
+
"microphone-stand": 63691,
|
|
3053
|
+
"book-open-reader": 62938,
|
|
3054
|
+
"book-reader": 62938,
|
|
3055
|
+
"family-dress": 58113,
|
|
3056
|
+
"circle-x": 57646,
|
|
3057
|
+
"cabin": 58477,
|
|
3058
|
+
"mountain-sun": 58671,
|
|
3059
|
+
"chart-simple-horizontal": 58484,
|
|
3060
|
+
"arrows-left-right-to-line": 58554,
|
|
3061
|
+
"hand-back-point-left": 57759,
|
|
3062
|
+
"message-dots": 62627,
|
|
3063
|
+
"comment-alt-dots": 62627,
|
|
3064
|
+
"messaging": 62627,
|
|
3065
|
+
"file-heart": 57718,
|
|
3066
|
+
"beer-mug": 57523,
|
|
3067
|
+
"beer-foam": 57523,
|
|
3068
|
+
"dice-d20": 63183,
|
|
3069
|
+
"drone": 63583,
|
|
3070
|
+
"truck-droplet": 58764,
|
|
3071
|
+
"file-circle-xmark": 58785,
|
|
3072
|
+
"temperature-arrow-up": 57408,
|
|
3073
|
+
"temperature-up": 57408,
|
|
3074
|
+
"medal": 62882,
|
|
3075
|
+
"bed": 62006,
|
|
3076
|
+
"book-copy": 57534,
|
|
3077
|
+
"square-h": 61693,
|
|
3078
|
+
"h-square": 61693,
|
|
3079
|
+
"square-c": 57958,
|
|
3080
|
+
"clock-two": 58202,
|
|
3081
|
+
"square-ellipsis-vertical": 57967,
|
|
3082
|
+
"calendar-users": 58850,
|
|
3083
|
+
"podcast": 62158,
|
|
3084
|
+
"bee": 57522,
|
|
3085
|
+
"temperature-full": 62151,
|
|
3086
|
+
"temperature-4": 62151,
|
|
3087
|
+
"thermometer-4": 62151,
|
|
3088
|
+
"thermometer-full": 62151,
|
|
3089
|
+
"bell": 61683,
|
|
3090
|
+
"candy-bar": 58344,
|
|
3091
|
+
"chocolate-bar": 58344,
|
|
3092
|
+
"xmark-large": 58779,
|
|
3093
|
+
"pinata": 58307,
|
|
3094
|
+
"arrows-from-line": 57508,
|
|
3095
|
+
"superscript": 61739,
|
|
3096
|
+
"bowl-spoon": 58336,
|
|
3097
|
+
"hexagon-check": 58390,
|
|
3098
|
+
"plug-circle-xmark": 58720,
|
|
3099
|
+
"star-of-life": 63009,
|
|
3100
|
+
"phone-slash": 62429,
|
|
3101
|
+
"traffic-light-stop": 63034,
|
|
3102
|
+
"paint-roller": 62890,
|
|
3103
|
+
"accent-grave": 96,
|
|
3104
|
+
"handshake-angle": 62660,
|
|
3105
|
+
"hands-helping": 62660,
|
|
3106
|
+
"circle-0": 57581,
|
|
3107
|
+
"dial-med-low": 57696,
|
|
3108
|
+
"location-dot": 62405,
|
|
3109
|
+
"map-marker-alt": 62405,
|
|
3110
|
+
"crab": 58367,
|
|
3111
|
+
"box-open-full": 62620,
|
|
3112
|
+
"box-full": 62620,
|
|
3113
|
+
"file": 61787,
|
|
3114
|
+
"greater-than": 62,
|
|
3115
|
+
"quotes": 57908,
|
|
3116
|
+
"pretzel": 58433,
|
|
3117
|
+
"person-swimming": 62916,
|
|
3118
|
+
"swimmer": 62916,
|
|
3119
|
+
"arrow-down": 61539,
|
|
3120
|
+
"user-robot-xmarks": 58535,
|
|
3121
|
+
"message-quote": 57828,
|
|
3122
|
+
"comment-alt-quote": 57828,
|
|
3123
|
+
"candy-corn": 63165,
|
|
3124
|
+
"folder-magnifying-glass": 57739,
|
|
3125
|
+
"folder-search": 57739,
|
|
3126
|
+
"notebook": 57857,
|
|
3127
|
+
"droplet": 61507,
|
|
3128
|
+
"tint": 61507,
|
|
3129
|
+
"bullseye-pointer": 63049,
|
|
3130
|
+
"eraser": 61741,
|
|
3131
|
+
"hexagon-image": 58628,
|
|
3132
|
+
"earth-americas": 62845,
|
|
3133
|
+
"earth": 62845,
|
|
3134
|
+
"earth-america": 62845,
|
|
3135
|
+
"globe-americas": 62845,
|
|
3136
|
+
"crate-apple": 63153,
|
|
3137
|
+
"apple-crate": 63153,
|
|
3138
|
+
"person-burst": 58683,
|
|
3139
|
+
"game-board": 63591,
|
|
3140
|
+
"hat-chef": 63595,
|
|
3141
|
+
"hand-back-point-right": 57761,
|
|
3142
|
+
"dove": 62650,
|
|
3143
|
+
"snowflake-droplets": 58817,
|
|
3144
|
+
"battery-empty": 62020,
|
|
3145
|
+
"battery-0": 62020,
|
|
3146
|
+
"grid-4": 57752,
|
|
3147
|
+
"socks": 63126,
|
|
3148
|
+
"face-sunglasses": 58264,
|
|
3149
|
+
"inbox": 61468,
|
|
3150
|
+
"square-0": 57941,
|
|
3151
|
+
"section": 58439,
|
|
3152
|
+
"square-this-way-up": 62623,
|
|
3153
|
+
"box-up": 62623,
|
|
3154
|
+
"gauge-high": 63013,
|
|
3155
|
+
"tachometer-alt": 63013,
|
|
3156
|
+
"tachometer-alt-fast": 63013,
|
|
3157
|
+
"square-ampersand": 57952,
|
|
3158
|
+
"envelope-open-text": 63064,
|
|
3159
|
+
"lamp-desk": 57364,
|
|
3160
|
+
"hospital": 61688,
|
|
3161
|
+
"hospital-alt": 61688,
|
|
3162
|
+
"hospital-wide": 61688,
|
|
3163
|
+
"poll-people": 63321,
|
|
3164
|
+
"whiskey-glass-ice": 63393,
|
|
3165
|
+
"glass-whiskey-rocks": 63393,
|
|
3166
|
+
"wine-bottle": 63279,
|
|
3167
|
+
"chess-rook": 62535,
|
|
3168
|
+
"user-bounty-hunter": 58047,
|
|
3169
|
+
"bars-staggered": 62800,
|
|
3170
|
+
"reorder": 62800,
|
|
3171
|
+
"stream": 62800,
|
|
3172
|
+
"diagram-sankey": 57688,
|
|
3173
|
+
"cloud-hail-mixed": 63290,
|
|
3174
|
+
"circle-up-left": 57640,
|
|
3175
|
+
"dharmachakra": 63061,
|
|
3176
|
+
"objects-align-left": 58302,
|
|
3177
|
+
"oil-can-drip": 57861,
|
|
3178
|
+
"face-smiling-hands": 58262,
|
|
3179
|
+
"broccoli": 58338,
|
|
3180
|
+
"route-interstate": 63003,
|
|
3181
|
+
"ear-muffs": 63381,
|
|
3182
|
+
"hotdog": 63503,
|
|
3183
|
+
"transporter-empty": 57414,
|
|
3184
|
+
"person-walking-with-cane": 62109,
|
|
3185
|
+
"blind": 62109,
|
|
3186
|
+
"angle-90": 57485,
|
|
3187
|
+
"rectangle-terminal": 57910,
|
|
3188
|
+
"kite": 63220,
|
|
3189
|
+
"drum": 62825,
|
|
3190
|
+
"scrubber": 62200,
|
|
3191
|
+
"ice-cream": 63504,
|
|
3192
|
+
"heart-circle-bolt": 58620,
|
|
3193
|
+
"fish-bones": 58116,
|
|
3194
|
+
"deer-rudolph": 63375,
|
|
3195
|
+
"fax": 61868,
|
|
3196
|
+
"paragraph": 61917,
|
|
3197
|
+
"head-side-heart": 57770,
|
|
3198
|
+
"square-e": 57965,
|
|
3199
|
+
"meter-fire": 57835,
|
|
3200
|
+
"cloud-hail": 63289,
|
|
3201
|
+
"check-to-slot": 63346,
|
|
3202
|
+
"vote-yea": 63346,
|
|
3203
|
+
"money-from-bracket": 58130,
|
|
3204
|
+
"star-half": 61577,
|
|
3205
|
+
"car-bus": 63578,
|
|
3206
|
+
"speaker": 63711,
|
|
3207
|
+
"timer": 58014,
|
|
3208
|
+
"boxes-stacked": 62568,
|
|
3209
|
+
"boxes": 62568,
|
|
3210
|
+
"boxes-alt": 62568,
|
|
3211
|
+
"grill-hot": 58789,
|
|
3212
|
+
"ballot-check": 63283,
|
|
3213
|
+
"link": 61633,
|
|
3214
|
+
"chain": 61633,
|
|
3215
|
+
"ear-listen": 62114,
|
|
3216
|
+
"assistive-listening-systems": 62114,
|
|
3217
|
+
"file-minus": 62232,
|
|
3218
|
+
"tree-city": 58759,
|
|
3219
|
+
"play": 61515,
|
|
3220
|
+
"font": 61489,
|
|
3221
|
+
"cup-togo": 63173,
|
|
3222
|
+
"coffee-togo": 63173,
|
|
3223
|
+
"square-down-left": 57963,
|
|
3224
|
+
"burger-lettuce": 58339,
|
|
3225
|
+
"rupiah-sign": 57917,
|
|
3226
|
+
"magnifying-glass": 61442,
|
|
3227
|
+
"search": 61442,
|
|
3228
|
+
"table-tennis-paddle-ball": 62557,
|
|
3229
|
+
"ping-pong-paddle-ball": 62557,
|
|
3230
|
+
"table-tennis": 62557,
|
|
3231
|
+
"person-dots-from-line": 62576,
|
|
3232
|
+
"diagnoses": 62576,
|
|
3233
|
+
"chevrons-down": 62242,
|
|
3234
|
+
"chevron-double-down": 62242,
|
|
3235
|
+
"trash-can-arrow-up": 63530,
|
|
3236
|
+
"trash-restore-alt": 63530,
|
|
3237
|
+
"signal-good": 63118,
|
|
3238
|
+
"signal-3": 63118,
|
|
3239
|
+
"location-question": 62987,
|
|
3240
|
+
"map-marker-question": 62987,
|
|
3241
|
+
"floppy-disk-circle-xmark": 57729,
|
|
3242
|
+
"floppy-disk-times": 57729,
|
|
3243
|
+
"save-circle-xmark": 57729,
|
|
3244
|
+
"save-times": 57729,
|
|
3245
|
+
"naira-sign": 57846,
|
|
3246
|
+
"peach": 57867,
|
|
3247
|
+
"taxi-bus": 58008,
|
|
3248
|
+
"bracket-curly": 123,
|
|
3249
|
+
"bracket-curly-left": 123,
|
|
3250
|
+
"lobster": 58401,
|
|
3251
|
+
"cart-flatbed-empty": 62582,
|
|
3252
|
+
"dolly-flatbed-empty": 62582,
|
|
3253
|
+
"colon": 58,
|
|
3254
|
+
"cart-arrow-down": 61976,
|
|
3255
|
+
"wand": 63274,
|
|
3256
|
+
"walkie-talkie": 63727,
|
|
3257
|
+
"file-pen": 62236,
|
|
3258
|
+
"file-edit": 62236,
|
|
3259
|
+
"receipt": 62787,
|
|
3260
|
+
"table-picnic": 58157,
|
|
3261
|
+
"square-pen": 61771,
|
|
3262
|
+
"pen-square": 61771,
|
|
3263
|
+
"pencil-square": 61771,
|
|
3264
|
+
"circle-microphone-lines": 57623,
|
|
3265
|
+
"microphone-circle-alt": 57623,
|
|
3266
|
+
"display-slash": 58106,
|
|
3267
|
+
"desktop-slash": 58106,
|
|
3268
|
+
"suitcase-rolling": 62913,
|
|
3269
|
+
"person-circle-exclamation": 58687,
|
|
3270
|
+
"transporter-2": 57412,
|
|
3271
|
+
"hands-holding-diamond": 62588,
|
|
3272
|
+
"hand-receiving": 62588,
|
|
3273
|
+
"money-bill-simple-wave": 57842,
|
|
3274
|
+
"chevron-down": 61560,
|
|
3275
|
+
"battery-full": 62016,
|
|
3276
|
+
"battery": 62016,
|
|
3277
|
+
"battery-5": 62016,
|
|
3278
|
+
"bell-plus": 63561,
|
|
3279
|
+
"book-arrow-right": 57529,
|
|
3280
|
+
"hospitals": 63502,
|
|
3281
|
+
"club": 62247,
|
|
3282
|
+
"skull-crossbones": 63252,
|
|
3283
|
+
"droplet-degree": 63304,
|
|
3284
|
+
"dewpoint": 63304,
|
|
3285
|
+
"code-compare": 57658,
|
|
3286
|
+
"list-ul": 61642,
|
|
3287
|
+
"list-dots": 61642,
|
|
3288
|
+
"hand-holding-magic": 63205,
|
|
3289
|
+
"watermelon-slice": 58167,
|
|
3290
|
+
"circle-ellipsis": 57610,
|
|
3291
|
+
"school-lock": 58735,
|
|
3292
|
+
"tower-cell": 58757,
|
|
3293
|
+
"sd-cards": 57920,
|
|
3294
|
+
"jug-bottle": 58875,
|
|
3295
|
+
"down-long": 62217,
|
|
3296
|
+
"long-arrow-alt-down": 62217,
|
|
3297
|
+
"envelopes": 57712,
|
|
3298
|
+
"phone-office": 63101,
|
|
3299
|
+
"ranking-star": 58721,
|
|
3300
|
+
"chess-king": 62527,
|
|
3301
|
+
"nfc-pen": 57850,
|
|
3302
|
+
"person-harassing": 58697,
|
|
3303
|
+
"hat-winter": 63400,
|
|
3304
|
+
"brazilian-real-sign": 58476,
|
|
3305
|
+
"landmark-dome": 63314,
|
|
3306
|
+
"landmark-alt": 63314,
|
|
3307
|
+
"bone-break": 62936,
|
|
3308
|
+
"arrow-up": 61538,
|
|
3309
|
+
"down-from-dotted-line": 58375,
|
|
3310
|
+
"tv": 62060,
|
|
3311
|
+
"television": 62060,
|
|
3312
|
+
"tv-alt": 62060,
|
|
3313
|
+
"border-left": 63567,
|
|
3314
|
+
"circle-divide": 57606,
|
|
3315
|
+
"shrimp": 58440,
|
|
3316
|
+
"list-check": 61614,
|
|
3317
|
+
"tasks": 61614,
|
|
3318
|
+
"diagram-subtask": 58489,
|
|
3319
|
+
"jug-detergent": 58649,
|
|
3320
|
+
"circle-user": 62141,
|
|
3321
|
+
"user-circle": 62141,
|
|
3322
|
+
"square-y": 57991,
|
|
3323
|
+
"user-doctor-hair": 58456,
|
|
3324
|
+
"planet-ringed": 57376,
|
|
3325
|
+
"mushroom": 58405,
|
|
3326
|
+
"user-shield": 62725,
|
|
3327
|
+
"megaphone": 63093,
|
|
3328
|
+
"wreath-laurel": 58834,
|
|
3329
|
+
"circle-exclamation-check": 57613,
|
|
3330
|
+
"wind": 63278,
|
|
3331
|
+
"box-dollar": 62624,
|
|
3332
|
+
"box-usd": 62624,
|
|
3333
|
+
"car-burst": 62945,
|
|
3334
|
+
"car-crash": 62945,
|
|
3335
|
+
"y": 89,
|
|
3336
|
+
"user-headset": 63533,
|
|
3337
|
+
"arrows-retweet": 62305,
|
|
3338
|
+
"retweet-alt": 62305,
|
|
3339
|
+
"person-snowboarding": 63438,
|
|
3340
|
+
"snowboarding": 63438,
|
|
3341
|
+
"square-chevron-right": 62251,
|
|
3342
|
+
"chevron-square-right": 62251,
|
|
3343
|
+
"lacrosse-stick-ball": 58294,
|
|
3344
|
+
"truck-fast": 62603,
|
|
3345
|
+
"shipping-fast": 62603,
|
|
3346
|
+
"user-magnifying-glass": 58821,
|
|
3347
|
+
"star-sharp": 57995,
|
|
3348
|
+
"comment-heart": 58824,
|
|
3349
|
+
"circle-1": 57582,
|
|
3350
|
+
"circle-star": 57635,
|
|
3351
|
+
"star-circle": 57635,
|
|
3352
|
+
"fish": 62840,
|
|
3353
|
+
"cloud-fog": 63310,
|
|
3354
|
+
"fog": 63310,
|
|
3355
|
+
"waffle": 58470,
|
|
3356
|
+
"music-note": 63695,
|
|
3357
|
+
"music-alt": 63695,
|
|
3358
|
+
"hexagon-exclamation": 58391,
|
|
3359
|
+
"cart-shopping-fast": 57564,
|
|
3360
|
+
"object-union": 58527,
|
|
3361
|
+
"user-graduate": 62721,
|
|
3362
|
+
"starfighter": 57399,
|
|
3363
|
+
"circle-half-stroke": 61506,
|
|
3364
|
+
"adjust": 61506,
|
|
3365
|
+
"arrow-right-long-to-line": 58325,
|
|
3366
|
+
"square-arrow-down": 62265,
|
|
3367
|
+
"arrow-square-down": 62265,
|
|
3368
|
+
"diamond-half-stroke": 58808,
|
|
3369
|
+
"clapperboard": 57649,
|
|
3370
|
+
"square-chevron-left": 62250,
|
|
3371
|
+
"chevron-square-left": 62250,
|
|
3372
|
+
"phone-intercom": 58420,
|
|
3373
|
+
"link-horizontal": 57803,
|
|
3374
|
+
"chain-horizontal": 57803,
|
|
3375
|
+
"mango": 58127,
|
|
3376
|
+
"music-note-slash": 63696,
|
|
3377
|
+
"music-alt-slash": 63696,
|
|
3378
|
+
"circle-radiation": 63418,
|
|
3379
|
+
"radiation-alt": 63418,
|
|
3380
|
+
"face-tongue-sweat": 58270,
|
|
3381
|
+
"globe-stand": 62966,
|
|
3382
|
+
"baseball": 62515,
|
|
3383
|
+
"baseball-ball": 62515,
|
|
3384
|
+
"circle-p": 57626,
|
|
3385
|
+
"award-simple": 57515,
|
|
3386
|
+
"jet-fighter-up": 58648,
|
|
3387
|
+
"diagram-project": 62786,
|
|
3388
|
+
"project-diagram": 62786,
|
|
3389
|
+
"pedestal": 57869,
|
|
3390
|
+
"chart-pyramid": 57574,
|
|
3391
|
+
"sidebar": 57934,
|
|
3392
|
+
"snowman-head": 63387,
|
|
3393
|
+
"frosty-head": 63387,
|
|
3394
|
+
"copy": 61637,
|
|
3395
|
+
"burger-glass": 57550,
|
|
3396
|
+
"volume-xmark": 63145,
|
|
3397
|
+
"volume-mute": 63145,
|
|
3398
|
+
"volume-times": 63145,
|
|
3399
|
+
"hand-sparkles": 57437,
|
|
3400
|
+
"bars-filter": 57517,
|
|
3401
|
+
"paintbrush-pencil": 57862,
|
|
3402
|
+
"party-bell": 58138,
|
|
3403
|
+
"user-vneck-hair": 58466,
|
|
3404
|
+
"jack-o-lantern": 62222,
|
|
3405
|
+
"grip": 62861,
|
|
3406
|
+
"grip-horizontal": 62861,
|
|
3407
|
+
"share-from-square": 61773,
|
|
3408
|
+
"share-square": 61773,
|
|
3409
|
+
"keynote": 63084,
|
|
3410
|
+
"child-combatant": 58592,
|
|
3411
|
+
"child-rifle": 58592,
|
|
3412
|
+
"gun": 57755,
|
|
3413
|
+
"square-phone": 61592,
|
|
3414
|
+
"phone-square": 61592,
|
|
3415
|
+
"hat-beach": 58886,
|
|
3416
|
+
"plus": 43,
|
|
3417
|
+
"add": 43,
|
|
3418
|
+
"expand": 61541,
|
|
3419
|
+
"computer": 58597,
|
|
3420
|
+
"fort": 58502,
|
|
3421
|
+
"cloud-check": 58204,
|
|
3422
|
+
"xmark": 61453,
|
|
3423
|
+
"close": 61453,
|
|
3424
|
+
"multiply": 61453,
|
|
3425
|
+
"remove": 61453,
|
|
3426
|
+
"times": 61453,
|
|
3427
|
+
"face-smirking": 58263,
|
|
3428
|
+
"arrows-up-down-left-right": 61511,
|
|
3429
|
+
"arrows": 61511,
|
|
3430
|
+
"chalkboard-user": 62748,
|
|
3431
|
+
"chalkboard-teacher": 62748,
|
|
3432
|
+
"rhombus": 57915,
|
|
3433
|
+
"claw-marks": 63170,
|
|
3434
|
+
"peso-sign": 57890,
|
|
3435
|
+
"face-smile-tongue": 58260,
|
|
3436
|
+
"cart-circle-xmark": 58356,
|
|
3437
|
+
"building-shield": 58584,
|
|
3438
|
+
"circle-phone-flip": 57628,
|
|
3439
|
+
"phone-circle-alt": 57628,
|
|
3440
|
+
"baby": 63356,
|
|
3441
|
+
"users-line": 58770,
|
|
3442
|
+
"quote-left": 61709,
|
|
3443
|
+
"quote-left-alt": 61709,
|
|
3444
|
+
"tractor": 63266,
|
|
3445
|
+
"key-skeleton": 63219,
|
|
3446
|
+
"trash-arrow-up": 63529,
|
|
3447
|
+
"trash-restore": 63529,
|
|
3448
|
+
"arrow-down-up-lock": 58544,
|
|
3449
|
+
"arrow-down-to-bracket": 57492,
|
|
3450
|
+
"lines-leaning": 58654,
|
|
3451
|
+
"square-q": 57979,
|
|
3452
|
+
"ruler-combined": 62790,
|
|
3453
|
+
"symbols": 63598,
|
|
3454
|
+
"icons-alt": 63598,
|
|
3455
|
+
"copyright": 61945,
|
|
3456
|
+
"flask-gear": 58865,
|
|
3457
|
+
"highlighter-line": 57775,
|
|
3458
|
+
"bracket-square": 91,
|
|
3459
|
+
"bracket": 91,
|
|
3460
|
+
"bracket-left": 91,
|
|
3461
|
+
"island-tropical": 63505,
|
|
3462
|
+
"island-tree-palm": 63505,
|
|
3463
|
+
"arrow-right-from-line": 62275,
|
|
3464
|
+
"arrow-from-left": 62275,
|
|
3465
|
+
"h2": 62228,
|
|
3466
|
+
"equals": 61,
|
|
3467
|
+
"cake-slice": 58341,
|
|
3468
|
+
"shortcake": 58341,
|
|
3469
|
+
"peanut": 58416,
|
|
3470
|
+
"wrench-simple": 58065,
|
|
3471
|
+
"blender": 62743,
|
|
3472
|
+
"teeth": 63022,
|
|
3473
|
+
"tally-2": 58005,
|
|
3474
|
+
"shekel-sign": 61963,
|
|
3475
|
+
"ils": 61963,
|
|
3476
|
+
"shekel": 61963,
|
|
3477
|
+
"sheqel": 61963,
|
|
3478
|
+
"sheqel-sign": 61963,
|
|
3479
|
+
"cars": 63579,
|
|
3480
|
+
"axe-battle": 63155,
|
|
3481
|
+
"user-hair-long": 58459,
|
|
3482
|
+
"map": 62073,
|
|
3483
|
+
"file-circle-info": 58515,
|
|
3484
|
+
"face-disappointed": 58223,
|
|
3485
|
+
"lasso-sparkles": 57801,
|
|
3486
|
+
"clock-eleven": 58183,
|
|
3487
|
+
"rocket": 61749,
|
|
3488
|
+
"siren-on": 57390,
|
|
3489
|
+
"clock-ten": 58196,
|
|
3490
|
+
"candle-holder": 63164,
|
|
3491
|
+
"video-arrow-down-left": 58056,
|
|
3492
|
+
"photo-film": 63612,
|
|
3493
|
+
"photo-video": 63612,
|
|
3494
|
+
"floppy-disk-circle-arrow-right": 57728,
|
|
3495
|
+
"save-circle-arrow-right": 57728,
|
|
3496
|
+
"folder-minus": 63069,
|
|
3497
|
+
"planet-moon": 57375,
|
|
3498
|
+
"face-eyes-xmarks": 58228,
|
|
3499
|
+
"chart-scatter": 63470,
|
|
3500
|
+
"display-arrow-down": 57700,
|
|
3501
|
+
"store": 62798,
|
|
3502
|
+
"arrow-trend-up": 57496,
|
|
3503
|
+
"plug-circle-minus": 58718,
|
|
3504
|
+
"olive-branch": 58135,
|
|
3505
|
+
"angle": 57484,
|
|
3506
|
+
"vacuum-robot": 57422,
|
|
3507
|
+
"sign-hanging": 62681,
|
|
3508
|
+
"sign": 62681,
|
|
3509
|
+
"square-divide": 57962,
|
|
3510
|
+
"signal-stream-slash": 57936,
|
|
3511
|
+
"bezier-curve": 62811,
|
|
3512
|
+
"eye-dropper-half": 57715,
|
|
3513
|
+
"store-lock": 58534,
|
|
3514
|
+
"bell-slash": 61942,
|
|
3515
|
+
"cloud-bolt-sun": 63342,
|
|
3516
|
+
"thunderstorm-sun": 63342,
|
|
3517
|
+
"camera-slash": 57561,
|
|
3518
|
+
"comment-quote": 57676,
|
|
3519
|
+
"tablet": 62459,
|
|
3520
|
+
"tablet-android": 62459,
|
|
3521
|
+
"school-flag": 58734,
|
|
3522
|
+
"message-code": 57823,
|
|
3523
|
+
"glass-half": 57746,
|
|
3524
|
+
"glass-half-empty": 57746,
|
|
3525
|
+
"glass-half-full": 57746,
|
|
3526
|
+
"fill": 62837,
|
|
3527
|
+
"message-minus": 62631,
|
|
3528
|
+
"comment-alt-minus": 62631,
|
|
3529
|
+
"angle-up": 61702,
|
|
3530
|
+
"dinosaur": 58878,
|
|
3531
|
+
"drumstick-bite": 63191,
|
|
3532
|
+
"link-horizontal-slash": 57804,
|
|
3533
|
+
"chain-horizontal-slash": 57804,
|
|
3534
|
+
"holly-berry": 63402,
|
|
3535
|
+
"nose": 58813,
|
|
3536
|
+
"chevron-left": 61523,
|
|
3537
|
+
"bacteria": 57433,
|
|
3538
|
+
"clouds": 63300,
|
|
3539
|
+
"money-bill-simple": 57841,
|
|
3540
|
+
"hand-lizard": 62040,
|
|
3541
|
+
"table-pivot": 58001,
|
|
3542
|
+
"filter-slash": 57725,
|
|
3543
|
+
"trash-can-undo": 63638,
|
|
3544
|
+
"trash-can-arrow-turn-left": 63638,
|
|
3545
|
+
"trash-undo-alt": 63638,
|
|
3546
|
+
"notdef": 57854,
|
|
3547
|
+
"disease": 63482,
|
|
3548
|
+
"person-to-door": 58419,
|
|
3549
|
+
"turntable": 63716,
|
|
3550
|
+
"briefcase-medical": 62569,
|
|
3551
|
+
"genderless": 61997,
|
|
3552
|
+
"chevron-right": 61524,
|
|
3553
|
+
"signal-weak": 63116,
|
|
3554
|
+
"signal-1": 63116,
|
|
3555
|
+
"clock-five": 58185,
|
|
3556
|
+
"retweet": 61561,
|
|
3557
|
+
"car-rear": 62942,
|
|
3558
|
+
"car-alt": 62942,
|
|
3559
|
+
"pump-soap": 57451,
|
|
3560
|
+
"computer-classic": 63665,
|
|
3561
|
+
"frame": 58517,
|
|
3562
|
+
"video-slash": 62690,
|
|
3563
|
+
"battery-quarter": 62019,
|
|
3564
|
+
"battery-2": 62019,
|
|
3565
|
+
"ellipsis-stroke": 62363,
|
|
3566
|
+
"ellipsis-h-alt": 62363,
|
|
3567
|
+
"radio": 63703,
|
|
3568
|
+
"baby-carriage": 63357,
|
|
3569
|
+
"carriage-baby": 63357,
|
|
3570
|
+
"face-expressionless": 58227,
|
|
3571
|
+
"down-to-dotted-line": 58376,
|
|
3572
|
+
"cloud-music": 63662,
|
|
3573
|
+
"traffic-light": 63031,
|
|
3574
|
+
"cloud-minus": 58205,
|
|
3575
|
+
"thermometer": 62609,
|
|
3576
|
+
"shield-minus": 57929,
|
|
3577
|
+
"vr-cardboard": 63273,
|
|
3578
|
+
"car-tilt": 62949,
|
|
3579
|
+
"gauge-circle-minus": 58519,
|
|
3580
|
+
"brightness-low": 57546,
|
|
3581
|
+
"hand-middle-finger": 63494,
|
|
3582
|
+
"percent": 37,
|
|
3583
|
+
"percentage": 37,
|
|
3584
|
+
"truck-moving": 62687,
|
|
3585
|
+
"glass-water-droplet": 58613,
|
|
3586
|
+
"conveyor-belt": 62574,
|
|
3587
|
+
"location-check": 62982,
|
|
3588
|
+
"map-marker-check": 62982,
|
|
3589
|
+
"coin-vertical": 58365,
|
|
3590
|
+
"display": 57699,
|
|
3591
|
+
"person-sign": 63319,
|
|
3592
|
+
"face-smile": 61720,
|
|
3593
|
+
"smile": 61720,
|
|
3594
|
+
"phone-hangup": 57893,
|
|
3595
|
+
"signature-slash": 58315,
|
|
3596
|
+
"thumbtack": 61581,
|
|
3597
|
+
"thumb-tack": 61581,
|
|
3598
|
+
"wheat-slash": 58169,
|
|
3599
|
+
"trophy": 61585,
|
|
3600
|
+
"clouds-sun": 63302,
|
|
3601
|
+
"person-praying": 63107,
|
|
3602
|
+
"pray": 63107,
|
|
3603
|
+
"hammer": 63203,
|
|
3604
|
+
"face-vomit": 58272,
|
|
3605
|
+
"speakers": 63712,
|
|
3606
|
+
"tty-answer": 58041,
|
|
3607
|
+
"teletype-answer": 58041,
|
|
3608
|
+
"mug-tea-saucer": 57845,
|
|
3609
|
+
"diagram-lean-canvas": 57686,
|
|
3610
|
+
"alt": 57482,
|
|
3611
|
+
"dial": 57691,
|
|
3612
|
+
"dial-med-high": 57691,
|
|
3613
|
+
"hand-peace": 62043,
|
|
3614
|
+
"circle-trash": 57638,
|
|
3615
|
+
"trash-circle": 57638,
|
|
3616
|
+
"rotate": 62193,
|
|
3617
|
+
"sync-alt": 62193,
|
|
3618
|
+
"circle-quarters": 58360,
|
|
3619
|
+
"spinner": 61712,
|
|
3620
|
+
"tower-control": 58018,
|
|
3621
|
+
"arrow-up-triangle-square": 63626,
|
|
3622
|
+
"sort-shapes-up": 63626,
|
|
3623
|
+
"whale": 63276,
|
|
3624
|
+
"robot": 62788,
|
|
3625
|
+
"peace": 63100,
|
|
3626
|
+
"party-horn": 58139,
|
|
3627
|
+
"gears": 61573,
|
|
3628
|
+
"cogs": 61573,
|
|
3629
|
+
"sun-bright": 57999,
|
|
3630
|
+
"sun-alt": 57999,
|
|
3631
|
+
"warehouse": 62612,
|
|
3632
|
+
"conveyor-belt-arm": 58872,
|
|
3633
|
+
"lock-keyhole-open": 62402,
|
|
3634
|
+
"lock-open-alt": 62402,
|
|
3635
|
+
"square-fragile": 62619,
|
|
3636
|
+
"box-fragile": 62619,
|
|
3637
|
+
"square-wine-glass-crack": 62619,
|
|
3638
|
+
"arrow-up-right-dots": 58551,
|
|
3639
|
+
"square-n": 57975,
|
|
3640
|
+
"splotch": 62908,
|
|
3641
|
+
"face-grin-hearts": 62852,
|
|
3642
|
+
"grin-hearts": 62852,
|
|
3643
|
+
"meter": 57832,
|
|
3644
|
+
"mandolin": 63225,
|
|
3645
|
+
"dice-four": 62756,
|
|
3646
|
+
"sim-card": 63428,
|
|
3647
|
+
"transgender": 61989,
|
|
3648
|
+
"transgender-alt": 61989,
|
|
3649
|
+
"mercury": 61987,
|
|
3650
|
+
"up-from-bracket": 58768,
|
|
3651
|
+
"knife-kitchen": 63221,
|
|
3652
|
+
"border-right": 63570,
|
|
3653
|
+
"arrow-turn-down": 61769,
|
|
3654
|
+
"level-down": 61769,
|
|
3655
|
+
"spade": 62196,
|
|
3656
|
+
"card-spade": 58348,
|
|
3657
|
+
"line-columns": 63600,
|
|
3658
|
+
"arrow-right-to-line": 62272,
|
|
3659
|
+
"arrow-to-right": 62272,
|
|
3660
|
+
"person-falling-burst": 58695,
|
|
3661
|
+
"flag-pennant": 62550,
|
|
3662
|
+
"pennant": 62550,
|
|
3663
|
+
"conveyor-belt-empty": 57680,
|
|
3664
|
+
"user-group-simple": 58883,
|
|
3665
|
+
"award": 62809,
|
|
3666
|
+
"ticket-simple": 62463,
|
|
3667
|
+
"ticket-alt": 62463,
|
|
3668
|
+
"building": 61869,
|
|
3669
|
+
"angles-left": 61696,
|
|
3670
|
+
"angle-double-left": 61696,
|
|
3671
|
+
"camcorder": 63656,
|
|
3672
|
+
"video-handheld": 63656,
|
|
3673
|
+
"pancakes": 58413,
|
|
3674
|
+
"album-circle-user": 58509,
|
|
3675
|
+
"qrcode": 61481,
|
|
3676
|
+
"dice-d10": 63181,
|
|
3677
|
+
"fireplace": 63386,
|
|
3678
|
+
"browser": 62334,
|
|
3679
|
+
"pen-paintbrush": 63000,
|
|
3680
|
+
"pencil-paintbrush": 63000,
|
|
3681
|
+
"fish-cooked": 63486,
|
|
3682
|
+
"chair-office": 63169,
|
|
3683
|
+
"nesting-dolls": 58298,
|
|
3684
|
+
"clock-rotate-left": 61914,
|
|
3685
|
+
"history": 61914,
|
|
3686
|
+
"trumpet": 63715,
|
|
3687
|
+
"face-grin-beam-sweat": 62851,
|
|
3688
|
+
"grin-beam-sweat": 62851,
|
|
3689
|
+
"fire-smoke": 63307,
|
|
3690
|
+
"phone-missed": 57894,
|
|
3691
|
+
"file-export": 62830,
|
|
3692
|
+
"arrow-right-from-file": 62830,
|
|
3693
|
+
"shield": 61746,
|
|
3694
|
+
"shield-blank": 61746,
|
|
3695
|
+
"arrow-up-short-wide": 63621,
|
|
3696
|
+
"sort-amount-up-alt": 63621,
|
|
3697
|
+
"arrows-repeat-1": 62310,
|
|
3698
|
+
"repeat-1-alt": 62310,
|
|
3699
|
+
"gun-slash": 57756,
|
|
3700
|
+
"avocado": 57514,
|
|
3701
|
+
"binary": 58171,
|
|
3702
|
+
"glasses-round": 62965,
|
|
3703
|
+
"glasses-alt": 62965,
|
|
3704
|
+
"phone-plus": 62674,
|
|
3705
|
+
"ditto": 34,
|
|
3706
|
+
"person-seat": 57886,
|
|
3707
|
+
"house-medical": 58290,
|
|
3708
|
+
"golf-ball-tee": 62544,
|
|
3709
|
+
"golf-ball": 62544,
|
|
3710
|
+
"circle-chevron-left": 61751,
|
|
3711
|
+
"chevron-circle-left": 61751,
|
|
3712
|
+
"house-chimney-window": 57357,
|
|
3713
|
+
"scythe": 63248,
|
|
3714
|
+
"pen-nib": 62893,
|
|
3715
|
+
"ban-parking": 62998,
|
|
3716
|
+
"parking-circle-slash": 62998,
|
|
3717
|
+
"tent-arrow-turn-left": 58752,
|
|
3718
|
+
"face-diagonal-mouth": 58494,
|
|
3719
|
+
"diagram-cells": 58485,
|
|
3720
|
+
"cricket-bat-ball": 62537,
|
|
3721
|
+
"cricket": 62537,
|
|
3722
|
+
"tents": 58754,
|
|
3723
|
+
"wand-magic": 61648,
|
|
3724
|
+
"magic": 61648,
|
|
3725
|
+
"dog": 63187,
|
|
3726
|
+
"pen-line": 57874,
|
|
3727
|
+
"atom-simple": 62931,
|
|
3728
|
+
"atom-alt": 62931,
|
|
3729
|
+
"ampersand": 38,
|
|
3730
|
+
"carrot": 63367,
|
|
3731
|
+
"arrow-up-from-line": 62274,
|
|
3732
|
+
"arrow-from-bottom": 62274,
|
|
3733
|
+
"moon": 61830,
|
|
3734
|
+
"pen-slash": 57875,
|
|
3735
|
+
"wine-glass-empty": 62926,
|
|
3736
|
+
"wine-glass-alt": 62926,
|
|
3737
|
+
"square-star": 57983,
|
|
3738
|
+
"cheese": 63471,
|
|
3739
|
+
"send-backward": 63615,
|
|
3740
|
+
"yin-yang": 63149,
|
|
3741
|
+
"music": 61441,
|
|
3742
|
+
"compass-slash": 62953,
|
|
3743
|
+
"clock-one": 58190,
|
|
3744
|
+
"file-music": 63670,
|
|
3745
|
+
"code-commit": 62342,
|
|
3746
|
+
"temperature-low": 63339,
|
|
3747
|
+
"person-biking": 63562,
|
|
3748
|
+
"biking": 63562,
|
|
3749
|
+
"display-chart-up-circle-currency": 58853,
|
|
3750
|
+
"skeleton": 63008,
|
|
3751
|
+
"circle-g": 57615,
|
|
3752
|
+
"circle-arrow-up-left": 57595,
|
|
3753
|
+
"coin-blank": 58363,
|
|
3754
|
+
"broom": 62746,
|
|
3755
|
+
"vacuum": 57421,
|
|
3756
|
+
"shield-heart": 58740,
|
|
3757
|
+
"card-heart": 58347,
|
|
3758
|
+
"lightbulb-cfl-on": 58791,
|
|
3759
|
+
"melon": 58128,
|
|
3760
|
+
"gopuram": 63076,
|
|
3761
|
+
"earth-oceania": 58491,
|
|
3762
|
+
"globe-oceania": 58491,
|
|
3763
|
+
"container-storage": 62647,
|
|
3764
|
+
"face-pouting": 58247,
|
|
3765
|
+
"square-xmark": 62163,
|
|
3766
|
+
"times-square": 62163,
|
|
3767
|
+
"xmark-square": 62163,
|
|
3768
|
+
"face-explode": 58110,
|
|
3769
|
+
"exploding-head": 58110,
|
|
3770
|
+
"hashtag": 35,
|
|
3771
|
+
"up-right-and-down-left-from-center": 62500,
|
|
3772
|
+
"expand-alt": 62500,
|
|
3773
|
+
"oil-can": 62995,
|
|
3774
|
+
"t": 84,
|
|
3775
|
+
"transformer-bolt": 58020,
|
|
3776
|
+
"hippo": 63213,
|
|
3777
|
+
"chart-column": 57571,
|
|
3778
|
+
"cassette-vhs": 63724,
|
|
3779
|
+
"vhs": 63724,
|
|
3780
|
+
"infinity": 62772,
|
|
3781
|
+
"vial-circle-check": 58774,
|
|
3782
|
+
"chimney": 63371,
|
|
3783
|
+
"object-intersect": 58525,
|
|
3784
|
+
"person-arrow-down-to-line": 58680,
|
|
3785
|
+
"voicemail": 63639,
|
|
3786
|
+
"block-brick": 58331,
|
|
3787
|
+
"wall-brick": 58331,
|
|
3788
|
+
"fan": 63587,
|
|
3789
|
+
"bags-shopping": 63559,
|
|
3790
|
+
"paragraph-left": 63608,
|
|
3791
|
+
"paragraph-rtl": 63608,
|
|
3792
|
+
"person-walking-luggage": 58708,
|
|
3793
|
+
"caravan-simple": 57344,
|
|
3794
|
+
"caravan-alt": 57344,
|
|
3795
|
+
"turtle": 63270,
|
|
3796
|
+
"pencil-mechanical": 58826,
|
|
3797
|
+
"up-down": 62264,
|
|
3798
|
+
"arrows-alt-v": 62264,
|
|
3799
|
+
"cloud-moon-rain": 63292,
|
|
3800
|
+
"booth-curtain": 63284,
|
|
3801
|
+
"calendar": 61747,
|
|
3802
|
+
"box-heart": 62621,
|
|
3803
|
+
"trailer": 57409,
|
|
3804
|
+
"user-doctor-message": 63534,
|
|
3805
|
+
"user-md-chat": 63534,
|
|
3806
|
+
"bahai": 63078,
|
|
3807
|
+
"haykal": 63078,
|
|
3808
|
+
"amp-guitar": 63649,
|
|
3809
|
+
"sd-card": 63426,
|
|
3810
|
+
"volume-slash": 62178,
|
|
3811
|
+
"border-bottom": 63565,
|
|
3812
|
+
"wifi-weak": 63146,
|
|
3813
|
+
"wifi-1": 63146,
|
|
3814
|
+
"dragon": 63189,
|
|
3815
|
+
"shoe-prints": 62795,
|
|
3816
|
+
"circle-plus": 61525,
|
|
3817
|
+
"plus-circle": 61525,
|
|
3818
|
+
"face-grin-tongue-wink": 62859,
|
|
3819
|
+
"grin-tongue-wink": 62859,
|
|
3820
|
+
"hand-holding": 62653,
|
|
3821
|
+
"plug-circle-exclamation": 58717,
|
|
3822
|
+
"link-slash": 61735,
|
|
3823
|
+
"chain-broken": 61735,
|
|
3824
|
+
"chain-slash": 61735,
|
|
3825
|
+
"unlink": 61735,
|
|
3826
|
+
"clone": 62029,
|
|
3827
|
+
"person-walking-arrow-loop-left": 58705,
|
|
3828
|
+
"arrow-up-z-a": 63618,
|
|
3829
|
+
"sort-alpha-up-alt": 63618,
|
|
3830
|
+
"fire-flame-curved": 63460,
|
|
3831
|
+
"fire-alt": 63460,
|
|
3832
|
+
"tornado": 63343,
|
|
3833
|
+
"file-circle-plus": 58516,
|
|
3834
|
+
"delete-right": 57684,
|
|
3835
|
+
"book-quran": 63111,
|
|
3836
|
+
"quran": 63111,
|
|
3837
|
+
"circle-quarter": 57631,
|
|
3838
|
+
"anchor": 61757,
|
|
3839
|
+
"border-all": 63564,
|
|
3840
|
+
"function": 63073,
|
|
3841
|
+
"face-angry": 62806,
|
|
3842
|
+
"angry": 62806,
|
|
3843
|
+
"people-simple": 57883,
|
|
3844
|
+
"cookie-bite": 62820,
|
|
3845
|
+
"arrow-trend-down": 57495,
|
|
3846
|
+
"rss": 61598,
|
|
3847
|
+
"feed": 61598,
|
|
3848
|
+
"face-monocle": 58240,
|
|
3849
|
+
"draw-polygon": 62958,
|
|
3850
|
+
"scale-balanced": 62030,
|
|
3851
|
+
"balance-scale": 62030,
|
|
3852
|
+
"calendar-lines": 57557,
|
|
3853
|
+
"calendar-note": 57557,
|
|
3854
|
+
"arrow-down-big-small": 63628,
|
|
3855
|
+
"sort-size-down": 63628,
|
|
3856
|
+
"gauge-simple-high": 63018,
|
|
3857
|
+
"tachometer": 63018,
|
|
3858
|
+
"tachometer-fast": 63018,
|
|
3859
|
+
"do-not-enter": 62956,
|
|
3860
|
+
"shower": 62156,
|
|
3861
|
+
"dice-d8": 63186,
|
|
3862
|
+
"desktop": 62352,
|
|
3863
|
+
"desktop-alt": 62352,
|
|
3864
|
+
"m": 77,
|
|
3865
|
+
"grip-dots-vertical": 58385,
|
|
3866
|
+
"face-viewfinder": 58111,
|
|
3867
|
+
"soft-serve": 58368,
|
|
3868
|
+
"creemee": 58368,
|
|
3869
|
+
"h5": 58386,
|
|
3870
|
+
"hand-back-point-down": 57758,
|
|
3871
|
+
"table-list": 61451,
|
|
3872
|
+
"th-list": 61451,
|
|
3873
|
+
"comment-sms": 63437,
|
|
3874
|
+
"sms": 63437,
|
|
3875
|
+
"rectangle": 62202,
|
|
3876
|
+
"rectangle-landscape": 62202,
|
|
3877
|
+
"clipboard-list-check": 63287,
|
|
3878
|
+
"turkey": 63269,
|
|
3879
|
+
"book": 61485,
|
|
3880
|
+
"user-plus": 62004,
|
|
3881
|
+
"ice-skate": 63404,
|
|
3882
|
+
"check": 61452,
|
|
3883
|
+
"battery-three-quarters": 62017,
|
|
3884
|
+
"battery-4": 62017,
|
|
3885
|
+
"tomato": 58160,
|
|
3886
|
+
"sword-laser": 57403,
|
|
3887
|
+
"house-circle-check": 58633,
|
|
3888
|
+
"buildings": 57548,
|
|
3889
|
+
"angle-left": 61700,
|
|
3890
|
+
"cart-flatbed-boxes": 62581,
|
|
3891
|
+
"dolly-flatbed-alt": 62581,
|
|
3892
|
+
"diagram-successor": 58490,
|
|
3893
|
+
"truck-arrow-right": 58763,
|
|
3894
|
+
"square-w": 57989,
|
|
3895
|
+
"arrows-split-up-and-left": 58556,
|
|
3896
|
+
"lamp": 62666,
|
|
3897
|
+
"airplay": 57481,
|
|
3898
|
+
"hand-fist": 63198,
|
|
3899
|
+
"fist-raised": 63198,
|
|
3900
|
+
"shield-quartered": 58741,
|
|
3901
|
+
"slash-forward": 47,
|
|
3902
|
+
"location-pen": 62983,
|
|
3903
|
+
"map-marker-edit": 62983,
|
|
3904
|
+
"cloud-moon": 63171,
|
|
3905
|
+
"pot-food": 58431,
|
|
3906
|
+
"briefcase": 61617,
|
|
3907
|
+
"person-falling": 58694,
|
|
3908
|
+
"image-portrait": 62432,
|
|
3909
|
+
"portrait": 62432,
|
|
3910
|
+
"user-tag": 62727,
|
|
3911
|
+
"rug": 58729,
|
|
3912
|
+
"print-slash": 63110,
|
|
3913
|
+
"earth-europe": 63394,
|
|
3914
|
+
"globe-europe": 63394,
|
|
3915
|
+
"cart-flatbed-suitcase": 62877,
|
|
3916
|
+
"luggage-cart": 62877,
|
|
3917
|
+
"hand-back-point-ribbon": 57760,
|
|
3918
|
+
"rectangle-xmark": 62480,
|
|
3919
|
+
"rectangle-times": 62480,
|
|
3920
|
+
"times-rectangle": 62480,
|
|
3921
|
+
"window-close": 62480,
|
|
3922
|
+
"tire-rugged": 63028,
|
|
3923
|
+
"lightbulb-dollar": 63088,
|
|
3924
|
+
"cowbell": 63667,
|
|
3925
|
+
"baht-sign": 57516,
|
|
3926
|
+
"corner": 58366,
|
|
3927
|
+
"chevrons-right": 62244,
|
|
3928
|
+
"chevron-double-right": 62244,
|
|
3929
|
+
"book-open": 62744,
|
|
3930
|
+
"book-journal-whills": 63082,
|
|
3931
|
+
"journal-whills": 63082,
|
|
3932
|
+
"inhaler": 62969,
|
|
3933
|
+
"handcuffs": 58616,
|
|
3934
|
+
"snake": 63254,
|
|
3935
|
+
"triangle-exclamation": 61553,
|
|
3936
|
+
"exclamation-triangle": 61553,
|
|
3937
|
+
"warning": 61553,
|
|
3938
|
+
"note-medical": 57856,
|
|
3939
|
+
"database": 61888,
|
|
3940
|
+
"down-left": 57706,
|
|
3941
|
+
"share": 61540,
|
|
3942
|
+
"arrow-turn-right": 61540,
|
|
3943
|
+
"mail-forward": 61540,
|
|
3944
|
+
"face-thinking": 58267,
|
|
3945
|
+
"turn-down-right": 58453,
|
|
3946
|
+
"bottle-droplet": 58564,
|
|
3947
|
+
"mask-face": 57815,
|
|
3948
|
+
"hill-rockslide": 58632,
|
|
3949
|
+
"scanner-keyboard": 62601,
|
|
3950
|
+
"circle-o": 57625,
|
|
3951
|
+
"grid-horizontal": 58119,
|
|
3952
|
+
"message-dollar": 63056,
|
|
3953
|
+
"comment-alt-dollar": 63056,
|
|
3954
|
+
"right-left": 62306,
|
|
3955
|
+
"exchange-alt": 62306,
|
|
3956
|
+
"columns-3": 58209,
|
|
3957
|
+
"paper-plane": 61912,
|
|
3958
|
+
"road-circle-exclamation": 58725,
|
|
3959
|
+
"dungeon": 63193,
|
|
3960
|
+
"hand-holding-box": 62587,
|
|
3961
|
+
"input-text": 57791,
|
|
3962
|
+
"window-flip": 62479,
|
|
3963
|
+
"window-alt": 62479,
|
|
3964
|
+
"align-right": 61496,
|
|
3965
|
+
"scanner-gun": 62600,
|
|
3966
|
+
"scanner": 62600,
|
|
3967
|
+
"tire": 63025,
|
|
3968
|
+
"engine": 57710,
|
|
3969
|
+
"money-bill-1-wave": 62779,
|
|
3970
|
+
"money-bill-wave-alt": 62779,
|
|
3971
|
+
"life-ring": 61901,
|
|
3972
|
+
"hands": 62119,
|
|
3973
|
+
"sign-language": 62119,
|
|
3974
|
+
"signing": 62119,
|
|
3975
|
+
"circle-caret-right": 62256,
|
|
3976
|
+
"caret-circle-right": 62256,
|
|
3977
|
+
"wheat": 63277,
|
|
3978
|
+
"file-spreadsheet": 63067,
|
|
3979
|
+
"audio-description-slash": 57512,
|
|
3980
|
+
"calendar-day": 63363,
|
|
3981
|
+
"water-ladder": 62917,
|
|
3982
|
+
"ladder-water": 62917,
|
|
3983
|
+
"swimming-pool": 62917,
|
|
3984
|
+
"arrows-up-down": 61565,
|
|
3985
|
+
"arrows-v": 61565,
|
|
3986
|
+
"chess-pawn-piece": 62532,
|
|
3987
|
+
"chess-pawn-alt": 62532,
|
|
3988
|
+
"face-grimace": 62847,
|
|
3989
|
+
"grimace": 62847,
|
|
3990
|
+
"wheelchair-move": 58062,
|
|
3991
|
+
"wheelchair-alt": 58062,
|
|
3992
|
+
"turn-down": 62398,
|
|
3993
|
+
"level-down-alt": 62398,
|
|
3994
|
+
"square-s": 57981,
|
|
3995
|
+
"rectangle-barcode": 62563,
|
|
3996
|
+
"barcode-alt": 62563,
|
|
3997
|
+
"person-walking-arrow-right": 58706,
|
|
3998
|
+
"square-envelope": 61849,
|
|
3999
|
+
"envelope-square": 61849,
|
|
4000
|
+
"dice": 62754,
|
|
4001
|
+
"unicorn": 63271,
|
|
4002
|
+
"bowling-ball": 62518,
|
|
4003
|
+
"pompebled": 58429,
|
|
4004
|
+
"brain": 62940,
|
|
4005
|
+
"watch-smart": 58060,
|
|
4006
|
+
"book-user": 63463,
|
|
4007
|
+
"sensor-cloud": 57388,
|
|
4008
|
+
"sensor-smoke": 57388,
|
|
4009
|
+
"clapperboard-play": 57650,
|
|
4010
|
+
"bandage": 62562,
|
|
4011
|
+
"band-aid": 62562,
|
|
4012
|
+
"calendar-minus": 62066,
|
|
4013
|
+
"circle-xmark": 61527,
|
|
4014
|
+
"times-circle": 61527,
|
|
4015
|
+
"xmark-circle": 61527,
|
|
4016
|
+
"circle-4": 57585,
|
|
4017
|
+
"gifts": 63388,
|
|
4018
|
+
"album-collection": 63648,
|
|
4019
|
+
"hotel": 62868,
|
|
4020
|
+
"earth-asia": 62846,
|
|
4021
|
+
"globe-asia": 62846,
|
|
4022
|
+
"id-card-clip": 62591,
|
|
4023
|
+
"id-card-alt": 62591,
|
|
4024
|
+
"magnifying-glass-plus": 61454,
|
|
4025
|
+
"search-plus": 61454,
|
|
4026
|
+
"thumbs-up": 61796,
|
|
4027
|
+
"cloud-showers": 63295,
|
|
4028
|
+
"user-clock": 62717,
|
|
4029
|
+
"onion": 58407,
|
|
4030
|
+
"clock-twelve-thirty": 58201,
|
|
4031
|
+
"arrow-down-to-dotted-line": 57493,
|
|
4032
|
+
"hand-dots": 62561,
|
|
4033
|
+
"allergies": 62561,
|
|
4034
|
+
"file-invoice": 62832,
|
|
4035
|
+
"window-minimize": 62161,
|
|
4036
|
+
"rectangle-wide": 62204,
|
|
4037
|
+
"comment-arrow-up": 57668,
|
|
4038
|
+
"garlic": 58382,
|
|
4039
|
+
"mug-saucer": 61684,
|
|
4040
|
+
"coffee": 61684,
|
|
4041
|
+
"brush": 62813,
|
|
4042
|
+
"tree-decorated": 63452,
|
|
4043
|
+
"mask": 63226,
|
|
4044
|
+
"calendar-heart": 57555,
|
|
4045
|
+
"magnifying-glass-minus": 61456,
|
|
4046
|
+
"search-minus": 61456,
|
|
4047
|
+
"flower": 63487,
|
|
4048
|
+
"right-left-large": 58849,
|
|
4049
|
+
"ruler-vertical": 62792,
|
|
4050
|
+
"circles-overlap": 58880,
|
|
4051
|
+
"user-large": 62470,
|
|
4052
|
+
"user-alt": 62470,
|
|
4053
|
+
"starship-freighter": 57402,
|
|
4054
|
+
"train-tram": 58804,
|
|
4055
|
+
"bridge-suspension": 58573,
|
|
4056
|
+
"trash-check": 58031,
|
|
4057
|
+
"user-nurse": 63535,
|
|
4058
|
+
"boombox": 63653,
|
|
4059
|
+
"syringe": 62606,
|
|
4060
|
+
"cloud-sun": 63172,
|
|
4061
|
+
"shield-exclamation": 57927,
|
|
4062
|
+
"stopwatch-20": 57455,
|
|
4063
|
+
"square-full": 62556,
|
|
4064
|
+
"grip-dots": 58384,
|
|
4065
|
+
"comment-exclamation": 62639,
|
|
4066
|
+
"pen-swirl": 57876,
|
|
4067
|
+
"falafel": 58378,
|
|
4068
|
+
"circle-2": 57583,
|
|
4069
|
+
"magnet": 61558,
|
|
4070
|
+
"jar": 58646,
|
|
4071
|
+
"gramophone": 63677,
|
|
4072
|
+
"dice-d12": 63182,
|
|
4073
|
+
"note-sticky": 62025,
|
|
4074
|
+
"sticky-note": 62025,
|
|
4075
|
+
"down": 62292,
|
|
4076
|
+
"arrow-alt-down": 62292,
|
|
4077
|
+
"hundred-points": 58396,
|
|
4078
|
+
"paperclip-vertical": 58306,
|
|
4079
|
+
"wind-warning": 63350,
|
|
4080
|
+
"wind-circle-exclamation": 63350,
|
|
4081
|
+
"location-pin-slash": 62988,
|
|
4082
|
+
"map-marker-slash": 62988,
|
|
4083
|
+
"face-sad-sweat": 58250,
|
|
4084
|
+
"bug-slash": 58512,
|
|
4085
|
+
"cupcake": 58370,
|
|
4086
|
+
"light-switch-off": 57368,
|
|
4087
|
+
"toggle-large-off": 58800,
|
|
4088
|
+
"pen-fancy-slash": 57872,
|
|
4089
|
+
"truck-container": 62684,
|
|
4090
|
+
"boot": 63362,
|
|
4091
|
+
"arrow-up-from-water-pump": 58550,
|
|
4092
|
+
"file-check": 62230,
|
|
4093
|
+
"bone": 62935,
|
|
4094
|
+
"cards-blank": 58591,
|
|
4095
|
+
"circle-3": 57584,
|
|
4096
|
+
"bench-tree": 58087,
|
|
4097
|
+
"keyboard-brightness-low": 57793,
|
|
4098
|
+
"ski-boot-ski": 58317,
|
|
4099
|
+
"brain-circuit": 57542,
|
|
4100
|
+
"user-injured": 63272,
|
|
4101
|
+
"block-brick-fire": 58332,
|
|
4102
|
+
"firewall": 58332,
|
|
4103
|
+
"face-sad-tear": 62900,
|
|
4104
|
+
"sad-tear": 62900,
|
|
4105
|
+
"plane": 61554,
|
|
4106
|
+
"tent-arrows-down": 58753,
|
|
4107
|
+
"exclamation": 33,
|
|
4108
|
+
"arrows-spin": 58555,
|
|
4109
|
+
"face-smile-relaxed": 58258,
|
|
4110
|
+
"comment-xmark": 62645,
|
|
4111
|
+
"comment-times": 62645,
|
|
4112
|
+
"print": 61487,
|
|
4113
|
+
"turkish-lira-sign": 58043,
|
|
4114
|
+
"try": 58043,
|
|
4115
|
+
"turkish-lira": 58043,
|
|
4116
|
+
"face-nose-steam": 58242,
|
|
4117
|
+
"circle-waveform-lines": 57645,
|
|
4118
|
+
"waveform-circle": 57645,
|
|
4119
|
+
"dollar-sign": 36,
|
|
4120
|
+
"dollar": 36,
|
|
4121
|
+
"usd": 36,
|
|
4122
|
+
"ferris-wheel": 57716,
|
|
4123
|
+
"computer-speaker": 63666,
|
|
4124
|
+
"skull-cow": 63710,
|
|
4125
|
+
"x": 88,
|
|
4126
|
+
"magnifying-glass-dollar": 63112,
|
|
4127
|
+
"search-dollar": 63112,
|
|
4128
|
+
"users-gear": 62729,
|
|
4129
|
+
"users-cog": 62729,
|
|
4130
|
+
"person-military-pointing": 58698,
|
|
4131
|
+
"building-columns": 61852,
|
|
4132
|
+
"bank": 61852,
|
|
4133
|
+
"institution": 61852,
|
|
4134
|
+
"museum": 61852,
|
|
4135
|
+
"university": 61852,
|
|
4136
|
+
"circle-t": 57636,
|
|
4137
|
+
"sack": 63516,
|
|
4138
|
+
"grid-2": 57750,
|
|
4139
|
+
"camera-cctv": 63660,
|
|
4140
|
+
"cctv": 63660,
|
|
4141
|
+
"umbrella": 61673,
|
|
4142
|
+
"trowel": 58761,
|
|
4143
|
+
"horizontal-rule": 63596,
|
|
4144
|
+
"bed-front": 63735,
|
|
4145
|
+
"bed-alt": 63735,
|
|
4146
|
+
"d": 68,
|
|
4147
|
+
"stapler": 58799,
|
|
4148
|
+
"masks-theater": 63024,
|
|
4149
|
+
"theater-masks": 63024,
|
|
4150
|
+
"kip-sign": 57796,
|
|
4151
|
+
"face-woozy": 58274,
|
|
4152
|
+
"cloud-question": 58514,
|
|
4153
|
+
"pineapple": 58143,
|
|
4154
|
+
"hand-point-left": 61605,
|
|
4155
|
+
"gallery-thumbnails": 58282,
|
|
4156
|
+
"circle-j": 57618,
|
|
4157
|
+
"eyes": 58215,
|
|
4158
|
+
"handshake-simple": 62662,
|
|
4159
|
+
"handshake-alt": 62662,
|
|
4160
|
+
"page-caret-up": 58410,
|
|
4161
|
+
"file-caret-up": 58410,
|
|
4162
|
+
"jet-fighter": 61691,
|
|
4163
|
+
"fighter-jet": 61691,
|
|
4164
|
+
"comet": 57347,
|
|
4165
|
+
"square-share-nodes": 61921,
|
|
4166
|
+
"share-alt-square": 61921,
|
|
4167
|
+
"shield-keyhole": 57928,
|
|
4168
|
+
"barcode": 61482,
|
|
4169
|
+
"plus-minus": 58428,
|
|
4170
|
+
"square-sliders-vertical": 62450,
|
|
4171
|
+
"sliders-v-square": 62450,
|
|
4172
|
+
"video": 61501,
|
|
4173
|
+
"video-camera": 61501,
|
|
4174
|
+
"message-middle": 57825,
|
|
4175
|
+
"comment-middle-alt": 57825,
|
|
4176
|
+
"graduation-cap": 61853,
|
|
4177
|
+
"mortar-board": 61853,
|
|
4178
|
+
"hand-holding-medical": 57436,
|
|
4179
|
+
"person-circle-check": 58686,
|
|
4180
|
+
"square-z": 57992,
|
|
4181
|
+
"message-text": 57830,
|
|
4182
|
+
"comment-alt-text": 57830,
|
|
4183
|
+
"turn-up": 62399,
|
|
4184
|
+
"level-up-alt": 62399,
|
|
4185
|
+
"monero": 62416,
|
|
4186
|
+
"hooli": 62503,
|
|
4187
|
+
"yelp": 61929,
|
|
4188
|
+
"cc-visa": 61936,
|
|
4189
|
+
"lastfm": 61954,
|
|
4190
|
+
"shopware": 62901,
|
|
4191
|
+
"creative-commons-nc": 62696,
|
|
4192
|
+
"aws": 62325,
|
|
4193
|
+
"redhat": 63420,
|
|
4194
|
+
"yoast": 62129,
|
|
4195
|
+
"cloudflare": 57469,
|
|
4196
|
+
"ups": 63456,
|
|
4197
|
+
"wpexplorer": 62174,
|
|
4198
|
+
"dyalog": 62361,
|
|
4199
|
+
"bity": 62330,
|
|
4200
|
+
"stackpath": 63554,
|
|
4201
|
+
"buysellads": 61965,
|
|
4202
|
+
"first-order": 62128,
|
|
4203
|
+
"modx": 62085,
|
|
4204
|
+
"guilded": 57470,
|
|
4205
|
+
"vnv": 62475,
|
|
4206
|
+
"square-js": 62393,
|
|
4207
|
+
"js-square": 62393,
|
|
4208
|
+
"microsoft": 62410,
|
|
4209
|
+
"qq": 61910,
|
|
4210
|
+
"orcid": 63698,
|
|
4211
|
+
"java": 62692,
|
|
4212
|
+
"invision": 63408,
|
|
4213
|
+
"creative-commons-pd-alt": 62701,
|
|
4214
|
+
"centercode": 62336,
|
|
4215
|
+
"glide-g": 62118,
|
|
4216
|
+
"drupal": 61865,
|
|
4217
|
+
"hire-a-helper": 62384,
|
|
4218
|
+
"creative-commons-by": 62695,
|
|
4219
|
+
"unity": 57417,
|
|
4220
|
+
"whmcs": 62477,
|
|
4221
|
+
"rocketchat": 62440,
|
|
4222
|
+
"vk": 61833,
|
|
4223
|
+
"untappd": 62469,
|
|
4224
|
+
"mailchimp": 62878,
|
|
4225
|
+
"css3-alt": 62347,
|
|
4226
|
+
"square-reddit": 61858,
|
|
4227
|
+
"reddit-square": 61858,
|
|
4228
|
+
"vimeo-v": 62077,
|
|
4229
|
+
"contao": 62061,
|
|
4230
|
+
"square-font-awesome": 58797,
|
|
4231
|
+
"deskpro": 62351,
|
|
4232
|
+
"sistrix": 62446,
|
|
4233
|
+
"square-instagram": 57429,
|
|
4234
|
+
"instagram-square": 57429,
|
|
4235
|
+
"battle-net": 63541,
|
|
4236
|
+
"the-red-yeti": 63133,
|
|
4237
|
+
"square-hacker-news": 62383,
|
|
4238
|
+
"hacker-news-square": 62383,
|
|
4239
|
+
"edge": 62082,
|
|
4240
|
+
"napster": 62418,
|
|
4241
|
+
"square-snapchat": 62125,
|
|
4242
|
+
"snapchat-square": 62125,
|
|
4243
|
+
"google-plus-g": 61653,
|
|
4244
|
+
"artstation": 63354,
|
|
4245
|
+
"markdown": 62991,
|
|
4246
|
+
"sourcetree": 63443,
|
|
4247
|
+
"google-plus": 62131,
|
|
4248
|
+
"diaspora": 63377,
|
|
4249
|
+
"foursquare": 61824,
|
|
4250
|
+
"stack-overflow": 61804,
|
|
4251
|
+
"github-alt": 61715,
|
|
4252
|
+
"phoenix-squadron": 62737,
|
|
4253
|
+
"pagelines": 61836,
|
|
4254
|
+
"algolia": 62316,
|
|
4255
|
+
"red-river": 62435,
|
|
4256
|
+
"creative-commons-sa": 62703,
|
|
4257
|
+
"safari": 62055,
|
|
4258
|
+
"google": 61856,
|
|
4259
|
+
"square-font-awesome-stroke": 62300,
|
|
4260
|
+
"font-awesome-alt": 62300,
|
|
4261
|
+
"atlassian": 63355,
|
|
4262
|
+
"linkedin-in": 61665,
|
|
4263
|
+
"digital-ocean": 62353,
|
|
4264
|
+
"nimblr": 62888,
|
|
4265
|
+
"chromecast": 63544,
|
|
4266
|
+
"evernote": 63545,
|
|
4267
|
+
"hacker-news": 61908,
|
|
4268
|
+
"creative-commons-sampling": 62704,
|
|
4269
|
+
"adversal": 62314,
|
|
4270
|
+
"creative-commons": 62046,
|
|
4271
|
+
"watchman-monitoring": 57479,
|
|
4272
|
+
"fonticons": 62080,
|
|
4273
|
+
"weixin": 61911,
|
|
4274
|
+
"shirtsinbulk": 61972,
|
|
4275
|
+
"codepen": 61899,
|
|
4276
|
+
"git-alt": 63553,
|
|
4277
|
+
"lyft": 62403,
|
|
4278
|
+
"rev": 62898,
|
|
4279
|
+
"windows": 61818,
|
|
4280
|
+
"wizards-of-the-coast": 63280,
|
|
4281
|
+
"square-viadeo": 62122,
|
|
4282
|
+
"viadeo-square": 62122,
|
|
4283
|
+
"meetup": 62176,
|
|
4284
|
+
"centos": 63369,
|
|
4285
|
+
"adn": 61808,
|
|
4286
|
+
"cloudsmith": 62340,
|
|
4287
|
+
"pied-piper-alt": 61864,
|
|
4288
|
+
"square-dribbble": 62359,
|
|
4289
|
+
"dribbble-square": 62359,
|
|
4290
|
+
"codiepie": 62084,
|
|
4291
|
+
"node": 62489,
|
|
4292
|
+
"mix": 62411,
|
|
4293
|
+
"steam": 61878,
|
|
4294
|
+
"cc-apple-pay": 62486,
|
|
4295
|
+
"scribd": 62090,
|
|
4296
|
+
"openid": 61851,
|
|
4297
|
+
"instalod": 57473,
|
|
4298
|
+
"expeditedssl": 62014,
|
|
4299
|
+
"sellcast": 62170,
|
|
4300
|
+
"square-twitter": 61569,
|
|
4301
|
+
"twitter-square": 61569,
|
|
4302
|
+
"r-project": 62711,
|
|
4303
|
+
"delicious": 61861,
|
|
4304
|
+
"freebsd": 62372,
|
|
4305
|
+
"vuejs": 62495,
|
|
4306
|
+
"accusoft": 62313,
|
|
4307
|
+
"ioxhost": 61960,
|
|
4308
|
+
"fonticons-fi": 62370,
|
|
4309
|
+
"app-store": 62319,
|
|
4310
|
+
"cc-mastercard": 61937,
|
|
4311
|
+
"itunes-note": 62389,
|
|
4312
|
+
"golang": 58383,
|
|
4313
|
+
"kickstarter": 62395,
|
|
4314
|
+
"grav": 62166,
|
|
4315
|
+
"weibo": 61834,
|
|
4316
|
+
"uncharted": 57476,
|
|
4317
|
+
"firstdraft": 62369,
|
|
4318
|
+
"square-youtube": 62513,
|
|
4319
|
+
"youtube-square": 62513,
|
|
4320
|
+
"wikipedia-w": 62054,
|
|
4321
|
+
"wpressr": 62436,
|
|
4322
|
+
"rendact": 62436,
|
|
4323
|
+
"angellist": 61961,
|
|
4324
|
+
"galactic-republic": 62732,
|
|
4325
|
+
"nfc-directional": 58672,
|
|
4326
|
+
"skype": 61822,
|
|
4327
|
+
"joget": 62391,
|
|
4328
|
+
"fedora": 63384,
|
|
4329
|
+
"stripe-s": 62506,
|
|
4330
|
+
"meta": 58523,
|
|
4331
|
+
"laravel": 62397,
|
|
4332
|
+
"hotjar": 62385,
|
|
4333
|
+
"bluetooth-b": 62100,
|
|
4334
|
+
"sticker-mule": 62455,
|
|
4335
|
+
"creative-commons-zero": 62707,
|
|
4336
|
+
"hips": 62546,
|
|
4337
|
+
"behance": 61876,
|
|
4338
|
+
"reddit": 61857,
|
|
4339
|
+
"discord": 62354,
|
|
4340
|
+
"chrome": 62056,
|
|
4341
|
+
"app-store-ios": 62320,
|
|
4342
|
+
"cc-discover": 61938,
|
|
4343
|
+
"wpbeginner": 62103,
|
|
4344
|
+
"confluence": 63373,
|
|
4345
|
+
"mdb": 63690,
|
|
4346
|
+
"dochub": 62356,
|
|
4347
|
+
"accessible-icon": 62312,
|
|
4348
|
+
"ebay": 62708,
|
|
4349
|
+
"amazon": 62064,
|
|
4350
|
+
"unsplash": 57468,
|
|
4351
|
+
"yarn": 63459,
|
|
4352
|
+
"square-steam": 61879,
|
|
4353
|
+
"steam-square": 61879,
|
|
4354
|
+
"500px": 62062,
|
|
4355
|
+
"square-vimeo": 61844,
|
|
4356
|
+
"vimeo-square": 61844,
|
|
4357
|
+
"asymmetrik": 62322,
|
|
4358
|
+
"font-awesome": 62132,
|
|
4359
|
+
"font-awesome-flag": 62132,
|
|
4360
|
+
"font-awesome-logo-full": 62132,
|
|
4361
|
+
"gratipay": 61828,
|
|
4362
|
+
"apple": 61817,
|
|
4363
|
+
"hive": 57471,
|
|
4364
|
+
"gitkraken": 62374,
|
|
4365
|
+
"keybase": 62709,
|
|
4366
|
+
"apple-pay": 62485,
|
|
4367
|
+
"padlet": 58528,
|
|
4368
|
+
"amazon-pay": 62508,
|
|
4369
|
+
"square-github": 61586,
|
|
4370
|
+
"github-square": 61586,
|
|
4371
|
+
"stumbleupon": 61860,
|
|
4372
|
+
"fedex": 63383,
|
|
4373
|
+
"phoenix-framework": 62428,
|
|
4374
|
+
"shopify": 57431,
|
|
4375
|
+
"neos": 62994,
|
|
4376
|
+
"hackerrank": 62967,
|
|
4377
|
+
"researchgate": 62712,
|
|
4378
|
+
"swift": 63713,
|
|
4379
|
+
"angular": 62496,
|
|
4380
|
+
"speakap": 62451,
|
|
4381
|
+
"angrycreative": 62318,
|
|
4382
|
+
"y-combinator": 62011,
|
|
4383
|
+
"empire": 61905,
|
|
4384
|
+
"envira": 62105,
|
|
4385
|
+
"square-gitlab": 58798,
|
|
4386
|
+
"gitlab-square": 58798,
|
|
4387
|
+
"studiovinari": 62456,
|
|
4388
|
+
"pied-piper": 62126,
|
|
4389
|
+
"wordpress": 61850,
|
|
4390
|
+
"product-hunt": 62088,
|
|
4391
|
+
"firefox": 62057,
|
|
4392
|
+
"linode": 62136,
|
|
4393
|
+
"goodreads": 62376,
|
|
4394
|
+
"square-odnoklassniki": 62052,
|
|
4395
|
+
"odnoklassniki-square": 62052,
|
|
4396
|
+
"jsfiddle": 61900,
|
|
4397
|
+
"sith": 62738,
|
|
4398
|
+
"themeisle": 62130,
|
|
4399
|
+
"page4": 62423,
|
|
4400
|
+
"hashnode": 58521,
|
|
4401
|
+
"react": 62491,
|
|
4402
|
+
"cc-paypal": 61940,
|
|
4403
|
+
"squarespace": 62910,
|
|
4404
|
+
"cc-stripe": 61941,
|
|
4405
|
+
"creative-commons-share": 62706,
|
|
4406
|
+
"bitcoin": 62329,
|
|
4407
|
+
"keycdn": 62394,
|
|
4408
|
+
"opera": 62058,
|
|
4409
|
+
"itch-io": 63546,
|
|
4410
|
+
"umbraco": 63720,
|
|
4411
|
+
"galactic-senate": 62733,
|
|
4412
|
+
"ubuntu": 63455,
|
|
4413
|
+
"draft2digital": 62358,
|
|
4414
|
+
"stripe": 62505,
|
|
4415
|
+
"houzz": 62076,
|
|
4416
|
+
"gg": 62048,
|
|
4417
|
+
"dhl": 63376,
|
|
4418
|
+
"square-pinterest": 61651,
|
|
4419
|
+
"pinterest-square": 61651,
|
|
4420
|
+
"xing": 61800,
|
|
4421
|
+
"blackberry": 62331,
|
|
4422
|
+
"creative-commons-pd": 62700,
|
|
4423
|
+
"playstation": 62431,
|
|
4424
|
+
"quinscape": 62553,
|
|
4425
|
+
"less": 62493,
|
|
4426
|
+
"blogger-b": 62333,
|
|
4427
|
+
"opencart": 62013,
|
|
4428
|
+
"vine": 61898,
|
|
4429
|
+
"paypal": 61933,
|
|
4430
|
+
"gitlab": 62102,
|
|
4431
|
+
"typo3": 62507,
|
|
4432
|
+
"reddit-alien": 62081,
|
|
4433
|
+
"yahoo": 61854,
|
|
4434
|
+
"dailymotion": 57426,
|
|
4435
|
+
"affiliatetheme": 62315,
|
|
4436
|
+
"pied-piper-pp": 61863,
|
|
4437
|
+
"bootstrap": 63542,
|
|
4438
|
+
"odnoklassniki": 62051,
|
|
4439
|
+
"nfc-symbol": 58673,
|
|
4440
|
+
"ethereum": 62510,
|
|
4441
|
+
"speaker-deck": 63548,
|
|
4442
|
+
"creative-commons-nc-eu": 62697,
|
|
4443
|
+
"patreon": 62425,
|
|
4444
|
+
"avianex": 62324,
|
|
4445
|
+
"ello": 62961,
|
|
4446
|
+
"gofore": 62375,
|
|
4447
|
+
"bimobject": 62328,
|
|
4448
|
+
"facebook-f": 62366,
|
|
4449
|
+
"square-google-plus": 61652,
|
|
4450
|
+
"google-plus-square": 61652,
|
|
4451
|
+
"mandalorian": 62735,
|
|
4452
|
+
"first-order-alt": 62730,
|
|
4453
|
+
"osi": 62490,
|
|
4454
|
+
"google-wallet": 61934,
|
|
4455
|
+
"d-and-d-beyond": 63178,
|
|
4456
|
+
"periscope": 62426,
|
|
4457
|
+
"fulcrum": 62731,
|
|
4458
|
+
"cloudscale": 62339,
|
|
4459
|
+
"forumbee": 61969,
|
|
4460
|
+
"mizuni": 62412,
|
|
4461
|
+
"schlix": 62442,
|
|
4462
|
+
"square-xing": 61801,
|
|
4463
|
+
"xing-square": 61801,
|
|
4464
|
+
"bandcamp": 62165,
|
|
4465
|
+
"wpforms": 62104,
|
|
4466
|
+
"cloudversify": 62341,
|
|
4467
|
+
"usps": 63457,
|
|
4468
|
+
"megaport": 62883,
|
|
4469
|
+
"magento": 62404,
|
|
4470
|
+
"spotify": 61884,
|
|
4471
|
+
"optin-monster": 62012,
|
|
4472
|
+
"fly": 62487,
|
|
4473
|
+
"aviato": 62497,
|
|
4474
|
+
"itunes": 62388,
|
|
4475
|
+
"cuttlefish": 62348,
|
|
4476
|
+
"blogger": 62332,
|
|
4477
|
+
"flickr": 61806,
|
|
4478
|
+
"viber": 62473,
|
|
4479
|
+
"soundcloud": 61886,
|
|
4480
|
+
"digg": 61862,
|
|
4481
|
+
"tencent-weibo": 61909,
|
|
4482
|
+
"symfony": 63549,
|
|
4483
|
+
"maxcdn": 61750,
|
|
4484
|
+
"etsy": 62167,
|
|
4485
|
+
"facebook-messenger": 62367,
|
|
4486
|
+
"audible": 62323,
|
|
4487
|
+
"think-peaks": 63281,
|
|
4488
|
+
"bilibili": 58329,
|
|
4489
|
+
"erlang": 62365,
|
|
4490
|
+
"cotton-bureau": 63646,
|
|
4491
|
+
"dashcube": 61968,
|
|
4492
|
+
"42-group": 57472,
|
|
4493
|
+
"innosoft": 57472,
|
|
4494
|
+
"stack-exchange": 61837,
|
|
4495
|
+
"elementor": 62512,
|
|
4496
|
+
"square-pied-piper": 57374,
|
|
4497
|
+
"pied-piper-square": 57374,
|
|
4498
|
+
"creative-commons-nd": 62699,
|
|
4499
|
+
"palfed": 62424,
|
|
4500
|
+
"superpowers": 62173,
|
|
4501
|
+
"resolving": 62439,
|
|
4502
|
+
"xbox": 62482,
|
|
4503
|
+
"searchengin": 62443,
|
|
4504
|
+
"tiktok": 57467,
|
|
4505
|
+
"square-facebook": 61570,
|
|
4506
|
+
"facebook-square": 61570,
|
|
4507
|
+
"renren": 61835,
|
|
4508
|
+
"linux": 61820,
|
|
4509
|
+
"glide": 62117,
|
|
4510
|
+
"linkedin": 61580,
|
|
4511
|
+
"hubspot": 62386,
|
|
4512
|
+
"deploydog": 62350,
|
|
4513
|
+
"twitch": 61928,
|
|
4514
|
+
"ravelry": 62169,
|
|
4515
|
+
"mixer": 57430,
|
|
4516
|
+
"square-lastfm": 61955,
|
|
4517
|
+
"lastfm-square": 61955,
|
|
4518
|
+
"vimeo": 62474,
|
|
4519
|
+
"mendeley": 63411,
|
|
4520
|
+
"uniregistry": 62468,
|
|
4521
|
+
"figma": 63385,
|
|
4522
|
+
"creative-commons-remix": 62702,
|
|
4523
|
+
"cc-amazon-pay": 62509,
|
|
4524
|
+
"dropbox": 61803,
|
|
4525
|
+
"instagram": 61805,
|
|
4526
|
+
"cmplid": 58208,
|
|
4527
|
+
"facebook": 61594,
|
|
4528
|
+
"gripfire": 62380,
|
|
4529
|
+
"jedi-order": 62734,
|
|
4530
|
+
"uikit": 62467,
|
|
4531
|
+
"fort-awesome-alt": 62371,
|
|
4532
|
+
"phabricator": 62427,
|
|
4533
|
+
"ussunnah": 62471,
|
|
4534
|
+
"earlybirds": 62362,
|
|
4535
|
+
"trade-federation": 62739,
|
|
4536
|
+
"autoprefixer": 62492,
|
|
4537
|
+
"whatsapp": 62002,
|
|
4538
|
+
"slideshare": 61927,
|
|
4539
|
+
"google-play": 62379,
|
|
4540
|
+
"viadeo": 62121,
|
|
4541
|
+
"line": 62400,
|
|
4542
|
+
"google-drive": 62378,
|
|
4543
|
+
"servicestack": 62444,
|
|
4544
|
+
"simplybuilt": 61973,
|
|
4545
|
+
"bitbucket": 61809,
|
|
4546
|
+
"imdb": 62168,
|
|
4547
|
+
"deezer": 57463,
|
|
4548
|
+
"raspberry-pi": 63419,
|
|
4549
|
+
"jira": 63409,
|
|
4550
|
+
"docker": 62357,
|
|
4551
|
+
"screenpal": 58736,
|
|
4552
|
+
"bluetooth": 62099,
|
|
4553
|
+
"gitter": 62502,
|
|
4554
|
+
"d-and-d": 62349,
|
|
4555
|
+
"microblog": 57370,
|
|
4556
|
+
"cc-diners-club": 62028,
|
|
4557
|
+
"gg-circle": 62049,
|
|
4558
|
+
"pied-piper-hat": 62693,
|
|
4559
|
+
"kickstarter-k": 62396,
|
|
4560
|
+
"yandex": 62483,
|
|
4561
|
+
"readme": 62677,
|
|
4562
|
+
"html5": 61755,
|
|
4563
|
+
"sellsy": 61971,
|
|
4564
|
+
"sass": 62494,
|
|
4565
|
+
"wirsindhandwerk": 58064,
|
|
4566
|
+
"wsh": 58064,
|
|
4567
|
+
"buromobelexperte": 62335,
|
|
4568
|
+
"salesforce": 63547,
|
|
4569
|
+
"octopus-deploy": 57474,
|
|
4570
|
+
"medapps": 62406,
|
|
4571
|
+
"ns8": 62421,
|
|
4572
|
+
"pinterest-p": 62001,
|
|
4573
|
+
"apper": 62321,
|
|
4574
|
+
"fort-awesome": 62086,
|
|
4575
|
+
"waze": 63551,
|
|
4576
|
+
"cc-jcb": 62027,
|
|
4577
|
+
"snapchat": 62123,
|
|
4578
|
+
"snapchat-ghost": 62123,
|
|
4579
|
+
"fantasy-flight-games": 63196,
|
|
4580
|
+
"rust": 57466,
|
|
4581
|
+
"wix": 62927,
|
|
4582
|
+
"square-behance": 61877,
|
|
4583
|
+
"behance-square": 61877,
|
|
4584
|
+
"supple": 62457,
|
|
4585
|
+
"rebel": 61904,
|
|
4586
|
+
"css3": 61756,
|
|
4587
|
+
"staylinked": 62453,
|
|
4588
|
+
"kaggle": 62970,
|
|
4589
|
+
"space-awesome": 58796,
|
|
4590
|
+
"deviantart": 61885,
|
|
4591
|
+
"cpanel": 62344,
|
|
4592
|
+
"goodreads-g": 62377,
|
|
4593
|
+
"square-git": 61906,
|
|
4594
|
+
"git-square": 61906,
|
|
4595
|
+
"square-tumblr": 61812,
|
|
4596
|
+
"tumblr-square": 61812,
|
|
4597
|
+
"trello": 61825,
|
|
4598
|
+
"creative-commons-nc-jp": 62698,
|
|
4599
|
+
"get-pocket": 62053,
|
|
4600
|
+
"perbyte": 57475,
|
|
4601
|
+
"grunt": 62381,
|
|
4602
|
+
"weebly": 62924,
|
|
4603
|
+
"connectdevelop": 61966,
|
|
4604
|
+
"leanpub": 61970,
|
|
4605
|
+
"black-tie": 62078,
|
|
4606
|
+
"themeco": 62918,
|
|
4607
|
+
"python": 62434,
|
|
4608
|
+
"android": 61819,
|
|
4609
|
+
"bots": 58176,
|
|
4610
|
+
"free-code-camp": 62149,
|
|
4611
|
+
"hornbill": 62866,
|
|
4612
|
+
"js": 62392,
|
|
4613
|
+
"ideal": 57363,
|
|
4614
|
+
"git": 61907,
|
|
4615
|
+
"dev": 63180,
|
|
4616
|
+
"sketch": 63430,
|
|
4617
|
+
"yandex-international": 62484,
|
|
4618
|
+
"cc-amex": 61939,
|
|
4619
|
+
"uber": 62466,
|
|
4620
|
+
"github": 61595,
|
|
4621
|
+
"php": 62551,
|
|
4622
|
+
"alipay": 63042,
|
|
4623
|
+
"youtube": 61799,
|
|
4624
|
+
"skyatlas": 61974,
|
|
4625
|
+
"firefox-browser": 57351,
|
|
4626
|
+
"replyd": 62438,
|
|
4627
|
+
"suse": 63446,
|
|
4628
|
+
"jenkins": 62390,
|
|
4629
|
+
"twitter": 61593,
|
|
4630
|
+
"rockrms": 62441,
|
|
4631
|
+
"pinterest": 61650,
|
|
4632
|
+
"buffer": 63543,
|
|
4633
|
+
"npm": 62420,
|
|
4634
|
+
"yammer": 63552,
|
|
4635
|
+
"btc": 61786,
|
|
4636
|
+
"dribbble": 61821,
|
|
4637
|
+
"stumbleupon-circle": 61859,
|
|
4638
|
+
"internet-explorer": 62059,
|
|
4639
|
+
"stubber": 58823,
|
|
4640
|
+
"telegram": 62150,
|
|
4641
|
+
"telegram-plane": 62150,
|
|
4642
|
+
"old-republic": 62736,
|
|
4643
|
+
"odysee": 58822,
|
|
4644
|
+
"square-whatsapp": 62476,
|
|
4645
|
+
"whatsapp-square": 62476,
|
|
4646
|
+
"node-js": 62419,
|
|
4647
|
+
"edge-legacy": 57464,
|
|
4648
|
+
"slack": 61848,
|
|
4649
|
+
"slack-hash": 61848,
|
|
4650
|
+
"medrt": 62408,
|
|
4651
|
+
"usb": 62087,
|
|
4652
|
+
"tumblr": 61811,
|
|
4653
|
+
"vaadin": 62472,
|
|
4654
|
+
"quora": 62148,
|
|
4655
|
+
"reacteurope": 63325,
|
|
4656
|
+
"medium": 62010,
|
|
4657
|
+
"medium-m": 62010,
|
|
4658
|
+
"amilia": 62317,
|
|
4659
|
+
"mixcloud": 62089,
|
|
4660
|
+
"flipboard": 62541,
|
|
4661
|
+
"viacoin": 62007,
|
|
4662
|
+
"critical-role": 63177,
|
|
4663
|
+
"sitrox": 58442,
|
|
4664
|
+
"discourse": 62355,
|
|
4665
|
+
"joomla": 61866,
|
|
4666
|
+
"mastodon": 62710,
|
|
4667
|
+
"airbnb": 63540,
|
|
4668
|
+
"wolf-pack-battalion": 62740,
|
|
4669
|
+
"buy-n-large": 63654,
|
|
4670
|
+
"gulp": 62382,
|
|
4671
|
+
"creative-commons-sampling-plus": 62705,
|
|
4672
|
+
"strava": 62504,
|
|
4673
|
+
"ember": 62499,
|
|
4674
|
+
"canadian-maple-leaf": 63365,
|
|
4675
|
+
"teamspeak": 62713,
|
|
4676
|
+
"pushed": 62433,
|
|
4677
|
+
"wordpress-simple": 62481,
|
|
4678
|
+
"nutritionix": 62422,
|
|
4679
|
+
"wodu": 57480,
|
|
4680
|
+
"google-pay": 57465,
|
|
4681
|
+
"intercom": 63407,
|
|
4682
|
+
"zhihu": 63039,
|
|
4683
|
+
"korvue": 62511,
|
|
4684
|
+
"pix": 58426,
|
|
4685
|
+
"steam-symbol": 62454
|
|
4686
|
+
}
|