|
1
|
|
|
<?php |
|
2
|
|
|
/** |
|
3
|
|
|
* FontAwesome.php |
|
4
|
|
|
* @author Revin Roman |
|
5
|
|
|
* @link https://rmrevin.ru |
|
6
|
|
|
*/ |
|
7
|
|
|
|
|
8
|
|
|
namespace rmrevin\yii\fontawesome; |
|
9
|
|
|
|
|
10
|
|
|
use rmrevin\yii\fontawesome\component; |
|
11
|
|
|
|
|
12
|
|
|
/** |
|
13
|
|
|
* Class FA |
|
14
|
|
|
* @package rmrevin\yii\fontawesome |
|
15
|
|
|
*/ |
|
16
|
|
|
class FontAwesome |
|
17
|
|
|
{ |
|
18
|
|
|
/** |
|
19
|
|
|
* CSS class prefix |
|
20
|
|
|
* @var string |
|
21
|
|
|
*/ |
|
22
|
|
|
public static $cssPrefix = 'fa'; |
|
23
|
|
|
|
|
24
|
|
|
/** |
|
25
|
|
|
* CSS class prefix |
|
26
|
|
|
* @var string |
|
27
|
|
|
*/ |
|
28
|
|
|
public static $basePrefix = 'fa'; |
|
29
|
|
|
|
|
30
|
|
|
/** |
|
31
|
|
|
* Creates an `Icon` component that can be used to FontAwesome html icon |
|
32
|
|
|
* |
|
33
|
|
|
* @param string $name |
|
34
|
|
|
* @param array $options |
|
35
|
|
|
* @return component\Icon |
|
36
|
|
|
*/ |
|
37
|
8 |
|
public static function icon($name, $options = []) |
|
38
|
|
|
{ |
|
39
|
8 |
|
return new component\Icon(static::$cssPrefix, $name, $options); |
|
40
|
|
|
} |
|
41
|
|
|
|
|
42
|
|
|
/** |
|
43
|
|
|
* Shortcut for `icon()` method |
|
44
|
|
|
* @param string $name |
|
45
|
|
|
* @param array $options |
|
46
|
|
|
* @return component\Icon |
|
47
|
|
|
* @see icon() |
|
48
|
|
|
* |
|
49
|
|
|
*/ |
|
50
|
1 |
|
public static function i($name, $options = []) |
|
51
|
|
|
{ |
|
52
|
1 |
|
return static::icon($name, $options); |
|
53
|
|
|
} |
|
54
|
|
|
|
|
55
|
|
|
/** |
|
56
|
|
|
* Creates an `Stack` component that can be used to FontAwesome html icon |
|
57
|
|
|
* |
|
58
|
|
|
* @param array $options |
|
59
|
|
|
* @return component\Stack |
|
60
|
|
|
*/ |
|
61
|
3 |
|
public static function stack($options = []) |
|
62
|
|
|
{ |
|
63
|
3 |
|
return new component\Stack(static::$cssPrefix, $options); |
|
64
|
|
|
} |
|
65
|
|
|
|
|
66
|
|
|
/** |
|
67
|
|
|
* Shortcut for `stack()` method |
|
68
|
|
|
* @param array $options |
|
69
|
|
|
* @return component\Stack |
|
70
|
|
|
* @see stack() |
|
71
|
|
|
* |
|
72
|
|
|
*/ |
|
73
|
1 |
|
public static function s($options = []) |
|
74
|
|
|
{ |
|
75
|
1 |
|
return static::stack($options); |
|
76
|
|
|
} |
|
77
|
|
|
|
|
78
|
|
|
/** |
|
79
|
|
|
* @param array $options |
|
80
|
|
|
* @return component\UnorderedList |
|
81
|
|
|
*/ |
|
82
|
2 |
|
public static function ul($options = []) |
|
83
|
|
|
{ |
|
84
|
2 |
|
return new component\UnorderedList(static::$cssPrefix, $options); |
|
85
|
|
|
} |
|
86
|
|
|
|
|
87
|
|
|
/** |
|
88
|
|
|
* Size values |
|
89
|
|
|
* @see component\Icon::size |
|
90
|
|
|
*/ |
|
91
|
|
|
const SIZE_LARGE = 'lg'; |
|
92
|
|
|
const SIZE_LG = 'lg'; |
|
93
|
|
|
const SIZE_SMALL = 'sm'; |
|
94
|
|
|
const SIZE_SM = 'sm'; |
|
95
|
|
|
const SIZE_EXTRA_SMALL = 'xs'; |
|
96
|
|
|
const SIZE_XS = 'xs'; |
|
97
|
|
|
const SIZE_2X = '2x'; |
|
98
|
|
|
const SIZE_3X = '3x'; |
|
99
|
|
|
const SIZE_4X = '4x'; |
|
100
|
|
|
const SIZE_5X = '5x'; |
|
101
|
|
|
const SIZE_6X = '6x'; |
|
102
|
|
|
const SIZE_7X = '7x'; |
|
103
|
|
|
const SIZE_8X = '8x'; |
|
104
|
|
|
const SIZE_9X = '9x'; |
|
105
|
|
|
const SIZE_10X = '10x'; |
|
106
|
|
|
|
|
107
|
|
|
/** |
|
108
|
|
|
* Rotate values |
|
109
|
|
|
* @see component\Icon::rotate |
|
110
|
|
|
*/ |
|
111
|
|
|
const ROTATE_90 = '90'; |
|
112
|
|
|
const ROTATE_180 = '180'; |
|
113
|
|
|
const ROTATE_270 = '270'; |
|
114
|
|
|
|
|
115
|
|
|
/** |
|
116
|
|
|
* Flip values |
|
117
|
|
|
* @see component\Icon::flip |
|
118
|
|
|
*/ |
|
119
|
|
|
const FLIP_HORIZONTAL = 'horizontal'; |
|
120
|
|
|
const FLIP_VERTICAL = 'vertical'; |
|
121
|
|
|
|
|
122
|
|
|
/** |
|
123
|
|
|
* Icons name |
|
124
|
|
|
*/ |
|
125
|
|
|
const _500PX = '500px'; |
|
126
|
|
|
const _ACCESSIBLE_ICON = 'accessible-icon'; |
|
127
|
|
|
const _ACCUSOFT = 'accusoft'; |
|
128
|
|
|
const _ACQUISITIONS_INCORPORATED = 'acquisitions-incorporated'; |
|
129
|
|
|
const _AD = 'ad'; |
|
130
|
|
|
const _ADDRESS_BOOK = 'address-book'; |
|
131
|
|
|
const _ADDRESS_CARD = 'address-card'; |
|
132
|
|
|
const _ADJUST = 'adjust'; |
|
133
|
|
|
const _ADN = 'adn'; |
|
134
|
|
|
const _ADOBE = 'adobe'; |
|
135
|
|
|
const _ADVERSAL = 'adversal'; |
|
136
|
|
|
const _AFFILIATETHEME = 'affiliatetheme'; |
|
137
|
|
|
const _AIR_FRESHENER = 'air-freshener'; |
|
138
|
|
|
const _AIRBNB = 'airbnb'; |
|
139
|
|
|
const _ALGOLIA = 'algolia'; |
|
140
|
|
|
const _ALIGN_CENTER = 'align-center'; |
|
141
|
|
|
const _ALIGN_JUSTIFY = 'align-justify'; |
|
142
|
|
|
const _ALIGN_LEFT = 'align-left'; |
|
143
|
|
|
const _ALIGN_RIGHT = 'align-right'; |
|
144
|
|
|
const _ALIPAY = 'alipay'; |
|
145
|
|
|
const _ALLERGIES = 'allergies'; |
|
146
|
|
|
const _AMAZON = 'amazon'; |
|
147
|
|
|
const _AMAZON_PAY = 'amazon-pay'; |
|
148
|
|
|
const _AMBULANCE = 'ambulance'; |
|
149
|
|
|
const _AMERICAN_SIGN_LANGUAGE_INTERPRETING = 'american-sign-language-interpreting'; |
|
150
|
|
|
const _AMILIA = 'amilia'; |
|
151
|
|
|
const _ANCHOR = 'anchor'; |
|
152
|
|
|
const _ANDROID = 'android'; |
|
153
|
|
|
const _ANGELLIST = 'angellist'; |
|
154
|
|
|
const _ANGLE_DOUBLE_DOWN = 'angle-double-down'; |
|
155
|
|
|
const _ANGLE_DOUBLE_LEFT = 'angle-double-left'; |
|
156
|
|
|
const _ANGLE_DOUBLE_RIGHT = 'angle-double-right'; |
|
157
|
|
|
const _ANGLE_DOUBLE_UP = 'angle-double-up'; |
|
158
|
|
|
const _ANGLE_DOWN = 'angle-down'; |
|
159
|
|
|
const _ANGLE_LEFT = 'angle-left'; |
|
160
|
|
|
const _ANGLE_RIGHT = 'angle-right'; |
|
161
|
|
|
const _ANGLE_UP = 'angle-up'; |
|
162
|
|
|
const _ANGRY = 'angry'; |
|
163
|
|
|
const _ANGRYCREATIVE = 'angrycreative'; |
|
164
|
|
|
const _ANGULAR = 'angular'; |
|
165
|
|
|
const _ANKH = 'ankh'; |
|
166
|
|
|
const _APP_STORE = 'app-store'; |
|
167
|
|
|
const _APP_STORE_IOS = 'app-store-ios'; |
|
168
|
|
|
const _APPER = 'apper'; |
|
169
|
|
|
const _APPLE = 'apple'; |
|
170
|
|
|
const _APPLE_ALT = 'apple-alt'; |
|
171
|
|
|
const _APPLE_PAY = 'apple-pay'; |
|
172
|
|
|
const _ARCHIVE = 'archive'; |
|
173
|
|
|
const _ARCHWAY = 'archway'; |
|
174
|
|
|
const _ARROW_ALT_CIRCLE_DOWN = 'arrow-alt-circle-down'; |
|
175
|
|
|
const _ARROW_ALT_CIRCLE_LEFT = 'arrow-alt-circle-left'; |
|
176
|
|
|
const _ARROW_ALT_CIRCLE_RIGHT = 'arrow-alt-circle-right'; |
|
177
|
|
|
const _ARROW_ALT_CIRCLE_UP = 'arrow-alt-circle-up'; |
|
178
|
|
|
const _ARROW_CIRCLE_DOWN = 'arrow-circle-down'; |
|
179
|
|
|
const _ARROW_CIRCLE_LEFT = 'arrow-circle-left'; |
|
180
|
|
|
const _ARROW_CIRCLE_RIGHT = 'arrow-circle-right'; |
|
181
|
|
|
const _ARROW_CIRCLE_UP = 'arrow-circle-up'; |
|
182
|
|
|
const _ARROW_DOWN = 'arrow-down'; |
|
183
|
|
|
const _ARROW_LEFT = 'arrow-left'; |
|
184
|
|
|
const _ARROW_RIGHT = 'arrow-right'; |
|
185
|
|
|
const _ARROW_UP = 'arrow-up'; |
|
186
|
|
|
const _ARROWS_ALT = 'arrows-alt'; |
|
187
|
|
|
const _ARROWS_ALT_H = 'arrows-alt-h'; |
|
188
|
|
|
const _ARROWS_ALT_V = 'arrows-alt-v'; |
|
189
|
|
|
const _ARTSTATION = 'artstation'; |
|
190
|
|
|
const _ASSISTIVE_LISTENING_SYSTEMS = 'assistive-listening-systems'; |
|
191
|
|
|
const _ASTERISK = 'asterisk'; |
|
192
|
|
|
const _ASYMMETRIK = 'asymmetrik'; |
|
193
|
|
|
const _AT = 'at'; |
|
194
|
|
|
const _ATLAS = 'atlas'; |
|
195
|
|
|
const _ATLASSIAN = 'atlassian'; |
|
196
|
|
|
const _ATOM = 'atom'; |
|
197
|
|
|
const _AUDIBLE = 'audible'; |
|
198
|
|
|
const _AUDIO_DESCRIPTION = 'audio-description'; |
|
199
|
|
|
const _AUTOPREFIXER = 'autoprefixer'; |
|
200
|
|
|
const _AVIANEX = 'avianex'; |
|
201
|
|
|
const _AVIATO = 'aviato'; |
|
202
|
|
|
const _AWARD = 'award'; |
|
203
|
|
|
const _AWS = 'aws'; |
|
204
|
|
|
const _BABY = 'baby'; |
|
205
|
|
|
const _BABY_CARRIAGE = 'baby-carriage'; |
|
206
|
|
|
const _BACKSPACE = 'backspace'; |
|
207
|
|
|
const _BACKWARD = 'backward'; |
|
208
|
|
|
const _BACON = 'bacon'; |
|
209
|
|
|
const _BALANCE_SCALE = 'balance-scale'; |
|
210
|
|
|
const _BALANCE_SCALE_LEFT = 'balance-scale-left'; |
|
211
|
|
|
const _BALANCE_SCALE_RIGHT = 'balance-scale-right'; |
|
212
|
|
|
const _BAN = 'ban'; |
|
213
|
|
|
const _BAND_AID = 'band-aid'; |
|
214
|
|
|
const _BANDCAMP = 'bandcamp'; |
|
215
|
|
|
const _BARCODE = 'barcode'; |
|
216
|
|
|
const _BARS = 'bars'; |
|
217
|
|
|
const _BASEBALL_BALL = 'baseball-ball'; |
|
218
|
|
|
const _BASKETBALL_BALL = 'basketball-ball'; |
|
219
|
|
|
const _BATH = 'bath'; |
|
220
|
|
|
const _BATTERY_EMPTY = 'battery-empty'; |
|
221
|
|
|
const _BATTERY_FULL = 'battery-full'; |
|
222
|
|
|
const _BATTERY_HALF = 'battery-half'; |
|
223
|
|
|
const _BATTERY_QUARTER = 'battery-quarter'; |
|
224
|
|
|
const _BATTERY_THREE_QUARTERS = 'battery-three-quarters'; |
|
225
|
|
|
const _BATTLE_NET = 'battle-net'; |
|
226
|
|
|
const _BED = 'bed'; |
|
227
|
|
|
const _BEER = 'beer'; |
|
228
|
|
|
const _BEHANCE = 'behance'; |
|
229
|
|
|
const _BEHANCE_SQUARE = 'behance-square'; |
|
230
|
|
|
const _BELL = 'bell'; |
|
231
|
|
|
const _BELL_SLASH = 'bell-slash'; |
|
232
|
|
|
const _BEZIER_CURVE = 'bezier-curve'; |
|
233
|
|
|
const _BIBLE = 'bible'; |
|
234
|
|
|
const _BICYCLE = 'bicycle'; |
|
235
|
|
|
const _BIKING = 'biking'; |
|
236
|
|
|
const _BIMOBJECT = 'bimobject'; |
|
237
|
|
|
const _BINOCULARS = 'binoculars'; |
|
238
|
|
|
const _BIOHAZARD = 'biohazard'; |
|
239
|
|
|
const _BIRTHDAY_CAKE = 'birthday-cake'; |
|
240
|
|
|
const _BITBUCKET = 'bitbucket'; |
|
241
|
|
|
const _BITCOIN = 'bitcoin'; |
|
242
|
|
|
const _BITY = 'bity'; |
|
243
|
|
|
const _BLACK_TIE = 'black-tie'; |
|
244
|
|
|
const _BLACKBERRY = 'blackberry'; |
|
245
|
|
|
const _BLENDER = 'blender'; |
|
246
|
|
|
const _BLENDER_PHONE = 'blender-phone'; |
|
247
|
|
|
const _BLIND = 'blind'; |
|
248
|
|
|
const _BLOG = 'blog'; |
|
249
|
|
|
const _BLOGGER = 'blogger'; |
|
250
|
|
|
const _BLOGGER_B = 'blogger-b'; |
|
251
|
|
|
const _BLUETOOTH = 'bluetooth'; |
|
252
|
|
|
const _BLUETOOTH_B = 'bluetooth-b'; |
|
253
|
|
|
const _BOLD = 'bold'; |
|
254
|
|
|
const _BOLT = 'bolt'; |
|
255
|
|
|
const _BOMB = 'bomb'; |
|
256
|
|
|
const _BONE = 'bone'; |
|
257
|
|
|
const _BONG = 'bong'; |
|
258
|
|
|
const _BOOK = 'book'; |
|
259
|
|
|
const _BOOK_DEAD = 'book-dead'; |
|
260
|
|
|
const _BOOK_MEDICAL = 'book-medical'; |
|
261
|
|
|
const _BOOK_OPEN = 'book-open'; |
|
262
|
|
|
const _BOOK_READER = 'book-reader'; |
|
263
|
|
|
const _BOOKMARK = 'bookmark'; |
|
264
|
|
|
const _BOOTSTRAP = 'bootstrap'; |
|
265
|
|
|
const _BORDER_ALL = 'border-all'; |
|
266
|
|
|
const _BORDER_NONE = 'border-none'; |
|
267
|
|
|
const _BORDER_STYLE = 'border-style'; |
|
268
|
|
|
const _BOWLING_BALL = 'bowling-ball'; |
|
269
|
|
|
const _BOX = 'box'; |
|
270
|
|
|
const _BOX_OPEN = 'box-open'; |
|
271
|
|
|
const _BOXES = 'boxes'; |
|
272
|
|
|
const _BRAILLE = 'braille'; |
|
273
|
|
|
const _BRAIN = 'brain'; |
|
274
|
|
|
const _BREAD_SLICE = 'bread-slice'; |
|
275
|
|
|
const _BRIEFCASE = 'briefcase'; |
|
276
|
|
|
const _BRIEFCASE_MEDICAL = 'briefcase-medical'; |
|
277
|
|
|
const _BROADCAST_TOWER = 'broadcast-tower'; |
|
278
|
|
|
const _BROOM = 'broom'; |
|
279
|
|
|
const _BRUSH = 'brush'; |
|
280
|
|
|
const _BTC = 'btc'; |
|
281
|
|
|
const _BUFFER = 'buffer'; |
|
282
|
|
|
const _BUG = 'bug'; |
|
283
|
|
|
const _BUILDING = 'building'; |
|
284
|
|
|
const _BULLHORN = 'bullhorn'; |
|
285
|
|
|
const _BULLSEYE = 'bullseye'; |
|
286
|
|
|
const _BURN = 'burn'; |
|
287
|
|
|
const _BUROMOBELEXPERTE = 'buromobelexperte'; |
|
288
|
|
|
const _BUS = 'bus'; |
|
289
|
|
|
const _BUS_ALT = 'bus-alt'; |
|
290
|
|
|
const _BUSINESS_TIME = 'business-time'; |
|
291
|
|
|
const _BUY_N_LARGE = 'buy-n-large'; |
|
292
|
|
|
const _BUYSELLADS = 'buysellads'; |
|
293
|
|
|
const _CALCULATOR = 'calculator'; |
|
294
|
|
|
const _CALENDAR = 'calendar'; |
|
295
|
|
|
const _CALENDAR_ALT = 'calendar-alt'; |
|
296
|
|
|
const _CALENDAR_CHECK = 'calendar-check'; |
|
297
|
|
|
const _CALENDAR_DAY = 'calendar-day'; |
|
298
|
|
|
const _CALENDAR_MINUS = 'calendar-minus'; |
|
299
|
|
|
const _CALENDAR_PLUS = 'calendar-plus'; |
|
300
|
|
|
const _CALENDAR_TIMES = 'calendar-times'; |
|
301
|
|
|
const _CALENDAR_WEEK = 'calendar-week'; |
|
302
|
|
|
const _CAMERA = 'camera'; |
|
303
|
|
|
const _CAMERA_RETRO = 'camera-retro'; |
|
304
|
|
|
const _CAMPGROUND = 'campground'; |
|
305
|
|
|
const _CANADIAN_MAPLE_LEAF = 'canadian-maple-leaf'; |
|
306
|
|
|
const _CANDY_CANE = 'candy-cane'; |
|
307
|
|
|
const _CANNABIS = 'cannabis'; |
|
308
|
|
|
const _CAPSULES = 'capsules'; |
|
309
|
|
|
const _CAR = 'car'; |
|
310
|
|
|
const _CAR_ALT = 'car-alt'; |
|
311
|
|
|
const _CAR_BATTERY = 'car-battery'; |
|
312
|
|
|
const _CAR_CRASH = 'car-crash'; |
|
313
|
|
|
const _CAR_SIDE = 'car-side'; |
|
314
|
|
|
const _CARET_DOWN = 'caret-down'; |
|
315
|
|
|
const _CARET_LEFT = 'caret-left'; |
|
316
|
|
|
const _CARET_RIGHT = 'caret-right'; |
|
317
|
|
|
const _CARET_SQUARE_DOWN = 'caret-square-down'; |
|
318
|
|
|
const _CARET_SQUARE_LEFT = 'caret-square-left'; |
|
319
|
|
|
const _CARET_SQUARE_RIGHT = 'caret-square-right'; |
|
320
|
|
|
const _CARET_SQUARE_UP = 'caret-square-up'; |
|
321
|
|
|
const _CARET_UP = 'caret-up'; |
|
322
|
|
|
const _CARROT = 'carrot'; |
|
323
|
|
|
const _CART_ARROW_DOWN = 'cart-arrow-down'; |
|
324
|
|
|
const _CART_PLUS = 'cart-plus'; |
|
325
|
|
|
const _CASH_REGISTER = 'cash-register'; |
|
326
|
|
|
const _CAT = 'cat'; |
|
327
|
|
|
const _CC_AMAZON_PAY = 'cc-amazon-pay'; |
|
328
|
|
|
const _CC_AMEX = 'cc-amex'; |
|
329
|
|
|
const _CC_APPLE_PAY = 'cc-apple-pay'; |
|
330
|
|
|
const _CC_DINERS_CLUB = 'cc-diners-club'; |
|
331
|
|
|
const _CC_DISCOVER = 'cc-discover'; |
|
332
|
|
|
const _CC_JCB = 'cc-jcb'; |
|
333
|
|
|
const _CC_MASTERCARD = 'cc-mastercard'; |
|
334
|
|
|
const _CC_PAYPAL = 'cc-paypal'; |
|
335
|
|
|
const _CC_STRIPE = 'cc-stripe'; |
|
336
|
|
|
const _CC_VISA = 'cc-visa'; |
|
337
|
|
|
const _CENTERCODE = 'centercode'; |
|
338
|
|
|
const _CENTOS = 'centos'; |
|
339
|
|
|
const _CERTIFICATE = 'certificate'; |
|
340
|
|
|
const _CHAIR = 'chair'; |
|
341
|
|
|
const _CHALKBOARD = 'chalkboard'; |
|
342
|
|
|
const _CHALKBOARD_TEACHER = 'chalkboard-teacher'; |
|
343
|
|
|
const _CHARGING_STATION = 'charging-station'; |
|
344
|
|
|
const _CHART_AREA = 'chart-area'; |
|
345
|
|
|
const _CHART_BAR = 'chart-bar'; |
|
346
|
|
|
const _CHART_LINE = 'chart-line'; |
|
347
|
|
|
const _CHART_PIE = 'chart-pie'; |
|
348
|
|
|
const _CHECK = 'check'; |
|
349
|
|
|
const _CHECK_CIRCLE = 'check-circle'; |
|
350
|
|
|
const _CHECK_DOUBLE = 'check-double'; |
|
351
|
|
|
const _CHECK_SQUARE = 'check-square'; |
|
352
|
|
|
const _CHEESE = 'cheese'; |
|
353
|
|
|
const _CHESS = 'chess'; |
|
354
|
|
|
const _CHESS_BISHOP = 'chess-bishop'; |
|
355
|
|
|
const _CHESS_BOARD = 'chess-board'; |
|
356
|
|
|
const _CHESS_KING = 'chess-king'; |
|
357
|
|
|
const _CHESS_KNIGHT = 'chess-knight'; |
|
358
|
|
|
const _CHESS_PAWN = 'chess-pawn'; |
|
359
|
|
|
const _CHESS_QUEEN = 'chess-queen'; |
|
360
|
|
|
const _CHESS_ROOK = 'chess-rook'; |
|
361
|
|
|
const _CHEVRON_CIRCLE_DOWN = 'chevron-circle-down'; |
|
362
|
|
|
const _CHEVRON_CIRCLE_LEFT = 'chevron-circle-left'; |
|
363
|
|
|
const _CHEVRON_CIRCLE_RIGHT = 'chevron-circle-right'; |
|
364
|
|
|
const _CHEVRON_CIRCLE_UP = 'chevron-circle-up'; |
|
365
|
|
|
const _CHEVRON_DOWN = 'chevron-down'; |
|
366
|
|
|
const _CHEVRON_LEFT = 'chevron-left'; |
|
367
|
|
|
const _CHEVRON_RIGHT = 'chevron-right'; |
|
368
|
|
|
const _CHEVRON_UP = 'chevron-up'; |
|
369
|
|
|
const _CHILD = 'child'; |
|
370
|
|
|
const _CHROME = 'chrome'; |
|
371
|
|
|
const _CHROMECAST = 'chromecast'; |
|
372
|
|
|
const _CHURCH = 'church'; |
|
373
|
|
|
const _CIRCLE = 'circle'; |
|
374
|
|
|
const _CIRCLE_NOTCH = 'circle-notch'; |
|
375
|
|
|
const _CITY = 'city'; |
|
376
|
|
|
const _CLINIC_MEDICAL = 'clinic-medical'; |
|
377
|
|
|
const _CLIPBOARD = 'clipboard'; |
|
378
|
|
|
const _CLIPBOARD_CHECK = 'clipboard-check'; |
|
379
|
|
|
const _CLIPBOARD_LIST = 'clipboard-list'; |
|
380
|
|
|
const _CLOCK = 'clock'; |
|
381
|
|
|
const _CLONE = 'clone'; |
|
382
|
|
|
const _CLOSED_CAPTIONING = 'closed-captioning'; |
|
383
|
|
|
const _CLOUD = 'cloud'; |
|
384
|
|
|
const _CLOUD_DOWNLOAD_ALT = 'cloud-download-alt'; |
|
385
|
|
|
const _CLOUD_MEATBALL = 'cloud-meatball'; |
|
386
|
|
|
const _CLOUD_MOON = 'cloud-moon'; |
|
387
|
|
|
const _CLOUD_MOON_RAIN = 'cloud-moon-rain'; |
|
388
|
|
|
const _CLOUD_RAIN = 'cloud-rain'; |
|
389
|
|
|
const _CLOUD_SHOWERS_HEAVY = 'cloud-showers-heavy'; |
|
390
|
|
|
const _CLOUD_SUN = 'cloud-sun'; |
|
391
|
|
|
const _CLOUD_SUN_RAIN = 'cloud-sun-rain'; |
|
392
|
|
|
const _CLOUD_UPLOAD_ALT = 'cloud-upload-alt'; |
|
393
|
|
|
const _CLOUDSCALE = 'cloudscale'; |
|
394
|
|
|
const _CLOUDSMITH = 'cloudsmith'; |
|
395
|
|
|
const _CLOUDVERSIFY = 'cloudversify'; |
|
396
|
|
|
const _COCKTAIL = 'cocktail'; |
|
397
|
|
|
const _CODE = 'code'; |
|
398
|
|
|
const _CODE_BRANCH = 'code-branch'; |
|
399
|
|
|
const _CODEPEN = 'codepen'; |
|
400
|
|
|
const _CODIEPIE = 'codiepie'; |
|
401
|
|
|
const _COFFEE = 'coffee'; |
|
402
|
|
|
const _COG = 'cog'; |
|
403
|
|
|
const _COGS = 'cogs'; |
|
404
|
|
|
const _COINS = 'coins'; |
|
405
|
|
|
const _COLUMNS = 'columns'; |
|
406
|
|
|
const _COMMENT = 'comment'; |
|
407
|
|
|
const _COMMENT_ALT = 'comment-alt'; |
|
408
|
|
|
const _COMMENT_DOLLAR = 'comment-dollar'; |
|
409
|
|
|
const _COMMENT_DOTS = 'comment-dots'; |
|
410
|
|
|
const _COMMENT_MEDICAL = 'comment-medical'; |
|
411
|
|
|
const _COMMENT_SLASH = 'comment-slash'; |
|
412
|
|
|
const _COMMENTS = 'comments'; |
|
413
|
|
|
const _COMMENTS_DOLLAR = 'comments-dollar'; |
|
414
|
|
|
const _COMPACT_DISC = 'compact-disc'; |
|
415
|
|
|
const _COMPASS = 'compass'; |
|
416
|
|
|
const _COMPRESS = 'compress'; |
|
417
|
|
|
const _COMPRESS_ARROWS_ALT = 'compress-arrows-alt'; |
|
418
|
|
|
const _CONCIERGE_BELL = 'concierge-bell'; |
|
419
|
|
|
const _CONFLUENCE = 'confluence'; |
|
420
|
|
|
const _CONNECTDEVELOP = 'connectdevelop'; |
|
421
|
|
|
const _CONTAO = 'contao'; |
|
422
|
|
|
const _COOKIE = 'cookie'; |
|
423
|
|
|
const _COOKIE_BITE = 'cookie-bite'; |
|
424
|
|
|
const _COPY = 'copy'; |
|
425
|
|
|
const _COPYRIGHT = 'copyright'; |
|
426
|
|
|
const _COTTON_BUREAU = 'cotton-bureau'; |
|
427
|
|
|
const _COUCH = 'couch'; |
|
428
|
|
|
const _CPANEL = 'cpanel'; |
|
429
|
|
|
const _CREATIVE_COMMONS = 'creative-commons'; |
|
430
|
|
|
const _CREATIVE_COMMONS_BY = 'creative-commons-by'; |
|
431
|
|
|
const _CREATIVE_COMMONS_NC = 'creative-commons-nc'; |
|
432
|
|
|
const _CREATIVE_COMMONS_NC_EU = 'creative-commons-nc-eu'; |
|
433
|
|
|
const _CREATIVE_COMMONS_NC_JP = 'creative-commons-nc-jp'; |
|
434
|
|
|
const _CREATIVE_COMMONS_ND = 'creative-commons-nd'; |
|
435
|
|
|
const _CREATIVE_COMMONS_PD = 'creative-commons-pd'; |
|
436
|
|
|
const _CREATIVE_COMMONS_PD_ALT = 'creative-commons-pd-alt'; |
|
437
|
|
|
const _CREATIVE_COMMONS_REMIX = 'creative-commons-remix'; |
|
438
|
|
|
const _CREATIVE_COMMONS_SA = 'creative-commons-sa'; |
|
439
|
|
|
const _CREATIVE_COMMONS_SAMPLING = 'creative-commons-sampling'; |
|
440
|
|
|
const _CREATIVE_COMMONS_SAMPLING_PLUS = 'creative-commons-sampling-plus'; |
|
441
|
|
|
const _CREATIVE_COMMONS_SHARE = 'creative-commons-share'; |
|
442
|
|
|
const _CREATIVE_COMMONS_ZERO = 'creative-commons-zero'; |
|
443
|
|
|
const _CREDIT_CARD = 'credit-card'; |
|
444
|
|
|
const _CRITICAL_ROLE = 'critical-role'; |
|
445
|
|
|
const _CROP = 'crop'; |
|
446
|
|
|
const _CROP_ALT = 'crop-alt'; |
|
447
|
|
|
const _CROSS = 'cross'; |
|
448
|
|
|
const _CROSSHAIRS = 'crosshairs'; |
|
449
|
|
|
const _CROW = 'crow'; |
|
450
|
|
|
const _CROWN = 'crown'; |
|
451
|
|
|
const _CRUTCH = 'crutch'; |
|
452
|
|
|
const _CSS3 = 'css3'; |
|
453
|
|
|
const _CSS3_ALT = 'css3-alt'; |
|
454
|
|
|
const _CUBE = 'cube'; |
|
455
|
|
|
const _CUBES = 'cubes'; |
|
456
|
|
|
const _CUT = 'cut'; |
|
457
|
|
|
const _CUTTLEFISH = 'cuttlefish'; |
|
458
|
|
|
const _D_AND_D = 'd-and-d'; |
|
459
|
|
|
const _D_AND_D_BEYOND = 'd-and-d-beyond'; |
|
460
|
|
|
const _DASHCUBE = 'dashcube'; |
|
461
|
|
|
const _DATABASE = 'database'; |
|
462
|
|
|
const _DEAF = 'deaf'; |
|
463
|
|
|
const _DELICIOUS = 'delicious'; |
|
464
|
|
|
const _DEMOCRAT = 'democrat'; |
|
465
|
|
|
const _DEPLOYDOG = 'deploydog'; |
|
466
|
|
|
const _DESKPRO = 'deskpro'; |
|
467
|
|
|
const _DESKTOP = 'desktop'; |
|
468
|
|
|
const _DEV = 'dev'; |
|
469
|
|
|
const _DEVIANTART = 'deviantart'; |
|
470
|
|
|
const _DHARMACHAKRA = 'dharmachakra'; |
|
471
|
|
|
const _DHL = 'dhl'; |
|
472
|
|
|
const _DIAGNOSES = 'diagnoses'; |
|
473
|
|
|
const _DIASPORA = 'diaspora'; |
|
474
|
|
|
const _DICE = 'dice'; |
|
475
|
|
|
const _DICE_D20 = 'dice-d20'; |
|
476
|
|
|
const _DICE_D6 = 'dice-d6'; |
|
477
|
|
|
const _DICE_FIVE = 'dice-five'; |
|
478
|
|
|
const _DICE_FOUR = 'dice-four'; |
|
479
|
|
|
const _DICE_ONE = 'dice-one'; |
|
480
|
|
|
const _DICE_SIX = 'dice-six'; |
|
481
|
|
|
const _DICE_THREE = 'dice-three'; |
|
482
|
|
|
const _DICE_TWO = 'dice-two'; |
|
483
|
|
|
const _DIGG = 'digg'; |
|
484
|
|
|
const _DIGITAL_OCEAN = 'digital-ocean'; |
|
485
|
|
|
const _DIGITAL_TACHOGRAPH = 'digital-tachograph'; |
|
486
|
|
|
const _DIRECTIONS = 'directions'; |
|
487
|
|
|
const _DISCORD = 'discord'; |
|
488
|
|
|
const _DISCOURSE = 'discourse'; |
|
489
|
|
|
const _DIVIDE = 'divide'; |
|
490
|
|
|
const _DIZZY = 'dizzy'; |
|
491
|
|
|
const _DNA = 'dna'; |
|
492
|
|
|
const _DOCHUB = 'dochub'; |
|
493
|
|
|
const _DOCKER = 'docker'; |
|
494
|
|
|
const _DOG = 'dog'; |
|
495
|
|
|
const _DOLLAR_SIGN = 'dollar-sign'; |
|
496
|
|
|
const _DOLLY = 'dolly'; |
|
497
|
|
|
const _DOLLY_FLATBED = 'dolly-flatbed'; |
|
498
|
|
|
const _DONATE = 'donate'; |
|
499
|
|
|
const _DOOR_CLOSED = 'door-closed'; |
|
500
|
|
|
const _DOOR_OPEN = 'door-open'; |
|
501
|
|
|
const _DOT_CIRCLE = 'dot-circle'; |
|
502
|
|
|
const _DOVE = 'dove'; |
|
503
|
|
|
const _DOWNLOAD = 'download'; |
|
504
|
|
|
const _DRAFT2DIGITAL = 'draft2digital'; |
|
505
|
|
|
const _DRAFTING_COMPASS = 'drafting-compass'; |
|
506
|
|
|
const _DRAGON = 'dragon'; |
|
507
|
|
|
const _DRAW_POLYGON = 'draw-polygon'; |
|
508
|
|
|
const _DRIBBBLE = 'dribbble'; |
|
509
|
|
|
const _DRIBBBLE_SQUARE = 'dribbble-square'; |
|
510
|
|
|
const _DROPBOX = 'dropbox'; |
|
511
|
|
|
const _DRUM = 'drum'; |
|
512
|
|
|
const _DRUM_STEELPAN = 'drum-steelpan'; |
|
513
|
|
|
const _DRUMSTICK_BITE = 'drumstick-bite'; |
|
514
|
|
|
const _DRUPAL = 'drupal'; |
|
515
|
|
|
const _DUMBBELL = 'dumbbell'; |
|
516
|
|
|
const _DUMPSTER = 'dumpster'; |
|
517
|
|
|
const _DUMPSTER_FIRE = 'dumpster-fire'; |
|
518
|
|
|
const _DUNGEON = 'dungeon'; |
|
519
|
|
|
const _DYALOG = 'dyalog'; |
|
520
|
|
|
const _EARLYBIRDS = 'earlybirds'; |
|
521
|
|
|
const _EBAY = 'ebay'; |
|
522
|
|
|
const _EDGE = 'edge'; |
|
523
|
|
|
const _EDIT = 'edit'; |
|
524
|
|
|
const _EGG = 'egg'; |
|
525
|
|
|
const _EJECT = 'eject'; |
|
526
|
|
|
const _ELEMENTOR = 'elementor'; |
|
527
|
|
|
const _ELLIPSIS_H = 'ellipsis-h'; |
|
528
|
|
|
const _ELLIPSIS_V = 'ellipsis-v'; |
|
529
|
|
|
const _ELLO = 'ello'; |
|
530
|
|
|
const _EMBER = 'ember'; |
|
531
|
|
|
const _EMPIRE = 'empire'; |
|
532
|
|
|
const _ENVELOPE = 'envelope'; |
|
533
|
|
|
const _ENVELOPE_OPEN = 'envelope-open'; |
|
534
|
|
|
const _ENVELOPE_OPEN_TEXT = 'envelope-open-text'; |
|
535
|
|
|
const _ENVELOPE_SQUARE = 'envelope-square'; |
|
536
|
|
|
const _ENVIRA = 'envira'; |
|
537
|
|
|
const _EQUALS = 'equals'; |
|
538
|
|
|
const _ERASER = 'eraser'; |
|
539
|
|
|
const _ERLANG = 'erlang'; |
|
540
|
|
|
const _ETHEREUM = 'ethereum'; |
|
541
|
|
|
const _ETHERNET = 'ethernet'; |
|
542
|
|
|
const _ETSY = 'etsy'; |
|
543
|
|
|
const _EURO_SIGN = 'euro-sign'; |
|
544
|
|
|
const _EVERNOTE = 'evernote'; |
|
545
|
|
|
const _EXCHANGE_ALT = 'exchange-alt'; |
|
546
|
|
|
const _EXCLAMATION = 'exclamation'; |
|
547
|
|
|
const _EXCLAMATION_CIRCLE = 'exclamation-circle'; |
|
548
|
|
|
const _EXCLAMATION_TRIANGLE = 'exclamation-triangle'; |
|
549
|
|
|
const _EXPAND = 'expand'; |
|
550
|
|
|
const _EXPAND_ARROWS_ALT = 'expand-arrows-alt'; |
|
551
|
|
|
const _EXPEDITEDSSL = 'expeditedssl'; |
|
552
|
|
|
const _EXTERNAL_LINK_ALT = 'external-link-alt'; |
|
553
|
|
|
const _EXTERNAL_LINK_SQUARE_ALT = 'external-link-square-alt'; |
|
554
|
|
|
const _EYE = 'eye'; |
|
555
|
|
|
const _EYE_DROPPER = 'eye-dropper'; |
|
556
|
|
|
const _EYE_SLASH = 'eye-slash'; |
|
557
|
|
|
const _FACEBOOK = 'facebook'; |
|
558
|
|
|
const _FACEBOOK_F = 'facebook-f'; |
|
559
|
|
|
const _FACEBOOK_MESSENGER = 'facebook-messenger'; |
|
560
|
|
|
const _FACEBOOK_SQUARE = 'facebook-square'; |
|
561
|
|
|
const _FAN = 'fan'; |
|
562
|
|
|
const _FANTASY_FLIGHT_GAMES = 'fantasy-flight-games'; |
|
563
|
|
|
const _FAST_BACKWARD = 'fast-backward'; |
|
564
|
|
|
const _FAST_FORWARD = 'fast-forward'; |
|
565
|
|
|
const _FAX = 'fax'; |
|
566
|
|
|
const _FEATHER = 'feather'; |
|
567
|
|
|
const _FEATHER_ALT = 'feather-alt'; |
|
568
|
|
|
const _FEDEX = 'fedex'; |
|
569
|
|
|
const _FEDORA = 'fedora'; |
|
570
|
|
|
const _FEMALE = 'female'; |
|
571
|
|
|
const _FIGHTER_JET = 'fighter-jet'; |
|
572
|
|
|
const _FIGMA = 'figma'; |
|
573
|
|
|
const _FILE = 'file'; |
|
574
|
|
|
const _FILE_ALT = 'file-alt'; |
|
575
|
|
|
const _FILE_ARCHIVE = 'file-archive'; |
|
576
|
|
|
const _FILE_AUDIO = 'file-audio'; |
|
577
|
|
|
const _FILE_CODE = 'file-code'; |
|
578
|
|
|
const _FILE_CONTRACT = 'file-contract'; |
|
579
|
|
|
const _FILE_CSV = 'file-csv'; |
|
580
|
|
|
const _FILE_DOWNLOAD = 'file-download'; |
|
581
|
|
|
const _FILE_EXCEL = 'file-excel'; |
|
582
|
|
|
const _FILE_EXPORT = 'file-export'; |
|
583
|
|
|
const _FILE_IMAGE = 'file-image'; |
|
584
|
|
|
const _FILE_IMPORT = 'file-import'; |
|
585
|
|
|
const _FILE_INVOICE = 'file-invoice'; |
|
586
|
|
|
const _FILE_INVOICE_DOLLAR = 'file-invoice-dollar'; |
|
587
|
|
|
const _FILE_MEDICAL = 'file-medical'; |
|
588
|
|
|
const _FILE_MEDICAL_ALT = 'file-medical-alt'; |
|
589
|
|
|
const _FILE_PDF = 'file-pdf'; |
|
590
|
|
|
const _FILE_POWERPOINT = 'file-powerpoint'; |
|
591
|
|
|
const _FILE_PRESCRIPTION = 'file-prescription'; |
|
592
|
|
|
const _FILE_SIGNATURE = 'file-signature'; |
|
593
|
|
|
const _FILE_UPLOAD = 'file-upload'; |
|
594
|
|
|
const _FILE_VIDEO = 'file-video'; |
|
595
|
|
|
const _FILE_WORD = 'file-word'; |
|
596
|
|
|
const _FILL = 'fill'; |
|
597
|
|
|
const _FILL_DRIP = 'fill-drip'; |
|
598
|
|
|
const _FILM = 'film'; |
|
599
|
|
|
const _FILTER = 'filter'; |
|
600
|
|
|
const _FINGERPRINT = 'fingerprint'; |
|
601
|
|
|
const _FIRE = 'fire'; |
|
602
|
|
|
const _FIRE_ALT = 'fire-alt'; |
|
603
|
|
|
const _FIRE_EXTINGUISHER = 'fire-extinguisher'; |
|
604
|
|
|
const _FIREFOX = 'firefox'; |
|
605
|
|
|
const _FIRST_AID = 'first-aid'; |
|
606
|
|
|
const _FIRST_ORDER = 'first-order'; |
|
607
|
|
|
const _FIRST_ORDER_ALT = 'first-order-alt'; |
|
608
|
|
|
const _FIRSTDRAFT = 'firstdraft'; |
|
609
|
|
|
const _FISH = 'fish'; |
|
610
|
|
|
const _FIST_RAISED = 'fist-raised'; |
|
611
|
|
|
const _FLAG = 'flag'; |
|
612
|
|
|
const _FLAG_CHECKERED = 'flag-checkered'; |
|
613
|
|
|
const _FLAG_USA = 'flag-usa'; |
|
614
|
|
|
const _FLASK = 'flask'; |
|
615
|
|
|
const _FLICKR = 'flickr'; |
|
616
|
|
|
const _FLIPBOARD = 'flipboard'; |
|
617
|
|
|
const _FLUSHED = 'flushed'; |
|
618
|
|
|
const _FLY = 'fly'; |
|
619
|
|
|
const _FOLDER = 'folder'; |
|
620
|
|
|
const _FOLDER_MINUS = 'folder-minus'; |
|
621
|
|
|
const _FOLDER_OPEN = 'folder-open'; |
|
622
|
|
|
const _FOLDER_PLUS = 'folder-plus'; |
|
623
|
|
|
const _FONT = 'font'; |
|
624
|
|
|
const _FONT_AWESOME = 'font-awesome'; |
|
625
|
|
|
const _FONT_AWESOME_ALT = 'font-awesome-alt'; |
|
626
|
|
|
const _FONT_AWESOME_FLAG = 'font-awesome-flag'; |
|
627
|
|
|
const _FONT_AWESOME_LOGO_FULL = 'font-awesome-logo-full'; |
|
628
|
|
|
const _FONTICONS = 'fonticons'; |
|
629
|
|
|
const _FONTICONS_FI = 'fonticons-fi'; |
|
630
|
|
|
const _FOOTBALL_BALL = 'football-ball'; |
|
631
|
|
|
const _FORT_AWESOME = 'fort-awesome'; |
|
632
|
|
|
const _FORT_AWESOME_ALT = 'fort-awesome-alt'; |
|
633
|
|
|
const _FORUMBEE = 'forumbee'; |
|
634
|
|
|
const _FORWARD = 'forward'; |
|
635
|
|
|
const _FOURSQUARE = 'foursquare'; |
|
636
|
|
|
const _FREE_CODE_CAMP = 'free-code-camp'; |
|
637
|
|
|
const _FREEBSD = 'freebsd'; |
|
638
|
|
|
const _FROG = 'frog'; |
|
639
|
|
|
const _FROWN = 'frown'; |
|
640
|
|
|
const _FROWN_OPEN = 'frown-open'; |
|
641
|
|
|
const _FULCRUM = 'fulcrum'; |
|
642
|
|
|
const _FUNNEL_DOLLAR = 'funnel-dollar'; |
|
643
|
|
|
const _FUTBOL = 'futbol'; |
|
644
|
|
|
const _GALACTIC_REPUBLIC = 'galactic-republic'; |
|
645
|
|
|
const _GALACTIC_SENATE = 'galactic-senate'; |
|
646
|
|
|
const _GAMEPAD = 'gamepad'; |
|
647
|
|
|
const _GAS_PUMP = 'gas-pump'; |
|
648
|
|
|
const _GAVEL = 'gavel'; |
|
649
|
|
|
const _GEM = 'gem'; |
|
650
|
|
|
const _GENDERLESS = 'genderless'; |
|
651
|
|
|
const _GET_POCKET = 'get-pocket'; |
|
652
|
|
|
const _GG = 'gg'; |
|
653
|
|
|
const _GG_CIRCLE = 'gg-circle'; |
|
654
|
|
|
const _GHOST = 'ghost'; |
|
655
|
|
|
const _GIFT = 'gift'; |
|
656
|
|
|
const _GIFTS = 'gifts'; |
|
657
|
|
|
const _GIT = 'git'; |
|
658
|
|
|
const _GIT_ALT = 'git-alt'; |
|
659
|
|
|
const _GIT_SQUARE = 'git-square'; |
|
660
|
|
|
const _GITHUB = 'github'; |
|
661
|
|
|
const _GITHUB_ALT = 'github-alt'; |
|
662
|
|
|
const _GITHUB_SQUARE = 'github-square'; |
|
663
|
|
|
const _GITKRAKEN = 'gitkraken'; |
|
664
|
|
|
const _GITLAB = 'gitlab'; |
|
665
|
|
|
const _GITTER = 'gitter'; |
|
666
|
|
|
const _GLASS_CHEERS = 'glass-cheers'; |
|
667
|
|
|
const _GLASS_MARTINI = 'glass-martini'; |
|
668
|
|
|
const _GLASS_MARTINI_ALT = 'glass-martini-alt'; |
|
669
|
|
|
const _GLASS_WHISKEY = 'glass-whiskey'; |
|
670
|
|
|
const _GLASSES = 'glasses'; |
|
671
|
|
|
const _GLIDE = 'glide'; |
|
672
|
|
|
const _GLIDE_G = 'glide-g'; |
|
673
|
|
|
const _GLOBE = 'globe'; |
|
674
|
|
|
const _GLOBE_AFRICA = 'globe-africa'; |
|
675
|
|
|
const _GLOBE_AMERICAS = 'globe-americas'; |
|
676
|
|
|
const _GLOBE_ASIA = 'globe-asia'; |
|
677
|
|
|
const _GLOBE_EUROPE = 'globe-europe'; |
|
678
|
|
|
const _GOFORE = 'gofore'; |
|
679
|
|
|
const _GOLF_BALL = 'golf-ball'; |
|
680
|
|
|
const _GOODREADS = 'goodreads'; |
|
681
|
|
|
const _GOODREADS_G = 'goodreads-g'; |
|
682
|
|
|
const _GOOGLE = 'google'; |
|
683
|
|
|
const _GOOGLE_DRIVE = 'google-drive'; |
|
684
|
|
|
const _GOOGLE_PLAY = 'google-play'; |
|
685
|
|
|
const _GOOGLE_PLUS = 'google-plus'; |
|
686
|
|
|
const _GOOGLE_PLUS_G = 'google-plus-g'; |
|
687
|
|
|
const _GOOGLE_PLUS_SQUARE = 'google-plus-square'; |
|
688
|
|
|
const _GOOGLE_WALLET = 'google-wallet'; |
|
689
|
|
|
const _GOPURAM = 'gopuram'; |
|
690
|
|
|
const _GRADUATION_CAP = 'graduation-cap'; |
|
691
|
|
|
const _GRATIPAY = 'gratipay'; |
|
692
|
|
|
const _GRAV = 'grav'; |
|
693
|
|
|
const _GREATER_THAN = 'greater-than'; |
|
694
|
|
|
const _GREATER_THAN_EQUAL = 'greater-than-equal'; |
|
695
|
|
|
const _GRIMACE = 'grimace'; |
|
696
|
|
|
const _GRIN = 'grin'; |
|
697
|
|
|
const _GRIN_ALT = 'grin-alt'; |
|
698
|
|
|
const _GRIN_BEAM = 'grin-beam'; |
|
699
|
|
|
const _GRIN_BEAM_SWEAT = 'grin-beam-sweat'; |
|
700
|
|
|
const _GRIN_HEARTS = 'grin-hearts'; |
|
701
|
|
|
const _GRIN_SQUINT = 'grin-squint'; |
|
702
|
|
|
const _GRIN_SQUINT_TEARS = 'grin-squint-tears'; |
|
703
|
|
|
const _GRIN_STARS = 'grin-stars'; |
|
704
|
|
|
const _GRIN_TEARS = 'grin-tears'; |
|
705
|
|
|
const _GRIN_TONGUE = 'grin-tongue'; |
|
706
|
|
|
const _GRIN_TONGUE_SQUINT = 'grin-tongue-squint'; |
|
707
|
|
|
const _GRIN_TONGUE_WINK = 'grin-tongue-wink'; |
|
708
|
|
|
const _GRIN_WINK = 'grin-wink'; |
|
709
|
|
|
const _GRIP_HORIZONTAL = 'grip-horizontal'; |
|
710
|
|
|
const _GRIP_LINES = 'grip-lines'; |
|
711
|
|
|
const _GRIP_LINES_VERTICAL = 'grip-lines-vertical'; |
|
712
|
|
|
const _GRIP_VERTICAL = 'grip-vertical'; |
|
713
|
|
|
const _GRIPFIRE = 'gripfire'; |
|
714
|
|
|
const _GRUNT = 'grunt'; |
|
715
|
|
|
const _GUITAR = 'guitar'; |
|
716
|
|
|
const _GULP = 'gulp'; |
|
717
|
|
|
const _H_SQUARE = 'h-square'; |
|
718
|
|
|
const _HACKER_NEWS = 'hacker-news'; |
|
719
|
|
|
const _HACKER_NEWS_SQUARE = 'hacker-news-square'; |
|
720
|
|
|
const _HACKERRANK = 'hackerrank'; |
|
721
|
|
|
const _HAMBURGER = 'hamburger'; |
|
722
|
|
|
const _HAMMER = 'hammer'; |
|
723
|
|
|
const _HAMSA = 'hamsa'; |
|
724
|
|
|
const _HAND_HOLDING = 'hand-holding'; |
|
725
|
|
|
const _HAND_HOLDING_HEART = 'hand-holding-heart'; |
|
726
|
|
|
const _HAND_HOLDING_USD = 'hand-holding-usd'; |
|
727
|
|
|
const _HAND_LIZARD = 'hand-lizard'; |
|
728
|
|
|
const _HAND_MIDDLE_FINGER = 'hand-middle-finger'; |
|
729
|
|
|
const _HAND_PAPER = 'hand-paper'; |
|
730
|
|
|
const _HAND_PEACE = 'hand-peace'; |
|
731
|
|
|
const _HAND_POINT_DOWN = 'hand-point-down'; |
|
732
|
|
|
const _HAND_POINT_LEFT = 'hand-point-left'; |
|
733
|
|
|
const _HAND_POINT_RIGHT = 'hand-point-right'; |
|
734
|
|
|
const _HAND_POINT_UP = 'hand-point-up'; |
|
735
|
|
|
const _HAND_POINTER = 'hand-pointer'; |
|
736
|
|
|
const _HAND_ROCK = 'hand-rock'; |
|
737
|
|
|
const _HAND_SCISSORS = 'hand-scissors'; |
|
738
|
|
|
const _HAND_SPOCK = 'hand-spock'; |
|
739
|
|
|
const _HANDS = 'hands'; |
|
740
|
|
|
const _HANDS_HELPING = 'hands-helping'; |
|
741
|
|
|
const _HANDSHAKE = 'handshake'; |
|
742
|
|
|
const _HANUKIAH = 'hanukiah'; |
|
743
|
|
|
const _HARD_HAT = 'hard-hat'; |
|
744
|
|
|
const _HASHTAG = 'hashtag'; |
|
745
|
|
|
const _HAT_COWBOY = 'hat-cowboy'; |
|
746
|
|
|
const _HAT_COWBOY_SIDE = 'hat-cowboy-side'; |
|
747
|
|
|
const _HAT_WIZARD = 'hat-wizard'; |
|
748
|
|
|
const _HAYKAL = 'haykal'; |
|
749
|
|
|
const _HDD = 'hdd'; |
|
750
|
|
|
const _HEADING = 'heading'; |
|
751
|
|
|
const _HEADPHONES = 'headphones'; |
|
752
|
|
|
const _HEADPHONES_ALT = 'headphones-alt'; |
|
753
|
|
|
const _HEADSET = 'headset'; |
|
754
|
|
|
const _HEART = 'heart'; |
|
755
|
|
|
const _HEART_BROKEN = 'heart-broken'; |
|
756
|
|
|
const _HEARTBEAT = 'heartbeat'; |
|
757
|
|
|
const _HELICOPTER = 'helicopter'; |
|
758
|
|
|
const _HIGHLIGHTER = 'highlighter'; |
|
759
|
|
|
const _HIKING = 'hiking'; |
|
760
|
|
|
const _HIPPO = 'hippo'; |
|
761
|
|
|
const _HIPS = 'hips'; |
|
762
|
|
|
const _HIRE_A_HELPER = 'hire-a-helper'; |
|
763
|
|
|
const _HISTORY = 'history'; |
|
764
|
|
|
const _HOCKEY_PUCK = 'hockey-puck'; |
|
765
|
|
|
const _HOLLY_BERRY = 'holly-berry'; |
|
766
|
|
|
const _HOME = 'home'; |
|
767
|
|
|
const _HOOLI = 'hooli'; |
|
768
|
|
|
const _HORNBILL = 'hornbill'; |
|
769
|
|
|
const _HORSE = 'horse'; |
|
770
|
|
|
const _HORSE_HEAD = 'horse-head'; |
|
771
|
|
|
const _HOSPITAL = 'hospital'; |
|
772
|
|
|
const _HOSPITAL_ALT = 'hospital-alt'; |
|
773
|
|
|
const _HOSPITAL_SYMBOL = 'hospital-symbol'; |
|
774
|
|
|
const _HOT_TUB = 'hot-tub'; |
|
775
|
|
|
const _HOTDOG = 'hotdog'; |
|
776
|
|
|
const _HOTEL = 'hotel'; |
|
777
|
|
|
const _HOTJAR = 'hotjar'; |
|
778
|
|
|
const _HOURGLASS = 'hourglass'; |
|
779
|
|
|
const _HOURGLASS_END = 'hourglass-end'; |
|
780
|
|
|
const _HOURGLASS_HALF = 'hourglass-half'; |
|
781
|
|
|
const _HOURGLASS_START = 'hourglass-start'; |
|
782
|
|
|
const _HOUSE_DAMAGE = 'house-damage'; |
|
783
|
|
|
const _HOUZZ = 'houzz'; |
|
784
|
|
|
const _HRYVNIA = 'hryvnia'; |
|
785
|
|
|
const _HTML5 = 'html5'; |
|
786
|
|
|
const _HUBSPOT = 'hubspot'; |
|
787
|
|
|
const _I_CURSOR = 'i-cursor'; |
|
788
|
|
|
const _ICE_CREAM = 'ice-cream'; |
|
789
|
|
|
const _ICICLES = 'icicles'; |
|
790
|
|
|
const _ICONS = 'icons'; |
|
791
|
|
|
const _ID_BADGE = 'id-badge'; |
|
792
|
|
|
const _ID_CARD = 'id-card'; |
|
793
|
|
|
const _ID_CARD_ALT = 'id-card-alt'; |
|
794
|
|
|
const _IGLOO = 'igloo'; |
|
795
|
|
|
const _IMAGE = 'image'; |
|
796
|
|
|
const _IMAGES = 'images'; |
|
797
|
|
|
const _IMDB = 'imdb'; |
|
798
|
|
|
const _INBOX = 'inbox'; |
|
799
|
|
|
const _INDENT = 'indent'; |
|
800
|
|
|
const _INDUSTRY = 'industry'; |
|
801
|
|
|
const _INFINITY = 'infinity'; |
|
802
|
|
|
const _INFO = 'info'; |
|
803
|
|
|
const _INFO_CIRCLE = 'info-circle'; |
|
804
|
|
|
const _INSTAGRAM = 'instagram'; |
|
805
|
|
|
const _INTERCOM = 'intercom'; |
|
806
|
|
|
const _INTERNET_EXPLORER = 'internet-explorer'; |
|
807
|
|
|
const _INVISION = 'invision'; |
|
808
|
|
|
const _IOXHOST = 'ioxhost'; |
|
809
|
|
|
const _ITALIC = 'italic'; |
|
810
|
|
|
const _ITCH_IO = 'itch-io'; |
|
811
|
|
|
const _ITUNES = 'itunes'; |
|
812
|
|
|
const _ITUNES_NOTE = 'itunes-note'; |
|
813
|
|
|
const _JAVA = 'java'; |
|
814
|
|
|
const _JEDI = 'jedi'; |
|
815
|
|
|
const _JEDI_ORDER = 'jedi-order'; |
|
816
|
|
|
const _JENKINS = 'jenkins'; |
|
817
|
|
|
const _JIRA = 'jira'; |
|
818
|
|
|
const _JOGET = 'joget'; |
|
819
|
|
|
const _JOINT = 'joint'; |
|
820
|
|
|
const _JOOMLA = 'joomla'; |
|
821
|
|
|
const _JOURNAL_WHILLS = 'journal-whills'; |
|
822
|
|
|
const _JS = 'js'; |
|
823
|
|
|
const _JS_SQUARE = 'js-square'; |
|
824
|
|
|
const _JSFIDDLE = 'jsfiddle'; |
|
825
|
|
|
const _KAABA = 'kaaba'; |
|
826
|
|
|
const _KAGGLE = 'kaggle'; |
|
827
|
|
|
const _KEY = 'key'; |
|
828
|
|
|
const _KEYBASE = 'keybase'; |
|
829
|
|
|
const _KEYBOARD = 'keyboard'; |
|
830
|
|
|
const _KEYCDN = 'keycdn'; |
|
831
|
|
|
const _KHANDA = 'khanda'; |
|
832
|
|
|
const _KICKSTARTER = 'kickstarter'; |
|
833
|
|
|
const _KICKSTARTER_K = 'kickstarter-k'; |
|
834
|
|
|
const _KISS = 'kiss'; |
|
835
|
|
|
const _KISS_BEAM = 'kiss-beam'; |
|
836
|
|
|
const _KISS_WINK_HEART = 'kiss-wink-heart'; |
|
837
|
|
|
const _KIWI_BIRD = 'kiwi-bird'; |
|
838
|
|
|
const _KORVUE = 'korvue'; |
|
839
|
|
|
const _LANDMARK = 'landmark'; |
|
840
|
|
|
const _LANGUAGE = 'language'; |
|
841
|
|
|
const _LAPTOP = 'laptop'; |
|
842
|
|
|
const _LAPTOP_CODE = 'laptop-code'; |
|
843
|
|
|
const _LAPTOP_MEDICAL = 'laptop-medical'; |
|
844
|
|
|
const _LARAVEL = 'laravel'; |
|
845
|
|
|
const _LASTFM = 'lastfm'; |
|
846
|
|
|
const _LASTFM_SQUARE = 'lastfm-square'; |
|
847
|
|
|
const _LAUGH = 'laugh'; |
|
848
|
|
|
const _LAUGH_BEAM = 'laugh-beam'; |
|
849
|
|
|
const _LAUGH_SQUINT = 'laugh-squint'; |
|
850
|
|
|
const _LAUGH_WINK = 'laugh-wink'; |
|
851
|
|
|
const _LAYER_GROUP = 'layer-group'; |
|
852
|
|
|
const _LEAF = 'leaf'; |
|
853
|
|
|
const _LEANPUB = 'leanpub'; |
|
854
|
|
|
const _LEMON = 'lemon'; |
|
855
|
|
|
const _LESS = 'less'; |
|
856
|
|
|
const _LESS_THAN = 'less-than'; |
|
857
|
|
|
const _LESS_THAN_EQUAL = 'less-than-equal'; |
|
858
|
|
|
const _LEVEL_DOWN_ALT = 'level-down-alt'; |
|
859
|
|
|
const _LEVEL_UP_ALT = 'level-up-alt'; |
|
860
|
|
|
const _LIFE_RING = 'life-ring'; |
|
861
|
|
|
const _LIGHTBULB = 'lightbulb'; |
|
862
|
|
|
const _LINE = 'line'; |
|
863
|
|
|
const _LINK = 'link'; |
|
864
|
|
|
const _LINKEDIN = 'linkedin'; |
|
865
|
|
|
const _LINKEDIN_IN = 'linkedin-in'; |
|
866
|
|
|
const _LINODE = 'linode'; |
|
867
|
|
|
const _LINUX = 'linux'; |
|
868
|
|
|
const _LIRA_SIGN = 'lira-sign'; |
|
869
|
|
|
const _LIST = 'list'; |
|
870
|
|
|
const _LIST_ALT = 'list-alt'; |
|
871
|
|
|
const _LIST_OL = 'list-ol'; |
|
872
|
|
|
const _LIST_UL = 'list-ul'; |
|
873
|
|
|
const _LOCATION_ARROW = 'location-arrow'; |
|
874
|
|
|
const _LOCK = 'lock'; |
|
875
|
|
|
const _LOCK_OPEN = 'lock-open'; |
|
876
|
|
|
const _LONG_ARROW_ALT_DOWN = 'long-arrow-alt-down'; |
|
877
|
|
|
const _LONG_ARROW_ALT_LEFT = 'long-arrow-alt-left'; |
|
878
|
|
|
const _LONG_ARROW_ALT_RIGHT = 'long-arrow-alt-right'; |
|
879
|
|
|
const _LONG_ARROW_ALT_UP = 'long-arrow-alt-up'; |
|
880
|
|
|
const _LOW_VISION = 'low-vision'; |
|
881
|
|
|
const _LUGGAGE_CART = 'luggage-cart'; |
|
882
|
|
|
const _LYFT = 'lyft'; |
|
883
|
|
|
const _MAGENTO = 'magento'; |
|
884
|
|
|
const _MAGIC = 'magic'; |
|
885
|
|
|
const _MAGNET = 'magnet'; |
|
886
|
|
|
const _MAIL_BULK = 'mail-bulk'; |
|
887
|
|
|
const _MAILCHIMP = 'mailchimp'; |
|
888
|
|
|
const _MALE = 'male'; |
|
889
|
|
|
const _MANDALORIAN = 'mandalorian'; |
|
890
|
|
|
const _MAP = 'map'; |
|
891
|
|
|
const _MAP_MARKED = 'map-marked'; |
|
892
|
|
|
const _MAP_MARKED_ALT = 'map-marked-alt'; |
|
893
|
|
|
const _MAP_MARKER = 'map-marker'; |
|
894
|
|
|
const _MAP_MARKER_ALT = 'map-marker-alt'; |
|
895
|
|
|
const _MAP_PIN = 'map-pin'; |
|
896
|
|
|
const _MAP_SIGNS = 'map-signs'; |
|
897
|
|
|
const _MARKDOWN = 'markdown'; |
|
898
|
|
|
const _MARKER = 'marker'; |
|
899
|
|
|
const _MARS = 'mars'; |
|
900
|
|
|
const _MARS_DOUBLE = 'mars-double'; |
|
901
|
|
|
const _MARS_STROKE = 'mars-stroke'; |
|
902
|
|
|
const _MARS_STROKE_H = 'mars-stroke-h'; |
|
903
|
|
|
const _MARS_STROKE_V = 'mars-stroke-v'; |
|
904
|
|
|
const _MASK = 'mask'; |
|
905
|
|
|
const _MASTODON = 'mastodon'; |
|
906
|
|
|
const _MAXCDN = 'maxcdn'; |
|
907
|
|
|
const _MDB = 'mdb'; |
|
908
|
|
|
const _MEDAL = 'medal'; |
|
909
|
|
|
const _MEDAPPS = 'medapps'; |
|
910
|
|
|
const _MEDIUM = 'medium'; |
|
911
|
|
|
const _MEDIUM_M = 'medium-m'; |
|
912
|
|
|
const _MEDKIT = 'medkit'; |
|
913
|
|
|
const _MEDRT = 'medrt'; |
|
914
|
|
|
const _MEETUP = 'meetup'; |
|
915
|
|
|
const _MEGAPORT = 'megaport'; |
|
916
|
|
|
const _MEH = 'meh'; |
|
917
|
|
|
const _MEH_BLANK = 'meh-blank'; |
|
918
|
|
|
const _MEH_ROLLING_EYES = 'meh-rolling-eyes'; |
|
919
|
|
|
const _MEMORY = 'memory'; |
|
920
|
|
|
const _MENDELEY = 'mendeley'; |
|
921
|
|
|
const _MENORAH = 'menorah'; |
|
922
|
|
|
const _MERCURY = 'mercury'; |
|
923
|
|
|
const _METEOR = 'meteor'; |
|
924
|
|
|
const _MICROCHIP = 'microchip'; |
|
925
|
|
|
const _MICROPHONE = 'microphone'; |
|
926
|
|
|
const _MICROPHONE_ALT = 'microphone-alt'; |
|
927
|
|
|
const _MICROPHONE_ALT_SLASH = 'microphone-alt-slash'; |
|
928
|
|
|
const _MICROPHONE_SLASH = 'microphone-slash'; |
|
929
|
|
|
const _MICROSCOPE = 'microscope'; |
|
930
|
|
|
const _MICROSOFT = 'microsoft'; |
|
931
|
|
|
const _MINUS = 'minus'; |
|
932
|
|
|
const _MINUS_CIRCLE = 'minus-circle'; |
|
933
|
|
|
const _MINUS_SQUARE = 'minus-square'; |
|
934
|
|
|
const _MITTEN = 'mitten'; |
|
935
|
|
|
const _MIX = 'mix'; |
|
936
|
|
|
const _MIXCLOUD = 'mixcloud'; |
|
937
|
|
|
const _MIZUNI = 'mizuni'; |
|
938
|
|
|
const _MOBILE = 'mobile'; |
|
939
|
|
|
const _MOBILE_ALT = 'mobile-alt'; |
|
940
|
|
|
const _MODX = 'modx'; |
|
941
|
|
|
const _MONERO = 'monero'; |
|
942
|
|
|
const _MONEY_BILL = 'money-bill'; |
|
943
|
|
|
const _MONEY_BILL_ALT = 'money-bill-alt'; |
|
944
|
|
|
const _MONEY_BILL_WAVE = 'money-bill-wave'; |
|
945
|
|
|
const _MONEY_BILL_WAVE_ALT = 'money-bill-wave-alt'; |
|
946
|
|
|
const _MONEY_CHECK = 'money-check'; |
|
947
|
|
|
const _MONEY_CHECK_ALT = 'money-check-alt'; |
|
948
|
|
|
const _MONUMENT = 'monument'; |
|
949
|
|
|
const _MOON = 'moon'; |
|
950
|
|
|
const _MORTAR_PESTLE = 'mortar-pestle'; |
|
951
|
|
|
const _MOSQUE = 'mosque'; |
|
952
|
|
|
const _MOTORCYCLE = 'motorcycle'; |
|
953
|
|
|
const _MOUNTAIN = 'mountain'; |
|
954
|
|
|
const _MOUSE = 'mouse'; |
|
955
|
|
|
const _MOUSE_POINTER = 'mouse-pointer'; |
|
956
|
|
|
const _MUG_HOT = 'mug-hot'; |
|
957
|
|
|
const _MUSIC = 'music'; |
|
958
|
|
|
const _NAPSTER = 'napster'; |
|
959
|
|
|
const _NEOS = 'neos'; |
|
960
|
|
|
const _NETWORK_WIRED = 'network-wired'; |
|
961
|
|
|
const _NEUTER = 'neuter'; |
|
962
|
|
|
const _NEWSPAPER = 'newspaper'; |
|
963
|
|
|
const _NIMBLR = 'nimblr'; |
|
964
|
|
|
const _NODE = 'node'; |
|
965
|
|
|
const _NODE_JS = 'node-js'; |
|
966
|
|
|
const _NOT_EQUAL = 'not-equal'; |
|
967
|
|
|
const _NOTES_MEDICAL = 'notes-medical'; |
|
968
|
|
|
const _NPM = 'npm'; |
|
969
|
|
|
const _NS8 = 'ns8'; |
|
970
|
|
|
const _NUTRITIONIX = 'nutritionix'; |
|
971
|
|
|
const _OBJECT_GROUP = 'object-group'; |
|
972
|
|
|
const _OBJECT_UNGROUP = 'object-ungroup'; |
|
973
|
|
|
const _ODNOKLASSNIKI = 'odnoklassniki'; |
|
974
|
|
|
const _ODNOKLASSNIKI_SQUARE = 'odnoklassniki-square'; |
|
975
|
|
|
const _OIL_CAN = 'oil-can'; |
|
976
|
|
|
const _OLD_REPUBLIC = 'old-republic'; |
|
977
|
|
|
const _OM = 'om'; |
|
978
|
|
|
const _OPENCART = 'opencart'; |
|
979
|
|
|
const _OPENID = 'openid'; |
|
980
|
|
|
const _OPERA = 'opera'; |
|
981
|
|
|
const _OPTIN_MONSTER = 'optin-monster'; |
|
982
|
|
|
const _ORCID = 'orcid'; |
|
983
|
|
|
const _OSI = 'osi'; |
|
984
|
|
|
const _OTTER = 'otter'; |
|
985
|
|
|
const _OUTDENT = 'outdent'; |
|
986
|
|
|
const _PAGE4 = 'page4'; |
|
987
|
|
|
const _PAGELINES = 'pagelines'; |
|
988
|
|
|
const _PAGER = 'pager'; |
|
989
|
|
|
const _PAINT_BRUSH = 'paint-brush'; |
|
990
|
|
|
const _PAINT_ROLLER = 'paint-roller'; |
|
991
|
|
|
const _PALETTE = 'palette'; |
|
992
|
|
|
const _PALFED = 'palfed'; |
|
993
|
|
|
const _PALLET = 'pallet'; |
|
994
|
|
|
const _PAPER_PLANE = 'paper-plane'; |
|
995
|
|
|
const _PAPERCLIP = 'paperclip'; |
|
996
|
|
|
const _PARACHUTE_BOX = 'parachute-box'; |
|
997
|
|
|
const _PARAGRAPH = 'paragraph'; |
|
998
|
|
|
const _PARKING = 'parking'; |
|
999
|
|
|
const _PASSPORT = 'passport'; |
|
1000
|
|
|
const _PASTAFARIANISM = 'pastafarianism'; |
|
1001
|
|
|
const _PASTE = 'paste'; |
|
1002
|
|
|
const _PATREON = 'patreon'; |
|
1003
|
|
|
const _PAUSE = 'pause'; |
|
1004
|
|
|
const _PAUSE_CIRCLE = 'pause-circle'; |
|
1005
|
|
|
const _PAW = 'paw'; |
|
1006
|
|
|
const _PAYPAL = 'paypal'; |
|
1007
|
|
|
const _PEACE = 'peace'; |
|
1008
|
|
|
const _PEN = 'pen'; |
|
1009
|
|
|
const _PEN_ALT = 'pen-alt'; |
|
1010
|
|
|
const _PEN_FANCY = 'pen-fancy'; |
|
1011
|
|
|
const _PEN_NIB = 'pen-nib'; |
|
1012
|
|
|
const _PEN_SQUARE = 'pen-square'; |
|
1013
|
|
|
const _PENCIL_ALT = 'pencil-alt'; |
|
1014
|
|
|
const _PENCIL_RULER = 'pencil-ruler'; |
|
1015
|
|
|
const _PENNY_ARCADE = 'penny-arcade'; |
|
1016
|
|
|
const _PEOPLE_CARRY = 'people-carry'; |
|
1017
|
|
|
const _PEPPER_HOT = 'pepper-hot'; |
|
1018
|
|
|
const _PERCENT = 'percent'; |
|
1019
|
|
|
const _PERCENTAGE = 'percentage'; |
|
1020
|
|
|
const _PERISCOPE = 'periscope'; |
|
1021
|
|
|
const _PERSON_BOOTH = 'person-booth'; |
|
1022
|
|
|
const _PHABRICATOR = 'phabricator'; |
|
1023
|
|
|
const _PHOENIX_FRAMEWORK = 'phoenix-framework'; |
|
1024
|
|
|
const _PHOENIX_SQUADRON = 'phoenix-squadron'; |
|
1025
|
|
|
const _PHONE = 'phone'; |
|
1026
|
|
|
const _PHONE_ALT = 'phone-alt'; |
|
1027
|
|
|
const _PHONE_SLASH = 'phone-slash'; |
|
1028
|
|
|
const _PHONE_SQUARE = 'phone-square'; |
|
1029
|
|
|
const _PHONE_SQUARE_ALT = 'phone-square-alt'; |
|
1030
|
|
|
const _PHONE_VOLUME = 'phone-volume'; |
|
1031
|
|
|
const _PHOTO_VIDEO = 'photo-video'; |
|
1032
|
|
|
const _PHP = 'php'; |
|
1033
|
|
|
const _PIED_PIPER = 'pied-piper'; |
|
1034
|
|
|
const _PIED_PIPER_ALT = 'pied-piper-alt'; |
|
1035
|
|
|
const _PIED_PIPER_HAT = 'pied-piper-hat'; |
|
1036
|
|
|
const _PIED_PIPER_PP = 'pied-piper-pp'; |
|
1037
|
|
|
const _PIGGY_BANK = 'piggy-bank'; |
|
1038
|
|
|
const _PILLS = 'pills'; |
|
1039
|
|
|
const _PINTEREST = 'pinterest'; |
|
1040
|
|
|
const _PINTEREST_P = 'pinterest-p'; |
|
1041
|
|
|
const _PINTEREST_SQUARE = 'pinterest-square'; |
|
1042
|
|
|
const _PIZZA_SLICE = 'pizza-slice'; |
|
1043
|
|
|
const _PLACE_OF_WORSHIP = 'place-of-worship'; |
|
1044
|
|
|
const _PLANE = 'plane'; |
|
1045
|
|
|
const _PLANE_ARRIVAL = 'plane-arrival'; |
|
1046
|
|
|
const _PLANE_DEPARTURE = 'plane-departure'; |
|
1047
|
|
|
const _PLAY = 'play'; |
|
1048
|
|
|
const _PLAY_CIRCLE = 'play-circle'; |
|
1049
|
|
|
const _PLAYSTATION = 'playstation'; |
|
1050
|
|
|
const _PLUG = 'plug'; |
|
1051
|
|
|
const _PLUS = 'plus'; |
|
1052
|
|
|
const _PLUS_CIRCLE = 'plus-circle'; |
|
1053
|
|
|
const _PLUS_SQUARE = 'plus-square'; |
|
1054
|
|
|
const _PODCAST = 'podcast'; |
|
1055
|
|
|
const _POLL = 'poll'; |
|
1056
|
|
|
const _POLL_H = 'poll-h'; |
|
1057
|
|
|
const _POO = 'poo'; |
|
1058
|
|
|
const _POO_STORM = 'poo-storm'; |
|
1059
|
|
|
const _POOP = 'poop'; |
|
1060
|
|
|
const _PORTRAIT = 'portrait'; |
|
1061
|
|
|
const _POUND_SIGN = 'pound-sign'; |
|
1062
|
|
|
const _POWER_OFF = 'power-off'; |
|
1063
|
|
|
const _PRAY = 'pray'; |
|
1064
|
|
|
const _PRAYING_HANDS = 'praying-hands'; |
|
1065
|
|
|
const _PRESCRIPTION = 'prescription'; |
|
1066
|
|
|
const _PRESCRIPTION_BOTTLE = 'prescription-bottle'; |
|
1067
|
|
|
const _PRESCRIPTION_BOTTLE_ALT = 'prescription-bottle-alt'; |
|
1068
|
|
|
const _PRINT = 'print'; |
|
1069
|
|
|
const _PROCEDURES = 'procedures'; |
|
1070
|
|
|
const _PRODUCT_HUNT = 'product-hunt'; |
|
1071
|
|
|
const _PROJECT_DIAGRAM = 'project-diagram'; |
|
1072
|
|
|
const _PUSHED = 'pushed'; |
|
1073
|
|
|
const _PUZZLE_PIECE = 'puzzle-piece'; |
|
1074
|
|
|
const _PYTHON = 'python'; |
|
1075
|
|
|
const _QQ = 'qq'; |
|
1076
|
|
|
const _QRCODE = 'qrcode'; |
|
1077
|
|
|
const _QUESTION = 'question'; |
|
1078
|
|
|
const _QUESTION_CIRCLE = 'question-circle'; |
|
1079
|
|
|
const _QUIDDITCH = 'quidditch'; |
|
1080
|
|
|
const _QUINSCAPE = 'quinscape'; |
|
1081
|
|
|
const _QUORA = 'quora'; |
|
1082
|
|
|
const _QUOTE_LEFT = 'quote-left'; |
|
1083
|
|
|
const _QUOTE_RIGHT = 'quote-right'; |
|
1084
|
|
|
const _QURAN = 'quran'; |
|
1085
|
|
|
const _R_PROJECT = 'r-project'; |
|
1086
|
|
|
const _RADIATION = 'radiation'; |
|
1087
|
|
|
const _RADIATION_ALT = 'radiation-alt'; |
|
1088
|
|
|
const _RAINBOW = 'rainbow'; |
|
1089
|
|
|
const _RANDOM = 'random'; |
|
1090
|
|
|
const _RASPBERRY_PI = 'raspberry-pi'; |
|
1091
|
|
|
const _RAVELRY = 'ravelry'; |
|
1092
|
|
|
const _REACT = 'react'; |
|
1093
|
|
|
const _REACTEUROPE = 'reacteurope'; |
|
1094
|
|
|
const _README = 'readme'; |
|
1095
|
|
|
const _REBEL = 'rebel'; |
|
1096
|
|
|
const _RECEIPT = 'receipt'; |
|
1097
|
|
|
const _RECORD_VINYL = 'record-vinyl'; |
|
1098
|
|
|
const _RECYCLE = 'recycle'; |
|
1099
|
|
|
const _RED_RIVER = 'red-river'; |
|
1100
|
|
|
const _REDDIT = 'reddit'; |
|
1101
|
|
|
const _REDDIT_ALIEN = 'reddit-alien'; |
|
1102
|
|
|
const _REDDIT_SQUARE = 'reddit-square'; |
|
1103
|
|
|
const _REDHAT = 'redhat'; |
|
1104
|
|
|
const _REDO = 'redo'; |
|
1105
|
|
|
const _REDO_ALT = 'redo-alt'; |
|
1106
|
|
|
const _REGISTERED = 'registered'; |
|
1107
|
|
|
const _REMOVE_FORMAT = 'remove-format'; |
|
1108
|
|
|
const _RENREN = 'renren'; |
|
1109
|
|
|
const _REPLY = 'reply'; |
|
1110
|
|
|
const _REPLY_ALL = 'reply-all'; |
|
1111
|
|
|
const _REPLYD = 'replyd'; |
|
1112
|
|
|
const _REPUBLICAN = 'republican'; |
|
1113
|
|
|
const _RESEARCHGATE = 'researchgate'; |
|
1114
|
|
|
const _RESOLVING = 'resolving'; |
|
1115
|
|
|
const _RESTROOM = 'restroom'; |
|
1116
|
|
|
const _RETWEET = 'retweet'; |
|
1117
|
|
|
const _REV = 'rev'; |
|
1118
|
|
|
const _RIBBON = 'ribbon'; |
|
1119
|
|
|
const _RING = 'ring'; |
|
1120
|
|
|
const _ROAD = 'road'; |
|
1121
|
|
|
const _ROBOT = 'robot'; |
|
1122
|
|
|
const _ROCKET = 'rocket'; |
|
1123
|
|
|
const _ROCKETCHAT = 'rocketchat'; |
|
1124
|
|
|
const _ROCKRMS = 'rockrms'; |
|
1125
|
|
|
const _ROUTE = 'route'; |
|
1126
|
|
|
const _RSS = 'rss'; |
|
1127
|
|
|
const _RSS_SQUARE = 'rss-square'; |
|
1128
|
|
|
const _RUBLE_SIGN = 'ruble-sign'; |
|
1129
|
|
|
const _RULER = 'ruler'; |
|
1130
|
|
|
const _RULER_COMBINED = 'ruler-combined'; |
|
1131
|
|
|
const _RULER_HORIZONTAL = 'ruler-horizontal'; |
|
1132
|
|
|
const _RULER_VERTICAL = 'ruler-vertical'; |
|
1133
|
|
|
const _RUNNING = 'running'; |
|
1134
|
|
|
const _RUPEE_SIGN = 'rupee-sign'; |
|
1135
|
|
|
const _SAD_CRY = 'sad-cry'; |
|
1136
|
|
|
const _SAD_TEAR = 'sad-tear'; |
|
1137
|
|
|
const _SAFARI = 'safari'; |
|
1138
|
|
|
const _SALESFORCE = 'salesforce'; |
|
1139
|
|
|
const _SASS = 'sass'; |
|
1140
|
|
|
const _SATELLITE = 'satellite'; |
|
1141
|
|
|
const _SATELLITE_DISH = 'satellite-dish'; |
|
1142
|
|
|
const _SAVE = 'save'; |
|
1143
|
|
|
const _SCHLIX = 'schlix'; |
|
1144
|
|
|
const _SCHOOL = 'school'; |
|
1145
|
|
|
const _SCREWDRIVER = 'screwdriver'; |
|
1146
|
|
|
const _SCRIBD = 'scribd'; |
|
1147
|
|
|
const _SCROLL = 'scroll'; |
|
1148
|
|
|
const _SD_CARD = 'sd-card'; |
|
1149
|
|
|
const _SEARCH = 'search'; |
|
1150
|
|
|
const _SEARCH_DOLLAR = 'search-dollar'; |
|
1151
|
|
|
const _SEARCH_LOCATION = 'search-location'; |
|
1152
|
|
|
const _SEARCH_MINUS = 'search-minus'; |
|
1153
|
|
|
const _SEARCH_PLUS = 'search-plus'; |
|
1154
|
|
|
const _SEARCHENGIN = 'searchengin'; |
|
1155
|
|
|
const _SEEDLING = 'seedling'; |
|
1156
|
|
|
const _SELLCAST = 'sellcast'; |
|
1157
|
|
|
const _SELLSY = 'sellsy'; |
|
1158
|
|
|
const _SERVER = 'server'; |
|
1159
|
|
|
const _SERVICESTACK = 'servicestack'; |
|
1160
|
|
|
const _SHAPES = 'shapes'; |
|
1161
|
|
|
const _SHARE = 'share'; |
|
1162
|
|
|
const _SHARE_ALT = 'share-alt'; |
|
1163
|
|
|
const _SHARE_ALT_SQUARE = 'share-alt-square'; |
|
1164
|
|
|
const _SHARE_SQUARE = 'share-square'; |
|
1165
|
|
|
const _SHEKEL_SIGN = 'shekel-sign'; |
|
1166
|
|
|
const _SHIELD_ALT = 'shield-alt'; |
|
1167
|
|
|
const _SHIP = 'ship'; |
|
1168
|
|
|
const _SHIPPING_FAST = 'shipping-fast'; |
|
1169
|
|
|
const _SHIRTSINBULK = 'shirtsinbulk'; |
|
1170
|
|
|
const _SHOE_PRINTS = 'shoe-prints'; |
|
1171
|
|
|
const _SHOPPING_BAG = 'shopping-bag'; |
|
1172
|
|
|
const _SHOPPING_BASKET = 'shopping-basket'; |
|
1173
|
|
|
const _SHOPPING_CART = 'shopping-cart'; |
|
1174
|
|
|
const _SHOPWARE = 'shopware'; |
|
1175
|
|
|
const _SHOWER = 'shower'; |
|
1176
|
|
|
const _SHUTTLE_VAN = 'shuttle-van'; |
|
1177
|
|
|
const _SIGN = 'sign'; |
|
1178
|
|
|
const _SIGN_IN_ALT = 'sign-in-alt'; |
|
1179
|
|
|
const _SIGN_LANGUAGE = 'sign-language'; |
|
1180
|
|
|
const _SIGN_OUT_ALT = 'sign-out-alt'; |
|
1181
|
|
|
const _SIGNAL = 'signal'; |
|
1182
|
|
|
const _SIGNATURE = 'signature'; |
|
1183
|
|
|
const _SIM_CARD = 'sim-card'; |
|
1184
|
|
|
const _SIMPLYBUILT = 'simplybuilt'; |
|
1185
|
|
|
const _SISTRIX = 'sistrix'; |
|
1186
|
|
|
const _SITEMAP = 'sitemap'; |
|
1187
|
|
|
const _SITH = 'sith'; |
|
1188
|
|
|
const _SKATING = 'skating'; |
|
1189
|
|
|
const _SKETCH = 'sketch'; |
|
1190
|
|
|
const _SKIING = 'skiing'; |
|
1191
|
|
|
const _SKIING_NORDIC = 'skiing-nordic'; |
|
1192
|
|
|
const _SKULL = 'skull'; |
|
1193
|
|
|
const _SKULL_CROSSBONES = 'skull-crossbones'; |
|
1194
|
|
|
const _SKYATLAS = 'skyatlas'; |
|
1195
|
|
|
const _SKYPE = 'skype'; |
|
1196
|
|
|
const _SLACK = 'slack'; |
|
1197
|
|
|
const _SLACK_HASH = 'slack-hash'; |
|
1198
|
|
|
const _SLASH = 'slash'; |
|
1199
|
|
|
const _SLEIGH = 'sleigh'; |
|
1200
|
|
|
const _SLIDERS_H = 'sliders-h'; |
|
1201
|
|
|
const _SLIDESHARE = 'slideshare'; |
|
1202
|
|
|
const _SMILE = 'smile'; |
|
1203
|
|
|
const _SMILE_BEAM = 'smile-beam'; |
|
1204
|
|
|
const _SMILE_WINK = 'smile-wink'; |
|
1205
|
|
|
const _SMOG = 'smog'; |
|
1206
|
|
|
const _SMOKING = 'smoking'; |
|
1207
|
|
|
const _SMOKING_BAN = 'smoking-ban'; |
|
1208
|
|
|
const _SMS = 'sms'; |
|
1209
|
|
|
const _SNAPCHAT = 'snapchat'; |
|
1210
|
|
|
const _SNAPCHAT_GHOST = 'snapchat-ghost'; |
|
1211
|
|
|
const _SNAPCHAT_SQUARE = 'snapchat-square'; |
|
1212
|
|
|
const _SNOWBOARDING = 'snowboarding'; |
|
1213
|
|
|
const _SNOWFLAKE = 'snowflake'; |
|
1214
|
|
|
const _SNOWMAN = 'snowman'; |
|
1215
|
|
|
const _SNOWPLOW = 'snowplow'; |
|
1216
|
|
|
const _SOCKS = 'socks'; |
|
1217
|
|
|
const _SOLAR_PANEL = 'solar-panel'; |
|
1218
|
|
|
const _SORT = 'sort'; |
|
1219
|
|
|
const _SORT_ALPHA_DOWN = 'sort-alpha-down'; |
|
1220
|
|
|
const _SORT_ALPHA_DOWN_ALT = 'sort-alpha-down-alt'; |
|
1221
|
|
|
const _SORT_ALPHA_UP = 'sort-alpha-up'; |
|
1222
|
|
|
const _SORT_ALPHA_UP_ALT = 'sort-alpha-up-alt'; |
|
1223
|
|
|
const _SORT_AMOUNT_DOWN = 'sort-amount-down'; |
|
1224
|
|
|
const _SORT_AMOUNT_DOWN_ALT = 'sort-amount-down-alt'; |
|
1225
|
|
|
const _SORT_AMOUNT_UP = 'sort-amount-up'; |
|
1226
|
|
|
const _SORT_AMOUNT_UP_ALT = 'sort-amount-up-alt'; |
|
1227
|
|
|
const _SORT_DOWN = 'sort-down'; |
|
1228
|
|
|
const _SORT_NUMERIC_DOWN = 'sort-numeric-down'; |
|
1229
|
|
|
const _SORT_NUMERIC_DOWN_ALT = 'sort-numeric-down-alt'; |
|
1230
|
|
|
const _SORT_NUMERIC_UP = 'sort-numeric-up'; |
|
1231
|
|
|
const _SORT_NUMERIC_UP_ALT = 'sort-numeric-up-alt'; |
|
1232
|
|
|
const _SORT_UP = 'sort-up'; |
|
1233
|
|
|
const _SOUNDCLOUD = 'soundcloud'; |
|
1234
|
|
|
const _SOURCETREE = 'sourcetree'; |
|
1235
|
|
|
const _SPA = 'spa'; |
|
1236
|
|
|
const _SPACE_SHUTTLE = 'space-shuttle'; |
|
1237
|
|
|
const _SPEAKAP = 'speakap'; |
|
1238
|
|
|
const _SPEAKER_DECK = 'speaker-deck'; |
|
1239
|
|
|
const _SPELL_CHECK = 'spell-check'; |
|
1240
|
|
|
const _SPIDER = 'spider'; |
|
1241
|
|
|
const _SPINNER = 'spinner'; |
|
1242
|
|
|
const _SPLOTCH = 'splotch'; |
|
1243
|
|
|
const _SPOTIFY = 'spotify'; |
|
1244
|
|
|
const _SPRAY_CAN = 'spray-can'; |
|
1245
|
|
|
const _SQUARE = 'square'; |
|
1246
|
|
|
const _SQUARE_FULL = 'square-full'; |
|
1247
|
|
|
const _SQUARE_ROOT_ALT = 'square-root-alt'; |
|
1248
|
|
|
const _SQUARESPACE = 'squarespace'; |
|
1249
|
|
|
const _STACK_EXCHANGE = 'stack-exchange'; |
|
1250
|
|
|
const _STACK_OVERFLOW = 'stack-overflow'; |
|
1251
|
|
|
const _STACKPATH = 'stackpath'; |
|
1252
|
|
|
const _STAMP = 'stamp'; |
|
1253
|
|
|
const _STAR = 'star'; |
|
1254
|
|
|
const _STAR_AND_CRESCENT = 'star-and-crescent'; |
|
1255
|
|
|
const _STAR_HALF = 'star-half'; |
|
1256
|
|
|
const _STAR_HALF_ALT = 'star-half-alt'; |
|
1257
|
|
|
const _STAR_OF_DAVID = 'star-of-david'; |
|
1258
|
|
|
const _STAR_OF_LIFE = 'star-of-life'; |
|
1259
|
|
|
const _STAYLINKED = 'staylinked'; |
|
1260
|
|
|
const _STEAM = 'steam'; |
|
1261
|
|
|
const _STEAM_SQUARE = 'steam-square'; |
|
1262
|
|
|
const _STEAM_SYMBOL = 'steam-symbol'; |
|
1263
|
|
|
const _STEP_BACKWARD = 'step-backward'; |
|
1264
|
|
|
const _STEP_FORWARD = 'step-forward'; |
|
1265
|
|
|
const _STETHOSCOPE = 'stethoscope'; |
|
1266
|
|
|
const _STICKER_MULE = 'sticker-mule'; |
|
1267
|
|
|
const _STICKY_NOTE = 'sticky-note'; |
|
1268
|
|
|
const _STOP = 'stop'; |
|
1269
|
|
|
const _STOP_CIRCLE = 'stop-circle'; |
|
1270
|
|
|
const _STOPWATCH = 'stopwatch'; |
|
1271
|
|
|
const _STORE = 'store'; |
|
1272
|
|
|
const _STORE_ALT = 'store-alt'; |
|
1273
|
|
|
const _STRAVA = 'strava'; |
|
1274
|
|
|
const _STREAM = 'stream'; |
|
1275
|
|
|
const _STREET_VIEW = 'street-view'; |
|
1276
|
|
|
const _STRIKETHROUGH = 'strikethrough'; |
|
1277
|
|
|
const _STRIPE = 'stripe'; |
|
1278
|
|
|
const _STRIPE_S = 'stripe-s'; |
|
1279
|
|
|
const _STROOPWAFEL = 'stroopwafel'; |
|
1280
|
|
|
const _STUDIOVINARI = 'studiovinari'; |
|
1281
|
|
|
const _STUMBLEUPON = 'stumbleupon'; |
|
1282
|
|
|
const _STUMBLEUPON_CIRCLE = 'stumbleupon-circle'; |
|
1283
|
|
|
const _SUBSCRIPT = 'subscript'; |
|
1284
|
|
|
const _SUBWAY = 'subway'; |
|
1285
|
|
|
const _SUITCASE = 'suitcase'; |
|
1286
|
|
|
const _SUITCASE_ROLLING = 'suitcase-rolling'; |
|
1287
|
|
|
const _SUN = 'sun'; |
|
1288
|
|
|
const _SUPERPOWERS = 'superpowers'; |
|
1289
|
|
|
const _SUPERSCRIPT = 'superscript'; |
|
1290
|
|
|
const _SUPPLE = 'supple'; |
|
1291
|
|
|
const _SURPRISE = 'surprise'; |
|
1292
|
|
|
const _SUSE = 'suse'; |
|
1293
|
|
|
const _SWATCHBOOK = 'swatchbook'; |
|
1294
|
|
|
const _SWIFT = 'swift'; |
|
1295
|
|
|
const _SWIMMER = 'swimmer'; |
|
1296
|
|
|
const _SWIMMING_POOL = 'swimming-pool'; |
|
1297
|
|
|
const _SYMFONY = 'symfony'; |
|
1298
|
|
|
const _SYNAGOGUE = 'synagogue'; |
|
1299
|
|
|
const _SYNC = 'sync'; |
|
1300
|
|
|
const _SYNC_ALT = 'sync-alt'; |
|
1301
|
|
|
const _SYRINGE = 'syringe'; |
|
1302
|
|
|
const _TABLE = 'table'; |
|
1303
|
|
|
const _TABLE_TENNIS = 'table-tennis'; |
|
1304
|
|
|
const _TABLET = 'tablet'; |
|
1305
|
|
|
const _TABLET_ALT = 'tablet-alt'; |
|
1306
|
|
|
const _TABLETS = 'tablets'; |
|
1307
|
|
|
const _TACHOMETER_ALT = 'tachometer-alt'; |
|
1308
|
|
|
const _TAG = 'tag'; |
|
1309
|
|
|
const _TAGS = 'tags'; |
|
1310
|
|
|
const _TAPE = 'tape'; |
|
1311
|
|
|
const _TASKS = 'tasks'; |
|
1312
|
|
|
const _TAXI = 'taxi'; |
|
1313
|
|
|
const _TEAMSPEAK = 'teamspeak'; |
|
1314
|
|
|
const _TEETH = 'teeth'; |
|
1315
|
|
|
const _TEETH_OPEN = 'teeth-open'; |
|
1316
|
|
|
const _TELEGRAM = 'telegram'; |
|
1317
|
|
|
const _TELEGRAM_PLANE = 'telegram-plane'; |
|
1318
|
|
|
const _TEMPERATURE_HIGH = 'temperature-high'; |
|
1319
|
|
|
const _TEMPERATURE_LOW = 'temperature-low'; |
|
1320
|
|
|
const _TENCENT_WEIBO = 'tencent-weibo'; |
|
1321
|
|
|
const _TENGE = 'tenge'; |
|
1322
|
|
|
const _TERMINAL = 'terminal'; |
|
1323
|
|
|
const _TEXT_HEIGHT = 'text-height'; |
|
1324
|
|
|
const _TEXT_WIDTH = 'text-width'; |
|
1325
|
|
|
const _TH = 'th'; |
|
1326
|
|
|
const _TH_LARGE = 'th-large'; |
|
1327
|
|
|
const _TH_LIST = 'th-list'; |
|
1328
|
|
|
const _THE_RED_YETI = 'the-red-yeti'; |
|
1329
|
|
|
const _THEATER_MASKS = 'theater-masks'; |
|
1330
|
|
|
const _THEMECO = 'themeco'; |
|
1331
|
|
|
const _THEMEISLE = 'themeisle'; |
|
1332
|
|
|
const _THERMOMETER = 'thermometer'; |
|
1333
|
|
|
const _THERMOMETER_EMPTY = 'thermometer-empty'; |
|
1334
|
|
|
const _THERMOMETER_FULL = 'thermometer-full'; |
|
1335
|
|
|
const _THERMOMETER_HALF = 'thermometer-half'; |
|
1336
|
|
|
const _THERMOMETER_QUARTER = 'thermometer-quarter'; |
|
1337
|
|
|
const _THERMOMETER_THREE_QUARTERS = 'thermometer-three-quarters'; |
|
1338
|
|
|
const _THINK_PEAKS = 'think-peaks'; |
|
1339
|
|
|
const _THUMBS_DOWN = 'thumbs-down'; |
|
1340
|
|
|
const _THUMBS_UP = 'thumbs-up'; |
|
1341
|
|
|
const _THUMBTACK = 'thumbtack'; |
|
1342
|
|
|
const _TICKET_ALT = 'ticket-alt'; |
|
1343
|
|
|
const _TIMES = 'times'; |
|
1344
|
|
|
const _TIMES_CIRCLE = 'times-circle'; |
|
1345
|
|
|
const _TINT = 'tint'; |
|
1346
|
|
|
const _TINT_SLASH = 'tint-slash'; |
|
1347
|
|
|
const _TIRED = 'tired'; |
|
1348
|
|
|
const _TOGGLE_OFF = 'toggle-off'; |
|
1349
|
|
|
const _TOGGLE_ON = 'toggle-on'; |
|
1350
|
|
|
const _TOILET = 'toilet'; |
|
1351
|
|
|
const _TOILET_PAPER = 'toilet-paper'; |
|
1352
|
|
|
const _TOOLBOX = 'toolbox'; |
|
1353
|
|
|
const _TOOLS = 'tools'; |
|
1354
|
|
|
const _TOOTH = 'tooth'; |
|
1355
|
|
|
const _TORAH = 'torah'; |
|
1356
|
|
|
const _TORII_GATE = 'torii-gate'; |
|
1357
|
|
|
const _TRACTOR = 'tractor'; |
|
1358
|
|
|
const _TRADE_FEDERATION = 'trade-federation'; |
|
1359
|
|
|
const _TRADEMARK = 'trademark'; |
|
1360
|
|
|
const _TRAFFIC_LIGHT = 'traffic-light'; |
|
1361
|
|
|
const _TRAIN = 'train'; |
|
1362
|
|
|
const _TRAM = 'tram'; |
|
1363
|
|
|
const _TRANSGENDER = 'transgender'; |
|
1364
|
|
|
const _TRANSGENDER_ALT = 'transgender-alt'; |
|
1365
|
|
|
const _TRASH = 'trash'; |
|
1366
|
|
|
const _TRASH_ALT = 'trash-alt'; |
|
1367
|
|
|
const _TRASH_RESTORE = 'trash-restore'; |
|
1368
|
|
|
const _TRASH_RESTORE_ALT = 'trash-restore-alt'; |
|
1369
|
|
|
const _TREE = 'tree'; |
|
1370
|
|
|
const _TRELLO = 'trello'; |
|
1371
|
|
|
const _TRIPADVISOR = 'tripadvisor'; |
|
1372
|
|
|
const _TROPHY = 'trophy'; |
|
1373
|
|
|
const _TRUCK = 'truck'; |
|
1374
|
|
|
const _TRUCK_LOADING = 'truck-loading'; |
|
1375
|
|
|
const _TRUCK_MONSTER = 'truck-monster'; |
|
1376
|
|
|
const _TRUCK_MOVING = 'truck-moving'; |
|
1377
|
|
|
const _TRUCK_PICKUP = 'truck-pickup'; |
|
1378
|
|
|
const _TSHIRT = 'tshirt'; |
|
1379
|
|
|
const _TTY = 'tty'; |
|
1380
|
|
|
const _TUMBLR = 'tumblr'; |
|
1381
|
|
|
const _TUMBLR_SQUARE = 'tumblr-square'; |
|
1382
|
|
|
const _TV = 'tv'; |
|
1383
|
|
|
const _TWITCH = 'twitch'; |
|
1384
|
|
|
const _TWITTER = 'twitter'; |
|
1385
|
|
|
const _TWITTER_SQUARE = 'twitter-square'; |
|
1386
|
|
|
const _TYPO3 = 'typo3'; |
|
1387
|
|
|
const _UBER = 'uber'; |
|
1388
|
|
|
const _UBUNTU = 'ubuntu'; |
|
1389
|
|
|
const _UIKIT = 'uikit'; |
|
1390
|
|
|
const _UMBRACO = 'umbraco'; |
|
1391
|
|
|
const _UMBRELLA = 'umbrella'; |
|
1392
|
|
|
const _UMBRELLA_BEACH = 'umbrella-beach'; |
|
1393
|
|
|
const _UNDERLINE = 'underline'; |
|
1394
|
|
|
const _UNDO = 'undo'; |
|
1395
|
|
|
const _UNDO_ALT = 'undo-alt'; |
|
1396
|
|
|
const _UNIREGISTRY = 'uniregistry'; |
|
1397
|
|
|
const _UNIVERSAL_ACCESS = 'universal-access'; |
|
1398
|
|
|
const _UNIVERSITY = 'university'; |
|
1399
|
|
|
const _UNLINK = 'unlink'; |
|
1400
|
|
|
const _UNLOCK = 'unlock'; |
|
1401
|
|
|
const _UNLOCK_ALT = 'unlock-alt'; |
|
1402
|
|
|
const _UNTAPPD = 'untappd'; |
|
1403
|
|
|
const _UPLOAD = 'upload'; |
|
1404
|
|
|
const _UPS = 'ups'; |
|
1405
|
|
|
const _USB = 'usb'; |
|
1406
|
|
|
const _USER = 'user'; |
|
1407
|
|
|
const _USER_ALT = 'user-alt'; |
|
1408
|
|
|
const _USER_ALT_SLASH = 'user-alt-slash'; |
|
1409
|
|
|
const _USER_ASTRONAUT = 'user-astronaut'; |
|
1410
|
|
|
const _USER_CHECK = 'user-check'; |
|
1411
|
|
|
const _USER_CIRCLE = 'user-circle'; |
|
1412
|
|
|
const _USER_CLOCK = 'user-clock'; |
|
1413
|
|
|
const _USER_COG = 'user-cog'; |
|
1414
|
|
|
const _USER_EDIT = 'user-edit'; |
|
1415
|
|
|
const _USER_FRIENDS = 'user-friends'; |
|
1416
|
|
|
const _USER_GRADUATE = 'user-graduate'; |
|
1417
|
|
|
const _USER_INJURED = 'user-injured'; |
|
1418
|
|
|
const _USER_LOCK = 'user-lock'; |
|
1419
|
|
|
const _USER_MD = 'user-md'; |
|
1420
|
|
|
const _USER_MINUS = 'user-minus'; |
|
1421
|
|
|
const _USER_NINJA = 'user-ninja'; |
|
1422
|
|
|
const _USER_NURSE = 'user-nurse'; |
|
1423
|
|
|
const _USER_PLUS = 'user-plus'; |
|
1424
|
|
|
const _USER_SECRET = 'user-secret'; |
|
1425
|
|
|
const _USER_SHIELD = 'user-shield'; |
|
1426
|
|
|
const _USER_SLASH = 'user-slash'; |
|
1427
|
|
|
const _USER_TAG = 'user-tag'; |
|
1428
|
|
|
const _USER_TIE = 'user-tie'; |
|
1429
|
|
|
const _USER_TIMES = 'user-times'; |
|
1430
|
|
|
const _USERS = 'users'; |
|
1431
|
|
|
const _USERS_COG = 'users-cog'; |
|
1432
|
|
|
const _USPS = 'usps'; |
|
1433
|
|
|
const _USSUNNAH = 'ussunnah'; |
|
1434
|
|
|
const _UTENSIL_SPOON = 'utensil-spoon'; |
|
1435
|
|
|
const _UTENSILS = 'utensils'; |
|
1436
|
|
|
const _VAADIN = 'vaadin'; |
|
1437
|
|
|
const _VECTOR_SQUARE = 'vector-square'; |
|
1438
|
|
|
const _VENUS = 'venus'; |
|
1439
|
|
|
const _VENUS_DOUBLE = 'venus-double'; |
|
1440
|
|
|
const _VENUS_MARS = 'venus-mars'; |
|
1441
|
|
|
const _VIACOIN = 'viacoin'; |
|
1442
|
|
|
const _VIADEO = 'viadeo'; |
|
1443
|
|
|
const _VIADEO_SQUARE = 'viadeo-square'; |
|
1444
|
|
|
const _VIAL = 'vial'; |
|
1445
|
|
|
const _VIALS = 'vials'; |
|
1446
|
|
|
const _VIBER = 'viber'; |
|
1447
|
|
|
const _VIDEO = 'video'; |
|
1448
|
|
|
const _VIDEO_SLASH = 'video-slash'; |
|
1449
|
|
|
const _VIHARA = 'vihara'; |
|
1450
|
|
|
const _VIMEO = 'vimeo'; |
|
1451
|
|
|
const _VIMEO_SQUARE = 'vimeo-square'; |
|
1452
|
|
|
const _VIMEO_V = 'vimeo-v'; |
|
1453
|
|
|
const _VINE = 'vine'; |
|
1454
|
|
|
const _VK = 'vk'; |
|
1455
|
|
|
const _VNV = 'vnv'; |
|
1456
|
|
|
const _VOICEMAIL = 'voicemail'; |
|
1457
|
|
|
const _VOLLEYBALL_BALL = 'volleyball-ball'; |
|
1458
|
|
|
const _VOLUME_DOWN = 'volume-down'; |
|
1459
|
|
|
const _VOLUME_MUTE = 'volume-mute'; |
|
1460
|
|
|
const _VOLUME_OFF = 'volume-off'; |
|
1461
|
|
|
const _VOLUME_UP = 'volume-up'; |
|
1462
|
|
|
const _VOTE_YEA = 'vote-yea'; |
|
1463
|
|
|
const _VR_CARDBOARD = 'vr-cardboard'; |
|
1464
|
|
|
const _VUEJS = 'vuejs'; |
|
1465
|
|
|
const _WALKING = 'walking'; |
|
1466
|
|
|
const _WALLET = 'wallet'; |
|
1467
|
|
|
const _WAREHOUSE = 'warehouse'; |
|
1468
|
|
|
const _WATER = 'water'; |
|
1469
|
|
|
const _WAVE_SQUARE = 'wave-square'; |
|
1470
|
|
|
const _WAZE = 'waze'; |
|
1471
|
|
|
const _WEEBLY = 'weebly'; |
|
1472
|
|
|
const _WEIBO = 'weibo'; |
|
1473
|
|
|
const _WEIGHT = 'weight'; |
|
1474
|
|
|
const _WEIGHT_HANGING = 'weight-hanging'; |
|
1475
|
|
|
const _WEIXIN = 'weixin'; |
|
1476
|
|
|
const _WHATSAPP = 'whatsapp'; |
|
1477
|
|
|
const _WHATSAPP_SQUARE = 'whatsapp-square'; |
|
1478
|
|
|
const _WHEELCHAIR = 'wheelchair'; |
|
1479
|
|
|
const _WHMCS = 'whmcs'; |
|
1480
|
|
|
const _WIFI = 'wifi'; |
|
1481
|
|
|
const _WIKIPEDIA_W = 'wikipedia-w'; |
|
1482
|
|
|
const _WIND = 'wind'; |
|
1483
|
|
|
const _WINDOW_CLOSE = 'window-close'; |
|
1484
|
|
|
const _WINDOW_MAXIMIZE = 'window-maximize'; |
|
1485
|
|
|
const _WINDOW_MINIMIZE = 'window-minimize'; |
|
1486
|
|
|
const _WINDOW_RESTORE = 'window-restore'; |
|
1487
|
|
|
const _WINDOWS = 'windows'; |
|
1488
|
|
|
const _WINE_BOTTLE = 'wine-bottle'; |
|
1489
|
|
|
const _WINE_GLASS = 'wine-glass'; |
|
1490
|
|
|
const _WINE_GLASS_ALT = 'wine-glass-alt'; |
|
1491
|
|
|
const _WIX = 'wix'; |
|
1492
|
|
|
const _WIZARDS_OF_THE_COAST = 'wizards-of-the-coast'; |
|
1493
|
|
|
const _WOLF_PACK_BATTALION = 'wolf-pack-battalion'; |
|
1494
|
|
|
const _WON_SIGN = 'won-sign'; |
|
1495
|
|
|
const _WORDPRESS = 'wordpress'; |
|
1496
|
|
|
const _WORDPRESS_SIMPLE = 'wordpress-simple'; |
|
1497
|
|
|
const _WPBEGINNER = 'wpbeginner'; |
|
1498
|
|
|
const _WPEXPLORER = 'wpexplorer'; |
|
1499
|
|
|
const _WPFORMS = 'wpforms'; |
|
1500
|
|
|
const _WPRESSR = 'wpressr'; |
|
1501
|
|
|
const _WRENCH = 'wrench'; |
|
1502
|
|
|
const _X_RAY = 'x-ray'; |
|
1503
|
|
|
const _XBOX = 'xbox'; |
|
1504
|
|
|
const _XING = 'xing'; |
|
1505
|
|
|
const _XING_SQUARE = 'xing-square'; |
|
1506
|
|
|
const _Y_COMBINATOR = 'y-combinator'; |
|
1507
|
|
|
const _YAHOO = 'yahoo'; |
|
1508
|
|
|
const _YAMMER = 'yammer'; |
|
1509
|
|
|
const _YANDEX = 'yandex'; |
|
1510
|
|
|
const _YANDEX_INTERNATIONAL = 'yandex-international'; |
|
1511
|
|
|
const _YARN = 'yarn'; |
|
1512
|
|
|
const _YELP = 'yelp'; |
|
1513
|
|
|
const _YEN_SIGN = 'yen-sign'; |
|
1514
|
|
|
const _YIN_YANG = 'yin-yang'; |
|
1515
|
|
|
const _YOAST = 'yoast'; |
|
1516
|
|
|
const _YOUTUBE = 'youtube'; |
|
1517
|
|
|
const _YOUTUBE_SQUARE = 'youtube-square'; |
|
1518
|
|
|
const _ZHIHU = 'zhihu'; |
|
1519
|
|
|
} |
|
1520
|
|
|
|