Orbit Fox by ThemeIsle - Version 2.6.0

Version Description

  • 2018-10-08
Download this release

Release Info

Developer codeinwp
Plugin Icon 128x128 Orbit Fox by ThemeIsle
Version 2.6.0
Comparing to
See all releases

Code changes from version 2.5.8 to 2.6.0

Files changed (24) hide show
  1. CHANGELOG.md +5 -0
  2. CONTRIBUTING.md +133 -0
  3. core/app/class-orbit-fox-global-settings.php +1 -0
  4. core/assets/css/orbit-fox-admin.css +1 -1
  5. core/includes/class-orbit-fox.php +1 -1
  6. languages/themeisle-companion.pot +355 -1447
  7. obfx_modules/gutenberg-blocks/Readme.md +10 -0
  8. obfx_modules/gutenberg-blocks/assets/fontawesome/LICENSE.txt +34 -0
  9. obfx_modules/gutenberg-blocks/assets/fontawesome/css/all.css +4886 -0
  10. obfx_modules/gutenberg-blocks/assets/fontawesome/css/all.min.css +5 -0
  11. obfx_modules/gutenberg-blocks/assets/fontawesome/css/brands.css +15 -0
  12. obfx_modules/gutenberg-blocks/assets/fontawesome/css/brands.min.css +5 -0
  13. obfx_modules/gutenberg-blocks/assets/fontawesome/css/fontawesome.css +4847 -0
  14. obfx_modules/gutenberg-blocks/assets/fontawesome/css/fontawesome.min.css +5 -0
  15. obfx_modules/gutenberg-blocks/assets/fontawesome/css/regular.css +16 -0
  16. obfx_modules/gutenberg-blocks/assets/fontawesome/css/regular.min.css +5 -0
  17. obfx_modules/gutenberg-blocks/assets/fontawesome/css/solid.css +17 -0
  18. obfx_modules/gutenberg-blocks/assets/fontawesome/css/solid.min.css +5 -0
  19. obfx_modules/gutenberg-blocks/assets/fontawesome/css/svg-with-js.css +483 -0
  20. obfx_modules/gutenberg-blocks/assets/fontawesome/css/svg-with-js.min.css +5 -0
  21. obfx_modules/gutenberg-blocks/assets/fontawesome/css/v4-shims.css +2782 -0
  22. obfx_modules/gutenberg-blocks/assets/fontawesome/css/v4-shims.min.css +5 -0
  23. obfx_modules/gutenberg-blocks/assets/fontawesome/metadata/categories.yml +1572 -0
  24. obfx_modules/gutenberg-blocks/assets/fontawesome/metadata/icons.json +10268 -0
CHANGELOG.md CHANGED
@@ -1,4 +1,9 @@
1
 
 
 
 
 
 
2
  ### v2.5.8 - 2018-09-12
3
  **Changes:**
4
  * Extend image optimization module for 50% of users.
1
 
2
+ ### v2.6.0 - 2018-10-08
3
+ **Changes:**
4
+ * Adds Gutenberg integration with various blocks.
5
+ * Adds Font Awesome, Google maps, Notice, Sharing icons, Pie charts, Plugin Card, Pricing, Testimonial and Click to Tweet Gutenberg block and Post grid block.
6
+
7
  ### v2.5.8 - 2018-09-12
8
  **Changes:**
9
  * Extend image optimization module for 50% of users.
CONTRIBUTING.md ADDED
@@ -0,0 +1,133 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Contributing
2
+
3
+ Thank you for thinking about contributing to Orbit Fox! All sorts of contributions are welcomed.
4
+
5
+ ## License
6
+
7
+ Orbit Fox is [licensed under the GPLv2+](LICENSE.txt), and all contributions to Orbit Fox will be released under the GPLv2+ license. By contributing to this repository, you agree to release your contribution under the GPLv2+ license.
8
+
9
+ ## Setting Up Local Environment
10
+
11
+ You need a WordPress Environment to run the plugin on. This project needs a lot of different packages to be installed before you can start coding, but we've made the process easier with Docker.
12
+
13
+ ### Getting Started with Docker
14
+
15
+ The quickest way to get up and running is to use the provided [Docker](https://www.docker.com/) setup which takes care of setting up the environment for you within seconds. Install docker and docker-compose by following the most recent instructions on the Docker site.
16
+
17
+ Once Docker is installed, fork Orbit Fox repository. Clone your fork of this project and enter the working directory:
18
+
19
+ ```
20
+ git clone http://github.com/YOUR-USERNAME/themeisle-companion/
21
+ cd themeisle-companion
22
+ ```
23
+
24
+ Once inside the folder, you can run the following command to start your Docker container:
25
+
26
+ ```
27
+ docker-compose up -d
28
+ ```
29
+
30
+ This will make your WordPress instance up and running at http://localhost:8888
31
+
32
+ - If you want to use a different port for your environment, then you can change it from [docker-compose.yml](docker-compose.yml) file.
33
+
34
+ - If you're developing themes, or core WordPress functionality alongside Orbit Fox, you can make the WordPress files accessible in `/themeisle-companion/wordpress/` folder in your home directory.
35
+
36
+ - If you want bash access to your environment, you can use the following command to find the ID of your Docker container:
37
+
38
+ ```
39
+ docker ps
40
+ ```
41
+
42
+ And then you can get bash access with the following command:
43
+
44
+ ```
45
+ docker exec -it <ID OF YOUR CONTAINER> bash
46
+ ```
47
+
48
+ If you want to stop your Docker container, for the time being, you can use the following command:
49
+
50
+ ```
51
+ docker-compose stop
52
+ ```
53
+
54
+ Moreover, if you want to delete your Docker instance, you can use:
55
+
56
+ ```
57
+ docker-compose down
58
+ ```
59
+
60
+ ### Installing Dependencies
61
+
62
+ Once you've bash access of your WordPress container, you need to enter your Orbit Fox directory with:
63
+
64
+ ```
65
+ cd /var/www/html/wp-content/plugins/themeisle-companion/
66
+ ```
67
+
68
+ Now, we need to install `npm` and `composer` dependencies with the following commands:
69
+
70
+ ```
71
+ npm install
72
+ composer install
73
+ ```
74
+
75
+ Now you can start making your changes to the plugin.
76
+
77
+ ### Running Grunt Tasks
78
+
79
+ We use [Grunt](https://gruntjs.com/) for automating many tasks, such as compiling Sass to CSS, PHP Code Sniffer, and more.
80
+
81
+ Once you have made your changes, you can run Grunt tasks by running:
82
+
83
+ ```
84
+ grunt local
85
+ ```
86
+
87
+ It will take some time to finish all the tasks. If there are any issues found in PHP or JavaScript, it gives you a detailed log inside `/logs/` folder of the plugin. Fix those issues and run `grunt local` again until it finishes without an error.
88
+
89
+ ### PHP Unit Testing
90
+
91
+ Tests for PHP use PHPUnit as the testing framework, which is run with:
92
+
93
+ ```
94
+ phpunit
95
+ ```
96
+
97
+ ## Sending a Pull Request
98
+
99
+ A good workflow for pull requests to follow is listed below:
100
+
101
+ - Fork Orbit Fox repository
102
+ - Clone forked repository
103
+ - Use **development** branch for your changes, or create a new branch from **development** branch.
104
+ - Setup environment
105
+ - Make code changes
106
+ - Run Grunt tasks and PHPUnit tests.
107
+ - Push branch to forked repository
108
+ - Submit Pull Request
109
+
110
+ ## Reporting Security Issues
111
+
112
+ ThemeIsle team takes security bugs very seriously. Do not report potential security vulnerabilities here. Email them privately to our team at friends@themeisle.com
113
+
114
+ ## Reporting a Bug
115
+
116
+ We use [GitHub issues](https://github.com/Codeinwp/themeisle-companion/issues) for tracking bugs. When filing an issue, make sure to answer these questions:
117
+
118
+ - What version of Orbit Fox are you using?
119
+ - What version of WordPress are you using are you using?
120
+ - What did you do?
121
+ - What did you expect to see?
122
+ - What did you see instead?
123
+
124
+ Explain the problem and include additional details to help maintainers reproduce the problem:
125
+
126
+ - Use a clear and descriptive title for the issue to identify the problem.
127
+ - Describe the exact steps which reproduce the problem in as many details as possible, including screenshots if needed.
128
+
129
+ ## Localizing Orbit Fox Plugin
130
+
131
+ You don't need to be a developer to contribute to Orbit Fox. You can also contribute to the project by translating it to your language. You can find your [locale here](https://translate.wordpress.org/projects/wp-plugins/themeisle-companion).
132
+
133
+ Language packs are automatically generated once 95% of the plugin's strings are translated and approved for a locale.
core/app/class-orbit-fox-global-settings.php CHANGED
@@ -64,6 +64,7 @@ class Orbit_Fox_Global_Settings {
64
  'social-sharing',
65
  'uptime-monitor',
66
  'google-analytics',
 
67
  'companion-legacy',
68
  'elementor-widgets',
69
  'template-directory',
64
  'social-sharing',
65
  'uptime-monitor',
66
  'google-analytics',
67
+ 'gutenberg-blocks',
68
  'companion-legacy',
69
  'elementor-widgets',
70
  'template-directory',
core/assets/css/orbit-fox-admin.css CHANGED
@@ -8,7 +8,7 @@
8
  * Extends Spectre.css Library
9
  */
10
  /*
11
- Version: 2.5.8
12
  */
13
 
14
  /* Document
8
  * Extends Spectre.css Library
9
  */
10
  /*
11
+ Version: 2.6.0
12
  */
13
 
14
  /* Document
core/includes/class-orbit-fox.php CHANGED
@@ -69,7 +69,7 @@ class Orbit_Fox {
69
 
70
  $this->plugin_name = 'orbit-fox';
71
 
72
- $this->version = '2.5.8';
73
 
74
  $this->load_dependencies();
75
  $this->set_locale();
69
 
70
  $this->plugin_name = 'orbit-fox';
71
 
72
+ $this->version = '2.6.0';
73
 
74
  $this->load_dependencies();
75
  $this->set_locale();
languages/themeisle-companion.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the GPL-2.0+.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Orbit Fox Companion 2.4.7\n"
6
  "Report-Msgid-Bugs-To: https://github.com/Codeinwp/orbit-fox/issues\n"
7
- "POT-Creation-Date: 2018-06-21 17:36:15+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -24,95 +24,91 @@ msgstr ""
24
  "X-Poedit-Bookmarks: \n"
25
  "X-Textdomain-Support: yes\n"
26
 
27
- #: obfx_modules/beaver-widgets/modules/services/services.php:64
28
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:439
29
  msgid "1"
30
  msgstr ""
31
 
32
- #: obfx_modules/beaver-widgets/modules/services/services.php:65
33
  msgid "2"
34
  msgstr ""
35
 
36
- #: obfx_modules/beaver-widgets/modules/services/services.php:66
37
  msgid "3"
38
  msgstr ""
39
 
40
- #: obfx_modules/beaver-widgets/modules/services/services.php:67
41
  msgid "4"
42
  msgstr ""
43
 
44
- #: obfx_modules/beaver-widgets/modules/services/services.php:68
45
  msgid "5"
46
  msgstr ""
47
 
48
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:168
49
- msgid "50"
50
- msgstr ""
51
-
52
  #: core/app/class-orbit-fox-admin.php:122
 
53
  msgid "Orbit Fox"
54
  msgstr ""
55
 
56
- #: core/app/class-orbit-fox-admin.php:130
57
  msgid "Orbit Fox General Options"
58
  msgstr ""
59
 
60
- #: core/app/class-orbit-fox-admin.php:130
61
  msgid "General Settings"
62
  msgstr ""
63
 
64
- #: core/app/class-orbit-fox-admin.php:144
65
  msgid ""
66
  "You have activated Orbit Fox plugin! Go to the %s to get started with the "
67
  "extra features."
68
  msgstr ""
69
 
70
- #: core/app/class-orbit-fox-admin.php:144
71
  msgid "Dashboard Page"
72
  msgstr ""
73
 
74
- #: core/app/class-orbit-fox-admin.php:190
75
- #: core/app/class-orbit-fox-admin.php:246
76
  msgid "Could not process the request!"
77
  msgstr ""
78
 
79
- #: core/app/class-orbit-fox-admin.php:216
80
  msgid "No module found! No data was updated."
81
  msgstr ""
82
 
83
- #: core/app/class-orbit-fox-admin.php:222
84
  msgid "Something went wrong, data might not be saved!"
85
  msgstr ""
86
 
87
- #: core/app/class-orbit-fox-admin.php:226
88
  msgid "Options updated, successfully!"
89
  msgstr ""
90
 
91
- #: core/app/class-orbit-fox-admin.php:272
92
  msgid "No module found!"
93
  msgstr ""
94
 
95
- #: core/app/class-orbit-fox-admin.php:276
96
  msgid "Something went wrong, can not change module status!"
97
  msgstr ""
98
 
99
- #: core/app/class-orbit-fox-admin.php:281
100
  msgid "Module status changed!"
101
  msgstr ""
102
 
103
- #: core/app/class-orbit-fox-admin.php:396
104
  msgid "No modules found."
105
  msgstr ""
106
 
107
- #: core/app/class-orbit-fox-admin.php:397
108
  msgid "Please contact support for more help."
109
  msgstr ""
110
 
111
- #: core/app/class-orbit-fox-admin.php:404
112
  msgid "No active modules."
113
  msgstr ""
114
 
115
- #: core/app/class-orbit-fox-admin.php:405
116
  msgid "Activate a module using the toggles above."
117
  msgstr ""
118
 
@@ -169,7 +165,6 @@ msgid "Got it!"
169
  msgstr ""
170
 
171
  #: core/app/views/partials/module-tile-tpl.php:66
172
- #: vendor/codeinwp/templates-directory/class-page-templates-directory.php:426
173
  msgid "Activate"
174
  msgstr ""
175
 
@@ -190,15 +185,11 @@ msgid "Margins"
190
  msgstr ""
191
 
192
  #: obfx_modules/beaver-widgets/inc/common-functions.php:26
193
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:765
194
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:798
195
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:478
196
  msgid "Padding"
197
  msgstr ""
198
 
199
  #: obfx_modules/beaver-widgets/inc/common-functions.php:30
200
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:191
201
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:191
202
  msgid "Top"
203
  msgstr ""
204
 
@@ -209,53 +200,40 @@ msgstr ""
209
  #: obfx_modules/beaver-widgets/inc/common-functions.php:73
210
  #: obfx_modules/beaver-widgets/inc/common-functions.php:108
211
  #: obfx_modules/beaver-widgets/inc/common-functions.php:113
212
- #: obfx_modules/beaver-widgets/modules/services/services.php:114
213
  msgid "px"
214
  msgstr ""
215
 
216
  #: obfx_modules/beaver-widgets/inc/common-functions.php:36
217
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:193
218
  msgid "Bottom"
219
  msgstr ""
220
 
221
  #: obfx_modules/beaver-widgets/inc/common-functions.php:42
222
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:88
223
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:139
224
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:220
225
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:287
226
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:332
227
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:187
228
- #: obfx_modules/beaver-widgets/modules/services/services.php:106
229
- #: obfx_modules/beaver-widgets/modules/services/services.php:185
230
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:579
231
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:615
232
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:661
233
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:275
234
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:187
235
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:296
236
- msgid "Left"
237
- msgstr ""
238
-
239
- #: obfx_modules/beaver-widgets/inc/common-functions.php:48
240
  #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:89
241
  #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:140
242
  #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:221
243
  #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:288
244
  #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:333
245
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:188
246
- #: obfx_modules/beaver-widgets/modules/services/services.php:108
247
- #: obfx_modules/beaver-widgets/modules/services/services.php:187
248
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:587
249
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:623
250
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:669
251
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:283
252
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:195
253
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:304
 
 
 
 
 
 
254
  msgid "Right"
255
  msgstr ""
256
 
257
  #: obfx_modules/beaver-widgets/inc/common-functions.php:64
258
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:777
259
  msgid "Typography"
260
  msgstr ""
261
 
@@ -292,9 +270,6 @@ msgid "Font style"
292
  msgstr ""
293
 
294
  #: obfx_modules/beaver-widgets/inc/common-functions.php:100
295
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1163
296
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:822
297
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:513
298
  msgid "Normal"
299
  msgstr ""
300
 
@@ -335,73 +310,68 @@ msgstr ""
335
  msgid "Custom Query"
336
  msgstr ""
337
 
338
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:32
339
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:175
340
  msgid "Post Type"
341
  msgstr ""
342
 
343
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:40
344
  msgid "Order"
345
  msgstr ""
346
 
347
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:42
348
  msgid "Descending"
349
  msgstr ""
350
 
351
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:43
352
  msgid "Ascending"
353
  msgstr ""
354
 
355
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:52
356
  msgid "Order By"
357
  msgstr ""
358
 
359
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:54
360
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:206
361
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-testimonial.php:168
362
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:423
363
  msgid "Author"
364
  msgstr ""
365
 
366
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:55
367
  msgid "Comment Count"
368
  msgstr ""
369
 
370
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:56
371
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:207
372
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:259
373
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:424
374
  msgid "Date"
375
  msgstr ""
376
 
377
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:57
378
  msgid "Date Last Modified"
379
  msgstr ""
380
 
381
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:58
382
  msgid "ID"
383
  msgstr ""
384
 
385
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:59
386
  msgid "Menu Order"
387
  msgstr ""
388
 
389
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:60
390
  msgid "Meta Value (Alphabetical)"
391
  msgstr ""
392
 
393
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:61
394
  msgid "Meta Value (Numeric)"
395
  msgstr ""
396
 
397
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:62
398
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:263
399
  msgid "Random"
400
  msgstr ""
401
 
402
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:63
403
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:56
404
- #: obfx_modules/beaver-widgets/modules/services/services.php:228
405
  #: obfx_modules/companion-legacy/inc/rhea/widgets/contact.widget.php:65
406
  #: obfx_modules/companion-legacy/inc/rhea/widgets/features.widget.php:80
407
  #: obfx_modules/companion-legacy/inc/rhea/widgets/hours.widget.php:202
@@ -411,107 +381,98 @@ msgstr ""
411
  #: obfx_modules/companion-legacy/inc/shop-isle/customizer.php:228
412
  #: obfx_modules/companion-legacy/inc/shop-isle/customizer.php:287
413
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-focus.php:167
414
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:260
415
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:344
416
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:882
417
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:97
418
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:98
419
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:318
420
  msgid "Title"
421
  msgstr ""
422
 
423
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:80
424
  msgid "Meta Key"
425
  msgstr ""
426
 
427
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:91
428
  msgid "Skip this many posts that match the specified criteria."
429
  msgstr ""
430
 
431
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:99
432
  msgid "Posts per page"
433
  msgstr ""
434
 
435
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:102
436
  msgid "-1 means all posts"
437
  msgstr ""
438
 
439
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:110
440
- #: obfx_modules/beaver-widgets/modules/services/services.php:61
441
  msgid "Number of columns"
442
  msgstr ""
443
 
444
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:120
445
  msgid "Filter"
446
  msgstr ""
447
 
448
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:137
449
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:153
450
  msgid "Enter a list of %1$s."
451
  msgstr ""
452
 
453
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:170
454
  msgid "Authors"
455
  msgstr ""
456
 
457
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:171
458
  msgid "Enter a list of authors usernames."
459
  msgstr ""
460
 
461
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:180
462
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:174
463
  msgid "Appearance"
464
  msgstr ""
465
 
466
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:188
467
  msgid "Vertical align"
468
  msgstr ""
469
 
470
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:192
471
  msgid "Middle"
472
  msgstr ""
473
 
474
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:202
475
  msgid "Display type"
476
  msgstr ""
477
 
478
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:205
479
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:215
480
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:406
481
  msgid "Grid"
482
  msgstr ""
483
 
484
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:206
485
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:216
486
  msgid "List"
487
  msgstr ""
488
 
489
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:215
490
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:178
491
- #: obfx_modules/beaver-widgets/modules/services/services.php:73
492
  msgid "Card layout"
493
  msgstr ""
494
 
495
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:223
496
  msgid "Margin top"
497
  msgstr ""
498
 
499
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:233
500
  msgid "Margin bottom"
501
  msgstr ""
502
 
503
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:243
504
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:281
505
- #: obfx_modules/beaver-widgets/modules/services/services.php:78
506
  msgid "Background color"
507
  msgstr ""
508
 
509
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:259
510
  msgid "Link color"
511
  msgstr ""
512
 
513
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:273
514
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:438
515
  msgid "Text color"
516
  msgstr ""
517
 
@@ -526,199 +487,180 @@ msgstr ""
526
  #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:28
527
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:33
528
  #: obfx_modules/beaver-widgets/modules/services/services.php:33
529
- #: vendor/codeinwp/themeisle-content-forms/beaver/class-themeisle-content-forms-beaver-contact.php:21
530
- #: vendor/codeinwp/themeisle-content-forms/beaver/class-themeisle-content-forms-beaver-newsletter.php:21
531
- #: vendor/codeinwp/themeisle-content-forms/beaver/class-themeisle-content-forms-beaver-registration.php:21
532
  msgid "Orbit Fox Modules"
533
  msgstr ""
534
 
535
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:51
536
  msgid "Loop Settings"
537
  msgstr ""
538
 
539
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:55
540
  msgid "Image options"
541
  msgstr ""
542
 
543
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:62
544
  msgid "Show post thumbnail"
545
  msgstr ""
546
 
547
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:67
548
  msgid "Link in thumbnail"
549
  msgstr ""
550
 
551
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:72
552
  msgid "Enable thumbnail shadow"
553
  msgstr ""
554
 
555
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:77
556
  msgid "Image size"
557
  msgstr ""
558
 
559
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:84
560
  msgid "Image alignment"
561
  msgstr ""
562
 
563
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:87
564
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:138
565
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:219
566
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:286
567
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:331
568
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:186
569
- #: obfx_modules/beaver-widgets/modules/services/services.php:107
570
- #: obfx_modules/beaver-widgets/modules/services/services.php:186
571
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:583
572
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:619
573
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:665
574
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:279
575
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:300
576
  msgid "Center"
577
  msgstr ""
578
 
579
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:118
580
  msgid "Title options"
581
  msgstr ""
582
 
583
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:125
584
  msgid "Show post title"
585
  msgstr ""
586
 
587
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:130
588
  msgid "Link on title"
589
  msgstr ""
590
 
591
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:135
592
  msgid "Title alignment"
593
  msgstr ""
594
 
595
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:146
596
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:65
597
  msgid "Title tag"
598
  msgstr ""
599
 
600
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:149
601
  msgid "H1"
602
  msgstr ""
603
 
604
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:150
605
  msgid "H2"
606
  msgstr ""
607
 
608
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:151
609
  msgid "H3"
610
  msgstr ""
611
 
612
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:152
613
  msgid "H4"
614
  msgstr ""
615
 
616
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:153
617
  msgid "H5"
618
  msgstr ""
619
 
620
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:154
621
  msgid "H6"
622
  msgstr ""
623
 
624
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:155
625
  msgid "span"
626
  msgstr ""
627
 
628
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:156
629
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:74
630
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:97
631
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:116
632
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:144
633
  msgid "p"
634
  msgstr ""
635
 
636
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:157
637
  msgid "div"
638
  msgstr ""
639
 
640
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:185
641
  msgid "Meta options"
642
  msgstr ""
643
 
644
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:192
645
  msgid "Show post meta"
646
  msgstr ""
647
 
648
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:197
649
  msgid "Show icons"
650
  msgstr ""
651
 
652
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:199
653
  msgid "If icons doesn't show you have to enqueue FontAwesome in your theme."
654
  msgstr ""
655
 
656
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:203
657
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:417
658
  msgid "Display"
659
  msgstr ""
660
 
661
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:208
662
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:186
663
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:199
664
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:425
665
- #: vendor/codeinwp/elementor-extra-widgets/widgets/wp/eaw-posts-widget-plus.php:167
666
  msgid "Category"
667
  msgstr ""
668
 
669
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:209
670
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:426
671
  msgid "Tags"
672
  msgstr ""
673
 
674
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:210
675
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:427
676
  msgid "Comments"
677
  msgstr ""
678
 
679
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:216
680
  msgid "Meta alignment"
681
  msgstr ""
682
 
683
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:249
684
  msgid "Content options"
685
  msgstr ""
686
 
687
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:256
688
  msgid "Show post content"
689
  msgstr ""
690
 
691
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:261
692
  msgid "Show read more"
693
  msgstr ""
694
 
695
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:266
696
  msgid "Number of words"
697
  msgstr ""
698
 
699
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:272
700
  msgid "Read more text"
701
  msgstr ""
702
 
703
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:273
704
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:549
705
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:550
706
  msgid "Read more"
707
  msgstr ""
708
 
709
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:283
710
  msgid "Text alignment"
711
  msgstr ""
712
 
713
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:317
714
  msgid "Pagination options"
715
  msgstr ""
716
 
717
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:324
718
  msgid "Enable pagination"
719
  msgstr ""
720
 
721
- #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:328
722
  msgid "Pagination alignment"
723
  msgstr ""
724
 
@@ -732,65 +674,50 @@ msgid ""
732
  "offer."
733
  msgstr ""
734
 
735
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:49
736
- #: obfx_modules/beaver-widgets/modules/services/services.php:47
737
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:479
738
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1001
739
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:282
740
  msgid "Content"
741
  msgstr ""
742
 
743
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:52
744
  msgid "Plan Header"
745
  msgstr ""
746
 
747
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:57
748
  msgid "Plan title"
749
  msgstr ""
750
 
751
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:68
752
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:91
753
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:110
754
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:138
755
- msgid "h1"
756
- msgstr ""
757
-
758
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:69
759
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:92
760
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:111
761
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:139
762
- msgid "h2"
763
  msgstr ""
764
 
765
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:70
766
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:93
767
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:112
768
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:140
769
- msgid "h3"
770
  msgstr ""
771
 
772
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:71
773
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:94
774
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:113
775
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:141
776
- msgid "h4"
777
  msgstr ""
778
 
779
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:72
780
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:95
781
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:114
782
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:142
783
- msgid "h5"
784
  msgstr ""
785
 
786
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:73
787
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:96
788
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:115
789
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:143
 
 
 
790
  msgid "h6"
791
  msgstr ""
792
 
793
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:79
794
  #: obfx_modules/companion-legacy/inc/azera-shop/inc/settings.php:48
795
  #: obfx_modules/companion-legacy/inc/azera-shop/inc/settings.php:111
796
  #: obfx_modules/companion-legacy/inc/azera-shop/inc/settings.php:182
@@ -800,287 +727,236 @@ msgstr ""
800
  #: obfx_modules/companion-legacy/inc/rhea/widgets/icon-box.widget.php:91
801
  #: obfx_modules/companion-legacy/inc/shop-isle/customizer.php:142
802
  #: obfx_modules/companion-legacy/inc/shop-isle/customizer.php:240
803
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:125
804
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:126
805
  msgid "Subtitle"
806
  msgstr ""
807
 
808
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:80
809
  msgid "Plan subtitle"
810
  msgstr ""
811
 
812
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:88
813
  msgid "Subtitle tag"
814
  msgstr ""
815
 
816
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:103
817
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:158
818
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:472
819
  msgid "Price Tag"
820
  msgstr ""
821
 
822
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:107
823
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:521
824
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1058
825
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:166
826
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:167
827
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:536
828
  msgid "Price"
829
  msgstr ""
830
 
831
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:116
832
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:177
833
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:178
834
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:502
835
  msgid "Currency"
836
  msgstr ""
837
 
838
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:125
839
  msgid "Currency position"
840
  msgstr ""
841
 
842
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:128
843
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:190
844
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:348
845
  msgid "Before"
846
  msgstr ""
847
 
848
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:129
849
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:191
850
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:349
851
  msgid "After"
852
  msgstr ""
853
 
854
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:134
855
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:200
856
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:570
857
  msgid "Period"
858
  msgstr ""
859
 
860
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:135
861
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:201
862
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:202
863
  msgid "/month"
864
  msgstr ""
865
 
866
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:144
867
  msgid "Features list"
868
  msgstr ""
869
 
870
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:149
871
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:560
872
  #: obfx_modules/companion-legacy/inc/hestia/inc/features/feature-features-section.php:103
873
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:228
874
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:232
875
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:236
876
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:254
877
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:139
878
  msgid "Feature"
879
  msgstr ""
880
 
881
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:156
882
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:161
883
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:534
884
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:562
885
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1133
886
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:308
887
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:759
888
  msgid "Button"
889
  msgstr ""
890
 
891
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:160
892
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:548
893
  msgid "Button text"
894
  msgstr ""
895
 
896
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:169
897
  msgid "Button link"
898
  msgstr ""
899
 
900
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:183
901
  msgid "Align"
902
  msgstr ""
903
 
904
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:196
905
  msgid "Header Style"
906
  msgstr ""
907
 
908
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:211
909
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:340
910
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:408
911
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:489
912
  msgid "Colors"
913
  msgstr ""
914
 
915
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:215
916
  msgid "Title color"
917
  msgstr ""
918
 
919
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:228
920
  msgid "Subtitle color"
921
  msgstr ""
922
 
923
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:243
924
  msgid "Title typography"
925
  msgstr ""
926
 
927
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:250
928
  msgid "Subtitle typography"
929
  msgstr ""
930
 
931
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:256
932
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:264
933
  #: obfx_modules/companion-legacy/inc/shop-isle/customizer.php:252
934
  msgid "Background"
935
  msgstr ""
936
 
937
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:260
938
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:115
939
- #: vendor/codeinwp/themeisle-content-forms/beaver/class-themeisle-content-forms-beaver-base.php:112
940
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-elementor.php:180
941
  msgid "Type"
942
  msgstr ""
943
 
944
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:263
945
- #: obfx_modules/beaver-widgets/modules/services/services.php:153
946
- #: obfx_modules/beaver-widgets/modules/services/services.php:192
947
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:905
948
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:964
949
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1024
950
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1087
951
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:344
952
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:374
953
  msgid "Color"
954
  msgstr ""
955
 
956
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:265
957
  msgid "Gradient"
958
  msgstr ""
959
 
960
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:295
961
  msgid "Photo Field"
962
  msgstr ""
963
 
964
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:300
965
  msgid "Gradient color 1"
966
  msgstr ""
967
 
968
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:305
969
  msgid "Gradient color 2"
970
  msgstr ""
971
 
972
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:310
973
  msgid "Orientation"
974
  msgstr ""
975
 
976
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:313
977
  msgid "Horizontal"
978
  msgstr ""
979
 
980
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:314
981
  msgid "Vertical"
982
  msgstr ""
983
 
984
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:315
985
  msgid "Diagonal bottom"
986
  msgstr ""
987
 
988
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:316
989
  msgid "Diagonal top"
990
  msgstr ""
991
 
992
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:317
993
  msgid "Radial"
994
  msgstr ""
995
 
996
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:325
997
  msgid "Price Style"
998
  msgstr ""
999
 
1000
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:344
1001
  msgid "Price color"
1002
  msgstr ""
1003
 
1004
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:357
1005
  msgid "Currency color"
1006
  msgstr ""
1007
 
1008
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:370
1009
  msgid "Period color"
1010
  msgstr ""
1011
 
1012
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:393
1013
  msgid "Features Style"
1014
  msgstr ""
1015
 
1016
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:412
1017
- #: obfx_modules/beaver-widgets/modules/services/services.php:242
1018
  msgid "Icon color"
1019
  msgstr ""
1020
 
1021
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:425
1022
  msgid "Bold text color"
1023
  msgstr ""
1024
 
1025
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:461
1026
  msgid "Button Style"
1027
  msgstr ""
1028
 
1029
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:493
1030
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:574
1031
- #: obfx_modules/beaver-widgets/modules/services/services.php:232
1032
  #: obfx_modules/companion-legacy/inc/hestia/inc/features/feature-ribbon-section.php:92
1033
  #: obfx_modules/companion-legacy/inc/rhea/widgets/features.widget.php:84
1034
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-focus.php:176
1035
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-testimonial.php:195
1036
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:251
1037
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:316
1038
- #: vendor/codeinwp/themeisle-content-forms/beaver/class-themeisle-content-forms-beaver-base.php:114
1039
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-elementor.php:167
1040
  msgid "Text"
1041
  msgstr ""
1042
 
1043
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:506
1044
  msgid "Text on hover"
1045
  msgstr ""
1046
 
1047
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:519
1048
  msgid "Button background"
1049
  msgstr ""
1050
 
1051
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:532
1052
  msgid "Button background on hover"
1053
  msgstr ""
1054
 
1055
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:563
1056
- #: obfx_modules/beaver-widgets/modules/services/services.php:99
1057
- #: obfx_modules/beaver-widgets/modules/services/services.php:149
1058
- #: obfx_modules/beaver-widgets/modules/services/services.php:178
1059
- #: obfx_modules/beaver-widgets/modules/services/services.php:221
1060
  msgid "General"
1061
  msgstr ""
1062
 
1063
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:570
1064
  msgid "Bold text"
1065
  msgstr ""
1066
 
1067
- #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:578
1068
- #: obfx_modules/beaver-widgets/modules/services/services.php:237
1069
  #: obfx_modules/companion-legacy/inc/rhea/widgets/features.widget.php:65
1070
  #: obfx_modules/companion-legacy/inc/rhea/widgets/icon-box.widget.php:72
1071
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:259
1072
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:335
1073
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:119
1074
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:144
1075
  msgid "Icon"
1076
  msgstr ""
1077
 
1078
  #: obfx_modules/beaver-widgets/modules/services/services.php:31
1079
  #: obfx_modules/companion-legacy/inc/azera-shop/sections/azera_shop_our_services_section.php:20
1080
  #: obfx_modules/companion-legacy/inc/llorix-one-companion/sections/our-services-section.php:24
1081
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:38
1082
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:78
1083
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:85
1084
  msgid "Services"
1085
  msgstr ""
1086
 
@@ -1088,43 +964,37 @@ msgstr ""
1088
  msgid "An overview of the products or services."
1089
  msgstr ""
1090
 
1091
- #: obfx_modules/beaver-widgets/modules/services/services.php:55
1092
- #: obfx_modules/beaver-widgets/modules/services/services.php:218
1093
  msgid "Service"
1094
  msgstr ""
1095
 
1096
- #: obfx_modules/beaver-widgets/modules/services/services.php:96
1097
  msgid "Icon style"
1098
  msgstr ""
1099
 
1100
- #: obfx_modules/beaver-widgets/modules/services/services.php:103
1101
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-team.php:278
1102
  msgid "Position"
1103
  msgstr ""
1104
 
1105
- #: obfx_modules/beaver-widgets/modules/services/services.php:113
1106
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:261
1107
  msgid "Size"
1108
  msgstr ""
1109
 
1110
- #: obfx_modules/beaver-widgets/modules/services/services.php:146
1111
  msgid "Title style"
1112
  msgstr ""
1113
 
1114
- #: obfx_modules/beaver-widgets/modules/services/services.php:175
1115
  msgid "Content style"
1116
  msgstr ""
1117
 
1118
- #: obfx_modules/beaver-widgets/modules/services/services.php:182
1119
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:611
1120
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:657
1121
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:271
1122
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:290
1123
  msgid "Alignment"
1124
  msgstr ""
1125
 
1126
- #: obfx_modules/beaver-widgets/modules/services/services.php:247
1127
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:171
1128
  msgid "Link to"
1129
  msgstr ""
1130
 
@@ -1409,9 +1279,6 @@ msgstr ""
1409
 
1410
  #: obfx_modules/companion-legacy/inc/hestia/inc/features/feature-features-section.php:24
1411
  #: obfx_modules/companion-legacy/inc/hestia/inc/features/feature-features-section.php:34
1412
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:216
1413
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:610
1414
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:674
1415
  msgid "Features"
1416
  msgstr ""
1417
 
@@ -1462,9 +1329,6 @@ msgstr ""
1462
  #: obfx_modules/companion-legacy/inc/rhea/widgets/features.widget.php:88
1463
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-clients.php:115
1464
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-focus.php:183
1465
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:328
1466
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:383
1467
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:326
1468
  msgid "Link"
1469
  msgstr ""
1470
 
@@ -1656,22 +1520,10 @@ msgid "Google Maps URL"
1656
  msgstr ""
1657
 
1658
  #: obfx_modules/companion-legacy/inc/rhea/widgets/contact.widget.php:77
1659
- #: vendor/codeinwp/themeisle-content-forms/beaver/class-themeisle-content-forms-beaver-base.php:115
1660
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-contact.php:54
1661
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-contact.php:55
1662
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-elementor.php:170
1663
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-newsletter.php:75
1664
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-newsletter.php:76
1665
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-newsletter.php:77
1666
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-registration.php:55
1667
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-registration.php:56
1668
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-registration.php:57
1669
  msgid "Email"
1670
  msgstr ""
1671
 
1672
  #: obfx_modules/companion-legacy/inc/rhea/widgets/contact.widget.php:81
1673
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-contact.php:61
1674
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-contact.php:62
1675
  msgid "Phone"
1676
  msgstr ""
1677
 
@@ -1772,8 +1624,6 @@ msgstr ""
1772
 
1773
  #: obfx_modules/companion-legacy/inc/rhea/widgets/icon-box.widget.php:96
1774
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-team.php:285
1775
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:127
1776
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:365
1777
  msgid "Description"
1778
  msgstr ""
1779
 
@@ -1953,10 +1803,6 @@ msgstr ""
1953
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-focus.php:192
1954
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-team.php:348
1955
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-testimonial.php:202
1956
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:288
1957
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:818
1958
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:123
1959
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:163
1960
  msgid "Image"
1961
  msgstr ""
1962
 
@@ -1994,8 +1840,6 @@ msgid "Linkedin account of"
1994
  msgstr ""
1995
 
1996
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-team.php:269
1997
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-contact.php:47
1998
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-contact.php:48
1999
  msgid "Name"
2000
  msgstr ""
2001
 
@@ -2075,29 +1919,126 @@ msgstr ""
2075
  msgid "Unregister Site"
2076
  msgstr ""
2077
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2078
  #: obfx_modules/image-cdn/inc/class-orbit-fox-connector.php:214
2079
  #: obfx_modules/image-cdn/inc/class-orbit-fox-connector.php:226
2080
- #: obfx_modules/image-cdn/inc/class-orbit-fox-image-replacer.php:614
2081
- #: obfx_modules/image-cdn/inc/class-orbit-fox-image-replacer.php:626
2082
- #: vendor/codeinwp/elementor-extra-widgets/class-elementor-extra-widgets.php:251
2083
- #: vendor/codeinwp/elementor-extra-widgets/class-elementor-extra-widgets.php:263
2084
- #: vendor/codeinwp/full-width-page-templates/builders/class-elementor-full-width-templates.php:107
2085
- #: vendor/codeinwp/full-width-page-templates/builders/class-elementor-full-width-templates.php:119
2086
- #: vendor/codeinwp/full-width-page-templates/class-full-width-templates.php:188
2087
- #: vendor/codeinwp/full-width-page-templates/class-full-width-templates.php:200
2088
- #: vendor/codeinwp/templates-directory/class-page-templates-directory.php:560
2089
- #: vendor/codeinwp/templates-directory/class-page-templates-directory.php:572
2090
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-contact.php:291
2091
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-contact.php:303
2092
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-newsletter.php:256
2093
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-newsletter.php:268
2094
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-registration.php:220
2095
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-registration.php:232
2096
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-server.php:144
2097
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-server.php:156
2098
  msgid "Cheatin&#8217; huh?"
2099
  msgstr ""
2100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2101
  #: obfx_modules/image-cdn/init.php:43
2102
  msgid "Image Optimization &amp; CDN Module"
2103
  msgstr ""
@@ -2307,8 +2248,9 @@ msgstr ""
2307
  msgid ""
2308
  "OrbitFox<sup>&copy;</sup> will need your current theme slug in order to run "
2309
  "a visual comparison report between your current and latest version. We will "
2310
- "need your consent in order to do this. <br/>Read <a href=\"\">more</a> "
2311
- "about this process."
 
2312
  msgstr ""
2313
 
2314
  #: obfx_modules/safe-updates/init.php:337
@@ -2354,7 +2296,6 @@ msgid ""
2354
  msgstr ""
2355
 
2356
  #: obfx_modules/template-directory/init.php:98
2357
- #: vendor/codeinwp/templates-directory/views/template-directory-page-tpl.php:20
2358
  msgid "Orbit Fox Template Directory"
2359
  msgstr ""
2360
 
@@ -2376,1054 +2317,21 @@ msgid ""
2376
  "we will send downtime alerts."
2377
  msgstr ""
2378
 
2379
- #: vendor/codeinwp/elementor-extra-widgets/class-elementor-extra-widgets.php:53
2380
- #: vendor/codeinwp/themeisle-content-forms/class-content-form-base.php:170
2381
- msgid "Orbit Fox Addons"
2382
- msgstr ""
2383
-
2384
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:30
2385
- msgid "Post Type Grid"
2386
- msgstr ""
2387
-
2388
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:166
2389
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:693
2390
- msgid "Grid Options"
2391
- msgstr ""
2392
-
2393
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:212
2394
- msgid "Style"
2395
- msgstr ""
2396
-
2397
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:226
2398
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:755
2399
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:468
2400
- msgid "Items"
2401
- msgstr ""
2402
-
2403
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:227
2404
- msgid "How many items?"
2405
- msgstr ""
2406
-
2407
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:237
2408
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:210
2409
- msgid "Columns"
2410
- msgstr ""
2411
-
2412
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:256
2413
- msgid "Order by"
2414
- msgstr ""
2415
-
2416
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:261
2417
- msgid "Modified date"
2418
- msgstr ""
2419
-
2420
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:262
2421
- msgid "Comment count"
2422
- msgstr ""
2423
-
2424
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:272
2425
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:646
2426
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1344
2427
- msgid "Pagination"
2428
- msgstr ""
2429
-
2430
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:296
2431
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:352
2432
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:407
2433
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:487
2434
- msgid "Hide"
2435
- msgstr ""
2436
-
2437
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:306
2438
- msgid "Image height"
2439
- msgstr ""
2440
-
2441
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:363
2442
- msgid "Tag"
2443
- msgstr ""
2444
-
2445
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:399
2446
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:941
2447
- msgid "Meta"
2448
- msgstr ""
2449
-
2450
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:437
2451
- msgid "No. of Categories"
2452
- msgstr ""
2453
-
2454
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:438
2455
- msgid "How many categories to display?"
2456
- msgstr ""
2457
-
2458
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:451
2459
- msgid "No. of Tags"
2460
- msgstr ""
2461
-
2462
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:452
2463
- msgid "How many tags to display?"
2464
- msgstr ""
2465
-
2466
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:463
2467
- msgid "Remove icons"
2468
- msgstr ""
2469
-
2470
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:497
2471
- msgid "Show full content"
2472
- msgstr ""
2473
-
2474
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:508
2475
- msgid "Length (words)"
2476
- msgstr ""
2477
-
2478
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:509
2479
- msgid "Length of content (words)"
2480
- msgstr ""
2481
-
2482
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:575
2483
- msgid "Button alignment"
2484
- msgstr ""
2485
-
2486
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:591
2487
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:287
2488
- msgid "Justified"
2489
- msgstr ""
2490
-
2491
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:702
2492
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:415
2493
- msgid "Columns margin"
2494
- msgstr ""
2495
-
2496
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:724
2497
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:437
2498
- msgid "Rows margin"
2499
- msgstr ""
2500
-
2501
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:778
2502
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:830
2503
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:786
2504
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:491
2505
- msgid "Border Radius"
2506
- msgstr ""
2507
-
2508
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:859
2509
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:921
2510
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:981
2511
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1042
2512
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1106
2513
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1356
2514
- msgid "Margin"
2515
- msgstr ""
2516
-
2517
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1176
2518
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1246
2519
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:830
2520
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:879
2521
- msgid "Text Color"
2522
- msgstr ""
2523
-
2524
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1197
2525
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1267
2526
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:845
2527
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:894
2528
- msgid "Background Color"
2529
- msgstr ""
2530
-
2531
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1233
2532
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:871
2533
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:539
2534
- msgid "Hover"
2535
- msgstr ""
2536
-
2537
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1305
2538
- msgid "Button padding"
2539
- msgstr ""
2540
-
2541
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1322
2542
- msgid "Button border radius"
2543
- msgstr ""
2544
-
2545
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1483
2546
- #: vendor/codeinwp/templates-directory/views/template-directory-page-tpl.php:62
2547
- msgid "Previous"
2548
  msgstr ""
2549
 
2550
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1484
2551
- #: vendor/codeinwp/templates-directory/views/template-directory-page-tpl.php:64
2552
- msgid "Next"
2553
- msgstr ""
2554
-
2555
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1617
2556
- msgid "No reviews"
2557
- msgstr ""
2558
-
2559
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1617
2560
- msgid "1 review"
2561
- msgstr ""
2562
-
2563
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1617
2564
- msgid "% reviews"
2565
- msgstr ""
2566
-
2567
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1619
2568
- msgid "No comments"
2569
- msgstr ""
2570
-
2571
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1619
2572
- msgid "1 comment"
2573
- msgstr ""
2574
-
2575
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1619
2576
- msgid "% comments"
2577
- msgstr ""
2578
-
2579
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/premium-placeholder.php:77
2580
- msgid "This widget is part of the pro version of Sizzify."
2581
- msgstr ""
2582
-
2583
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/premium-placeholder.php:79
2584
- msgid "Upgrade Here!"
2585
- msgstr ""
2586
-
2587
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:29
2588
- msgid "Pricing Table"
2589
- msgstr ""
2590
-
2591
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:89
2592
- msgid "Plan Title"
2593
- msgstr ""
2594
-
2595
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:99
2596
- msgid "Pricing Plan"
2597
- msgstr ""
2598
-
2599
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:107
2600
- msgid "Title HTML tag"
2601
- msgstr ""
2602
-
2603
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:135
2604
- msgid "Subtitle HTML Tag"
2605
- msgstr ""
2606
-
2607
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:179
2608
- msgid "$"
2609
- msgstr ""
2610
-
2611
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:187
2612
- msgid "Currency Position"
2613
- msgstr ""
2614
-
2615
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:223
2616
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:253
2617
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:138
2618
- msgid "Plan Features"
2619
- msgstr ""
2620
-
2621
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:227
2622
- msgid "First"
2623
- msgstr ""
2624
-
2625
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:231
2626
- msgid "Second"
2627
- msgstr ""
2628
-
2629
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:235
2630
- msgid "Third"
2631
- msgstr ""
2632
-
2633
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:243
2634
- msgid "Accented Text"
2635
- msgstr ""
2636
-
2637
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:244
2638
- msgid "Appears before feature text"
2639
- msgstr ""
2640
-
2641
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:246
2642
- msgid "Accent"
2643
- msgstr ""
2644
-
2645
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:317
2646
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:318
2647
- msgid "Buy Now"
2648
- msgstr ""
2649
-
2650
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:327
2651
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:173
2652
- msgid "https://example.com"
2653
- msgstr ""
2654
-
2655
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:345
2656
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:183
2657
- msgid "Icon Position"
2658
- msgstr ""
2659
-
2660
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:361
2661
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:734
2662
- msgid "Icon Spacing"
2663
- msgstr ""
2664
-
2665
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:386
2666
- msgid "Header"
2667
- msgstr ""
2668
-
2669
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:394
2670
- msgid "Header Padding"
2671
- msgstr ""
2672
-
2673
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:407
2674
- msgid "Title Color"
2675
- msgstr ""
2676
-
2677
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:432
2678
- msgid "Subtitle Color"
2679
- msgstr ""
2680
-
2681
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:457
2682
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:493
2683
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:619
2684
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:767
2685
- msgid "Section Background"
2686
- msgstr ""
2687
-
2688
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:481
2689
- msgid "Price Box Padding"
2690
- msgstr ""
2691
-
2692
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:511
2693
- msgid "Currency Color"
2694
- msgstr ""
2695
-
2696
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:545
2697
- msgid "Price Color"
2698
- msgstr ""
2699
-
2700
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:579
2701
- msgid "Period Color"
2702
- msgstr ""
2703
-
2704
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:629
2705
- msgid "Features List Padding"
2706
- msgstr ""
2707
-
2708
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:640
2709
- msgid "Accented"
2710
- msgstr ""
2711
-
2712
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:650
2713
- msgid "Accented Color"
2714
- msgstr ""
2715
-
2716
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:683
2717
- msgid "Features Color"
2718
- msgstr ""
2719
-
2720
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:708
2721
- msgid "Icons"
2722
- msgstr ""
2723
-
2724
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:717
2725
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:154
2726
- msgid "Icon Color"
2727
- msgstr ""
2728
-
2729
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:918
2730
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:563
2731
- msgid "Transition Duration"
2732
- msgstr ""
2733
-
2734
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:89
2735
- msgid "Award-Winning​"
2736
- msgstr ""
2737
-
2738
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:90
2739
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:97
2740
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:104
2741
- msgid "Add some text here to describe your services to the page visitors.​"
2742
- msgstr ""
2743
-
2744
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:96
2745
- msgid "Professional​"
2746
- msgstr ""
2747
-
2748
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:103
2749
- msgid "Consulting​"
2750
- msgstr ""
2751
-
2752
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:132
2753
- msgid "Title & Description"
2754
- msgstr ""
2755
-
2756
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:133
2757
- msgid "Service Title"
2758
- msgstr ""
2759
-
2760
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:233
2761
- msgid "Icon / Image"
2762
- msgstr ""
2763
-
2764
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:240
2765
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:327
2766
- msgid "Spacing"
2767
- msgstr ""
2768
-
2769
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/best-products.php:13
2770
- msgid ""
2771
- "Woo Best Selling Products - designed for use with the Elementor Page "
2772
- "Builder plugin"
2773
- msgstr ""
2774
-
2775
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/best-products.php:17
2776
- msgid "Woo Best Selling Products"
2777
- msgstr ""
2778
-
2779
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/best-products.php:55
2780
- msgid "Best Sellers"
2781
- msgstr ""
2782
-
2783
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/best-products.php:134
2784
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/featured-products.php:140
2785
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/popular-products.php:139
2786
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/products-categories.php:141
2787
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/recent-products.php:137
2788
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/sale-products.php:137
2789
- #: vendor/codeinwp/elementor-extra-widgets/widgets/wp/eaw-posts-widget-plus.php:155
2790
- #: vendor/codeinwp/elementor-extra-widgets/widgets/wp/eaw-posts-widget.php:150
2791
- msgid "Title:"
2792
- msgstr ""
2793
-
2794
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/best-products.php:140
2795
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/featured-products.php:146
2796
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/popular-products.php:145
2797
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/recent-products.php:143
2798
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/sale-products.php:143
2799
- msgid "Number of products to show:"
2800
- msgstr ""
2801
-
2802
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/best-products.php:146
2803
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/featured-products.php:152
2804
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/popular-products.php:151
2805
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/products-categories.php:153
2806
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/recent-products.php:149
2807
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/sale-products.php:149
2808
- msgid "Number of Columns:"
2809
- msgstr ""
2810
-
2811
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/featured-products.php:13
2812
- msgid ""
2813
- "Woo Featured Products - designed for use with the Elementor Page Builder "
2814
- "plugin"
2815
- msgstr ""
2816
-
2817
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/featured-products.php:17
2818
- msgid "Woo Featured Products"
2819
- msgstr ""
2820
-
2821
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/featured-products.php:55
2822
- msgid "Recommended For You"
2823
- msgstr ""
2824
-
2825
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/popular-products.php:13
2826
- msgid ""
2827
- "Woo Popular Products - designed for use with the Elementor Page Builder "
2828
- "plugin"
2829
- msgstr ""
2830
-
2831
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/popular-products.php:17
2832
- msgid "Woo Popular Products"
2833
- msgstr ""
2834
-
2835
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/popular-products.php:55
2836
- msgid "Fan Favorites"
2837
- msgstr ""
2838
-
2839
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/products-categories.php:13
2840
- msgid ""
2841
- "Woo Product Categories - designed for use with the Elementor Page Builder "
2842
- "plugin"
2843
- msgstr ""
2844
-
2845
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/products-categories.php:17
2846
- msgid "Woo Product Categories"
2847
- msgstr ""
2848
-
2849
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/products-categories.php:55
2850
- msgid "Shop By Categories"
2851
- msgstr ""
2852
-
2853
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/products-categories.php:147
2854
- msgid "Number of categories to show:"
2855
- msgstr ""
2856
-
2857
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/recent-products.php:13
2858
- msgid ""
2859
- "Woo Recent Products - designed for use with the Elementor Page Builder "
2860
- "plugin"
2861
- msgstr ""
2862
-
2863
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/recent-products.php:17
2864
- msgid "Woo Recent Products"
2865
- msgstr ""
2866
-
2867
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/recent-products.php:55
2868
- msgid "New In"
2869
- msgstr ""
2870
-
2871
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/sale-products.php:13
2872
- msgid ""
2873
- "Woo On Sale Products - designed for use with the Elementor Page Builder "
2874
- "plugin"
2875
- msgstr ""
2876
-
2877
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/sale-products.php:17
2878
- msgid "Woo On Sale Products"
2879
- msgstr ""
2880
-
2881
- #: vendor/codeinwp/elementor-extra-widgets/widgets/woo/sale-products.php:55
2882
- msgid "On Sale"
2883
- msgstr ""
2884
-
2885
- #: vendor/codeinwp/elementor-extra-widgets/widgets/wp/eaw-posts-widget-plus.php:13
2886
- #: vendor/codeinwp/elementor-extra-widgets/widgets/wp/eaw-posts-widget.php:13
2887
- msgid ""
2888
- "Recent posts with featured image - ideal for use with Elementor Page "
2889
- "Builder plugin"
2890
- msgstr ""
2891
-
2892
- #: vendor/codeinwp/elementor-extra-widgets/widgets/wp/eaw-posts-widget-plus.php:17
2893
- msgid "EAW: Elementor Posts By Category"
2894
- msgstr ""
2895
-
2896
- #: vendor/codeinwp/elementor-extra-widgets/widgets/wp/eaw-posts-widget-plus.php:161
2897
- #: vendor/codeinwp/elementor-extra-widgets/widgets/wp/eaw-posts-widget.php:156
2898
- msgid "Number of posts to show:"
2899
- msgstr ""
2900
-
2901
- #: vendor/codeinwp/elementor-extra-widgets/widgets/wp/eaw-posts-widget-plus.php:185
2902
- #: vendor/codeinwp/elementor-extra-widgets/widgets/wp/eaw-posts-widget.php:164
2903
- msgid "Display post excerpt?"
2904
- msgstr ""
2905
-
2906
- #: vendor/codeinwp/elementor-extra-widgets/widgets/wp/eaw-posts-widget-plus.php:189
2907
- #: vendor/codeinwp/elementor-extra-widgets/widgets/wp/eaw-posts-widget.php:168
2908
- msgid "Excerpt length to show:"
2909
- msgstr ""
2910
-
2911
- #: vendor/codeinwp/elementor-extra-widgets/widgets/wp/eaw-posts-widget.php:17
2912
- msgid "EAW: Elementor Recent Posts"
2913
- msgstr ""
2914
-
2915
- #: vendor/codeinwp/full-width-page-templates/class-full-width-templates.php:38
2916
- msgid "Page Builder - Full Width - Blank"
2917
- msgstr ""
2918
-
2919
- #: vendor/codeinwp/full-width-page-templates/class-full-width-templates.php:39
2920
- msgid "Page Builder - Full Width"
2921
- msgstr ""
2922
-
2923
- #: vendor/codeinwp/templates-directory/class-page-templates-directory.php:166
2924
- msgid "A new Orbit Fox Template"
2925
- msgstr ""
2926
-
2927
- #: vendor/codeinwp/templates-directory/class-page-templates-directory.php:168
2928
- msgid "This is an awesome Orbit Fox Template."
2929
- msgstr ""
2930
-
2931
- #: vendor/codeinwp/templates-directory/class-page-templates-directory.php:171
2932
- msgid "Elementor Page Builder"
2933
- msgstr ""
2934
-
2935
- #: vendor/codeinwp/templates-directory/class-page-templates-directory.php:176
2936
- msgid "About Our Business"
2937
- msgstr ""
2938
-
2939
- #: vendor/codeinwp/templates-directory/class-page-templates-directory.php:177
2940
- msgid ""
2941
- "Use this layout to present your business in a fancy way. Add an interactive "
2942
- "header, shwocase your services via progress bars, introduce your team "
2943
- "members, and locate your headquarters on Google Maps. Last but not least, "
2944
- "beautify the design by adding catchy images."
2945
- msgstr ""
2946
-
2947
- #: vendor/codeinwp/templates-directory/class-page-templates-directory.php:183
2948
- msgid "Contact Us"
2949
- msgstr ""
2950
-
2951
- #: vendor/codeinwp/templates-directory/class-page-templates-directory.php:184
2952
- msgid ""
2953
- "A clean and simple template for your Contact page, where we integrated our "
2954
- "Pirate Forms plugin. It will let your customers send you a message using an "
2955
- "intuitive form. A Google map, together with a few other details about your "
2956
- "business, completes the section."
2957
- msgstr ""
2958
-
2959
- #: vendor/codeinwp/templates-directory/class-page-templates-directory.php:190
2960
- msgid "Pricing"
2961
- msgstr ""
2962
-
2963
- #: vendor/codeinwp/templates-directory/class-page-templates-directory.php:191
2964
- msgid ""
2965
- "If you plan to sell your products online, this layout offers you elegant "
2966
- "pricing tables so you can differentiate the features and services for your "
2967
- "clients. Also, for a better clarification, the template provides a FAQ area "
2968
- "where you can answer people's questions."
2969
- msgstr ""
2970
-
2971
- #: vendor/codeinwp/templates-directory/class-page-templates-directory.php:197
2972
- msgid "Material Homepage"
2973
- msgstr ""
2974
-
2975
- #: vendor/codeinwp/templates-directory/class-page-templates-directory.php:198
2976
- msgid ""
2977
- "This layout could be your main website homepage (or you can use it as an "
2978
- "alternative homepage, if you wish). It was built on material design and "
2979
- "comes with call to action, catchy icons, testimonials, blog posts, pricing "
2980
- "plans, and other sections that you can add yourself by customizing it."
2981
- msgstr ""
2982
-
2983
- #: vendor/codeinwp/templates-directory/class-page-templates-directory.php:204
2984
- msgid "Ether - Landing Page"
2985
- msgstr ""
2986
-
2987
- #: vendor/codeinwp/templates-directory/class-page-templates-directory.php:205
2988
- msgid ""
2989
- "An elegant and modern landing page for e-commerce, coming with a clean "
2990
- "interface, beautiful typography, photo galleries, and call to action. If "
2991
- "you have an online shop and want to promote a certain product, use this "
2992
- "layout to tell people why they should buy it."
2993
- msgstr ""
2994
-
2995
- #: vendor/codeinwp/templates-directory/class-page-templates-directory.php:211
2996
- msgid "Jason - Landing Page"
2997
- msgstr ""
2998
-
2999
- #: vendor/codeinwp/templates-directory/class-page-templates-directory.php:212
3000
- msgid ""
3001
- "A classy template for freelancers, where you can put your skills and "
3002
- "knowldge in the spotlight for potential clients. Talk about yourself, your "
3003
- "projects, awards, and let people contact you easily. The template is "
3004
- "designed to feature one-page scrolling."
3005
- msgstr ""
3006
-
3007
- #: vendor/codeinwp/templates-directory/class-page-templates-directory.php:218
3008
- msgid "Pulse - Landing Page"
3009
- msgstr ""
3010
-
3011
- #: vendor/codeinwp/templates-directory/class-page-templates-directory.php:219
3012
- msgid ""
3013
- "A good-looking landing page for products and apps, built to mark the "
3014
- "features and services that they offer. The layout provides customer "
3015
- "reviews, call to action, beautiful pricing tables, an About section, and a "
3016
- "creative design. If you want to promote and sell your brand product, this "
3017
- "template might help."
3018
- msgstr ""
3019
-
3020
- #: vendor/codeinwp/templates-directory/class-page-templates-directory.php:225
3021
- msgid "Ascend - Landing Page"
3022
- msgstr ""
3023
-
3024
- #: vendor/codeinwp/templates-directory/class-page-templates-directory.php:226
3025
- msgid ""
3026
- "A resume-like template, built for outdoor enthusiasts and nature lovers. "
3027
- "Its design and layout make it flexible for any other purpose too, so do not "
3028
- "hesitate to showcase any kind of skills and activities, even "
3029
- "business-oriented."
3030
- msgstr ""
3031
-
3032
- #: vendor/codeinwp/templates-directory/class-page-templates-directory.php:232
3033
- msgid "Path - Landing Page"
3034
- msgstr ""
3035
-
3036
- #: vendor/codeinwp/templates-directory/class-page-templates-directory.php:233
3037
- msgid ""
3038
- "If you are a business consultant - agency or working on your own - have a "
3039
- "look at this template! It comes with a clean design, call to action, "
3040
- "statistics, and sections that put your services first."
3041
- msgstr ""
3042
-
3043
- #: vendor/codeinwp/templates-directory/class-page-templates-directory.php:239
3044
- msgid "Mocha - Landing Page"
3045
- msgstr ""
3046
-
3047
- #: vendor/codeinwp/templates-directory/class-page-templates-directory.php:240
3048
- msgid ""
3049
- "An elegant and modern template for cafes and pubs, where you can display "
3050
- "your menu in a mouth-watering way. Call to action, blog posts, attractive "
3051
- "images, tabbed menus, and a catchy design will help you convince more "
3052
- "people to stop by."
3053
- msgstr ""
3054
-
3055
- #: vendor/codeinwp/templates-directory/class-page-templates-directory.php:289
3056
- msgid "Template Directory"
3057
- msgstr ""
3058
-
3059
- #: vendor/codeinwp/templates-directory/class-page-templates-directory.php:415
3060
- msgid "Install and activate"
3061
- msgstr ""
3062
-
3063
- #: vendor/codeinwp/templates-directory/views/template-directory-page-tpl.php:21
3064
- msgid "Sync Templates"
3065
- msgstr ""
3066
-
3067
- #: vendor/codeinwp/templates-directory/views/template-directory-page-tpl.php:33
3068
- msgid "More Details"
3069
- msgstr ""
3070
-
3071
- #: vendor/codeinwp/templates-directory/views/template-directory-page-tpl.php:44
3072
- msgid "Preview"
3073
- msgstr ""
3074
-
3075
- #: vendor/codeinwp/templates-directory/views/template-directory-page-tpl.php:59
3076
- msgid "Close"
3077
- msgstr ""
3078
-
3079
- #: vendor/codeinwp/templates-directory/views/template-directory-page-tpl.php:66
3080
- msgid "Import"
3081
- msgstr ""
3082
-
3083
- #: vendor/codeinwp/templates-directory/views/template-directory-page-tpl.php:68
3084
- msgid "See Pro Version"
3085
- msgstr ""
3086
-
3087
- #: vendor/codeinwp/templates-directory/views/template-directory-page-tpl.php:101
3088
- msgid "Required Plugins"
3089
- msgstr ""
3090
-
3091
- #: vendor/codeinwp/templates-directory/views/template-directory-page-tpl.php:132
3092
- msgid "Collapse"
3093
- msgstr ""
3094
-
3095
- #: vendor/codeinwp/templates-directory/views/template-directory-page-tpl.php:137
3096
- msgid "Enter desktop preview mode"
3097
- msgstr ""
3098
-
3099
- #: vendor/codeinwp/templates-directory/views/template-directory-page-tpl.php:140
3100
- msgid "Enter tablet preview mode"
3101
- msgstr ""
3102
-
3103
- #: vendor/codeinwp/templates-directory/views/template-directory-page-tpl.php:143
3104
- msgid "Enter mobile preview mode"
3105
- msgstr ""
3106
-
3107
- #: vendor/codeinwp/themeisle-content-forms/beaver/class-themeisle-content-forms-beaver-base.php:73
3108
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-elementor.php:130
3109
- msgid "Fields"
3110
- msgstr ""
3111
-
3112
- #: vendor/codeinwp/themeisle-content-forms/beaver/class-themeisle-content-forms-beaver-base.php:78
3113
- #: vendor/codeinwp/themeisle-content-forms/beaver/class-themeisle-content-forms-beaver-base.php:98
3114
- #: vendor/codeinwp/themeisle-content-forms/beaver/class-themeisle-content-forms-beaver-base.php:101
3115
- #: vendor/codeinwp/themeisle-content-forms/beaver/class-themeisle-content-forms-beaver-base.php:104
3116
- msgid "Field"
3117
- msgstr ""
3118
-
3119
- #: vendor/codeinwp/themeisle-content-forms/beaver/class-themeisle-content-forms-beaver-base.php:88
3120
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-elementor.php:99
3121
- msgid "Form Settings"
3122
- msgstr ""
3123
-
3124
- #: vendor/codeinwp/themeisle-content-forms/beaver/class-themeisle-content-forms-beaver-base.php:108
3125
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-elementor.php:138
3126
- msgid "Label"
3127
- msgstr ""
3128
-
3129
- #: vendor/codeinwp/themeisle-content-forms/beaver/class-themeisle-content-forms-beaver-base.php:116
3130
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-elementor.php:171
3131
- msgid "Textarea"
3132
- msgstr ""
3133
-
3134
- #: vendor/codeinwp/themeisle-content-forms/beaver/class-themeisle-content-forms-beaver-base.php:117
3135
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-elementor.php:168
3136
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-registration.php:62
3137
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-registration.php:63
3138
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-registration.php:64
3139
- msgid "Password"
3140
- msgstr ""
3141
-
3142
- #: vendor/codeinwp/themeisle-content-forms/beaver/class-themeisle-content-forms-beaver-base.php:122
3143
- msgid "Is required?"
3144
- msgstr ""
3145
-
3146
- #: vendor/codeinwp/themeisle-content-forms/beaver/class-themeisle-content-forms-beaver-base.php:124
3147
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-elementor.php:159
3148
- msgid "Required"
3149
- msgstr ""
3150
-
3151
- #: vendor/codeinwp/themeisle-content-forms/beaver/class-themeisle-content-forms-beaver-base.php:125
3152
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-elementor.php:160
3153
- msgid "Optional"
3154
- msgstr ""
3155
-
3156
- #: vendor/codeinwp/themeisle-content-forms/beaver/class-themeisle-content-forms-beaver-contact.php:19
3157
- msgid "Contact"
3158
- msgstr ""
3159
-
3160
- #: vendor/codeinwp/themeisle-content-forms/beaver/class-themeisle-content-forms-beaver-contact.php:20
3161
- msgid "A contact form."
3162
- msgstr ""
3163
-
3164
- #: vendor/codeinwp/themeisle-content-forms/beaver/class-themeisle-content-forms-beaver-newsletter.php:19
3165
- msgid "Newsletter"
3166
- msgstr ""
3167
-
3168
- #: vendor/codeinwp/themeisle-content-forms/beaver/class-themeisle-content-forms-beaver-newsletter.php:20
3169
- msgid "A simple newsletter form."
3170
- msgstr ""
3171
-
3172
- #: vendor/codeinwp/themeisle-content-forms/beaver/class-themeisle-content-forms-beaver-registration.php:19
3173
- msgid "Registration"
3174
- msgstr ""
3175
-
3176
- #: vendor/codeinwp/themeisle-content-forms/beaver/class-themeisle-content-forms-beaver-registration.php:20
3177
- msgid "A sign up form."
3178
- msgstr ""
3179
-
3180
- #: vendor/codeinwp/themeisle-content-forms/beaver/includes/frontend.php:19
3181
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-elementor.php:258
3182
- msgid "The %s setting is required!"
3183
- msgstr ""
3184
-
3185
- #: vendor/codeinwp/themeisle-content-forms/beaver/includes/frontend.php:40
3186
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-contact.php:84
3187
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-contact.php:85
3188
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-elementor.php:272
3189
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-gutenberg.php:98
3190
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-registration.php:72
3191
- msgid "Submit"
3192
- msgstr ""
3193
-
3194
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-contact.php:26
3195
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-registration.php:25
3196
- msgid "Your message has been sent!"
3197
- msgstr ""
3198
-
3199
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-contact.php:27
3200
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-registration.php:26
3201
- msgid "We failed to send your message!"
3202
- msgstr ""
3203
-
3204
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-contact.php:43
3205
- msgid "Contact Form"
3206
- msgstr ""
3207
-
3208
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-contact.php:49
3209
- msgid "Your Name"
3210
- msgstr ""
3211
-
3212
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-contact.php:56
3213
- msgid "Email address"
3214
- msgstr ""
3215
-
3216
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-contact.php:63
3217
- msgid "Phone Nr"
3218
- msgstr ""
3219
-
3220
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-contact.php:68
3221
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-contact.php:69
3222
- msgid "Message"
3223
- msgstr ""
3224
-
3225
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-contact.php:70
3226
- msgid "Your message"
3227
- msgstr ""
3228
-
3229
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-contact.php:78
3230
- msgid "Send to"
3231
- msgstr ""
3232
-
3233
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-contact.php:79
3234
- msgid "Where should we send the email?"
3235
- msgstr ""
3236
-
3237
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-contact.php:86
3238
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-registration.php:74
3239
- msgid "The Call To Action label"
3240
- msgstr ""
3241
-
3242
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-contact.php:107
3243
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-newsletter.php:99
3244
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-registration.php:95
3245
- msgid "Invalid email."
3246
- msgstr ""
3247
-
3248
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-contact.php:115
3249
- msgid "Missing name."
3250
- msgstr ""
3251
-
3252
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-contact.php:123
3253
- msgid "Missing message."
3254
- msgstr ""
3255
-
3256
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-contact.php:134
3257
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-newsletter.php:118
3258
- msgid "Wrong email configuration! Please contact administration!"
3259
- msgstr ""
3260
-
3261
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-contact.php:145
3262
- msgid "Ops! I cannot send this email!"
3263
- msgstr ""
3264
-
3265
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-contact.php:205
3266
- msgid "Mail From: "
3267
- msgstr ""
3268
-
3269
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-contact.php:213
3270
- msgid "Content Form submission from "
3271
- msgstr ""
3272
-
3273
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-contact.php:235
3274
- msgid ""
3275
- "You recieved this email because your email address is set in the content "
3276
- "form settings on "
3277
- msgstr ""
3278
-
3279
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-elementor.php:147
3280
- msgid "Placeholder"
3281
- msgstr ""
3282
-
3283
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-elementor.php:156
3284
- msgid "Requirement"
3285
- msgstr ""
3286
-
3287
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-elementor.php:190
3288
- msgid "Key"
3289
- msgstr ""
3290
-
3291
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-elementor.php:213
3292
- msgid "Form Fields"
3293
- msgstr ""
3294
-
3295
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-newsletter.php:25
3296
- msgid "Welcome to our newsletter!"
3297
- msgstr ""
3298
-
3299
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-newsletter.php:26
3300
- msgid "Action failed!"
3301
- msgstr ""
3302
-
3303
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-newsletter.php:41
3304
- msgid "Newsletter Form"
3305
- msgstr ""
3306
-
3307
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-newsletter.php:46
3308
- msgid "Subscribe to"
3309
- msgstr ""
3310
-
3311
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-newsletter.php:47
3312
- msgid "Where to send the email?"
3313
- msgstr ""
3314
-
3315
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-newsletter.php:49
3316
- msgid "MailChimp"
3317
- msgstr ""
3318
-
3319
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-newsletter.php:50
3320
- msgid "Sendinblue "
3321
- msgstr ""
3322
-
3323
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-newsletter.php:55
3324
- msgid "Access Key"
3325
- msgstr ""
3326
-
3327
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-newsletter.php:56
3328
- msgid "Provide an access key for the selected service"
3329
- msgstr ""
3330
-
3331
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-newsletter.php:61
3332
- msgid "List ID"
3333
- msgstr ""
3334
-
3335
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-newsletter.php:62
3336
- msgid ""
3337
- "The List ID (based on the seleced service) where we should subscribe the "
3338
- "user"
3339
- msgstr ""
3340
-
3341
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-newsletter.php:67
3342
- msgid "Submit Label"
3343
- msgstr ""
3344
-
3345
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-newsletter.php:68
3346
- msgid "Join Newsletter"
3347
- msgstr ""
3348
-
3349
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-registration.php:42
3350
- msgid "User Registration Form"
3351
- msgstr ""
3352
-
3353
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-registration.php:47
3354
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-registration.php:48
3355
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-registration.php:49
3356
- msgid "User Name"
3357
- msgstr ""
3358
-
3359
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-registration.php:73
3360
- msgid "Register"
3361
- msgstr ""
3362
-
3363
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-registration.php:139
3364
- msgid "This website does not allow registrations at this moment!"
3365
- msgstr ""
3366
-
3367
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-registration.php:145
3368
- msgid "Invalid user name"
3369
- msgstr ""
3370
-
3371
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-registration.php:151
3372
- msgid "Username already exists"
3373
- msgstr ""
3374
-
3375
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-registration.php:157
3376
- msgid "This email is already registered"
3377
- msgstr ""
3378
-
3379
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-registration.php:186
3380
- msgid "Welcome, "
3381
- msgstr ""
3382
-
3383
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-server.php:42
3384
- msgid "What type of form is submitted."
3385
- msgstr ""
3386
-
3387
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-server.php:47
3388
- msgid "The security key"
3389
- msgstr ""
3390
-
3391
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-server.php:52
3392
- msgid "The form must have data"
3393
- msgstr ""
3394
-
3395
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-server.php:57
3396
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-server.php:62
3397
- msgid "The form identifier."
3398
- msgstr ""
3399
-
3400
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-server.php:81
3401
- msgid "Something went wrong"
3402
- msgstr ""
3403
-
3404
- #: vendor/codeinwp/themeisle-content-forms/class-themeisle-content-forms-server.php:98
3405
- msgid "Invalid Data "
3406
- msgstr ""
3407
-
3408
- #. Plugin URI of the plugin/theme
3409
- msgid "https://themeisle.com/plugins/orbit-fox-companion"
3410
- msgstr ""
3411
-
3412
- #. Description of the plugin/theme
3413
- msgid ""
3414
- "This swiss-knife plugin comes with a quality template library, menu/sharing "
3415
- "icons modules, and newly added Elementor/BeaverBuilder page builder widgets "
3416
- "on each release."
3417
  msgstr ""
3418
 
3419
  #. Author of the plugin/theme
3420
  msgid "Themeisle"
3421
  msgstr ""
3422
 
3423
- #. Author URI of the plugin/theme
3424
- msgid "https://themeisle.com"
3425
- msgstr ""
3426
-
3427
  #: obfx_modules/beaver-widgets/modules/post-grid/includes/frontend.php:180
3428
  #. translators: %s: post title
3429
  msgctxt "comments title"
@@ -3438,7 +2346,7 @@ msgid_plural "%1$s Comments"
3438
  msgstr[0] ""
3439
  msgstr[1] ""
3440
 
3441
- #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:88
3442
  msgctxt "How many posts to skip."
3443
  msgid "Offset"
3444
  msgstr ""
2
  # This file is distributed under the GPL-2.0+.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Orbit Fox Companion 2.5.0\n"
6
  "Report-Msgid-Bugs-To: https://github.com/Codeinwp/orbit-fox/issues\n"
7
+ "POT-Creation-Date: 2018-10-03 23:55:25+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
24
  "X-Poedit-Bookmarks: \n"
25
  "X-Textdomain-Support: yes\n"
26
 
27
+ #: obfx_modules/beaver-widgets/modules/services/services.php:65
 
28
  msgid "1"
29
  msgstr ""
30
 
31
+ #: obfx_modules/beaver-widgets/modules/services/services.php:66
32
  msgid "2"
33
  msgstr ""
34
 
35
+ #: obfx_modules/beaver-widgets/modules/services/services.php:67
36
  msgid "3"
37
  msgstr ""
38
 
39
+ #: obfx_modules/beaver-widgets/modules/services/services.php:68
40
  msgid "4"
41
  msgstr ""
42
 
43
+ #: obfx_modules/beaver-widgets/modules/services/services.php:69
44
  msgid "5"
45
  msgstr ""
46
 
 
 
 
 
47
  #: core/app/class-orbit-fox-admin.php:122
48
+ #: core/app/class-orbit-fox-admin.php:123
49
  msgid "Orbit Fox"
50
  msgstr ""
51
 
52
+ #: core/app/class-orbit-fox-admin.php:133
53
  msgid "Orbit Fox General Options"
54
  msgstr ""
55
 
56
+ #: core/app/class-orbit-fox-admin.php:133
57
  msgid "General Settings"
58
  msgstr ""
59
 
60
+ #: core/app/class-orbit-fox-admin.php:147
61
  msgid ""
62
  "You have activated Orbit Fox plugin! Go to the %s to get started with the "
63
  "extra features."
64
  msgstr ""
65
 
66
+ #: core/app/class-orbit-fox-admin.php:147
67
  msgid "Dashboard Page"
68
  msgstr ""
69
 
70
+ #: core/app/class-orbit-fox-admin.php:193
71
+ #: core/app/class-orbit-fox-admin.php:249
72
  msgid "Could not process the request!"
73
  msgstr ""
74
 
75
+ #: core/app/class-orbit-fox-admin.php:219
76
  msgid "No module found! No data was updated."
77
  msgstr ""
78
 
79
+ #: core/app/class-orbit-fox-admin.php:225
80
  msgid "Something went wrong, data might not be saved!"
81
  msgstr ""
82
 
83
+ #: core/app/class-orbit-fox-admin.php:229
84
  msgid "Options updated, successfully!"
85
  msgstr ""
86
 
87
+ #: core/app/class-orbit-fox-admin.php:275
88
  msgid "No module found!"
89
  msgstr ""
90
 
91
+ #: core/app/class-orbit-fox-admin.php:279
92
  msgid "Something went wrong, can not change module status!"
93
  msgstr ""
94
 
95
+ #: core/app/class-orbit-fox-admin.php:284
96
  msgid "Module status changed!"
97
  msgstr ""
98
 
99
+ #: core/app/class-orbit-fox-admin.php:399
100
  msgid "No modules found."
101
  msgstr ""
102
 
103
+ #: core/app/class-orbit-fox-admin.php:400
104
  msgid "Please contact support for more help."
105
  msgstr ""
106
 
107
+ #: core/app/class-orbit-fox-admin.php:407
108
  msgid "No active modules."
109
  msgstr ""
110
 
111
+ #: core/app/class-orbit-fox-admin.php:408
112
  msgid "Activate a module using the toggles above."
113
  msgstr ""
114
 
165
  msgstr ""
166
 
167
  #: core/app/views/partials/module-tile-tpl.php:66
 
168
  msgid "Activate"
169
  msgstr ""
170
 
185
  msgstr ""
186
 
187
  #: obfx_modules/beaver-widgets/inc/common-functions.php:26
 
 
 
188
  msgid "Padding"
189
  msgstr ""
190
 
191
  #: obfx_modules/beaver-widgets/inc/common-functions.php:30
192
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:212
 
193
  msgid "Top"
194
  msgstr ""
195
 
200
  #: obfx_modules/beaver-widgets/inc/common-functions.php:73
201
  #: obfx_modules/beaver-widgets/inc/common-functions.php:108
202
  #: obfx_modules/beaver-widgets/inc/common-functions.php:113
203
+ #: obfx_modules/beaver-widgets/modules/services/services.php:115
204
  msgid "px"
205
  msgstr ""
206
 
207
  #: obfx_modules/beaver-widgets/inc/common-functions.php:36
208
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:214
209
  msgid "Bottom"
210
  msgstr ""
211
 
212
  #: obfx_modules/beaver-widgets/inc/common-functions.php:42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
213
  #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:89
214
  #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:140
215
  #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:221
216
  #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:288
217
  #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:333
218
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:188
219
+ #: obfx_modules/beaver-widgets/modules/services/services.php:107
220
+ #: obfx_modules/beaver-widgets/modules/services/services.php:186
221
+ msgid "Left"
222
+ msgstr ""
223
+
224
+ #: obfx_modules/beaver-widgets/inc/common-functions.php:48
225
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:90
226
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:141
227
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:222
228
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:289
229
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:334
230
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:189
231
+ #: obfx_modules/beaver-widgets/modules/services/services.php:109
232
+ #: obfx_modules/beaver-widgets/modules/services/services.php:188
233
  msgid "Right"
234
  msgstr ""
235
 
236
  #: obfx_modules/beaver-widgets/inc/common-functions.php:64
 
237
  msgid "Typography"
238
  msgstr ""
239
 
270
  msgstr ""
271
 
272
  #: obfx_modules/beaver-widgets/inc/common-functions.php:100
 
 
 
273
  msgid "Normal"
274
  msgstr ""
275
 
310
  msgid "Custom Query"
311
  msgstr ""
312
 
313
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:33
 
314
  msgid "Post Type"
315
  msgstr ""
316
 
317
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:43
318
  msgid "Order"
319
  msgstr ""
320
 
321
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:45
322
  msgid "Descending"
323
  msgstr ""
324
 
325
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:46
326
  msgid "Ascending"
327
  msgstr ""
328
 
329
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:57
330
  msgid "Order By"
331
  msgstr ""
332
 
333
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:59
334
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:207
335
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-testimonial.php:168
 
336
  msgid "Author"
337
  msgstr ""
338
 
339
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:60
340
  msgid "Comment Count"
341
  msgstr ""
342
 
343
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:61
344
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:208
 
 
345
  msgid "Date"
346
  msgstr ""
347
 
348
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:62
349
  msgid "Date Last Modified"
350
  msgstr ""
351
 
352
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:63
353
  msgid "ID"
354
  msgstr ""
355
 
356
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:64
357
  msgid "Menu Order"
358
  msgstr ""
359
 
360
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:65
361
  msgid "Meta Value (Alphabetical)"
362
  msgstr ""
363
 
364
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:66
365
  msgid "Meta Value (Numeric)"
366
  msgstr ""
367
 
368
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:67
 
369
  msgid "Random"
370
  msgstr ""
371
 
372
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:68
373
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:57
374
+ #: obfx_modules/beaver-widgets/modules/services/services.php:230
375
  #: obfx_modules/companion-legacy/inc/rhea/widgets/contact.widget.php:65
376
  #: obfx_modules/companion-legacy/inc/rhea/widgets/features.widget.php:80
377
  #: obfx_modules/companion-legacy/inc/rhea/widgets/hours.widget.php:202
381
  #: obfx_modules/companion-legacy/inc/shop-isle/customizer.php:228
382
  #: obfx_modules/companion-legacy/inc/shop-isle/customizer.php:287
383
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-focus.php:167
 
 
 
 
 
 
384
  msgid "Title"
385
  msgstr ""
386
 
387
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:87
388
  msgid "Meta Key"
389
  msgstr ""
390
 
391
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:100
392
  msgid "Skip this many posts that match the specified criteria."
393
  msgstr ""
394
 
395
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:110
396
  msgid "Posts per page"
397
  msgstr ""
398
 
399
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:113
400
  msgid "-1 means all posts"
401
  msgstr ""
402
 
403
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:123
404
+ #: obfx_modules/beaver-widgets/modules/services/services.php:62
405
  msgid "Number of columns"
406
  msgstr ""
407
 
408
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:134
409
  msgid "Filter"
410
  msgstr ""
411
 
412
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:152
413
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:170
414
  msgid "Enter a list of %1$s."
415
  msgstr ""
416
 
417
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:189
418
  msgid "Authors"
419
  msgstr ""
420
 
421
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:190
422
  msgid "Enter a list of authors usernames."
423
  msgstr ""
424
 
425
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:200
426
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:175
427
  msgid "Appearance"
428
  msgstr ""
429
 
430
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:209
431
  msgid "Vertical align"
432
  msgstr ""
433
 
434
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:213
435
  msgid "Middle"
436
  msgstr ""
437
 
438
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:225
439
  msgid "Display type"
440
  msgstr ""
441
 
442
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:228
 
 
443
  msgid "Grid"
444
  msgstr ""
445
 
446
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:229
 
447
  msgid "List"
448
  msgstr ""
449
 
450
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:240
451
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:179
452
+ #: obfx_modules/beaver-widgets/modules/services/services.php:74
453
  msgid "Card layout"
454
  msgstr ""
455
 
456
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:250
457
  msgid "Margin top"
458
  msgstr ""
459
 
460
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:262
461
  msgid "Margin bottom"
462
  msgstr ""
463
 
464
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:274
465
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:282
466
+ #: obfx_modules/beaver-widgets/modules/services/services.php:79
467
  msgid "Background color"
468
  msgstr ""
469
 
470
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:292
471
  msgid "Link color"
472
  msgstr ""
473
 
474
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:308
475
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:439
476
  msgid "Text color"
477
  msgstr ""
478
 
487
  #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:28
488
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:33
489
  #: obfx_modules/beaver-widgets/modules/services/services.php:33
 
 
 
490
  msgid "Orbit Fox Modules"
491
  msgstr ""
492
 
493
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:52
494
  msgid "Loop Settings"
495
  msgstr ""
496
 
497
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:56
498
  msgid "Image options"
499
  msgstr ""
500
 
501
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:63
502
  msgid "Show post thumbnail"
503
  msgstr ""
504
 
505
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:68
506
  msgid "Link in thumbnail"
507
  msgstr ""
508
 
509
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:73
510
  msgid "Enable thumbnail shadow"
511
  msgstr ""
512
 
513
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:78
514
  msgid "Image size"
515
  msgstr ""
516
 
517
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:85
518
  msgid "Image alignment"
519
  msgstr ""
520
 
521
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:88
522
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:139
523
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:220
524
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:287
525
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:332
526
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:187
527
+ #: obfx_modules/beaver-widgets/modules/services/services.php:108
528
+ #: obfx_modules/beaver-widgets/modules/services/services.php:187
 
 
 
 
 
529
  msgid "Center"
530
  msgstr ""
531
 
532
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:119
533
  msgid "Title options"
534
  msgstr ""
535
 
536
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:126
537
  msgid "Show post title"
538
  msgstr ""
539
 
540
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:131
541
  msgid "Link on title"
542
  msgstr ""
543
 
544
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:136
545
  msgid "Title alignment"
546
  msgstr ""
547
 
548
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:147
549
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:66
550
  msgid "Title tag"
551
  msgstr ""
552
 
553
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:150
554
  msgid "H1"
555
  msgstr ""
556
 
557
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:151
558
  msgid "H2"
559
  msgstr ""
560
 
561
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:152
562
  msgid "H3"
563
  msgstr ""
564
 
565
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:153
566
  msgid "H4"
567
  msgstr ""
568
 
569
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:154
570
  msgid "H5"
571
  msgstr ""
572
 
573
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:155
574
  msgid "H6"
575
  msgstr ""
576
 
577
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:156
578
  msgid "span"
579
  msgstr ""
580
 
581
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:157
582
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:75
583
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:98
 
 
584
  msgid "p"
585
  msgstr ""
586
 
587
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:158
588
  msgid "div"
589
  msgstr ""
590
 
591
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:186
592
  msgid "Meta options"
593
  msgstr ""
594
 
595
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:193
596
  msgid "Show post meta"
597
  msgstr ""
598
 
599
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:198
600
  msgid "Show icons"
601
  msgstr ""
602
 
603
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:200
604
  msgid "If icons doesn't show you have to enqueue FontAwesome in your theme."
605
  msgstr ""
606
 
607
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:204
 
608
  msgid "Display"
609
  msgstr ""
610
 
611
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:209
 
 
 
 
612
  msgid "Category"
613
  msgstr ""
614
 
615
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:210
 
616
  msgid "Tags"
617
  msgstr ""
618
 
619
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:211
 
620
  msgid "Comments"
621
  msgstr ""
622
 
623
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:217
624
  msgid "Meta alignment"
625
  msgstr ""
626
 
627
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:250
628
  msgid "Content options"
629
  msgstr ""
630
 
631
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:257
632
  msgid "Show post content"
633
  msgstr ""
634
 
635
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:262
636
  msgid "Show read more"
637
  msgstr ""
638
 
639
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:267
640
  msgid "Number of words"
641
  msgstr ""
642
 
643
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:273
644
  msgid "Read more text"
645
  msgstr ""
646
 
647
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:274
 
 
648
  msgid "Read more"
649
  msgstr ""
650
 
651
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:284
652
  msgid "Text alignment"
653
  msgstr ""
654
 
655
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:318
656
  msgid "Pagination options"
657
  msgstr ""
658
 
659
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:325
660
  msgid "Enable pagination"
661
  msgstr ""
662
 
663
+ #: obfx_modules/beaver-widgets/modules/post-grid/post-grid.php:329
664
  msgid "Pagination alignment"
665
  msgstr ""
666
 
674
  "offer."
675
  msgstr ""
676
 
677
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:50
678
+ #: obfx_modules/beaver-widgets/modules/services/services.php:48
 
 
 
679
  msgid "Content"
680
  msgstr ""
681
 
682
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:53
683
  msgid "Plan Header"
684
  msgstr ""
685
 
686
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:58
687
  msgid "Plan title"
688
  msgstr ""
689
 
 
 
 
 
 
 
 
690
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:69
691
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:92
692
+ msgid "h1"
 
 
693
  msgstr ""
694
 
695
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:70
696
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:93
697
+ msgid "h2"
 
 
698
  msgstr ""
699
 
700
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:71
701
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:94
702
+ msgid "h3"
 
 
703
  msgstr ""
704
 
705
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:72
706
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:95
707
+ msgid "h4"
 
 
708
  msgstr ""
709
 
710
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:73
711
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:96
712
+ msgid "h5"
713
+ msgstr ""
714
+
715
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:74
716
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:97
717
  msgid "h6"
718
  msgstr ""
719
 
720
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:80
721
  #: obfx_modules/companion-legacy/inc/azera-shop/inc/settings.php:48
722
  #: obfx_modules/companion-legacy/inc/azera-shop/inc/settings.php:111
723
  #: obfx_modules/companion-legacy/inc/azera-shop/inc/settings.php:182
727
  #: obfx_modules/companion-legacy/inc/rhea/widgets/icon-box.widget.php:91
728
  #: obfx_modules/companion-legacy/inc/shop-isle/customizer.php:142
729
  #: obfx_modules/companion-legacy/inc/shop-isle/customizer.php:240
 
 
730
  msgid "Subtitle"
731
  msgstr ""
732
 
733
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:81
734
  msgid "Plan subtitle"
735
  msgstr ""
736
 
737
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:89
738
  msgid "Subtitle tag"
739
  msgstr ""
740
 
741
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:104
 
 
742
  msgid "Price Tag"
743
  msgstr ""
744
 
745
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:108
 
 
 
 
 
746
  msgid "Price"
747
  msgstr ""
748
 
749
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:117
 
 
 
750
  msgid "Currency"
751
  msgstr ""
752
 
753
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:126
754
  msgid "Currency position"
755
  msgstr ""
756
 
757
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:129
 
 
758
  msgid "Before"
759
  msgstr ""
760
 
761
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:130
 
 
762
  msgid "After"
763
  msgstr ""
764
 
765
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:135
 
 
766
  msgid "Period"
767
  msgstr ""
768
 
769
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:136
 
 
770
  msgid "/month"
771
  msgstr ""
772
 
773
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:145
774
  msgid "Features list"
775
  msgstr ""
776
 
777
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:150
778
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:562
779
  #: obfx_modules/companion-legacy/inc/hestia/inc/features/feature-features-section.php:103
 
 
 
 
 
780
  msgid "Feature"
781
  msgstr ""
782
 
783
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:157
784
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:162
 
 
 
 
 
785
  msgid "Button"
786
  msgstr ""
787
 
788
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:161
 
789
  msgid "Button text"
790
  msgstr ""
791
 
792
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:170
793
  msgid "Button link"
794
  msgstr ""
795
 
796
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:184
797
  msgid "Align"
798
  msgstr ""
799
 
800
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:197
801
  msgid "Header Style"
802
  msgstr ""
803
 
804
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:212
805
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:341
806
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:409
807
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:490
808
  msgid "Colors"
809
  msgstr ""
810
 
811
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:216
812
  msgid "Title color"
813
  msgstr ""
814
 
815
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:229
816
  msgid "Subtitle color"
817
  msgstr ""
818
 
819
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:244
820
  msgid "Title typography"
821
  msgstr ""
822
 
823
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:251
824
  msgid "Subtitle typography"
825
  msgstr ""
826
 
827
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:257
828
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:265
829
  #: obfx_modules/companion-legacy/inc/shop-isle/customizer.php:252
830
  msgid "Background"
831
  msgstr ""
832
 
833
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:261
 
 
 
834
  msgid "Type"
835
  msgstr ""
836
 
837
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:264
838
+ #: obfx_modules/beaver-widgets/modules/services/services.php:154
839
+ #: obfx_modules/beaver-widgets/modules/services/services.php:193
 
 
 
 
 
 
840
  msgid "Color"
841
  msgstr ""
842
 
843
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:266
844
  msgid "Gradient"
845
  msgstr ""
846
 
847
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:296
848
  msgid "Photo Field"
849
  msgstr ""
850
 
851
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:301
852
  msgid "Gradient color 1"
853
  msgstr ""
854
 
855
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:306
856
  msgid "Gradient color 2"
857
  msgstr ""
858
 
859
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:311
860
  msgid "Orientation"
861
  msgstr ""
862
 
863
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:314
864
  msgid "Horizontal"
865
  msgstr ""
866
 
867
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:315
868
  msgid "Vertical"
869
  msgstr ""
870
 
871
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:316
872
  msgid "Diagonal bottom"
873
  msgstr ""
874
 
875
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:317
876
  msgid "Diagonal top"
877
  msgstr ""
878
 
879
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:318
880
  msgid "Radial"
881
  msgstr ""
882
 
883
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:326
884
  msgid "Price Style"
885
  msgstr ""
886
 
887
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:345
888
  msgid "Price color"
889
  msgstr ""
890
 
891
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:358
892
  msgid "Currency color"
893
  msgstr ""
894
 
895
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:371
896
  msgid "Period color"
897
  msgstr ""
898
 
899
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:394
900
  msgid "Features Style"
901
  msgstr ""
902
 
903
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:413
904
+ #: obfx_modules/beaver-widgets/modules/services/services.php:244
905
  msgid "Icon color"
906
  msgstr ""
907
 
908
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:426
909
  msgid "Bold text color"
910
  msgstr ""
911
 
912
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:462
913
  msgid "Button Style"
914
  msgstr ""
915
 
916
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:494
917
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:576
918
+ #: obfx_modules/beaver-widgets/modules/services/services.php:234
919
  #: obfx_modules/companion-legacy/inc/hestia/inc/features/feature-ribbon-section.php:92
920
  #: obfx_modules/companion-legacy/inc/rhea/widgets/features.widget.php:84
921
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-focus.php:176
922
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-testimonial.php:195
 
 
 
 
923
  msgid "Text"
924
  msgstr ""
925
 
926
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:507
927
  msgid "Text on hover"
928
  msgstr ""
929
 
930
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:520
931
  msgid "Button background"
932
  msgstr ""
933
 
934
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:533
935
  msgid "Button background on hover"
936
  msgstr ""
937
 
938
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:565
939
+ #: obfx_modules/beaver-widgets/modules/services/services.php:100
940
+ #: obfx_modules/beaver-widgets/modules/services/services.php:150
941
+ #: obfx_modules/beaver-widgets/modules/services/services.php:179
942
+ #: obfx_modules/beaver-widgets/modules/services/services.php:223
943
  msgid "General"
944
  msgstr ""
945
 
946
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:572
947
  msgid "Bold text"
948
  msgstr ""
949
 
950
+ #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:580
951
+ #: obfx_modules/beaver-widgets/modules/services/services.php:239
952
  #: obfx_modules/companion-legacy/inc/rhea/widgets/features.widget.php:65
953
  #: obfx_modules/companion-legacy/inc/rhea/widgets/icon-box.widget.php:72
 
 
 
 
954
  msgid "Icon"
955
  msgstr ""
956
 
957
  #: obfx_modules/beaver-widgets/modules/services/services.php:31
958
  #: obfx_modules/companion-legacy/inc/azera-shop/sections/azera_shop_our_services_section.php:20
959
  #: obfx_modules/companion-legacy/inc/llorix-one-companion/sections/our-services-section.php:24
 
 
 
960
  msgid "Services"
961
  msgstr ""
962
 
964
  msgid "An overview of the products or services."
965
  msgstr ""
966
 
967
+ #: obfx_modules/beaver-widgets/modules/services/services.php:56
968
+ #: obfx_modules/beaver-widgets/modules/services/services.php:220
969
  msgid "Service"
970
  msgstr ""
971
 
972
+ #: obfx_modules/beaver-widgets/modules/services/services.php:97
973
  msgid "Icon style"
974
  msgstr ""
975
 
976
+ #: obfx_modules/beaver-widgets/modules/services/services.php:104
977
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-team.php:278
978
  msgid "Position"
979
  msgstr ""
980
 
981
+ #: obfx_modules/beaver-widgets/modules/services/services.php:114
 
982
  msgid "Size"
983
  msgstr ""
984
 
985
+ #: obfx_modules/beaver-widgets/modules/services/services.php:147
986
  msgid "Title style"
987
  msgstr ""
988
 
989
+ #: obfx_modules/beaver-widgets/modules/services/services.php:176
990
  msgid "Content style"
991
  msgstr ""
992
 
993
+ #: obfx_modules/beaver-widgets/modules/services/services.php:183
 
 
 
 
994
  msgid "Alignment"
995
  msgstr ""
996
 
997
+ #: obfx_modules/beaver-widgets/modules/services/services.php:249
 
998
  msgid "Link to"
999
  msgstr ""
1000
 
1279
 
1280
  #: obfx_modules/companion-legacy/inc/hestia/inc/features/feature-features-section.php:24
1281
  #: obfx_modules/companion-legacy/inc/hestia/inc/features/feature-features-section.php:34
 
 
 
1282
  msgid "Features"
1283
  msgstr ""
1284
 
1329
  #: obfx_modules/companion-legacy/inc/rhea/widgets/features.widget.php:88
1330
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-clients.php:115
1331
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-focus.php:183
 
 
 
1332
  msgid "Link"
1333
  msgstr ""
1334
 
1520
  msgstr ""
1521
 
1522
  #: obfx_modules/companion-legacy/inc/rhea/widgets/contact.widget.php:77
 
 
 
 
 
 
 
 
 
 
1523
  msgid "Email"
1524
  msgstr ""
1525
 
1526
  #: obfx_modules/companion-legacy/inc/rhea/widgets/contact.widget.php:81
 
 
1527
  msgid "Phone"
1528
  msgstr ""
1529
 
1624
 
1625
  #: obfx_modules/companion-legacy/inc/rhea/widgets/icon-box.widget.php:96
1626
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-team.php:285
 
 
1627
  msgid "Description"
1628
  msgstr ""
1629
 
1803
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-focus.php:192
1804
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-team.php:348
1805
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-testimonial.php:202
 
 
 
 
1806
  msgid "Image"
1807
  msgstr ""
1808
 
1840
  msgstr ""
1841
 
1842
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-team.php:269
 
 
1843
  msgid "Name"
1844
  msgstr ""
1845
 
1919
  msgid "Unregister Site"
1920
  msgstr ""
1921
 
1922
+ #: obfx_modules/gutenberg-blocks/blocks/chart/class-chart-pie-block.php:37
1923
+ msgid "Label"
1924
+ msgstr ""
1925
+
1926
+ #: obfx_modules/gutenberg-blocks/blocks/chart/class-chart-pie-block.php:37
1927
+ msgid "Data"
1928
+ msgstr ""
1929
+
1930
+ #: obfx_modules/gutenberg-blocks/blocks/chart/class-chart-pie-block.php:38
1931
+ msgid "Dogs"
1932
+ msgstr ""
1933
+
1934
+ #: obfx_modules/gutenberg-blocks/blocks/chart/class-chart-pie-block.php:39
1935
+ msgid "Cats"
1936
+ msgstr ""
1937
+
1938
+ #: obfx_modules/gutenberg-blocks/blocks/chart/class-chart-pie-block.php:40
1939
+ msgid "Racoons"
1940
+ msgstr ""
1941
+
1942
+ #: obfx_modules/gutenberg-blocks/blocks/chart/class-chart-pie-block.php:41
1943
+ msgid "Monkeys"
1944
+ msgstr ""
1945
+
1946
+ #: obfx_modules/gutenberg-blocks/blocks/chart/class-chart-pie-block.php:47
1947
+ msgid "Animals"
1948
+ msgstr ""
1949
+
1950
+ #: obfx_modules/gutenberg-blocks/blocks/font-awesome-icons/class-font-awesome-icons-server.php:133
1951
+ #: obfx_modules/gutenberg-blocks/blocks/font-awesome-icons/class-font-awesome-icons-server.php:145
1952
+ #: obfx_modules/gutenberg-blocks/blocks/plugin-card/class-plugin-card-server.php:148
1953
+ #: obfx_modules/gutenberg-blocks/blocks/plugin-card/class-plugin-card-server.php:160
1954
  #: obfx_modules/image-cdn/inc/class-orbit-fox-connector.php:214
1955
  #: obfx_modules/image-cdn/inc/class-orbit-fox-connector.php:226
1956
+ #: obfx_modules/image-cdn/inc/class-orbit-fox-image-replacer.php:615
1957
+ #: obfx_modules/image-cdn/inc/class-orbit-fox-image-replacer.php:627
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1958
  msgid "Cheatin&#8217; huh?"
1959
  msgstr ""
1960
 
1961
+ #: obfx_modules/gutenberg-blocks/blocks/plugin-card/class-plugin-card-block.php:84
1962
+ msgid "Plugin Stats"
1963
+ msgstr ""
1964
+
1965
+ #: obfx_modules/gutenberg-blocks/blocks/plugin-card/class-plugin-card-block.php:88
1966
+ msgid "active installs"
1967
+ msgstr ""
1968
+
1969
+ #: obfx_modules/gutenberg-blocks/blocks/plugin-card/class-plugin-card-block.php:92
1970
+ msgid "version"
1971
+ msgstr ""
1972
+
1973
+ #: obfx_modules/gutenberg-blocks/blocks/plugin-card/class-plugin-card-block.php:96
1974
+ msgid "tested up to"
1975
+ msgstr ""
1976
+
1977
+ #: obfx_modules/gutenberg-blocks/blocks/plugin-card/class-plugin-card-block.php:102
1978
+ msgid "Download"
1979
+ msgstr ""
1980
+
1981
+ #: obfx_modules/gutenberg-blocks/blocks/plugin-card/class-plugin-card-block.php:122
1982
+ #: obfx_modules/gutenberg-blocks/blocks/plugin-card/class-plugin-card-server.php:73
1983
+ msgid "Something went wrong"
1984
+ msgstr ""
1985
+
1986
+ #: obfx_modules/gutenberg-blocks/blocks/plugin-card/class-plugin-card-server.php:55
1987
+ msgid "The form must have data"
1988
+ msgstr ""
1989
+
1990
+ #: obfx_modules/gutenberg-blocks/blocks/post-grid/class-posts-grid-block.php:142
1991
+ msgid "on"
1992
+ msgstr ""
1993
+
1994
+ #: obfx_modules/gutenberg-blocks/blocks/post-grid/class-posts-grid-block.php:150
1995
+ msgid "by"
1996
+ msgstr ""
1997
+
1998
+ #: obfx_modules/gutenberg-blocks/blocks/sharing-icons/class-sharing-icons-block.php:43
1999
+ msgid "Facebook"
2000
+ msgstr ""
2001
+
2002
+ #: obfx_modules/gutenberg-blocks/blocks/sharing-icons/class-sharing-icons-block.php:49
2003
+ msgid "Twitter"
2004
+ msgstr ""
2005
+
2006
+ #: obfx_modules/gutenberg-blocks/blocks/sharing-icons/class-sharing-icons-block.php:55
2007
+ msgid "Google Plus"
2008
+ msgstr ""
2009
+
2010
+ #: obfx_modules/gutenberg-blocks/blocks/sharing-icons/class-sharing-icons-block.php:61
2011
+ msgid "Linkedin"
2012
+ msgstr ""
2013
+
2014
+ #: obfx_modules/gutenberg-blocks/blocks/sharing-icons/class-sharing-icons-block.php:67
2015
+ msgid "Pinterest"
2016
+ msgstr ""
2017
+
2018
+ #: obfx_modules/gutenberg-blocks/blocks/sharing-icons/class-sharing-icons-block.php:73
2019
+ msgid "Tumblr"
2020
+ msgstr ""
2021
+
2022
+ #: obfx_modules/gutenberg-blocks/blocks/sharing-icons/class-sharing-icons-block.php:79
2023
+ msgid "Reddit"
2024
+ msgstr ""
2025
+
2026
+ #: obfx_modules/gutenberg-blocks/init.php:24
2027
+ msgid "Gutenberg Blocks"
2028
+ msgstr ""
2029
+
2030
+ #: obfx_modules/gutenberg-blocks/init.php:25
2031
+ msgid "A set of awesome Gutenberg Blocks!"
2032
+ msgstr ""
2033
+
2034
+ #: obfx_modules/gutenberg-blocks/init.php:222
2035
+ msgid "Orbit Fox Blocks"
2036
+ msgstr ""
2037
+
2038
+ #: obfx_modules/gutenberg-blocks/init.php:239
2039
+ msgid "Google Map API key for the Gutenberg block plugin."
2040
+ msgstr ""
2041
+
2042
  #: obfx_modules/image-cdn/init.php:43
2043
  msgid "Image Optimization &amp; CDN Module"
2044
  msgstr ""
2248
  msgid ""
2249
  "OrbitFox<sup>&copy;</sup> will need your current theme slug in order to run "
2250
  "a visual comparison report between your current and latest version. We will "
2251
+ "need your consent in order to do this. <br/>Read <a "
2252
+ "href=\"https://orbitfox.com/safe-updates/\" "
2253
+ "target=\"_blank\"><b>more</b></a> about this process."
2254
  msgstr ""
2255
 
2256
  #: obfx_modules/safe-updates/init.php:337
2296
  msgstr ""
2297
 
2298
  #: obfx_modules/template-directory/init.php:98
 
2299
  msgid "Orbit Fox Template Directory"
2300
  msgstr ""
2301
 
2317
  "we will send downtime alerts."
2318
  msgstr ""
2319
 
2320
+ #. Author URI of the plugin/theme
2321
+ msgid "https://orbitfox.com/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2322
  msgstr ""
2323
 
2324
+ #. Description of the plugin/theme
2325
+ msgid ""
2326
+ "This swiss-knife plugin comes with a quality template library, menu/sharing "
2327
+ "icons modules, and newly added Elementor/BeaverBuilder page builder widgets "
2328
+ "on each release."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2329
  msgstr ""
2330
 
2331
  #. Author of the plugin/theme
2332
  msgid "Themeisle"
2333
  msgstr ""
2334
 
 
 
 
 
2335
  #: obfx_modules/beaver-widgets/modules/post-grid/includes/frontend.php:180
2336
  #. translators: %s: post title
2337
  msgctxt "comments title"
2346
  msgstr[0] ""
2347
  msgstr[1] ""
2348
 
2349
+ #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:97
2350
  msgctxt "How many posts to skip."
2351
  msgid "Offset"
2352
  msgstr ""
obfx_modules/gutenberg-blocks/Readme.md ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ OrbitFox Gutenberg Blocks
2
+ ---------------------
3
+
4
+ General structure of this module should be as the following:
5
+
6
+ * Load the transpiled code from the `build` dir, aka the "dist" folder.
7
+ * The functionality for each block should be isolated in it's own folder inside the `blocks` dir.
8
+ * If a block needs server side rendering than it should have an extension class of the `/OrbitFox/Gutenberg_Block` class.
9
+ * Common components, like a placeholder, can easily stand inside the `components` dir.
10
+ * Any server side data handling should happen in the `store`.
obfx_modules/gutenberg-blocks/assets/fontawesome/LICENSE.txt ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Font Awesome Free License
2
+ -------------------------
3
+
4
+ Font Awesome Free is free, open source, and GPL friendly. You can use it for
5
+ commercial projects, open source projects, or really almost whatever you want.
6
+ Full Font Awesome Free license: https://fontawesome.com/license.
7
+
8
+ # Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/)
9
+ In the Font Awesome Free download, the CC BY 4.0 license applies to all icons
10
+ packaged as SVG and JS file types.
11
+
12
+ # Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL)
13
+ In the Font Awesome Free download, the SIL OLF license applies to all icons
14
+ packaged as web and desktop font files.
15
+
16
+ # Code: MIT License (https://opensource.org/licenses/MIT)
17
+ In the Font Awesome Free download, the MIT license applies to all non-font and
18
+ non-icon files.
19
+
20
+ # Attribution
21
+ Attribution is required by MIT, SIL OLF, and CC BY licenses. Downloaded Font
22
+ Awesome Free files already contain embedded comments with sufficient
23
+ attribution, so you shouldn't need to do anything additional when using these
24
+ files normally.
25
+
26
+ We've kept attribution comments terse, so we ask that you do not actively work
27
+ to remove them from files, especially code. They're a great way for folks to
28
+ learn about Font Awesome.
29
+
30
+ # Brand Icons
31
+ All brand icons are trademarks of their respective owners. The use of these
32
+ trademarks does not indicate endorsement of the trademark holder by Font
33
+ Awesome, nor vice versa. **Please do not use brand logos for any purpose except
34
+ to represent the company, product, or service to which they refer.**
obfx_modules/gutenberg-blocks/assets/fontawesome/css/all.css ADDED
@@ -0,0 +1,4886 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*!
2
+ * Font Awesome Free 5.2.0 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ */
5
+ .fa,
6
+ .fas,
7
+ .far,
8
+ .fal,
9
+ .fab {
10
+ display: inline-block;
11
+ font-style: normal;
12
+ font-variant: normal;
13
+ -webkit-font-smoothing: antialiased;
14
+ -moz-osx-font-smoothing: grayscale;
15
+ line-height: 1;
16
+ text-rendering: auto;
17
+ }
18
+
19
+ .fa-lg {
20
+ font-size: 1.33333em;
21
+ line-height: 0.75em;
22
+ vertical-align: -0.0667em;
23
+ }
24
+
25
+ .fa-xs {
26
+ font-size: 0.75em;
27
+ }
28
+
29
+ .fa-sm {
30
+ font-size: 0.875em;
31
+ }
32
+
33
+ .fa-1x {
34
+ font-size: 1em;
35
+ }
36
+
37
+ .fa-2x {
38
+ font-size: 2em;
39
+ }
40
+
41
+ .fa-3x {
42
+ font-size: 3em;
43
+ }
44
+
45
+ .fa-4x {
46
+ font-size: 4em;
47
+ }
48
+
49
+ .fa-5x {
50
+ font-size: 5em;
51
+ }
52
+
53
+ .fa-6x {
54
+ font-size: 6em;
55
+ }
56
+
57
+ .fa-7x {
58
+ font-size: 7em;
59
+ }
60
+
61
+ .fa-8x {
62
+ font-size: 8em;
63
+ }
64
+
65
+ .fa-9x {
66
+ font-size: 9em;
67
+ }
68
+
69
+ .fa-10x {
70
+ font-size: 10em;
71
+ }
72
+
73
+ .fa-fw {
74
+ width: 1.25em;
75
+ text-align: center;
76
+ }
77
+
78
+ .fa-ul {
79
+ margin-left: 2.5em;
80
+ padding-left: 0;
81
+ list-style-type: none;
82
+ }
83
+
84
+ .fa-ul > li {
85
+ position: relative;
86
+ }
87
+
88
+ .fa-li {
89
+ position: absolute;
90
+ left: -2em;
91
+ width: 2em;
92
+ line-height: inherit;
93
+ text-align: center;
94
+ }
95
+
96
+ .fa-border {
97
+ padding: 0.2em 0.25em 0.15em;
98
+ border: solid 0.08em #eee;
99
+ border-radius: 0.1em;
100
+ }
101
+
102
+ .fa-pull-left {
103
+ float: left;
104
+ }
105
+
106
+ .fa-pull-right {
107
+ float: right;
108
+ }
109
+
110
+ .fa.fa-pull-left,
111
+ .fas.fa-pull-left,
112
+ .far.fa-pull-left,
113
+ .fal.fa-pull-left,
114
+ .fab.fa-pull-left {
115
+ margin-right: 0.3em;
116
+ }
117
+
118
+ .fa.fa-pull-right,
119
+ .fas.fa-pull-right,
120
+ .far.fa-pull-right,
121
+ .fal.fa-pull-right,
122
+ .fab.fa-pull-right {
123
+ margin-left: 0.3em;
124
+ }
125
+
126
+ .fa-spin {
127
+ -webkit-animation: fa-spin 2s infinite linear;
128
+ animation: fa-spin 2s infinite linear;
129
+ }
130
+
131
+ .fa-pulse {
132
+ -webkit-animation: fa-spin 1s infinite steps(8);
133
+ animation: fa-spin 1s infinite steps(8);
134
+ }
135
+
136
+ @-webkit-keyframes fa-spin {
137
+ 0% {
138
+ -webkit-transform: rotate(0deg);
139
+ transform: rotate(0deg);
140
+ }
141
+
142
+ 100% {
143
+ -webkit-transform: rotate(360deg);
144
+ transform: rotate(360deg);
145
+ }
146
+ }
147
+
148
+ @keyframes fa-spin {
149
+ 0% {
150
+ -webkit-transform: rotate(0deg);
151
+ transform: rotate(0deg);
152
+ }
153
+
154
+ 100% {
155
+ -webkit-transform: rotate(360deg);
156
+ transform: rotate(360deg);
157
+ }
158
+ }
159
+
160
+ .fa-rotate-90 {
161
+ -webkit-transform: rotate(90deg);
162
+ -ms-transform: rotate(90deg);
163
+ transform: rotate(90deg);
164
+
165
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
166
+ }
167
+
168
+ .fa-rotate-180 {
169
+ -webkit-transform: rotate(180deg);
170
+ -ms-transform: rotate(180deg);
171
+ transform: rotate(180deg);
172
+
173
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
174
+ }
175
+
176
+ .fa-rotate-270 {
177
+ -webkit-transform: rotate(270deg);
178
+ -ms-transform: rotate(270deg);
179
+ transform: rotate(270deg);
180
+
181
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
182
+ }
183
+
184
+ .fa-flip-horizontal {
185
+ -webkit-transform: scale(-1, 1);
186
+ -ms-transform: scale(-1, 1);
187
+ transform: scale(-1, 1);
188
+
189
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
190
+ }
191
+
192
+ .fa-flip-vertical {
193
+ -webkit-transform: scale(1, -1);
194
+ -ms-transform: scale(1, -1);
195
+ transform: scale(1, -1);
196
+
197
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
198
+ }
199
+
200
+ .fa-flip-horizontal.fa-flip-vertical {
201
+ -webkit-transform: scale(-1, -1);
202
+ -ms-transform: scale(-1, -1);
203
+ transform: scale(-1, -1);
204
+
205
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
206
+ }
207
+
208
+ :root .fa-rotate-90,
209
+ :root .fa-rotate-180,
210
+ :root .fa-rotate-270,
211
+ :root .fa-flip-horizontal,
212
+ :root .fa-flip-vertical {
213
+ -webkit-filter: none;
214
+ filter: none;
215
+ }
216
+
217
+ .fa-stack {
218
+ display: inline-block;
219
+ position: relative;
220
+ width: 2em;
221
+ height: 2em;
222
+ line-height: 2em;
223
+ vertical-align: middle;
224
+ }
225
+
226
+ .fa-stack-1x,
227
+ .fa-stack-2x {
228
+ position: absolute;
229
+ left: 0;
230
+ width: 100%;
231
+ text-align: center;
232
+ }
233
+
234
+ .fa-stack-1x {
235
+ line-height: inherit;
236
+ }
237
+
238
+ .fa-stack-2x {
239
+ font-size: 2em;
240
+ }
241
+
242
+ .fa-inverse {
243
+ color: #fff;
244
+ }
245
+
246
+ /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
247
+ readers do not read off random characters that represent icons */
248
+ .fa-500px:before {
249
+ content: "\f26e";
250
+ }
251
+
252
+ .fa-accessible-icon:before {
253
+ content: "\f368";
254
+ }
255
+
256
+ .fa-accusoft:before {
257
+ content: "\f369";
258
+ }
259
+
260
+ .fa-address-book:before {
261
+ content: "\f2b9";
262
+ }
263
+
264
+ .fa-address-card:before {
265
+ content: "\f2bb";
266
+ }
267
+
268
+ .fa-adjust:before {
269
+ content: "\f042";
270
+ }
271
+
272
+ .fa-adn:before {
273
+ content: "\f170";
274
+ }
275
+
276
+ .fa-adversal:before {
277
+ content: "\f36a";
278
+ }
279
+
280
+ .fa-affiliatetheme:before {
281
+ content: "\f36b";
282
+ }
283
+
284
+ .fa-air-freshener:before {
285
+ content: "\f5d0";
286
+ }
287
+
288
+ .fa-algolia:before {
289
+ content: "\f36c";
290
+ }
291
+
292
+ .fa-align-center:before {
293
+ content: "\f037";
294
+ }
295
+
296
+ .fa-align-justify:before {
297
+ content: "\f039";
298
+ }
299
+
300
+ .fa-align-left:before {
301
+ content: "\f036";
302
+ }
303
+
304
+ .fa-align-right:before {
305
+ content: "\f038";
306
+ }
307
+
308
+ .fa-allergies:before {
309
+ content: "\f461";
310
+ }
311
+
312
+ .fa-amazon:before {
313
+ content: "\f270";
314
+ }
315
+
316
+ .fa-amazon-pay:before {
317
+ content: "\f42c";
318
+ }
319
+
320
+ .fa-ambulance:before {
321
+ content: "\f0f9";
322
+ }
323
+
324
+ .fa-american-sign-language-interpreting:before {
325
+ content: "\f2a3";
326
+ }
327
+
328
+ .fa-amilia:before {
329
+ content: "\f36d";
330
+ }
331
+
332
+ .fa-anchor:before {
333
+ content: "\f13d";
334
+ }
335
+
336
+ .fa-android:before {
337
+ content: "\f17b";
338
+ }
339
+
340
+ .fa-angellist:before {
341
+ content: "\f209";
342
+ }
343
+
344
+ .fa-angle-double-down:before {
345
+ content: "\f103";
346
+ }
347
+
348
+ .fa-angle-double-left:before {
349
+ content: "\f100";
350
+ }
351
+
352
+ .fa-angle-double-right:before {
353
+ content: "\f101";
354
+ }
355
+
356
+ .fa-angle-double-up:before {
357
+ content: "\f102";
358
+ }
359
+
360
+ .fa-angle-down:before {
361
+ content: "\f107";
362
+ }
363
+
364
+ .fa-angle-left:before {
365
+ content: "\f104";
366
+ }
367
+
368
+ .fa-angle-right:before {
369
+ content: "\f105";
370
+ }
371
+
372
+ .fa-angle-up:before {
373
+ content: "\f106";
374
+ }
375
+
376
+ .fa-angry:before {
377
+ content: "\f556";
378
+ }
379
+
380
+ .fa-angrycreative:before {
381
+ content: "\f36e";
382
+ }
383
+
384
+ .fa-angular:before {
385
+ content: "\f420";
386
+ }
387
+
388
+ .fa-app-store:before {
389
+ content: "\f36f";
390
+ }
391
+
392
+ .fa-app-store-ios:before {
393
+ content: "\f370";
394
+ }
395
+
396
+ .fa-apper:before {
397
+ content: "\f371";
398
+ }
399
+
400
+ .fa-apple:before {
401
+ content: "\f179";
402
+ }
403
+
404
+ .fa-apple-alt:before {
405
+ content: "\f5d1";
406
+ }
407
+
408
+ .fa-apple-pay:before {
409
+ content: "\f415";
410
+ }
411
+
412
+ .fa-archive:before {
413
+ content: "\f187";
414
+ }
415
+
416
+ .fa-archway:before {
417
+ content: "\f557";
418
+ }
419
+
420
+ .fa-arrow-alt-circle-down:before {
421
+ content: "\f358";
422
+ }
423
+
424
+ .fa-arrow-alt-circle-left:before {
425
+ content: "\f359";
426
+ }
427
+
428
+ .fa-arrow-alt-circle-right:before {
429
+ content: "\f35a";
430
+ }
431
+
432
+ .fa-arrow-alt-circle-up:before {
433
+ content: "\f35b";
434
+ }
435
+
436
+ .fa-arrow-circle-down:before {
437
+ content: "\f0ab";
438
+ }
439
+
440
+ .fa-arrow-circle-left:before {
441
+ content: "\f0a8";
442
+ }
443
+
444
+ .fa-arrow-circle-right:before {
445
+ content: "\f0a9";
446
+ }
447
+
448
+ .fa-arrow-circle-up:before {
449
+ content: "\f0aa";
450
+ }
451
+
452
+ .fa-arrow-down:before {
453
+ content: "\f063";
454
+ }
455
+
456
+ .fa-arrow-left:before {
457
+ content: "\f060";
458
+ }
459
+
460
+ .fa-arrow-right:before {
461
+ content: "\f061";
462
+ }
463
+
464
+ .fa-arrow-up:before {
465
+ content: "\f062";
466
+ }
467
+
468
+ .fa-arrows-alt:before {
469
+ content: "\f0b2";
470
+ }
471
+
472
+ .fa-arrows-alt-h:before {
473
+ content: "\f337";
474
+ }
475
+
476
+ .fa-arrows-alt-v:before {
477
+ content: "\f338";
478
+ }
479
+
480
+ .fa-assistive-listening-systems:before {
481
+ content: "\f2a2";
482
+ }
483
+
484
+ .fa-asterisk:before {
485
+ content: "\f069";
486
+ }
487
+
488
+ .fa-asymmetrik:before {
489
+ content: "\f372";
490
+ }
491
+
492
+ .fa-at:before {
493
+ content: "\f1fa";
494
+ }
495
+
496
+ .fa-atlas:before {
497
+ content: "\f558";
498
+ }
499
+
500
+ .fa-atom:before {
501
+ content: "\f5d2";
502
+ }
503
+
504
+ .fa-audible:before {
505
+ content: "\f373";
506
+ }
507
+
508
+ .fa-audio-description:before {
509
+ content: "\f29e";
510
+ }
511
+
512
+ .fa-autoprefixer:before {
513
+ content: "\f41c";
514
+ }
515
+
516
+ .fa-avianex:before {
517
+ content: "\f374";
518
+ }
519
+
520
+ .fa-aviato:before {
521
+ content: "\f421";
522
+ }
523
+
524
+ .fa-award:before {
525
+ content: "\f559";
526
+ }
527
+
528
+ .fa-aws:before {
529
+ content: "\f375";
530
+ }
531
+
532
+ .fa-backspace:before {
533
+ content: "\f55a";
534
+ }
535
+
536
+ .fa-backward:before {
537
+ content: "\f04a";
538
+ }
539
+
540
+ .fa-balance-scale:before {
541
+ content: "\f24e";
542
+ }
543
+
544
+ .fa-ban:before {
545
+ content: "\f05e";
546
+ }
547
+
548
+ .fa-band-aid:before {
549
+ content: "\f462";
550
+ }
551
+
552
+ .fa-bandcamp:before {
553
+ content: "\f2d5";
554
+ }
555
+
556
+ .fa-barcode:before {
557
+ content: "\f02a";
558
+ }
559
+
560
+ .fa-bars:before {
561
+ content: "\f0c9";
562
+ }
563
+
564
+ .fa-baseball-ball:before {
565
+ content: "\f433";
566
+ }
567
+
568
+ .fa-basketball-ball:before {
569
+ content: "\f434";
570
+ }
571
+
572
+ .fa-bath:before {
573
+ content: "\f2cd";
574
+ }
575
+
576
+ .fa-battery-empty:before {
577
+ content: "\f244";
578
+ }
579
+
580
+ .fa-battery-full:before {
581
+ content: "\f240";
582
+ }
583
+
584
+ .fa-battery-half:before {
585
+ content: "\f242";
586
+ }
587
+
588
+ .fa-battery-quarter:before {
589
+ content: "\f243";
590
+ }
591
+
592
+ .fa-battery-three-quarters:before {
593
+ content: "\f241";
594
+ }
595
+
596
+ .fa-bed:before {
597
+ content: "\f236";
598
+ }
599
+
600
+ .fa-beer:before {
601
+ content: "\f0fc";
602
+ }
603
+
604
+ .fa-behance:before {
605
+ content: "\f1b4";
606
+ }
607
+
608
+ .fa-behance-square:before {
609
+ content: "\f1b5";
610
+ }
611
+
612
+ .fa-bell:before {
613
+ content: "\f0f3";
614
+ }
615
+
616
+ .fa-bell-slash:before {
617
+ content: "\f1f6";
618
+ }
619
+
620
+ .fa-bezier-curve:before {
621
+ content: "\f55b";
622
+ }
623
+
624
+ .fa-bicycle:before {
625
+ content: "\f206";
626
+ }
627
+
628
+ .fa-bimobject:before {
629
+ content: "\f378";
630
+ }
631
+
632
+ .fa-binoculars:before {
633
+ content: "\f1e5";
634
+ }
635
+
636
+ .fa-birthday-cake:before {
637
+ content: "\f1fd";
638
+ }
639
+
640
+ .fa-bitbucket:before {
641
+ content: "\f171";
642
+ }
643
+
644
+ .fa-bitcoin:before {
645
+ content: "\f379";
646
+ }
647
+
648
+ .fa-bity:before {
649
+ content: "\f37a";
650
+ }
651
+
652
+ .fa-black-tie:before {
653
+ content: "\f27e";
654
+ }
655
+
656
+ .fa-blackberry:before {
657
+ content: "\f37b";
658
+ }
659
+
660
+ .fa-blender:before {
661
+ content: "\f517";
662
+ }
663
+
664
+ .fa-blind:before {
665
+ content: "\f29d";
666
+ }
667
+
668
+ .fa-blogger:before {
669
+ content: "\f37c";
670
+ }
671
+
672
+ .fa-blogger-b:before {
673
+ content: "\f37d";
674
+ }
675
+
676
+ .fa-bluetooth:before {
677
+ content: "\f293";
678
+ }
679
+
680
+ .fa-bluetooth-b:before {
681
+ content: "\f294";
682
+ }
683
+
684
+ .fa-bold:before {
685
+ content: "\f032";
686
+ }
687
+
688
+ .fa-bolt:before {
689
+ content: "\f0e7";
690
+ }
691
+
692
+ .fa-bomb:before {
693
+ content: "\f1e2";
694
+ }
695
+
696
+ .fa-bone:before {
697
+ content: "\f5d7";
698
+ }
699
+
700
+ .fa-bong:before {
701
+ content: "\f55c";
702
+ }
703
+
704
+ .fa-book:before {
705
+ content: "\f02d";
706
+ }
707
+
708
+ .fa-book-open:before {
709
+ content: "\f518";
710
+ }
711
+
712
+ .fa-book-reader:before {
713
+ content: "\f5da";
714
+ }
715
+
716
+ .fa-bookmark:before {
717
+ content: "\f02e";
718
+ }
719
+
720
+ .fa-bowling-ball:before {
721
+ content: "\f436";
722
+ }
723
+
724
+ .fa-box:before {
725
+ content: "\f466";
726
+ }
727
+
728
+ .fa-box-open:before {
729
+ content: "\f49e";
730
+ }
731
+
732
+ .fa-boxes:before {
733
+ content: "\f468";
734
+ }
735
+
736
+ .fa-braille:before {
737
+ content: "\f2a1";
738
+ }
739
+
740
+ .fa-brain:before {
741
+ content: "\f5dc";
742
+ }
743
+
744
+ .fa-briefcase:before {
745
+ content: "\f0b1";
746
+ }
747
+
748
+ .fa-briefcase-medical:before {
749
+ content: "\f469";
750
+ }
751
+
752
+ .fa-broadcast-tower:before {
753
+ content: "\f519";
754
+ }
755
+
756
+ .fa-broom:before {
757
+ content: "\f51a";
758
+ }
759
+
760
+ .fa-brush:before {
761
+ content: "\f55d";
762
+ }
763
+
764
+ .fa-btc:before {
765
+ content: "\f15a";
766
+ }
767
+
768
+ .fa-bug:before {
769
+ content: "\f188";
770
+ }
771
+
772
+ .fa-building:before {
773
+ content: "\f1ad";
774
+ }
775
+
776
+ .fa-bullhorn:before {
777
+ content: "\f0a1";
778
+ }
779
+
780
+ .fa-bullseye:before {
781
+ content: "\f140";
782
+ }
783
+
784
+ .fa-burn:before {
785
+ content: "\f46a";
786
+ }
787
+
788
+ .fa-buromobelexperte:before {
789
+ content: "\f37f";
790
+ }
791
+
792
+ .fa-bus:before {
793
+ content: "\f207";
794
+ }
795
+
796
+ .fa-bus-alt:before {
797
+ content: "\f55e";
798
+ }
799
+
800
+ .fa-buysellads:before {
801
+ content: "\f20d";
802
+ }
803
+
804
+ .fa-calculator:before {
805
+ content: "\f1ec";
806
+ }
807
+
808
+ .fa-calendar:before {
809
+ content: "\f133";
810
+ }
811
+
812
+ .fa-calendar-alt:before {
813
+ content: "\f073";
814
+ }
815
+
816
+ .fa-calendar-check:before {
817
+ content: "\f274";
818
+ }
819
+
820
+ .fa-calendar-minus:before {
821
+ content: "\f272";
822
+ }
823
+
824
+ .fa-calendar-plus:before {
825
+ content: "\f271";
826
+ }
827
+
828
+ .fa-calendar-times:before {
829
+ content: "\f273";
830
+ }
831
+
832
+ .fa-camera:before {
833
+ content: "\f030";
834
+ }
835
+
836
+ .fa-camera-retro:before {
837
+ content: "\f083";
838
+ }
839
+
840
+ .fa-cannabis:before {
841
+ content: "\f55f";
842
+ }
843
+
844
+ .fa-capsules:before {
845
+ content: "\f46b";
846
+ }
847
+
848
+ .fa-car:before {
849
+ content: "\f1b9";
850
+ }
851
+
852
+ .fa-car-alt:before {
853
+ content: "\f5de";
854
+ }
855
+
856
+ .fa-car-battery:before {
857
+ content: "\f5df";
858
+ }
859
+
860
+ .fa-car-crash:before {
861
+ content: "\f5e1";
862
+ }
863
+
864
+ .fa-car-side:before {
865
+ content: "\f5e4";
866
+ }
867
+
868
+ .fa-caret-down:before {
869
+ content: "\f0d7";
870
+ }
871
+
872
+ .fa-caret-left:before {
873
+ content: "\f0d9";
874
+ }
875
+
876
+ .fa-caret-right:before {
877
+ content: "\f0da";
878
+ }
879
+
880
+ .fa-caret-square-down:before {
881
+ content: "\f150";
882
+ }
883
+
884
+ .fa-caret-square-left:before {
885
+ content: "\f191";
886
+ }
887
+
888
+ .fa-caret-square-right:before {
889
+ content: "\f152";
890
+ }
891
+
892
+ .fa-caret-square-up:before {
893
+ content: "\f151";
894
+ }
895
+
896
+ .fa-caret-up:before {
897
+ content: "\f0d8";
898
+ }
899
+
900
+ .fa-cart-arrow-down:before {
901
+ content: "\f218";
902
+ }
903
+
904
+ .fa-cart-plus:before {
905
+ content: "\f217";
906
+ }
907
+
908
+ .fa-cc-amazon-pay:before {
909
+ content: "\f42d";
910
+ }
911
+
912
+ .fa-cc-amex:before {
913
+ content: "\f1f3";
914
+ }
915
+
916
+ .fa-cc-apple-pay:before {
917
+ content: "\f416";
918
+ }
919
+
920
+ .fa-cc-diners-club:before {
921
+ content: "\f24c";
922
+ }
923
+
924
+ .fa-cc-discover:before {
925
+ content: "\f1f2";
926
+ }
927
+
928
+ .fa-cc-jcb:before {
929
+ content: "\f24b";
930
+ }
931
+
932
+ .fa-cc-mastercard:before {
933
+ content: "\f1f1";
934
+ }
935
+
936
+ .fa-cc-paypal:before {
937
+ content: "\f1f4";
938
+ }
939
+
940
+ .fa-cc-stripe:before {
941
+ content: "\f1f5";
942
+ }
943
+
944
+ .fa-cc-visa:before {
945
+ content: "\f1f0";
946
+ }
947
+
948
+ .fa-centercode:before {
949
+ content: "\f380";
950
+ }
951
+
952
+ .fa-certificate:before {
953
+ content: "\f0a3";
954
+ }
955
+
956
+ .fa-chalkboard:before {
957
+ content: "\f51b";
958
+ }
959
+
960
+ .fa-chalkboard-teacher:before {
961
+ content: "\f51c";
962
+ }
963
+
964
+ .fa-charging-station:before {
965
+ content: "\f5e7";
966
+ }
967
+
968
+ .fa-chart-area:before {
969
+ content: "\f1fe";
970
+ }
971
+
972
+ .fa-chart-bar:before {
973
+ content: "\f080";
974
+ }
975
+
976
+ .fa-chart-line:before {
977
+ content: "\f201";
978
+ }
979
+
980
+ .fa-chart-pie:before {
981
+ content: "\f200";
982
+ }
983
+
984
+ .fa-check:before {
985
+ content: "\f00c";
986
+ }
987
+
988
+ .fa-check-circle:before {
989
+ content: "\f058";
990
+ }
991
+
992
+ .fa-check-double:before {
993
+ content: "\f560";
994
+ }
995
+
996
+ .fa-check-square:before {
997
+ content: "\f14a";
998
+ }
999
+
1000
+ .fa-chess:before {
1001
+ content: "\f439";
1002
+ }
1003
+
1004
+ .fa-chess-bishop:before {
1005
+ content: "\f43a";
1006
+ }
1007
+
1008
+ .fa-chess-board:before {
1009
+ content: "\f43c";
1010
+ }
1011
+
1012
+ .fa-chess-king:before {
1013
+ content: "\f43f";
1014
+ }
1015
+
1016
+ .fa-chess-knight:before {
1017
+ content: "\f441";
1018
+ }
1019
+
1020
+ .fa-chess-pawn:before {
1021
+ content: "\f443";
1022
+ }
1023
+
1024
+ .fa-chess-queen:before {
1025
+ content: "\f445";
1026
+ }
1027
+
1028
+ .fa-chess-rook:before {
1029
+ content: "\f447";
1030
+ }
1031
+
1032
+ .fa-chevron-circle-down:before {
1033
+ content: "\f13a";
1034
+ }
1035
+
1036
+ .fa-chevron-circle-left:before {
1037
+ content: "\f137";
1038
+ }
1039
+
1040
+ .fa-chevron-circle-right:before {
1041
+ content: "\f138";
1042
+ }
1043
+
1044
+ .fa-chevron-circle-up:before {
1045
+ content: "\f139";
1046
+ }
1047
+
1048
+ .fa-chevron-down:before {
1049
+ content: "\f078";
1050
+ }
1051
+
1052
+ .fa-chevron-left:before {
1053
+ content: "\f053";
1054
+ }
1055
+
1056
+ .fa-chevron-right:before {
1057
+ content: "\f054";
1058
+ }
1059
+
1060
+ .fa-chevron-up:before {
1061
+ content: "\f077";
1062
+ }
1063
+
1064
+ .fa-child:before {
1065
+ content: "\f1ae";
1066
+ }
1067
+
1068
+ .fa-chrome:before {
1069
+ content: "\f268";
1070
+ }
1071
+
1072
+ .fa-church:before {
1073
+ content: "\f51d";
1074
+ }
1075
+
1076
+ .fa-circle:before {
1077
+ content: "\f111";
1078
+ }
1079
+
1080
+ .fa-circle-notch:before {
1081
+ content: "\f1ce";
1082
+ }
1083
+
1084
+ .fa-clipboard:before {
1085
+ content: "\f328";
1086
+ }
1087
+
1088
+ .fa-clipboard-check:before {
1089
+ content: "\f46c";
1090
+ }
1091
+
1092
+ .fa-clipboard-list:before {
1093
+ content: "\f46d";
1094
+ }
1095
+
1096
+ .fa-clock:before {
1097
+ content: "\f017";
1098
+ }
1099
+
1100
+ .fa-clone:before {
1101
+ content: "\f24d";
1102
+ }
1103
+
1104
+ .fa-closed-captioning:before {
1105
+ content: "\f20a";
1106
+ }
1107
+
1108
+ .fa-cloud:before {
1109
+ content: "\f0c2";
1110
+ }
1111
+
1112
+ .fa-cloud-download-alt:before {
1113
+ content: "\f381";
1114
+ }
1115
+
1116
+ .fa-cloud-upload-alt:before {
1117
+ content: "\f382";
1118
+ }
1119
+
1120
+ .fa-cloudscale:before {
1121
+ content: "\f383";
1122
+ }
1123
+
1124
+ .fa-cloudsmith:before {
1125
+ content: "\f384";
1126
+ }
1127
+
1128
+ .fa-cloudversify:before {
1129
+ content: "\f385";
1130
+ }
1131
+
1132
+ .fa-cocktail:before {
1133
+ content: "\f561";
1134
+ }
1135
+
1136
+ .fa-code:before {
1137
+ content: "\f121";
1138
+ }
1139
+
1140
+ .fa-code-branch:before {
1141
+ content: "\f126";
1142
+ }
1143
+
1144
+ .fa-codepen:before {
1145
+ content: "\f1cb";
1146
+ }
1147
+
1148
+ .fa-codiepie:before {
1149
+ content: "\f284";
1150
+ }
1151
+
1152
+ .fa-coffee:before {
1153
+ content: "\f0f4";
1154
+ }
1155
+
1156
+ .fa-cog:before {
1157
+ content: "\f013";
1158
+ }
1159
+
1160
+ .fa-cogs:before {
1161
+ content: "\f085";
1162
+ }
1163
+
1164
+ .fa-coins:before {
1165
+ content: "\f51e";
1166
+ }
1167
+
1168
+ .fa-columns:before {
1169
+ content: "\f0db";
1170
+ }
1171
+
1172
+ .fa-comment:before {
1173
+ content: "\f075";
1174
+ }
1175
+
1176
+ .fa-comment-alt:before {
1177
+ content: "\f27a";
1178
+ }
1179
+
1180
+ .fa-comment-dots:before {
1181
+ content: "\f4ad";
1182
+ }
1183
+
1184
+ .fa-comment-slash:before {
1185
+ content: "\f4b3";
1186
+ }
1187
+
1188
+ .fa-comments:before {
1189
+ content: "\f086";
1190
+ }
1191
+
1192
+ .fa-compact-disc:before {
1193
+ content: "\f51f";
1194
+ }
1195
+
1196
+ .fa-compass:before {
1197
+ content: "\f14e";
1198
+ }
1199
+
1200
+ .fa-compress:before {
1201
+ content: "\f066";
1202
+ }
1203
+
1204
+ .fa-concierge-bell:before {
1205
+ content: "\f562";
1206
+ }
1207
+
1208
+ .fa-connectdevelop:before {
1209
+ content: "\f20e";
1210
+ }
1211
+
1212
+ .fa-contao:before {
1213
+ content: "\f26d";
1214
+ }
1215
+
1216
+ .fa-cookie:before {
1217
+ content: "\f563";
1218
+ }
1219
+
1220
+ .fa-cookie-bite:before {
1221
+ content: "\f564";
1222
+ }
1223
+
1224
+ .fa-copy:before {
1225
+ content: "\f0c5";
1226
+ }
1227
+
1228
+ .fa-copyright:before {
1229
+ content: "\f1f9";
1230
+ }
1231
+
1232
+ .fa-couch:before {
1233
+ content: "\f4b8";
1234
+ }
1235
+
1236
+ .fa-cpanel:before {
1237
+ content: "\f388";
1238
+ }
1239
+
1240
+ .fa-creative-commons:before {
1241
+ content: "\f25e";
1242
+ }
1243
+
1244
+ .fa-creative-commons-by:before {
1245
+ content: "\f4e7";
1246
+ }
1247
+
1248
+ .fa-creative-commons-nc:before {
1249
+ content: "\f4e8";
1250
+ }
1251
+
1252
+ .fa-creative-commons-nc-eu:before {
1253
+ content: "\f4e9";
1254
+ }
1255
+
1256
+ .fa-creative-commons-nc-jp:before {
1257
+ content: "\f4ea";
1258
+ }
1259
+
1260
+ .fa-creative-commons-nd:before {
1261
+ content: "\f4eb";
1262
+ }
1263
+
1264
+ .fa-creative-commons-pd:before {
1265
+ content: "\f4ec";
1266
+ }
1267
+
1268
+ .fa-creative-commons-pd-alt:before {
1269
+ content: "\f4ed";
1270
+ }
1271
+
1272
+ .fa-creative-commons-remix:before {
1273
+ content: "\f4ee";
1274
+ }
1275
+
1276
+ .fa-creative-commons-sa:before {
1277
+ content: "\f4ef";
1278
+ }
1279
+
1280
+ .fa-creative-commons-sampling:before {
1281
+ content: "\f4f0";
1282
+ }
1283
+
1284
+ .fa-creative-commons-sampling-plus:before {
1285
+ content: "\f4f1";
1286
+ }
1287
+
1288
+ .fa-creative-commons-share:before {
1289
+ content: "\f4f2";
1290
+ }
1291
+
1292
+ .fa-credit-card:before {
1293
+ content: "\f09d";
1294
+ }
1295
+
1296
+ .fa-crop:before {
1297
+ content: "\f125";
1298
+ }
1299
+
1300
+ .fa-crop-alt:before {
1301
+ content: "\f565";
1302
+ }
1303
+
1304
+ .fa-crosshairs:before {
1305
+ content: "\f05b";
1306
+ }
1307
+
1308
+ .fa-crow:before {
1309
+ content: "\f520";
1310
+ }
1311
+
1312
+ .fa-crown:before {
1313
+ content: "\f521";
1314
+ }
1315
+
1316
+ .fa-css3:before {
1317
+ content: "\f13c";
1318
+ }
1319
+
1320
+ .fa-css3-alt:before {
1321
+ content: "\f38b";
1322
+ }
1323
+
1324
+ .fa-cube:before {
1325
+ content: "\f1b2";
1326
+ }
1327
+
1328
+ .fa-cubes:before {
1329
+ content: "\f1b3";
1330
+ }
1331
+
1332
+ .fa-cut:before {
1333
+ content: "\f0c4";
1334
+ }
1335
+
1336
+ .fa-cuttlefish:before {
1337
+ content: "\f38c";
1338
+ }
1339
+
1340
+ .fa-d-and-d:before {
1341
+ content: "\f38d";
1342
+ }
1343
+
1344
+ .fa-dashcube:before {
1345
+ content: "\f210";
1346
+ }
1347
+
1348
+ .fa-database:before {
1349
+ content: "\f1c0";
1350
+ }
1351
+
1352
+ .fa-deaf:before {
1353
+ content: "\f2a4";
1354
+ }
1355
+
1356
+ .fa-delicious:before {
1357
+ content: "\f1a5";
1358
+ }
1359
+
1360
+ .fa-deploydog:before {
1361
+ content: "\f38e";
1362
+ }
1363
+
1364
+ .fa-deskpro:before {
1365
+ content: "\f38f";
1366
+ }
1367
+
1368
+ .fa-desktop:before {
1369
+ content: "\f108";
1370
+ }
1371
+
1372
+ .fa-deviantart:before {
1373
+ content: "\f1bd";
1374
+ }
1375
+
1376
+ .fa-diagnoses:before {
1377
+ content: "\f470";
1378
+ }
1379
+
1380
+ .fa-dice:before {
1381
+ content: "\f522";
1382
+ }
1383
+
1384
+ .fa-dice-five:before {
1385
+ content: "\f523";
1386
+ }
1387
+
1388
+ .fa-dice-four:before {
1389
+ content: "\f524";
1390
+ }
1391
+
1392
+ .fa-dice-one:before {
1393
+ content: "\f525";
1394
+ }
1395
+
1396
+ .fa-dice-six:before {
1397
+ content: "\f526";
1398
+ }
1399
+
1400
+ .fa-dice-three:before {
1401
+ content: "\f527";
1402
+ }
1403
+
1404
+ .fa-dice-two:before {
1405
+ content: "\f528";
1406
+ }
1407
+
1408
+ .fa-digg:before {
1409
+ content: "\f1a6";
1410
+ }
1411
+
1412
+ .fa-digital-ocean:before {
1413
+ content: "\f391";
1414
+ }
1415
+
1416
+ .fa-digital-tachograph:before {
1417
+ content: "\f566";
1418
+ }
1419
+
1420
+ .fa-directions:before {
1421
+ content: "\f5eb";
1422
+ }
1423
+
1424
+ .fa-discord:before {
1425
+ content: "\f392";
1426
+ }
1427
+
1428
+ .fa-discourse:before {
1429
+ content: "\f393";
1430
+ }
1431
+
1432
+ .fa-divide:before {
1433
+ content: "\f529";
1434
+ }
1435
+
1436
+ .fa-dizzy:before {
1437
+ content: "\f567";
1438
+ }
1439
+
1440
+ .fa-dna:before {
1441
+ content: "\f471";
1442
+ }
1443
+
1444
+ .fa-dochub:before {
1445
+ content: "\f394";
1446
+ }
1447
+
1448
+ .fa-docker:before {
1449
+ content: "\f395";
1450
+ }
1451
+
1452
+ .fa-dollar-sign:before {
1453
+ content: "\f155";
1454
+ }
1455
+
1456
+ .fa-dolly:before {
1457
+ content: "\f472";
1458
+ }
1459
+
1460
+ .fa-dolly-flatbed:before {
1461
+ content: "\f474";
1462
+ }
1463
+
1464
+ .fa-donate:before {
1465
+ content: "\f4b9";
1466
+ }
1467
+
1468
+ .fa-door-closed:before {
1469
+ content: "\f52a";
1470
+ }
1471
+
1472
+ .fa-door-open:before {
1473
+ content: "\f52b";
1474
+ }
1475
+
1476
+ .fa-dot-circle:before {
1477
+ content: "\f192";
1478
+ }
1479
+
1480
+ .fa-dove:before {
1481
+ content: "\f4ba";
1482
+ }
1483
+
1484
+ .fa-download:before {
1485
+ content: "\f019";
1486
+ }
1487
+
1488
+ .fa-draft2digital:before {
1489
+ content: "\f396";
1490
+ }
1491
+
1492
+ .fa-drafting-compass:before {
1493
+ content: "\f568";
1494
+ }
1495
+
1496
+ .fa-draw-polygon:before {
1497
+ content: "\f5ee";
1498
+ }
1499
+
1500
+ .fa-dribbble:before {
1501
+ content: "\f17d";
1502
+ }
1503
+
1504
+ .fa-dribbble-square:before {
1505
+ content: "\f397";
1506
+ }
1507
+
1508
+ .fa-dropbox:before {
1509
+ content: "\f16b";
1510
+ }
1511
+
1512
+ .fa-drum:before {
1513
+ content: "\f569";
1514
+ }
1515
+
1516
+ .fa-drum-steelpan:before {
1517
+ content: "\f56a";
1518
+ }
1519
+
1520
+ .fa-drupal:before {
1521
+ content: "\f1a9";
1522
+ }
1523
+
1524
+ .fa-dumbbell:before {
1525
+ content: "\f44b";
1526
+ }
1527
+
1528
+ .fa-dyalog:before {
1529
+ content: "\f399";
1530
+ }
1531
+
1532
+ .fa-earlybirds:before {
1533
+ content: "\f39a";
1534
+ }
1535
+
1536
+ .fa-ebay:before {
1537
+ content: "\f4f4";
1538
+ }
1539
+
1540
+ .fa-edge:before {
1541
+ content: "\f282";
1542
+ }
1543
+
1544
+ .fa-edit:before {
1545
+ content: "\f044";
1546
+ }
1547
+
1548
+ .fa-eject:before {
1549
+ content: "\f052";
1550
+ }
1551
+
1552
+ .fa-elementor:before {
1553
+ content: "\f430";
1554
+ }
1555
+
1556
+ .fa-ellipsis-h:before {
1557
+ content: "\f141";
1558
+ }
1559
+
1560
+ .fa-ellipsis-v:before {
1561
+ content: "\f142";
1562
+ }
1563
+
1564
+ .fa-ello:before {
1565
+ content: "\f5f1";
1566
+ }
1567
+
1568
+ .fa-ember:before {
1569
+ content: "\f423";
1570
+ }
1571
+
1572
+ .fa-empire:before {
1573
+ content: "\f1d1";
1574
+ }
1575
+
1576
+ .fa-envelope:before {
1577
+ content: "\f0e0";
1578
+ }
1579
+
1580
+ .fa-envelope-open:before {
1581
+ content: "\f2b6";
1582
+ }
1583
+
1584
+ .fa-envelope-square:before {
1585
+ content: "\f199";
1586
+ }
1587
+
1588
+ .fa-envira:before {
1589
+ content: "\f299";
1590
+ }
1591
+
1592
+ .fa-equals:before {
1593
+ content: "\f52c";
1594
+ }
1595
+
1596
+ .fa-eraser:before {
1597
+ content: "\f12d";
1598
+ }
1599
+
1600
+ .fa-erlang:before {
1601
+ content: "\f39d";
1602
+ }
1603
+
1604
+ .fa-ethereum:before {
1605
+ content: "\f42e";
1606
+ }
1607
+
1608
+ .fa-etsy:before {
1609
+ content: "\f2d7";
1610
+ }
1611
+
1612
+ .fa-euro-sign:before {
1613
+ content: "\f153";
1614
+ }
1615
+
1616
+ .fa-exchange-alt:before {
1617
+ content: "\f362";
1618
+ }
1619
+
1620
+ .fa-exclamation:before {
1621
+ content: "\f12a";
1622
+ }
1623
+
1624
+ .fa-exclamation-circle:before {
1625
+ content: "\f06a";
1626
+ }
1627
+
1628
+ .fa-exclamation-triangle:before {
1629
+ content: "\f071";
1630
+ }
1631
+
1632
+ .fa-expand:before {
1633
+ content: "\f065";
1634
+ }
1635
+
1636
+ .fa-expand-arrows-alt:before {
1637
+ content: "\f31e";
1638
+ }
1639
+
1640
+ .fa-expeditedssl:before {
1641
+ content: "\f23e";
1642
+ }
1643
+
1644
+ .fa-external-link-alt:before {
1645
+ content: "\f35d";
1646
+ }
1647
+
1648
+ .fa-external-link-square-alt:before {
1649
+ content: "\f360";
1650
+ }
1651
+
1652
+ .fa-eye:before {
1653
+ content: "\f06e";
1654
+ }
1655
+
1656
+ .fa-eye-dropper:before {
1657
+ content: "\f1fb";
1658
+ }
1659
+
1660
+ .fa-eye-slash:before {
1661
+ content: "\f070";
1662
+ }
1663
+
1664
+ .fa-facebook:before {
1665
+ content: "\f09a";
1666
+ }
1667
+
1668
+ .fa-facebook-f:before {
1669
+ content: "\f39e";
1670
+ }
1671
+
1672
+ .fa-facebook-messenger:before {
1673
+ content: "\f39f";
1674
+ }
1675
+
1676
+ .fa-facebook-square:before {
1677
+ content: "\f082";
1678
+ }
1679
+
1680
+ .fa-fast-backward:before {
1681
+ content: "\f049";
1682
+ }
1683
+
1684
+ .fa-fast-forward:before {
1685
+ content: "\f050";
1686
+ }
1687
+
1688
+ .fa-fax:before {
1689
+ content: "\f1ac";
1690
+ }
1691
+
1692
+ .fa-feather:before {
1693
+ content: "\f52d";
1694
+ }
1695
+
1696
+ .fa-feather-alt:before {
1697
+ content: "\f56b";
1698
+ }
1699
+
1700
+ .fa-female:before {
1701
+ content: "\f182";
1702
+ }
1703
+
1704
+ .fa-fighter-jet:before {
1705
+ content: "\f0fb";
1706
+ }
1707
+
1708
+ .fa-file:before {
1709
+ content: "\f15b";
1710
+ }
1711
+
1712
+ .fa-file-alt:before {
1713
+ content: "\f15c";
1714
+ }
1715
+
1716
+ .fa-file-archive:before {
1717
+ content: "\f1c6";
1718
+ }
1719
+
1720
+ .fa-file-audio:before {
1721
+ content: "\f1c7";
1722
+ }
1723
+
1724
+ .fa-file-code:before {
1725
+ content: "\f1c9";
1726
+ }
1727
+
1728
+ .fa-file-contract:before {
1729
+ content: "\f56c";
1730
+ }
1731
+
1732
+ .fa-file-download:before {
1733
+ content: "\f56d";
1734
+ }
1735
+
1736
+ .fa-file-excel:before {
1737
+ content: "\f1c3";
1738
+ }
1739
+
1740
+ .fa-file-export:before {
1741
+ content: "\f56e";
1742
+ }
1743
+
1744
+ .fa-file-image:before {
1745
+ content: "\f1c5";
1746
+ }
1747
+
1748
+ .fa-file-import:before {
1749
+ content: "\f56f";
1750
+ }
1751
+
1752
+ .fa-file-invoice:before {
1753
+ content: "\f570";
1754
+ }
1755
+
1756
+ .fa-file-invoice-dollar:before {
1757
+ content: "\f571";
1758
+ }
1759
+
1760
+ .fa-file-medical:before {
1761
+ content: "\f477";
1762
+ }
1763
+
1764
+ .fa-file-medical-alt:before {
1765
+ content: "\f478";
1766
+ }
1767
+
1768
+ .fa-file-pdf:before {
1769
+ content: "\f1c1";
1770
+ }
1771
+
1772
+ .fa-file-powerpoint:before {
1773
+ content: "\f1c4";
1774
+ }
1775
+
1776
+ .fa-file-prescription:before {
1777
+ content: "\f572";
1778
+ }
1779
+
1780
+ .fa-file-signature:before {
1781
+ content: "\f573";
1782
+ }
1783
+
1784
+ .fa-file-upload:before {
1785
+ content: "\f574";
1786
+ }
1787
+
1788
+ .fa-file-video:before {
1789
+ content: "\f1c8";
1790
+ }
1791
+
1792
+ .fa-file-word:before {
1793
+ content: "\f1c2";
1794
+ }
1795
+
1796
+ .fa-fill:before {
1797
+ content: "\f575";
1798
+ }
1799
+
1800
+ .fa-fill-drip:before {
1801
+ content: "\f576";
1802
+ }
1803
+
1804
+ .fa-film:before {
1805
+ content: "\f008";
1806
+ }
1807
+
1808
+ .fa-filter:before {
1809
+ content: "\f0b0";
1810
+ }
1811
+
1812
+ .fa-fingerprint:before {
1813
+ content: "\f577";
1814
+ }
1815
+
1816
+ .fa-fire:before {
1817
+ content: "\f06d";
1818
+ }
1819
+
1820
+ .fa-fire-extinguisher:before {
1821
+ content: "\f134";
1822
+ }
1823
+
1824
+ .fa-firefox:before {
1825
+ content: "\f269";
1826
+ }
1827
+
1828
+ .fa-first-aid:before {
1829
+ content: "\f479";
1830
+ }
1831
+
1832
+ .fa-first-order:before {
1833
+ content: "\f2b0";
1834
+ }
1835
+
1836
+ .fa-first-order-alt:before {
1837
+ content: "\f50a";
1838
+ }
1839
+
1840
+ .fa-firstdraft:before {
1841
+ content: "\f3a1";
1842
+ }
1843
+
1844
+ .fa-fish:before {
1845
+ content: "\f578";
1846
+ }
1847
+
1848
+ .fa-flag:before {
1849
+ content: "\f024";
1850
+ }
1851
+
1852
+ .fa-flag-checkered:before {
1853
+ content: "\f11e";
1854
+ }
1855
+
1856
+ .fa-flask:before {
1857
+ content: "\f0c3";
1858
+ }
1859
+
1860
+ .fa-flickr:before {
1861
+ content: "\f16e";
1862
+ }
1863
+
1864
+ .fa-flipboard:before {
1865
+ content: "\f44d";
1866
+ }
1867
+
1868
+ .fa-flushed:before {
1869
+ content: "\f579";
1870
+ }
1871
+
1872
+ .fa-fly:before {
1873
+ content: "\f417";
1874
+ }
1875
+
1876
+ .fa-folder:before {
1877
+ content: "\f07b";
1878
+ }
1879
+
1880
+ .fa-folder-open:before {
1881
+ content: "\f07c";
1882
+ }
1883
+
1884
+ .fa-font:before {
1885
+ content: "\f031";
1886
+ }
1887
+
1888
+ .fa-font-awesome:before {
1889
+ content: "\f2b4";
1890
+ }
1891
+
1892
+ .fa-font-awesome-alt:before {
1893
+ content: "\f35c";
1894
+ }
1895
+
1896
+ .fa-font-awesome-flag:before {
1897
+ content: "\f425";
1898
+ }
1899
+
1900
+ .fa-font-awesome-logo-full:before {
1901
+ content: "\f4e6";
1902
+ }
1903
+
1904
+ .fa-fonticons:before {
1905
+ content: "\f280";
1906
+ }
1907
+
1908
+ .fa-fonticons-fi:before {
1909
+ content: "\f3a2";
1910
+ }
1911
+
1912
+ .fa-football-ball:before {
1913
+ content: "\f44e";
1914
+ }
1915
+
1916
+ .fa-fort-awesome:before {
1917
+ content: "\f286";
1918
+ }
1919
+
1920
+ .fa-fort-awesome-alt:before {
1921
+ content: "\f3a3";
1922
+ }
1923
+
1924
+ .fa-forumbee:before {
1925
+ content: "\f211";
1926
+ }
1927
+
1928
+ .fa-forward:before {
1929
+ content: "\f04e";
1930
+ }
1931
+
1932
+ .fa-foursquare:before {
1933
+ content: "\f180";
1934
+ }
1935
+
1936
+ .fa-free-code-camp:before {
1937
+ content: "\f2c5";
1938
+ }
1939
+
1940
+ .fa-freebsd:before {
1941
+ content: "\f3a4";
1942
+ }
1943
+
1944
+ .fa-frog:before {
1945
+ content: "\f52e";
1946
+ }
1947
+
1948
+ .fa-frown:before {
1949
+ content: "\f119";
1950
+ }
1951
+
1952
+ .fa-frown-open:before {
1953
+ content: "\f57a";
1954
+ }
1955
+
1956
+ .fa-fulcrum:before {
1957
+ content: "\f50b";
1958
+ }
1959
+
1960
+ .fa-futbol:before {
1961
+ content: "\f1e3";
1962
+ }
1963
+
1964
+ .fa-galactic-republic:before {
1965
+ content: "\f50c";
1966
+ }
1967
+
1968
+ .fa-galactic-senate:before {
1969
+ content: "\f50d";
1970
+ }
1971
+
1972
+ .fa-gamepad:before {
1973
+ content: "\f11b";
1974
+ }
1975
+
1976
+ .fa-gas-pump:before {
1977
+ content: "\f52f";
1978
+ }
1979
+
1980
+ .fa-gavel:before {
1981
+ content: "\f0e3";
1982
+ }
1983
+
1984
+ .fa-gem:before {
1985
+ content: "\f3a5";
1986
+ }
1987
+
1988
+ .fa-genderless:before {
1989
+ content: "\f22d";
1990
+ }
1991
+
1992
+ .fa-get-pocket:before {
1993
+ content: "\f265";
1994
+ }
1995
+
1996
+ .fa-gg:before {
1997
+ content: "\f260";
1998
+ }
1999
+
2000
+ .fa-gg-circle:before {
2001
+ content: "\f261";
2002
+ }
2003
+
2004
+ .fa-gift:before {
2005
+ content: "\f06b";
2006
+ }
2007
+
2008
+ .fa-git:before {
2009
+ content: "\f1d3";
2010
+ }
2011
+
2012
+ .fa-git-square:before {
2013
+ content: "\f1d2";
2014
+ }
2015
+
2016
+ .fa-github:before {
2017
+ content: "\f09b";
2018
+ }
2019
+
2020
+ .fa-github-alt:before {
2021
+ content: "\f113";
2022
+ }
2023
+
2024
+ .fa-github-square:before {
2025
+ content: "\f092";
2026
+ }
2027
+
2028
+ .fa-gitkraken:before {
2029
+ content: "\f3a6";
2030
+ }
2031
+
2032
+ .fa-gitlab:before {
2033
+ content: "\f296";
2034
+ }
2035
+
2036
+ .fa-gitter:before {
2037
+ content: "\f426";
2038
+ }
2039
+
2040
+ .fa-glass-martini:before {
2041
+ content: "\f000";
2042
+ }
2043
+
2044
+ .fa-glass-martini-alt:before {
2045
+ content: "\f57b";
2046
+ }
2047
+
2048
+ .fa-glasses:before {
2049
+ content: "\f530";
2050
+ }
2051
+
2052
+ .fa-glide:before {
2053
+ content: "\f2a5";
2054
+ }
2055
+
2056
+ .fa-glide-g:before {
2057
+ content: "\f2a6";
2058
+ }
2059
+
2060
+ .fa-globe:before {
2061
+ content: "\f0ac";
2062
+ }
2063
+
2064
+ .fa-globe-africa:before {
2065
+ content: "\f57c";
2066
+ }
2067
+
2068
+ .fa-globe-americas:before {
2069
+ content: "\f57d";
2070
+ }
2071
+
2072
+ .fa-globe-asia:before {
2073
+ content: "\f57e";
2074
+ }
2075
+
2076
+ .fa-gofore:before {
2077
+ content: "\f3a7";
2078
+ }
2079
+
2080
+ .fa-golf-ball:before {
2081
+ content: "\f450";
2082
+ }
2083
+
2084
+ .fa-goodreads:before {
2085
+ content: "\f3a8";
2086
+ }
2087
+
2088
+ .fa-goodreads-g:before {
2089
+ content: "\f3a9";
2090
+ }
2091
+
2092
+ .fa-google:before {
2093
+ content: "\f1a0";
2094
+ }
2095
+
2096
+ .fa-google-drive:before {
2097
+ content: "\f3aa";
2098
+ }
2099
+
2100
+ .fa-google-play:before {
2101
+ content: "\f3ab";
2102
+ }
2103
+
2104
+ .fa-google-plus:before {
2105
+ content: "\f2b3";
2106
+ }
2107
+
2108
+ .fa-google-plus-g:before {
2109
+ content: "\f0d5";
2110
+ }
2111
+
2112
+ .fa-google-plus-square:before {
2113
+ content: "\f0d4";
2114
+ }
2115
+
2116
+ .fa-google-wallet:before {
2117
+ content: "\f1ee";
2118
+ }
2119
+
2120
+ .fa-graduation-cap:before {
2121
+ content: "\f19d";
2122
+ }
2123
+
2124
+ .fa-gratipay:before {
2125
+ content: "\f184";
2126
+ }
2127
+
2128
+ .fa-grav:before {
2129
+ content: "\f2d6";
2130
+ }
2131
+
2132
+ .fa-greater-than:before {
2133
+ content: "\f531";
2134
+ }
2135
+
2136
+ .fa-greater-than-equal:before {
2137
+ content: "\f532";
2138
+ }
2139
+
2140
+ .fa-grimace:before {
2141
+ content: "\f57f";
2142
+ }
2143
+
2144
+ .fa-grin:before {
2145
+ content: "\f580";
2146
+ }
2147
+
2148
+ .fa-grin-alt:before {
2149
+ content: "\f581";
2150
+ }
2151
+
2152
+ .fa-grin-beam:before {
2153
+ content: "\f582";
2154
+ }
2155
+
2156
+ .fa-grin-beam-sweat:before {
2157
+ content: "\f583";
2158
+ }
2159
+
2160
+ .fa-grin-hearts:before {
2161
+ content: "\f584";
2162
+ }
2163
+
2164
+ .fa-grin-squint:before {
2165
+ content: "\f585";
2166
+ }
2167
+
2168
+ .fa-grin-squint-tears:before {
2169
+ content: "\f586";
2170
+ }
2171
+
2172
+ .fa-grin-stars:before {
2173
+ content: "\f587";
2174
+ }
2175
+
2176
+ .fa-grin-tears:before {
2177
+ content: "\f588";
2178
+ }
2179
+
2180
+ .fa-grin-tongue:before {
2181
+ content: "\f589";
2182
+ }
2183
+
2184
+ .fa-grin-tongue-squint:before {
2185
+ content: "\f58a";
2186
+ }
2187
+
2188
+ .fa-grin-tongue-wink:before {
2189
+ content: "\f58b";
2190
+ }
2191
+
2192
+ .fa-grin-wink:before {
2193
+ content: "\f58c";
2194
+ }
2195
+
2196
+ .fa-grip-horizontal:before {
2197
+ content: "\f58d";
2198
+ }
2199
+
2200
+ .fa-grip-vertical:before {
2201
+ content: "\f58e";
2202
+ }
2203
+
2204
+ .fa-gripfire:before {
2205
+ content: "\f3ac";
2206
+ }
2207
+
2208
+ .fa-grunt:before {
2209
+ content: "\f3ad";
2210
+ }
2211
+
2212
+ .fa-gulp:before {
2213
+ content: "\f3ae";
2214
+ }
2215
+
2216
+ .fa-h-square:before {
2217
+ content: "\f0fd";
2218
+ }
2219
+
2220
+ .fa-hacker-news:before {
2221
+ content: "\f1d4";
2222
+ }
2223
+
2224
+ .fa-hacker-news-square:before {
2225
+ content: "\f3af";
2226
+ }
2227
+
2228
+ .fa-hackerrank:before {
2229
+ content: "\f5f7";
2230
+ }
2231
+
2232
+ .fa-hand-holding:before {
2233
+ content: "\f4bd";
2234
+ }
2235
+
2236
+ .fa-hand-holding-heart:before {
2237
+ content: "\f4be";
2238
+ }
2239
+
2240
+ .fa-hand-holding-usd:before {
2241
+ content: "\f4c0";
2242
+ }
2243
+
2244
+ .fa-hand-lizard:before {
2245
+ content: "\f258";
2246
+ }
2247
+
2248
+ .fa-hand-paper:before {
2249
+ content: "\f256";
2250
+ }
2251
+
2252
+ .fa-hand-peace:before {
2253
+ content: "\f25b";
2254
+ }
2255
+
2256
+ .fa-hand-point-down:before {
2257
+ content: "\f0a7";
2258
+ }
2259
+
2260
+ .fa-hand-point-left:before {
2261
+ content: "\f0a5";
2262
+ }
2263
+
2264
+ .fa-hand-point-right:before {
2265
+ content: "\f0a4";
2266
+ }
2267
+
2268
+ .fa-hand-point-up:before {
2269
+ content: "\f0a6";
2270
+ }
2271
+
2272
+ .fa-hand-pointer:before {
2273
+ content: "\f25a";
2274
+ }
2275
+
2276
+ .fa-hand-rock:before {
2277
+ content: "\f255";
2278
+ }
2279
+
2280
+ .fa-hand-scissors:before {
2281
+ content: "\f257";
2282
+ }
2283
+
2284
+ .fa-hand-spock:before {
2285
+ content: "\f259";
2286
+ }
2287
+
2288
+ .fa-hands:before {
2289
+ content: "\f4c2";
2290
+ }
2291
+
2292
+ .fa-hands-helping:before {
2293
+ content: "\f4c4";
2294
+ }
2295
+
2296
+ .fa-handshake:before {
2297
+ content: "\f2b5";
2298
+ }
2299
+
2300
+ .fa-hashtag:before {
2301
+ content: "\f292";
2302
+ }
2303
+
2304
+ .fa-hdd:before {
2305
+ content: "\f0a0";
2306
+ }
2307
+
2308
+ .fa-heading:before {
2309
+ content: "\f1dc";
2310
+ }
2311
+
2312
+ .fa-headphones:before {
2313
+ content: "\f025";
2314
+ }
2315
+
2316
+ .fa-headphones-alt:before {
2317
+ content: "\f58f";
2318
+ }
2319
+
2320
+ .fa-headset:before {
2321
+ content: "\f590";
2322
+ }
2323
+
2324
+ .fa-heart:before {
2325
+ content: "\f004";
2326
+ }
2327
+
2328
+ .fa-heartbeat:before {
2329
+ content: "\f21e";
2330
+ }
2331
+
2332
+ .fa-helicopter:before {
2333
+ content: "\f533";
2334
+ }
2335
+
2336
+ .fa-highlighter:before {
2337
+ content: "\f591";
2338
+ }
2339
+
2340
+ .fa-hips:before {
2341
+ content: "\f452";
2342
+ }
2343
+
2344
+ .fa-hire-a-helper:before {
2345
+ content: "\f3b0";
2346
+ }
2347
+
2348
+ .fa-history:before {
2349
+ content: "\f1da";
2350
+ }
2351
+
2352
+ .fa-hockey-puck:before {
2353
+ content: "\f453";
2354
+ }
2355
+
2356
+ .fa-home:before {
2357
+ content: "\f015";
2358
+ }
2359
+
2360
+ .fa-hooli:before {
2361
+ content: "\f427";
2362
+ }
2363
+
2364
+ .fa-hornbill:before {
2365
+ content: "\f592";
2366
+ }
2367
+
2368
+ .fa-hospital:before {
2369
+ content: "\f0f8";
2370
+ }
2371
+
2372
+ .fa-hospital-alt:before {
2373
+ content: "\f47d";
2374
+ }
2375
+
2376
+ .fa-hospital-symbol:before {
2377
+ content: "\f47e";
2378
+ }
2379
+
2380
+ .fa-hot-tub:before {
2381
+ content: "\f593";
2382
+ }
2383
+
2384
+ .fa-hotel:before {
2385
+ content: "\f594";
2386
+ }
2387
+
2388
+ .fa-hotjar:before {
2389
+ content: "\f3b1";
2390
+ }
2391
+
2392
+ .fa-hourglass:before {
2393
+ content: "\f254";
2394
+ }
2395
+
2396
+ .fa-hourglass-end:before {
2397
+ content: "\f253";
2398
+ }
2399
+
2400
+ .fa-hourglass-half:before {
2401
+ content: "\f252";
2402
+ }
2403
+
2404
+ .fa-hourglass-start:before {
2405
+ content: "\f251";
2406
+ }
2407
+
2408
+ .fa-houzz:before {
2409
+ content: "\f27c";
2410
+ }
2411
+
2412
+ .fa-html5:before {
2413
+ content: "\f13b";
2414
+ }
2415
+
2416
+ .fa-hubspot:before {
2417
+ content: "\f3b2";
2418
+ }
2419
+
2420
+ .fa-i-cursor:before {
2421
+ content: "\f246";
2422
+ }
2423
+
2424
+ .fa-id-badge:before {
2425
+ content: "\f2c1";
2426
+ }
2427
+
2428
+ .fa-id-card:before {
2429
+ content: "\f2c2";
2430
+ }
2431
+
2432
+ .fa-id-card-alt:before {
2433
+ content: "\f47f";
2434
+ }
2435
+
2436
+ .fa-image:before {
2437
+ content: "\f03e";
2438
+ }
2439
+
2440
+ .fa-images:before {
2441
+ content: "\f302";
2442
+ }
2443
+
2444
+ .fa-imdb:before {
2445
+ content: "\f2d8";
2446
+ }
2447
+
2448
+ .fa-inbox:before {
2449
+ content: "\f01c";
2450
+ }
2451
+
2452
+ .fa-indent:before {
2453
+ content: "\f03c";
2454
+ }
2455
+
2456
+ .fa-industry:before {
2457
+ content: "\f275";
2458
+ }
2459
+
2460
+ .fa-infinity:before {
2461
+ content: "\f534";
2462
+ }
2463
+
2464
+ .fa-info:before {
2465
+ content: "\f129";
2466
+ }
2467
+
2468
+ .fa-info-circle:before {
2469
+ content: "\f05a";
2470
+ }
2471
+
2472
+ .fa-instagram:before {
2473
+ content: "\f16d";
2474
+ }
2475
+
2476
+ .fa-internet-explorer:before {
2477
+ content: "\f26b";
2478
+ }
2479
+
2480
+ .fa-ioxhost:before {
2481
+ content: "\f208";
2482
+ }
2483
+
2484
+ .fa-italic:before {
2485
+ content: "\f033";
2486
+ }
2487
+
2488
+ .fa-itunes:before {
2489
+ content: "\f3b4";
2490
+ }
2491
+
2492
+ .fa-itunes-note:before {
2493
+ content: "\f3b5";
2494
+ }
2495
+
2496
+ .fa-java:before {
2497
+ content: "\f4e4";
2498
+ }
2499
+
2500
+ .fa-jedi-order:before {
2501
+ content: "\f50e";
2502
+ }
2503
+
2504
+ .fa-jenkins:before {
2505
+ content: "\f3b6";
2506
+ }
2507
+
2508
+ .fa-joget:before {
2509
+ content: "\f3b7";
2510
+ }
2511
+
2512
+ .fa-joint:before {
2513
+ content: "\f595";
2514
+ }
2515
+
2516
+ .fa-joomla:before {
2517
+ content: "\f1aa";
2518
+ }
2519
+
2520
+ .fa-js:before {
2521
+ content: "\f3b8";
2522
+ }
2523
+
2524
+ .fa-js-square:before {
2525
+ content: "\f3b9";
2526
+ }
2527
+
2528
+ .fa-jsfiddle:before {
2529
+ content: "\f1cc";
2530
+ }
2531
+
2532
+ .fa-kaggle:before {
2533
+ content: "\f5fa";
2534
+ }
2535
+
2536
+ .fa-key:before {
2537
+ content: "\f084";
2538
+ }
2539
+
2540
+ .fa-keybase:before {
2541
+ content: "\f4f5";
2542
+ }
2543
+
2544
+ .fa-keyboard:before {
2545
+ content: "\f11c";
2546
+ }
2547
+
2548
+ .fa-keycdn:before {
2549
+ content: "\f3ba";
2550
+ }
2551
+
2552
+ .fa-kickstarter:before {
2553
+ content: "\f3bb";
2554
+ }
2555
+
2556
+ .fa-kickstarter-k:before {
2557
+ content: "\f3bc";
2558
+ }
2559
+
2560
+ .fa-kiss:before {
2561
+ content: "\f596";
2562
+ }
2563
+
2564
+ .fa-kiss-beam:before {
2565
+ content: "\f597";
2566
+ }
2567
+
2568
+ .fa-kiss-wink-heart:before {
2569
+ content: "\f598";
2570
+ }
2571
+
2572
+ .fa-kiwi-bird:before {
2573
+ content: "\f535";
2574
+ }
2575
+
2576
+ .fa-korvue:before {
2577
+ content: "\f42f";
2578
+ }
2579
+
2580
+ .fa-language:before {
2581
+ content: "\f1ab";
2582
+ }
2583
+
2584
+ .fa-laptop:before {
2585
+ content: "\f109";
2586
+ }
2587
+
2588
+ .fa-laptop-code:before {
2589
+ content: "\f5fc";
2590
+ }
2591
+
2592
+ .fa-laravel:before {
2593
+ content: "\f3bd";
2594
+ }
2595
+
2596
+ .fa-lastfm:before {
2597
+ content: "\f202";
2598
+ }
2599
+
2600
+ .fa-lastfm-square:before {
2601
+ content: "\f203";
2602
+ }
2603
+
2604
+ .fa-laugh:before {
2605
+ content: "\f599";
2606
+ }
2607
+
2608
+ .fa-laugh-beam:before {
2609
+ content: "\f59a";
2610
+ }
2611
+
2612
+ .fa-laugh-squint:before {
2613
+ content: "\f59b";
2614
+ }
2615
+
2616
+ .fa-laugh-wink:before {
2617
+ content: "\f59c";
2618
+ }
2619
+
2620
+ .fa-layer-group:before {
2621
+ content: "\f5fd";
2622
+ }
2623
+
2624
+ .fa-leaf:before {
2625
+ content: "\f06c";
2626
+ }
2627
+
2628
+ .fa-leanpub:before {
2629
+ content: "\f212";
2630
+ }
2631
+
2632
+ .fa-lemon:before {
2633
+ content: "\f094";
2634
+ }
2635
+
2636
+ .fa-less:before {
2637
+ content: "\f41d";
2638
+ }
2639
+
2640
+ .fa-less-than:before {
2641
+ content: "\f536";
2642
+ }
2643
+
2644
+ .fa-less-than-equal:before {
2645
+ content: "\f537";
2646
+ }
2647
+
2648
+ .fa-level-down-alt:before {
2649
+ content: "\f3be";
2650
+ }
2651
+
2652
+ .fa-level-up-alt:before {
2653
+ content: "\f3bf";
2654
+ }
2655
+
2656
+ .fa-life-ring:before {
2657
+ content: "\f1cd";
2658
+ }
2659
+
2660
+ .fa-lightbulb:before {
2661
+ content: "\f0eb";
2662
+ }
2663
+
2664
+ .fa-line:before {
2665
+ content: "\f3c0";
2666
+ }
2667
+
2668
+ .fa-link:before {
2669
+ content: "\f0c1";
2670
+ }
2671
+
2672
+ .fa-linkedin:before {
2673
+ content: "\f08c";
2674
+ }
2675
+
2676
+ .fa-linkedin-in:before {
2677
+ content: "\f0e1";
2678
+ }
2679
+
2680
+ .fa-linode:before {
2681
+ content: "\f2b8";
2682
+ }
2683
+
2684
+ .fa-linux:before {
2685
+ content: "\f17c";
2686
+ }
2687
+
2688
+ .fa-lira-sign:before {
2689
+ content: "\f195";
2690
+ }
2691
+
2692
+ .fa-list:before {
2693
+ content: "\f03a";
2694
+ }
2695
+
2696
+ .fa-list-alt:before {
2697
+ content: "\f022";
2698
+ }
2699
+
2700
+ .fa-list-ol:before {
2701
+ content: "\f0cb";
2702
+ }
2703
+
2704
+ .fa-list-ul:before {
2705
+ content: "\f0ca";
2706
+ }
2707
+
2708
+ .fa-location-arrow:before {
2709
+ content: "\f124";
2710
+ }
2711
+
2712
+ .fa-lock:before {
2713
+ content: "\f023";
2714
+ }
2715
+
2716
+ .fa-lock-open:before {
2717
+ content: "\f3c1";
2718
+ }
2719
+
2720
+ .fa-long-arrow-alt-down:before {
2721
+ content: "\f309";
2722
+ }
2723
+
2724
+ .fa-long-arrow-alt-left:before {
2725
+ content: "\f30a";
2726
+ }
2727
+
2728
+ .fa-long-arrow-alt-right:before {
2729
+ content: "\f30b";
2730
+ }
2731
+
2732
+ .fa-long-arrow-alt-up:before {
2733
+ content: "\f30c";
2734
+ }
2735
+
2736
+ .fa-low-vision:before {
2737
+ content: "\f2a8";
2738
+ }
2739
+
2740
+ .fa-luggage-cart:before {
2741
+ content: "\f59d";
2742
+ }
2743
+
2744
+ .fa-lyft:before {
2745
+ content: "\f3c3";
2746
+ }
2747
+
2748
+ .fa-magento:before {
2749
+ content: "\f3c4";
2750
+ }
2751
+
2752
+ .fa-magic:before {
2753
+ content: "\f0d0";
2754
+ }
2755
+
2756
+ .fa-magnet:before {
2757
+ content: "\f076";
2758
+ }
2759
+
2760
+ .fa-mailchimp:before {
2761
+ content: "\f59e";
2762
+ }
2763
+
2764
+ .fa-male:before {
2765
+ content: "\f183";
2766
+ }
2767
+
2768
+ .fa-mandalorian:before {
2769
+ content: "\f50f";
2770
+ }
2771
+
2772
+ .fa-map:before {
2773
+ content: "\f279";
2774
+ }
2775
+
2776
+ .fa-map-marked:before {
2777
+ content: "\f59f";
2778
+ }
2779
+
2780
+ .fa-map-marked-alt:before {
2781
+ content: "\f5a0";
2782
+ }
2783
+
2784
+ .fa-map-marker:before {
2785
+ content: "\f041";
2786
+ }
2787
+
2788
+ .fa-map-marker-alt:before {
2789
+ content: "\f3c5";
2790
+ }
2791
+
2792
+ .fa-map-pin:before {
2793
+ content: "\f276";
2794
+ }
2795
+
2796
+ .fa-map-signs:before {
2797
+ content: "\f277";
2798
+ }
2799
+
2800
+ .fa-markdown:before {
2801
+ content: "\f60f";
2802
+ }
2803
+
2804
+ .fa-marker:before {
2805
+ content: "\f5a1";
2806
+ }
2807
+
2808
+ .fa-mars:before {
2809
+ content: "\f222";
2810
+ }
2811
+
2812
+ .fa-mars-double:before {
2813
+ content: "\f227";
2814
+ }
2815
+
2816
+ .fa-mars-stroke:before {
2817
+ content: "\f229";
2818
+ }
2819
+
2820
+ .fa-mars-stroke-h:before {
2821
+ content: "\f22b";
2822
+ }
2823
+
2824
+ .fa-mars-stroke-v:before {
2825
+ content: "\f22a";
2826
+ }
2827
+
2828
+ .fa-mastodon:before {
2829
+ content: "\f4f6";
2830
+ }
2831
+
2832
+ .fa-maxcdn:before {
2833
+ content: "\f136";
2834
+ }
2835
+
2836
+ .fa-medal:before {
2837
+ content: "\f5a2";
2838
+ }
2839
+
2840
+ .fa-medapps:before {
2841
+ content: "\f3c6";
2842
+ }
2843
+
2844
+ .fa-medium:before {
2845
+ content: "\f23a";
2846
+ }
2847
+
2848
+ .fa-medium-m:before {
2849
+ content: "\f3c7";
2850
+ }
2851
+
2852
+ .fa-medkit:before {
2853
+ content: "\f0fa";
2854
+ }
2855
+
2856
+ .fa-medrt:before {
2857
+ content: "\f3c8";
2858
+ }
2859
+
2860
+ .fa-meetup:before {
2861
+ content: "\f2e0";
2862
+ }
2863
+
2864
+ .fa-megaport:before {
2865
+ content: "\f5a3";
2866
+ }
2867
+
2868
+ .fa-meh:before {
2869
+ content: "\f11a";
2870
+ }
2871
+
2872
+ .fa-meh-blank:before {
2873
+ content: "\f5a4";
2874
+ }
2875
+
2876
+ .fa-meh-rolling-eyes:before {
2877
+ content: "\f5a5";
2878
+ }
2879
+
2880
+ .fa-memory:before {
2881
+ content: "\f538";
2882
+ }
2883
+
2884
+ .fa-mercury:before {
2885
+ content: "\f223";
2886
+ }
2887
+
2888
+ .fa-microchip:before {
2889
+ content: "\f2db";
2890
+ }
2891
+
2892
+ .fa-microphone:before {
2893
+ content: "\f130";
2894
+ }
2895
+
2896
+ .fa-microphone-alt:before {
2897
+ content: "\f3c9";
2898
+ }
2899
+
2900
+ .fa-microphone-alt-slash:before {
2901
+ content: "\f539";
2902
+ }
2903
+
2904
+ .fa-microphone-slash:before {
2905
+ content: "\f131";
2906
+ }
2907
+
2908
+ .fa-microscope:before {
2909
+ content: "\f610";
2910
+ }
2911
+
2912
+ .fa-microsoft:before {
2913
+ content: "\f3ca";
2914
+ }
2915
+
2916
+ .fa-minus:before {
2917
+ content: "\f068";
2918
+ }
2919
+
2920
+ .fa-minus-circle:before {
2921
+ content: "\f056";
2922
+ }
2923
+
2924
+ .fa-minus-square:before {
2925
+ content: "\f146";
2926
+ }
2927
+
2928
+ .fa-mix:before {
2929
+ content: "\f3cb";
2930
+ }
2931
+
2932
+ .fa-mixcloud:before {
2933
+ content: "\f289";
2934
+ }
2935
+
2936
+ .fa-mizuni:before {
2937
+ content: "\f3cc";
2938
+ }
2939
+
2940
+ .fa-mobile:before {
2941
+ content: "\f10b";
2942
+ }
2943
+
2944
+ .fa-mobile-alt:before {
2945
+ content: "\f3cd";
2946
+ }
2947
+
2948
+ .fa-modx:before {
2949
+ content: "\f285";
2950
+ }
2951
+
2952
+ .fa-monero:before {
2953
+ content: "\f3d0";
2954
+ }
2955
+
2956
+ .fa-money-bill:before {
2957
+ content: "\f0d6";
2958
+ }
2959
+
2960
+ .fa-money-bill-alt:before {
2961
+ content: "\f3d1";
2962
+ }
2963
+
2964
+ .fa-money-bill-wave:before {
2965
+ content: "\f53a";
2966
+ }
2967
+
2968
+ .fa-money-bill-wave-alt:before {
2969
+ content: "\f53b";
2970
+ }
2971
+
2972
+ .fa-money-check:before {
2973
+ content: "\f53c";
2974
+ }
2975
+
2976
+ .fa-money-check-alt:before {
2977
+ content: "\f53d";
2978
+ }
2979
+
2980
+ .fa-monument:before {
2981
+ content: "\f5a6";
2982
+ }
2983
+
2984
+ .fa-moon:before {
2985
+ content: "\f186";
2986
+ }
2987
+
2988
+ .fa-mortar-pestle:before {
2989
+ content: "\f5a7";
2990
+ }
2991
+
2992
+ .fa-motorcycle:before {
2993
+ content: "\f21c";
2994
+ }
2995
+
2996
+ .fa-mouse-pointer:before {
2997
+ content: "\f245";
2998
+ }
2999
+
3000
+ .fa-music:before {
3001
+ content: "\f001";
3002
+ }
3003
+
3004
+ .fa-napster:before {
3005
+ content: "\f3d2";
3006
+ }
3007
+
3008
+ .fa-neos:before {
3009
+ content: "\f612";
3010
+ }
3011
+
3012
+ .fa-neuter:before {
3013
+ content: "\f22c";
3014
+ }
3015
+
3016
+ .fa-newspaper:before {
3017
+ content: "\f1ea";
3018
+ }
3019
+
3020
+ .fa-nimblr:before {
3021
+ content: "\f5a8";
3022
+ }
3023
+
3024
+ .fa-nintendo-switch:before {
3025
+ content: "\f418";
3026
+ }
3027
+
3028
+ .fa-node:before {
3029
+ content: "\f419";
3030
+ }
3031
+
3032
+ .fa-node-js:before {
3033
+ content: "\f3d3";
3034
+ }
3035
+
3036
+ .fa-not-equal:before {
3037
+ content: "\f53e";
3038
+ }
3039
+
3040
+ .fa-notes-medical:before {
3041
+ content: "\f481";
3042
+ }
3043
+
3044
+ .fa-npm:before {
3045
+ content: "\f3d4";
3046
+ }
3047
+
3048
+ .fa-ns8:before {
3049
+ content: "\f3d5";
3050
+ }
3051
+
3052
+ .fa-nutritionix:before {
3053
+ content: "\f3d6";
3054
+ }
3055
+
3056
+ .fa-object-group:before {
3057
+ content: "\f247";
3058
+ }
3059
+
3060
+ .fa-object-ungroup:before {
3061
+ content: "\f248";
3062
+ }
3063
+
3064
+ .fa-odnoklassniki:before {
3065
+ content: "\f263";
3066
+ }
3067
+
3068
+ .fa-odnoklassniki-square:before {
3069
+ content: "\f264";
3070
+ }
3071
+
3072
+ .fa-oil-can:before {
3073
+ content: "\f613";
3074
+ }
3075
+
3076
+ .fa-old-republic:before {
3077
+ content: "\f510";
3078
+ }
3079
+
3080
+ .fa-opencart:before {
3081
+ content: "\f23d";
3082
+ }
3083
+
3084
+ .fa-openid:before {
3085
+ content: "\f19b";
3086
+ }
3087
+
3088
+ .fa-opera:before {
3089
+ content: "\f26a";
3090
+ }
3091
+
3092
+ .fa-optin-monster:before {
3093
+ content: "\f23c";
3094
+ }
3095
+
3096
+ .fa-osi:before {
3097
+ content: "\f41a";
3098
+ }
3099
+
3100
+ .fa-outdent:before {
3101
+ content: "\f03b";
3102
+ }
3103
+
3104
+ .fa-page4:before {
3105
+ content: "\f3d7";
3106
+ }
3107
+
3108
+ .fa-pagelines:before {
3109
+ content: "\f18c";
3110
+ }
3111
+
3112
+ .fa-paint-brush:before {
3113
+ content: "\f1fc";
3114
+ }
3115
+
3116
+ .fa-paint-roller:before {
3117
+ content: "\f5aa";
3118
+ }
3119
+
3120
+ .fa-palette:before {
3121
+ content: "\f53f";
3122
+ }
3123
+
3124
+ .fa-palfed:before {
3125
+ content: "\f3d8";
3126
+ }
3127
+
3128
+ .fa-pallet:before {
3129
+ content: "\f482";
3130
+ }
3131
+
3132
+ .fa-paper-plane:before {
3133
+ content: "\f1d8";
3134
+ }
3135
+
3136
+ .fa-paperclip:before {
3137
+ content: "\f0c6";
3138
+ }
3139
+
3140
+ .fa-parachute-box:before {
3141
+ content: "\f4cd";
3142
+ }
3143
+
3144
+ .fa-paragraph:before {
3145
+ content: "\f1dd";
3146
+ }
3147
+
3148
+ .fa-parking:before {
3149
+ content: "\f540";
3150
+ }
3151
+
3152
+ .fa-passport:before {
3153
+ content: "\f5ab";
3154
+ }
3155
+
3156
+ .fa-paste:before {
3157
+ content: "\f0ea";
3158
+ }
3159
+
3160
+ .fa-patreon:before {
3161
+ content: "\f3d9";
3162
+ }
3163
+
3164
+ .fa-pause:before {
3165
+ content: "\f04c";
3166
+ }
3167
+
3168
+ .fa-pause-circle:before {
3169
+ content: "\f28b";
3170
+ }
3171
+
3172
+ .fa-paw:before {
3173
+ content: "\f1b0";
3174
+ }
3175
+
3176
+ .fa-paypal:before {
3177
+ content: "\f1ed";
3178
+ }
3179
+
3180
+ .fa-pen:before {
3181
+ content: "\f304";
3182
+ }
3183
+
3184
+ .fa-pen-alt:before {
3185
+ content: "\f305";
3186
+ }
3187
+
3188
+ .fa-pen-fancy:before {
3189
+ content: "\f5ac";
3190
+ }
3191
+
3192
+ .fa-pen-nib:before {
3193
+ content: "\f5ad";
3194
+ }
3195
+
3196
+ .fa-pen-square:before {
3197
+ content: "\f14b";
3198
+ }
3199
+
3200
+ .fa-pencil-alt:before {
3201
+ content: "\f303";
3202
+ }
3203
+
3204
+ .fa-pencil-ruler:before {
3205
+ content: "\f5ae";
3206
+ }
3207
+
3208
+ .fa-people-carry:before {
3209
+ content: "\f4ce";
3210
+ }
3211
+
3212
+ .fa-percent:before {
3213
+ content: "\f295";
3214
+ }
3215
+
3216
+ .fa-percentage:before {
3217
+ content: "\f541";
3218
+ }
3219
+
3220
+ .fa-periscope:before {
3221
+ content: "\f3da";
3222
+ }
3223
+
3224
+ .fa-phabricator:before {
3225
+ content: "\f3db";
3226
+ }
3227
+
3228
+ .fa-phoenix-framework:before {
3229
+ content: "\f3dc";
3230
+ }
3231
+
3232
+ .fa-phoenix-squadron:before {
3233
+ content: "\f511";
3234
+ }
3235
+
3236
+ .fa-phone:before {
3237
+ content: "\f095";
3238
+ }
3239
+
3240
+ .fa-phone-slash:before {
3241
+ content: "\f3dd";
3242
+ }
3243
+
3244
+ .fa-phone-square:before {
3245
+ content: "\f098";
3246
+ }
3247
+
3248
+ .fa-phone-volume:before {
3249
+ content: "\f2a0";
3250
+ }
3251
+
3252
+ .fa-php:before {
3253
+ content: "\f457";
3254
+ }
3255
+
3256
+ .fa-pied-piper:before {
3257
+ content: "\f2ae";
3258
+ }
3259
+
3260
+ .fa-pied-piper-alt:before {
3261
+ content: "\f1a8";
3262
+ }
3263
+
3264
+ .fa-pied-piper-hat:before {
3265
+ content: "\f4e5";
3266
+ }
3267
+
3268
+ .fa-pied-piper-pp:before {
3269
+ content: "\f1a7";
3270
+ }
3271
+
3272
+ .fa-piggy-bank:before {
3273
+ content: "\f4d3";
3274
+ }
3275
+
3276
+ .fa-pills:before {
3277
+ content: "\f484";
3278
+ }
3279
+
3280
+ .fa-pinterest:before {
3281
+ content: "\f0d2";
3282
+ }
3283
+
3284
+ .fa-pinterest-p:before {
3285
+ content: "\f231";
3286
+ }
3287
+
3288
+ .fa-pinterest-square:before {
3289
+ content: "\f0d3";
3290
+ }
3291
+
3292
+ .fa-plane:before {
3293
+ content: "\f072";
3294
+ }
3295
+
3296
+ .fa-plane-arrival:before {
3297
+ content: "\f5af";
3298
+ }
3299
+
3300
+ .fa-plane-departure:before {
3301
+ content: "\f5b0";
3302
+ }
3303
+
3304
+ .fa-play:before {
3305
+ content: "\f04b";
3306
+ }
3307
+
3308
+ .fa-play-circle:before {
3309
+ content: "\f144";
3310
+ }
3311
+
3312
+ .fa-playstation:before {
3313
+ content: "\f3df";
3314
+ }
3315
+
3316
+ .fa-plug:before {
3317
+ content: "\f1e6";
3318
+ }
3319
+
3320
+ .fa-plus:before {
3321
+ content: "\f067";
3322
+ }
3323
+
3324
+ .fa-plus-circle:before {
3325
+ content: "\f055";
3326
+ }
3327
+
3328
+ .fa-plus-square:before {
3329
+ content: "\f0fe";
3330
+ }
3331
+
3332
+ .fa-podcast:before {
3333
+ content: "\f2ce";
3334
+ }
3335
+
3336
+ .fa-poo:before {
3337
+ content: "\f2fe";
3338
+ }
3339
+
3340
+ .fa-poop:before {
3341
+ content: "\f619";
3342
+ }
3343
+
3344
+ .fa-portrait:before {
3345
+ content: "\f3e0";
3346
+ }
3347
+
3348
+ .fa-pound-sign:before {
3349
+ content: "\f154";
3350
+ }
3351
+
3352
+ .fa-power-off:before {
3353
+ content: "\f011";
3354
+ }
3355
+
3356
+ .fa-prescription:before {
3357
+ content: "\f5b1";
3358
+ }
3359
+
3360
+ .fa-prescription-bottle:before {
3361
+ content: "\f485";
3362
+ }
3363
+
3364
+ .fa-prescription-bottle-alt:before {
3365
+ content: "\f486";
3366
+ }
3367
+
3368
+ .fa-print:before {
3369
+ content: "\f02f";
3370
+ }
3371
+
3372
+ .fa-procedures:before {
3373
+ content: "\f487";
3374
+ }
3375
+
3376
+ .fa-product-hunt:before {
3377
+ content: "\f288";
3378
+ }
3379
+
3380
+ .fa-project-diagram:before {
3381
+ content: "\f542";
3382
+ }
3383
+
3384
+ .fa-pushed:before {
3385
+ content: "\f3e1";
3386
+ }
3387
+
3388
+ .fa-puzzle-piece:before {
3389
+ content: "\f12e";
3390
+ }
3391
+
3392
+ .fa-python:before {
3393
+ content: "\f3e2";
3394
+ }
3395
+
3396
+ .fa-qq:before {
3397
+ content: "\f1d6";
3398
+ }
3399
+
3400
+ .fa-qrcode:before {
3401
+ content: "\f029";
3402
+ }
3403
+
3404
+ .fa-question:before {
3405
+ content: "\f128";
3406
+ }
3407
+
3408
+ .fa-question-circle:before {
3409
+ content: "\f059";
3410
+ }
3411
+
3412
+ .fa-quidditch:before {
3413
+ content: "\f458";
3414
+ }
3415
+
3416
+ .fa-quinscape:before {
3417
+ content: "\f459";
3418
+ }
3419
+
3420
+ .fa-quora:before {
3421
+ content: "\f2c4";
3422
+ }
3423
+
3424
+ .fa-quote-left:before {
3425
+ content: "\f10d";
3426
+ }
3427
+
3428
+ .fa-quote-right:before {
3429
+ content: "\f10e";
3430
+ }
3431
+
3432
+ .fa-r-project:before {
3433
+ content: "\f4f7";
3434
+ }
3435
+
3436
+ .fa-random:before {
3437
+ content: "\f074";
3438
+ }
3439
+
3440
+ .fa-ravelry:before {
3441
+ content: "\f2d9";
3442
+ }
3443
+
3444
+ .fa-react:before {
3445
+ content: "\f41b";
3446
+ }
3447
+
3448
+ .fa-readme:before {
3449
+ content: "\f4d5";
3450
+ }
3451
+
3452
+ .fa-rebel:before {
3453
+ content: "\f1d0";
3454
+ }
3455
+
3456
+ .fa-receipt:before {
3457
+ content: "\f543";
3458
+ }
3459
+
3460
+ .fa-recycle:before {
3461
+ content: "\f1b8";
3462
+ }
3463
+
3464
+ .fa-red-river:before {
3465
+ content: "\f3e3";
3466
+ }
3467
+
3468
+ .fa-reddit:before {
3469
+ content: "\f1a1";
3470
+ }
3471
+
3472
+ .fa-reddit-alien:before {
3473
+ content: "\f281";
3474
+ }
3475
+
3476
+ .fa-reddit-square:before {
3477
+ content: "\f1a2";
3478
+ }
3479
+
3480
+ .fa-redo:before {
3481
+ content: "\f01e";
3482
+ }
3483
+
3484
+ .fa-redo-alt:before {
3485
+ content: "\f2f9";
3486
+ }
3487
+
3488
+ .fa-registered:before {
3489
+ content: "\f25d";
3490
+ }
3491
+
3492
+ .fa-rendact:before {
3493
+ content: "\f3e4";
3494
+ }
3495
+
3496
+ .fa-renren:before {
3497
+ content: "\f18b";
3498
+ }
3499
+
3500
+ .fa-reply:before {
3501
+ content: "\f3e5";
3502
+ }
3503
+
3504
+ .fa-reply-all:before {
3505
+ content: "\f122";
3506
+ }
3507
+
3508
+ .fa-replyd:before {
3509
+ content: "\f3e6";
3510
+ }
3511
+
3512
+ .fa-researchgate:before {
3513
+ content: "\f4f8";
3514
+ }
3515
+
3516
+ .fa-resolving:before {
3517
+ content: "\f3e7";
3518
+ }
3519
+
3520
+ .fa-retweet:before {
3521
+ content: "\f079";
3522
+ }
3523
+
3524
+ .fa-rev:before {
3525
+ content: "\f5b2";
3526
+ }
3527
+
3528
+ .fa-ribbon:before {
3529
+ content: "\f4d6";
3530
+ }
3531
+
3532
+ .fa-road:before {
3533
+ content: "\f018";
3534
+ }
3535
+
3536
+ .fa-robot:before {
3537
+ content: "\f544";
3538
+ }
3539
+
3540
+ .fa-rocket:before {
3541
+ content: "\f135";
3542
+ }
3543
+
3544
+ .fa-rocketchat:before {
3545
+ content: "\f3e8";
3546
+ }
3547
+
3548
+ .fa-rockrms:before {
3549
+ content: "\f3e9";
3550
+ }
3551
+
3552
+ .fa-route:before {
3553
+ content: "\f4d7";
3554
+ }
3555
+
3556
+ .fa-rss:before {
3557
+ content: "\f09e";
3558
+ }
3559
+
3560
+ .fa-rss-square:before {
3561
+ content: "\f143";
3562
+ }
3563
+
3564
+ .fa-ruble-sign:before {
3565
+ content: "\f158";
3566
+ }
3567
+
3568
+ .fa-ruler:before {
3569
+ content: "\f545";
3570
+ }
3571
+
3572
+ .fa-ruler-combined:before {
3573
+ content: "\f546";
3574
+ }
3575
+
3576
+ .fa-ruler-horizontal:before {
3577
+ content: "\f547";
3578
+ }
3579
+
3580
+ .fa-ruler-vertical:before {
3581
+ content: "\f548";
3582
+ }
3583
+
3584
+ .fa-rupee-sign:before {
3585
+ content: "\f156";
3586
+ }
3587
+
3588
+ .fa-sad-cry:before {
3589
+ content: "\f5b3";
3590
+ }
3591
+
3592
+ .fa-sad-tear:before {
3593
+ content: "\f5b4";
3594
+ }
3595
+
3596
+ .fa-safari:before {
3597
+ content: "\f267";
3598
+ }
3599
+
3600
+ .fa-sass:before {
3601
+ content: "\f41e";
3602
+ }
3603
+
3604
+ .fa-save:before {
3605
+ content: "\f0c7";
3606
+ }
3607
+
3608
+ .fa-schlix:before {
3609
+ content: "\f3ea";
3610
+ }
3611
+
3612
+ .fa-school:before {
3613
+ content: "\f549";
3614
+ }
3615
+
3616
+ .fa-screwdriver:before {
3617
+ content: "\f54a";
3618
+ }
3619
+
3620
+ .fa-scribd:before {
3621
+ content: "\f28a";
3622
+ }
3623
+
3624
+ .fa-search:before {
3625
+ content: "\f002";
3626
+ }
3627
+
3628
+ .fa-search-minus:before {
3629
+ content: "\f010";
3630
+ }
3631
+
3632
+ .fa-search-plus:before {
3633
+ content: "\f00e";
3634
+ }
3635
+
3636
+ .fa-searchengin:before {
3637
+ content: "\f3eb";
3638
+ }
3639
+
3640
+ .fa-seedling:before {
3641
+ content: "\f4d8";
3642
+ }
3643
+
3644
+ .fa-sellcast:before {
3645
+ content: "\f2da";
3646
+ }
3647
+
3648
+ .fa-sellsy:before {
3649
+ content: "\f213";
3650
+ }
3651
+
3652
+ .fa-server:before {
3653
+ content: "\f233";
3654
+ }
3655
+
3656
+ .fa-servicestack:before {
3657
+ content: "\f3ec";
3658
+ }
3659
+
3660
+ .fa-shapes:before {
3661
+ content: "\f61f";
3662
+ }
3663
+
3664
+ .fa-share:before {
3665
+ content: "\f064";
3666
+ }
3667
+
3668
+ .fa-share-alt:before {
3669
+ content: "\f1e0";
3670
+ }
3671
+
3672
+ .fa-share-alt-square:before {
3673
+ content: "\f1e1";
3674
+ }
3675
+
3676
+ .fa-share-square:before {
3677
+ content: "\f14d";
3678
+ }
3679
+
3680
+ .fa-shekel-sign:before {
3681
+ content: "\f20b";
3682
+ }
3683
+
3684
+ .fa-shield-alt:before {
3685
+ content: "\f3ed";
3686
+ }
3687
+
3688
+ .fa-ship:before {
3689
+ content: "\f21a";
3690
+ }
3691
+
3692
+ .fa-shipping-fast:before {
3693
+ content: "\f48b";
3694
+ }
3695
+
3696
+ .fa-shirtsinbulk:before {
3697
+ content: "\f214";
3698
+ }
3699
+
3700
+ .fa-shoe-prints:before {
3701
+ content: "\f54b";
3702
+ }
3703
+
3704
+ .fa-shopping-bag:before {
3705
+ content: "\f290";
3706
+ }
3707
+
3708
+ .fa-shopping-basket:before {
3709
+ content: "\f291";
3710
+ }
3711
+
3712
+ .fa-shopping-cart:before {
3713
+ content: "\f07a";
3714
+ }
3715
+
3716
+ .fa-shopware:before {
3717
+ content: "\f5b5";
3718
+ }
3719
+
3720
+ .fa-shower:before {
3721
+ content: "\f2cc";
3722
+ }
3723
+
3724
+ .fa-shuttle-van:before {
3725
+ content: "\f5b6";
3726
+ }
3727
+
3728
+ .fa-sign:before {
3729
+ content: "\f4d9";
3730
+ }
3731
+
3732
+ .fa-sign-in-alt:before {
3733
+ content: "\f2f6";
3734
+ }
3735
+
3736
+ .fa-sign-language:before {
3737
+ content: "\f2a7";
3738
+ }
3739
+
3740
+ .fa-sign-out-alt:before {
3741
+ content: "\f2f5";
3742
+ }
3743
+
3744
+ .fa-signal:before {
3745
+ content: "\f012";
3746
+ }
3747
+
3748
+ .fa-signature:before {
3749
+ content: "\f5b7";
3750
+ }
3751
+
3752
+ .fa-simplybuilt:before {
3753
+ content: "\f215";
3754
+ }
3755
+
3756
+ .fa-sistrix:before {
3757
+ content: "\f3ee";
3758
+ }
3759
+
3760
+ .fa-sitemap:before {
3761
+ content: "\f0e8";
3762
+ }
3763
+
3764
+ .fa-sith:before {
3765
+ content: "\f512";
3766
+ }
3767
+
3768
+ .fa-skull:before {
3769
+ content: "\f54c";
3770
+ }
3771
+
3772
+ .fa-skyatlas:before {
3773
+ content: "\f216";
3774
+ }
3775
+
3776
+ .fa-skype:before {
3777
+ content: "\f17e";
3778
+ }
3779
+
3780
+ .fa-slack:before {
3781
+ content: "\f198";
3782
+ }
3783
+
3784
+ .fa-slack-hash:before {
3785
+ content: "\f3ef";
3786
+ }
3787
+
3788
+ .fa-sliders-h:before {
3789
+ content: "\f1de";
3790
+ }
3791
+
3792
+ .fa-slideshare:before {
3793
+ content: "\f1e7";
3794
+ }
3795
+
3796
+ .fa-smile:before {
3797
+ content: "\f118";
3798
+ }
3799
+
3800
+ .fa-smile-beam:before {
3801
+ content: "\f5b8";
3802
+ }
3803
+
3804
+ .fa-smile-wink:before {
3805
+ content: "\f4da";
3806
+ }
3807
+
3808
+ .fa-smoking:before {
3809
+ content: "\f48d";
3810
+ }
3811
+
3812
+ .fa-smoking-ban:before {
3813
+ content: "\f54d";
3814
+ }
3815
+
3816
+ .fa-snapchat:before {
3817
+ content: "\f2ab";
3818
+ }
3819
+
3820
+ .fa-snapchat-ghost:before {
3821
+ content: "\f2ac";
3822
+ }
3823
+
3824
+ .fa-snapchat-square:before {
3825
+ content: "\f2ad";
3826
+ }
3827
+
3828
+ .fa-snowflake:before {
3829
+ content: "\f2dc";
3830
+ }
3831
+
3832
+ .fa-solar-panel:before {
3833
+ content: "\f5ba";
3834
+ }
3835
+
3836
+ .fa-sort:before {
3837
+ content: "\f0dc";
3838
+ }
3839
+
3840
+ .fa-sort-alpha-down:before {
3841
+ content: "\f15d";
3842
+ }
3843
+
3844
+ .fa-sort-alpha-up:before {
3845
+ content: "\f15e";
3846
+ }
3847
+
3848
+ .fa-sort-amount-down:before {
3849
+ content: "\f160";
3850
+ }
3851
+
3852
+ .fa-sort-amount-up:before {
3853
+ content: "\f161";
3854
+ }
3855
+
3856
+ .fa-sort-down:before {
3857
+ content: "\f0dd";
3858
+ }
3859
+
3860
+ .fa-sort-numeric-down:before {
3861
+ content: "\f162";
3862
+ }
3863
+
3864
+ .fa-sort-numeric-up:before {
3865
+ content: "\f163";
3866
+ }
3867
+
3868
+ .fa-sort-up:before {
3869
+ content: "\f0de";
3870
+ }
3871
+
3872
+ .fa-soundcloud:before {
3873
+ content: "\f1be";
3874
+ }
3875
+
3876
+ .fa-spa:before {
3877
+ content: "\f5bb";
3878
+ }
3879
+
3880
+ .fa-space-shuttle:before {
3881
+ content: "\f197";
3882
+ }
3883
+
3884
+ .fa-speakap:before {
3885
+ content: "\f3f3";
3886
+ }
3887
+
3888
+ .fa-spinner:before {
3889
+ content: "\f110";
3890
+ }
3891
+
3892
+ .fa-splotch:before {
3893
+ content: "\f5bc";
3894
+ }
3895
+
3896
+ .fa-spotify:before {
3897
+ content: "\f1bc";
3898
+ }
3899
+
3900
+ .fa-spray-can:before {
3901
+ content: "\f5bd";
3902
+ }
3903
+
3904
+ .fa-square:before {
3905
+ content: "\f0c8";
3906
+ }
3907
+
3908
+ .fa-square-full:before {
3909
+ content: "\f45c";
3910
+ }
3911
+
3912
+ .fa-squarespace:before {
3913
+ content: "\f5be";
3914
+ }
3915
+
3916
+ .fa-stack-exchange:before {
3917
+ content: "\f18d";
3918
+ }
3919
+
3920
+ .fa-stack-overflow:before {
3921
+ content: "\f16c";
3922
+ }
3923
+
3924
+ .fa-stamp:before {
3925
+ content: "\f5bf";
3926
+ }
3927
+
3928
+ .fa-star:before {
3929
+ content: "\f005";
3930
+ }
3931
+
3932
+ .fa-star-half:before {
3933
+ content: "\f089";
3934
+ }
3935
+
3936
+ .fa-star-half-alt:before {
3937
+ content: "\f5c0";
3938
+ }
3939
+
3940
+ .fa-star-of-life:before {
3941
+ content: "\f621";
3942
+ }
3943
+
3944
+ .fa-staylinked:before {
3945
+ content: "\f3f5";
3946
+ }
3947
+
3948
+ .fa-steam:before {
3949
+ content: "\f1b6";
3950
+ }
3951
+
3952
+ .fa-steam-square:before {
3953
+ content: "\f1b7";
3954
+ }
3955
+
3956
+ .fa-steam-symbol:before {
3957
+ content: "\f3f6";
3958
+ }
3959
+
3960
+ .fa-step-backward:before {
3961
+ content: "\f048";
3962
+ }
3963
+
3964
+ .fa-step-forward:before {
3965
+ content: "\f051";
3966
+ }
3967
+
3968
+ .fa-stethoscope:before {
3969
+ content: "\f0f1";
3970
+ }
3971
+
3972
+ .fa-sticker-mule:before {
3973
+ content: "\f3f7";
3974
+ }
3975
+
3976
+ .fa-sticky-note:before {
3977
+ content: "\f249";
3978
+ }
3979
+
3980
+ .fa-stop:before {
3981
+ content: "\f04d";
3982
+ }
3983
+
3984
+ .fa-stop-circle:before {
3985
+ content: "\f28d";
3986
+ }
3987
+
3988
+ .fa-stopwatch:before {
3989
+ content: "\f2f2";
3990
+ }
3991
+
3992
+ .fa-store:before {
3993
+ content: "\f54e";
3994
+ }
3995
+
3996
+ .fa-store-alt:before {
3997
+ content: "\f54f";
3998
+ }
3999
+
4000
+ .fa-strava:before {
4001
+ content: "\f428";
4002
+ }
4003
+
4004
+ .fa-stream:before {
4005
+ content: "\f550";
4006
+ }
4007
+
4008
+ .fa-street-view:before {
4009
+ content: "\f21d";
4010
+ }
4011
+
4012
+ .fa-strikethrough:before {
4013
+ content: "\f0cc";
4014
+ }
4015
+
4016
+ .fa-stripe:before {
4017
+ content: "\f429";
4018
+ }
4019
+
4020
+ .fa-stripe-s:before {
4021
+ content: "\f42a";
4022
+ }
4023
+
4024
+ .fa-stroopwafel:before {
4025
+ content: "\f551";
4026
+ }
4027
+
4028
+ .fa-studiovinari:before {
4029
+ content: "\f3f8";
4030
+ }
4031
+
4032
+ .fa-stumbleupon:before {
4033
+ content: "\f1a4";
4034
+ }
4035
+
4036
+ .fa-stumbleupon-circle:before {
4037
+ content: "\f1a3";
4038
+ }
4039
+
4040
+ .fa-subscript:before {
4041
+ content: "\f12c";
4042
+ }
4043
+
4044
+ .fa-subway:before {
4045
+ content: "\f239";
4046
+ }
4047
+
4048
+ .fa-suitcase:before {
4049
+ content: "\f0f2";
4050
+ }
4051
+
4052
+ .fa-suitcase-rolling:before {
4053
+ content: "\f5c1";
4054
+ }
4055
+
4056
+ .fa-sun:before {
4057
+ content: "\f185";
4058
+ }
4059
+
4060
+ .fa-superpowers:before {
4061
+ content: "\f2dd";
4062
+ }
4063
+
4064
+ .fa-superscript:before {
4065
+ content: "\f12b";
4066
+ }
4067
+
4068
+ .fa-supple:before {
4069
+ content: "\f3f9";
4070
+ }
4071
+
4072
+ .fa-surprise:before {
4073
+ content: "\f5c2";
4074
+ }
4075
+
4076
+ .fa-swatchbook:before {
4077
+ content: "\f5c3";
4078
+ }
4079
+
4080
+ .fa-swimmer:before {
4081
+ content: "\f5c4";
4082
+ }
4083
+
4084
+ .fa-swimming-pool:before {
4085
+ content: "\f5c5";
4086
+ }
4087
+
4088
+ .fa-sync:before {
4089
+ content: "\f021";
4090
+ }
4091
+
4092
+ .fa-sync-alt:before {
4093
+ content: "\f2f1";
4094
+ }
4095
+
4096
+ .fa-syringe:before {
4097
+ content: "\f48e";
4098
+ }
4099
+
4100
+ .fa-table:before {
4101
+ content: "\f0ce";
4102
+ }
4103
+
4104
+ .fa-table-tennis:before {
4105
+ content: "\f45d";
4106
+ }
4107
+
4108
+ .fa-tablet:before {
4109
+ content: "\f10a";
4110
+ }
4111
+
4112
+ .fa-tablet-alt:before {
4113
+ content: "\f3fa";
4114
+ }
4115
+
4116
+ .fa-tablets:before {
4117
+ content: "\f490";
4118
+ }
4119
+
4120
+ .fa-tachometer-alt:before {
4121
+ content: "\f3fd";
4122
+ }
4123
+
4124
+ .fa-tag:before {
4125
+ content: "\f02b";
4126
+ }
4127
+
4128
+ .fa-tags:before {
4129
+ content: "\f02c";
4130
+ }
4131
+
4132
+ .fa-tape:before {
4133
+ content: "\f4db";
4134
+ }
4135
+
4136
+ .fa-tasks:before {
4137
+ content: "\f0ae";
4138
+ }
4139
+
4140
+ .fa-taxi:before {
4141
+ content: "\f1ba";
4142
+ }
4143
+
4144
+ .fa-teamspeak:before {
4145
+ content: "\f4f9";
4146
+ }
4147
+
4148
+ .fa-teeth:before {
4149
+ content: "\f62e";
4150
+ }
4151
+
4152
+ .fa-teeth-open:before {
4153
+ content: "\f62f";
4154
+ }
4155
+
4156
+ .fa-telegram:before {
4157
+ content: "\f2c6";
4158
+ }
4159
+
4160
+ .fa-telegram-plane:before {
4161
+ content: "\f3fe";
4162
+ }
4163
+
4164
+ .fa-tencent-weibo:before {
4165
+ content: "\f1d5";
4166
+ }
4167
+
4168
+ .fa-terminal:before {
4169
+ content: "\f120";
4170
+ }
4171
+
4172
+ .fa-text-height:before {
4173
+ content: "\f034";
4174
+ }
4175
+
4176
+ .fa-text-width:before {
4177
+ content: "\f035";
4178
+ }
4179
+
4180
+ .fa-th:before {
4181
+ content: "\f00a";
4182
+ }
4183
+
4184
+ .fa-th-large:before {
4185
+ content: "\f009";
4186
+ }
4187
+
4188
+ .fa-th-list:before {
4189
+ content: "\f00b";
4190
+ }
4191
+
4192
+ .fa-theater-masks:before {
4193
+ content: "\f630";
4194
+ }
4195
+
4196
+ .fa-themeco:before {
4197
+ content: "\f5c6";
4198
+ }
4199
+
4200
+ .fa-themeisle:before {
4201
+ content: "\f2b2";
4202
+ }
4203
+
4204
+ .fa-thermometer:before {
4205
+ content: "\f491";
4206
+ }
4207
+
4208
+ .fa-thermometer-empty:before {
4209
+ content: "\f2cb";
4210
+ }
4211
+
4212
+ .fa-thermometer-full:before {
4213
+ content: "\f2c7";
4214
+ }
4215
+
4216
+ .fa-thermometer-half:before {
4217
+ content: "\f2c9";
4218
+ }
4219
+
4220
+ .fa-thermometer-quarter:before {
4221
+ content: "\f2ca";
4222
+ }
4223
+
4224
+ .fa-thermometer-three-quarters:before {
4225
+ content: "\f2c8";
4226
+ }
4227
+
4228
+ .fa-thumbs-down:before {
4229
+ content: "\f165";
4230
+ }
4231
+
4232
+ .fa-thumbs-up:before {
4233
+ content: "\f164";
4234
+ }
4235
+
4236
+ .fa-thumbtack:before {
4237
+ content: "\f08d";
4238
+ }
4239
+
4240
+ .fa-ticket-alt:before {
4241
+ content: "\f3ff";
4242
+ }
4243
+
4244
+ .fa-times:before {
4245
+ content: "\f00d";
4246
+ }
4247
+
4248
+ .fa-times-circle:before {
4249
+ content: "\f057";
4250
+ }
4251
+
4252
+ .fa-tint:before {
4253
+ content: "\f043";
4254
+ }
4255
+
4256
+ .fa-tint-slash:before {
4257
+ content: "\f5c7";
4258
+ }
4259
+
4260
+ .fa-tired:before {
4261
+ content: "\f5c8";
4262
+ }
4263
+
4264
+ .fa-toggle-off:before {
4265
+ content: "\f204";
4266
+ }
4267
+
4268
+ .fa-toggle-on:before {
4269
+ content: "\f205";
4270
+ }
4271
+
4272
+ .fa-toolbox:before {
4273
+ content: "\f552";
4274
+ }
4275
+
4276
+ .fa-tooth:before {
4277
+ content: "\f5c9";
4278
+ }
4279
+
4280
+ .fa-trade-federation:before {
4281
+ content: "\f513";
4282
+ }
4283
+
4284
+ .fa-trademark:before {
4285
+ content: "\f25c";
4286
+ }
4287
+
4288
+ .fa-traffic-light:before {
4289
+ content: "\f637";
4290
+ }
4291
+
4292
+ .fa-train:before {
4293
+ content: "\f238";
4294
+ }
4295
+
4296
+ .fa-transgender:before {
4297
+ content: "\f224";
4298
+ }
4299
+
4300
+ .fa-transgender-alt:before {
4301
+ content: "\f225";
4302
+ }
4303
+
4304
+ .fa-trash:before {
4305
+ content: "\f1f8";
4306
+ }
4307
+
4308
+ .fa-trash-alt:before {
4309
+ content: "\f2ed";
4310
+ }
4311
+
4312
+ .fa-tree:before {
4313
+ content: "\f1bb";
4314
+ }
4315
+
4316
+ .fa-trello:before {
4317
+ content: "\f181";
4318
+ }
4319
+
4320
+ .fa-tripadvisor:before {
4321
+ content: "\f262";
4322
+ }
4323
+
4324
+ .fa-trophy:before {
4325
+ content: "\f091";
4326
+ }
4327
+
4328
+ .fa-truck:before {
4329
+ content: "\f0d1";
4330
+ }
4331
+
4332
+ .fa-truck-loading:before {
4333
+ content: "\f4de";
4334
+ }
4335
+
4336
+ .fa-truck-monster:before {
4337
+ content: "\f63b";
4338
+ }
4339
+
4340
+ .fa-truck-moving:before {
4341
+ content: "\f4df";
4342
+ }
4343
+
4344
+ .fa-truck-pickup:before {
4345
+ content: "\f63c";
4346
+ }
4347
+
4348
+ .fa-tshirt:before {
4349
+ content: "\f553";
4350
+ }
4351
+
4352
+ .fa-tty:before {
4353
+ content: "\f1e4";
4354
+ }
4355
+
4356
+ .fa-tumblr:before {
4357
+ content: "\f173";
4358
+ }
4359
+
4360
+ .fa-tumblr-square:before {
4361
+ content: "\f174";
4362
+ }
4363
+
4364
+ .fa-tv:before {
4365
+ content: "\f26c";
4366
+ }
4367
+
4368
+ .fa-twitch:before {
4369
+ content: "\f1e8";
4370
+ }
4371
+
4372
+ .fa-twitter:before {
4373
+ content: "\f099";
4374
+ }
4375
+
4376
+ .fa-twitter-square:before {
4377
+ content: "\f081";
4378
+ }
4379
+
4380
+ .fa-typo3:before {
4381
+ content: "\f42b";
4382
+ }
4383
+
4384
+ .fa-uber:before {
4385
+ content: "\f402";
4386
+ }
4387
+
4388
+ .fa-uikit:before {
4389
+ content: "\f403";
4390
+ }
4391
+
4392
+ .fa-umbrella:before {
4393
+ content: "\f0e9";
4394
+ }
4395
+
4396
+ .fa-umbrella-beach:before {
4397
+ content: "\f5ca";
4398
+ }
4399
+
4400
+ .fa-underline:before {
4401
+ content: "\f0cd";
4402
+ }
4403
+
4404
+ .fa-undo:before {
4405
+ content: "\f0e2";
4406
+ }
4407
+
4408
+ .fa-undo-alt:before {
4409
+ content: "\f2ea";
4410
+ }
4411
+
4412
+ .fa-uniregistry:before {
4413
+ content: "\f404";
4414
+ }
4415
+
4416
+ .fa-universal-access:before {
4417
+ content: "\f29a";
4418
+ }
4419
+
4420
+ .fa-university:before {
4421
+ content: "\f19c";
4422
+ }
4423
+
4424
+ .fa-unlink:before {
4425
+ content: "\f127";
4426
+ }
4427
+
4428
+ .fa-unlock:before {
4429
+ content: "\f09c";
4430
+ }
4431
+
4432
+ .fa-unlock-alt:before {
4433
+ content: "\f13e";
4434
+ }
4435
+
4436
+ .fa-untappd:before {
4437
+ content: "\f405";
4438
+ }
4439
+
4440
+ .fa-upload:before {
4441
+ content: "\f093";
4442
+ }
4443
+
4444
+ .fa-usb:before {
4445
+ content: "\f287";
4446
+ }
4447
+
4448
+ .fa-user:before {
4449
+ content: "\f007";
4450
+ }
4451
+
4452
+ .fa-user-alt:before {
4453
+ content: "\f406";
4454
+ }
4455
+
4456
+ .fa-user-alt-slash:before {
4457
+ content: "\f4fa";
4458
+ }
4459
+
4460
+ .fa-user-astronaut:before {
4461
+ content: "\f4fb";
4462
+ }
4463
+
4464
+ .fa-user-check:before {
4465
+ content: "\f4fc";
4466
+ }
4467
+
4468
+ .fa-user-circle:before {
4469
+ content: "\f2bd";
4470
+ }
4471
+
4472
+ .fa-user-clock:before {
4473
+ content: "\f4fd";
4474
+ }
4475
+
4476
+ .fa-user-cog:before {
4477
+ content: "\f4fe";
4478
+ }
4479
+
4480
+ .fa-user-edit:before {
4481
+ content: "\f4ff";
4482
+ }
4483
+
4484
+ .fa-user-friends:before {
4485
+ content: "\f500";
4486
+ }
4487
+
4488
+ .fa-user-graduate:before {
4489
+ content: "\f501";
4490
+ }
4491
+
4492
+ .fa-user-lock:before {
4493
+ content: "\f502";
4494
+ }
4495
+
4496
+ .fa-user-md:before {
4497
+ content: "\f0f0";
4498
+ }
4499
+
4500
+ .fa-user-minus:before {
4501
+ content: "\f503";
4502
+ }
4503
+
4504
+ .fa-user-ninja:before {
4505
+ content: "\f504";
4506
+ }
4507
+
4508
+ .fa-user-plus:before {
4509
+ content: "\f234";
4510
+ }
4511
+
4512
+ .fa-user-secret:before {
4513
+ content: "\f21b";
4514
+ }
4515
+
4516
+ .fa-user-shield:before {
4517
+ content: "\f505";
4518
+ }
4519
+
4520
+ .fa-user-slash:before {
4521
+ content: "\f506";
4522
+ }
4523
+
4524
+ .fa-user-tag:before {
4525
+ content: "\f507";
4526
+ }
4527
+
4528
+ .fa-user-tie:before {
4529
+ content: "\f508";
4530
+ }
4531
+
4532
+ .fa-user-times:before {
4533
+ content: "\f235";
4534
+ }
4535
+
4536
+ .fa-users:before {
4537
+ content: "\f0c0";
4538
+ }
4539
+
4540
+ .fa-users-cog:before {
4541
+ content: "\f509";
4542
+ }
4543
+
4544
+ .fa-ussunnah:before {
4545
+ content: "\f407";
4546
+ }
4547
+
4548
+ .fa-utensil-spoon:before {
4549
+ content: "\f2e5";
4550
+ }
4551
+
4552
+ .fa-utensils:before {
4553
+ content: "\f2e7";
4554
+ }
4555
+
4556
+ .fa-vaadin:before {
4557
+ content: "\f408";
4558
+ }
4559
+
4560
+ .fa-vector-square:before {
4561
+ content: "\f5cb";
4562
+ }
4563
+
4564
+ .fa-venus:before {
4565
+ content: "\f221";
4566
+ }
4567
+
4568
+ .fa-venus-double:before {
4569
+ content: "\f226";
4570
+ }
4571
+
4572
+ .fa-venus-mars:before {
4573
+ content: "\f228";
4574
+ }
4575
+
4576
+ .fa-viacoin:before {
4577
+ content: "\f237";
4578
+ }
4579
+
4580
+ .fa-viadeo:before {
4581
+ content: "\f2a9";
4582
+ }
4583
+
4584
+ .fa-viadeo-square:before {
4585
+ content: "\f2aa";
4586
+ }
4587
+
4588
+ .fa-vial:before {
4589
+ content: "\f492";
4590
+ }
4591
+
4592
+ .fa-vials:before {
4593
+ content: "\f493";
4594
+ }
4595
+
4596
+ .fa-viber:before {
4597
+ content: "\f409";
4598
+ }
4599
+
4600
+ .fa-video:before {
4601
+ content: "\f03d";
4602
+ }
4603
+
4604
+ .fa-video-slash:before {
4605
+ content: "\f4e2";
4606
+ }
4607
+
4608
+ .fa-vimeo:before {
4609
+ content: "\f40a";
4610
+ }
4611
+
4612
+ .fa-vimeo-square:before {
4613
+ content: "\f194";
4614
+ }
4615
+
4616
+ .fa-vimeo-v:before {
4617
+ content: "\f27d";
4618
+ }
4619
+
4620
+ .fa-vine:before {
4621
+ content: "\f1ca";
4622
+ }
4623
+
4624
+ .fa-vk:before {
4625
+ content: "\f189";
4626
+ }
4627
+
4628
+ .fa-vnv:before {
4629
+ content: "\f40b";
4630
+ }
4631
+
4632
+ .fa-volleyball-ball:before {
4633
+ content: "\f45f";
4634
+ }
4635
+
4636
+ .fa-volume-down:before {
4637
+ content: "\f027";
4638
+ }
4639
+
4640
+ .fa-volume-off:before {
4641
+ content: "\f026";
4642
+ }
4643
+
4644
+ .fa-volume-up:before {
4645
+ content: "\f028";
4646
+ }
4647
+
4648
+ .fa-vuejs:before {
4649
+ content: "\f41f";
4650
+ }
4651
+
4652
+ .fa-walking:before {
4653
+ content: "\f554";
4654
+ }
4655
+
4656
+ .fa-wallet:before {
4657
+ content: "\f555";
4658
+ }
4659
+
4660
+ .fa-warehouse:before {
4661
+ content: "\f494";
4662
+ }
4663
+
4664
+ .fa-weebly:before {
4665
+ content: "\f5cc";
4666
+ }
4667
+
4668
+ .fa-weibo:before {
4669
+ content: "\f18a";
4670
+ }
4671
+
4672
+ .fa-weight:before {
4673
+ content: "\f496";
4674
+ }
4675
+
4676
+ .fa-weight-hanging:before {
4677
+ content: "\f5cd";
4678
+ }
4679
+
4680
+ .fa-weixin:before {
4681
+ content: "\f1d7";
4682
+ }
4683
+
4684
+ .fa-whatsapp:before {
4685
+ content: "\f232";
4686
+ }
4687
+
4688
+ .fa-whatsapp-square:before {
4689
+ content: "\f40c";
4690
+ }
4691
+
4692
+ .fa-wheelchair:before {
4693
+ content: "\f193";
4694
+ }
4695
+
4696
+ .fa-whmcs:before {
4697
+ content: "\f40d";
4698
+ }
4699
+
4700
+ .fa-wifi:before {
4701
+ content: "\f1eb";
4702
+ }
4703
+
4704
+ .fa-wikipedia-w:before {
4705
+ content: "\f266";
4706
+ }
4707
+
4708
+ .fa-window-close:before {
4709
+ content: "\f410";
4710
+ }
4711
+
4712
+ .fa-window-maximize:before {
4713
+ content: "\f2d0";
4714
+ }
4715
+
4716
+ .fa-window-minimize:before {
4717
+ content: "\f2d1";
4718
+ }
4719
+
4720
+ .fa-window-restore:before {
4721
+ content: "\f2d2";
4722
+ }
4723
+
4724
+ .fa-windows:before {
4725
+ content: "\f17a";
4726
+ }
4727
+
4728
+ .fa-wine-glass:before {
4729
+ content: "\f4e3";
4730
+ }
4731
+
4732
+ .fa-wine-glass-alt:before {
4733
+ content: "\f5ce";
4734
+ }
4735
+
4736
+ .fa-wix:before {
4737
+ content: "\f5cf";
4738
+ }
4739
+
4740
+ .fa-wolf-pack-battalion:before {
4741
+ content: "\f514";
4742
+ }
4743
+
4744
+ .fa-won-sign:before {
4745
+ content: "\f159";
4746
+ }
4747
+
4748
+ .fa-wordpress:before {
4749
+ content: "\f19a";
4750
+ }
4751
+
4752
+ .fa-wordpress-simple:before {
4753
+ content: "\f411";
4754
+ }
4755
+
4756
+ .fa-wpbeginner:before {
4757
+ content: "\f297";
4758
+ }
4759
+
4760
+ .fa-wpexplorer:before {
4761
+ content: "\f2de";
4762
+ }
4763
+
4764
+ .fa-wpforms:before {
4765
+ content: "\f298";
4766
+ }
4767
+
4768
+ .fa-wrench:before {
4769
+ content: "\f0ad";
4770
+ }
4771
+
4772
+ .fa-x-ray:before {
4773
+ content: "\f497";
4774
+ }
4775
+
4776
+ .fa-xbox:before {
4777
+ content: "\f412";
4778
+ }
4779
+
4780
+ .fa-xing:before {
4781
+ content: "\f168";
4782
+ }
4783
+
4784
+ .fa-xing-square:before {
4785
+ content: "\f169";
4786
+ }
4787
+
4788
+ .fa-y-combinator:before {
4789
+ content: "\f23b";
4790
+ }
4791
+
4792
+ .fa-yahoo:before {
4793
+ content: "\f19e";
4794
+ }
4795
+
4796
+ .fa-yandex:before {
4797
+ content: "\f413";
4798
+ }
4799
+
4800
+ .fa-yandex-international:before {
4801
+ content: "\f414";
4802
+ }
4803
+
4804
+ .fa-yelp:before {
4805
+ content: "\f1e9";
4806
+ }
4807
+
4808
+ .fa-yen-sign:before {
4809
+ content: "\f157";
4810
+ }
4811
+
4812
+ .fa-yoast:before {
4813
+ content: "\f2b1";
4814
+ }
4815
+
4816
+ .fa-youtube:before {
4817
+ content: "\f167";
4818
+ }
4819
+
4820
+ .fa-youtube-square:before {
4821
+ content: "\f431";
4822
+ }
4823
+
4824
+ .fa-zhihu:before {
4825
+ content: "\f63f";
4826
+ }
4827
+
4828
+ .sr-only {
4829
+ overflow: hidden;
4830
+ clip: rect(0, 0, 0, 0);
4831
+ position: absolute;
4832
+ width: 1px;
4833
+ height: 1px;
4834
+ margin: -1px;
4835
+ padding: 0;
4836
+ border: 0;
4837
+ }
4838
+
4839
+ .sr-only-focusable:active,
4840
+ .sr-only-focusable:focus {
4841
+ overflow: visible;
4842
+ clip: auto;
4843
+ position: static;
4844
+ width: auto;
4845
+ height: auto;
4846
+ margin: 0;
4847
+ }
4848
+
4849
+ @font-face {
4850
+ font-family: "Font Awesome 5 Brands";
4851
+ src: url("../webfonts/fa-brands-400.eot");
4852
+ src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.woff") format("woff"), url("../webfonts/fa-brands-400.ttf") format("truetype"), url("../webfonts/fa-brands-400.svg#fontawesome") format("svg");
4853
+ font-weight: normal;
4854
+ font-style: normal;
4855
+ }
4856
+
4857
+ .fab {
4858
+ font-family: "Font Awesome 5 Brands";
4859
+ }
4860
+
4861
+ @font-face {
4862
+ font-family: "Font Awesome 5 Free";
4863
+ src: url("../webfonts/fa-regular-400.eot");
4864
+ src: url("../webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.woff") format("woff"), url("../webfonts/fa-regular-400.ttf") format("truetype"), url("../webfonts/fa-regular-400.svg#fontawesome") format("svg");
4865
+ font-weight: 400;
4866
+ font-style: normal;
4867
+ }
4868
+
4869
+ .far {
4870
+ font-family: "Font Awesome 5 Free";
4871
+ font-weight: 400;
4872
+ }
4873
+
4874
+ @font-face {
4875
+ font-family: "Font Awesome 5 Free";
4876
+ src: url("../webfonts/fa-solid-900.eot");
4877
+ src: url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.woff") format("woff"), url("../webfonts/fa-solid-900.ttf") format("truetype"), url("../webfonts/fa-solid-900.svg#fontawesome") format("svg");
4878
+ font-weight: 900;
4879
+ font-style: normal;
4880
+ }
4881
+
4882
+ .fa,
4883
+ .fas {
4884
+ font-family: "Font Awesome 5 Free";
4885
+ font-weight: 900;
4886
+ }
obfx_modules/gutenberg-blocks/assets/fontawesome/css/all.min.css ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ /*!
2
+ * Font Awesome Free 5.2.0 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ */
5
+ .fa,.fab,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:a 2s infinite linear}.fa-pulse{animation:a 1s infinite steps(8)}@keyframes a{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-balance-scale:before{content:"\f24e"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bicycle:before{content:"\f206"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blind:before{content:"\f29d"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-certificate:before{content:"\f0a3"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-concierge-bell:before{content:"\f562"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-credit-card:before{content:"\f09d"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-delicious:before{content:"\f1a5"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-deviantart:before{content:"\f1bd"}.fa-diagnoses:before{content:"\f470"}.fa-dice:before{content:"\f522"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-gift:before{content:"\f06b"}.fa-git:before{content:"\f1d3"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-handshake:before{content:"\f2b5"}.fa-hashtag:before{content:"\f292"}.fa-hdd:before{content:"\f0a0"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-puck:before{content:"\f453"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hot-tub:before{content:"\f593"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-houzz:before{content:"\f27c"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-instagram:before{content:"\f16d"}.fa-internet-explorer:before{content:"\f26b"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mercury:before{content:"\f223"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-motorcycle:before{content:"\f21c"}.fa-mouse-pointer:before{content:"\f245"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-nintendo-switch:before{content:"\f418"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-osi:before{content:"\f41a"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-people-carry:before{content:"\f4ce"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-volume:before{content:"\f2a0"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poo:before{content:"\f2fe"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-r-project:before{content:"\f4f7"}.fa-random:before{content:"\f074"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-rendact:before{content:"\f3e4"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-rupee-sign:before{content:"\f156"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-sass:before{content:"\f41e"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-search:before{content:"\f002"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skull:before{content:"\f54c"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowflake:before{content:"\f2dc"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-swatchbook:before{content:"\f5c3"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toolbox:before{content:"\f552"}.fa-tooth:before{content:"\f5c9"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-train:before{content:"\f238"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-uikit:before{content:"\f403"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:normal;src:url(../webfonts/fa-brands-400.eot);src:url(../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.woff) format("woff"),url(../webfonts/fa-brands-400.ttf) format("truetype"),url(../webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;src:url(../webfonts/fa-regular-400.eot);src:url(../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.woff) format("woff"),url(../webfonts/fa-regular-400.ttf) format("truetype"),url(../webfonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-weight:400}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.woff) format("woff"),url(../webfonts/fa-solid-900.ttf) format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.far,.fas{font-family:"Font Awesome 5 Free"}.fa,.fas{font-weight:900}
obfx_modules/gutenberg-blocks/assets/fontawesome/css/brands.css ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*!
2
+ * Font Awesome Free 5.2.0 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ */
5
+ @font-face {
6
+ font-family: "Font Awesome 5 Brands";
7
+ src: url("../webfonts/fa-brands-400.eot");
8
+ src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.woff") format("woff"), url("../webfonts/fa-brands-400.ttf") format("truetype"), url("../webfonts/fa-brands-400.svg#fontawesome") format("svg");
9
+ font-weight: normal;
10
+ font-style: normal;
11
+ }
12
+
13
+ .fab {
14
+ font-family: "Font Awesome 5 Brands";
15
+ }
obfx_modules/gutenberg-blocks/assets/fontawesome/css/brands.min.css ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ /*!
2
+ * Font Awesome Free 5.2.0 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ */
5
+ @font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:normal;src:url(../webfonts/fa-brands-400.eot);src:url(../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.woff) format("woff"),url(../webfonts/fa-brands-400.ttf) format("truetype"),url(../webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"}
obfx_modules/gutenberg-blocks/assets/fontawesome/css/fontawesome.css ADDED
@@ -0,0 +1,4847 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*!
2
+ * Font Awesome Free 5.2.0 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ */
5
+ .fa,
6
+ .fas,
7
+ .far,
8
+ .fal,
9
+ .fab {
10
+ display: inline-block;
11
+ font-style: normal;
12
+ font-variant: normal;
13
+ -webkit-font-smoothing: antialiased;
14
+ -moz-osx-font-smoothing: grayscale;
15
+ line-height: 1;
16
+ text-rendering: auto;
17
+ }
18
+
19
+ .fa-lg {
20
+ font-size: 1.33333em;
21
+ line-height: 0.75em;
22
+ vertical-align: -0.0667em;
23
+ }
24
+
25
+ .fa-xs {
26
+ font-size: 0.75em;
27
+ }
28
+
29
+ .fa-sm {
30
+ font-size: 0.875em;
31
+ }
32
+
33
+ .fa-1x {
34
+ font-size: 1em;
35
+ }
36
+
37
+ .fa-2x {
38
+ font-size: 2em;
39
+ }
40
+
41
+ .fa-3x {
42
+ font-size: 3em;
43
+ }
44
+
45
+ .fa-4x {
46
+ font-size: 4em;
47
+ }
48
+
49
+ .fa-5x {
50
+ font-size: 5em;
51
+ }
52
+
53
+ .fa-6x {
54
+ font-size: 6em;
55
+ }
56
+
57
+ .fa-7x {
58
+ font-size: 7em;
59
+ }
60
+
61
+ .fa-8x {
62
+ font-size: 8em;
63
+ }
64
+
65
+ .fa-9x {
66
+ font-size: 9em;
67
+ }
68
+
69
+ .fa-10x {
70
+ font-size: 10em;
71
+ }
72
+
73
+ .fa-fw {
74
+ width: 1.25em;
75
+ text-align: center;
76
+ }
77
+
78
+ .fa-ul {
79
+ margin-left: 2.5em;
80
+ padding-left: 0;
81
+ list-style-type: none;
82
+ }
83
+
84
+ .fa-ul > li {
85
+ position: relative;
86
+ }
87
+
88
+ .fa-li {
89
+ position: absolute;
90
+ left: -2em;
91
+ width: 2em;
92
+ line-height: inherit;
93
+ text-align: center;
94
+ }
95
+
96
+ .fa-border {
97
+ padding: 0.2em 0.25em 0.15em;
98
+ border: solid 0.08em #eee;
99
+ border-radius: 0.1em;
100
+ }
101
+
102
+ .fa-pull-left {
103
+ float: left;
104
+ }
105
+
106
+ .fa-pull-right {
107
+ float: right;
108
+ }
109
+
110
+ .fa.fa-pull-left,
111
+ .fas.fa-pull-left,
112
+ .far.fa-pull-left,
113
+ .fal.fa-pull-left,
114
+ .fab.fa-pull-left {
115
+ margin-right: 0.3em;
116
+ }
117
+
118
+ .fa.fa-pull-right,
119
+ .fas.fa-pull-right,
120
+ .far.fa-pull-right,
121
+ .fal.fa-pull-right,
122
+ .fab.fa-pull-right {
123
+ margin-left: 0.3em;
124
+ }
125
+
126
+ .fa-spin {
127
+ -webkit-animation: fa-spin 2s infinite linear;
128
+ animation: fa-spin 2s infinite linear;
129
+ }
130
+
131
+ .fa-pulse {
132
+ -webkit-animation: fa-spin 1s infinite steps(8);
133
+ animation: fa-spin 1s infinite steps(8);
134
+ }
135
+
136
+ @-webkit-keyframes fa-spin {
137
+ 0% {
138
+ -webkit-transform: rotate(0deg);
139
+ transform: rotate(0deg);
140
+ }
141
+
142
+ 100% {
143
+ -webkit-transform: rotate(360deg);
144
+ transform: rotate(360deg);
145
+ }
146
+ }
147
+
148
+ @keyframes fa-spin {
149
+ 0% {
150
+ -webkit-transform: rotate(0deg);
151
+ transform: rotate(0deg);
152
+ }
153
+
154
+ 100% {
155
+ -webkit-transform: rotate(360deg);
156
+ transform: rotate(360deg);
157
+ }
158
+ }
159
+
160
+ .fa-rotate-90 {
161
+ -webkit-transform: rotate(90deg);
162
+ -ms-transform: rotate(90deg);
163
+ transform: rotate(90deg);
164
+
165
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
166
+ }
167
+
168
+ .fa-rotate-180 {
169
+ -webkit-transform: rotate(180deg);
170
+ -ms-transform: rotate(180deg);
171
+ transform: rotate(180deg);
172
+
173
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
174
+ }
175
+
176
+ .fa-rotate-270 {
177
+ -webkit-transform: rotate(270deg);
178
+ -ms-transform: rotate(270deg);
179
+ transform: rotate(270deg);
180
+
181
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
182
+ }
183
+
184
+ .fa-flip-horizontal {
185
+ -webkit-transform: scale(-1, 1);
186
+ -ms-transform: scale(-1, 1);
187
+ transform: scale(-1, 1);
188
+
189
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
190
+ }
191
+
192
+ .fa-flip-vertical {
193
+ -webkit-transform: scale(1, -1);
194
+ -ms-transform: scale(1, -1);
195
+ transform: scale(1, -1);
196
+
197
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
198
+ }
199
+
200
+ .fa-flip-horizontal.fa-flip-vertical {
201
+ -webkit-transform: scale(-1, -1);
202
+ -ms-transform: scale(-1, -1);
203
+ transform: scale(-1, -1);
204
+
205
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
206
+ }
207
+
208
+ :root .fa-rotate-90,
209
+ :root .fa-rotate-180,
210
+ :root .fa-rotate-270,
211
+ :root .fa-flip-horizontal,
212
+ :root .fa-flip-vertical {
213
+ -webkit-filter: none;
214
+ filter: none;
215
+ }
216
+
217
+ .fa-stack {
218
+ display: inline-block;
219
+ position: relative;
220
+ width: 2em;
221
+ height: 2em;
222
+ line-height: 2em;
223
+ vertical-align: middle;
224
+ }
225
+
226
+ .fa-stack-1x,
227
+ .fa-stack-2x {
228
+ position: absolute;
229
+ left: 0;
230
+ width: 100%;
231
+ text-align: center;
232
+ }
233
+
234
+ .fa-stack-1x {
235
+ line-height: inherit;
236
+ }
237
+
238
+ .fa-stack-2x {
239
+ font-size: 2em;
240
+ }
241
+
242
+ .fa-inverse {
243
+ color: #fff;
244
+ }
245
+
246
+ /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
247
+ readers do not read off random characters that represent icons */
248
+ .fa-500px:before {
249
+ content: "\f26e";
250
+ }
251
+
252
+ .fa-accessible-icon:before {
253
+ content: "\f368";
254
+ }
255
+
256
+ .fa-accusoft:before {
257
+ content: "\f369";
258
+ }
259
+
260
+ .fa-address-book:before {
261
+ content: "\f2b9";
262
+ }
263
+
264
+ .fa-address-card:before {
265
+ content: "\f2bb";
266
+ }
267
+
268
+ .fa-adjust:before {
269
+ content: "\f042";
270
+ }
271
+
272
+ .fa-adn:before {
273
+ content: "\f170";
274
+ }
275
+
276
+ .fa-adversal:before {
277
+ content: "\f36a";
278
+ }
279
+
280
+ .fa-affiliatetheme:before {
281
+ content: "\f36b";
282
+ }
283
+
284
+ .fa-air-freshener:before {
285
+ content: "\f5d0";
286
+ }
287
+
288
+ .fa-algolia:before {
289
+ content: "\f36c";
290
+ }
291
+
292
+ .fa-align-center:before {
293
+ content: "\f037";
294
+ }
295
+
296
+ .fa-align-justify:before {
297
+ content: "\f039";
298
+ }
299
+
300
+ .fa-align-left:before {
301
+ content: "\f036";
302
+ }
303
+
304
+ .fa-align-right:before {
305
+ content: "\f038";
306
+ }
307
+
308
+ .fa-allergies:before {
309
+ content: "\f461";
310
+ }
311
+
312
+ .fa-amazon:before {
313
+ content: "\f270";
314
+ }
315
+
316
+ .fa-amazon-pay:before {
317
+ content: "\f42c";
318
+ }
319
+
320
+ .fa-ambulance:before {
321
+ content: "\f0f9";
322
+ }
323
+
324
+ .fa-american-sign-language-interpreting:before {
325
+ content: "\f2a3";
326
+ }
327
+
328
+ .fa-amilia:before {
329
+ content: "\f36d";
330
+ }
331
+
332
+ .fa-anchor:before {
333
+ content: "\f13d";
334
+ }
335
+
336
+ .fa-android:before {
337
+ content: "\f17b";
338
+ }
339
+
340
+ .fa-angellist:before {
341
+ content: "\f209";
342
+ }
343
+
344
+ .fa-angle-double-down:before {
345
+ content: "\f103";
346
+ }
347
+
348
+ .fa-angle-double-left:before {
349
+ content: "\f100";
350
+ }
351
+
352
+ .fa-angle-double-right:before {
353
+ content: "\f101";
354
+ }
355
+
356
+ .fa-angle-double-up:before {
357
+ content: "\f102";
358
+ }
359
+
360
+ .fa-angle-down:before {
361
+ content: "\f107";
362
+ }
363
+
364
+ .fa-angle-left:before {
365
+ content: "\f104";
366
+ }
367
+
368
+ .fa-angle-right:before {
369
+ content: "\f105";
370
+ }
371
+
372
+ .fa-angle-up:before {
373
+ content: "\f106";
374
+ }
375
+
376
+ .fa-angry:before {
377
+ content: "\f556";
378
+ }
379
+
380
+ .fa-angrycreative:before {
381
+ content: "\f36e";
382
+ }
383
+
384
+ .fa-angular:before {
385
+ content: "\f420";
386
+ }
387
+
388
+ .fa-app-store:before {
389
+ content: "\f36f";
390
+ }
391
+
392
+ .fa-app-store-ios:before {
393
+ content: "\f370";
394
+ }
395
+
396
+ .fa-apper:before {
397
+ content: "\f371";
398
+ }
399
+
400
+ .fa-apple:before {
401
+ content: "\f179";
402
+ }
403
+
404
+ .fa-apple-alt:before {
405
+ content: "\f5d1";
406
+ }
407
+
408
+ .fa-apple-pay:before {
409
+ content: "\f415";
410
+ }
411
+
412
+ .fa-archive:before {
413
+ content: "\f187";
414
+ }
415
+
416
+ .fa-archway:before {
417
+ content: "\f557";
418
+ }
419
+
420
+ .fa-arrow-alt-circle-down:before {
421
+ content: "\f358";
422
+ }
423
+
424
+ .fa-arrow-alt-circle-left:before {
425
+ content: "\f359";
426
+ }
427
+
428
+ .fa-arrow-alt-circle-right:before {
429
+ content: "\f35a";
430
+ }
431
+
432
+ .fa-arrow-alt-circle-up:before {
433
+ content: "\f35b";
434
+ }
435
+
436
+ .fa-arrow-circle-down:before {
437
+ content: "\f0ab";
438
+ }
439
+
440
+ .fa-arrow-circle-left:before {
441
+ content: "\f0a8";
442
+ }
443
+
444
+ .fa-arrow-circle-right:before {
445
+ content: "\f0a9";
446
+ }
447
+
448
+ .fa-arrow-circle-up:before {
449
+ content: "\f0aa";
450
+ }
451
+
452
+ .fa-arrow-down:before {
453
+ content: "\f063";
454
+ }
455
+
456
+ .fa-arrow-left:before {
457
+ content: "\f060";
458
+ }
459
+
460
+ .fa-arrow-right:before {
461
+ content: "\f061";
462
+ }
463
+
464
+ .fa-arrow-up:before {
465
+ content: "\f062";
466
+ }
467
+
468
+ .fa-arrows-alt:before {
469
+ content: "\f0b2";
470
+ }
471
+
472
+ .fa-arrows-alt-h:before {
473
+ content: "\f337";
474
+ }
475
+
476
+ .fa-arrows-alt-v:before {
477
+ content: "\f338";
478
+ }
479
+
480
+ .fa-assistive-listening-systems:before {
481
+ content: "\f2a2";
482
+ }
483
+
484
+ .fa-asterisk:before {
485
+ content: "\f069";
486
+ }
487
+
488
+ .fa-asymmetrik:before {
489
+ content: "\f372";
490
+ }
491
+
492
+ .fa-at:before {
493
+ content: "\f1fa";
494
+ }
495
+
496
+ .fa-atlas:before {
497
+ content: "\f558";
498
+ }
499
+
500
+ .fa-atom:before {
501
+ content: "\f5d2";
502
+ }
503
+
504
+ .fa-audible:before {
505
+ content: "\f373";
506
+ }
507
+
508
+ .fa-audio-description:before {
509
+ content: "\f29e";
510
+ }
511
+
512
+ .fa-autoprefixer:before {
513
+ content: "\f41c";
514
+ }
515
+
516
+ .fa-avianex:before {
517
+ content: "\f374";
518
+ }
519
+
520
+ .fa-aviato:before {
521
+ content: "\f421";
522
+ }
523
+
524
+ .fa-award:before {
525
+ content: "\f559";
526
+ }
527
+
528
+ .fa-aws:before {
529
+ content: "\f375";
530
+ }
531
+
532
+ .fa-backspace:before {
533
+ content: "\f55a";
534
+ }
535
+
536
+ .fa-backward:before {
537
+ content: "\f04a";
538
+ }
539
+
540
+ .fa-balance-scale:before {
541
+ content: "\f24e";
542
+ }
543
+
544
+ .fa-ban:before {
545
+ content: "\f05e";
546
+ }
547
+
548
+ .fa-band-aid:before {
549
+ content: "\f462";
550
+ }
551
+
552
+ .fa-bandcamp:before {
553
+ content: "\f2d5";
554
+ }
555
+
556
+ .fa-barcode:before {
557
+ content: "\f02a";
558
+ }
559
+
560
+ .fa-bars:before {
561
+ content: "\f0c9";
562
+ }
563
+
564
+ .fa-baseball-ball:before {
565
+ content: "\f433";
566
+ }
567
+
568
+ .fa-basketball-ball:before {
569
+ content: "\f434";
570
+ }
571
+
572
+ .fa-bath:before {
573
+ content: "\f2cd";
574
+ }
575
+
576
+ .fa-battery-empty:before {
577
+ content: "\f244";
578
+ }
579
+
580
+ .fa-battery-full:before {
581
+ content: "\f240";
582
+ }
583
+
584
+ .fa-battery-half:before {
585
+ content: "\f242";
586
+ }
587
+
588
+ .fa-battery-quarter:before {
589
+ content: "\f243";
590
+ }
591
+
592
+ .fa-battery-three-quarters:before {
593
+ content: "\f241";
594
+ }
595
+
596
+ .fa-bed:before {
597
+ content: "\f236";
598
+ }
599
+
600
+ .fa-beer:before {
601
+ content: "\f0fc";
602
+ }
603
+
604
+ .fa-behance:before {
605
+ content: "\f1b4";
606
+ }
607
+
608
+ .fa-behance-square:before {
609
+ content: "\f1b5";
610
+ }
611
+
612
+ .fa-bell:before {
613
+ content: "\f0f3";
614
+ }
615
+
616
+ .fa-bell-slash:before {
617
+ content: "\f1f6";
618
+ }
619
+
620
+ .fa-bezier-curve:before {
621
+ content: "\f55b";
622
+ }
623
+
624
+ .fa-bicycle:before {
625
+ content: "\f206";
626
+ }
627
+
628
+ .fa-bimobject:before {
629
+ content: "\f378";
630
+ }
631
+
632
+ .fa-binoculars:before {
633
+ content: "\f1e5";
634
+ }
635
+
636
+ .fa-birthday-cake:before {
637
+ content: "\f1fd";
638
+ }
639
+
640
+ .fa-bitbucket:before {
641
+ content: "\f171";
642
+ }
643
+
644
+ .fa-bitcoin:before {
645
+ content: "\f379";
646
+ }
647
+
648
+ .fa-bity:before {
649
+ content: "\f37a";
650
+ }
651
+
652
+ .fa-black-tie:before {
653
+ content: "\f27e";
654
+ }
655
+
656
+ .fa-blackberry:before {
657
+ content: "\f37b";
658
+ }
659
+
660
+ .fa-blender:before {
661
+ content: "\f517";
662
+ }
663
+
664
+ .fa-blind:before {
665
+ content: "\f29d";
666
+ }
667
+
668
+ .fa-blogger:before {
669
+ content: "\f37c";
670
+ }
671
+
672
+ .fa-blogger-b:before {
673
+ content: "\f37d";
674
+ }
675
+
676
+ .fa-bluetooth:before {
677
+ content: "\f293";
678
+ }
679
+
680
+ .fa-bluetooth-b:before {
681
+ content: "\f294";
682
+ }
683
+
684
+ .fa-bold:before {
685
+ content: "\f032";
686
+ }
687
+
688
+ .fa-bolt:before {
689
+ content: "\f0e7";
690
+ }
691
+
692
+ .fa-bomb:before {
693
+ content: "\f1e2";
694
+ }
695
+
696
+ .fa-bone:before {
697
+ content: "\f5d7";
698
+ }
699
+
700
+ .fa-bong:before {
701
+ content: "\f55c";
702
+ }
703
+
704
+ .fa-book:before {
705
+ content: "\f02d";
706
+ }
707
+
708
+ .fa-book-open:before {
709
+ content: "\f518";
710
+ }
711
+
712
+ .fa-book-reader:before {
713
+ content: "\f5da";
714
+ }
715
+
716
+ .fa-bookmark:before {
717
+ content: "\f02e";
718
+ }
719
+
720
+ .fa-bowling-ball:before {
721
+ content: "\f436";
722
+ }
723
+
724
+ .fa-box:before {
725
+ content: "\f466";
726
+ }
727
+
728
+ .fa-box-open:before {
729
+ content: "\f49e";
730
+ }
731
+
732
+ .fa-boxes:before {
733
+ content: "\f468";
734
+ }
735
+
736
+ .fa-braille:before {
737
+ content: "\f2a1";
738
+ }
739
+
740
+ .fa-brain:before {
741
+ content: "\f5dc";
742
+ }
743
+
744
+ .fa-briefcase:before {
745
+ content: "\f0b1";
746
+ }
747
+
748
+ .fa-briefcase-medical:before {
749
+ content: "\f469";
750
+ }
751
+
752
+ .fa-broadcast-tower:before {
753
+ content: "\f519";
754
+ }
755
+
756
+ .fa-broom:before {
757
+ content: "\f51a";
758
+ }
759
+
760
+ .fa-brush:before {
761
+ content: "\f55d";
762
+ }
763
+
764
+ .fa-btc:before {
765
+ content: "\f15a";
766
+ }
767
+
768
+ .fa-bug:before {
769
+ content: "\f188";
770
+ }
771
+
772
+ .fa-building:before {
773
+ content: "\f1ad";
774
+ }
775
+
776
+ .fa-bullhorn:before {
777
+ content: "\f0a1";
778
+ }
779
+
780
+ .fa-bullseye:before {
781
+ content: "\f140";
782
+ }
783
+
784
+ .fa-burn:before {
785
+ content: "\f46a";
786
+ }
787
+
788
+ .fa-buromobelexperte:before {
789
+ content: "\f37f";
790
+ }
791
+
792
+ .fa-bus:before {
793
+ content: "\f207";
794
+ }
795
+
796
+ .fa-bus-alt:before {
797
+ content: "\f55e";
798
+ }
799
+
800
+ .fa-buysellads:before {
801
+ content: "\f20d";
802
+ }
803
+
804
+ .fa-calculator:before {
805
+ content: "\f1ec";
806
+ }
807
+
808
+ .fa-calendar:before {
809
+ content: "\f133";
810
+ }
811
+
812
+ .fa-calendar-alt:before {
813
+ content: "\f073";
814
+ }
815
+
816
+ .fa-calendar-check:before {
817
+ content: "\f274";
818
+ }
819
+
820
+ .fa-calendar-minus:before {
821
+ content: "\f272";
822
+ }
823
+
824
+ .fa-calendar-plus:before {
825
+ content: "\f271";
826
+ }
827
+
828
+ .fa-calendar-times:before {
829
+ content: "\f273";
830
+ }
831
+
832
+ .fa-camera:before {
833
+ content: "\f030";
834
+ }
835
+
836
+ .fa-camera-retro:before {
837
+ content: "\f083";
838
+ }
839
+
840
+ .fa-cannabis:before {
841
+ content: "\f55f";
842
+ }
843
+
844
+ .fa-capsules:before {
845
+ content: "\f46b";
846
+ }
847
+
848
+ .fa-car:before {
849
+ content: "\f1b9";
850
+ }
851
+
852
+ .fa-car-alt:before {
853
+ content: "\f5de";
854
+ }
855
+
856
+ .fa-car-battery:before {
857
+ content: "\f5df";
858
+ }
859
+
860
+ .fa-car-crash:before {
861
+ content: "\f5e1";
862
+ }
863
+
864
+ .fa-car-side:before {
865
+ content: "\f5e4";
866
+ }
867
+
868
+ .fa-caret-down:before {
869
+ content: "\f0d7";
870
+ }
871
+
872
+ .fa-caret-left:before {
873
+ content: "\f0d9";
874
+ }
875
+
876
+ .fa-caret-right:before {
877
+ content: "\f0da";
878
+ }
879
+
880
+ .fa-caret-square-down:before {
881
+ content: "\f150";
882
+ }
883
+
884
+ .fa-caret-square-left:before {
885
+ content: "\f191";
886
+ }
887
+
888
+ .fa-caret-square-right:before {
889
+ content: "\f152";
890
+ }
891
+
892
+ .fa-caret-square-up:before {
893
+ content: "\f151";
894
+ }
895
+
896
+ .fa-caret-up:before {
897
+ content: "\f0d8";
898
+ }
899
+
900
+ .fa-cart-arrow-down:before {
901
+ content: "\f218";
902
+ }
903
+
904
+ .fa-cart-plus:before {
905
+ content: "\f217";
906
+ }
907
+
908
+ .fa-cc-amazon-pay:before {
909
+ content: "\f42d";
910
+ }
911
+
912
+ .fa-cc-amex:before {
913
+ content: "\f1f3";
914
+ }
915
+
916
+ .fa-cc-apple-pay:before {
917
+ content: "\f416";
918
+ }
919
+
920
+ .fa-cc-diners-club:before {
921
+ content: "\f24c";
922
+ }
923
+
924
+ .fa-cc-discover:before {
925
+ content: "\f1f2";
926
+ }
927
+
928
+ .fa-cc-jcb:before {
929
+ content: "\f24b";
930
+ }
931
+
932
+ .fa-cc-mastercard:before {
933
+ content: "\f1f1";
934
+ }
935
+
936
+ .fa-cc-paypal:before {
937
+ content: "\f1f4";
938
+ }
939
+
940
+ .fa-cc-stripe:before {
941
+ content: "\f1f5";
942
+ }
943
+
944
+ .fa-cc-visa:before {
945
+ content: "\f1f0";
946
+ }
947
+
948
+ .fa-centercode:before {
949
+ content: "\f380";
950
+ }
951
+
952
+ .fa-certificate:before {
953
+ content: "\f0a3";
954
+ }
955
+
956
+ .fa-chalkboard:before {
957
+ content: "\f51b";
958
+ }
959
+
960
+ .fa-chalkboard-teacher:before {
961
+ content: "\f51c";
962
+ }
963
+
964
+ .fa-charging-station:before {
965
+ content: "\f5e7";
966
+ }
967
+
968
+ .fa-chart-area:before {
969
+ content: "\f1fe";
970
+ }
971
+
972
+ .fa-chart-bar:before {
973
+ content: "\f080";
974
+ }
975
+
976
+ .fa-chart-line:before {
977
+ content: "\f201";
978
+ }
979
+
980
+ .fa-chart-pie:before {
981
+ content: "\f200";
982
+ }
983
+
984
+ .fa-check:before {
985
+ content: "\f00c";
986
+ }
987
+
988
+ .fa-check-circle:before {
989
+ content: "\f058";
990
+ }
991
+
992
+ .fa-check-double:before {
993
+ content: "\f560";
994
+ }
995
+
996
+ .fa-check-square:before {
997
+ content: "\f14a";
998
+ }
999
+
1000
+ .fa-chess:before {
1001
+ content: "\f439";
1002
+ }
1003
+
1004
+ .fa-chess-bishop:before {
1005
+ content: "\f43a";
1006
+ }
1007
+
1008
+ .fa-chess-board:before {
1009
+ content: "\f43c";
1010
+ }
1011
+
1012
+ .fa-chess-king:before {
1013
+ content: "\f43f";
1014
+ }
1015
+
1016
+ .fa-chess-knight:before {
1017
+ content: "\f441";
1018
+ }
1019
+
1020
+ .fa-chess-pawn:before {
1021
+ content: "\f443";
1022
+ }
1023
+
1024
+ .fa-chess-queen:before {
1025
+ content: "\f445";
1026
+ }
1027
+
1028
+ .fa-chess-rook:before {
1029
+ content: "\f447";
1030
+ }
1031
+
1032
+ .fa-chevron-circle-down:before {
1033
+ content: "\f13a";
1034
+ }
1035
+
1036
+ .fa-chevron-circle-left:before {
1037
+ content: "\f137";
1038
+ }
1039
+
1040
+ .fa-chevron-circle-right:before {
1041
+ content: "\f138";
1042
+ }
1043
+
1044
+ .fa-chevron-circle-up:before {
1045
+ content: "\f139";
1046
+ }
1047
+
1048
+ .fa-chevron-down:before {
1049
+ content: "\f078";
1050
+ }
1051
+
1052
+ .fa-chevron-left:before {
1053
+ content: "\f053";
1054
+ }
1055
+
1056
+ .fa-chevron-right:before {
1057
+ content: "\f054";
1058
+ }
1059
+
1060
+ .fa-chevron-up:before {
1061
+ content: "\f077";
1062
+ }
1063
+
1064
+ .fa-child:before {
1065
+ content: "\f1ae";
1066
+ }
1067
+
1068
+ .fa-chrome:before {
1069
+ content: "\f268";
1070
+ }
1071
+
1072
+ .fa-church:before {
1073
+ content: "\f51d";
1074
+ }
1075
+
1076
+ .fa-circle:before {
1077
+ content: "\f111";
1078
+ }
1079
+
1080
+ .fa-circle-notch:before {
1081
+ content: "\f1ce";
1082
+ }
1083
+
1084
+ .fa-clipboard:before {
1085
+ content: "\f328";
1086
+ }
1087
+
1088
+ .fa-clipboard-check:before {
1089
+ content: "\f46c";
1090
+ }
1091
+
1092
+ .fa-clipboard-list:before {
1093
+ content: "\f46d";
1094
+ }
1095
+
1096
+ .fa-clock:before {
1097
+ content: "\f017";
1098
+ }
1099
+
1100
+ .fa-clone:before {
1101
+ content: "\f24d";
1102
+ }
1103
+
1104
+ .fa-closed-captioning:before {
1105
+ content: "\f20a";
1106
+ }
1107
+
1108
+ .fa-cloud:before {
1109
+ content: "\f0c2";
1110
+ }
1111
+
1112
+ .fa-cloud-download-alt:before {
1113
+ content: "\f381";
1114
+ }
1115
+
1116
+ .fa-cloud-upload-alt:before {
1117
+ content: "\f382";
1118
+ }
1119
+
1120
+ .fa-cloudscale:before {
1121
+ content: "\f383";
1122
+ }
1123
+
1124
+ .fa-cloudsmith:before {
1125
+ content: "\f384";
1126
+ }
1127
+
1128
+ .fa-cloudversify:before {
1129
+ content: "\f385";
1130
+ }
1131
+
1132
+ .fa-cocktail:before {
1133
+ content: "\f561";
1134
+ }
1135
+
1136
+ .fa-code:before {
1137
+ content: "\f121";
1138
+ }
1139
+
1140
+ .fa-code-branch:before {
1141
+ content: "\f126";
1142
+ }
1143
+
1144
+ .fa-codepen:before {
1145
+ content: "\f1cb";
1146
+ }
1147
+
1148
+ .fa-codiepie:before {
1149
+ content: "\f284";
1150
+ }
1151
+
1152
+ .fa-coffee:before {
1153
+ content: "\f0f4";
1154
+ }
1155
+
1156
+ .fa-cog:before {
1157
+ content: "\f013";
1158
+ }
1159
+
1160
+ .fa-cogs:before {
1161
+ content: "\f085";
1162
+ }
1163
+
1164
+ .fa-coins:before {
1165
+ content: "\f51e";
1166
+ }
1167
+
1168
+ .fa-columns:before {
1169
+ content: "\f0db";
1170
+ }
1171
+
1172
+ .fa-comment:before {
1173
+ content: "\f075";
1174
+ }
1175
+
1176
+ .fa-comment-alt:before {
1177
+ content: "\f27a";
1178
+ }
1179
+
1180
+ .fa-comment-dots:before {
1181
+ content: "\f4ad";
1182
+ }
1183
+
1184
+ .fa-comment-slash:before {
1185
+ content: "\f4b3";
1186
+ }
1187
+
1188
+ .fa-comments:before {
1189
+ content: "\f086";
1190
+ }
1191
+
1192
+ .fa-compact-disc:before {
1193
+ content: "\f51f";
1194
+ }
1195
+
1196
+ .fa-compass:before {
1197
+ content: "\f14e";
1198
+ }
1199
+
1200
+ .fa-compress:before {
1201
+ content: "\f066";
1202
+ }
1203
+
1204
+ .fa-concierge-bell:before {
1205
+ content: "\f562";
1206
+ }
1207
+
1208
+ .fa-connectdevelop:before {
1209
+ content: "\f20e";
1210
+ }
1211
+
1212
+ .fa-contao:before {
1213
+ content: "\f26d";
1214
+ }
1215
+
1216
+ .fa-cookie:before {
1217
+ content: "\f563";
1218
+ }
1219
+
1220
+ .fa-cookie-bite:before {
1221
+ content: "\f564";
1222
+ }
1223
+
1224
+ .fa-copy:before {
1225
+ content: "\f0c5";
1226
+ }
1227
+
1228
+ .fa-copyright:before {
1229
+ content: "\f1f9";
1230
+ }
1231
+
1232
+ .fa-couch:before {
1233
+ content: "\f4b8";
1234
+ }
1235
+
1236
+ .fa-cpanel:before {
1237
+ content: "\f388";
1238
+ }
1239
+
1240
+ .fa-creative-commons:before {
1241
+ content: "\f25e";
1242
+ }
1243
+
1244
+ .fa-creative-commons-by:before {
1245
+ content: "\f4e7";
1246
+ }
1247
+
1248
+ .fa-creative-commons-nc:before {
1249
+ content: "\f4e8";
1250
+ }
1251
+
1252
+ .fa-creative-commons-nc-eu:before {
1253
+ content: "\f4e9";
1254
+ }
1255
+
1256
+ .fa-creative-commons-nc-jp:before {
1257
+ content: "\f4ea";
1258
+ }
1259
+
1260
+ .fa-creative-commons-nd:before {
1261
+ content: "\f4eb";
1262
+ }
1263
+
1264
+ .fa-creative-commons-pd:before {
1265
+ content: "\f4ec";
1266
+ }
1267
+
1268
+ .fa-creative-commons-pd-alt:before {
1269
+ content: "\f4ed";
1270
+ }
1271
+
1272
+ .fa-creative-commons-remix:before {
1273
+ content: "\f4ee";
1274
+ }
1275
+
1276
+ .fa-creative-commons-sa:before {
1277
+ content: "\f4ef";
1278
+ }
1279
+
1280
+ .fa-creative-commons-sampling:before {
1281
+ content: "\f4f0";
1282
+ }
1283
+
1284
+ .fa-creative-commons-sampling-plus:before {
1285
+ content: "\f4f1";
1286
+ }
1287
+
1288
+ .fa-creative-commons-share:before {
1289
+ content: "\f4f2";
1290
+ }
1291
+
1292
+ .fa-credit-card:before {
1293
+ content: "\f09d";
1294
+ }
1295
+
1296
+ .fa-crop:before {
1297
+ content: "\f125";
1298
+ }
1299
+
1300
+ .fa-crop-alt:before {
1301
+ content: "\f565";
1302
+ }
1303
+
1304
+ .fa-crosshairs:before {
1305
+ content: "\f05b";
1306
+ }
1307
+
1308
+ .fa-crow:before {
1309
+ content: "\f520";
1310
+ }
1311
+
1312
+ .fa-crown:before {
1313
+ content: "\f521";
1314
+ }
1315
+
1316
+ .fa-css3:before {
1317
+ content: "\f13c";
1318
+ }
1319
+
1320
+ .fa-css3-alt:before {
1321
+ content: "\f38b";
1322
+ }
1323
+
1324
+ .fa-cube:before {
1325
+ content: "\f1b2";
1326
+ }
1327
+
1328
+ .fa-cubes:before {
1329
+ content: "\f1b3";
1330
+ }
1331
+
1332
+ .fa-cut:before {
1333
+ content: "\f0c4";
1334
+ }
1335
+
1336
+ .fa-cuttlefish:before {
1337
+ content: "\f38c";
1338
+ }
1339
+
1340
+ .fa-d-and-d:before {
1341
+ content: "\f38d";
1342
+ }
1343
+
1344
+ .fa-dashcube:before {
1345
+ content: "\f210";
1346
+ }
1347
+
1348
+ .fa-database:before {
1349
+ content: "\f1c0";
1350
+ }
1351
+
1352
+ .fa-deaf:before {
1353
+ content: "\f2a4";
1354
+ }
1355
+
1356
+ .fa-delicious:before {
1357
+ content: "\f1a5";
1358
+ }
1359
+
1360
+ .fa-deploydog:before {
1361
+ content: "\f38e";
1362
+ }
1363
+
1364
+ .fa-deskpro:before {
1365
+ content: "\f38f";
1366
+ }
1367
+
1368
+ .fa-desktop:before {
1369
+ content: "\f108";
1370
+ }
1371
+
1372
+ .fa-deviantart:before {
1373
+ content: "\f1bd";
1374
+ }
1375
+
1376
+ .fa-diagnoses:before {
1377
+ content: "\f470";
1378
+ }
1379
+
1380
+ .fa-dice:before {
1381
+ content: "\f522";
1382
+ }
1383
+
1384
+ .fa-dice-five:before {
1385
+ content: "\f523";
1386
+ }
1387
+
1388
+ .fa-dice-four:before {
1389
+ content: "\f524";
1390
+ }
1391
+
1392
+ .fa-dice-one:before {
1393
+ content: "\f525";
1394
+ }
1395
+
1396
+ .fa-dice-six:before {
1397
+ content: "\f526";
1398
+ }
1399
+
1400
+ .fa-dice-three:before {
1401
+ content: "\f527";
1402
+ }
1403
+
1404
+ .fa-dice-two:before {
1405
+ content: "\f528";
1406
+ }
1407
+
1408
+ .fa-digg:before {
1409
+ content: "\f1a6";
1410
+ }
1411
+
1412
+ .fa-digital-ocean:before {
1413
+ content: "\f391";
1414
+ }
1415
+
1416
+ .fa-digital-tachograph:before {
1417
+ content: "\f566";
1418
+ }
1419
+
1420
+ .fa-directions:before {
1421
+ content: "\f5eb";
1422
+ }
1423
+
1424
+ .fa-discord:before {
1425
+ content: "\f392";
1426
+ }
1427
+
1428
+ .fa-discourse:before {
1429
+ content: "\f393";
1430
+ }
1431
+
1432
+ .fa-divide:before {
1433
+ content: "\f529";
1434
+ }
1435
+
1436
+ .fa-dizzy:before {
1437
+ content: "\f567";
1438
+ }
1439
+
1440
+ .fa-dna:before {
1441
+ content: "\f471";
1442
+ }
1443
+
1444
+ .fa-dochub:before {
1445
+ content: "\f394";
1446
+ }
1447
+
1448
+ .fa-docker:before {
1449
+ content: "\f395";
1450
+ }
1451
+
1452
+ .fa-dollar-sign:before {
1453
+ content: "\f155";
1454
+ }
1455
+
1456
+ .fa-dolly:before {
1457
+ content: "\f472";
1458
+ }
1459
+
1460
+ .fa-dolly-flatbed:before {
1461
+ content: "\f474";
1462
+ }
1463
+
1464
+ .fa-donate:before {
1465
+ content: "\f4b9";
1466
+ }
1467
+
1468
+ .fa-door-closed:before {
1469
+ content: "\f52a";
1470
+ }
1471
+
1472
+ .fa-door-open:before {
1473
+ content: "\f52b";
1474
+ }
1475
+
1476
+ .fa-dot-circle:before {
1477
+ content: "\f192";
1478
+ }
1479
+
1480
+ .fa-dove:before {
1481
+ content: "\f4ba";
1482
+ }
1483
+
1484
+ .fa-download:before {
1485
+ content: "\f019";
1486
+ }
1487
+
1488
+ .fa-draft2digital:before {
1489
+ content: "\f396";
1490
+ }
1491
+
1492
+ .fa-drafting-compass:before {
1493
+ content: "\f568";
1494
+ }
1495
+
1496
+ .fa-draw-polygon:before {
1497
+ content: "\f5ee";
1498
+ }
1499
+
1500
+ .fa-dribbble:before {
1501
+ content: "\f17d";
1502
+ }
1503
+
1504
+ .fa-dribbble-square:before {
1505
+ content: "\f397";
1506
+ }
1507
+
1508
+ .fa-dropbox:before {
1509
+ content: "\f16b";
1510
+ }
1511
+
1512
+ .fa-drum:before {
1513
+ content: "\f569";
1514
+ }
1515
+
1516
+ .fa-drum-steelpan:before {
1517
+ content: "\f56a";
1518
+ }
1519
+
1520
+ .fa-drupal:before {
1521
+ content: "\f1a9";
1522
+ }
1523
+
1524
+ .fa-dumbbell:before {
1525
+ content: "\f44b";
1526
+ }
1527
+
1528
+ .fa-dyalog:before {
1529
+ content: "\f399";
1530
+ }
1531
+
1532
+ .fa-earlybirds:before {
1533
+ content: "\f39a";
1534
+ }
1535
+
1536
+ .fa-ebay:before {
1537
+ content: "\f4f4";
1538
+ }
1539
+
1540
+ .fa-edge:before {
1541
+ content: "\f282";
1542
+ }
1543
+
1544
+ .fa-edit:before {
1545
+ content: "\f044";
1546
+ }
1547
+
1548
+ .fa-eject:before {
1549
+ content: "\f052";
1550
+ }
1551
+
1552
+ .fa-elementor:before {
1553
+ content: "\f430";
1554
+ }
1555
+
1556
+ .fa-ellipsis-h:before {
1557
+ content: "\f141";
1558
+ }
1559
+
1560
+ .fa-ellipsis-v:before {
1561
+ content: "\f142";
1562
+ }
1563
+
1564
+ .fa-ello:before {
1565
+ content: "\f5f1";
1566
+ }
1567
+
1568
+ .fa-ember:before {
1569
+ content: "\f423";
1570
+ }
1571
+
1572
+ .fa-empire:before {
1573
+ content: "\f1d1";
1574
+ }
1575
+
1576
+ .fa-envelope:before {
1577
+ content: "\f0e0";
1578
+ }
1579
+
1580
+ .fa-envelope-open:before {
1581
+ content: "\f2b6";
1582
+ }
1583
+
1584
+ .fa-envelope-square:before {
1585
+ content: "\f199";
1586
+ }
1587
+
1588
+ .fa-envira:before {
1589
+ content: "\f299";
1590
+ }
1591
+
1592
+ .fa-equals:before {
1593
+ content: "\f52c";
1594
+ }
1595
+
1596
+ .fa-eraser:before {
1597
+ content: "\f12d";
1598
+ }
1599
+
1600
+ .fa-erlang:before {
1601
+ content: "\f39d";
1602
+ }
1603
+
1604
+ .fa-ethereum:before {
1605
+ content: "\f42e";
1606
+ }
1607
+
1608
+ .fa-etsy:before {
1609
+ content: "\f2d7";
1610
+ }
1611
+
1612
+ .fa-euro-sign:before {
1613
+ content: "\f153";
1614
+ }
1615
+
1616
+ .fa-exchange-alt:before {
1617
+ content: "\f362";
1618
+ }
1619
+
1620
+ .fa-exclamation:before {
1621
+ content: "\f12a";
1622
+ }
1623
+
1624
+ .fa-exclamation-circle:before {
1625
+ content: "\f06a";
1626
+ }
1627
+
1628
+ .fa-exclamation-triangle:before {
1629
+ content: "\f071";
1630
+ }
1631
+
1632
+ .fa-expand:before {
1633
+ content: "\f065";
1634
+ }
1635
+
1636
+ .fa-expand-arrows-alt:before {
1637
+ content: "\f31e";
1638
+ }
1639
+
1640
+ .fa-expeditedssl:before {
1641
+ content: "\f23e";
1642
+ }
1643
+
1644
+ .fa-external-link-alt:before {
1645
+ content: "\f35d";
1646
+ }
1647
+
1648
+ .fa-external-link-square-alt:before {
1649
+ content: "\f360";
1650
+ }
1651
+
1652
+ .fa-eye:before {
1653
+ content: "\f06e";
1654
+ }
1655
+
1656
+ .fa-eye-dropper:before {
1657
+ content: "\f1fb";
1658
+ }
1659
+
1660
+ .fa-eye-slash:before {
1661
+ content: "\f070";
1662
+ }
1663
+
1664
+ .fa-facebook:before {
1665
+ content: "\f09a";
1666
+ }
1667
+
1668
+ .fa-facebook-f:before {
1669
+ content: "\f39e";
1670
+ }
1671
+
1672
+ .fa-facebook-messenger:before {
1673
+ content: "\f39f";
1674
+ }
1675
+
1676
+ .fa-facebook-square:before {
1677
+ content: "\f082";
1678
+ }
1679
+
1680
+ .fa-fast-backward:before {
1681
+ content: "\f049";
1682
+ }
1683
+
1684
+ .fa-fast-forward:before {
1685
+ content: "\f050";
1686
+ }
1687
+
1688
+ .fa-fax:before {
1689
+ content: "\f1ac";
1690
+ }
1691
+
1692
+ .fa-feather:before {
1693
+ content: "\f52d";
1694
+ }
1695
+
1696
+ .fa-feather-alt:before {
1697
+ content: "\f56b";
1698
+ }
1699
+
1700
+ .fa-female:before {
1701
+ content: "\f182";
1702
+ }
1703
+
1704
+ .fa-fighter-jet:before {
1705
+ content: "\f0fb";
1706
+ }
1707
+
1708
+ .fa-file:before {
1709
+ content: "\f15b";
1710
+ }
1711
+
1712
+ .fa-file-alt:before {
1713
+ content: "\f15c";
1714
+ }
1715
+
1716
+ .fa-file-archive:before {
1717
+ content: "\f1c6";
1718
+ }
1719
+
1720
+ .fa-file-audio:before {
1721
+ content: "\f1c7";
1722
+ }
1723
+
1724
+ .fa-file-code:before {
1725
+ content: "\f1c9";
1726
+ }
1727
+
1728
+ .fa-file-contract:before {
1729
+ content: "\f56c";
1730
+ }
1731
+
1732
+ .fa-file-download:before {
1733
+ content: "\f56d";
1734
+ }
1735
+
1736
+ .fa-file-excel:before {
1737
+ content: "\f1c3";
1738
+ }
1739
+
1740
+ .fa-file-export:before {
1741
+ content: "\f56e";
1742
+ }
1743
+
1744
+ .fa-file-image:before {
1745
+ content: "\f1c5";
1746
+ }
1747
+
1748
+ .fa-file-import:before {
1749
+ content: "\f56f";
1750
+ }
1751
+
1752
+ .fa-file-invoice:before {
1753
+ content: "\f570";
1754
+ }
1755
+
1756
+ .fa-file-invoice-dollar:before {
1757
+ content: "\f571";
1758
+ }
1759
+
1760
+ .fa-file-medical:before {
1761
+ content: "\f477";
1762
+ }
1763
+
1764
+ .fa-file-medical-alt:before {
1765
+ content: "\f478";
1766
+ }
1767
+
1768
+ .fa-file-pdf:before {
1769
+ content: "\f1c1";
1770
+ }
1771
+
1772
+ .fa-file-powerpoint:before {
1773
+ content: "\f1c4";
1774
+ }
1775
+
1776
+ .fa-file-prescription:before {
1777
+ content: "\f572";
1778
+ }
1779
+
1780
+ .fa-file-signature:before {
1781
+ content: "\f573";
1782
+ }
1783
+
1784
+ .fa-file-upload:before {
1785
+ content: "\f574";
1786
+ }
1787
+
1788
+ .fa-file-video:before {
1789
+ content: "\f1c8";
1790
+ }
1791
+
1792
+ .fa-file-word:before {
1793
+ content: "\f1c2";
1794
+ }
1795
+
1796
+ .fa-fill:before {
1797
+ content: "\f575";
1798
+ }
1799
+
1800
+ .fa-fill-drip:before {
1801
+ content: "\f576";
1802
+ }
1803
+
1804
+ .fa-film:before {
1805
+ content: "\f008";
1806
+ }
1807
+
1808
+ .fa-filter:before {
1809
+ content: "\f0b0";
1810
+ }
1811
+
1812
+ .fa-fingerprint:before {
1813
+ content: "\f577";
1814
+ }
1815
+
1816
+ .fa-fire:before {
1817
+ content: "\f06d";
1818
+ }
1819
+
1820
+ .fa-fire-extinguisher:before {
1821
+ content: "\f134";
1822
+ }
1823
+
1824
+ .fa-firefox:before {
1825
+ content: "\f269";
1826
+ }
1827
+
1828
+ .fa-first-aid:before {
1829
+ content: "\f479";
1830
+ }
1831
+
1832
+ .fa-first-order:before {
1833
+ content: "\f2b0";
1834
+ }
1835
+
1836
+ .fa-first-order-alt:before {
1837
+ content: "\f50a";
1838
+ }
1839
+
1840
+ .fa-firstdraft:before {
1841
+ content: "\f3a1";
1842
+ }
1843
+
1844
+ .fa-fish:before {
1845
+ content: "\f578";
1846
+ }
1847
+
1848
+ .fa-flag:before {
1849
+ content: "\f024";
1850
+ }
1851
+
1852
+ .fa-flag-checkered:before {
1853
+ content: "\f11e";
1854
+ }
1855
+
1856
+ .fa-flask:before {
1857
+ content: "\f0c3";
1858
+ }
1859
+
1860
+ .fa-flickr:before {
1861
+ content: "\f16e";
1862
+ }
1863
+
1864
+ .fa-flipboard:before {
1865
+ content: "\f44d";
1866
+ }
1867
+
1868
+ .fa-flushed:before {
1869
+ content: "\f579";
1870
+ }
1871
+
1872
+ .fa-fly:before {
1873
+ content: "\f417";
1874
+ }
1875
+
1876
+ .fa-folder:before {
1877
+ content: "\f07b";
1878
+ }
1879
+
1880
+ .fa-folder-open:before {
1881
+ content: "\f07c";
1882
+ }
1883
+
1884
+ .fa-font:before {
1885
+ content: "\f031";
1886
+ }
1887
+
1888
+ .fa-font-awesome:before {
1889
+ content: "\f2b4";
1890
+ }
1891
+
1892
+ .fa-font-awesome-alt:before {
1893
+ content: "\f35c";
1894
+ }
1895
+
1896
+ .fa-font-awesome-flag:before {
1897
+ content: "\f425";
1898
+ }
1899
+
1900
+ .fa-font-awesome-logo-full:before {
1901
+ content: "\f4e6";
1902
+ }
1903
+
1904
+ .fa-fonticons:before {
1905
+ content: "\f280";
1906
+ }
1907
+
1908
+ .fa-fonticons-fi:before {
1909
+ content: "\f3a2";
1910
+ }
1911
+
1912
+ .fa-football-ball:before {
1913
+ content: "\f44e";
1914
+ }
1915
+
1916
+ .fa-fort-awesome:before {
1917
+ content: "\f286";
1918
+ }
1919
+
1920
+ .fa-fort-awesome-alt:before {
1921
+ content: "\f3a3";
1922
+ }
1923
+
1924
+ .fa-forumbee:before {
1925
+ content: "\f211";
1926
+ }
1927
+
1928
+ .fa-forward:before {
1929
+ content: "\f04e";
1930
+ }
1931
+
1932
+ .fa-foursquare:before {
1933
+ content: "\f180";
1934
+ }
1935
+
1936
+ .fa-free-code-camp:before {
1937
+ content: "\f2c5";
1938
+ }
1939
+
1940
+ .fa-freebsd:before {
1941
+ content: "\f3a4";
1942
+ }
1943
+
1944
+ .fa-frog:before {
1945
+ content: "\f52e";
1946
+ }
1947
+
1948
+ .fa-frown:before {
1949
+ content: "\f119";
1950
+ }
1951
+
1952
+ .fa-frown-open:before {
1953
+ content: "\f57a";
1954
+ }
1955
+
1956
+ .fa-fulcrum:before {
1957
+ content: "\f50b";
1958
+ }
1959
+
1960
+ .fa-futbol:before {
1961
+ content: "\f1e3";
1962
+ }
1963
+
1964
+ .fa-galactic-republic:before {
1965
+ content: "\f50c";
1966
+ }
1967
+
1968
+ .fa-galactic-senate:before {
1969
+ content: "\f50d";
1970
+ }
1971
+
1972
+ .fa-gamepad:before {
1973
+ content: "\f11b";
1974
+ }
1975
+
1976
+ .fa-gas-pump:before {
1977
+ content: "\f52f";
1978
+ }
1979
+
1980
+ .fa-gavel:before {
1981
+ content: "\f0e3";
1982
+ }
1983
+
1984
+ .fa-gem:before {
1985
+ content: "\f3a5";
1986
+ }
1987
+
1988
+ .fa-genderless:before {
1989
+ content: "\f22d";
1990
+ }
1991
+
1992
+ .fa-get-pocket:before {
1993
+ content: "\f265";
1994
+ }
1995
+
1996
+ .fa-gg:before {
1997
+ content: "\f260";
1998
+ }
1999
+
2000
+ .fa-gg-circle:before {
2001
+ content: "\f261";
2002
+ }
2003
+
2004
+ .fa-gift:before {
2005
+ content: "\f06b";
2006
+ }
2007
+
2008
+ .fa-git:before {
2009
+ content: "\f1d3";
2010
+ }
2011
+
2012
+ .fa-git-square:before {
2013
+ content: "\f1d2";
2014
+ }
2015
+
2016
+ .fa-github:before {
2017
+ content: "\f09b";
2018
+ }
2019
+
2020
+ .fa-github-alt:before {
2021
+ content: "\f113";
2022
+ }
2023
+
2024
+ .fa-github-square:before {
2025
+ content: "\f092";
2026
+ }
2027
+
2028
+ .fa-gitkraken:before {
2029
+ content: "\f3a6";
2030
+ }
2031
+
2032
+ .fa-gitlab:before {
2033
+ content: "\f296";
2034
+ }
2035
+
2036
+ .fa-gitter:before {
2037
+ content: "\f426";
2038
+ }
2039
+
2040
+ .fa-glass-martini:before {
2041
+ content: "\f000";
2042
+ }
2043
+
2044
+ .fa-glass-martini-alt:before {
2045
+ content: "\f57b";
2046
+ }
2047
+
2048
+ .fa-glasses:before {
2049
+ content: "\f530";
2050
+ }
2051
+
2052
+ .fa-glide:before {
2053
+ content: "\f2a5";
2054
+ }
2055
+
2056
+ .fa-glide-g:before {
2057
+ content: "\f2a6";
2058
+ }
2059
+
2060
+ .fa-globe:before {
2061
+ content: "\f0ac";
2062
+ }
2063
+
2064
+ .fa-globe-africa:before {
2065
+ content: "\f57c";
2066
+ }
2067
+
2068
+ .fa-globe-americas:before {
2069
+ content: "\f57d";
2070
+ }
2071
+
2072
+ .fa-globe-asia:before {
2073
+ content: "\f57e";
2074
+ }
2075
+
2076
+ .fa-gofore:before {
2077
+ content: "\f3a7";
2078
+ }
2079
+
2080
+ .fa-golf-ball:before {
2081
+ content: "\f450";
2082
+ }
2083
+
2084
+ .fa-goodreads:before {
2085
+ content: "\f3a8";
2086
+ }
2087
+
2088
+ .fa-goodreads-g:before {
2089
+ content: "\f3a9";
2090
+ }
2091
+
2092
+ .fa-google:before {
2093
+ content: "\f1a0";
2094
+ }
2095
+
2096
+ .fa-google-drive:before {
2097
+ content: "\f3aa";
2098
+ }
2099
+
2100
+ .fa-google-play:before {
2101
+ content: "\f3ab";
2102
+ }
2103
+
2104
+ .fa-google-plus:before {
2105
+ content: "\f2b3";
2106
+ }
2107
+
2108
+ .fa-google-plus-g:before {
2109
+ content: "\f0d5";
2110
+ }
2111
+
2112
+ .fa-google-plus-square:before {
2113
+ content: "\f0d4";
2114
+ }
2115
+
2116
+ .fa-google-wallet:before {
2117
+ content: "\f1ee";
2118
+ }
2119
+
2120
+ .fa-graduation-cap:before {
2121
+ content: "\f19d";
2122
+ }
2123
+
2124
+ .fa-gratipay:before {
2125
+ content: "\f184";
2126
+ }
2127
+
2128
+ .fa-grav:before {
2129
+ content: "\f2d6";
2130
+ }
2131
+
2132
+ .fa-greater-than:before {
2133
+ content: "\f531";
2134
+ }
2135
+
2136
+ .fa-greater-than-equal:before {
2137
+ content: "\f532";
2138
+ }
2139
+
2140
+ .fa-grimace:before {
2141
+ content: "\f57f";
2142
+ }
2143
+
2144
+ .fa-grin:before {
2145
+ content: "\f580";
2146
+ }
2147
+
2148
+ .fa-grin-alt:before {
2149
+ content: "\f581";
2150
+ }
2151
+
2152
+ .fa-grin-beam:before {
2153
+ content: "\f582";
2154
+ }
2155
+
2156
+ .fa-grin-beam-sweat:before {
2157
+ content: "\f583";
2158
+ }
2159
+
2160
+ .fa-grin-hearts:before {
2161
+ content: "\f584";
2162
+ }
2163
+
2164
+ .fa-grin-squint:before {
2165
+ content: "\f585";
2166
+ }
2167
+
2168
+ .fa-grin-squint-tears:before {
2169
+ content: "\f586";
2170
+ }
2171
+
2172
+ .fa-grin-stars:before {
2173
+ content: "\f587";
2174
+ }
2175
+
2176
+ .fa-grin-tears:before {
2177
+ content: "\f588";
2178
+ }
2179
+
2180
+ .fa-grin-tongue:before {
2181
+ content: "\f589";
2182
+ }
2183
+
2184
+ .fa-grin-tongue-squint:before {
2185
+ content: "\f58a";
2186
+ }
2187
+
2188
+ .fa-grin-tongue-wink:before {
2189
+ content: "\f58b";
2190
+ }
2191
+
2192
+ .fa-grin-wink:before {
2193
+ content: "\f58c";
2194
+ }
2195
+
2196
+ .fa-grip-horizontal:before {
2197
+ content: "\f58d";
2198
+ }
2199
+
2200
+ .fa-grip-vertical:before {
2201
+ content: "\f58e";
2202
+ }
2203
+
2204
+ .fa-gripfire:before {
2205
+ content: "\f3ac";
2206
+ }
2207
+
2208
+ .fa-grunt:before {
2209
+ content: "\f3ad";
2210
+ }
2211
+
2212
+ .fa-gulp:before {
2213
+ content: "\f3ae";
2214
+ }
2215
+
2216
+ .fa-h-square:before {
2217
+ content: "\f0fd";
2218
+ }
2219
+
2220
+ .fa-hacker-news:before {
2221
+ content: "\f1d4";
2222
+ }
2223
+
2224
+ .fa-hacker-news-square:before {
2225
+ content: "\f3af";
2226
+ }
2227
+
2228
+ .fa-hackerrank:before {
2229
+ content: "\f5f7";
2230
+ }
2231
+
2232
+ .fa-hand-holding:before {
2233
+ content: "\f4bd";
2234
+ }
2235
+
2236
+ .fa-hand-holding-heart:before {
2237
+ content: "\f4be";
2238
+ }
2239
+
2240
+ .fa-hand-holding-usd:before {
2241
+ content: "\f4c0";
2242
+ }
2243
+
2244
+ .fa-hand-lizard:before {
2245
+ content: "\f258";
2246
+ }
2247
+
2248
+ .fa-hand-paper:before {
2249
+ content: "\f256";
2250
+ }
2251
+
2252
+ .fa-hand-peace:before {
2253
+ content: "\f25b";
2254
+ }
2255
+
2256
+ .fa-hand-point-down:before {
2257
+ content: "\f0a7";
2258
+ }
2259
+
2260
+ .fa-hand-point-left:before {
2261
+ content: "\f0a5";
2262
+ }
2263
+
2264
+ .fa-hand-point-right:before {
2265
+ content: "\f0a4";
2266
+ }
2267
+
2268
+ .fa-hand-point-up:before {
2269
+ content: "\f0a6";
2270
+ }
2271
+
2272
+ .fa-hand-pointer:before {
2273
+ content: "\f25a";
2274
+ }
2275
+
2276
+ .fa-hand-rock:before {
2277
+ content: "\f255";
2278
+ }
2279
+
2280
+ .fa-hand-scissors:before {
2281
+ content: "\f257";
2282
+ }
2283
+
2284
+ .fa-hand-spock:before {
2285
+ content: "\f259";
2286
+ }
2287
+
2288
+ .fa-hands:before {
2289
+ content: "\f4c2";
2290
+ }
2291
+
2292
+ .fa-hands-helping:before {
2293
+ content: "\f4c4";
2294
+ }
2295
+
2296
+ .fa-handshake:before {
2297
+ content: "\f2b5";
2298
+ }
2299
+
2300
+ .fa-hashtag:before {
2301
+ content: "\f292";
2302
+ }
2303
+
2304
+ .fa-hdd:before {
2305
+ content: "\f0a0";
2306
+ }
2307
+
2308
+ .fa-heading:before {
2309
+ content: "\f1dc";
2310
+ }
2311
+
2312
+ .fa-headphones:before {
2313
+ content: "\f025";
2314
+ }
2315
+
2316
+ .fa-headphones-alt:before {
2317
+ content: "\f58f";
2318
+ }
2319
+
2320
+ .fa-headset:before {
2321
+ content: "\f590";
2322
+ }
2323
+
2324
+ .fa-heart:before {
2325
+ content: "\f004";
2326
+ }
2327
+
2328
+ .fa-heartbeat:before {
2329
+ content: "\f21e";
2330
+ }
2331
+
2332
+ .fa-helicopter:before {
2333
+ content: "\f533";
2334
+ }
2335
+
2336
+ .fa-highlighter:before {
2337
+ content: "\f591";
2338
+ }
2339
+
2340
+ .fa-hips:before {
2341
+ content: "\f452";
2342
+ }
2343
+
2344
+ .fa-hire-a-helper:before {
2345
+ content: "\f3b0";
2346
+ }
2347
+
2348
+ .fa-history:before {
2349
+ content: "\f1da";
2350
+ }
2351
+
2352
+ .fa-hockey-puck:before {
2353
+ content: "\f453";
2354
+ }
2355
+
2356
+ .fa-home:before {
2357
+ content: "\f015";
2358
+ }
2359
+
2360
+ .fa-hooli:before {
2361
+ content: "\f427";
2362
+ }
2363
+
2364
+ .fa-hornbill:before {
2365
+ content: "\f592";
2366
+ }
2367
+
2368
+ .fa-hospital:before {
2369
+ content: "\f0f8";
2370
+ }
2371
+
2372
+ .fa-hospital-alt:before {
2373
+ content: "\f47d";
2374
+ }
2375
+
2376
+ .fa-hospital-symbol:before {
2377
+ content: "\f47e";
2378
+ }
2379
+
2380
+ .fa-hot-tub:before {
2381
+ content: "\f593";
2382
+ }
2383
+
2384
+ .fa-hotel:before {
2385
+ content: "\f594";
2386
+ }
2387
+
2388
+ .fa-hotjar:before {
2389
+ content: "\f3b1";
2390
+ }
2391
+
2392
+ .fa-hourglass:before {
2393
+ content: "\f254";
2394
+ }
2395
+
2396
+ .fa-hourglass-end:before {
2397
+ content: "\f253";
2398
+ }
2399
+
2400
+ .fa-hourglass-half:before {
2401
+ content: "\f252";
2402
+ }
2403
+
2404
+ .fa-hourglass-start:before {
2405
+ content: "\f251";
2406
+ }
2407
+
2408
+ .fa-houzz:before {
2409
+ content: "\f27c";
2410
+ }
2411
+
2412
+ .fa-html5:before {
2413
+ content: "\f13b";
2414
+ }
2415
+
2416
+ .fa-hubspot:before {
2417
+ content: "\f3b2";
2418
+ }
2419
+
2420
+ .fa-i-cursor:before {
2421
+ content: "\f246";
2422
+ }
2423
+
2424
+ .fa-id-badge:before {
2425
+ content: "\f2c1";
2426
+ }
2427
+
2428
+ .fa-id-card:before {
2429
+ content: "\f2c2";
2430
+ }
2431
+
2432
+ .fa-id-card-alt:before {
2433
+ content: "\f47f";
2434
+ }
2435
+
2436
+ .fa-image:before {
2437
+ content: "\f03e";
2438
+ }
2439
+
2440
+ .fa-images:before {
2441
+ content: "\f302";
2442
+ }
2443
+
2444
+ .fa-imdb:before {
2445
+ content: "\f2d8";
2446
+ }
2447
+
2448
+ .fa-inbox:before {
2449
+ content: "\f01c";
2450
+ }
2451
+
2452
+ .fa-indent:before {
2453
+ content: "\f03c";
2454
+ }
2455
+
2456
+ .fa-industry:before {
2457
+ content: "\f275";
2458
+ }
2459
+
2460
+ .fa-infinity:before {
2461
+ content: "\f534";
2462
+ }
2463
+
2464
+ .fa-info:before {
2465
+ content: "\f129";
2466
+ }
2467
+
2468
+ .fa-info-circle:before {
2469
+ content: "\f05a";
2470
+ }
2471
+
2472
+ .fa-instagram:before {
2473
+ content: "\f16d";
2474
+ }
2475
+
2476
+ .fa-internet-explorer:before {
2477
+ content: "\f26b";
2478
+ }
2479
+
2480
+ .fa-ioxhost:before {
2481
+ content: "\f208";
2482
+ }
2483
+
2484
+ .fa-italic:before {
2485
+ content: "\f033";
2486
+ }
2487
+
2488
+ .fa-itunes:before {
2489
+ content: "\f3b4";
2490
+ }
2491
+
2492
+ .fa-itunes-note:before {
2493
+ content: "\f3b5";
2494
+ }
2495
+
2496
+ .fa-java:before {
2497
+ content: "\f4e4";
2498
+ }
2499
+
2500
+ .fa-jedi-order:before {
2501
+ content: "\f50e";
2502
+ }
2503
+
2504
+ .fa-jenkins:before {
2505
+ content: "\f3b6";
2506
+ }
2507
+
2508
+ .fa-joget:before {
2509
+ content: "\f3b7";
2510
+ }
2511
+
2512
+ .fa-joint:before {
2513
+ content: "\f595";
2514
+ }
2515
+
2516
+ .fa-joomla:before {
2517
+ content: "\f1aa";
2518
+ }
2519
+
2520
+ .fa-js:before {
2521
+ content: "\f3b8";
2522
+ }
2523
+
2524
+ .fa-js-square:before {
2525
+ content: "\f3b9";
2526
+ }
2527
+
2528
+ .fa-jsfiddle:before {
2529
+ content: "\f1cc";
2530
+ }
2531
+
2532
+ .fa-kaggle:before {
2533
+ content: "\f5fa";
2534
+ }
2535
+
2536
+ .fa-key:before {
2537
+ content: "\f084";
2538
+ }
2539
+
2540
+ .fa-keybase:before {
2541
+ content: "\f4f5";
2542
+ }
2543
+
2544
+ .fa-keyboard:before {
2545
+ content: "\f11c";
2546
+ }
2547
+
2548
+ .fa-keycdn:before {
2549
+ content: "\f3ba";
2550
+ }
2551
+
2552
+ .fa-kickstarter:before {
2553
+ content: "\f3bb";
2554
+ }
2555
+
2556
+ .fa-kickstarter-k:before {
2557
+ content: "\f3bc";
2558
+ }
2559
+
2560
+ .fa-kiss:before {
2561
+ content: "\f596";
2562
+ }
2563
+
2564
+ .fa-kiss-beam:before {
2565
+ content: "\f597";
2566
+ }
2567
+
2568
+ .fa-kiss-wink-heart:before {
2569
+ content: "\f598";
2570
+ }
2571
+
2572
+ .fa-kiwi-bird:before {
2573
+ content: "\f535";
2574
+ }
2575
+
2576
+ .fa-korvue:before {
2577
+ content: "\f42f";
2578
+ }
2579
+
2580
+ .fa-language:before {
2581
+ content: "\f1ab";
2582
+ }
2583
+
2584
+ .fa-laptop:before {
2585
+ content: "\f109";
2586
+ }
2587
+
2588
+ .fa-laptop-code:before {
2589
+ content: "\f5fc";
2590
+ }
2591
+
2592
+ .fa-laravel:before {
2593
+ content: "\f3bd";
2594
+ }
2595
+
2596
+ .fa-lastfm:before {
2597
+ content: "\f202";
2598
+ }
2599
+
2600
+ .fa-lastfm-square:before {
2601
+ content: "\f203";
2602
+ }
2603
+
2604
+ .fa-laugh:before {
2605
+ content: "\f599";
2606
+ }
2607
+
2608
+ .fa-laugh-beam:before {
2609
+ content: "\f59a";
2610
+ }
2611
+
2612
+ .fa-laugh-squint:before {
2613
+ content: "\f59b";
2614
+ }
2615
+
2616
+ .fa-laugh-wink:before {
2617
+ content: "\f59c";
2618
+ }
2619
+
2620
+ .fa-layer-group:before {
2621
+ content: "\f5fd";
2622
+ }
2623
+
2624
+ .fa-leaf:before {
2625
+ content: "\f06c";
2626
+ }
2627
+
2628
+ .fa-leanpub:before {
2629
+ content: "\f212";
2630
+ }
2631
+
2632
+ .fa-lemon:before {
2633
+ content: "\f094";
2634
+ }
2635
+
2636
+ .fa-less:before {
2637
+ content: "\f41d";
2638
+ }
2639
+
2640
+ .fa-less-than:before {
2641
+ content: "\f536";
2642
+ }
2643
+
2644
+ .fa-less-than-equal:before {
2645
+ content: "\f537";
2646
+ }
2647
+
2648
+ .fa-level-down-alt:before {
2649
+ content: "\f3be";
2650
+ }
2651
+
2652
+ .fa-level-up-alt:before {
2653
+ content: "\f3bf";
2654
+ }
2655
+
2656
+ .fa-life-ring:before {
2657
+ content: "\f1cd";
2658
+ }
2659
+
2660
+ .fa-lightbulb:before {
2661
+ content: "\f0eb";
2662
+ }
2663
+
2664
+ .fa-line:before {
2665
+ content: "\f3c0";
2666
+ }
2667
+
2668
+ .fa-link:before {
2669
+ content: "\f0c1";
2670
+ }
2671
+
2672
+ .fa-linkedin:before {
2673
+ content: "\f08c";
2674
+ }
2675
+
2676
+ .fa-linkedin-in:before {
2677
+ content: "\f0e1";
2678
+ }
2679
+
2680
+ .fa-linode:before {
2681
+ content: "\f2b8";
2682
+ }
2683
+
2684
+ .fa-linux:before {
2685
+ content: "\f17c";
2686
+ }
2687
+
2688
+ .fa-lira-sign:before {
2689
+ content: "\f195";
2690
+ }
2691
+
2692
+ .fa-list:before {
2693
+ content: "\f03a";
2694
+ }
2695
+
2696
+ .fa-list-alt:before {
2697
+ content: "\f022";
2698
+ }
2699
+
2700
+ .fa-list-ol:before {
2701
+ content: "\f0cb";
2702
+ }
2703
+
2704
+ .fa-list-ul:before {
2705
+ content: "\f0ca";
2706
+ }
2707
+
2708
+ .fa-location-arrow:before {
2709
+ content: "\f124";
2710
+ }
2711
+
2712
+ .fa-lock:before {
2713
+ content: "\f023";
2714
+ }
2715
+
2716
+ .fa-lock-open:before {
2717
+ content: "\f3c1";
2718
+ }
2719
+
2720
+ .fa-long-arrow-alt-down:before {
2721
+ content: "\f309";
2722
+ }
2723
+
2724
+ .fa-long-arrow-alt-left:before {
2725
+ content: "\f30a";
2726
+ }
2727
+
2728
+ .fa-long-arrow-alt-right:before {
2729
+ content: "\f30b";
2730
+ }
2731
+
2732
+ .fa-long-arrow-alt-up:before {
2733
+ content: "\f30c";
2734
+ }
2735
+
2736
+ .fa-low-vision:before {
2737
+ content: "\f2a8";
2738
+ }
2739
+
2740
+ .fa-luggage-cart:before {
2741
+ content: "\f59d";
2742
+ }
2743
+
2744
+ .fa-lyft:before {
2745
+ content: "\f3c3";
2746
+ }
2747
+
2748
+ .fa-magento:before {
2749
+ content: "\f3c4";
2750
+ }
2751
+
2752
+ .fa-magic:before {
2753
+ content: "\f0d0";
2754
+ }
2755
+
2756
+ .fa-magnet:before {
2757
+ content: "\f076";
2758
+ }
2759
+
2760
+ .fa-mailchimp:before {
2761
+ content: "\f59e";
2762
+ }
2763
+
2764
+ .fa-male:before {
2765
+ content: "\f183";
2766
+ }
2767
+
2768
+ .fa-mandalorian:before {
2769
+ content: "\f50f";
2770
+ }
2771
+
2772
+ .fa-map:before {
2773
+ content: "\f279";
2774
+ }
2775
+
2776
+ .fa-map-marked:before {
2777
+ content: "\f59f";
2778
+ }
2779
+
2780
+ .fa-map-marked-alt:before {
2781
+ content: "\f5a0";
2782
+ }
2783
+
2784
+ .fa-map-marker:before {
2785
+ content: "\f041";
2786
+ }
2787
+
2788
+ .fa-map-marker-alt:before {
2789
+ content: "\f3c5";
2790
+ }
2791
+
2792
+ .fa-map-pin:before {
2793
+ content: "\f276";
2794
+ }
2795
+
2796
+ .fa-map-signs:before {
2797
+ content: "\f277";
2798
+ }
2799
+
2800
+ .fa-markdown:before {
2801
+ content: "\f60f";
2802
+ }
2803
+
2804
+ .fa-marker:before {
2805
+ content: "\f5a1";
2806
+ }
2807
+
2808
+ .fa-mars:before {
2809
+ content: "\f222";
2810
+ }
2811
+
2812
+ .fa-mars-double:before {
2813
+ content: "\f227";
2814
+ }
2815
+
2816
+ .fa-mars-stroke:before {
2817
+ content: "\f229";
2818
+ }
2819
+
2820
+ .fa-mars-stroke-h:before {
2821
+ content: "\f22b";
2822
+ }
2823
+
2824
+ .fa-mars-stroke-v:before {
2825
+ content: "\f22a";
2826
+ }
2827
+
2828
+ .fa-mastodon:before {
2829
+ content: "\f4f6";
2830
+ }
2831
+
2832
+ .fa-maxcdn:before {
2833
+ content: "\f136";
2834
+ }
2835
+
2836
+ .fa-medal:before {
2837
+ content: "\f5a2";
2838
+ }
2839
+
2840
+ .fa-medapps:before {
2841
+ content: "\f3c6";
2842
+ }
2843
+
2844
+ .fa-medium:before {
2845
+ content: "\f23a";
2846
+ }
2847
+
2848
+ .fa-medium-m:before {
2849
+ content: "\f3c7";
2850
+ }
2851
+
2852
+ .fa-medkit:before {
2853
+ content: "\f0fa";
2854
+ }
2855
+
2856
+ .fa-medrt:before {
2857
+ content: "\f3c8";
2858
+ }
2859
+
2860
+ .fa-meetup:before {
2861
+ content: "\f2e0";
2862
+ }
2863
+
2864
+ .fa-megaport:before {
2865
+ content: "\f5a3";
2866
+ }
2867
+
2868
+ .fa-meh:before {
2869
+ content: "\f11a";
2870
+ }
2871
+
2872
+ .fa-meh-blank:before {
2873
+ content: "\f5a4";
2874
+ }
2875
+
2876
+ .fa-meh-rolling-eyes:before {
2877
+ content: "\f5a5";
2878
+ }
2879
+
2880
+ .fa-memory:before {
2881
+ content: "\f538";
2882
+ }
2883
+
2884
+ .fa-mercury:before {
2885
+ content: "\f223";
2886
+ }
2887
+
2888
+ .fa-microchip:before {
2889
+ content: "\f2db";
2890
+ }
2891
+
2892
+ .fa-microphone:before {
2893
+ content: "\f130";
2894
+ }
2895
+
2896
+ .fa-microphone-alt:before {
2897
+ content: "\f3c9";
2898
+ }
2899
+
2900
+ .fa-microphone-alt-slash:before {
2901
+ content: "\f539";
2902
+ }
2903
+
2904
+ .fa-microphone-slash:before {
2905
+ content: "\f131";
2906
+ }
2907
+
2908
+ .fa-microscope:before {
2909
+ content: "\f610";
2910
+ }
2911
+
2912
+ .fa-microsoft:before {
2913
+ content: "\f3ca";
2914
+ }
2915
+
2916
+ .fa-minus:before {
2917
+ content: "\f068";
2918
+ }
2919
+
2920
+ .fa-minus-circle:before {
2921
+ content: "\f056";
2922
+ }
2923
+
2924
+ .fa-minus-square:before {
2925
+ content: "\f146";
2926
+ }
2927
+
2928
+ .fa-mix:before {
2929
+ content: "\f3cb";
2930
+ }
2931
+
2932
+ .fa-mixcloud:before {
2933
+ content: "\f289";
2934
+ }
2935
+
2936
+ .fa-mizuni:before {
2937
+ content: "\f3cc";
2938
+ }
2939
+
2940
+ .fa-mobile:before {
2941
+ content: "\f10b";
2942
+ }
2943
+
2944
+ .fa-mobile-alt:before {
2945
+ content: "\f3cd";
2946
+ }
2947
+
2948
+ .fa-modx:before {
2949
+ content: "\f285";
2950
+ }
2951
+
2952
+ .fa-monero:before {
2953
+ content: "\f3d0";
2954
+ }
2955
+
2956
+ .fa-money-bill:before {
2957
+ content: "\f0d6";
2958
+ }
2959
+
2960
+ .fa-money-bill-alt:before {
2961
+ content: "\f3d1";
2962
+ }
2963
+
2964
+ .fa-money-bill-wave:before {
2965
+ content: "\f53a";
2966
+ }
2967
+
2968
+ .fa-money-bill-wave-alt:before {
2969
+ content: "\f53b";
2970
+ }
2971
+
2972
+ .fa-money-check:before {
2973
+ content: "\f53c";
2974
+ }
2975
+
2976
+ .fa-money-check-alt:before {
2977
+ content: "\f53d";
2978
+ }
2979
+
2980
+ .fa-monument:before {
2981
+ content: "\f5a6";
2982
+ }
2983
+
2984
+ .fa-moon:before {
2985
+ content: "\f186";
2986
+ }
2987
+
2988
+ .fa-mortar-pestle:before {
2989
+ content: "\f5a7";
2990
+ }
2991
+
2992
+ .fa-motorcycle:before {
2993
+ content: "\f21c";
2994
+ }
2995
+
2996
+ .fa-mouse-pointer:before {
2997
+ content: "\f245";
2998
+ }
2999
+
3000
+ .fa-music:before {
3001
+ content: "\f001";
3002
+ }
3003
+
3004
+ .fa-napster:before {
3005
+ content: "\f3d2";
3006
+ }
3007
+
3008
+ .fa-neos:before {
3009
+ content: "\f612";
3010
+ }
3011
+
3012
+ .fa-neuter:before {
3013
+ content: "\f22c";
3014
+ }
3015
+
3016
+ .fa-newspaper:before {
3017
+ content: "\f1ea";
3018
+ }
3019
+
3020
+ .fa-nimblr:before {
3021
+ content: "\f5a8";
3022
+ }
3023
+
3024
+ .fa-nintendo-switch:before {
3025
+ content: "\f418";
3026
+ }
3027
+
3028
+ .fa-node:before {
3029
+ content: "\f419";
3030
+ }
3031
+
3032
+ .fa-node-js:before {
3033
+ content: "\f3d3";
3034
+ }
3035
+
3036
+ .fa-not-equal:before {
3037
+ content: "\f53e";
3038
+ }
3039
+
3040
+ .fa-notes-medical:before {
3041
+ content: "\f481";
3042
+ }
3043
+
3044
+ .fa-npm:before {
3045
+ content: "\f3d4";
3046
+ }
3047
+
3048
+ .fa-ns8:before {
3049
+ content: "\f3d5";
3050
+ }
3051
+
3052
+ .fa-nutritionix:before {
3053
+ content: "\f3d6";
3054
+ }
3055
+
3056
+ .fa-object-group:before {
3057
+ content: "\f247";
3058
+ }
3059
+
3060
+ .fa-object-ungroup:before {
3061
+ content: "\f248";
3062
+ }
3063
+
3064
+ .fa-odnoklassniki:before {
3065
+ content: "\f263";
3066
+ }
3067
+
3068
+ .fa-odnoklassniki-square:before {
3069
+ content: "\f264";
3070
+ }
3071
+
3072
+ .fa-oil-can:before {
3073
+ content: "\f613";
3074
+ }
3075
+
3076
+ .fa-old-republic:before {
3077
+ content: "\f510";
3078
+ }
3079
+
3080
+ .fa-opencart:before {
3081
+ content: "\f23d";
3082
+ }
3083
+
3084
+ .fa-openid:before {
3085
+ content: "\f19b";
3086
+ }
3087
+
3088
+ .fa-opera:before {
3089
+ content: "\f26a";
3090
+ }
3091
+
3092
+ .fa-optin-monster:before {
3093
+ content: "\f23c";
3094
+ }
3095
+
3096
+ .fa-osi:before {
3097
+ content: "\f41a";
3098
+ }
3099
+
3100
+ .fa-outdent:before {
3101
+ content: "\f03b";
3102
+ }
3103
+
3104
+ .fa-page4:before {
3105
+ content: "\f3d7";
3106
+ }
3107
+
3108
+ .fa-pagelines:before {
3109
+ content: "\f18c";
3110
+ }
3111
+
3112
+ .fa-paint-brush:before {
3113
+ content: "\f1fc";
3114
+ }
3115
+
3116
+ .fa-paint-roller:before {
3117
+ content: "\f5aa";
3118
+ }
3119
+
3120
+ .fa-palette:before {
3121
+ content: "\f53f";
3122
+ }
3123
+
3124
+ .fa-palfed:before {
3125
+ content: "\f3d8";
3126
+ }
3127
+
3128
+ .fa-pallet:before {
3129
+ content: "\f482";
3130
+ }
3131
+
3132
+ .fa-paper-plane:before {
3133
+ content: "\f1d8";
3134
+ }
3135
+
3136
+ .fa-paperclip:before {
3137
+ content: "\f0c6";
3138
+ }
3139
+
3140
+ .fa-parachute-box:before {
3141
+ content: "\f4cd";
3142
+ }
3143
+
3144
+ .fa-paragraph:before {
3145
+ content: "\f1dd";
3146
+ }
3147
+
3148
+ .fa-parking:before {
3149
+ content: "\f540";
3150
+ }
3151
+
3152
+ .fa-passport:before {
3153
+ content: "\f5ab";
3154
+ }
3155
+
3156
+ .fa-paste:before {
3157
+ content: "\f0ea";
3158
+ }
3159
+
3160
+ .fa-patreon:before {
3161
+ content: "\f3d9";
3162
+ }
3163
+
3164
+ .fa-pause:before {
3165
+ content: "\f04c";
3166
+ }
3167
+
3168
+ .fa-pause-circle:before {
3169
+ content: "\f28b";
3170
+ }
3171
+
3172
+ .fa-paw:before {
3173
+ content: "\f1b0";
3174
+ }
3175
+
3176
+ .fa-paypal:before {
3177
+ content: "\f1ed";
3178
+ }
3179
+
3180
+ .fa-pen:before {
3181
+ content: "\f304";
3182
+ }
3183
+
3184
+ .fa-pen-alt:before {
3185
+ content: "\f305";
3186
+ }
3187
+
3188
+ .fa-pen-fancy:before {
3189
+ content: "\f5ac";
3190
+ }
3191
+
3192
+ .fa-pen-nib:before {
3193
+ content: "\f5ad";
3194
+ }
3195
+
3196
+ .fa-pen-square:before {
3197
+ content: "\f14b";
3198
+ }
3199
+
3200
+ .fa-pencil-alt:before {
3201
+ content: "\f303";
3202
+ }
3203
+
3204
+ .fa-pencil-ruler:before {
3205
+ content: "\f5ae";
3206
+ }
3207
+
3208
+ .fa-people-carry:before {
3209
+ content: "\f4ce";
3210
+ }
3211
+
3212
+ .fa-percent:before {
3213
+ content: "\f295";
3214
+ }
3215
+
3216
+ .fa-percentage:before {
3217
+ content: "\f541";
3218
+ }
3219
+
3220
+ .fa-periscope:before {
3221
+ content: "\f3da";
3222
+ }
3223
+
3224
+ .fa-phabricator:before {
3225
+ content: "\f3db";
3226
+ }
3227
+
3228
+ .fa-phoenix-framework:before {
3229
+ content: "\f3dc";
3230
+ }
3231
+
3232
+ .fa-phoenix-squadron:before {
3233
+ content: "\f511";
3234
+ }
3235
+
3236
+ .fa-phone:before {
3237
+ content: "\f095";
3238
+ }
3239
+
3240
+ .fa-phone-slash:before {
3241
+ content: "\f3dd";
3242
+ }
3243
+
3244
+ .fa-phone-square:before {
3245
+ content: "\f098";
3246
+ }
3247
+
3248
+ .fa-phone-volume:before {
3249
+ content: "\f2a0";
3250
+ }
3251
+
3252
+ .fa-php:before {
3253
+ content: "\f457";
3254
+ }
3255
+
3256
+ .fa-pied-piper:before {
3257
+ content: "\f2ae";
3258
+ }
3259
+
3260
+ .fa-pied-piper-alt:before {
3261
+ content: "\f1a8";
3262
+ }
3263
+
3264
+ .fa-pied-piper-hat:before {
3265
+ content: "\f4e5";
3266
+ }
3267
+
3268
+ .fa-pied-piper-pp:before {
3269
+ content: "\f1a7";
3270
+ }
3271
+
3272
+ .fa-piggy-bank:before {
3273
+ content: "\f4d3";
3274
+ }
3275
+
3276
+ .fa-pills:before {
3277
+ content: "\f484";
3278
+ }
3279
+
3280
+ .fa-pinterest:before {
3281
+ content: "\f0d2";
3282
+ }
3283
+
3284
+ .fa-pinterest-p:before {
3285
+ content: "\f231";
3286
+ }
3287
+
3288
+ .fa-pinterest-square:before {
3289
+ content: "\f0d3";
3290
+ }
3291
+
3292
+ .fa-plane:before {
3293
+ content: "\f072";
3294
+ }
3295
+
3296
+ .fa-plane-arrival:before {
3297
+ content: "\f5af";
3298
+ }
3299
+
3300
+ .fa-plane-departure:before {
3301
+ content: "\f5b0";
3302
+ }
3303
+
3304
+ .fa-play:before {
3305
+ content: "\f04b";
3306
+ }
3307
+
3308
+ .fa-play-circle:before {
3309
+ content: "\f144";
3310
+ }
3311
+
3312
+ .fa-playstation:before {
3313
+ content: "\f3df";
3314
+ }
3315
+
3316
+ .fa-plug:before {
3317
+ content: "\f1e6";
3318
+ }
3319
+
3320
+ .fa-plus:before {
3321
+ content: "\f067";
3322
+ }
3323
+
3324
+ .fa-plus-circle:before {
3325
+ content: "\f055";
3326
+ }
3327
+
3328
+ .fa-plus-square:before {
3329
+ content: "\f0fe";
3330
+ }
3331
+
3332
+ .fa-podcast:before {
3333
+ content: "\f2ce";
3334
+ }
3335
+
3336
+ .fa-poo:before {
3337
+ content: "\f2fe";
3338
+ }
3339
+
3340
+ .fa-poop:before {
3341
+ content: "\f619";
3342
+ }
3343
+
3344
+ .fa-portrait:before {
3345
+ content: "\f3e0";
3346
+ }
3347
+
3348
+ .fa-pound-sign:before {
3349
+ content: "\f154";
3350
+ }
3351
+
3352
+ .fa-power-off:before {
3353
+ content: "\f011";
3354
+ }
3355
+
3356
+ .fa-prescription:before {
3357
+ content: "\f5b1";
3358
+ }
3359
+
3360
+ .fa-prescription-bottle:before {
3361
+ content: "\f485";
3362
+ }
3363
+
3364
+ .fa-prescription-bottle-alt:before {
3365
+ content: "\f486";
3366
+ }
3367
+
3368
+ .fa-print:before {
3369
+ content: "\f02f";
3370
+ }
3371
+
3372
+ .fa-procedures:before {
3373
+ content: "\f487";
3374
+ }
3375
+
3376
+ .fa-product-hunt:before {
3377
+ content: "\f288";
3378
+ }
3379
+
3380
+ .fa-project-diagram:before {
3381
+ content: "\f542";
3382
+ }
3383
+
3384
+ .fa-pushed:before {
3385
+ content: "\f3e1";
3386
+ }
3387
+
3388
+ .fa-puzzle-piece:before {
3389
+ content: "\f12e";
3390
+ }
3391
+
3392
+ .fa-python:before {
3393
+ content: "\f3e2";
3394
+ }
3395
+
3396
+ .fa-qq:before {
3397
+ content: "\f1d6";
3398
+ }
3399
+
3400
+ .fa-qrcode:before {
3401
+ content: "\f029";
3402
+ }
3403
+
3404
+ .fa-question:before {
3405
+ content: "\f128";
3406
+ }
3407
+
3408
+ .fa-question-circle:before {
3409
+ content: "\f059";
3410
+ }
3411
+
3412
+ .fa-quidditch:before {
3413
+ content: "\f458";
3414
+ }
3415
+
3416
+ .fa-quinscape:before {
3417
+ content: "\f459";
3418
+ }
3419
+
3420
+ .fa-quora:before {
3421
+ content: "\f2c4";
3422
+ }
3423
+
3424
+ .fa-quote-left:before {
3425
+ content: "\f10d";
3426
+ }
3427
+
3428
+ .fa-quote-right:before {
3429
+ content: "\f10e";
3430
+ }
3431
+
3432
+ .fa-r-project:before {
3433
+ content: "\f4f7";
3434
+ }
3435
+
3436
+ .fa-random:before {
3437
+ content: "\f074";
3438
+ }
3439
+
3440
+ .fa-ravelry:before {
3441
+ content: "\f2d9";
3442
+ }
3443
+
3444
+ .fa-react:before {
3445
+ content: "\f41b";
3446
+ }
3447
+
3448
+ .fa-readme:before {
3449
+ content: "\f4d5";
3450
+ }
3451
+
3452
+ .fa-rebel:before {
3453
+ content: "\f1d0";
3454
+ }
3455
+
3456
+ .fa-receipt:before {
3457
+ content: "\f543";
3458
+ }
3459
+
3460
+ .fa-recycle:before {
3461
+ content: "\f1b8";
3462
+ }
3463
+
3464
+ .fa-red-river:before {
3465
+ content: "\f3e3";
3466
+ }
3467
+
3468
+ .fa-reddit:before {
3469
+ content: "\f1a1";
3470
+ }
3471
+
3472
+ .fa-reddit-alien:before {
3473
+ content: "\f281";
3474
+ }
3475
+
3476
+ .fa-reddit-square:before {
3477
+ content: "\f1a2";
3478
+ }
3479
+
3480
+ .fa-redo:before {
3481
+ content: "\f01e";
3482
+ }
3483
+
3484
+ .fa-redo-alt:before {
3485
+ content: "\f2f9";
3486
+ }
3487
+
3488
+ .fa-registered:before {
3489
+ content: "\f25d";
3490
+ }
3491
+
3492
+ .fa-rendact:before {
3493
+ content: "\f3e4";
3494
+ }
3495
+
3496
+ .fa-renren:before {
3497
+ content: "\f18b";
3498
+ }
3499
+
3500
+ .fa-reply:before {
3501
+ content: "\f3e5";
3502
+ }
3503
+
3504
+ .fa-reply-all:before {
3505
+ content: "\f122";
3506
+ }
3507
+
3508
+ .fa-replyd:before {
3509
+ content: "\f3e6";
3510
+ }
3511
+
3512
+ .fa-researchgate:before {
3513
+ content: "\f4f8";
3514
+ }
3515
+
3516
+ .fa-resolving:before {
3517
+ content: "\f3e7";
3518
+ }
3519
+
3520
+ .fa-retweet:before {
3521
+ content: "\f079";
3522
+ }
3523
+
3524
+ .fa-rev:before {
3525
+ content: "\f5b2";
3526
+ }
3527
+
3528
+ .fa-ribbon:before {
3529
+ content: "\f4d6";
3530
+ }
3531
+
3532
+ .fa-road:before {
3533
+ content: "\f018";
3534
+ }
3535
+
3536
+ .fa-robot:before {
3537
+ content: "\f544";
3538
+ }
3539
+
3540
+ .fa-rocket:before {
3541
+ content: "\f135";
3542
+ }
3543
+
3544
+ .fa-rocketchat:before {
3545
+ content: "\f3e8";
3546
+ }
3547
+
3548
+ .fa-rockrms:before {
3549
+ content: "\f3e9";
3550
+ }
3551
+
3552
+ .fa-route:before {
3553
+ content: "\f4d7";
3554
+ }
3555
+
3556
+ .fa-rss:before {
3557
+ content: "\f09e";
3558
+ }
3559
+
3560
+ .fa-rss-square:before {
3561
+ content: "\f143";
3562
+ }
3563
+
3564
+ .fa-ruble-sign:before {
3565
+ content: "\f158";
3566
+ }
3567
+
3568
+ .fa-ruler:before {
3569
+ content: "\f545";
3570
+ }
3571
+
3572
+ .fa-ruler-combined:before {
3573
+ content: "\f546";
3574
+ }
3575
+
3576
+ .fa-ruler-horizontal:before {
3577
+ content: "\f547";
3578
+ }
3579
+
3580
+ .fa-ruler-vertical:before {
3581
+ content: "\f548";
3582
+ }
3583
+
3584
+ .fa-rupee-sign:before {
3585
+ content: "\f156";
3586
+ }
3587
+
3588
+ .fa-sad-cry:before {
3589
+ content: "\f5b3";
3590
+ }
3591
+
3592
+ .fa-sad-tear:before {
3593
+ content: "\f5b4";
3594
+ }
3595
+
3596
+ .fa-safari:before {
3597
+ content: "\f267";
3598
+ }
3599
+
3600
+ .fa-sass:before {
3601
+ content: "\f41e";
3602
+ }
3603
+
3604
+ .fa-save:before {
3605
+ content: "\f0c7";
3606
+ }
3607
+
3608
+ .fa-schlix:before {
3609
+ content: "\f3ea";
3610
+ }
3611
+
3612
+ .fa-school:before {
3613
+ content: "\f549";
3614
+ }
3615
+
3616
+ .fa-screwdriver:before {
3617
+ content: "\f54a";
3618
+ }
3619
+
3620
+ .fa-scribd:before {
3621
+ content: "\f28a";
3622
+ }
3623
+
3624
+ .fa-search:before {
3625
+ content: "\f002";
3626
+ }
3627
+
3628
+ .fa-search-minus:before {
3629
+ content: "\f010";
3630
+ }
3631
+
3632
+ .fa-search-plus:before {
3633
+ content: "\f00e";
3634
+ }
3635
+
3636
+ .fa-searchengin:before {
3637
+ content: "\f3eb";
3638
+ }
3639
+
3640
+ .fa-seedling:before {
3641
+ content: "\f4d8";
3642
+ }
3643
+
3644
+ .fa-sellcast:before {
3645
+ content: "\f2da";
3646
+ }
3647
+
3648
+ .fa-sellsy:before {
3649
+ content: "\f213";
3650
+ }
3651
+
3652
+ .fa-server:before {
3653
+ content: "\f233";
3654
+ }
3655
+
3656
+ .fa-servicestack:before {
3657
+ content: "\f3ec";
3658
+ }
3659
+
3660
+ .fa-shapes:before {
3661
+ content: "\f61f";
3662
+ }
3663
+
3664
+ .fa-share:before {
3665
+ content: "\f064";
3666
+ }
3667
+
3668
+ .fa-share-alt:before {
3669
+ content: "\f1e0";
3670
+ }
3671
+
3672
+ .fa-share-alt-square:before {
3673
+ content: "\f1e1";
3674
+ }
3675
+
3676
+ .fa-share-square:before {
3677
+ content: "\f14d";
3678
+ }
3679
+
3680
+ .fa-shekel-sign:before {
3681
+ content: "\f20b";
3682
+ }
3683
+
3684
+ .fa-shield-alt:before {
3685
+ content: "\f3ed";
3686
+ }
3687
+
3688
+ .fa-ship:before {
3689
+ content: "\f21a";
3690
+ }
3691
+
3692
+ .fa-shipping-fast:before {
3693
+ content: "\f48b";
3694
+ }
3695
+
3696
+ .fa-shirtsinbulk:before {
3697
+ content: "\f214";
3698
+ }
3699
+
3700
+ .fa-shoe-prints:before {
3701
+ content: "\f54b";
3702
+ }
3703
+
3704
+ .fa-shopping-bag:before {
3705
+ content: "\f290";
3706
+ }
3707
+
3708
+ .fa-shopping-basket:before {
3709
+ content: "\f291";
3710
+ }
3711
+
3712
+ .fa-shopping-cart:before {
3713
+ content: "\f07a";
3714
+ }
3715
+
3716
+ .fa-shopware:before {
3717
+ content: "\f5b5";
3718
+ }
3719
+
3720
+ .fa-shower:before {
3721
+ content: "\f2cc";
3722
+ }
3723
+
3724
+ .fa-shuttle-van:before {
3725
+ content: "\f5b6";
3726
+ }
3727
+
3728
+ .fa-sign:before {
3729
+ content: "\f4d9";
3730
+ }
3731
+
3732
+ .fa-sign-in-alt:before {
3733
+ content: "\f2f6";
3734
+ }
3735
+
3736
+ .fa-sign-language:before {
3737
+ content: "\f2a7";
3738
+ }
3739
+
3740
+ .fa-sign-out-alt:before {
3741
+ content: "\f2f5";
3742
+ }
3743
+
3744
+ .fa-signal:before {
3745
+ content: "\f012";
3746
+ }
3747
+
3748
+ .fa-signature:before {
3749
+ content: "\f5b7";
3750
+ }
3751
+
3752
+ .fa-simplybuilt:before {
3753
+ content: "\f215";
3754
+ }
3755
+
3756
+ .fa-sistrix:before {
3757
+ content: "\f3ee";
3758
+ }
3759
+
3760
+ .fa-sitemap:before {
3761
+ content: "\f0e8";
3762
+ }
3763
+
3764
+ .fa-sith:before {
3765
+ content: "\f512";
3766
+ }
3767
+
3768
+ .fa-skull:before {
3769
+ content: "\f54c";
3770
+ }
3771
+
3772
+ .fa-skyatlas:before {
3773
+ content: "\f216";
3774
+ }
3775
+
3776
+ .fa-skype:before {
3777
+ content: "\f17e";
3778
+ }
3779
+
3780
+ .fa-slack:before {
3781
+ content: "\f198";
3782
+ }
3783
+
3784
+ .fa-slack-hash:before {
3785
+ content: "\f3ef";
3786
+ }
3787
+
3788
+ .fa-sliders-h:before {
3789
+ content: "\f1de";
3790
+ }
3791
+
3792
+ .fa-slideshare:before {
3793
+ content: "\f1e7";
3794
+ }
3795
+
3796
+ .fa-smile:before {
3797
+ content: "\f118";
3798
+ }
3799
+
3800
+ .fa-smile-beam:before {
3801
+ content: "\f5b8";
3802
+ }
3803
+
3804
+ .fa-smile-wink:before {
3805
+ content: "\f4da";
3806
+ }
3807
+
3808
+ .fa-smoking:before {
3809
+ content: "\f48d";
3810
+ }
3811
+
3812
+ .fa-smoking-ban:before {
3813
+ content: "\f54d";
3814
+ }
3815
+
3816
+ .fa-snapchat:before {
3817
+ content: "\f2ab";
3818
+ }
3819
+
3820
+ .fa-snapchat-ghost:before {
3821
+ content: "\f2ac";
3822
+ }
3823
+
3824
+ .fa-snapchat-square:before {
3825
+ content: "\f2ad";
3826
+ }
3827
+
3828
+ .fa-snowflake:before {
3829
+ content: "\f2dc";
3830
+ }
3831
+
3832
+ .fa-solar-panel:before {
3833
+ content: "\f5ba";
3834
+ }
3835
+
3836
+ .fa-sort:before {
3837
+ content: "\f0dc";
3838
+ }
3839
+
3840
+ .fa-sort-alpha-down:before {
3841
+ content: "\f15d";
3842
+ }
3843
+
3844
+ .fa-sort-alpha-up:before {
3845
+ content: "\f15e";
3846
+ }
3847
+
3848
+ .fa-sort-amount-down:before {
3849
+ content: "\f160";
3850
+ }
3851
+
3852
+ .fa-sort-amount-up:before {
3853
+ content: "\f161";
3854
+ }
3855
+
3856
+ .fa-sort-down:before {
3857
+ content: "\f0dd";
3858
+ }
3859
+
3860
+ .fa-sort-numeric-down:before {
3861
+ content: "\f162";
3862
+ }
3863
+
3864
+ .fa-sort-numeric-up:before {
3865
+ content: "\f163";
3866
+ }
3867
+
3868
+ .fa-sort-up:before {
3869
+ content: "\f0de";
3870
+ }
3871
+
3872
+ .fa-soundcloud:before {
3873
+ content: "\f1be";
3874
+ }
3875
+
3876
+ .fa-spa:before {
3877
+ content: "\f5bb";
3878
+ }
3879
+
3880
+ .fa-space-shuttle:before {
3881
+ content: "\f197";
3882
+ }
3883
+
3884
+ .fa-speakap:before {
3885
+ content: "\f3f3";
3886
+ }
3887
+
3888
+ .fa-spinner:before {
3889
+ content: "\f110";
3890
+ }
3891
+
3892
+ .fa-splotch:before {
3893
+ content: "\f5bc";
3894
+ }
3895
+
3896
+ .fa-spotify:before {
3897
+ content: "\f1bc";
3898
+ }
3899
+
3900
+ .fa-spray-can:before {
3901
+ content: "\f5bd";
3902
+ }
3903
+
3904
+ .fa-square:before {
3905
+ content: "\f0c8";
3906
+ }
3907
+
3908
+ .fa-square-full:before {
3909
+ content: "\f45c";
3910
+ }
3911
+
3912
+ .fa-squarespace:before {
3913
+ content: "\f5be";
3914
+ }
3915
+
3916
+ .fa-stack-exchange:before {
3917
+ content: "\f18d";
3918
+ }
3919
+
3920
+ .fa-stack-overflow:before {
3921
+ content: "\f16c";
3922
+ }
3923
+
3924
+ .fa-stamp:before {
3925
+ content: "\f5bf";
3926
+ }
3927
+
3928
+ .fa-star:before {
3929
+ content: "\f005";
3930
+ }
3931
+
3932
+ .fa-star-half:before {
3933
+ content: "\f089";
3934
+ }
3935
+
3936
+ .fa-star-half-alt:before {
3937
+ content: "\f5c0";
3938
+ }
3939
+
3940
+ .fa-star-of-life:before {
3941
+ content: "\f621";
3942
+ }
3943
+
3944
+ .fa-staylinked:before {
3945
+ content: "\f3f5";
3946
+ }
3947
+
3948
+ .fa-steam:before {
3949
+ content: "\f1b6";
3950
+ }
3951
+
3952
+ .fa-steam-square:before {
3953
+ content: "\f1b7";
3954
+ }
3955
+
3956
+ .fa-steam-symbol:before {
3957
+ content: "\f3f6";
3958
+ }
3959
+
3960
+ .fa-step-backward:before {
3961
+ content: "\f048";
3962
+ }
3963
+
3964
+ .fa-step-forward:before {
3965
+ content: "\f051";
3966
+ }
3967
+
3968
+ .fa-stethoscope:before {
3969
+ content: "\f0f1";
3970
+ }
3971
+
3972
+ .fa-sticker-mule:before {
3973
+ content: "\f3f7";
3974
+ }
3975
+
3976
+ .fa-sticky-note:before {
3977
+ content: "\f249";
3978
+ }
3979
+
3980
+ .fa-stop:before {
3981
+ content: "\f04d";
3982
+ }
3983
+
3984
+ .fa-stop-circle:before {
3985
+ content: "\f28d";
3986
+ }
3987
+
3988
+ .fa-stopwatch:before {
3989
+ content: "\f2f2";
3990
+ }
3991
+
3992
+ .fa-store:before {
3993
+ content: "\f54e";
3994
+ }
3995
+
3996
+ .fa-store-alt:before {
3997
+ content: "\f54f";
3998
+ }
3999
+
4000
+ .fa-strava:before {
4001
+ content: "\f428";
4002
+ }
4003
+
4004
+ .fa-stream:before {
4005
+ content: "\f550";
4006
+ }
4007
+
4008
+ .fa-street-view:before {
4009
+ content: "\f21d";
4010
+ }
4011
+
4012
+ .fa-strikethrough:before {
4013
+ content: "\f0cc";
4014
+ }
4015
+
4016
+ .fa-stripe:before {
4017
+ content: "\f429";
4018
+ }
4019
+
4020
+ .fa-stripe-s:before {
4021
+ content: "\f42a";
4022
+ }
4023
+
4024
+ .fa-stroopwafel:before {
4025
+ content: "\f551";
4026
+ }
4027
+
4028
+ .fa-studiovinari:before {
4029
+ content: "\f3f8";
4030
+ }
4031
+
4032
+ .fa-stumbleupon:before {
4033
+ content: "\f1a4";
4034
+ }
4035
+
4036
+ .fa-stumbleupon-circle:before {
4037
+ content: "\f1a3";
4038
+ }
4039
+
4040
+ .fa-subscript:before {
4041
+ content: "\f12c";
4042
+ }
4043
+
4044
+ .fa-subway:before {
4045
+ content: "\f239";
4046
+ }
4047
+
4048
+ .fa-suitcase:before {
4049
+ content: "\f0f2";
4050
+ }
4051
+
4052
+ .fa-suitcase-rolling:before {
4053
+ content: "\f5c1";
4054
+ }
4055
+
4056
+ .fa-sun:before {
4057
+ content: "\f185";
4058
+ }
4059
+
4060
+ .fa-superpowers:before {
4061
+ content: "\f2dd";
4062
+ }
4063
+
4064
+ .fa-superscript:before {
4065
+ content: "\f12b";
4066
+ }
4067
+
4068
+ .fa-supple:before {
4069
+ content: "\f3f9";
4070
+ }
4071
+
4072
+ .fa-surprise:before {
4073
+ content: "\f5c2";
4074
+ }
4075
+
4076
+ .fa-swatchbook:before {
4077
+ content: "\f5c3";
4078
+ }
4079
+
4080
+ .fa-swimmer:before {
4081
+ content: "\f5c4";
4082
+ }
4083
+
4084
+ .fa-swimming-pool:before {
4085
+ content: "\f5c5";
4086
+ }
4087
+
4088
+ .fa-sync:before {
4089
+ content: "\f021";
4090
+ }
4091
+
4092
+ .fa-sync-alt:before {
4093
+ content: "\f2f1";
4094
+ }
4095
+
4096
+ .fa-syringe:before {
4097
+ content: "\f48e";
4098
+ }
4099
+
4100
+ .fa-table:before {
4101
+ content: "\f0ce";
4102
+ }
4103
+
4104
+ .fa-table-tennis:before {
4105
+ content: "\f45d";
4106
+ }
4107
+
4108
+ .fa-tablet:before {
4109
+ content: "\f10a";
4110
+ }
4111
+
4112
+ .fa-tablet-alt:before {
4113
+ content: "\f3fa";
4114
+ }
4115
+
4116
+ .fa-tablets:before {
4117
+ content: "\f490";
4118
+ }
4119
+
4120
+ .fa-tachometer-alt:before {
4121
+ content: "\f3fd";
4122
+ }
4123
+
4124
+ .fa-tag:before {
4125
+ content: "\f02b";
4126
+ }
4127
+
4128
+ .fa-tags:before {
4129
+ content: "\f02c";
4130
+ }
4131
+
4132
+ .fa-tape:before {
4133
+ content: "\f4db";
4134
+ }
4135
+
4136
+ .fa-tasks:before {
4137
+ content: "\f0ae";
4138
+ }
4139
+
4140
+ .fa-taxi:before {
4141
+ content: "\f1ba";
4142
+ }
4143
+
4144
+ .fa-teamspeak:before {
4145
+ content: "\f4f9";
4146
+ }
4147
+
4148
+ .fa-teeth:before {
4149
+ content: "\f62e";
4150
+ }
4151
+
4152
+ .fa-teeth-open:before {
4153
+ content: "\f62f";
4154
+ }
4155
+
4156
+ .fa-telegram:before {
4157
+ content: "\f2c6";
4158
+ }
4159
+
4160
+ .fa-telegram-plane:before {
4161
+ content: "\f3fe";
4162
+ }
4163
+
4164
+ .fa-tencent-weibo:before {
4165
+ content: "\f1d5";
4166
+ }
4167
+
4168
+ .fa-terminal:before {
4169
+ content: "\f120";
4170
+ }
4171
+
4172
+ .fa-text-height:before {
4173
+ content: "\f034";
4174
+ }
4175
+
4176
+ .fa-text-width:before {
4177
+ content: "\f035";
4178
+ }
4179
+
4180
+ .fa-th:before {
4181
+ content: "\f00a";
4182
+ }
4183
+
4184
+ .fa-th-large:before {
4185
+ content: "\f009";
4186
+ }
4187
+
4188
+ .fa-th-list:before {
4189
+ content: "\f00b";
4190
+ }
4191
+
4192
+ .fa-theater-masks:before {
4193
+ content: "\f630";
4194
+ }
4195
+
4196
+ .fa-themeco:before {
4197
+ content: "\f5c6";
4198
+ }
4199
+
4200
+ .fa-themeisle:before {
4201
+ content: "\f2b2";
4202
+ }
4203
+
4204
+ .fa-thermometer:before {
4205
+ content: "\f491";
4206
+ }
4207
+
4208
+ .fa-thermometer-empty:before {
4209
+ content: "\f2cb";
4210
+ }
4211
+
4212
+ .fa-thermometer-full:before {
4213
+ content: "\f2c7";
4214
+ }
4215
+
4216
+ .fa-thermometer-half:before {
4217
+ content: "\f2c9";
4218
+ }
4219
+
4220
+ .fa-thermometer-quarter:before {
4221
+ content: "\f2ca";
4222
+ }
4223
+
4224
+ .fa-thermometer-three-quarters:before {
4225
+ content: "\f2c8";
4226
+ }
4227
+
4228
+ .fa-thumbs-down:before {
4229
+ content: "\f165";
4230
+ }
4231
+
4232
+ .fa-thumbs-up:before {
4233
+ content: "\f164";
4234
+ }
4235
+
4236
+ .fa-thumbtack:before {
4237
+ content: "\f08d";
4238
+ }
4239
+
4240
+ .fa-ticket-alt:before {
4241
+ content: "\f3ff";
4242
+ }
4243
+
4244
+ .fa-times:before {
4245
+ content: "\f00d";
4246
+ }
4247
+
4248
+ .fa-times-circle:before {
4249
+ content: "\f057";
4250
+ }
4251
+
4252
+ .fa-tint:before {
4253
+ content: "\f043";
4254
+ }
4255
+
4256
+ .fa-tint-slash:before {
4257
+ content: "\f5c7";
4258
+ }
4259
+
4260
+ .fa-tired:before {
4261
+ content: "\f5c8";
4262
+ }
4263
+
4264
+ .fa-toggle-off:before {
4265
+ content: "\f204";
4266
+ }
4267
+
4268
+ .fa-toggle-on:before {
4269
+ content: "\f205";
4270
+ }
4271
+
4272
+ .fa-toolbox:before {
4273
+ content: "\f552";
4274
+ }
4275
+
4276
+ .fa-tooth:before {
4277
+ content: "\f5c9";
4278
+ }
4279
+
4280
+ .fa-trade-federation:before {
4281
+ content: "\f513";
4282
+ }
4283
+
4284
+ .fa-trademark:before {
4285
+ content: "\f25c";
4286
+ }
4287
+
4288
+ .fa-traffic-light:before {
4289
+ content: "\f637";
4290
+ }
4291
+
4292
+ .fa-train:before {
4293
+ content: "\f238";
4294
+ }
4295
+
4296
+ .fa-transgender:before {
4297
+ content: "\f224";
4298
+ }
4299
+
4300
+ .fa-transgender-alt:before {
4301
+ content: "\f225";
4302
+ }
4303
+
4304
+ .fa-trash:before {
4305
+ content: "\f1f8";
4306
+ }
4307
+
4308
+ .fa-trash-alt:before {
4309
+ content: "\f2ed";
4310
+ }
4311
+
4312
+ .fa-tree:before {
4313
+ content: "\f1bb";
4314
+ }
4315
+
4316
+ .fa-trello:before {
4317
+ content: "\f181";
4318
+ }
4319
+
4320
+ .fa-tripadvisor:before {
4321
+ content: "\f262";
4322
+ }
4323
+
4324
+ .fa-trophy:before {
4325
+ content: "\f091";
4326
+ }
4327
+
4328
+ .fa-truck:before {
4329
+ content: "\f0d1";
4330
+ }
4331
+
4332
+ .fa-truck-loading:before {
4333
+ content: "\f4de";
4334
+ }
4335
+
4336
+ .fa-truck-monster:before {
4337
+ content: "\f63b";
4338
+ }
4339
+
4340
+ .fa-truck-moving:before {
4341
+ content: "\f4df";
4342
+ }
4343
+
4344
+ .fa-truck-pickup:before {
4345
+ content: "\f63c";
4346
+ }
4347
+
4348
+ .fa-tshirt:before {
4349
+ content: "\f553";
4350
+ }
4351
+
4352
+ .fa-tty:before {
4353
+ content: "\f1e4";
4354
+ }
4355
+
4356
+ .fa-tumblr:before {
4357
+ content: "\f173";
4358
+ }
4359
+
4360
+ .fa-tumblr-square:before {
4361
+ content: "\f174";
4362
+ }
4363
+
4364
+ .fa-tv:before {
4365
+ content: "\f26c";
4366
+ }
4367
+
4368
+ .fa-twitch:before {
4369
+ content: "\f1e8";
4370
+ }
4371
+
4372
+ .fa-twitter:before {
4373
+ content: "\f099";
4374
+ }
4375
+
4376
+ .fa-twitter-square:before {
4377
+ content: "\f081";
4378
+ }
4379
+
4380
+ .fa-typo3:before {
4381
+ content: "\f42b";
4382
+ }
4383
+
4384
+ .fa-uber:before {
4385
+ content: "\f402";
4386
+ }
4387
+
4388
+ .fa-uikit:before {
4389
+ content: "\f403";
4390
+ }
4391
+
4392
+ .fa-umbrella:before {
4393
+ content: "\f0e9";
4394
+ }
4395
+
4396
+ .fa-umbrella-beach:before {
4397
+ content: "\f5ca";
4398
+ }
4399
+
4400
+ .fa-underline:before {
4401
+ content: "\f0cd";
4402
+ }
4403
+
4404
+ .fa-undo:before {
4405
+ content: "\f0e2";
4406
+ }
4407
+
4408
+ .fa-undo-alt:before {
4409
+ content: "\f2ea";
4410
+ }
4411
+
4412
+ .fa-uniregistry:before {
4413
+ content: "\f404";
4414
+ }
4415
+
4416
+ .fa-universal-access:before {
4417
+ content: "\f29a";
4418
+ }
4419
+
4420
+ .fa-university:before {
4421
+ content: "\f19c";
4422
+ }
4423
+
4424
+ .fa-unlink:before {
4425
+ content: "\f127";
4426
+ }
4427
+
4428
+ .fa-unlock:before {
4429
+ content: "\f09c";
4430
+ }
4431
+
4432
+ .fa-unlock-alt:before {
4433
+ content: "\f13e";
4434
+ }
4435
+
4436
+ .fa-untappd:before {
4437
+ content: "\f405";
4438
+ }
4439
+
4440
+ .fa-upload:before {
4441
+ content: "\f093";
4442
+ }
4443
+
4444
+ .fa-usb:before {
4445
+ content: "\f287";
4446
+ }
4447
+
4448
+ .fa-user:before {
4449
+ content: "\f007";
4450
+ }
4451
+
4452
+ .fa-user-alt:before {
4453
+ content: "\f406";
4454
+ }
4455
+
4456
+ .fa-user-alt-slash:before {
4457
+ content: "\f4fa";
4458
+ }
4459
+
4460
+ .fa-user-astronaut:before {
4461
+ content: "\f4fb";
4462
+ }
4463
+
4464
+ .fa-user-check:before {
4465
+ content: "\f4fc";
4466
+ }
4467
+
4468
+ .fa-user-circle:before {
4469
+ content: "\f2bd";
4470
+ }
4471
+
4472
+ .fa-user-clock:before {
4473
+ content: "\f4fd";
4474
+ }
4475
+
4476
+ .fa-user-cog:before {
4477
+ content: "\f4fe";
4478
+ }
4479
+
4480
+ .fa-user-edit:before {
4481
+ content: "\f4ff";
4482
+ }
4483
+
4484
+ .fa-user-friends:before {
4485
+ content: "\f500";
4486
+ }
4487
+
4488
+ .fa-user-graduate:before {
4489
+ content: "\f501";
4490
+ }
4491
+
4492
+ .fa-user-lock:before {
4493
+ content: "\f502";
4494
+ }
4495
+
4496
+ .fa-user-md:before {
4497
+ content: "\f0f0";
4498
+ }
4499
+
4500
+ .fa-user-minus:before {
4501
+ content: "\f503";
4502
+ }
4503
+
4504
+ .fa-user-ninja:before {
4505
+ content: "\f504";
4506
+ }
4507
+
4508
+ .fa-user-plus:before {
4509
+ content: "\f234";
4510
+ }
4511
+
4512
+ .fa-user-secret:before {
4513
+ content: "\f21b";
4514
+ }
4515
+
4516
+ .fa-user-shield:before {
4517
+ content: "\f505";
4518
+ }
4519
+
4520
+ .fa-user-slash:before {
4521
+ content: "\f506";
4522
+ }
4523
+
4524
+ .fa-user-tag:before {
4525
+ content: "\f507";
4526
+ }
4527
+
4528
+ .fa-user-tie:before {
4529
+ content: "\f508";
4530
+ }
4531
+
4532
+ .fa-user-times:before {
4533
+ content: "\f235";
4534
+ }
4535
+
4536
+ .fa-users:before {
4537
+ content: "\f0c0";
4538
+ }
4539
+
4540
+ .fa-users-cog:before {
4541
+ content: "\f509";
4542
+ }
4543
+
4544
+ .fa-ussunnah:before {
4545
+ content: "\f407";
4546
+ }
4547
+
4548
+ .fa-utensil-spoon:before {
4549
+ content: "\f2e5";
4550
+ }
4551
+
4552
+ .fa-utensils:before {
4553
+ content: "\f2e7";
4554
+ }
4555
+
4556
+ .fa-vaadin:before {
4557
+ content: "\f408";
4558
+ }
4559
+
4560
+ .fa-vector-square:before {
4561
+ content: "\f5cb";
4562
+ }
4563
+
4564
+ .fa-venus:before {
4565
+ content: "\f221";
4566
+ }
4567
+
4568
+ .fa-venus-double:before {
4569
+ content: "\f226";
4570
+ }
4571
+
4572
+ .fa-venus-mars:before {
4573
+ content: "\f228";
4574
+ }
4575
+
4576
+ .fa-viacoin:before {
4577
+ content: "\f237";
4578
+ }
4579
+
4580
+ .fa-viadeo:before {
4581
+ content: "\f2a9";
4582
+ }
4583
+
4584
+ .fa-viadeo-square:before {
4585
+ content: "\f2aa";
4586
+ }
4587
+
4588
+ .fa-vial:before {
4589
+ content: "\f492";
4590
+ }
4591
+
4592
+ .fa-vials:before {
4593
+ content: "\f493";
4594
+ }
4595
+
4596
+ .fa-viber:before {
4597
+ content: "\f409";
4598
+ }
4599
+
4600
+ .fa-video:before {
4601
+ content: "\f03d";
4602
+ }
4603
+
4604
+ .fa-video-slash:before {
4605
+ content: "\f4e2";
4606
+ }
4607
+
4608
+ .fa-vimeo:before {
4609
+ content: "\f40a";
4610
+ }
4611
+
4612
+ .fa-vimeo-square:before {
4613
+ content: "\f194";
4614
+ }
4615
+
4616
+ .fa-vimeo-v:before {
4617
+ content: "\f27d";
4618
+ }
4619
+
4620
+ .fa-vine:before {
4621
+ content: "\f1ca";
4622
+ }
4623
+
4624
+ .fa-vk:before {
4625
+ content: "\f189";
4626
+ }
4627
+
4628
+ .fa-vnv:before {
4629
+ content: "\f40b";
4630
+ }
4631
+
4632
+ .fa-volleyball-ball:before {
4633
+ content: "\f45f";
4634
+ }
4635
+
4636
+ .fa-volume-down:before {
4637
+ content: "\f027";
4638
+ }
4639
+
4640
+ .fa-volume-off:before {
4641
+ content: "\f026";
4642
+ }
4643
+
4644
+ .fa-volume-up:before {
4645
+ content: "\f028";
4646
+ }
4647
+
4648
+ .fa-vuejs:before {
4649
+ content: "\f41f";
4650
+ }
4651
+
4652
+ .fa-walking:before {
4653
+ content: "\f554";
4654
+ }
4655
+
4656
+ .fa-wallet:before {
4657
+ content: "\f555";
4658
+ }
4659
+
4660
+ .fa-warehouse:before {
4661
+ content: "\f494";
4662
+ }
4663
+
4664
+ .fa-weebly:before {
4665
+ content: "\f5cc";
4666
+ }
4667
+
4668
+ .fa-weibo:before {
4669
+ content: "\f18a";
4670
+ }
4671
+
4672
+ .fa-weight:before {
4673
+ content: "\f496";
4674
+ }
4675
+
4676
+ .fa-weight-hanging:before {
4677
+ content: "\f5cd";
4678
+ }
4679
+
4680
+ .fa-weixin:before {
4681
+ content: "\f1d7";
4682
+ }
4683
+
4684
+ .fa-whatsapp:before {
4685
+ content: "\f232";
4686
+ }
4687
+
4688
+ .fa-whatsapp-square:before {
4689
+ content: "\f40c";
4690
+ }
4691
+
4692
+ .fa-wheelchair:before {
4693
+ content: "\f193";
4694
+ }
4695
+
4696
+ .fa-whmcs:before {
4697
+ content: "\f40d";
4698
+ }
4699
+
4700
+ .fa-wifi:before {
4701
+ content: "\f1eb";
4702
+ }
4703
+
4704
+ .fa-wikipedia-w:before {
4705
+ content: "\f266";
4706
+ }
4707
+
4708
+ .fa-window-close:before {
4709
+ content: "\f410";
4710
+ }
4711
+
4712
+ .fa-window-maximize:before {
4713
+ content: "\f2d0";
4714
+ }
4715
+
4716
+ .fa-window-minimize:before {
4717
+ content: "\f2d1";
4718
+ }
4719
+
4720
+ .fa-window-restore:before {
4721
+ content: "\f2d2";
4722
+ }
4723
+
4724
+ .fa-windows:before {
4725
+ content: "\f17a";
4726
+ }
4727
+
4728
+ .fa-wine-glass:before {
4729
+ content: "\f4e3";
4730
+ }
4731
+
4732
+ .fa-wine-glass-alt:before {
4733
+ content: "\f5ce";
4734
+ }
4735
+
4736
+ .fa-wix:before {
4737
+ content: "\f5cf";
4738
+ }
4739
+
4740
+ .fa-wolf-pack-battalion:before {
4741
+ content: "\f514";
4742
+ }
4743
+
4744
+ .fa-won-sign:before {
4745
+ content: "\f159";
4746
+ }
4747
+
4748
+ .fa-wordpress:before {
4749
+ content: "\f19a";
4750
+ }
4751
+
4752
+ .fa-wordpress-simple:before {
4753
+ content: "\f411";
4754
+ }
4755
+
4756
+ .fa-wpbeginner:before {
4757
+ content: "\f297";
4758
+ }
4759
+
4760
+ .fa-wpexplorer:before {
4761
+ content: "\f2de";
4762
+ }
4763
+
4764
+ .fa-wpforms:before {
4765
+ content: "\f298";
4766
+ }
4767
+
4768
+ .fa-wrench:before {
4769
+ content: "\f0ad";
4770
+ }
4771
+
4772
+ .fa-x-ray:before {
4773
+ content: "\f497";
4774
+ }
4775
+
4776
+ .fa-xbox:before {
4777
+ content: "\f412";
4778
+ }
4779
+
4780
+ .fa-xing:before {
4781
+ content: "\f168";
4782
+ }
4783
+
4784
+ .fa-xing-square:before {
4785
+ content: "\f169";
4786
+ }
4787
+
4788
+ .fa-y-combinator:before {
4789
+ content: "\f23b";
4790
+ }
4791
+
4792
+ .fa-yahoo:before {
4793
+ content: "\f19e";
4794
+ }
4795
+
4796
+ .fa-yandex:before {
4797
+ content: "\f413";
4798
+ }
4799
+
4800
+ .fa-yandex-international:before {
4801
+ content: "\f414";
4802
+ }
4803
+
4804
+ .fa-yelp:before {
4805
+ content: "\f1e9";
4806
+ }
4807
+
4808
+ .fa-yen-sign:before {
4809
+ content: "\f157";
4810
+ }
4811
+
4812
+ .fa-yoast:before {
4813
+ content: "\f2b1";
4814
+ }
4815
+
4816
+ .fa-youtube:before {
4817
+ content: "\f167";
4818
+ }
4819
+
4820
+ .fa-youtube-square:before {
4821
+ content: "\f431";
4822
+ }
4823
+
4824
+ .fa-zhihu:before {
4825
+ content: "\f63f";
4826
+ }
4827
+
4828
+ .sr-only {
4829
+ overflow: hidden;
4830
+ clip: rect(0, 0, 0, 0);
4831
+ position: absolute;
4832
+ width: 1px;
4833
+ height: 1px;
4834
+ margin: -1px;
4835
+ padding: 0;
4836
+ border: 0;
4837
+ }
4838
+
4839
+ .sr-only-focusable:active,
4840
+ .sr-only-focusable:focus {
4841
+ overflow: visible;
4842
+ clip: auto;
4843
+ position: static;
4844
+ width: auto;
4845
+ height: auto;
4846
+ margin: 0;
4847
+ }
obfx_modules/gutenberg-blocks/assets/fontawesome/css/fontawesome.min.css ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ /*!
2
+ * Font Awesome Free 5.2.0 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ */
5
+ .fa,.fab,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:a 2s infinite linear}.fa-pulse{animation:a 1s infinite steps(8)}@keyframes a{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-balance-scale:before{content:"\f24e"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bicycle:before{content:"\f206"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blind:before{content:"\f29d"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-certificate:before{content:"\f0a3"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-concierge-bell:before{content:"\f562"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-credit-card:before{content:"\f09d"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-delicious:before{content:"\f1a5"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-deviantart:before{content:"\f1bd"}.fa-diagnoses:before{content:"\f470"}.fa-dice:before{content:"\f522"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-gift:before{content:"\f06b"}.fa-git:before{content:"\f1d3"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-handshake:before{content:"\f2b5"}.fa-hashtag:before{content:"\f292"}.fa-hdd:before{content:"\f0a0"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-puck:before{content:"\f453"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hot-tub:before{content:"\f593"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-houzz:before{content:"\f27c"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-instagram:before{content:"\f16d"}.fa-internet-explorer:before{content:"\f26b"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mercury:before{content:"\f223"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-motorcycle:before{content:"\f21c"}.fa-mouse-pointer:before{content:"\f245"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-nintendo-switch:before{content:"\f418"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-osi:before{content:"\f41a"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-people-carry:before{content:"\f4ce"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-volume:before{content:"\f2a0"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poo:before{content:"\f2fe"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-r-project:before{content:"\f4f7"}.fa-random:before{content:"\f074"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-rendact:before{content:"\f3e4"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-rupee-sign:before{content:"\f156"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-sass:before{content:"\f41e"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-search:before{content:"\f002"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skull:before{content:"\f54c"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowflake:before{content:"\f2dc"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-swatchbook:before{content:"\f5c3"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toolbox:before{content:"\f552"}.fa-tooth:before{content:"\f5c9"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-train:before{content:"\f238"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-uikit:before{content:"\f403"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}
obfx_modules/gutenberg-blocks/assets/fontawesome/css/regular.css ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*!
2
+ * Font Awesome Free 5.2.0 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ */
5
+ @font-face {
6
+ font-family: "Font Awesome 5 Free";
7
+ src: url("../webfonts/fa-regular-400.eot");
8
+ src: url("../webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.woff") format("woff"), url("../webfonts/fa-regular-400.ttf") format("truetype"), url("../webfonts/fa-regular-400.svg#fontawesome") format("svg");
9
+ font-weight: 400;
10
+ font-style: normal;
11
+ }
12
+
13
+ .far {
14
+ font-family: "Font Awesome 5 Free";
15
+ font-weight: 400;
16
+ }
obfx_modules/gutenberg-blocks/assets/fontawesome/css/regular.min.css ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ /*!
2
+ * Font Awesome Free 5.2.0 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ */
5
+ @font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;src:url(../webfonts/fa-regular-400.eot);src:url(../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.woff) format("woff"),url(../webfonts/fa-regular-400.ttf) format("truetype"),url(../webfonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-family:"Font Awesome 5 Free";font-weight:400}
obfx_modules/gutenberg-blocks/assets/fontawesome/css/solid.css ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*!
2
+ * Font Awesome Free 5.2.0 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ */
5
+ @font-face {
6
+ font-family: "Font Awesome 5 Free";
7
+ src: url("../webfonts/fa-solid-900.eot");
8
+ src: url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.woff") format("woff"), url("../webfonts/fa-solid-900.ttf") format("truetype"), url("../webfonts/fa-solid-900.svg#fontawesome") format("svg");
9
+ font-weight: 900;
10
+ font-style: normal;
11
+ }
12
+
13
+ .fa,
14
+ .fas {
15
+ font-family: "Font Awesome 5 Free";
16
+ font-weight: 900;
17
+ }
obfx_modules/gutenberg-blocks/assets/fontawesome/css/solid.min.css ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ /*!
2
+ * Font Awesome Free 5.2.0 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ */
5
+ @font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.woff) format("woff"),url(../webfonts/fa-solid-900.ttf) format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.fas{font-family:"Font Awesome 5 Free";font-weight:900}
obfx_modules/gutenberg-blocks/assets/fontawesome/css/svg-with-js.css ADDED
@@ -0,0 +1,483 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*!
2
+ * Font Awesome Free 5.2.0 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ */
5
+ svg:not(:root).svg-inline--fa {
6
+ overflow: visible;
7
+ }
8
+
9
+ .svg-inline--fa {
10
+ display: inline-block;
11
+ overflow: visible;
12
+ height: 1em;
13
+ font-size: inherit;
14
+ vertical-align: -0.125em;
15
+ }
16
+
17
+ .svg-inline--fa.fa-lg {
18
+ vertical-align: -0.225em;
19
+ }
20
+
21
+ .svg-inline--fa.fa-w-1 {
22
+ width: 0.0625em;
23
+ }
24
+
25
+ .svg-inline--fa.fa-w-2 {
26
+ width: 0.125em;
27
+ }
28
+
29
+ .svg-inline--fa.fa-w-3 {
30
+ width: 0.1875em;
31
+ }
32
+
33
+ .svg-inline--fa.fa-w-4 {
34
+ width: 0.25em;
35
+ }
36
+
37
+ .svg-inline--fa.fa-w-5 {
38
+ width: 0.3125em;
39
+ }
40
+
41
+ .svg-inline--fa.fa-w-6 {
42
+ width: 0.375em;
43
+ }
44
+
45
+ .svg-inline--fa.fa-w-7 {
46
+ width: 0.4375em;
47
+ }
48
+
49
+ .svg-inline--fa.fa-w-8 {
50
+ width: 0.5em;
51
+ }
52
+
53
+ .svg-inline--fa.fa-w-9 {
54
+ width: 0.5625em;
55
+ }
56
+
57
+ .svg-inline--fa.fa-w-10 {
58
+ width: 0.625em;
59
+ }
60
+
61
+ .svg-inline--fa.fa-w-11 {
62
+ width: 0.6875em;
63
+ }
64
+
65
+ .svg-inline--fa.fa-w-12 {
66
+ width: 0.75em;
67
+ }
68
+
69
+ .svg-inline--fa.fa-w-13 {
70
+ width: 0.8125em;
71
+ }
72
+
73
+ .svg-inline--fa.fa-w-14 {
74
+ width: 0.875em;
75
+ }
76
+
77
+ .svg-inline--fa.fa-w-15 {
78
+ width: 0.9375em;
79
+ }
80
+
81
+ .svg-inline--fa.fa-w-16 {
82
+ width: 1em;
83
+ }
84
+
85
+ .svg-inline--fa.fa-w-17 {
86
+ width: 1.0625em;
87
+ }
88
+
89
+ .svg-inline--fa.fa-w-18 {
90
+ width: 1.125em;
91
+ }
92
+
93
+ .svg-inline--fa.fa-w-19 {
94
+ width: 1.1875em;
95
+ }
96
+
97
+ .svg-inline--fa.fa-w-20 {
98
+ width: 1.25em;
99
+ }
100
+
101
+ .svg-inline--fa.fa-pull-left {
102
+ width: auto;
103
+ margin-right: 0.3em;
104
+ }
105
+
106
+ .svg-inline--fa.fa-pull-right {
107
+ width: auto;
108
+ margin-left: 0.3em;
109
+ }
110
+
111
+ .svg-inline--fa.fa-border {
112
+ height: 1.5em;
113
+ }
114
+
115
+ .svg-inline--fa.fa-li {
116
+ width: 2em;
117
+ }
118
+
119
+ .svg-inline--fa.fa-fw {
120
+ width: 1.25em;
121
+ }
122
+
123
+ .fa-layers svg.svg-inline--fa {
124
+ position: absolute;
125
+ top: 0;
126
+ right: 0;
127
+ bottom: 0;
128
+ left: 0;
129
+ margin: auto;
130
+ }
131
+
132
+ .fa-layers {
133
+ display: inline-block;
134
+ position: relative;
135
+ width: 1em;
136
+ height: 1em;
137
+ text-align: center;
138
+ vertical-align: -0.125em;
139
+ }
140
+
141
+ .fa-layers svg.svg-inline--fa {
142
+ -webkit-transform-origin: center center;
143
+ -ms-transform-origin: center center;
144
+ transform-origin: center center;
145
+ }
146
+
147
+ .fa-layers-text,
148
+ .fa-layers-counter {
149
+ display: inline-block;
150
+ position: absolute;
151
+ text-align: center;
152
+ }
153
+
154
+ .fa-layers-text {
155
+ top: 50%;
156
+ left: 50%;
157
+ -webkit-transform: translate(-50%, -50%);
158
+ -ms-transform: translate(-50%, -50%);
159
+ transform: translate(-50%, -50%);
160
+ -webkit-transform-origin: center center;
161
+ -ms-transform-origin: center center;
162
+ transform-origin: center center;
163
+ }
164
+
165
+ .fa-layers-counter {
166
+ overflow: hidden;
167
+ top: 0;
168
+ right: 0;
169
+ box-sizing: border-box;
170
+ min-width: 1.5em;
171
+ max-width: 5em;
172
+ height: 1.5em;
173
+ padding: 0.25em;
174
+ border-radius: 1em;
175
+ color: #fff;
176
+ background-color: #ff253a;
177
+ line-height: 1;
178
+ text-overflow: ellipsis;
179
+ -webkit-transform: scale(0.25);
180
+ -ms-transform: scale(0.25);
181
+ transform: scale(0.25);
182
+ -webkit-transform-origin: top right;
183
+ -ms-transform-origin: top right;
184
+ transform-origin: top right;
185
+ }
186
+
187
+ .fa-layers-bottom-right {
188
+ top: auto;
189
+ right: 0;
190
+ bottom: 0;
191
+ -webkit-transform: scale(0.25);
192
+ -ms-transform: scale(0.25);
193
+ transform: scale(0.25);
194
+ -webkit-transform-origin: bottom right;
195
+ -ms-transform-origin: bottom right;
196
+ transform-origin: bottom right;
197
+ }
198
+
199
+ .fa-layers-bottom-left {
200
+ top: auto;
201
+ right: auto;
202
+ bottom: 0;
203
+ left: 0;
204
+ -webkit-transform: scale(0.25);
205
+ -ms-transform: scale(0.25);
206
+ transform: scale(0.25);
207
+ -webkit-transform-origin: bottom left;
208
+ -ms-transform-origin: bottom left;
209
+ transform-origin: bottom left;
210
+ }
211
+
212
+ .fa-layers-top-right {
213
+ top: 0;
214
+ right: 0;
215
+ -webkit-transform: scale(0.25);
216
+ -ms-transform: scale(0.25);
217
+ transform: scale(0.25);
218
+ -webkit-transform-origin: top right;
219
+ -ms-transform-origin: top right;
220
+ transform-origin: top right;
221
+ }
222
+
223
+ .fa-layers-top-left {
224
+ top: 0;
225
+ right: auto;
226
+ left: 0;
227
+ -webkit-transform: scale(0.25);
228
+ -ms-transform: scale(0.25);
229
+ transform: scale(0.25);
230
+ -webkit-transform-origin: top left;
231
+ -ms-transform-origin: top left;
232
+ transform-origin: top left;
233
+ }
234
+
235
+ .fa-lg {
236
+ font-size: 1.33333em;
237
+ line-height: 0.75em;
238
+ vertical-align: -0.0667em;
239
+ }
240
+
241
+ .fa-xs {
242
+ font-size: 0.75em;
243
+ }
244
+
245
+ .fa-sm {
246
+ font-size: 0.875em;
247
+ }
248
+
249
+ .fa-1x {
250
+ font-size: 1em;
251
+ }
252
+
253
+ .fa-2x {
254
+ font-size: 2em;
255
+ }
256
+
257
+ .fa-3x {
258
+ font-size: 3em;
259
+ }
260
+
261
+ .fa-4x {
262
+ font-size: 4em;
263
+ }
264
+
265
+ .fa-5x {
266
+ font-size: 5em;
267
+ }
268
+
269
+ .fa-6x {
270
+ font-size: 6em;
271
+ }
272
+
273
+ .fa-7x {
274
+ font-size: 7em;
275
+ }
276
+
277
+ .fa-8x {
278
+ font-size: 8em;
279
+ }
280
+
281
+ .fa-9x {
282
+ font-size: 9em;
283
+ }
284
+
285
+ .fa-10x {
286
+ font-size: 10em;
287
+ }
288
+
289
+ .fa-fw {
290
+ width: 1.25em;
291
+ text-align: center;
292
+ }
293
+
294
+ .fa-ul {
295
+ margin-left: 2.5em;
296
+ padding-left: 0;
297
+ list-style-type: none;
298
+ }
299
+
300
+ .fa-ul > li {
301
+ position: relative;
302
+ }
303
+
304
+ .fa-li {
305
+ position: absolute;
306
+ left: -2em;
307
+ width: 2em;
308
+ line-height: inherit;
309
+ text-align: center;
310
+ }
311
+
312
+ .fa-border {
313
+ padding: 0.2em 0.25em 0.15em;
314
+ border: solid 0.08em #eee;
315
+ border-radius: 0.1em;
316
+ }
317
+
318
+ .fa-pull-left {
319
+ float: left;
320
+ }
321
+
322
+ .fa-pull-right {
323
+ float: right;
324
+ }
325
+
326
+ .fa.fa-pull-left,
327
+ .fas.fa-pull-left,
328
+ .far.fa-pull-left,
329
+ .fal.fa-pull-left,
330
+ .fab.fa-pull-left {
331
+ margin-right: 0.3em;
332
+ }
333
+
334
+ .fa.fa-pull-right,
335
+ .fas.fa-pull-right,
336
+ .far.fa-pull-right,
337
+ .fal.fa-pull-right,
338
+ .fab.fa-pull-right {
339
+ margin-left: 0.3em;
340
+ }
341
+
342
+ .fa-spin {
343
+ -webkit-animation: fa-spin 2s infinite linear;
344
+ animation: fa-spin 2s infinite linear;
345
+ }
346
+
347
+ .fa-pulse {
348
+ -webkit-animation: fa-spin 1s infinite steps(8);
349
+ animation: fa-spin 1s infinite steps(8);
350
+ }
351
+
352
+ @-webkit-keyframes fa-spin {
353
+ 0% {
354
+ -webkit-transform: rotate(0deg);
355
+ transform: rotate(0deg);
356
+ }
357
+
358
+ 100% {
359
+ -webkit-transform: rotate(360deg);
360
+ transform: rotate(360deg);
361
+ }
362
+ }
363
+
364
+ @keyframes fa-spin {
365
+ 0% {
366
+ -webkit-transform: rotate(0deg);
367
+ transform: rotate(0deg);
368
+ }
369
+
370
+ 100% {
371
+ -webkit-transform: rotate(360deg);
372
+ transform: rotate(360deg);
373
+ }
374
+ }
375
+
376
+ .fa-rotate-90 {
377
+ -webkit-transform: rotate(90deg);
378
+ -ms-transform: rotate(90deg);
379
+ transform: rotate(90deg);
380
+
381
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
382
+ }
383
+
384
+ .fa-rotate-180 {
385
+ -webkit-transform: rotate(180deg);
386
+ -ms-transform: rotate(180deg);
387
+ transform: rotate(180deg);
388
+
389
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
390
+ }
391
+
392
+ .fa-rotate-270 {
393
+ -webkit-transform: rotate(270deg);
394
+ -ms-transform: rotate(270deg);
395
+ transform: rotate(270deg);
396
+
397
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
398
+ }
399
+
400
+ .fa-flip-horizontal {
401
+ -webkit-transform: scale(-1, 1);
402
+ -ms-transform: scale(-1, 1);
403
+ transform: scale(-1, 1);
404
+
405
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
406
+ }
407
+
408
+ .fa-flip-vertical {
409
+ -webkit-transform: scale(1, -1);
410
+ -ms-transform: scale(1, -1);
411
+ transform: scale(1, -1);
412
+
413
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
414
+ }
415
+
416
+ .fa-flip-horizontal.fa-flip-vertical {
417
+ -webkit-transform: scale(-1, -1);
418
+ -ms-transform: scale(-1, -1);
419
+ transform: scale(-1, -1);
420
+
421
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
422
+ }
423
+
424
+ :root .fa-rotate-90,
425
+ :root .fa-rotate-180,
426
+ :root .fa-rotate-270,
427
+ :root .fa-flip-horizontal,
428
+ :root .fa-flip-vertical {
429
+ -webkit-filter: none;
430
+ filter: none;
431
+ }
432
+
433
+ .fa-stack {
434
+ display: inline-block;
435
+ position: relative;
436
+ width: 2em;
437
+ height: 2em;
438
+ }
439
+
440
+ .fa-stack-1x,
441
+ .fa-stack-2x {
442
+ position: absolute;
443
+ top: 0;
444
+ right: 0;
445
+ bottom: 0;
446
+ left: 0;
447
+ margin: auto;
448
+ }
449
+
450
+ .svg-inline--fa.fa-stack-1x {
451
+ width: 1em;
452
+ height: 1em;
453
+ }
454
+
455
+ .svg-inline--fa.fa-stack-2x {
456
+ width: 2em;
457
+ height: 2em;
458
+ }
459
+
460
+ .fa-inverse {
461
+ color: #fff;
462
+ }
463
+
464
+ .sr-only {
465
+ overflow: hidden;
466
+ clip: rect(0, 0, 0, 0);
467
+ position: absolute;
468
+ width: 1px;
469
+ height: 1px;
470
+ margin: -1px;
471
+ padding: 0;
472
+ border: 0;
473
+ }
474
+
475
+ .sr-only-focusable:active,
476
+ .sr-only-focusable:focus {
477
+ overflow: visible;
478
+ clip: auto;
479
+ position: static;
480
+ width: auto;
481
+ height: auto;
482
+ margin: 0;
483
+ }
obfx_modules/gutenberg-blocks/assets/fontawesome/css/svg-with-js.min.css ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ /*!
2
+ * Font Awesome Free 5.2.0 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ */
5
+ .svg-inline--fa,svg:not(:root).svg-inline--fa{overflow:visible}.svg-inline--fa{display:inline-block;font-size:inherit;height:1em;vertical-align:-.125em}.svg-inline--fa.fa-lg{vertical-align:-.225em}.svg-inline--fa.fa-w-1{width:.0625em}.svg-inline--fa.fa-w-2{width:.125em}.svg-inline--fa.fa-w-3{width:.1875em}.svg-inline--fa.fa-w-4{width:.25em}.svg-inline--fa.fa-w-5{width:.3125em}.svg-inline--fa.fa-w-6{width:.375em}.svg-inline--fa.fa-w-7{width:.4375em}.svg-inline--fa.fa-w-8{width:.5em}.svg-inline--fa.fa-w-9{width:.5625em}.svg-inline--fa.fa-w-10{width:.625em}.svg-inline--fa.fa-w-11{width:.6875em}.svg-inline--fa.fa-w-12{width:.75em}.svg-inline--fa.fa-w-13{width:.8125em}.svg-inline--fa.fa-w-14{width:.875em}.svg-inline--fa.fa-w-15{width:.9375em}.svg-inline--fa.fa-w-16{width:1em}.svg-inline--fa.fa-w-17{width:1.0625em}.svg-inline--fa.fa-w-18{width:1.125em}.svg-inline--fa.fa-w-19{width:1.1875em}.svg-inline--fa.fa-w-20{width:1.25em}.svg-inline--fa.fa-pull-left{margin-right:.3em;width:auto}.svg-inline--fa.fa-pull-right{margin-left:.3em;width:auto}.svg-inline--fa.fa-border{height:1.5em}.svg-inline--fa.fa-li{width:2em}.svg-inline--fa.fa-fw{width:1.25em}.fa-layers svg.svg-inline--fa{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0}.fa-layers{display:inline-block;height:1em;position:relative;text-align:center;vertical-align:-.125em;width:1em}.fa-layers svg.svg-inline--fa{transform-origin:center center}.fa-layers-counter,.fa-layers-text{display:inline-block;position:absolute;text-align:center}.fa-layers-text{left:50%;top:50%;transform:translate(-50%,-50%);transform-origin:center center}.fa-layers-counter{background-color:#ff253a;border-radius:1em;box-sizing:border-box;color:#fff;height:1.5em;line-height:1;max-width:5em;min-width:1.5em;overflow:hidden;padding:.25em;right:0;text-overflow:ellipsis;top:0;transform:scale(.25);transform-origin:top right}.fa-layers-bottom-right{bottom:0;right:0;top:auto;transform:scale(.25);transform-origin:bottom right}.fa-layers-bottom-left{bottom:0;left:0;right:auto;top:auto;transform:scale(.25);transform-origin:bottom left}.fa-layers-top-right{right:0;top:0;transform:scale(.25);transform-origin:top right}.fa-layers-top-left{left:0;right:auto;top:0;transform:scale(.25);transform-origin:top left}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:a 2s infinite linear}.fa-pulse{animation:a 1s infinite steps(8)}@keyframes a{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;position:relative;width:2em}.fa-stack-1x,.fa-stack-2x{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0}.svg-inline--fa.fa-stack-1x{height:1em;width:1em}.svg-inline--fa.fa-stack-2x{height:2em;width:2em}.fa-inverse{color:#fff}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}
obfx_modules/gutenberg-blocks/assets/fontawesome/css/v4-shims.css ADDED
@@ -0,0 +1,2782 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*!
2
+ * Font Awesome Free 5.2.0 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ */
5
+ .fa.fa-glass:before {
6
+ content: "\f000";
7
+ }
8
+
9
+ .fa.fa-meetup {
10
+ font-family: "Font Awesome 5 Brands";
11
+ font-weight: 400;
12
+ }
13
+
14
+ .fa.fa-star-o {
15
+ font-family: "Font Awesome 5 Free";
16
+ font-weight: 400;
17
+ }
18
+
19
+ .fa.fa-star-o:before {
20
+ content: "\f005";
21
+ }
22
+
23
+ .fa.fa-remove:before {
24
+ content: "\f00d";
25
+ }
26
+
27
+ .fa.fa-close:before {
28
+ content: "\f00d";
29
+ }
30
+
31
+ .fa.fa-gear:before {
32
+ content: "\f013";
33
+ }
34
+
35
+ .fa.fa-trash-o {
36
+ font-family: "Font Awesome 5 Free";
37
+ font-weight: 400;
38
+ }
39
+
40
+ .fa.fa-trash-o:before {
41
+ content: "\f2ed";
42
+ }
43
+
44
+ .fa.fa-file-o {
45
+ font-family: "Font Awesome 5 Free";
46
+ font-weight: 400;
47
+ }
48
+
49
+ .fa.fa-file-o:before {
50
+ content: "\f15b";
51
+ }
52
+
53
+ .fa.fa-clock-o {
54
+ font-family: "Font Awesome 5 Free";
55
+ font-weight: 400;
56
+ }
57
+
58
+ .fa.fa-clock-o:before {
59
+ content: "\f017";
60
+ }
61
+
62
+ .fa.fa-arrow-circle-o-down {
63
+ font-family: "Font Awesome 5 Free";
64
+ font-weight: 400;
65
+ }
66
+
67
+ .fa.fa-arrow-circle-o-down:before {
68
+ content: "\f358";
69
+ }
70
+
71
+ .fa.fa-arrow-circle-o-up {
72
+ font-family: "Font Awesome 5 Free";
73
+ font-weight: 400;
74
+ }
75
+
76
+ .fa.fa-arrow-circle-o-up:before {
77
+ content: "\f35b";
78
+ }
79
+
80
+ .fa.fa-play-circle-o {
81
+ font-family: "Font Awesome 5 Free";
82
+ font-weight: 400;
83
+ }
84
+
85
+ .fa.fa-play-circle-o:before {
86
+ content: "\f144";
87
+ }
88
+
89
+ .fa.fa-repeat:before {
90
+ content: "\f01e";
91
+ }
92
+
93
+ .fa.fa-rotate-right:before {
94
+ content: "\f01e";
95
+ }
96
+
97
+ .fa.fa-refresh:before {
98
+ content: "\f021";
99
+ }
100
+
101
+ .fa.fa-list-alt {
102
+ font-family: "Font Awesome 5 Free";
103
+ font-weight: 400;
104
+ }
105
+
106
+ .fa.fa-dedent:before {
107
+ content: "\f03b";
108
+ }
109
+
110
+ .fa.fa-video-camera:before {
111
+ content: "\f03d";
112
+ }
113
+
114
+ .fa.fa-picture-o {
115
+ font-family: "Font Awesome 5 Free";
116
+ font-weight: 400;
117
+ }
118
+
119
+ .fa.fa-picture-o:before {
120
+ content: "\f03e";
121
+ }
122
+
123
+ .fa.fa-photo {
124
+ font-family: "Font Awesome 5 Free";
125
+ font-weight: 400;
126
+ }
127
+
128
+ .fa.fa-photo:before {
129
+ content: "\f03e";
130
+ }
131
+
132
+ .fa.fa-image {
133
+ font-family: "Font Awesome 5 Free";
134
+ font-weight: 400;
135
+ }
136
+
137
+ .fa.fa-image:before {
138
+ content: "\f03e";
139
+ }
140
+
141
+ .fa.fa-pencil:before {
142
+ content: "\f303";
143
+ }
144
+
145
+ .fa.fa-map-marker:before {
146
+ content: "\f3c5";
147
+ }
148
+
149
+ .fa.fa-pencil-square-o {
150
+ font-family: "Font Awesome 5 Free";
151
+ font-weight: 400;
152
+ }
153
+
154
+ .fa.fa-pencil-square-o:before {
155
+ content: "\f044";
156
+ }
157
+
158
+ .fa.fa-share-square-o {
159
+ font-family: "Font Awesome 5 Free";
160
+ font-weight: 400;
161
+ }
162
+
163
+ .fa.fa-share-square-o:before {
164
+ content: "\f14d";
165
+ }
166
+
167
+ .fa.fa-check-square-o {
168
+ font-family: "Font Awesome 5 Free";
169
+ font-weight: 400;
170
+ }
171
+
172
+ .fa.fa-check-square-o:before {
173
+ content: "\f14a";
174
+ }
175
+
176
+ .fa.fa-arrows:before {
177
+ content: "\f0b2";
178
+ }
179
+
180
+ .fa.fa-times-circle-o {
181
+ font-family: "Font Awesome 5 Free";
182
+ font-weight: 400;
183
+ }
184
+
185
+ .fa.fa-times-circle-o:before {
186
+ content: "\f057";
187
+ }
188
+
189
+ .fa.fa-check-circle-o {
190
+ font-family: "Font Awesome 5 Free";
191
+ font-weight: 400;
192
+ }
193
+
194
+ .fa.fa-check-circle-o:before {
195
+ content: "\f058";
196
+ }
197
+
198
+ .fa.fa-mail-forward:before {
199
+ content: "\f064";
200
+ }
201
+
202
+ .fa.fa-eye {
203
+ font-family: "Font Awesome 5 Free";
204
+ font-weight: 400;
205
+ }
206
+
207
+ .fa.fa-eye-slash {
208
+ font-family: "Font Awesome 5 Free";
209
+ font-weight: 400;
210
+ }
211
+
212
+ .fa.fa-warning:before {
213
+ content: "\f071";
214
+ }
215
+
216
+ .fa.fa-calendar:before {
217
+ content: "\f073";
218
+ }
219
+
220
+ .fa.fa-arrows-v:before {
221
+ content: "\f338";
222
+ }
223
+
224
+ .fa.fa-arrows-h:before {
225
+ content: "\f337";
226
+ }
227
+
228
+ .fa.fa-bar-chart {
229
+ font-family: "Font Awesome 5 Free";
230
+ font-weight: 400;
231
+ }
232
+
233
+ .fa.fa-bar-chart:before {
234
+ content: "\f080";
235
+ }
236
+
237
+ .fa.fa-bar-chart-o {
238
+ font-family: "Font Awesome 5 Free";
239
+ font-weight: 400;
240
+ }
241
+
242
+ .fa.fa-bar-chart-o:before {
243
+ content: "\f080";
244
+ }
245
+
246
+ .fa.fa-twitter-square {
247
+ font-family: "Font Awesome 5 Brands";
248
+ font-weight: 400;
249
+ }
250
+
251
+ .fa.fa-facebook-square {
252
+ font-family: "Font Awesome 5 Brands";
253
+ font-weight: 400;
254
+ }
255
+
256
+ .fa.fa-gears:before {
257
+ content: "\f085";
258
+ }
259
+
260
+ .fa.fa-thumbs-o-up {
261
+ font-family: "Font Awesome 5 Free";
262
+ font-weight: 400;
263
+ }
264
+
265
+ .fa.fa-thumbs-o-up:before {
266
+ content: "\f164";
267
+ }
268
+
269
+ .fa.fa-thumbs-o-down {
270
+ font-family: "Font Awesome 5 Free";
271
+ font-weight: 400;
272
+ }
273
+
274
+ .fa.fa-thumbs-o-down:before {
275
+ content: "\f165";
276
+ }
277
+
278
+ .fa.fa-heart-o {
279
+ font-family: "Font Awesome 5 Free";
280
+ font-weight: 400;
281
+ }
282
+
283
+ .fa.fa-heart-o:before {
284
+ content: "\f004";
285
+ }
286
+
287
+ .fa.fa-sign-out:before {
288
+ content: "\f2f5";
289
+ }
290
+
291
+ .fa.fa-linkedin-square {
292
+ font-family: "Font Awesome 5 Brands";
293
+ font-weight: 400;
294
+ }
295
+
296
+ .fa.fa-linkedin-square:before {
297
+ content: "\f08c";
298
+ }
299
+
300
+ .fa.fa-thumb-tack:before {
301
+ content: "\f08d";
302
+ }
303
+
304
+ .fa.fa-external-link:before {
305
+ content: "\f35d";
306
+ }
307
+
308
+ .fa.fa-sign-in:before {
309
+ content: "\f2f6";
310
+ }
311
+
312
+ .fa.fa-github-square {
313
+ font-family: "Font Awesome 5 Brands";
314
+ font-weight: 400;
315
+ }
316
+
317
+ .fa.fa-lemon-o {
318
+ font-family: "Font Awesome 5 Free";
319
+ font-weight: 400;
320
+ }
321
+
322
+ .fa.fa-lemon-o:before {
323
+ content: "\f094";
324
+ }
325
+
326
+ .fa.fa-square-o {
327
+ font-family: "Font Awesome 5 Free";
328
+ font-weight: 400;
329
+ }
330
+
331
+ .fa.fa-square-o:before {
332
+ content: "\f0c8";
333
+ }
334
+
335
+ .fa.fa-bookmark-o {
336
+ font-family: "Font Awesome 5 Free";
337
+ font-weight: 400;
338
+ }
339
+
340
+ .fa.fa-bookmark-o:before {
341
+ content: "\f02e";
342
+ }
343
+
344
+ .fa.fa-twitter {
345
+ font-family: "Font Awesome 5 Brands";
346
+ font-weight: 400;
347
+ }
348
+
349
+ .fa.fa-facebook {
350
+ font-family: "Font Awesome 5 Brands";
351
+ font-weight: 400;
352
+ }
353
+
354
+ .fa.fa-facebook:before {
355
+ content: "\f39e";
356
+ }
357
+
358
+ .fa.fa-facebook-f {
359
+ font-family: "Font Awesome 5 Brands";
360
+ font-weight: 400;
361
+ }
362
+
363
+ .fa.fa-facebook-f:before {
364
+ content: "\f39e";
365
+ }
366
+
367
+ .fa.fa-github {
368
+ font-family: "Font Awesome 5 Brands";
369
+ font-weight: 400;
370
+ }
371
+
372
+ .fa.fa-credit-card {
373
+ font-family: "Font Awesome 5 Free";
374
+ font-weight: 400;
375
+ }
376
+
377
+ .fa.fa-feed:before {
378
+ content: "\f09e";
379
+ }
380
+
381
+ .fa.fa-hdd-o {
382
+ font-family: "Font Awesome 5 Free";
383
+ font-weight: 400;
384
+ }
385
+
386
+ .fa.fa-hdd-o:before {
387
+ content: "\f0a0";
388
+ }
389
+
390
+ .fa.fa-hand-o-right {
391
+ font-family: "Font Awesome 5 Free";
392
+ font-weight: 400;
393
+ }
394
+
395
+ .fa.fa-hand-o-right:before {
396
+ content: "\f0a4";
397
+ }
398
+
399
+ .fa.fa-hand-o-left {
400
+ font-family: "Font Awesome 5 Free";
401
+ font-weight: 400;
402
+ }
403
+
404
+ .fa.fa-hand-o-left:before {
405
+ content: "\f0a5";
406
+ }
407
+
408
+ .fa.fa-hand-o-up {
409
+ font-family: "Font Awesome 5 Free";
410
+ font-weight: 400;
411
+ }
412
+
413
+ .fa.fa-hand-o-up:before {
414
+ content: "\f0a6";
415
+ }
416
+
417
+ .fa.fa-hand-o-down {
418
+ font-family: "Font Awesome 5 Free";
419
+ font-weight: 400;
420
+ }
421
+
422
+ .fa.fa-hand-o-down:before {
423
+ content: "\f0a7";
424
+ }
425
+
426
+ .fa.fa-arrows-alt:before {
427
+ content: "\f31e";
428
+ }
429
+
430
+ .fa.fa-group:before {
431
+ content: "\f0c0";
432
+ }
433
+
434
+ .fa.fa-chain:before {
435
+ content: "\f0c1";
436
+ }
437
+
438
+ .fa.fa-scissors:before {
439
+ content: "\f0c4";
440
+ }
441
+
442
+ .fa.fa-files-o {
443
+ font-family: "Font Awesome 5 Free";
444
+ font-weight: 400;
445
+ }
446
+
447
+ .fa.fa-files-o:before {
448
+ content: "\f0c5";
449
+ }
450
+
451
+ .fa.fa-floppy-o {
452
+ font-family: "Font Awesome 5 Free";
453
+ font-weight: 400;
454
+ }
455
+
456
+ .fa.fa-floppy-o:before {
457
+ content: "\f0c7";
458
+ }
459
+
460
+ .fa.fa-navicon:before {
461
+ content: "\f0c9";
462
+ }
463
+
464
+ .fa.fa-reorder:before {
465
+ content: "\f0c9";
466
+ }
467
+
468
+ .fa.fa-pinterest {
469
+ font-family: "Font Awesome 5 Brands";
470
+ font-weight: 400;
471
+ }
472
+
473
+ .fa.fa-pinterest-square {
474
+ font-family: "Font Awesome 5 Brands";
475
+ font-weight: 400;
476
+ }
477
+
478
+ .fa.fa-google-plus-square {
479
+ font-family: "Font Awesome 5 Brands";
480
+ font-weight: 400;
481
+ }
482
+
483
+ .fa.fa-google-plus {
484
+ font-family: "Font Awesome 5 Brands";
485
+ font-weight: 400;
486
+ }
487
+
488
+ .fa.fa-google-plus:before {
489
+ content: "\f0d5";
490
+ }
491
+
492
+ .fa.fa-money {
493
+ font-family: "Font Awesome 5 Free";
494
+ font-weight: 400;
495
+ }
496
+
497
+ .fa.fa-money:before {
498
+ content: "\f3d1";
499
+ }
500
+
501
+ .fa.fa-unsorted:before {
502
+ content: "\f0dc";
503
+ }
504
+
505
+ .fa.fa-sort-desc:before {
506
+ content: "\f0dd";
507
+ }
508
+
509
+ .fa.fa-sort-asc:before {
510
+ content: "\f0de";
511
+ }
512
+
513
+ .fa.fa-linkedin {
514
+ font-family: "Font Awesome 5 Brands";
515
+ font-weight: 400;
516
+ }
517
+
518
+ .fa.fa-linkedin:before {
519
+ content: "\f0e1";
520
+ }
521
+
522
+ .fa.fa-rotate-left:before {
523
+ content: "\f0e2";
524
+ }
525
+
526
+ .fa.fa-legal:before {
527
+ content: "\f0e3";
528
+ }
529
+
530
+ .fa.fa-tachometer:before {
531
+ content: "\f3fd";
532
+ }
533
+
534
+ .fa.fa-dashboard:before {
535
+ content: "\f3fd";
536
+ }
537
+
538
+ .fa.fa-comment-o {
539
+ font-family: "Font Awesome 5 Free";
540
+ font-weight: 400;
541
+ }
542
+
543
+ .fa.fa-comment-o:before {
544
+ content: "\f075";
545
+ }
546
+
547
+ .fa.fa-comments-o {
548
+ font-family: "Font Awesome 5 Free";
549
+ font-weight: 400;
550
+ }
551
+
552
+ .fa.fa-comments-o:before {
553
+ content: "\f086";
554
+ }
555
+
556
+ .fa.fa-flash:before {
557
+ content: "\f0e7";
558
+ }
559
+
560
+ .fa.fa-clipboard {
561
+ font-family: "Font Awesome 5 Free";
562
+ font-weight: 400;
563
+ }
564
+
565
+ .fa.fa-paste {
566
+ font-family: "Font Awesome 5 Free";
567
+ font-weight: 400;
568
+ }
569
+
570
+ .fa.fa-paste:before {
571
+ content: "\f328";
572
+ }
573
+
574
+ .fa.fa-lightbulb-o {
575
+ font-family: "Font Awesome 5 Free";
576
+ font-weight: 400;
577
+ }
578
+
579
+ .fa.fa-lightbulb-o:before {
580
+ content: "\f0eb";
581
+ }
582
+
583
+ .fa.fa-exchange:before {
584
+ content: "\f362";
585
+ }
586
+
587
+ .fa.fa-cloud-download:before {
588
+ content: "\f381";
589
+ }
590
+
591
+ .fa.fa-cloud-upload:before {
592
+ content: "\f382";
593
+ }
594
+
595
+ .fa.fa-bell-o {
596
+ font-family: "Font Awesome 5 Free";
597
+ font-weight: 400;
598
+ }
599
+
600
+ .fa.fa-bell-o:before {
601
+ content: "\f0f3";
602
+ }
603
+
604
+ .fa.fa-cutlery:before {
605
+ content: "\f2e7";
606
+ }
607
+
608
+ .fa.fa-file-text-o {
609
+ font-family: "Font Awesome 5 Free";
610
+ font-weight: 400;
611
+ }
612
+
613
+ .fa.fa-file-text-o:before {
614
+ content: "\f15c";
615
+ }
616
+
617
+ .fa.fa-building-o {
618
+ font-family: "Font Awesome 5 Free";
619
+ font-weight: 400;
620
+ }
621
+
622
+ .fa.fa-building-o:before {
623
+ content: "\f1ad";
624
+ }
625
+
626
+ .fa.fa-hospital-o {
627
+ font-family: "Font Awesome 5 Free";
628
+ font-weight: 400;
629
+ }
630
+
631
+ .fa.fa-hospital-o:before {
632
+ content: "\f0f8";
633
+ }
634
+
635
+ .fa.fa-tablet:before {
636
+ content: "\f3fa";
637
+ }
638
+
639
+ .fa.fa-mobile:before {
640
+ content: "\f3cd";
641
+ }
642
+
643
+ .fa.fa-mobile-phone:before {
644
+ content: "\f3cd";
645
+ }
646
+
647
+ .fa.fa-circle-o {
648
+ font-family: "Font Awesome 5 Free";
649
+ font-weight: 400;
650
+ }
651
+
652
+ .fa.fa-circle-o:before {
653
+ content: "\f111";
654
+ }
655
+
656
+ .fa.fa-mail-reply:before {
657
+ content: "\f3e5";
658
+ }
659
+
660
+ .fa.fa-github-alt {
661
+ font-family: "Font Awesome 5 Brands";
662
+ font-weight: 400;
663
+ }
664
+
665
+ .fa.fa-folder-o {
666
+ font-family: "Font Awesome 5 Free";
667
+ font-weight: 400;
668
+ }
669
+
670
+ .fa.fa-folder-o:before {
671
+ content: "\f07b";
672
+ }
673
+
674
+ .fa.fa-folder-open-o {
675
+ font-family: "Font Awesome 5 Free";
676
+ font-weight: 400;
677
+ }
678
+
679
+ .fa.fa-folder-open-o:before {
680
+ content: "\f07c";
681
+ }
682
+
683
+ .fa.fa-smile-o {
684
+ font-family: "Font Awesome 5 Free";
685
+ font-weight: 400;
686
+ }
687
+
688
+ .fa.fa-smile-o:before {
689
+ content: "\f118";
690
+ }
691
+
692
+ .fa.fa-frown-o {
693
+ font-family: "Font Awesome 5 Free";
694
+ font-weight: 400;
695
+ }
696
+
697
+ .fa.fa-frown-o:before {
698
+ content: "\f119";
699
+ }
700
+
701
+ .fa.fa-meh-o {
702
+ font-family: "Font Awesome 5 Free";
703
+ font-weight: 400;
704
+ }
705
+
706
+ .fa.fa-meh-o:before {
707
+ content: "\f11a";
708
+ }
709
+
710
+ .fa.fa-keyboard-o {
711
+ font-family: "Font Awesome 5 Free";
712
+ font-weight: 400;
713
+ }
714
+
715
+ .fa.fa-keyboard-o:before {
716
+ content: "\f11c";
717
+ }
718
+
719
+ .fa.fa-flag-o {
720
+ font-family: "Font Awesome 5 Free";
721
+ font-weight: 400;
722
+ }
723
+
724
+ .fa.fa-flag-o:before {
725
+ content: "\f024";
726
+ }
727
+
728
+ .fa.fa-mail-reply-all:before {
729
+ content: "\f122";
730
+ }
731
+
732
+ .fa.fa-star-half-o {
733
+ font-family: "Font Awesome 5 Free";
734
+ font-weight: 400;
735
+ }
736
+
737
+ .fa.fa-star-half-o:before {
738
+ content: "\f089";
739
+ }
740
+
741
+ .fa.fa-star-half-empty {
742
+ font-family: "Font Awesome 5 Free";
743
+ font-weight: 400;
744
+ }
745
+
746
+ .fa.fa-star-half-empty:before {
747
+ content: "\f089";
748
+ }
749
+
750
+ .fa.fa-star-half-full {
751
+ font-family: "Font Awesome 5 Free";
752
+ font-weight: 400;
753
+ }
754
+
755
+ .fa.fa-star-half-full:before {
756
+ content: "\f089";
757
+ }
758
+
759
+ .fa.fa-code-fork:before {
760
+ content: "\f126";
761
+ }
762
+
763
+ .fa.fa-chain-broken:before {
764
+ content: "\f127";
765
+ }
766
+
767
+ .fa.fa-shield:before {
768
+ content: "\f3ed";
769
+ }
770
+
771
+ .fa.fa-calendar-o {
772
+ font-family: "Font Awesome 5 Free";
773
+ font-weight: 400;
774
+ }
775
+
776
+ .fa.fa-calendar-o:before {
777
+ content: "\f133";
778
+ }
779
+
780
+ .fa.fa-maxcdn {
781
+ font-family: "Font Awesome 5 Brands";
782
+ font-weight: 400;
783
+ }
784
+
785
+ .fa.fa-html5 {
786
+ font-family: "Font Awesome 5 Brands";
787
+ font-weight: 400;
788
+ }
789
+
790
+ .fa.fa-css3 {
791
+ font-family: "Font Awesome 5 Brands";
792
+ font-weight: 400;
793
+ }
794
+
795
+ .fa.fa-ticket:before {
796
+ content: "\f3ff";
797
+ }
798
+
799
+ .fa.fa-minus-square-o {
800
+ font-family: "Font Awesome 5 Free";
801
+ font-weight: 400;
802
+ }
803
+
804
+ .fa.fa-minus-square-o:before {
805
+ content: "\f146";
806
+ }
807
+
808
+ .fa.fa-level-up:before {
809
+ content: "\f3bf";
810
+ }
811
+
812
+ .fa.fa-level-down:before {
813
+ content: "\f3be";
814
+ }
815
+
816
+ .fa.fa-pencil-square:before {
817
+ content: "\f14b";
818
+ }
819
+
820
+ .fa.fa-external-link-square:before {
821
+ content: "\f360";
822
+ }
823
+
824
+ .fa.fa-compass {
825
+ font-family: "Font Awesome 5 Free";
826
+ font-weight: 400;
827
+ }
828
+
829
+ .fa.fa-caret-square-o-down {
830
+ font-family: "Font Awesome 5 Free";
831
+ font-weight: 400;
832
+ }
833
+
834
+ .fa.fa-caret-square-o-down:before {
835
+ content: "\f150";
836
+ }
837
+
838
+ .fa.fa-toggle-down {
839
+ font-family: "Font Awesome 5 Free";
840
+ font-weight: 400;
841
+ }
842
+
843
+ .fa.fa-toggle-down:before {
844
+ content: "\f150";
845
+ }
846
+
847
+ .fa.fa-caret-square-o-up {
848
+ font-family: "Font Awesome 5 Free";
849
+ font-weight: 400;
850
+ }
851
+
852
+ .fa.fa-caret-square-o-up:before {
853
+ content: "\f151";
854
+ }
855
+
856
+ .fa.fa-toggle-up {
857
+ font-family: "Font Awesome 5 Free";
858
+ font-weight: 400;
859
+ }
860
+
861
+ .fa.fa-toggle-up:before {
862
+ content: "\f151";
863
+ }
864
+
865
+ .fa.fa-caret-square-o-right {
866
+ font-family: "Font Awesome 5 Free";
867
+ font-weight: 400;
868
+ }
869
+
870
+ .fa.fa-caret-square-o-right:before {
871
+ content: "\f152";
872
+ }
873
+
874
+ .fa.fa-toggle-right {
875
+ font-family: "Font Awesome 5 Free";
876
+ font-weight: 400;
877
+ }
878
+
879
+ .fa.fa-toggle-right:before {
880
+ content: "\f152";
881
+ }
882
+
883
+ .fa.fa-eur:before {
884
+ content: "\f153";
885
+ }
886
+
887
+ .fa.fa-euro:before {
888
+ content: "\f153";
889
+ }
890
+
891
+ .fa.fa-gbp:before {
892
+ content: "\f154";
893
+ }
894
+
895
+ .fa.fa-usd:before {
896
+ content: "\f155";
897
+ }
898
+
899
+ .fa.fa-dollar:before {
900
+ content: "\f155";
901
+ }
902
+
903
+ .fa.fa-inr:before {
904
+ content: "\f156";
905
+ }
906
+
907
+ .fa.fa-rupee:before {
908
+ content: "\f156";
909
+ }
910
+
911
+ .fa.fa-jpy:before {
912
+ content: "\f157";
913
+ }
914
+
915
+ .fa.fa-cny:before {
916
+ content: "\f157";
917
+ }
918
+
919
+ .fa.fa-rmb:before {
920
+ content: "\f157";
921
+ }
922
+
923
+ .fa.fa-yen:before {
924
+ content: "\f157";
925
+ }
926
+
927
+ .fa.fa-rub:before {
928
+ content: "\f158";
929
+ }
930
+
931
+ .fa.fa-ruble:before {
932
+ content: "\f158";
933
+ }
934
+
935
+ .fa.fa-rouble:before {
936
+ content: "\f158";
937
+ }
938
+
939
+ .fa.fa-krw:before {
940
+ content: "\f159";
941
+ }
942
+
943
+ .fa.fa-won:before {
944
+ content: "\f159";
945
+ }
946
+
947
+ .fa.fa-btc {
948
+ font-family: "Font Awesome 5 Brands";
949
+ font-weight: 400;
950
+ }
951
+
952
+ .fa.fa-bitcoin {
953
+ font-family: "Font Awesome 5 Brands";
954
+ font-weight: 400;
955
+ }
956
+
957
+ .fa.fa-bitcoin:before {
958
+ content: "\f15a";
959
+ }
960
+
961
+ .fa.fa-file-text:before {
962
+ content: "\f15c";
963
+ }
964
+
965
+ .fa.fa-sort-alpha-asc:before {
966
+ content: "\f15d";
967
+ }
968
+
969
+ .fa.fa-sort-alpha-desc:before {
970
+ content: "\f15e";
971
+ }
972
+
973
+ .fa.fa-sort-amount-asc:before {
974
+ content: "\f160";
975
+ }
976
+
977
+ .fa.fa-sort-amount-desc:before {
978
+ content: "\f161";
979
+ }
980
+
981
+ .fa.fa-sort-numeric-asc:before {
982
+ content: "\f162";
983
+ }
984
+
985
+ .fa.fa-sort-numeric-desc:before {
986
+ content: "\f163";
987
+ }
988
+
989
+ .fa.fa-youtube-square {
990
+ font-family: "Font Awesome 5 Brands";
991
+ font-weight: 400;
992
+ }
993
+
994
+ .fa.fa-youtube {
995
+ font-family: "Font Awesome 5 Brands";
996
+ font-weight: 400;
997
+ }
998
+
999
+ .fa.fa-xing {
1000
+ font-family: "Font Awesome 5 Brands";
1001
+ font-weight: 400;
1002
+ }
1003
+
1004
+ .fa.fa-xing-square {
1005
+ font-family: "Font Awesome 5 Brands";
1006
+ font-weight: 400;
1007
+ }
1008
+
1009
+ .fa.fa-youtube-play {
1010
+ font-family: "Font Awesome 5 Brands";
1011
+ font-weight: 400;
1012
+ }
1013
+
1014
+ .fa.fa-youtube-play:before {
1015
+ content: "\f167";
1016
+ }
1017
+
1018
+ .fa.fa-dropbox {
1019
+ font-family: "Font Awesome 5 Brands";
1020
+ font-weight: 400;
1021
+ }
1022
+
1023
+ .fa.fa-stack-overflow {
1024
+ font-family: "Font Awesome 5 Brands";
1025
+ font-weight: 400;
1026
+ }
1027
+
1028
+ .fa.fa-instagram {
1029
+ font-family: "Font Awesome 5 Brands";
1030
+ font-weight: 400;
1031
+ }
1032
+
1033
+ .fa.fa-flickr {
1034
+ font-family: "Font Awesome 5 Brands";
1035
+ font-weight: 400;
1036
+ }
1037
+
1038
+ .fa.fa-adn {
1039
+ font-family: "Font Awesome 5 Brands";
1040
+ font-weight: 400;
1041
+ }
1042
+
1043
+ .fa.fa-bitbucket {
1044
+ font-family: "Font Awesome 5 Brands";
1045
+ font-weight: 400;
1046
+ }
1047
+
1048
+ .fa.fa-bitbucket-square {
1049
+ font-family: "Font Awesome 5 Brands";
1050
+ font-weight: 400;
1051
+ }
1052
+
1053
+ .fa.fa-bitbucket-square:before {
1054
+ content: "\f171";
1055
+ }
1056
+
1057
+ .fa.fa-tumblr {
1058
+ font-family: "Font Awesome 5 Brands";
1059
+ font-weight: 400;
1060
+ }
1061
+
1062
+ .fa.fa-tumblr-square {
1063
+ font-family: "Font Awesome 5 Brands";
1064
+ font-weight: 400;
1065
+ }
1066
+
1067
+ .fa.fa-long-arrow-down:before {
1068
+ content: "\f309";
1069
+ }
1070
+
1071
+ .fa.fa-long-arrow-up:before {
1072
+ content: "\f30c";
1073
+ }
1074
+
1075
+ .fa.fa-long-arrow-left:before {
1076
+ content: "\f30a";
1077
+ }
1078
+
1079
+ .fa.fa-long-arrow-right:before {
1080
+ content: "\f30b";
1081
+ }
1082
+
1083
+ .fa.fa-apple {
1084
+ font-family: "Font Awesome 5 Brands";
1085
+ font-weight: 400;
1086
+ }
1087
+
1088
+ .fa.fa-windows {
1089
+ font-family: "Font Awesome 5 Brands";
1090
+ font-weight: 400;
1091
+ }
1092
+
1093
+ .fa.fa-android {
1094
+ font-family: "Font Awesome 5 Brands";
1095
+ font-weight: 400;
1096
+ }
1097
+
1098
+ .fa.fa-linux {
1099
+ font-family: "Font Awesome 5 Brands";
1100
+ font-weight: 400;
1101
+ }
1102
+
1103
+ .fa.fa-dribbble {
1104
+ font-family: "Font Awesome 5 Brands";
1105
+ font-weight: 400;
1106
+ }
1107
+
1108
+ .fa.fa-skype {
1109
+ font-family: "Font Awesome 5 Brands";
1110
+ font-weight: 400;
1111
+ }
1112
+
1113
+ .fa.fa-foursquare {
1114
+ font-family: "Font Awesome 5 Brands";
1115
+ font-weight: 400;
1116
+ }
1117
+
1118
+ .fa.fa-trello {
1119
+ font-family: "Font Awesome 5 Brands";
1120
+ font-weight: 400;
1121
+ }
1122
+
1123
+ .fa.fa-gratipay {
1124
+ font-family: "Font Awesome 5 Brands";
1125
+ font-weight: 400;
1126
+ }
1127
+
1128
+ .fa.fa-gittip {
1129
+ font-family: "Font Awesome 5 Brands";
1130
+ font-weight: 400;
1131
+ }
1132
+
1133
+ .fa.fa-gittip:before {
1134
+ content: "\f184";
1135
+ }
1136
+
1137
+ .fa.fa-sun-o {
1138
+ font-family: "Font Awesome 5 Free";
1139
+ font-weight: 400;
1140
+ }
1141
+
1142
+ .fa.fa-sun-o:before {
1143
+ content: "\f185";
1144
+ }
1145
+
1146
+ .fa.fa-moon-o {
1147
+ font-family: "Font Awesome 5 Free";
1148
+ font-weight: 400;
1149
+ }
1150
+
1151
+ .fa.fa-moon-o:before {
1152
+ content: "\f186";
1153
+ }
1154
+
1155
+ .fa.fa-vk {
1156
+ font-family: "Font Awesome 5 Brands";
1157
+ font-weight: 400;
1158
+ }
1159
+
1160
+ .fa.fa-weibo {
1161
+ font-family: "Font Awesome 5 Brands";
1162
+ font-weight: 400;
1163
+ }
1164
+
1165
+ .fa.fa-renren {
1166
+ font-family: "Font Awesome 5 Brands";
1167
+ font-weight: 400;
1168
+ }
1169
+
1170
+ .fa.fa-pagelines {
1171
+ font-family: "Font Awesome 5 Brands";
1172
+ font-weight: 400;
1173
+ }
1174
+
1175
+ .fa.fa-stack-exchange {
1176
+ font-family: "Font Awesome 5 Brands";
1177
+ font-weight: 400;
1178
+ }
1179
+
1180
+ .fa.fa-arrow-circle-o-right {
1181
+ font-family: "Font Awesome 5 Free";
1182
+ font-weight: 400;
1183
+ }
1184
+
1185
+ .fa.fa-arrow-circle-o-right:before {
1186
+ content: "\f35a";
1187
+ }
1188
+
1189
+ .fa.fa-arrow-circle-o-left {
1190
+ font-family: "Font Awesome 5 Free";
1191
+ font-weight: 400;
1192
+ }
1193
+
1194
+ .fa.fa-arrow-circle-o-left:before {
1195
+ content: "\f359";
1196
+ }
1197
+
1198
+ .fa.fa-caret-square-o-left {
1199
+ font-family: "Font Awesome 5 Free";
1200
+ font-weight: 400;
1201
+ }
1202
+
1203
+ .fa.fa-caret-square-o-left:before {
1204
+ content: "\f191";
1205
+ }
1206
+
1207
+ .fa.fa-toggle-left {
1208
+ font-family: "Font Awesome 5 Free";
1209
+ font-weight: 400;
1210
+ }
1211
+
1212
+ .fa.fa-toggle-left:before {
1213
+ content: "\f191";
1214
+ }
1215
+
1216
+ .fa.fa-dot-circle-o {
1217
+ font-family: "Font Awesome 5 Free";
1218
+ font-weight: 400;
1219
+ }
1220
+
1221
+ .fa.fa-dot-circle-o:before {
1222
+ content: "\f192";
1223
+ }
1224
+
1225
+ .fa.fa-vimeo-square {
1226
+ font-family: "Font Awesome 5 Brands";
1227
+ font-weight: 400;
1228
+ }
1229
+
1230
+ .fa.fa-try:before {
1231
+ content: "\f195";
1232
+ }
1233
+
1234
+ .fa.fa-turkish-lira:before {
1235
+ content: "\f195";
1236
+ }
1237
+
1238
+ .fa.fa-plus-square-o {
1239
+ font-family: "Font Awesome 5 Free";
1240
+ font-weight: 400;
1241
+ }
1242
+
1243
+ .fa.fa-plus-square-o:before {
1244
+ content: "\f0fe";
1245
+ }
1246
+
1247
+ .fa.fa-slack {
1248
+ font-family: "Font Awesome 5 Brands";
1249
+ font-weight: 400;
1250
+ }
1251
+
1252
+ .fa.fa-wordpress {
1253
+ font-family: "Font Awesome 5 Brands";
1254
+ font-weight: 400;
1255
+ }
1256
+
1257
+ .fa.fa-openid {
1258
+ font-family: "Font Awesome 5 Brands";
1259
+ font-weight: 400;
1260
+ }
1261
+
1262
+ .fa.fa-institution:before {
1263
+ content: "\f19c";
1264
+ }
1265
+
1266
+ .fa.fa-bank:before {
1267
+ content: "\f19c";
1268
+ }
1269
+
1270
+ .fa.fa-mortar-board:before {
1271
+ content: "\f19d";
1272
+ }
1273
+
1274
+ .fa.fa-yahoo {
1275
+ font-family: "Font Awesome 5 Brands";
1276
+ font-weight: 400;
1277
+ }
1278
+
1279
+ .fa.fa-google {
1280
+ font-family: "Font Awesome 5 Brands";
1281
+ font-weight: 400;
1282
+ }
1283
+
1284
+ .fa.fa-reddit {
1285
+ font-family: "Font Awesome 5 Brands";
1286
+ font-weight: 400;
1287
+ }
1288
+
1289
+ .fa.fa-reddit-square {
1290
+ font-family: "Font Awesome 5 Brands";
1291
+ font-weight: 400;
1292
+ }
1293
+
1294
+ .fa.fa-stumbleupon-circle {
1295
+ font-family: "Font Awesome 5 Brands";
1296
+ font-weight: 400;
1297
+ }
1298
+
1299
+ .fa.fa-stumbleupon {
1300
+ font-family: "Font Awesome 5 Brands";
1301
+ font-weight: 400;
1302
+ }
1303
+
1304
+ .fa.fa-delicious {
1305
+ font-family: "Font Awesome 5 Brands";
1306
+ font-weight: 400;
1307
+ }
1308
+
1309
+ .fa.fa-digg {
1310
+ font-family: "Font Awesome 5 Brands";
1311
+ font-weight: 400;
1312
+ }
1313
+
1314
+ .fa.fa-pied-piper-pp {
1315
+ font-family: "Font Awesome 5 Brands";
1316
+ font-weight: 400;
1317
+ }
1318
+
1319
+ .fa.fa-pied-piper-alt {
1320
+ font-family: "Font Awesome 5 Brands";
1321
+ font-weight: 400;
1322
+ }
1323
+
1324
+ .fa.fa-drupal {
1325
+ font-family: "Font Awesome 5 Brands";
1326
+ font-weight: 400;
1327
+ }
1328
+
1329
+ .fa.fa-joomla {
1330
+ font-family: "Font Awesome 5 Brands";
1331
+ font-weight: 400;
1332
+ }
1333
+
1334
+ .fa.fa-spoon:before {
1335
+ content: "\f2e5";
1336
+ }
1337
+
1338
+ .fa.fa-behance {
1339
+ font-family: "Font Awesome 5 Brands";
1340
+ font-weight: 400;
1341
+ }
1342
+
1343
+ .fa.fa-behance-square {
1344
+ font-family: "Font Awesome 5 Brands";
1345
+ font-weight: 400;
1346
+ }
1347
+
1348
+ .fa.fa-steam {
1349
+ font-family: "Font Awesome 5 Brands";
1350
+ font-weight: 400;
1351
+ }
1352
+
1353
+ .fa.fa-steam-square {
1354
+ font-family: "Font Awesome 5 Brands";
1355
+ font-weight: 400;
1356
+ }
1357
+
1358
+ .fa.fa-automobile:before {
1359
+ content: "\f1b9";
1360
+ }
1361
+
1362
+ .fa.fa-cab:before {
1363
+ content: "\f1ba";
1364
+ }
1365
+
1366
+ .fa.fa-envelope-o {
1367
+ font-family: "Font Awesome 5 Free";
1368
+ font-weight: 400;
1369
+ }
1370
+
1371
+ .fa.fa-envelope-o:before {
1372
+ content: "\f0e0";
1373
+ }
1374
+
1375
+ .fa.fa-deviantart {
1376
+ font-family: "Font Awesome 5 Brands";
1377
+ font-weight: 400;
1378
+ }
1379
+
1380
+ .fa.fa-soundcloud {
1381
+ font-family: "Font Awesome 5 Brands";
1382
+ font-weight: 400;
1383
+ }
1384
+
1385
+ .fa.fa-file-pdf-o {
1386
+ font-family: "Font Awesome 5 Free";
1387
+ font-weight: 400;
1388
+ }
1389
+
1390
+ .fa.fa-file-pdf-o:before {
1391
+ content: "\f1c1";
1392
+ }
1393
+
1394
+ .fa.fa-file-word-o {
1395
+ font-family: "Font Awesome 5 Free";
1396
+ font-weight: 400;
1397
+ }
1398
+
1399
+ .fa.fa-file-word-o:before {
1400
+ content: "\f1c2";
1401
+ }
1402
+
1403
+ .fa.fa-file-excel-o {
1404
+ font-family: "Font Awesome 5 Free";
1405
+ font-weight: 400;
1406
+ }
1407
+
1408
+ .fa.fa-file-excel-o:before {
1409
+ content: "\f1c3";
1410
+ }
1411
+
1412
+ .fa.fa-file-powerpoint-o {
1413
+ font-family: "Font Awesome 5 Free";
1414
+ font-weight: 400;
1415
+ }
1416
+
1417
+ .fa.fa-file-powerpoint-o:before {
1418
+ content: "\f1c4";
1419
+ }
1420
+
1421
+ .fa.fa-file-image-o {
1422
+ font-family: "Font Awesome 5 Free";
1423
+ font-weight: 400;
1424
+ }
1425
+
1426
+ .fa.fa-file-image-o:before {
1427
+ content: "\f1c5";
1428
+ }
1429
+
1430
+ .fa.fa-file-photo-o {
1431
+ font-family: "Font Awesome 5 Free";
1432
+ font-weight: 400;
1433
+ }
1434
+
1435
+ .fa.fa-file-photo-o:before {
1436
+ content: "\f1c5";
1437
+ }
1438
+
1439
+ .fa.fa-file-picture-o {
1440
+ font-family: "Font Awesome 5 Free";
1441
+ font-weight: 400;
1442
+ }
1443
+
1444
+ .fa.fa-file-picture-o:before {
1445
+ content: "\f1c5";
1446
+ }
1447
+
1448
+ .fa.fa-file-archive-o {
1449
+ font-family: "Font Awesome 5 Free";
1450
+ font-weight: 400;
1451
+ }
1452
+
1453
+ .fa.fa-file-archive-o:before {
1454
+ content: "\f1c6";
1455
+ }
1456
+
1457
+ .fa.fa-file-zip-o {
1458
+ font-family: "Font Awesome 5 Free";
1459
+ font-weight: 400;
1460
+ }
1461
+
1462
+ .fa.fa-file-zip-o:before {
1463
+ content: "\f1c6";
1464
+ }
1465
+
1466
+ .fa.fa-file-audio-o {
1467
+ font-family: "Font Awesome 5 Free";
1468
+ font-weight: 400;
1469
+ }
1470
+
1471
+ .fa.fa-file-audio-o:before {
1472
+ content: "\f1c7";
1473
+ }
1474
+
1475
+ .fa.fa-file-sound-o {
1476
+ font-family: "Font Awesome 5 Free";
1477
+ font-weight: 400;
1478
+ }
1479
+
1480
+ .fa.fa-file-sound-o:before {
1481
+ content: "\f1c7";
1482
+ }
1483
+
1484
+ .fa.fa-file-video-o {
1485
+ font-family: "Font Awesome 5 Free";
1486
+ font-weight: 400;
1487
+ }
1488
+
1489
+ .fa.fa-file-video-o:before {
1490
+ content: "\f1c8";
1491
+ }
1492
+
1493
+ .fa.fa-file-movie-o {
1494
+ font-family: "Font Awesome 5 Free";
1495
+ font-weight: 400;
1496
+ }
1497
+
1498
+ .fa.fa-file-movie-o:before {
1499
+ content: "\f1c8";
1500
+ }
1501
+
1502
+ .fa.fa-file-code-o {
1503
+ font-family: "Font Awesome 5 Free";
1504
+ font-weight: 400;
1505
+ }
1506
+
1507
+ .fa.fa-file-code-o:before {
1508
+ content: "\f1c9";
1509
+ }
1510
+
1511
+ .fa.fa-vine {
1512
+ font-family: "Font Awesome 5 Brands";
1513
+ font-weight: 400;
1514
+ }
1515
+
1516
+ .fa.fa-codepen {
1517
+ font-family: "Font Awesome 5 Brands";
1518
+ font-weight: 400;
1519
+ }
1520
+
1521
+ .fa.fa-jsfiddle {
1522
+ font-family: "Font Awesome 5 Brands";
1523
+ font-weight: 400;
1524
+ }
1525
+
1526
+ .fa.fa-life-ring {
1527
+ font-family: "Font Awesome 5 Free";
1528
+ font-weight: 400;
1529
+ }
1530
+
1531
+ .fa.fa-life-bouy {
1532
+ font-family: "Font Awesome 5 Free";
1533
+ font-weight: 400;
1534
+ }
1535
+
1536
+ .fa.fa-life-bouy:before {
1537
+ content: "\f1cd";
1538
+ }
1539
+
1540
+ .fa.fa-life-buoy {
1541
+ font-family: "Font Awesome 5 Free";
1542
+ font-weight: 400;
1543
+ }
1544
+
1545
+ .fa.fa-life-buoy:before {
1546
+ content: "\f1cd";
1547
+ }
1548
+
1549
+ .fa.fa-life-saver {
1550
+ font-family: "Font Awesome 5 Free";
1551
+ font-weight: 400;
1552
+ }
1553
+
1554
+ .fa.fa-life-saver:before {
1555
+ content: "\f1cd";
1556
+ }
1557
+
1558
+ .fa.fa-support {
1559
+ font-family: "Font Awesome 5 Free";
1560
+ font-weight: 400;
1561
+ }
1562
+
1563
+ .fa.fa-support:before {
1564
+ content: "\f1cd";
1565
+ }
1566
+
1567
+ .fa.fa-circle-o-notch:before {
1568
+ content: "\f1ce";
1569
+ }
1570
+
1571
+ .fa.fa-rebel {
1572
+ font-family: "Font Awesome 5 Brands";
1573
+ font-weight: 400;
1574
+ }
1575
+
1576
+ .fa.fa-ra {
1577
+ font-family: "Font Awesome 5 Brands";
1578
+ font-weight: 400;
1579
+ }
1580
+
1581
+ .fa.fa-ra:before {
1582
+ content: "\f1d0";
1583
+ }
1584
+
1585
+ .fa.fa-resistance {
1586
+ font-family: "Font Awesome 5 Brands";
1587
+ font-weight: 400;
1588
+ }
1589
+
1590
+ .fa.fa-resistance:before {
1591
+ content: "\f1d0";
1592
+ }
1593
+
1594
+ .fa.fa-empire {
1595
+ font-family: "Font Awesome 5 Brands";
1596
+ font-weight: 400;
1597
+ }
1598
+
1599
+ .fa.fa-ge {
1600
+ font-family: "Font Awesome 5 Brands";
1601
+ font-weight: 400;
1602
+ }
1603
+
1604
+ .fa.fa-ge:before {
1605
+ content: "\f1d1";
1606
+ }
1607
+
1608
+ .fa.fa-git-square {
1609
+ font-family: "Font Awesome 5 Brands";
1610
+ font-weight: 400;
1611
+ }
1612
+
1613
+ .fa.fa-git {
1614
+ font-family: "Font Awesome 5 Brands";
1615
+ font-weight: 400;
1616
+ }
1617
+
1618
+ .fa.fa-hacker-news {
1619
+ font-family: "Font Awesome 5 Brands";
1620
+ font-weight: 400;
1621
+ }
1622
+
1623
+ .fa.fa-y-combinator-square {
1624
+ font-family: "Font Awesome 5 Brands";
1625
+ font-weight: 400;
1626
+ }
1627
+
1628
+ .fa.fa-y-combinator-square:before {
1629
+ content: "\f1d4";
1630
+ }
1631
+
1632
+ .fa.fa-yc-square {
1633
+ font-family: "Font Awesome 5 Brands";
1634
+ font-weight: 400;
1635
+ }
1636
+
1637
+ .fa.fa-yc-square:before {
1638
+ content: "\f1d4";
1639
+ }
1640
+
1641
+ .fa.fa-tencent-weibo {
1642
+ font-family: "Font Awesome 5 Brands";
1643
+ font-weight: 400;
1644
+ }
1645
+
1646
+ .fa.fa-qq {
1647
+ font-family: "Font Awesome 5 Brands";
1648
+ font-weight: 400;
1649
+ }
1650
+
1651
+ .fa.fa-weixin {
1652
+ font-family: "Font Awesome 5 Brands";
1653
+ font-weight: 400;
1654
+ }
1655
+
1656
+ .fa.fa-wechat {
1657
+ font-family: "Font Awesome 5 Brands";
1658
+ font-weight: 400;
1659
+ }
1660
+
1661
+ .fa.fa-wechat:before {
1662
+ content: "\f1d7";
1663
+ }
1664
+
1665
+ .fa.fa-send:before {
1666
+ content: "\f1d8";
1667
+ }
1668
+
1669
+ .fa.fa-paper-plane-o {
1670
+ font-family: "Font Awesome 5 Free";
1671
+ font-weight: 400;
1672
+ }
1673
+
1674
+ .fa.fa-paper-plane-o:before {
1675
+ content: "\f1d8";
1676
+ }
1677
+
1678
+ .fa.fa-send-o {
1679
+ font-family: "Font Awesome 5 Free";
1680
+ font-weight: 400;
1681
+ }
1682
+
1683
+ .fa.fa-send-o:before {
1684
+ content: "\f1d8";
1685
+ }
1686
+
1687
+ .fa.fa-circle-thin {
1688
+ font-family: "Font Awesome 5 Free";
1689
+ font-weight: 400;
1690
+ }
1691
+
1692
+ .fa.fa-circle-thin:before {
1693
+ content: "\f111";
1694
+ }
1695
+
1696
+ .fa.fa-header:before {
1697
+ content: "\f1dc";
1698
+ }
1699
+
1700
+ .fa.fa-sliders:before {
1701
+ content: "\f1de";
1702
+ }
1703
+
1704
+ .fa.fa-futbol-o {
1705
+ font-family: "Font Awesome 5 Free";
1706
+ font-weight: 400;
1707
+ }
1708
+
1709
+ .fa.fa-futbol-o:before {
1710
+ content: "\f1e3";
1711
+ }
1712
+
1713
+ .fa.fa-soccer-ball-o {
1714
+ font-family: "Font Awesome 5 Free";
1715
+ font-weight: 400;
1716
+ }
1717
+
1718
+ .fa.fa-soccer-ball-o:before {
1719
+ content: "\f1e3";
1720
+ }
1721
+
1722
+ .fa.fa-slideshare {
1723
+ font-family: "Font Awesome 5 Brands";
1724
+ font-weight: 400;
1725
+ }
1726
+
1727
+ .fa.fa-twitch {
1728
+ font-family: "Font Awesome 5 Brands";
1729
+ font-weight: 400;
1730
+ }
1731
+
1732
+ .fa.fa-yelp {
1733
+ font-family: "Font Awesome 5 Brands";
1734
+ font-weight: 400;
1735
+ }
1736
+
1737
+ .fa.fa-newspaper-o {
1738
+ font-family: "Font Awesome 5 Free";
1739
+ font-weight: 400;
1740
+ }
1741
+
1742
+ .fa.fa-newspaper-o:before {
1743
+ content: "\f1ea";
1744
+ }
1745
+
1746
+ .fa.fa-paypal {
1747
+ font-family: "Font Awesome 5 Brands";
1748
+ font-weight: 400;
1749
+ }
1750
+
1751
+ .fa.fa-google-wallet {
1752
+ font-family: "Font Awesome 5 Brands";
1753
+ font-weight: 400;
1754
+ }
1755
+
1756
+ .fa.fa-cc-visa {
1757
+ font-family: "Font Awesome 5 Brands";
1758
+ font-weight: 400;
1759
+ }
1760
+
1761
+ .fa.fa-cc-mastercard {
1762
+ font-family: "Font Awesome 5 Brands";
1763
+ font-weight: 400;
1764
+ }
1765
+
1766
+ .fa.fa-cc-discover {
1767
+ font-family: "Font Awesome 5 Brands";
1768
+ font-weight: 400;
1769
+ }
1770
+
1771
+ .fa.fa-cc-amex {
1772
+ font-family: "Font Awesome 5 Brands";
1773
+ font-weight: 400;
1774
+ }
1775
+
1776
+ .fa.fa-cc-paypal {
1777
+ font-family: "Font Awesome 5 Brands";
1778
+ font-weight: 400;
1779
+ }
1780
+
1781
+ .fa.fa-cc-stripe {
1782
+ font-family: "Font Awesome 5 Brands";
1783
+ font-weight: 400;
1784
+ }
1785
+
1786
+ .fa.fa-bell-slash-o {
1787
+ font-family: "Font Awesome 5 Free";
1788
+ font-weight: 400;
1789
+ }
1790
+
1791
+ .fa.fa-bell-slash-o:before {
1792
+ content: "\f1f6";
1793
+ }
1794
+
1795
+ .fa.fa-trash:before {
1796
+ content: "\f2ed";
1797
+ }
1798
+
1799
+ .fa.fa-copyright {
1800
+ font-family: "Font Awesome 5 Free";
1801
+ font-weight: 400;
1802
+ }
1803
+
1804
+ .fa.fa-eyedropper:before {
1805
+ content: "\f1fb";
1806
+ }
1807
+
1808
+ .fa.fa-area-chart:before {
1809
+ content: "\f1fe";
1810
+ }
1811
+
1812
+ .fa.fa-pie-chart:before {
1813
+ content: "\f200";
1814
+ }
1815
+
1816
+ .fa.fa-line-chart:before {
1817
+ content: "\f201";
1818
+ }
1819
+
1820
+ .fa.fa-lastfm {
1821
+ font-family: "Font Awesome 5 Brands";
1822
+ font-weight: 400;
1823
+ }
1824
+
1825
+ .fa.fa-lastfm-square {
1826
+ font-family: "Font Awesome 5 Brands";
1827
+ font-weight: 400;
1828
+ }
1829
+
1830
+ .fa.fa-ioxhost {
1831
+ font-family: "Font Awesome 5 Brands";
1832
+ font-weight: 400;
1833
+ }
1834
+
1835
+ .fa.fa-angellist {
1836
+ font-family: "Font Awesome 5 Brands";
1837
+ font-weight: 400;
1838
+ }
1839
+
1840
+ .fa.fa-cc {
1841
+ font-family: "Font Awesome 5 Free";
1842
+ font-weight: 400;
1843
+ }
1844
+
1845
+ .fa.fa-cc:before {
1846
+ content: "\f20a";
1847
+ }
1848
+
1849
+ .fa.fa-ils:before {
1850
+ content: "\f20b";
1851
+ }
1852
+
1853
+ .fa.fa-shekel:before {
1854
+ content: "\f20b";
1855
+ }
1856
+
1857
+ .fa.fa-sheqel:before {
1858
+ content: "\f20b";
1859
+ }
1860
+
1861
+ .fa.fa-meanpath {
1862
+ font-family: "Font Awesome 5 Brands";
1863
+ font-weight: 400;
1864
+ }
1865
+
1866
+ .fa.fa-meanpath:before {
1867
+ content: "\f2b4";
1868
+ }
1869
+
1870
+ .fa.fa-buysellads {
1871
+ font-family: "Font Awesome 5 Brands";
1872
+ font-weight: 400;
1873
+ }
1874
+
1875
+ .fa.fa-connectdevelop {
1876
+ font-family: "Font Awesome 5 Brands";
1877
+ font-weight: 400;
1878
+ }
1879
+
1880
+ .fa.fa-dashcube {
1881
+ font-family: "Font Awesome 5 Brands";
1882
+ font-weight: 400;
1883
+ }
1884
+
1885
+ .fa.fa-forumbee {
1886
+ font-family: "Font Awesome 5 Brands";
1887
+ font-weight: 400;
1888
+ }
1889
+
1890
+ .fa.fa-leanpub {
1891
+ font-family: "Font Awesome 5 Brands";
1892
+ font-weight: 400;
1893
+ }
1894
+
1895
+ .fa.fa-sellsy {
1896
+ font-family: "Font Awesome 5 Brands";
1897
+ font-weight: 400;
1898
+ }
1899
+
1900
+ .fa.fa-shirtsinbulk {
1901
+ font-family: "Font Awesome 5 Brands";
1902
+ font-weight: 400;
1903
+ }
1904
+
1905
+ .fa.fa-simplybuilt {
1906
+ font-family: "Font Awesome 5 Brands";
1907
+ font-weight: 400;
1908
+ }
1909
+
1910
+ .fa.fa-skyatlas {
1911
+ font-family: "Font Awesome 5 Brands";
1912
+ font-weight: 400;
1913
+ }
1914
+
1915
+ .fa.fa-diamond {
1916
+ font-family: "Font Awesome 5 Free";
1917
+ font-weight: 400;
1918
+ }
1919
+
1920
+ .fa.fa-diamond:before {
1921
+ content: "\f3a5";
1922
+ }
1923
+
1924
+ .fa.fa-intersex:before {
1925
+ content: "\f224";
1926
+ }
1927
+
1928
+ .fa.fa-facebook-official {
1929
+ font-family: "Font Awesome 5 Brands";
1930
+ font-weight: 400;
1931
+ }
1932
+
1933
+ .fa.fa-facebook-official:before {
1934
+ content: "\f09a";
1935
+ }
1936
+
1937
+ .fa.fa-pinterest-p {
1938
+ font-family: "Font Awesome 5 Brands";
1939
+ font-weight: 400;
1940
+ }
1941
+
1942
+ .fa.fa-whatsapp {
1943
+ font-family: "Font Awesome 5 Brands";
1944
+ font-weight: 400;
1945
+ }
1946
+
1947
+ .fa.fa-hotel:before {
1948
+ content: "\f236";
1949
+ }
1950
+
1951
+ .fa.fa-viacoin {
1952
+ font-family: "Font Awesome 5 Brands";
1953
+ font-weight: 400;
1954
+ }
1955
+
1956
+ .fa.fa-medium {
1957
+ font-family: "Font Awesome 5 Brands";
1958
+ font-weight: 400;
1959
+ }
1960
+
1961
+ .fa.fa-y-combinator {
1962
+ font-family: "Font Awesome 5 Brands";
1963
+ font-weight: 400;
1964
+ }
1965
+
1966
+ .fa.fa-yc {
1967
+ font-family: "Font Awesome 5 Brands";
1968
+ font-weight: 400;
1969
+ }
1970
+
1971
+ .fa.fa-yc:before {
1972
+ content: "\f23b";
1973
+ }
1974
+
1975
+ .fa.fa-optin-monster {
1976
+ font-family: "Font Awesome 5 Brands";
1977
+ font-weight: 400;
1978
+ }
1979
+
1980
+ .fa.fa-opencart {
1981
+ font-family: "Font Awesome 5 Brands";
1982
+ font-weight: 400;
1983
+ }
1984
+
1985
+ .fa.fa-expeditedssl {
1986
+ font-family: "Font Awesome 5 Brands";
1987
+ font-weight: 400;
1988
+ }
1989
+
1990
+ .fa.fa-battery-4:before {
1991
+ content: "\f240";
1992
+ }
1993
+
1994
+ .fa.fa-battery:before {
1995
+ content: "\f240";
1996
+ }
1997
+
1998
+ .fa.fa-battery-3:before {
1999
+ content: "\f241";
2000
+ }
2001
+
2002
+ .fa.fa-battery-2:before {
2003
+ content: "\f242";
2004
+ }
2005
+
2006
+ .fa.fa-battery-1:before {
2007
+ content: "\f243";
2008
+ }
2009
+
2010
+ .fa.fa-battery-0:before {
2011
+ content: "\f244";
2012
+ }
2013
+
2014
+ .fa.fa-object-group {
2015
+ font-family: "Font Awesome 5 Free";
2016
+ font-weight: 400;
2017
+ }
2018
+
2019
+ .fa.fa-object-ungroup {
2020
+ font-family: "Font Awesome 5 Free";
2021
+ font-weight: 400;
2022
+ }
2023
+
2024
+ .fa.fa-sticky-note-o {
2025
+ font-family: "Font Awesome 5 Free";
2026
+ font-weight: 400;
2027
+ }
2028
+
2029
+ .fa.fa-sticky-note-o:before {
2030
+ content: "\f249";
2031
+ }
2032
+
2033
+ .fa.fa-cc-jcb {
2034
+ font-family: "Font Awesome 5 Brands";
2035
+ font-weight: 400;
2036
+ }
2037
+
2038
+ .fa.fa-cc-diners-club {
2039
+ font-family: "Font Awesome 5 Brands";
2040
+ font-weight: 400;
2041
+ }
2042
+
2043
+ .fa.fa-clone {
2044
+ font-family: "Font Awesome 5 Free";
2045
+ font-weight: 400;
2046
+ }
2047
+
2048
+ .fa.fa-hourglass-o {
2049
+ font-family: "Font Awesome 5 Free";
2050
+ font-weight: 400;
2051
+ }
2052
+
2053
+ .fa.fa-hourglass-o:before {
2054
+ content: "\f254";
2055
+ }
2056
+
2057
+ .fa.fa-hourglass-1:before {
2058
+ content: "\f251";
2059
+ }
2060
+
2061
+ .fa.fa-hourglass-2:before {
2062
+ content: "\f252";
2063
+ }
2064
+
2065
+ .fa.fa-hourglass-3:before {
2066
+ content: "\f253";
2067
+ }
2068
+
2069
+ .fa.fa-hand-rock-o {
2070
+ font-family: "Font Awesome 5 Free";
2071
+ font-weight: 400;
2072
+ }
2073
+
2074
+ .fa.fa-hand-rock-o:before {
2075
+ content: "\f255";
2076
+ }
2077
+
2078
+ .fa.fa-hand-grab-o {
2079
+ font-family: "Font Awesome 5 Free";
2080
+ font-weight: 400;
2081
+ }
2082
+
2083
+ .fa.fa-hand-grab-o:before {
2084
+ content: "\f255";
2085
+ }
2086
+
2087
+ .fa.fa-hand-paper-o {
2088
+ font-family: "Font Awesome 5 Free";
2089
+ font-weight: 400;
2090
+ }
2091
+
2092
+ .fa.fa-hand-paper-o:before {
2093
+ content: "\f256";
2094
+ }
2095
+
2096
+ .fa.fa-hand-stop-o {
2097
+ font-family: "Font Awesome 5 Free";
2098
+ font-weight: 400;
2099
+ }
2100
+
2101
+ .fa.fa-hand-stop-o:before {
2102
+ content: "\f256";
2103
+ }
2104
+
2105
+ .fa.fa-hand-scissors-o {
2106
+ font-family: "Font Awesome 5 Free";
2107
+ font-weight: 400;
2108
+ }
2109
+
2110
+ .fa.fa-hand-scissors-o:before {
2111
+ content: "\f257";
2112
+ }
2113
+
2114
+ .fa.fa-hand-lizard-o {
2115
+ font-family: "Font Awesome 5 Free";
2116
+ font-weight: 400;
2117
+ }
2118
+
2119
+ .fa.fa-hand-lizard-o:before {
2120
+ content: "\f258";
2121
+ }
2122
+
2123
+ .fa.fa-hand-spock-o {
2124
+ font-family: "Font Awesome 5 Free";
2125
+ font-weight: 400;
2126
+ }
2127
+
2128
+ .fa.fa-hand-spock-o:before {
2129
+ content: "\f259";
2130
+ }
2131
+
2132
+ .fa.fa-hand-pointer-o {
2133
+ font-family: "Font Awesome 5 Free";
2134
+ font-weight: 400;
2135
+ }
2136
+
2137
+ .fa.fa-hand-pointer-o:before {
2138
+ content: "\f25a";
2139
+ }
2140
+
2141
+ .fa.fa-hand-peace-o {
2142
+ font-family: "Font Awesome 5 Free";
2143
+ font-weight: 400;
2144
+ }
2145
+
2146
+ .fa.fa-hand-peace-o:before {
2147
+ content: "\f25b";
2148
+ }
2149
+
2150
+ .fa.fa-registered {
2151
+ font-family: "Font Awesome 5 Free";
2152
+ font-weight: 400;
2153
+ }
2154
+
2155
+ .fa.fa-creative-commons {
2156
+ font-family: "Font Awesome 5 Brands";
2157
+ font-weight: 400;
2158
+ }
2159
+
2160
+ .fa.fa-gg {
2161
+ font-family: "Font Awesome 5 Brands";
2162
+ font-weight: 400;
2163
+ }
2164
+
2165
+ .fa.fa-gg-circle {
2166
+ font-family: "Font Awesome 5 Brands";
2167
+ font-weight: 400;
2168
+ }
2169
+
2170
+ .fa.fa-tripadvisor {
2171
+ font-family: "Font Awesome 5 Brands";
2172
+ font-weight: 400;
2173
+ }
2174
+
2175
+ .fa.fa-odnoklassniki {
2176
+ font-family: "Font Awesome 5 Brands";
2177
+ font-weight: 400;
2178
+ }
2179
+
2180
+ .fa.fa-odnoklassniki-square {
2181
+ font-family: "Font Awesome 5 Brands";
2182
+ font-weight: 400;
2183
+ }
2184
+
2185
+ .fa.fa-get-pocket {
2186
+ font-family: "Font Awesome 5 Brands";
2187
+ font-weight: 400;
2188
+ }
2189
+
2190
+ .fa.fa-wikipedia-w {
2191
+ font-family: "Font Awesome 5 Brands";
2192
+ font-weight: 400;
2193
+ }
2194
+
2195
+ .fa.fa-safari {
2196
+ font-family: "Font Awesome 5 Brands";
2197
+ font-weight: 400;
2198
+ }
2199
+
2200
+ .fa.fa-chrome {
2201
+ font-family: "Font Awesome 5 Brands";
2202
+ font-weight: 400;
2203
+ }
2204
+
2205
+ .fa.fa-firefox {
2206
+ font-family: "Font Awesome 5 Brands";
2207
+ font-weight: 400;
2208
+ }
2209
+
2210
+ .fa.fa-opera {
2211
+ font-family: "Font Awesome 5 Brands";
2212
+ font-weight: 400;
2213
+ }
2214
+
2215
+ .fa.fa-internet-explorer {
2216
+ font-family: "Font Awesome 5 Brands";
2217
+ font-weight: 400;
2218
+ }
2219
+
2220
+ .fa.fa-television:before {
2221
+ content: "\f26c";
2222
+ }
2223
+
2224
+ .fa.fa-contao {
2225
+ font-family: "Font Awesome 5 Brands";
2226
+ font-weight: 400;
2227
+ }
2228
+
2229
+ .fa.fa-500px {
2230
+ font-family: "Font Awesome 5 Brands";
2231
+ font-weight: 400;
2232
+ }
2233
+
2234
+ .fa.fa-amazon {
2235
+ font-family: "Font Awesome 5 Brands";
2236
+ font-weight: 400;
2237
+ }
2238
+
2239
+ .fa.fa-calendar-plus-o {
2240
+ font-family: "Font Awesome 5 Free";
2241
+ font-weight: 400;
2242
+ }
2243
+
2244
+ .fa.fa-calendar-plus-o:before {
2245
+ content: "\f271";
2246
+ }
2247
+
2248
+ .fa.fa-calendar-minus-o {
2249
+ font-family: "Font Awesome 5 Free";
2250
+ font-weight: 400;
2251
+ }
2252
+
2253
+ .fa.fa-calendar-minus-o:before {
2254
+ content: "\f272";
2255
+ }
2256
+
2257
+ .fa.fa-calendar-times-o {
2258
+ font-family: "Font Awesome 5 Free";
2259
+ font-weight: 400;
2260
+ }
2261
+
2262
+ .fa.fa-calendar-times-o:before {
2263
+ content: "\f273";
2264
+ }
2265
+
2266
+ .fa.fa-calendar-check-o {
2267
+ font-family: "Font Awesome 5 Free";
2268
+ font-weight: 400;
2269
+ }
2270
+
2271
+ .fa.fa-calendar-check-o:before {
2272
+ content: "\f274";
2273
+ }
2274
+
2275
+ .fa.fa-map-o {
2276
+ font-family: "Font Awesome 5 Free";
2277
+ font-weight: 400;
2278
+ }
2279
+
2280
+ .fa.fa-map-o:before {
2281
+ content: "\f279";
2282
+ }
2283
+
2284
+ .fa.fa-commenting {
2285
+ font-family: "Font Awesome 5 Free";
2286
+ font-weight: 400;
2287
+ }
2288
+
2289
+ .fa.fa-commenting:before {
2290
+ content: "\f4ad";
2291
+ }
2292
+
2293
+ .fa.fa-commenting-o {
2294
+ font-family: "Font Awesome 5 Free";
2295
+ font-weight: 400;
2296
+ }
2297
+
2298
+ .fa.fa-commenting-o:before {
2299
+ content: "\f4ad";
2300
+ }
2301
+
2302
+ .fa.fa-houzz {
2303
+ font-family: "Font Awesome 5 Brands";
2304
+ font-weight: 400;
2305
+ }
2306
+
2307
+ .fa.fa-vimeo {
2308
+ font-family: "Font Awesome 5 Brands";
2309
+ font-weight: 400;
2310
+ }
2311
+
2312
+ .fa.fa-vimeo:before {
2313
+ content: "\f27d";
2314
+ }
2315
+
2316
+ .fa.fa-black-tie {
2317
+ font-family: "Font Awesome 5 Brands";
2318
+ font-weight: 400;
2319
+ }
2320
+
2321
+ .fa.fa-fonticons {
2322
+ font-family: "Font Awesome 5 Brands";
2323
+ font-weight: 400;
2324
+ }
2325
+
2326
+ .fa.fa-reddit-alien {
2327
+ font-family: "Font Awesome 5 Brands";
2328
+ font-weight: 400;
2329
+ }
2330
+
2331
+ .fa.fa-edge {
2332
+ font-family: "Font Awesome 5 Brands";
2333
+ font-weight: 400;
2334
+ }
2335
+
2336
+ .fa.fa-credit-card-alt:before {
2337
+ content: "\f09d";
2338
+ }
2339
+
2340
+ .fa.fa-codiepie {
2341
+ font-family: "Font Awesome 5 Brands";
2342
+ font-weight: 400;
2343
+ }
2344
+
2345
+ .fa.fa-modx {
2346
+ font-family: "Font Awesome 5 Brands";
2347
+ font-weight: 400;
2348
+ }
2349
+
2350
+ .fa.fa-fort-awesome {
2351
+ font-family: "Font Awesome 5 Brands";
2352
+ font-weight: 400;
2353
+ }
2354
+
2355
+ .fa.fa-usb {
2356
+ font-family: "Font Awesome 5 Brands";
2357
+ font-weight: 400;
2358
+ }
2359
+
2360
+ .fa.fa-product-hunt {
2361
+ font-family: "Font Awesome 5 Brands";
2362
+ font-weight: 400;
2363
+ }
2364
+
2365
+ .fa.fa-mixcloud {
2366
+ font-family: "Font Awesome 5 Brands";
2367
+ font-weight: 400;
2368
+ }
2369
+
2370
+ .fa.fa-scribd {
2371
+ font-family: "Font Awesome 5 Brands";
2372
+ font-weight: 400;
2373
+ }
2374
+
2375
+ .fa.fa-pause-circle-o {
2376
+ font-family: "Font Awesome 5 Free";
2377
+ font-weight: 400;
2378
+ }
2379
+
2380
+ .fa.fa-pause-circle-o:before {
2381
+ content: "\f28b";
2382
+ }
2383
+
2384
+ .fa.fa-stop-circle-o {
2385
+ font-family: "Font Awesome 5 Free";
2386
+ font-weight: 400;
2387
+ }
2388
+
2389
+ .fa.fa-stop-circle-o:before {
2390
+ content: "\f28d";
2391
+ }
2392
+
2393
+ .fa.fa-bluetooth {
2394
+ font-family: "Font Awesome 5 Brands";
2395
+ font-weight: 400;
2396
+ }
2397
+
2398
+ .fa.fa-bluetooth-b {
2399
+ font-family: "Font Awesome 5 Brands";
2400
+ font-weight: 400;
2401
+ }
2402
+
2403
+ .fa.fa-gitlab {
2404
+ font-family: "Font Awesome 5 Brands";
2405
+ font-weight: 400;
2406
+ }
2407
+
2408
+ .fa.fa-wpbeginner {
2409
+ font-family: "Font Awesome 5 Brands";
2410
+ font-weight: 400;
2411
+ }
2412
+
2413
+ .fa.fa-wpforms {
2414
+ font-family: "Font Awesome 5 Brands";
2415
+ font-weight: 400;
2416
+ }
2417
+
2418
+ .fa.fa-envira {
2419
+ font-family: "Font Awesome 5 Brands";
2420
+ font-weight: 400;
2421
+ }
2422
+
2423
+ .fa.fa-wheelchair-alt {
2424
+ font-family: "Font Awesome 5 Brands";
2425
+ font-weight: 400;
2426
+ }
2427
+
2428
+ .fa.fa-wheelchair-alt:before {
2429
+ content: "\f368";
2430
+ }
2431
+
2432
+ .fa.fa-question-circle-o {
2433
+ font-family: "Font Awesome 5 Free";
2434
+ font-weight: 400;
2435
+ }
2436
+
2437
+ .fa.fa-question-circle-o:before {
2438
+ content: "\f059";
2439
+ }
2440
+
2441
+ .fa.fa-volume-control-phone:before {
2442
+ content: "\f2a0";
2443
+ }
2444
+
2445
+ .fa.fa-asl-interpreting:before {
2446
+ content: "\f2a3";
2447
+ }
2448
+
2449
+ .fa.fa-deafness:before {
2450
+ content: "\f2a4";
2451
+ }
2452
+
2453
+ .fa.fa-hard-of-hearing:before {
2454
+ content: "\f2a4";
2455
+ }
2456
+
2457
+ .fa.fa-glide {
2458
+ font-family: "Font Awesome 5 Brands";
2459
+ font-weight: 400;
2460
+ }
2461
+
2462
+ .fa.fa-glide-g {
2463
+ font-family: "Font Awesome 5 Brands";
2464
+ font-weight: 400;
2465
+ }
2466
+
2467
+ .fa.fa-signing:before {
2468
+ content: "\f2a7";
2469
+ }
2470
+
2471
+ .fa.fa-viadeo {
2472
+ font-family: "Font Awesome 5 Brands";
2473
+ font-weight: 400;
2474
+ }
2475
+
2476
+ .fa.fa-viadeo-square {
2477
+ font-family: "Font Awesome 5 Brands";
2478
+ font-weight: 400;
2479
+ }
2480
+
2481
+ .fa.fa-snapchat {
2482
+ font-family: "Font Awesome 5 Brands";
2483
+ font-weight: 400;
2484
+ }
2485
+
2486
+ .fa.fa-snapchat-ghost {
2487
+ font-family: "Font Awesome 5 Brands";
2488
+ font-weight: 400;
2489
+ }
2490
+
2491
+ .fa.fa-snapchat-square {
2492
+ font-family: "Font Awesome 5 Brands";
2493
+ font-weight: 400;
2494
+ }
2495
+
2496
+ .fa.fa-pied-piper {
2497
+ font-family: "Font Awesome 5 Brands";
2498
+ font-weight: 400;
2499
+ }
2500
+
2501
+ .fa.fa-first-order {
2502
+ font-family: "Font Awesome 5 Brands";
2503
+ font-weight: 400;
2504
+ }
2505
+
2506
+ .fa.fa-yoast {
2507
+ font-family: "Font Awesome 5 Brands";
2508
+ font-weight: 400;
2509
+ }
2510
+
2511
+ .fa.fa-themeisle {
2512
+ font-family: "Font Awesome 5 Brands";
2513
+ font-weight: 400;
2514
+ }
2515
+
2516
+ .fa.fa-google-plus-official {
2517
+ font-family: "Font Awesome 5 Brands";
2518
+ font-weight: 400;
2519
+ }
2520
+
2521
+ .fa.fa-google-plus-official:before {
2522
+ content: "\f2b3";
2523
+ }
2524
+
2525
+ .fa.fa-google-plus-circle {
2526
+ font-family: "Font Awesome 5 Brands";
2527
+ font-weight: 400;
2528
+ }
2529
+
2530
+ .fa.fa-google-plus-circle:before {
2531
+ content: "\f2b3";
2532
+ }
2533
+
2534
+ .fa.fa-font-awesome {
2535
+ font-family: "Font Awesome 5 Brands";
2536
+ font-weight: 400;
2537
+ }
2538
+
2539
+ .fa.fa-fa {
2540
+ font-family: "Font Awesome 5 Brands";
2541
+ font-weight: 400;
2542
+ }
2543
+
2544
+ .fa.fa-fa:before {
2545
+ content: "\f2b4";
2546
+ }
2547
+
2548
+ .fa.fa-handshake-o {
2549
+ font-family: "Font Awesome 5 Free";
2550
+ font-weight: 400;
2551
+ }
2552
+
2553
+ .fa.fa-handshake-o:before {
2554
+ content: "\f2b5";
2555
+ }
2556
+
2557
+ .fa.fa-envelope-open-o {
2558
+ font-family: "Font Awesome 5 Free";
2559
+ font-weight: 400;
2560
+ }
2561
+
2562
+ .fa.fa-envelope-open-o:before {
2563
+ content: "\f2b6";
2564
+ }
2565
+
2566
+ .fa.fa-linode {
2567
+ font-family: "Font Awesome 5 Brands";
2568
+ font-weight: 400;
2569
+ }
2570
+
2571
+ .fa.fa-address-book-o {
2572
+ font-family: "Font Awesome 5 Free";
2573
+ font-weight: 400;
2574
+ }
2575
+
2576
+ .fa.fa-address-book-o:before {
2577
+ content: "\f2b9";
2578
+ }
2579
+
2580
+ .fa.fa-vcard:before {
2581
+ content: "\f2bb";
2582
+ }
2583
+
2584
+ .fa.fa-address-card-o {
2585
+ font-family: "Font Awesome 5 Free";
2586
+ font-weight: 400;
2587
+ }
2588
+
2589
+ .fa.fa-address-card-o:before {
2590
+ content: "\f2bb";
2591
+ }
2592
+
2593
+ .fa.fa-vcard-o {
2594
+ font-family: "Font Awesome 5 Free";
2595
+ font-weight: 400;
2596
+ }
2597
+
2598
+ .fa.fa-vcard-o:before {
2599
+ content: "\f2bb";
2600
+ }
2601
+
2602
+ .fa.fa-user-circle-o {
2603
+ font-family: "Font Awesome 5 Free";
2604
+ font-weight: 400;
2605
+ }
2606
+
2607
+ .fa.fa-user-circle-o:before {
2608
+ content: "\f2bd";
2609
+ }
2610
+
2611
+ .fa.fa-user-o {
2612
+ font-family: "Font Awesome 5 Free";
2613
+ font-weight: 400;
2614
+ }
2615
+
2616
+ .fa.fa-user-o:before {
2617
+ content: "\f007";
2618
+ }
2619
+
2620
+ .fa.fa-id-badge {
2621
+ font-family: "Font Awesome 5 Free";
2622
+ font-weight: 400;
2623
+ }
2624
+
2625
+ .fa.fa-drivers-license:before {
2626
+ content: "\f2c2";
2627
+ }
2628
+
2629
+ .fa.fa-id-card-o {
2630
+ font-family: "Font Awesome 5 Free";
2631
+ font-weight: 400;
2632
+ }
2633
+
2634
+ .fa.fa-id-card-o:before {
2635
+ content: "\f2c2";
2636
+ }
2637
+
2638
+ .fa.fa-drivers-license-o {
2639
+ font-family: "Font Awesome 5 Free";
2640
+ font-weight: 400;
2641
+ }
2642
+
2643
+ .fa.fa-drivers-license-o:before {
2644
+ content: "\f2c2";
2645
+ }
2646
+
2647
+ .fa.fa-quora {
2648
+ font-family: "Font Awesome 5 Brands";
2649
+ font-weight: 400;
2650
+ }
2651
+
2652
+ .fa.fa-free-code-camp {
2653
+ font-family: "Font Awesome 5 Brands";
2654
+ font-weight: 400;
2655
+ }
2656
+
2657
+ .fa.fa-telegram {
2658
+ font-family: "Font Awesome 5 Brands";
2659
+ font-weight: 400;
2660
+ }
2661
+
2662
+ .fa.fa-thermometer-4:before {
2663
+ content: "\f2c7";
2664
+ }
2665
+
2666
+ .fa.fa-thermometer:before {
2667
+ content: "\f2c7";
2668
+ }
2669
+
2670
+ .fa.fa-thermometer-3:before {
2671
+ content: "\f2c8";
2672
+ }
2673
+
2674
+ .fa.fa-thermometer-2:before {
2675
+ content: "\f2c9";
2676
+ }
2677
+
2678
+ .fa.fa-thermometer-1:before {
2679
+ content: "\f2ca";
2680
+ }
2681
+
2682
+ .fa.fa-thermometer-0:before {
2683
+ content: "\f2cb";
2684
+ }
2685
+
2686
+ .fa.fa-bathtub:before {
2687
+ content: "\f2cd";
2688
+ }
2689
+
2690
+ .fa.fa-s15:before {
2691
+ content: "\f2cd";
2692
+ }
2693
+
2694
+ .fa.fa-window-maximize {
2695
+ font-family: "Font Awesome 5 Free";
2696
+ font-weight: 400;
2697
+ }
2698
+
2699
+ .fa.fa-window-restore {
2700
+ font-family: "Font Awesome 5 Free";
2701
+ font-weight: 400;
2702
+ }
2703
+
2704
+ .fa.fa-times-rectangle:before {
2705
+ content: "\f410";
2706
+ }
2707
+
2708
+ .fa.fa-window-close-o {
2709
+ font-family: "Font Awesome 5 Free";
2710
+ font-weight: 400;
2711
+ }
2712
+
2713
+ .fa.fa-window-close-o:before {
2714
+ content: "\f410";
2715
+ }
2716
+
2717
+ .fa.fa-times-rectangle-o {
2718
+ font-family: "Font Awesome 5 Free";
2719
+ font-weight: 400;
2720
+ }
2721
+
2722
+ .fa.fa-times-rectangle-o:before {
2723
+ content: "\f410";
2724
+ }
2725
+
2726
+ .fa.fa-bandcamp {
2727
+ font-family: "Font Awesome 5 Brands";
2728
+ font-weight: 400;
2729
+ }
2730
+
2731
+ .fa.fa-grav {
2732
+ font-family: "Font Awesome 5 Brands";
2733
+ font-weight: 400;
2734
+ }
2735
+
2736
+ .fa.fa-etsy {
2737
+ font-family: "Font Awesome 5 Brands";
2738
+ font-weight: 400;
2739
+ }
2740
+
2741
+ .fa.fa-imdb {
2742
+ font-family: "Font Awesome 5 Brands";
2743
+ font-weight: 400;
2744
+ }
2745
+
2746
+ .fa.fa-ravelry {
2747
+ font-family: "Font Awesome 5 Brands";
2748
+ font-weight: 400;
2749
+ }
2750
+
2751
+ .fa.fa-eercast {
2752
+ font-family: "Font Awesome 5 Brands";
2753
+ font-weight: 400;
2754
+ }
2755
+
2756
+ .fa.fa-eercast:before {
2757
+ content: "\f2da";
2758
+ }
2759
+
2760
+ .fa.fa-snowflake-o {
2761
+ font-family: "Font Awesome 5 Free";
2762
+ font-weight: 400;
2763
+ }
2764
+
2765
+ .fa.fa-snowflake-o:before {
2766
+ content: "\f2dc";
2767
+ }
2768
+
2769
+ .fa.fa-superpowers {
2770
+ font-family: "Font Awesome 5 Brands";
2771
+ font-weight: 400;
2772
+ }
2773
+
2774
+ .fa.fa-wpexplorer {
2775
+ font-family: "Font Awesome 5 Brands";
2776
+ font-weight: 400;
2777
+ }
2778
+
2779
+ .fa.fa-spotify {
2780
+ font-family: "Font Awesome 5 Brands";
2781
+ font-weight: 400;
2782
+ }
obfx_modules/gutenberg-blocks/assets/fontawesome/css/v4-shims.min.css ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ /*!
2
+ * Font Awesome Free 5.2.0 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ */
5
+ .fa.fa-glass:before{content:"\f000"}.fa.fa-meetup{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-star-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-o:before{content:"\f005"}.fa.fa-close:before,.fa.fa-remove:before{content:"\f00d"}.fa.fa-gear:before{content:"\f013"}.fa.fa-trash-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-trash-o:before{content:"\f2ed"}.fa.fa-file-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-o:before{content:"\f15b"}.fa.fa-clock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-clock-o:before{content:"\f017"}.fa.fa-arrow-circle-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-down:before{content:"\f358"}.fa.fa-arrow-circle-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-up:before{content:"\f35b"}.fa.fa-play-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-play-circle-o:before{content:"\f144"}.fa.fa-repeat:before,.fa.fa-rotate-right:before{content:"\f01e"}.fa.fa-refresh:before{content:"\f021"}.fa.fa-list-alt{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-dedent:before{content:"\f03b"}.fa.fa-video-camera:before{content:"\f03d"}.fa.fa-picture-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-picture-o:before{content:"\f03e"}.fa.fa-photo{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-photo:before{content:"\f03e"}.fa.fa-image{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-image:before{content:"\f03e"}.fa.fa-pencil:before{content:"\f303"}.fa.fa-map-marker:before{content:"\f3c5"}.fa.fa-pencil-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-pencil-square-o:before{content:"\f044"}.fa.fa-share-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-share-square-o:before{content:"\f14d"}.fa.fa-check-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-check-square-o:before{content:"\f14a"}.fa.fa-arrows:before{content:"\f0b2"}.fa.fa-times-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-circle-o:before{content:"\f057"}.fa.fa-check-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-check-circle-o:before{content:"\f058"}.fa.fa-mail-forward:before{content:"\f064"}.fa.fa-eye,.fa.fa-eye-slash{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-warning:before{content:"\f071"}.fa.fa-calendar:before{content:"\f073"}.fa.fa-arrows-v:before{content:"\f338"}.fa.fa-arrows-h:before{content:"\f337"}.fa.fa-bar-chart{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bar-chart:before{content:"\f080"}.fa.fa-bar-chart-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bar-chart-o:before{content:"\f080"}.fa.fa-facebook-square,.fa.fa-twitter-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-gears:before{content:"\f085"}.fa.fa-thumbs-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-thumbs-o-up:before{content:"\f164"}.fa.fa-thumbs-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-thumbs-o-down:before{content:"\f165"}.fa.fa-heart-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-heart-o:before{content:"\f004"}.fa.fa-sign-out:before{content:"\f2f5"}.fa.fa-linkedin-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-linkedin-square:before{content:"\f08c"}.fa.fa-thumb-tack:before{content:"\f08d"}.fa.fa-external-link:before{content:"\f35d"}.fa.fa-sign-in:before{content:"\f2f6"}.fa.fa-github-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-lemon-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-lemon-o:before{content:"\f094"}.fa.fa-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-square-o:before{content:"\f0c8"}.fa.fa-bookmark-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bookmark-o:before{content:"\f02e"}.fa.fa-facebook,.fa.fa-twitter{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook:before{content:"\f39e"}.fa.fa-facebook-f{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook-f:before{content:"\f39e"}.fa.fa-github{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-credit-card{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-feed:before{content:"\f09e"}.fa.fa-hdd-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hdd-o:before{content:"\f0a0"}.fa.fa-hand-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-right:before{content:"\f0a4"}.fa.fa-hand-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-left:before{content:"\f0a5"}.fa.fa-hand-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-up:before{content:"\f0a6"}.fa.fa-hand-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-down:before{content:"\f0a7"}.fa.fa-arrows-alt:before{content:"\f31e"}.fa.fa-group:before{content:"\f0c0"}.fa.fa-chain:before{content:"\f0c1"}.fa.fa-scissors:before{content:"\f0c4"}.fa.fa-files-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-files-o:before{content:"\f0c5"}.fa.fa-floppy-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-floppy-o:before{content:"\f0c7"}.fa.fa-navicon:before,.fa.fa-reorder:before{content:"\f0c9"}.fa.fa-google-plus,.fa.fa-google-plus-square,.fa.fa-pinterest,.fa.fa-pinterest-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus:before{content:"\f0d5"}.fa.fa-money{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-money:before{content:"\f3d1"}.fa.fa-unsorted:before{content:"\f0dc"}.fa.fa-sort-desc:before{content:"\f0dd"}.fa.fa-sort-asc:before{content:"\f0de"}.fa.fa-linkedin{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-linkedin:before{content:"\f0e1"}.fa.fa-rotate-left:before{content:"\f0e2"}.fa.fa-legal:before{content:"\f0e3"}.fa.fa-dashboard:before,.fa.fa-tachometer:before{content:"\f3fd"}.fa.fa-comment-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-comment-o:before{content:"\f075"}.fa.fa-comments-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-comments-o:before{content:"\f086"}.fa.fa-flash:before{content:"\f0e7"}.fa.fa-clipboard,.fa.fa-paste{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-paste:before{content:"\f328"}.fa.fa-lightbulb-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-lightbulb-o:before{content:"\f0eb"}.fa.fa-exchange:before{content:"\f362"}.fa.fa-cloud-download:before{content:"\f381"}.fa.fa-cloud-upload:before{content:"\f382"}.fa.fa-bell-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bell-o:before{content:"\f0f3"}.fa.fa-cutlery:before{content:"\f2e7"}.fa.fa-file-text-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-text-o:before{content:"\f15c"}.fa.fa-building-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-building-o:before{content:"\f1ad"}.fa.fa-hospital-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hospital-o:before{content:"\f0f8"}.fa.fa-tablet:before{content:"\f3fa"}.fa.fa-mobile-phone:before,.fa.fa-mobile:before{content:"\f3cd"}.fa.fa-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-circle-o:before{content:"\f111"}.fa.fa-mail-reply:before{content:"\f3e5"}.fa.fa-github-alt{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-folder-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-folder-o:before{content:"\f07b"}.fa.fa-folder-open-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-folder-open-o:before{content:"\f07c"}.fa.fa-smile-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-smile-o:before{content:"\f118"}.fa.fa-frown-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-frown-o:before{content:"\f119"}.fa.fa-meh-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-meh-o:before{content:"\f11a"}.fa.fa-keyboard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-keyboard-o:before{content:"\f11c"}.fa.fa-flag-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-flag-o:before{content:"\f024"}.fa.fa-mail-reply-all:before{content:"\f122"}.fa.fa-star-half-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-o:before{content:"\f089"}.fa.fa-star-half-empty{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-empty:before{content:"\f089"}.fa.fa-star-half-full{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-full:before{content:"\f089"}.fa.fa-code-fork:before{content:"\f126"}.fa.fa-chain-broken:before{content:"\f127"}.fa.fa-shield:before{content:"\f3ed"}.fa.fa-calendar-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-o:before{content:"\f133"}.fa.fa-css3,.fa.fa-html5,.fa.fa-maxcdn{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ticket:before{content:"\f3ff"}.fa.fa-minus-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-minus-square-o:before{content:"\f146"}.fa.fa-level-up:before{content:"\f3bf"}.fa.fa-level-down:before{content:"\f3be"}.fa.fa-pencil-square:before{content:"\f14b"}.fa.fa-external-link-square:before{content:"\f360"}.fa.fa-compass{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-down:before{content:"\f150"}.fa.fa-toggle-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-down:before{content:"\f150"}.fa.fa-caret-square-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-up:before{content:"\f151"}.fa.fa-toggle-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-up:before{content:"\f151"}.fa.fa-caret-square-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-right:before{content:"\f152"}.fa.fa-toggle-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-right:before{content:"\f152"}.fa.fa-eur:before,.fa.fa-euro:before{content:"\f153"}.fa.fa-gbp:before{content:"\f154"}.fa.fa-dollar:before,.fa.fa-usd:before{content:"\f155"}.fa.fa-inr:before,.fa.fa-rupee:before{content:"\f156"}.fa.fa-cny:before,.fa.fa-jpy:before,.fa.fa-rmb:before,.fa.fa-yen:before{content:"\f157"}.fa.fa-rouble:before,.fa.fa-rub:before,.fa.fa-ruble:before{content:"\f158"}.fa.fa-krw:before,.fa.fa-won:before{content:"\f159"}.fa.fa-bitcoin,.fa.fa-btc{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bitcoin:before{content:"\f15a"}.fa.fa-file-text:before{content:"\f15c"}.fa.fa-sort-alpha-asc:before{content:"\f15d"}.fa.fa-sort-alpha-desc:before{content:"\f15e"}.fa.fa-sort-amount-asc:before{content:"\f160"}.fa.fa-sort-amount-desc:before{content:"\f161"}.fa.fa-sort-numeric-asc:before{content:"\f162"}.fa.fa-sort-numeric-desc:before{content:"\f163"}.fa.fa-xing,.fa.fa-xing-square,.fa.fa-youtube,.fa.fa-youtube-play,.fa.fa-youtube-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-youtube-play:before{content:"\f167"}.fa.fa-adn,.fa.fa-bitbucket,.fa.fa-bitbucket-square,.fa.fa-dropbox,.fa.fa-flickr,.fa.fa-instagram,.fa.fa-stack-overflow{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bitbucket-square:before{content:"\f171"}.fa.fa-tumblr,.fa.fa-tumblr-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-long-arrow-down:before{content:"\f309"}.fa.fa-long-arrow-up:before{content:"\f30c"}.fa.fa-long-arrow-left:before{content:"\f30a"}.fa.fa-long-arrow-right:before{content:"\f30b"}.fa.fa-android,.fa.fa-apple,.fa.fa-dribbble,.fa.fa-foursquare,.fa.fa-gittip,.fa.fa-gratipay,.fa.fa-linux,.fa.fa-skype,.fa.fa-trello,.fa.fa-windows{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-gittip:before{content:"\f184"}.fa.fa-sun-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-sun-o:before{content:"\f185"}.fa.fa-moon-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-moon-o:before{content:"\f186"}.fa.fa-pagelines,.fa.fa-renren,.fa.fa-stack-exchange,.fa.fa-vk,.fa.fa-weibo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-arrow-circle-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-right:before{content:"\f35a"}.fa.fa-arrow-circle-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-left:before{content:"\f359"}.fa.fa-caret-square-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-left:before{content:"\f191"}.fa.fa-toggle-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-left:before{content:"\f191"}.fa.fa-dot-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-dot-circle-o:before{content:"\f192"}.fa.fa-vimeo-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-try:before,.fa.fa-turkish-lira:before{content:"\f195"}.fa.fa-plus-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-plus-square-o:before{content:"\f0fe"}.fa.fa-openid,.fa.fa-slack,.fa.fa-wordpress{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bank:before,.fa.fa-institution:before{content:"\f19c"}.fa.fa-mortar-board:before{content:"\f19d"}.fa.fa-delicious,.fa.fa-digg,.fa.fa-drupal,.fa.fa-google,.fa.fa-joomla,.fa.fa-pied-piper-alt,.fa.fa-pied-piper-pp,.fa.fa-reddit,.fa.fa-reddit-square,.fa.fa-stumbleupon,.fa.fa-stumbleupon-circle,.fa.fa-yahoo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-spoon:before{content:"\f2e5"}.fa.fa-behance,.fa.fa-behance-square,.fa.fa-steam,.fa.fa-steam-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-automobile:before{content:"\f1b9"}.fa.fa-cab:before{content:"\f1ba"}.fa.fa-envelope-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-envelope-o:before{content:"\f0e0"}.fa.fa-deviantart,.fa.fa-soundcloud{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-file-pdf-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-pdf-o:before{content:"\f1c1"}.fa.fa-file-word-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-word-o:before{content:"\f1c2"}.fa.fa-file-excel-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-excel-o:before{content:"\f1c3"}.fa.fa-file-powerpoint-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-powerpoint-o:before{content:"\f1c4"}.fa.fa-file-image-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-image-o:before{content:"\f1c5"}.fa.fa-file-photo-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-photo-o:before{content:"\f1c5"}.fa.fa-file-picture-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-picture-o:before{content:"\f1c5"}.fa.fa-file-archive-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-archive-o:before{content:"\f1c6"}.fa.fa-file-zip-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-zip-o:before{content:"\f1c6"}.fa.fa-file-audio-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-audio-o:before{content:"\f1c7"}.fa.fa-file-sound-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-sound-o:before{content:"\f1c7"}.fa.fa-file-video-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-video-o:before{content:"\f1c8"}.fa.fa-file-movie-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-movie-o:before{content:"\f1c8"}.fa.fa-file-code-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-code-o:before{content:"\f1c9"}.fa.fa-codepen,.fa.fa-jsfiddle,.fa.fa-vine{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-life-bouy,.fa.fa-life-ring{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-bouy:before{content:"\f1cd"}.fa.fa-life-buoy{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-buoy:before{content:"\f1cd"}.fa.fa-life-saver{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-saver:before{content:"\f1cd"}.fa.fa-support{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-support:before{content:"\f1cd"}.fa.fa-circle-o-notch:before{content:"\f1ce"}.fa.fa-ra,.fa.fa-rebel{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ra:before{content:"\f1d0"}.fa.fa-resistance{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-resistance:before{content:"\f1d0"}.fa.fa-empire,.fa.fa-ge{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ge:before{content:"\f1d1"}.fa.fa-git,.fa.fa-git-square,.fa.fa-hacker-news,.fa.fa-y-combinator-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-y-combinator-square:before{content:"\f1d4"}.fa.fa-yc-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-yc-square:before{content:"\f1d4"}.fa.fa-qq,.fa.fa-tencent-weibo,.fa.fa-wechat,.fa.fa-weixin{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-wechat:before{content:"\f1d7"}.fa.fa-send:before{content:"\f1d8"}.fa.fa-paper-plane-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-paper-plane-o:before{content:"\f1d8"}.fa.fa-send-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-send-o:before{content:"\f1d8"}.fa.fa-circle-thin{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-circle-thin:before{content:"\f111"}.fa.fa-header:before{content:"\f1dc"}.fa.fa-sliders:before{content:"\f1de"}.fa.fa-futbol-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-futbol-o:before{content:"\f1e3"}.fa.fa-soccer-ball-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-soccer-ball-o:before{content:"\f1e3"}.fa.fa-slideshare,.fa.fa-twitch,.fa.fa-yelp{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-newspaper-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-newspaper-o:before{content:"\f1ea"}.fa.fa-cc-amex,.fa.fa-cc-discover,.fa.fa-cc-mastercard,.fa.fa-cc-paypal,.fa.fa-cc-stripe,.fa.fa-cc-visa,.fa.fa-google-wallet,.fa.fa-paypal{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bell-slash-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bell-slash-o:before{content:"\f1f6"}.fa.fa-trash:before{content:"\f2ed"}.fa.fa-copyright{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-eyedropper:before{content:"\f1fb"}.fa.fa-area-chart:before{content:"\f1fe"}.fa.fa-pie-chart:before{content:"\f200"}.fa.fa-line-chart:before{content:"\f201"}.fa.fa-angellist,.fa.fa-ioxhost,.fa.fa-lastfm,.fa.fa-lastfm-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-cc{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-cc:before{content:"\f20a"}.fa.fa-ils:before,.fa.fa-shekel:before,.fa.fa-sheqel:before{content:"\f20b"}.fa.fa-meanpath{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-meanpath:before{content:"\f2b4"}.fa.fa-buysellads,.fa.fa-connectdevelop,.fa.fa-dashcube,.fa.fa-forumbee,.fa.fa-leanpub,.fa.fa-sellsy,.fa.fa-shirtsinbulk,.fa.fa-simplybuilt,.fa.fa-skyatlas{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-diamond{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-diamond:before{content:"\f3a5"}.fa.fa-intersex:before{content:"\f224"}.fa.fa-facebook-official{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook-official:before{content:"\f09a"}.fa.fa-pinterest-p,.fa.fa-whatsapp{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-hotel:before{content:"\f236"}.fa.fa-medium,.fa.fa-viacoin,.fa.fa-y-combinator,.fa.fa-yc{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-yc:before{content:"\f23b"}.fa.fa-expeditedssl,.fa.fa-opencart,.fa.fa-optin-monster{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-battery-4:before,.fa.fa-battery:before{content:"\f240"}.fa.fa-battery-3:before{content:"\f241"}.fa.fa-battery-2:before{content:"\f242"}.fa.fa-battery-1:before{content:"\f243"}.fa.fa-battery-0:before{content:"\f244"}.fa.fa-object-group,.fa.fa-object-ungroup,.fa.fa-sticky-note-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-sticky-note-o:before{content:"\f249"}.fa.fa-cc-diners-club,.fa.fa-cc-jcb{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-clone,.fa.fa-hourglass-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hourglass-o:before{content:"\f254"}.fa.fa-hourglass-1:before{content:"\f251"}.fa.fa-hourglass-2:before{content:"\f252"}.fa.fa-hourglass-3:before{content:"\f253"}.fa.fa-hand-rock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-rock-o:before{content:"\f255"}.fa.fa-hand-grab-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-grab-o:before{content:"\f255"}.fa.fa-hand-paper-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-paper-o:before{content:"\f256"}.fa.fa-hand-stop-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-stop-o:before{content:"\f256"}.fa.fa-hand-scissors-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-scissors-o:before{content:"\f257"}.fa.fa-hand-lizard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-lizard-o:before{content:"\f258"}.fa.fa-hand-spock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-spock-o:before{content:"\f259"}.fa.fa-hand-pointer-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-pointer-o:before{content:"\f25a"}.fa.fa-hand-peace-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-peace-o:before{content:"\f25b"}.fa.fa-registered{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-chrome,.fa.fa-creative-commons,.fa.fa-firefox,.fa.fa-get-pocket,.fa.fa-gg,.fa.fa-gg-circle,.fa.fa-internet-explorer,.fa.fa-odnoklassniki,.fa.fa-odnoklassniki-square,.fa.fa-opera,.fa.fa-safari,.fa.fa-tripadvisor,.fa.fa-wikipedia-w{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-television:before{content:"\f26c"}.fa.fa-500px,.fa.fa-amazon,.fa.fa-contao{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-calendar-plus-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-plus-o:before{content:"\f271"}.fa.fa-calendar-minus-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-minus-o:before{content:"\f272"}.fa.fa-calendar-times-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-times-o:before{content:"\f273"}.fa.fa-calendar-check-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-check-o:before{content:"\f274"}.fa.fa-map-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-map-o:before{content:"\f279"}.fa.fa-commenting{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-commenting:before{content:"\f4ad"}.fa.fa-commenting-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-commenting-o:before{content:"\f4ad"}.fa.fa-houzz,.fa.fa-vimeo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-vimeo:before{content:"\f27d"}.fa.fa-black-tie,.fa.fa-edge,.fa.fa-fonticons,.fa.fa-reddit-alien{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-credit-card-alt:before{content:"\f09d"}.fa.fa-codiepie,.fa.fa-fort-awesome,.fa.fa-mixcloud,.fa.fa-modx,.fa.fa-product-hunt,.fa.fa-scribd,.fa.fa-usb{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-pause-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-pause-circle-o:before{content:"\f28b"}.fa.fa-stop-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-stop-circle-o:before{content:"\f28d"}.fa.fa-bluetooth,.fa.fa-bluetooth-b,.fa.fa-envira,.fa.fa-gitlab,.fa.fa-wheelchair-alt,.fa.fa-wpbeginner,.fa.fa-wpforms{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-wheelchair-alt:before{content:"\f368"}.fa.fa-question-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-question-circle-o:before{content:"\f059"}.fa.fa-volume-control-phone:before{content:"\f2a0"}.fa.fa-asl-interpreting:before{content:"\f2a3"}.fa.fa-deafness:before,.fa.fa-hard-of-hearing:before{content:"\f2a4"}.fa.fa-glide,.fa.fa-glide-g{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-signing:before{content:"\f2a7"}.fa.fa-first-order,.fa.fa-google-plus-official,.fa.fa-pied-piper,.fa.fa-snapchat,.fa.fa-snapchat-ghost,.fa.fa-snapchat-square,.fa.fa-themeisle,.fa.fa-viadeo,.fa.fa-viadeo-square,.fa.fa-yoast{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus-official:before{content:"\f2b3"}.fa.fa-google-plus-circle{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus-circle:before{content:"\f2b3"}.fa.fa-fa,.fa.fa-font-awesome{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-fa:before{content:"\f2b4"}.fa.fa-handshake-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-handshake-o:before{content:"\f2b5"}.fa.fa-envelope-open-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-envelope-open-o:before{content:"\f2b6"}.fa.fa-linode{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-address-book-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-address-book-o:before{content:"\f2b9"}.fa.fa-vcard:before{content:"\f2bb"}.fa.fa-address-card-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-address-card-o:before{content:"\f2bb"}.fa.fa-vcard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-vcard-o:before{content:"\f2bb"}.fa.fa-user-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-user-circle-o:before{content:"\f2bd"}.fa.fa-user-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-user-o:before{content:"\f007"}.fa.fa-id-badge{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-drivers-license:before{content:"\f2c2"}.fa.fa-id-card-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-id-card-o:before{content:"\f2c2"}.fa.fa-drivers-license-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-drivers-license-o:before{content:"\f2c2"}.fa.fa-free-code-camp,.fa.fa-quora,.fa.fa-telegram{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-thermometer-4:before,.fa.fa-thermometer:before{content:"\f2c7"}.fa.fa-thermometer-3:before{content:"\f2c8"}.fa.fa-thermometer-2:before{content:"\f2c9"}.fa.fa-thermometer-1:before{content:"\f2ca"}.fa.fa-thermometer-0:before{content:"\f2cb"}.fa.fa-bathtub:before,.fa.fa-s15:before{content:"\f2cd"}.fa.fa-window-maximize,.fa.fa-window-restore{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-rectangle:before{content:"\f410"}.fa.fa-window-close-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-window-close-o:before{content:"\f410"}.fa.fa-times-rectangle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-rectangle-o:before{content:"\f410"}.fa.fa-bandcamp,.fa.fa-eercast,.fa.fa-etsy,.fa.fa-grav,.fa.fa-imdb,.fa.fa-ravelry{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-eercast:before{content:"\f2da"}.fa.fa-snowflake-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-snowflake-o:before{content:"\f2dc"}.fa.fa-spotify,.fa.fa-superpowers,.fa.fa-wpexplorer{font-family:"Font Awesome 5 Brands";font-weight:400}
obfx_modules/gutenberg-blocks/assets/fontawesome/metadata/categories.yml ADDED
@@ -0,0 +1,1572 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ accessibility:
2
+ icons:
3
+ - accessible-icon
4
+ - american-sign-language-interpreting
5
+ - assistive-listening-systems
6
+ - audio-description
7
+ - blind
8
+ - braille
9
+ - closed-captioning
10
+ - deaf
11
+ - low-vision
12
+ - phone-volume
13
+ - question-circle
14
+ - sign-language
15
+ - tty
16
+ - universal-access
17
+ - wheelchair
18
+ label: Accessibility
19
+ animals:
20
+ icons:
21
+ - crow
22
+ - dove
23
+ - feather
24
+ - feather-alt
25
+ - fish
26
+ - frog
27
+ - kiwi-bird
28
+ label: Animals
29
+ arrows:
30
+ icons:
31
+ - angle-double-down
32
+ - angle-double-left
33
+ - angle-double-right
34
+ - angle-double-up
35
+ - angle-down
36
+ - angle-left
37
+ - angle-right
38
+ - angle-up
39
+ - arrow-alt-circle-down
40
+ - arrow-alt-circle-left
41
+ - arrow-alt-circle-right
42
+ - arrow-alt-circle-up
43
+ - arrow-circle-down
44
+ - arrow-circle-left
45
+ - arrow-circle-right
46
+ - arrow-circle-up
47
+ - arrow-down
48
+ - arrow-left
49
+ - arrow-right
50
+ - arrow-up
51
+ - arrows-alt
52
+ - arrows-alt-h
53
+ - arrows-alt-v
54
+ - caret-down
55
+ - caret-left
56
+ - caret-right
57
+ - caret-square-down
58
+ - caret-square-left
59
+ - caret-square-right
60
+ - caret-square-up
61
+ - caret-up
62
+ - cart-arrow-down
63
+ - chart-line
64
+ - chevron-circle-down
65
+ - chevron-circle-left
66
+ - chevron-circle-right
67
+ - chevron-circle-up
68
+ - chevron-down
69
+ - chevron-left
70
+ - chevron-right
71
+ - chevron-up
72
+ - cloud-download-alt
73
+ - cloud-upload-alt
74
+ - download
75
+ - exchange-alt
76
+ - expand-arrows-alt
77
+ - external-link-alt
78
+ - external-link-square-alt
79
+ - hand-point-down
80
+ - hand-point-left
81
+ - hand-point-right
82
+ - hand-point-up
83
+ - hand-pointer
84
+ - history
85
+ - level-down-alt
86
+ - level-up-alt
87
+ - location-arrow
88
+ - long-arrow-alt-down
89
+ - long-arrow-alt-left
90
+ - long-arrow-alt-right
91
+ - long-arrow-alt-up
92
+ - mouse-pointer
93
+ - play
94
+ - random
95
+ - recycle
96
+ - redo
97
+ - redo-alt
98
+ - reply
99
+ - reply-all
100
+ - retweet
101
+ - share
102
+ - share-square
103
+ - sign-in-alt
104
+ - sign-out-alt
105
+ - sort
106
+ - sort-alpha-down
107
+ - sort-alpha-up
108
+ - sort-amount-down
109
+ - sort-amount-up
110
+ - sort-down
111
+ - sort-numeric-down
112
+ - sort-numeric-up
113
+ - sort-up
114
+ - sync
115
+ - sync-alt
116
+ - text-height
117
+ - text-width
118
+ - undo
119
+ - undo-alt
120
+ - upload
121
+ label: Arrows
122
+ audio-video:
123
+ icons:
124
+ - audio-description
125
+ - backward
126
+ - broadcast-tower
127
+ - circle
128
+ - closed-captioning
129
+ - compress
130
+ - eject
131
+ - expand
132
+ - expand-arrows-alt
133
+ - fast-backward
134
+ - fast-forward
135
+ - file-audio
136
+ - file-video
137
+ - film
138
+ - forward
139
+ - headphones
140
+ - microphone
141
+ - microphone-alt
142
+ - microphone-alt-slash
143
+ - microphone-slash
144
+ - music
145
+ - pause
146
+ - pause-circle
147
+ - phone-volume
148
+ - play
149
+ - play-circle
150
+ - podcast
151
+ - random
152
+ - redo
153
+ - redo-alt
154
+ - rss
155
+ - rss-square
156
+ - step-backward
157
+ - step-forward
158
+ - stop
159
+ - stop-circle
160
+ - sync
161
+ - sync-alt
162
+ - undo
163
+ - undo-alt
164
+ - video
165
+ - volume-down
166
+ - volume-off
167
+ - volume-up
168
+ - youtube
169
+ label: Audio & Video
170
+ automotive:
171
+ icons:
172
+ - air-freshener
173
+ - ambulance
174
+ - bus
175
+ - bus-alt
176
+ - car
177
+ - car-alt
178
+ - car-battery
179
+ - car-crash
180
+ - car-side
181
+ - charging-station
182
+ - gas-pump
183
+ - motorcycle
184
+ - oil-can
185
+ - shuttle-van
186
+ - tachometer-alt
187
+ - taxi
188
+ - truck
189
+ - truck-monster
190
+ - truck-pickup
191
+ label: Automotive
192
+ buildings:
193
+ icons:
194
+ - building
195
+ - church
196
+ - home
197
+ - hospital
198
+ - hospital-alt
199
+ - industry
200
+ - school
201
+ - university
202
+ label: Buildings
203
+ business:
204
+ icons:
205
+ - address-book
206
+ - address-card
207
+ - archive
208
+ - balance-scale
209
+ - birthday-cake
210
+ - book
211
+ - briefcase
212
+ - building
213
+ - bullhorn
214
+ - bullseye
215
+ - calculator
216
+ - calendar
217
+ - calendar-alt
218
+ - certificate
219
+ - chart-area
220
+ - chart-bar
221
+ - chart-line
222
+ - chart-pie
223
+ - clipboard
224
+ - coffee
225
+ - columns
226
+ - compass
227
+ - copy
228
+ - copyright
229
+ - cut
230
+ - edit
231
+ - envelope
232
+ - envelope-open
233
+ - envelope-square
234
+ - eraser
235
+ - fax
236
+ - file
237
+ - file-alt
238
+ - folder
239
+ - folder-open
240
+ - glasses
241
+ - globe
242
+ - highlighter
243
+ - industry
244
+ - marker
245
+ - paperclip
246
+ - paste
247
+ - pen
248
+ - pen-alt
249
+ - pen-fancy
250
+ - pen-nib
251
+ - pen-square
252
+ - pencil-alt
253
+ - percent
254
+ - phone
255
+ - phone-slash
256
+ - phone-square
257
+ - phone-volume
258
+ - project-diagram
259
+ - registered
260
+ - save
261
+ - sitemap
262
+ - sticky-note
263
+ - stream
264
+ - suitcase
265
+ - table
266
+ - tag
267
+ - tags
268
+ - tasks
269
+ - thumbtack
270
+ - trademark
271
+ - wallet
272
+ label: Business
273
+ charity:
274
+ icons:
275
+ - dollar-sign
276
+ - donate
277
+ - dove
278
+ - gift
279
+ - globe
280
+ - hand-holding-heart
281
+ - hand-holding-usd
282
+ - hands-helping
283
+ - handshake
284
+ - heart
285
+ - leaf
286
+ - parachute-box
287
+ - piggy-bank
288
+ - ribbon
289
+ - seedling
290
+ label: Charity
291
+ chat:
292
+ icons:
293
+ - comment
294
+ - comment-alt
295
+ - comment-dots
296
+ - comment-slash
297
+ - comments
298
+ - frown
299
+ - meh
300
+ - phone
301
+ - phone-slash
302
+ - poo
303
+ - quote-left
304
+ - quote-right
305
+ - smile
306
+ - video
307
+ - video-slash
308
+ label: Chat
309
+ chess:
310
+ icons:
311
+ - chess
312
+ - chess-bishop
313
+ - chess-board
314
+ - chess-king
315
+ - chess-knight
316
+ - chess-pawn
317
+ - chess-queen
318
+ - chess-rook
319
+ - square-full
320
+ label: Chess
321
+ code:
322
+ icons:
323
+ - archive
324
+ - barcode
325
+ - bath
326
+ - bug
327
+ - code
328
+ - code-branch
329
+ - coffee
330
+ - file
331
+ - file-alt
332
+ - file-code
333
+ - filter
334
+ - fire-extinguisher
335
+ - folder
336
+ - folder-open
337
+ - keyboard
338
+ - microchip
339
+ - project-diagram
340
+ - qrcode
341
+ - shield-alt
342
+ - sitemap
343
+ - stream
344
+ - terminal
345
+ - user-secret
346
+ - window-close
347
+ - window-maximize
348
+ - window-minimize
349
+ - window-restore
350
+ label: Code
351
+ communication:
352
+ icons:
353
+ - address-book
354
+ - address-card
355
+ - american-sign-language-interpreting
356
+ - assistive-listening-systems
357
+ - at
358
+ - bell
359
+ - bell-slash
360
+ - bluetooth
361
+ - bluetooth-b
362
+ - broadcast-tower
363
+ - bullhorn
364
+ - chalkboard
365
+ - comment
366
+ - comment-alt
367
+ - comments
368
+ - envelope
369
+ - envelope-open
370
+ - envelope-square
371
+ - fax
372
+ - inbox
373
+ - language
374
+ - microphone
375
+ - microphone-alt
376
+ - microphone-alt-slash
377
+ - microphone-slash
378
+ - mobile
379
+ - mobile-alt
380
+ - paper-plane
381
+ - phone
382
+ - phone-slash
383
+ - phone-square
384
+ - phone-volume
385
+ - rss
386
+ - rss-square
387
+ - tty
388
+ - wifi
389
+ label: Communication
390
+ computers:
391
+ icons:
392
+ - database
393
+ - desktop
394
+ - download
395
+ - hdd
396
+ - headphones
397
+ - keyboard
398
+ - laptop
399
+ - memory
400
+ - microchip
401
+ - mobile
402
+ - mobile-alt
403
+ - plug
404
+ - power-off
405
+ - print
406
+ - save
407
+ - server
408
+ - stream
409
+ - tablet
410
+ - tablet-alt
411
+ - tv
412
+ - upload
413
+ label: Computers
414
+ currency:
415
+ icons:
416
+ - bitcoin
417
+ - btc
418
+ - dollar-sign
419
+ - euro-sign
420
+ - gg
421
+ - gg-circle
422
+ - lira-sign
423
+ - money-bill
424
+ - money-bill-alt
425
+ - money-bill-wave
426
+ - money-bill-wave-alt
427
+ - money-check
428
+ - money-check-alt
429
+ - pound-sign
430
+ - ruble-sign
431
+ - rupee-sign
432
+ - shekel-sign
433
+ - won-sign
434
+ - yen-sign
435
+ label: Currency
436
+ date-time:
437
+ icons:
438
+ - bell
439
+ - bell-slash
440
+ - calendar
441
+ - calendar-alt
442
+ - calendar-check
443
+ - calendar-minus
444
+ - calendar-plus
445
+ - calendar-times
446
+ - clock
447
+ - hourglass
448
+ - hourglass-end
449
+ - hourglass-half
450
+ - hourglass-start
451
+ - stopwatch
452
+ label: Date & Time
453
+ design:
454
+ icons:
455
+ - adjust
456
+ - bezier-curve
457
+ - brush
458
+ - clone
459
+ - copy
460
+ - crop
461
+ - crop-alt
462
+ - crosshairs
463
+ - cut
464
+ - drafting-compass
465
+ - draw-polygon
466
+ - edit
467
+ - eraser
468
+ - eye
469
+ - eye-dropper
470
+ - eye-slash
471
+ - fill
472
+ - fill-drip
473
+ - highlighter
474
+ - layer-group
475
+ - magic
476
+ - marker
477
+ - object-group
478
+ - object-ungroup
479
+ - paint-brush
480
+ - paint-roller
481
+ - palette
482
+ - paste
483
+ - pen
484
+ - pen-alt
485
+ - pen-fancy
486
+ - pen-nib
487
+ - pencil-alt
488
+ - pencil-ruler
489
+ - ruler-combined
490
+ - ruler-horizontal
491
+ - ruler-vertical
492
+ - save
493
+ - splotch
494
+ - spray-can
495
+ - stamp
496
+ - swatchbook
497
+ - tint
498
+ - tint-slash
499
+ - vector-square
500
+ label: Design
501
+ editors:
502
+ icons:
503
+ - align-center
504
+ - align-justify
505
+ - align-left
506
+ - align-right
507
+ - bold
508
+ - clipboard
509
+ - clone
510
+ - columns
511
+ - copy
512
+ - cut
513
+ - edit
514
+ - eraser
515
+ - file
516
+ - file-alt
517
+ - font
518
+ - glasses
519
+ - heading
520
+ - highlighter
521
+ - i-cursor
522
+ - indent
523
+ - italic
524
+ - link
525
+ - list
526
+ - list-alt
527
+ - list-ol
528
+ - list-ul
529
+ - marker
530
+ - outdent
531
+ - paper-plane
532
+ - paperclip
533
+ - paragraph
534
+ - paste
535
+ - pen
536
+ - pen-alt
537
+ - pen-fancy
538
+ - pen-nib
539
+ - pencil-alt
540
+ - print
541
+ - quote-left
542
+ - quote-right
543
+ - redo
544
+ - redo-alt
545
+ - reply
546
+ - reply-all
547
+ - screwdriver
548
+ - share
549
+ - strikethrough
550
+ - subscript
551
+ - superscript
552
+ - sync
553
+ - sync-alt
554
+ - table
555
+ - tasks
556
+ - text-height
557
+ - text-width
558
+ - th
559
+ - th-large
560
+ - th-list
561
+ - trash
562
+ - trash-alt
563
+ - underline
564
+ - undo
565
+ - undo-alt
566
+ - unlink
567
+ - wrench
568
+ label: Editors
569
+ education:
570
+ icons:
571
+ - apple-alt
572
+ - atom
573
+ - award
574
+ - bell
575
+ - bell-slash
576
+ - book-open
577
+ - book-reader
578
+ - chalkboard
579
+ - chalkboard-teacher
580
+ - graduation-cap
581
+ - laptop-code
582
+ - microscope
583
+ - music
584
+ - school
585
+ - shapes
586
+ - theater-masks
587
+ - user-graduate
588
+ label: Education
589
+ emoji:
590
+ icons:
591
+ - angry
592
+ - dizzy
593
+ - flushed
594
+ - frown
595
+ - frown-open
596
+ - grimace
597
+ - grin
598
+ - grin-alt
599
+ - grin-beam
600
+ - grin-beam-sweat
601
+ - grin-hearts
602
+ - grin-squint
603
+ - grin-squint-tears
604
+ - grin-stars
605
+ - grin-tears
606
+ - grin-tongue
607
+ - grin-tongue-squint
608
+ - grin-tongue-wink
609
+ - grin-wink
610
+ - kiss
611
+ - kiss-beam
612
+ - kiss-wink-heart
613
+ - laugh
614
+ - laugh-beam
615
+ - laugh-squint
616
+ - laugh-wink
617
+ - meh
618
+ - meh-blank
619
+ - meh-rolling-eyes
620
+ - sad-cry
621
+ - sad-tear
622
+ - smile
623
+ - smile-beam
624
+ - smile-wink
625
+ - surprise
626
+ - tired
627
+ label: Emoji
628
+ files:
629
+ icons:
630
+ - archive
631
+ - clone
632
+ - copy
633
+ - cut
634
+ - file
635
+ - file-alt
636
+ - file-archive
637
+ - file-audio
638
+ - file-code
639
+ - file-excel
640
+ - file-image
641
+ - file-pdf
642
+ - file-powerpoint
643
+ - file-video
644
+ - file-word
645
+ - folder
646
+ - folder-open
647
+ - paste
648
+ - save
649
+ - sticky-note
650
+ label: Files
651
+ gender:
652
+ icons:
653
+ - genderless
654
+ - mars
655
+ - mars-double
656
+ - mars-stroke
657
+ - mars-stroke-h
658
+ - mars-stroke-v
659
+ - mercury
660
+ - neuter
661
+ - transgender
662
+ - transgender-alt
663
+ - venus
664
+ - venus-double
665
+ - venus-mars
666
+ label: Genders
667
+ hands:
668
+ icons:
669
+ - allergies
670
+ - hand-holding
671
+ - hand-lizard
672
+ - hand-paper
673
+ - hand-peace
674
+ - hand-point-down
675
+ - hand-point-left
676
+ - hand-point-right
677
+ - hand-point-up
678
+ - hand-pointer
679
+ - hand-rock
680
+ - hand-scissors
681
+ - hand-spock
682
+ - hands
683
+ - handshake
684
+ - thumbs-down
685
+ - thumbs-up
686
+ label: Hands
687
+ health:
688
+ icons:
689
+ - accessible-icon
690
+ - ambulance
691
+ - h-square
692
+ - heart
693
+ - heartbeat
694
+ - hospital
695
+ - medkit
696
+ - plus-square
697
+ - prescription
698
+ - stethoscope
699
+ - user-md
700
+ - wheelchair
701
+ label: Health
702
+ images:
703
+ icons:
704
+ - adjust
705
+ - bolt
706
+ - camera
707
+ - camera-retro
708
+ - chalkboard
709
+ - clone
710
+ - compress
711
+ - expand
712
+ - eye
713
+ - eye-dropper
714
+ - eye-slash
715
+ - file-image
716
+ - film
717
+ - id-badge
718
+ - id-card
719
+ - image
720
+ - images
721
+ - portrait
722
+ - sliders-h
723
+ - tint
724
+ label: Images
725
+ interfaces:
726
+ icons:
727
+ - award
728
+ - ban
729
+ - barcode
730
+ - bars
731
+ - beer
732
+ - bell
733
+ - bell-slash
734
+ - bug
735
+ - bullhorn
736
+ - bullseye
737
+ - calculator
738
+ - calendar
739
+ - calendar-alt
740
+ - calendar-check
741
+ - calendar-minus
742
+ - calendar-plus
743
+ - calendar-times
744
+ - certificate
745
+ - check
746
+ - check-circle
747
+ - check-double
748
+ - check-square
749
+ - circle
750
+ - clipboard
751
+ - clone
752
+ - cloud
753
+ - cloud-download-alt
754
+ - cloud-upload-alt
755
+ - coffee
756
+ - cog
757
+ - cogs
758
+ - copy
759
+ - cut
760
+ - database
761
+ - dot-circle
762
+ - download
763
+ - edit
764
+ - ellipsis-h
765
+ - ellipsis-v
766
+ - envelope
767
+ - envelope-open
768
+ - eraser
769
+ - exclamation
770
+ - exclamation-circle
771
+ - exclamation-triangle
772
+ - external-link-alt
773
+ - external-link-square-alt
774
+ - eye
775
+ - eye-slash
776
+ - file
777
+ - file-alt
778
+ - file-download
779
+ - file-export
780
+ - file-import
781
+ - file-upload
782
+ - filter
783
+ - fingerprint
784
+ - flag
785
+ - flag-checkered
786
+ - folder
787
+ - folder-open
788
+ - frown
789
+ - glasses
790
+ - grip-horizontal
791
+ - grip-vertical
792
+ - hashtag
793
+ - heart
794
+ - history
795
+ - home
796
+ - i-cursor
797
+ - info
798
+ - info-circle
799
+ - language
800
+ - magic
801
+ - marker
802
+ - medal
803
+ - meh
804
+ - microphone
805
+ - microphone-alt
806
+ - microphone-slash
807
+ - minus
808
+ - minus-circle
809
+ - minus-square
810
+ - paste
811
+ - pen
812
+ - pen-alt
813
+ - pen-fancy
814
+ - pencil-alt
815
+ - plus
816
+ - plus-circle
817
+ - plus-square
818
+ - poo
819
+ - qrcode
820
+ - question
821
+ - question-circle
822
+ - quote-left
823
+ - quote-right
824
+ - redo
825
+ - redo-alt
826
+ - reply
827
+ - reply-all
828
+ - rss
829
+ - rss-square
830
+ - save
831
+ - screwdriver
832
+ - search
833
+ - search-minus
834
+ - search-plus
835
+ - share
836
+ - share-alt
837
+ - share-alt-square
838
+ - share-square
839
+ - shield-alt
840
+ - sign-in-alt
841
+ - sign-out-alt
842
+ - signal
843
+ - sitemap
844
+ - sliders-h
845
+ - smile
846
+ - sort
847
+ - sort-alpha-down
848
+ - sort-alpha-up
849
+ - sort-amount-down
850
+ - sort-amount-up
851
+ - sort-down
852
+ - sort-numeric-down
853
+ - sort-numeric-up
854
+ - sort-up
855
+ - star
856
+ - star-half
857
+ - sync
858
+ - sync-alt
859
+ - thumbs-down
860
+ - thumbs-up
861
+ - times
862
+ - times-circle
863
+ - toggle-off
864
+ - toggle-on
865
+ - trash
866
+ - trash-alt
867
+ - trophy
868
+ - undo
869
+ - undo-alt
870
+ - upload
871
+ - user
872
+ - user-alt
873
+ - user-circle
874
+ - wifi
875
+ - wrench
876
+ label: Interfaces
877
+ logistics:
878
+ icons:
879
+ - box
880
+ - boxes
881
+ - clipboard-check
882
+ - clipboard-list
883
+ - dolly
884
+ - dolly-flatbed
885
+ - pallet
886
+ - shipping-fast
887
+ - truck
888
+ - warehouse
889
+ label: Logistics
890
+ maps:
891
+ icons:
892
+ - ambulance
893
+ - anchor
894
+ - balance-scale
895
+ - bath
896
+ - bed
897
+ - beer
898
+ - bell
899
+ - bell-slash
900
+ - bicycle
901
+ - binoculars
902
+ - birthday-cake
903
+ - blind
904
+ - bomb
905
+ - book
906
+ - bookmark
907
+ - briefcase
908
+ - building
909
+ - car
910
+ - coffee
911
+ - crosshairs
912
+ - directions
913
+ - dollar-sign
914
+ - draw-polygon
915
+ - eye
916
+ - eye-slash
917
+ - fighter-jet
918
+ - fire
919
+ - fire-extinguisher
920
+ - flag
921
+ - flag-checkered
922
+ - flask
923
+ - gamepad
924
+ - gavel
925
+ - gift
926
+ - glass-martini
927
+ - globe
928
+ - graduation-cap
929
+ - h-square
930
+ - heart
931
+ - heartbeat
932
+ - helicopter
933
+ - home
934
+ - hospital
935
+ - image
936
+ - images
937
+ - industry
938
+ - info
939
+ - info-circle
940
+ - key
941
+ - layer-group
942
+ - leaf
943
+ - lemon
944
+ - life-ring
945
+ - lightbulb
946
+ - location-arrow
947
+ - low-vision
948
+ - magnet
949
+ - male
950
+ - map
951
+ - map-marker
952
+ - map-marker-alt
953
+ - map-pin
954
+ - map-signs
955
+ - medkit
956
+ - money-bill
957
+ - money-bill-alt
958
+ - motorcycle
959
+ - music
960
+ - newspaper
961
+ - parking
962
+ - paw
963
+ - phone
964
+ - phone-square
965
+ - phone-volume
966
+ - plane
967
+ - plug
968
+ - plus
969
+ - plus-square
970
+ - print
971
+ - recycle
972
+ - road
973
+ - rocket
974
+ - route
975
+ - search
976
+ - search-minus
977
+ - search-plus
978
+ - ship
979
+ - shoe-prints
980
+ - shopping-bag
981
+ - shopping-basket
982
+ - shopping-cart
983
+ - shower
984
+ - street-view
985
+ - subway
986
+ - suitcase
987
+ - tag
988
+ - tags
989
+ - taxi
990
+ - thumbtack
991
+ - ticket-alt
992
+ - tint
993
+ - traffic-light
994
+ - train
995
+ - tree
996
+ - trophy
997
+ - truck
998
+ - tty
999
+ - umbrella
1000
+ - university
1001
+ - utensil-spoon
1002
+ - utensils
1003
+ - wheelchair
1004
+ - wifi
1005
+ - wine-glass
1006
+ - wrench
1007
+ label: Maps
1008
+ mathematics:
1009
+ icons:
1010
+ - divide
1011
+ - equals
1012
+ - greater-than
1013
+ - greater-than-equal
1014
+ - less-than
1015
+ - less-than-equal
1016
+ - minus
1017
+ - not-equal
1018
+ - percentage
1019
+ - plus
1020
+ - subscript
1021
+ - superscript
1022
+ - times
1023
+ label: Mathematics
1024
+ medical:
1025
+ icons:
1026
+ - allergies
1027
+ - ambulance
1028
+ - band-aid
1029
+ - bone
1030
+ - bong
1031
+ - brain
1032
+ - briefcase-medical
1033
+ - burn
1034
+ - cannabis
1035
+ - capsules
1036
+ - diagnoses
1037
+ - dna
1038
+ - file-medical
1039
+ - file-medical-alt
1040
+ - file-prescription
1041
+ - first-aid
1042
+ - heart
1043
+ - heartbeat
1044
+ - hospital
1045
+ - hospital-alt
1046
+ - hospital-symbol
1047
+ - id-card-alt
1048
+ - joint
1049
+ - microscope
1050
+ - mortar-pestle
1051
+ - notes-medical
1052
+ - pills
1053
+ - plus
1054
+ - poop
1055
+ - prescription
1056
+ - prescription-bottle
1057
+ - prescription-bottle-alt
1058
+ - procedures
1059
+ - smoking
1060
+ - smoking-ban
1061
+ - star-of-life
1062
+ - stethoscope
1063
+ - syringe
1064
+ - tablets
1065
+ - teeth
1066
+ - teeth-open
1067
+ - thermometer
1068
+ - tooth
1069
+ - user-md
1070
+ - vial
1071
+ - vials
1072
+ - weight
1073
+ - x-ray
1074
+ label: Medical
1075
+ moving:
1076
+ icons:
1077
+ - archive
1078
+ - box-open
1079
+ - couch
1080
+ - dolly
1081
+ - people-carry
1082
+ - route
1083
+ - sign
1084
+ - suitcase
1085
+ - tape
1086
+ - truck-loading
1087
+ - truck-moving
1088
+ - wine-glass
1089
+ label: Moving
1090
+ objects:
1091
+ icons:
1092
+ - ambulance
1093
+ - anchor
1094
+ - archive
1095
+ - award
1096
+ - balance-scale
1097
+ - bath
1098
+ - bed
1099
+ - beer
1100
+ - bell
1101
+ - bicycle
1102
+ - binoculars
1103
+ - birthday-cake
1104
+ - blender
1105
+ - bomb
1106
+ - book
1107
+ - bookmark
1108
+ - briefcase
1109
+ - broadcast-tower
1110
+ - bug
1111
+ - building
1112
+ - bullhorn
1113
+ - bullseye
1114
+ - bus
1115
+ - calculator
1116
+ - calendar
1117
+ - calendar-alt
1118
+ - camera
1119
+ - camera-retro
1120
+ - car
1121
+ - church
1122
+ - clipboard
1123
+ - cloud
1124
+ - coffee
1125
+ - cog
1126
+ - cogs
1127
+ - compass
1128
+ - cookie
1129
+ - cookie-bite
1130
+ - copy
1131
+ - cube
1132
+ - cubes
1133
+ - cut
1134
+ - dice
1135
+ - dice-five
1136
+ - dice-four
1137
+ - dice-one
1138
+ - dice-six
1139
+ - dice-three
1140
+ - dice-two
1141
+ - digital-tachograph
1142
+ - door-closed
1143
+ - door-open
1144
+ - drum
1145
+ - drum-steelpan
1146
+ - envelope
1147
+ - envelope-open
1148
+ - eraser
1149
+ - eye
1150
+ - eye-dropper
1151
+ - fax
1152
+ - feather
1153
+ - feather-alt
1154
+ - fighter-jet
1155
+ - file
1156
+ - file-alt
1157
+ - file-prescription
1158
+ - film
1159
+ - fire
1160
+ - fire-extinguisher
1161
+ - flag
1162
+ - flag-checkered
1163
+ - flask
1164
+ - futbol
1165
+ - gamepad
1166
+ - gavel
1167
+ - gem
1168
+ - gift
1169
+ - glass-martini
1170
+ - glasses
1171
+ - globe
1172
+ - graduation-cap
1173
+ - hdd
1174
+ - headphones
1175
+ - headphones
1176
+ - headphones-alt
1177
+ - headset
1178
+ - heart
1179
+ - helicopter
1180
+ - highlighter
1181
+ - home
1182
+ - hospital
1183
+ - hourglass
1184
+ - image
1185
+ - images
1186
+ - industry
1187
+ - key
1188
+ - keyboard
1189
+ - laptop
1190
+ - leaf
1191
+ - lemon
1192
+ - life-ring
1193
+ - lightbulb
1194
+ - lock
1195
+ - lock-open
1196
+ - magic
1197
+ - magnet
1198
+ - map
1199
+ - map-marker
1200
+ - map-marker-alt
1201
+ - map-pin
1202
+ - map-signs
1203
+ - marker
1204
+ - medal
1205
+ - medkit
1206
+ - memory
1207
+ - microchip
1208
+ - microphone
1209
+ - microphone-alt
1210
+ - mobile
1211
+ - mobile-alt
1212
+ - money-bill
1213
+ - money-bill
1214
+ - money-bill-alt
1215
+ - money-check
1216
+ - money-check-alt
1217
+ - moon
1218
+ - motorcycle
1219
+ - newspaper
1220
+ - paint-brush
1221
+ - paper-plane
1222
+ - paperclip
1223
+ - paste
1224
+ - paw
1225
+ - pen
1226
+ - pen-alt
1227
+ - pen-fancy
1228
+ - pen-nib
1229
+ - pencil-alt
1230
+ - phone
1231
+ - plane
1232
+ - plug
1233
+ - print
1234
+ - puzzle-piece
1235
+ - road
1236
+ - rocket
1237
+ - ruler-combined
1238
+ - ruler-horizontal
1239
+ - ruler-vertical
1240
+ - save
1241
+ - school
1242
+ - screwdriver
1243
+ - search
1244
+ - shield-alt
1245
+ - shopping-bag
1246
+ - shopping-basket
1247
+ - shopping-cart
1248
+ - shower
1249
+ - snowflake
1250
+ - space-shuttle
1251
+ - star
1252
+ - sticky-note
1253
+ - stopwatch
1254
+ - stroopwafel
1255
+ - subway
1256
+ - suitcase
1257
+ - sun
1258
+ - tablet
1259
+ - tablet-alt
1260
+ - tachometer-alt
1261
+ - tag
1262
+ - tags
1263
+ - taxi
1264
+ - thumbtack
1265
+ - ticket-alt
1266
+ - toolbox
1267
+ - train
1268
+ - trash
1269
+ - trash-alt
1270
+ - tree
1271
+ - trophy
1272
+ - truck
1273
+ - tv
1274
+ - umbrella
1275
+ - university
1276
+ - unlock
1277
+ - unlock-alt
1278
+ - utensil-spoon
1279
+ - utensils
1280
+ - wallet
1281
+ - weight
1282
+ - wheelchair
1283
+ - wine-glass
1284
+ - wrench
1285
+ label: Objects
1286
+ payments-shopping:
1287
+ icons:
1288
+ - amazon-pay
1289
+ - apple-pay
1290
+ - bell
1291
+ - bookmark
1292
+ - bullhorn
1293
+ - camera
1294
+ - camera-retro
1295
+ - cart-arrow-down
1296
+ - cart-plus
1297
+ - cc-amazon-pay
1298
+ - cc-amex
1299
+ - cc-apple-pay
1300
+ - cc-diners-club
1301
+ - cc-discover
1302
+ - cc-jcb
1303
+ - cc-mastercard
1304
+ - cc-paypal
1305
+ - cc-stripe
1306
+ - cc-visa
1307
+ - certificate
1308
+ - credit-card
1309
+ - ethereum
1310
+ - gem
1311
+ - gift
1312
+ - google-wallet
1313
+ - handshake
1314
+ - heart
1315
+ - key
1316
+ - money-check
1317
+ - money-check-alt
1318
+ - paypal
1319
+ - shopping-bag
1320
+ - shopping-basket
1321
+ - shopping-cart
1322
+ - star
1323
+ - stripe
1324
+ - stripe-s
1325
+ - tag
1326
+ - tags
1327
+ - thumbs-down
1328
+ - thumbs-up
1329
+ - trophy
1330
+ label: Payments & Shopping
1331
+ shapes:
1332
+ icons:
1333
+ - bookmark
1334
+ - calendar
1335
+ - certificate
1336
+ - circle
1337
+ - cloud
1338
+ - comment
1339
+ - file
1340
+ - folder
1341
+ - heart
1342
+ - map-marker
1343
+ - play
1344
+ - shapes
1345
+ - square
1346
+ - star
1347
+ label: Shapes
1348
+ spinners:
1349
+ icons:
1350
+ - asterisk
1351
+ - certificate
1352
+ - circle-notch
1353
+ - cog
1354
+ - compass
1355
+ - crosshairs
1356
+ - life-ring
1357
+ - snowflake
1358
+ - spinner
1359
+ - sun
1360
+ - sync
1361
+ label: Spinners
1362
+ sports:
1363
+ icons:
1364
+ - baseball-ball
1365
+ - basketball-ball
1366
+ - bowling-ball
1367
+ - dumbbell
1368
+ - football-ball
1369
+ - futbol
1370
+ - golf-ball
1371
+ - hockey-puck
1372
+ - quidditch
1373
+ - table-tennis
1374
+ - volleyball-ball
1375
+ label: Sports
1376
+ status:
1377
+ icons:
1378
+ - ban
1379
+ - battery-empty
1380
+ - battery-full
1381
+ - battery-half
1382
+ - battery-quarter
1383
+ - battery-three-quarters
1384
+ - bell
1385
+ - bell-slash
1386
+ - calendar
1387
+ - calendar-alt
1388
+ - calendar-check
1389
+ - calendar-minus
1390
+ - calendar-plus
1391
+ - calendar-times
1392
+ - cart-arrow-down
1393
+ - cart-plus
1394
+ - door-closed
1395
+ - door-open
1396
+ - exclamation
1397
+ - exclamation-circle
1398
+ - exclamation-triangle
1399
+ - eye
1400
+ - eye-slash
1401
+ - file
1402
+ - file-alt
1403
+ - folder
1404
+ - folder-open
1405
+ - info
1406
+ - info-circle
1407
+ - lock
1408
+ - lock-open
1409
+ - minus
1410
+ - minus-circle
1411
+ - minus-square
1412
+ - plus
1413
+ - plus-circle
1414
+ - plus-square
1415
+ - question
1416
+ - question-circle
1417
+ - shield-alt
1418
+ - shopping-cart
1419
+ - sign-in-alt
1420
+ - sign-out-alt
1421
+ - stream
1422
+ - thermometer-empty
1423
+ - thermometer-full
1424
+ - thermometer-half
1425
+ - thermometer-quarter
1426
+ - thermometer-three-quarters
1427
+ - thumbs-down
1428
+ - thumbs-up
1429
+ - toggle-off
1430
+ - toggle-on
1431
+ - unlock
1432
+ - unlock-alt
1433
+ label: Status
1434
+ travel:
1435
+ icons:
1436
+ - archway
1437
+ - atlas
1438
+ - bed
1439
+ - bus
1440
+ - bus-alt
1441
+ - cocktail
1442
+ - concierge-bell
1443
+ - dumbbell
1444
+ - glass-martini
1445
+ - glass-martini-alt
1446
+ - globe-africa
1447
+ - globe-americas
1448
+ - globe-asia
1449
+ - hot-tub
1450
+ - hotel
1451
+ - luggage-cart
1452
+ - map
1453
+ - map-marked
1454
+ - map-marked-alt
1455
+ - monument
1456
+ - passport
1457
+ - plane
1458
+ - plane-arrival
1459
+ - plane-departure
1460
+ - shuttle-van
1461
+ - spa
1462
+ - suitcase
1463
+ - suitcase-rolling
1464
+ - swimmer
1465
+ - swimming-pool
1466
+ - taxi
1467
+ - umbrella-beach
1468
+ - wine-glass
1469
+ - wine-glass-alt
1470
+ label: Travel
1471
+ users-people:
1472
+ icons:
1473
+ - accessible-icon
1474
+ - address-book
1475
+ - address-card
1476
+ - bed
1477
+ - blind
1478
+ - chalkboard-teacher
1479
+ - child
1480
+ - female
1481
+ - frown
1482
+ - id-badge
1483
+ - id-card
1484
+ - id-card-alt
1485
+ - male
1486
+ - meh
1487
+ - poo
1488
+ - portrait
1489
+ - power-off
1490
+ - smile
1491
+ - street-view
1492
+ - user
1493
+ - user-alt
1494
+ - user-alt-slash
1495
+ - user-astronaut
1496
+ - user-check
1497
+ - user-circle
1498
+ - user-clock
1499
+ - user-cog
1500
+ - user-edit
1501
+ - user-friends
1502
+ - user-graduate
1503
+ - user-lock
1504
+ - user-md
1505
+ - user-minus
1506
+ - user-ninja
1507
+ - user-plus
1508
+ - user-secret
1509
+ - user-shield
1510
+ - user-slash
1511
+ - user-tag
1512
+ - user-tie
1513
+ - user-times
1514
+ - users
1515
+ - wheelchair
1516
+ label: Users & People
1517
+ vehicles:
1518
+ icons:
1519
+ - accessible-icon
1520
+ - ambulance
1521
+ - bicycle
1522
+ - bus
1523
+ - bus-alt
1524
+ - car
1525
+ - car-alt
1526
+ - car-crash
1527
+ - car-side
1528
+ - fighter-jet
1529
+ - helicopter
1530
+ - motorcycle
1531
+ - paper-plane
1532
+ - plane
1533
+ - rocket
1534
+ - ship
1535
+ - shopping-cart
1536
+ - shuttle-van
1537
+ - space-shuttle
1538
+ - subway
1539
+ - taxi
1540
+ - train
1541
+ - truck
1542
+ - truck-monster
1543
+ - truck-pickup
1544
+ - wheelchair
1545
+ label: Vehicles
1546
+ writing:
1547
+ icons:
1548
+ - archive
1549
+ - book
1550
+ - bookmark
1551
+ - edit
1552
+ - envelope
1553
+ - envelope-open
1554
+ - eraser
1555
+ - file
1556
+ - file-alt
1557
+ - folder
1558
+ - folder-open
1559
+ - keyboard
1560
+ - newspaper
1561
+ - paper-plane
1562
+ - paperclip
1563
+ - paragraph
1564
+ - pen
1565
+ - pen-alt
1566
+ - pen-square
1567
+ - pencil-alt
1568
+ - quote-left
1569
+ - quote-right
1570
+ - sticky-note
1571
+ - thumbtack
1572
+ label: Writing
obfx_modules/gutenberg-blocks/assets/fontawesome/metadata/icons.json ADDED
@@ -0,0 +1,38820 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "500px": {
3
+ "changes": [
4
+ "4.4",
5
+ "5.0.0"
6
+ ],
7
+ "ligatures": [],
8
+ "search": {
9
+ "terms": []
10
+ },
11
+ "styles": [
12
+ "brands"
13
+ ],
14
+ "unicode": "f26e",
15
+ "label": "500px",
16
+ "svg": {
17
+ "brands": {
18
+ "last_modified": 1500927880000,
19
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M103.3 344.3c-6.5-14.2-6.9-18.3 7.4-23.1 25.6-8 8 9.2 43.2 49.2h.3v-93.9c1.2-50.2 44-92.2 97.7-92.2 53.9 0 97.7 43.5 97.7 96.8 0 63.4-60.8 113.2-128.5 93.3-10.5-4.2-2.1-31.7 8.5-28.6 53 0 89.4-10.1 89.4-64.4 0-61-77.1-89.6-116.9-44.6-23.5 26.4-17.6 42.1-17.6 157.6 50.7 31 118.3 22 160.4-20.1 24.8-24.8 38.5-58 38.5-93 0-35.2-13.8-68.2-38.8-93.3-24.8-24.8-57.8-38.5-93.3-38.5s-68.8 13.8-93.5 38.5c-.3.3-16 16.5-21.2 23.9l-.5.6c-3.3 4.7-6.3 9.1-20.1 6.1-6.9-1.7-14.3-5.8-14.3-11.8V20c0-5 3.9-10.5 10.5-10.5h241.3c8.3 0 8.3 11.6 8.3 15.1 0 3.9 0 15.1-8.3 15.1H130.3v132.9h.3c104.2-109.8 282.8-36 282.8 108.9 0 178.1-244.8 220.3-310.1 62.8zm63.3-260.8c-.5 4.2 4.6 24.5 14.6 20.6C306 56.6 384 144.5 390.6 144.5c4.8 0 22.8-15.3 14.3-22.8-93.2-89-234.5-57-238.3-38.2zM393 414.7C283 524.6 94 475.5 61 310.5c0-12.2-30.4-7.4-28.9 3.3 24 173.4 246 256.9 381.6 121.3 6.9-7.8-12.6-28.4-20.7-20.4zM213.6 306.6c0 4 4.3 7.3 5.5 8.5 3 3 6.1 4.4 8.5 4.4 3.8 0 2.6.2 22.3-19.5 19.6 19.3 19.1 19.5 22.3 19.5 5.4 0 18.5-10.4 10.7-18.2L265.6 284l18.2-18.2c6.3-6.8-10.1-21.8-16.2-15.7L249.7 268c-18.6-18.8-18.4-19.5-21.5-19.5-5 0-18 11.7-12.4 17.3L234 284c-18.1 17.9-20.4 19.2-20.4 22.6z\"/></svg>",
20
+ "viewBox": [
21
+ "0",
22
+ "0",
23
+ "448",
24
+ "512"
25
+ ],
26
+ "width": 448,
27
+ "height": 512,
28
+ "path": "M103.3 344.3c-6.5-14.2-6.9-18.3 7.4-23.1 25.6-8 8 9.2 43.2 49.2h.3v-93.9c1.2-50.2 44-92.2 97.7-92.2 53.9 0 97.7 43.5 97.7 96.8 0 63.4-60.8 113.2-128.5 93.3-10.5-4.2-2.1-31.7 8.5-28.6 53 0 89.4-10.1 89.4-64.4 0-61-77.1-89.6-116.9-44.6-23.5 26.4-17.6 42.1-17.6 157.6 50.7 31 118.3 22 160.4-20.1 24.8-24.8 38.5-58 38.5-93 0-35.2-13.8-68.2-38.8-93.3-24.8-24.8-57.8-38.5-93.3-38.5s-68.8 13.8-93.5 38.5c-.3.3-16 16.5-21.2 23.9l-.5.6c-3.3 4.7-6.3 9.1-20.1 6.1-6.9-1.7-14.3-5.8-14.3-11.8V20c0-5 3.9-10.5 10.5-10.5h241.3c8.3 0 8.3 11.6 8.3 15.1 0 3.9 0 15.1-8.3 15.1H130.3v132.9h.3c104.2-109.8 282.8-36 282.8 108.9 0 178.1-244.8 220.3-310.1 62.8zm63.3-260.8c-.5 4.2 4.6 24.5 14.6 20.6C306 56.6 384 144.5 390.6 144.5c4.8 0 22.8-15.3 14.3-22.8-93.2-89-234.5-57-238.3-38.2zM393 414.7C283 524.6 94 475.5 61 310.5c0-12.2-30.4-7.4-28.9 3.3 24 173.4 246 256.9 381.6 121.3 6.9-7.8-12.6-28.4-20.7-20.4zM213.6 306.6c0 4 4.3 7.3 5.5 8.5 3 3 6.1 4.4 8.5 4.4 3.8 0 2.6.2 22.3-19.5 19.6 19.3 19.1 19.5 22.3 19.5 5.4 0 18.5-10.4 10.7-18.2L265.6 284l18.2-18.2c6.3-6.8-10.1-21.8-16.2-15.7L249.7 268c-18.6-18.8-18.4-19.5-21.5-19.5-5 0-18 11.7-12.4 17.3L234 284c-18.1 17.9-20.4 19.2-20.4 22.6z"
29
+ }
30
+ }
31
+ },
32
+ "accessible-icon": {
33
+ "changes": [
34
+ "5.0.0"
35
+ ],
36
+ "ligatures": [],
37
+ "search": {
38
+ "terms": [
39
+ "accessibility",
40
+ "handicap",
41
+ "person",
42
+ "wheelchair",
43
+ "wheelchair-alt"
44
+ ]
45
+ },
46
+ "styles": [
47
+ "brands"
48
+ ],
49
+ "unicode": "f368",
50
+ "label": "Accessible Icon",
51
+ "svg": {
52
+ "brands": {
53
+ "last_modified": 1502397066000,
54
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M423.9 255.8L411 413.1c-3.3 40.7-63.9 35.1-60.6-4.9l10-122.5-41.1 2.3c10.1 20.7 15.8 43.9 15.8 68.5 0 41.2-16.1 78.7-42.3 106.5l-39.3-39.3c57.9-63.7 13.1-167.2-74-167.2-25.9 0-49.5 9.9-67.2 26L73 243.2c22-20.7 50.1-35.1 81.4-40.2l75.3-85.7-42.6-24.8-51.6 46c-30 26.8-70.6-18.5-40.5-45.4l68-60.7c9.8-8.8 24.1-10.2 35.5-3.6 0 0 139.3 80.9 139.5 81.1 16.2 10.1 20.7 36 6.1 52.6L285.7 229l106.1-5.9c18.5-1.1 33.6 14.4 32.1 32.7zm-64.9-154c28.1 0 50.9-22.8 50.9-50.9C409.9 22.8 387.1 0 359 0c-28.1 0-50.9 22.8-50.9 50.9 0 28.1 22.8 50.9 50.9 50.9zM179.6 456.5c-80.6 0-127.4-90.6-82.7-156.1l-39.7-39.7C36.4 287 24 320.3 24 356.4c0 130.7 150.7 201.4 251.4 122.5l-39.7-39.7c-16 10.9-35.3 17.3-56.1 17.3z\"/></svg>",
55
+ "viewBox": [
56
+ "0",
57
+ "0",
58
+ "448",
59
+ "512"
60
+ ],
61
+ "width": 448,
62
+ "height": 512,
63
+ "path": "M423.9 255.8L411 413.1c-3.3 40.7-63.9 35.1-60.6-4.9l10-122.5-41.1 2.3c10.1 20.7 15.8 43.9 15.8 68.5 0 41.2-16.1 78.7-42.3 106.5l-39.3-39.3c57.9-63.7 13.1-167.2-74-167.2-25.9 0-49.5 9.9-67.2 26L73 243.2c22-20.7 50.1-35.1 81.4-40.2l75.3-85.7-42.6-24.8-51.6 46c-30 26.8-70.6-18.5-40.5-45.4l68-60.7c9.8-8.8 24.1-10.2 35.5-3.6 0 0 139.3 80.9 139.5 81.1 16.2 10.1 20.7 36 6.1 52.6L285.7 229l106.1-5.9c18.5-1.1 33.6 14.4 32.1 32.7zm-64.9-154c28.1 0 50.9-22.8 50.9-50.9C409.9 22.8 387.1 0 359 0c-28.1 0-50.9 22.8-50.9 50.9 0 28.1 22.8 50.9 50.9 50.9zM179.6 456.5c-80.6 0-127.4-90.6-82.7-156.1l-39.7-39.7C36.4 287 24 320.3 24 356.4c0 130.7 150.7 201.4 251.4 122.5l-39.7-39.7c-16 10.9-35.3 17.3-56.1 17.3z"
64
+ }
65
+ }
66
+ },
67
+ "accusoft": {
68
+ "changes": [
69
+ "5.0.0"
70
+ ],
71
+ "ligatures": [],
72
+ "search": {
73
+ "terms": []
74
+ },
75
+ "styles": [
76
+ "brands"
77
+ ],
78
+ "unicode": "f369",
79
+ "label": "Accusoft",
80
+ "svg": {
81
+ "brands": {
82
+ "last_modified": 1521653821380,
83
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M482.2 372.1C476.5 365.2 250 75 242.3 65.5c-13.7-17.2 0-16.8 19.2-16.9 9.7-.1 106.3-.6 116.5-.6 24.1-.1 28.7.6 38.4 12.8 2.1 2.7 205.1 245.8 207.2 248.3 5.5 6.7 15.2 19.1 7.2 23.4-2.4 1.3-114.6 47.7-117.8 48.9-10.1 4-17.5 6.8-30.8-9.3m114.7-5.6s-115 50.4-117.5 51.6c-16 7.3-26.9-3.2-36.7-14.6l-57.1-74c-5.4-.9-60.4-9.6-65.3-9.3-3.1.2-9.6.8-14.4 2.9-4.9 2.1-145.2 52.8-150.2 54.7-5.1 2-11.4 3.6-11.1 7.6.2 2.5 2 2.6 4.6 3.5 2.7.8 300.9 67.6 308 69.1 15.6 3.3 38.5 10.5 53.6 1.7 2.1-1.2 123.8-76.4 125.8-77.8 5.4-4 4.3-6.8-1.7-8.2-2.3-.3-24.6-4.7-38-7.2m-326-181.3s-12 1.6-25 15.1c-9 9.3-242.1 239.1-243.4 240.9-7 10 1.6 6.8 15.7 1.7.8 0 114.5-36.6 114.5-36.6.5-.6-.1-.1.6-.6-.4-5.1-.8-26.2-1-27.7-.6-5.2 2.2-6.9 7-8.9l92.6-33.8c.6-.8 88.5-81.7 90.2-83.3v-1l-51.2-65.8\"/></svg>",
84
+ "viewBox": [
85
+ "0",
86
+ "0",
87
+ "640",
88
+ "512"
89
+ ],
90
+ "width": 640,
91
+ "height": 512,
92
+ "path": "M482.2 372.1C476.5 365.2 250 75 242.3 65.5c-13.7-17.2 0-16.8 19.2-16.9 9.7-.1 106.3-.6 116.5-.6 24.1-.1 28.7.6 38.4 12.8 2.1 2.7 205.1 245.8 207.2 248.3 5.5 6.7 15.2 19.1 7.2 23.4-2.4 1.3-114.6 47.7-117.8 48.9-10.1 4-17.5 6.8-30.8-9.3m114.7-5.6s-115 50.4-117.5 51.6c-16 7.3-26.9-3.2-36.7-14.6l-57.1-74c-5.4-.9-60.4-9.6-65.3-9.3-3.1.2-9.6.8-14.4 2.9-4.9 2.1-145.2 52.8-150.2 54.7-5.1 2-11.4 3.6-11.1 7.6.2 2.5 2 2.6 4.6 3.5 2.7.8 300.9 67.6 308 69.1 15.6 3.3 38.5 10.5 53.6 1.7 2.1-1.2 123.8-76.4 125.8-77.8 5.4-4 4.3-6.8-1.7-8.2-2.3-.3-24.6-4.7-38-7.2m-326-181.3s-12 1.6-25 15.1c-9 9.3-242.1 239.1-243.4 240.9-7 10 1.6 6.8 15.7 1.7.8 0 114.5-36.6 114.5-36.6.5-.6-.1-.1.6-.6-.4-5.1-.8-26.2-1-27.7-.6-5.2 2.2-6.9 7-8.9l92.6-33.8c.6-.8 88.5-81.7 90.2-83.3v-1l-51.2-65.8"
93
+ }
94
+ }
95
+ },
96
+ "address-book": {
97
+ "changes": [
98
+ "4.7",
99
+ "5.0.0",
100
+ "5.0.3"
101
+ ],
102
+ "ligatures": [],
103
+ "search": {
104
+ "terms": []
105
+ },
106
+ "styles": [
107
+ "solid",
108
+ "regular"
109
+ ],
110
+ "unicode": "f2b9",
111
+ "label": "Address Book",
112
+ "svg": {
113
+ "solid": {
114
+ "last_modified": 1525209365064,
115
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-228-32c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H118.4C106 384 96 375.4 96 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z\"/></svg>",
116
+ "viewBox": [
117
+ "0",
118
+ "0",
119
+ "448",
120
+ "512"
121
+ ],
122
+ "width": 448,
123
+ "height": 512,
124
+ "path": "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-228-32c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H118.4C106 384 96 375.4 96 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"
125
+ },
126
+ "regular": {
127
+ "last_modified": 1525209365040,
128
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-68 304H48V48h320v416zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z\"/></svg>",
129
+ "viewBox": [
130
+ "0",
131
+ "0",
132
+ "448",
133
+ "512"
134
+ ],
135
+ "width": 448,
136
+ "height": 512,
137
+ "path": "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-68 304H48V48h320v416zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z"
138
+ }
139
+ }
140
+ },
141
+ "address-card": {
142
+ "changes": [
143
+ "4.7",
144
+ "5.0.0",
145
+ "5.0.3"
146
+ ],
147
+ "ligatures": [],
148
+ "search": {
149
+ "terms": []
150
+ },
151
+ "styles": [
152
+ "solid",
153
+ "regular"
154
+ ],
155
+ "unicode": "f2bb",
156
+ "label": "Address Card",
157
+ "svg": {
158
+ "solid": {
159
+ "last_modified": 1525209365064,
160
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-352 96c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H86.4C74 384 64 375.4 64 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2zM512 312c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z\"/></svg>",
161
+ "viewBox": [
162
+ "0",
163
+ "0",
164
+ "576",
165
+ "512"
166
+ ],
167
+ "width": 576,
168
+ "height": 512,
169
+ "path": "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-352 96c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H86.4C74 384 64 375.4 64 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2zM512 312c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z"
170
+ },
171
+ "regular": {
172
+ "last_modified": 1525209365041,
173
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H48V80h480v352zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2zM360 320h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8z\"/></svg>",
174
+ "viewBox": [
175
+ "0",
176
+ "0",
177
+ "576",
178
+ "512"
179
+ ],
180
+ "width": 576,
181
+ "height": 512,
182
+ "path": "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H48V80h480v352zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2zM360 320h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8z"
183
+ }
184
+ }
185
+ },
186
+ "adjust": {
187
+ "changes": [
188
+ "1",
189
+ "5.0.0"
190
+ ],
191
+ "ligatures": [],
192
+ "search": {
193
+ "terms": [
194
+ "contrast"
195
+ ]
196
+ },
197
+ "styles": [
198
+ "solid"
199
+ ],
200
+ "unicode": "f042",
201
+ "label": "adjust",
202
+ "svg": {
203
+ "solid": {
204
+ "last_modified": 1500927880000,
205
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M8 256c0 136.966 111.033 248 248 248s248-111.034 248-248S392.966 8 256 8 8 119.033 8 256zm248 184V72c101.705 0 184 82.311 184 184 0 101.705-82.311 184-184 184z\"/></svg>",
206
+ "viewBox": [
207
+ "0",
208
+ "0",
209
+ "512",
210
+ "512"
211
+ ],
212
+ "width": 512,
213
+ "height": 512,
214
+ "path": "M8 256c0 136.966 111.033 248 248 248s248-111.034 248-248S392.966 8 256 8 8 119.033 8 256zm248 184V72c101.705 0 184 82.311 184 184 0 101.705-82.311 184-184 184z"
215
+ }
216
+ }
217
+ },
218
+ "adn": {
219
+ "changes": [
220
+ "3.2",
221
+ "5.0.0"
222
+ ],
223
+ "ligatures": [],
224
+ "search": {
225
+ "terms": []
226
+ },
227
+ "styles": [
228
+ "brands"
229
+ ],
230
+ "unicode": "f170",
231
+ "label": "App.net",
232
+ "svg": {
233
+ "brands": {
234
+ "last_modified": 1500927880000,
235
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 496 512\"><path d=\"M248 167.5l64.9 98.8H183.1l64.9-98.8zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-99.8 82.7L248 115.5 99.8 338.7h30.4l33.6-51.7h168.6l33.6 51.7h30.2z\"/></svg>",
236
+ "viewBox": [
237
+ "0",
238
+ "0",
239
+ "496",
240
+ "512"
241
+ ],
242
+ "width": 496,
243
+ "height": 512,
244
+ "path": "M248 167.5l64.9 98.8H183.1l64.9-98.8zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-99.8 82.7L248 115.5 99.8 338.7h30.4l33.6-51.7h168.6l33.6 51.7h30.2z"
245
+ }
246
+ }
247
+ },
248
+ "adversal": {
249
+ "changes": [
250
+ "5.0.0"
251
+ ],
252
+ "ligatures": [],
253
+ "search": {
254
+ "terms": []
255
+ },
256
+ "styles": [
257
+ "brands"
258
+ ],
259
+ "unicode": "f36a",
260
+ "label": "Adversal",
261
+ "svg": {
262
+ "brands": {
263
+ "last_modified": 1500927880000,
264
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M482.1 32H28.7C5.8 32 0 37.9 0 60.9v390.2C0 474.4 5.8 480 28.7 480h453.4c24.4 0 29.9-5.2 29.9-29.7V62.2c0-24.6-5.4-30.2-29.9-30.2zM178.4 220.3c-27.5-20.2-72.1-8.7-84.2 23.4-4.3 11.1-9.3 9.5-17.5 8.3-9.7-1.5-17.2-3.2-22.5-5.5-28.8-11.4 8.6-55.3 24.9-64.3 41.1-21.4 83.4-22.2 125.3-4.8 40.9 16.8 34.5 59.2 34.5 128.5 2.7 25.8-4.3 58.3 9.3 88.8 1.9 4.4.4 7.9-2.7 10.7-8.4 6.7-39.3 2.2-46.6-7.4-1.9-2.2-1.8-3.6-3.9-6.2-3.6-3.9-7.3-2.2-11.9 1-57.4 36.4-140.3 21.4-147-43.3-3.1-29.3 12.4-57.1 39.6-71 38.2-19.5 112.2-11.8 114-30.9 1.1-10.2-1.9-20.1-11.3-27.3zm286.7 222c0 15.1-11.1 9.9-17.8 9.9H52.4c-7.4 0-18.2 4.8-17.8-10.7.4-13.9 10.5-9.1 17.1-9.1 132.3-.4 264.5-.4 396.8 0 6.8 0 16.6-4.4 16.6 9.9zm3.8-340.5v291c0 5.7-.7 13.9-8.1 13.9-12.4-.4-27.5 7.1-36.1-5.6-5.8-8.7-7.8-4-12.4-1.2-53.4 29.7-128.1 7.1-144.4-85.2-6.1-33.4-.7-67.1 15.7-100 11.8-23.9 56.9-76.1 136.1-30.5v-71c0-26.2-.1-26.2 26-26.2 3.1 0 6.6.4 9.7 0 10.1-.8 13.6 4.4 13.6 14.3-.1.2-.1.3-.1.5zm-51.5 232.3c-19.5 47.6-72.9 43.3-90 5.2-15.1-33.3-15.5-68.2.4-101.5 16.3-34.1 59.7-35.7 81.5-4.8 20.6 28.8 14.9 84.6 8.1 101.1zm-294.8 35.3c-7.5-1.3-33-3.3-33.7-27.8-.4-13.9 7.8-23 19.8-25.8 24.4-5.9 49.3-9.9 73.7-14.7 8.9-2 7.4 4.4 7.8 9.5 1.4 33-26.1 59.2-67.6 58.8z\"/></svg>",
265
+ "viewBox": [
266
+ "0",
267
+ "0",
268
+ "512",
269
+ "512"
270
+ ],
271
+ "width": 512,
272
+ "height": 512,
273
+ "path": "M482.1 32H28.7C5.8 32 0 37.9 0 60.9v390.2C0 474.4 5.8 480 28.7 480h453.4c24.4 0 29.9-5.2 29.9-29.7V62.2c0-24.6-5.4-30.2-29.9-30.2zM178.4 220.3c-27.5-20.2-72.1-8.7-84.2 23.4-4.3 11.1-9.3 9.5-17.5 8.3-9.7-1.5-17.2-3.2-22.5-5.5-28.8-11.4 8.6-55.3 24.9-64.3 41.1-21.4 83.4-22.2 125.3-4.8 40.9 16.8 34.5 59.2 34.5 128.5 2.7 25.8-4.3 58.3 9.3 88.8 1.9 4.4.4 7.9-2.7 10.7-8.4 6.7-39.3 2.2-46.6-7.4-1.9-2.2-1.8-3.6-3.9-6.2-3.6-3.9-7.3-2.2-11.9 1-57.4 36.4-140.3 21.4-147-43.3-3.1-29.3 12.4-57.1 39.6-71 38.2-19.5 112.2-11.8 114-30.9 1.1-10.2-1.9-20.1-11.3-27.3zm286.7 222c0 15.1-11.1 9.9-17.8 9.9H52.4c-7.4 0-18.2 4.8-17.8-10.7.4-13.9 10.5-9.1 17.1-9.1 132.3-.4 264.5-.4 396.8 0 6.8 0 16.6-4.4 16.6 9.9zm3.8-340.5v291c0 5.7-.7 13.9-8.1 13.9-12.4-.4-27.5 7.1-36.1-5.6-5.8-8.7-7.8-4-12.4-1.2-53.4 29.7-128.1 7.1-144.4-85.2-6.1-33.4-.7-67.1 15.7-100 11.8-23.9 56.9-76.1 136.1-30.5v-71c0-26.2-.1-26.2 26-26.2 3.1 0 6.6.4 9.7 0 10.1-.8 13.6 4.4 13.6 14.3-.1.2-.1.3-.1.5zm-51.5 232.3c-19.5 47.6-72.9 43.3-90 5.2-15.1-33.3-15.5-68.2.4-101.5 16.3-34.1 59.7-35.7 81.5-4.8 20.6 28.8 14.9 84.6 8.1 101.1zm-294.8 35.3c-7.5-1.3-33-3.3-33.7-27.8-.4-13.9 7.8-23 19.8-25.8 24.4-5.9 49.3-9.9 73.7-14.7 8.9-2 7.4 4.4 7.8 9.5 1.4 33-26.1 59.2-67.6 58.8z"
274
+ }
275
+ }
276
+ },
277
+ "affiliatetheme": {
278
+ "changes": [
279
+ "5.0.0"
280
+ ],
281
+ "ligatures": [],
282
+ "search": {
283
+ "terms": []
284
+ },
285
+ "styles": [
286
+ "brands"
287
+ ],
288
+ "unicode": "f36b",
289
+ "label": "affiliatetheme",
290
+ "svg": {
291
+ "brands": {
292
+ "last_modified": 1500927880000,
293
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M159.7 237.4C108.4 308.3 43.1 348.2 14 326.6-15.2 304.9 2.8 230 54.2 159.1c51.3-70.9 116.6-110.8 145.7-89.2 29.1 21.6 11.1 96.6-40.2 167.5zm351.2-57.3C437.1 303.5 319 367.8 246.4 323.7c-25-15.2-41.3-41.2-49-73.8-33.6 64.8-92.8 113.8-164.1 133.2 49.8 59.3 124.1 96.9 207 96.9 150 0 271.6-123.1 271.6-274.9.1-8.5-.3-16.8-1-25z\"/></svg>",
294
+ "viewBox": [
295
+ "0",
296
+ "0",
297
+ "512",
298
+ "512"
299
+ ],
300
+ "width": 512,
301
+ "height": 512,
302
+ "path": "M159.7 237.4C108.4 308.3 43.1 348.2 14 326.6-15.2 304.9 2.8 230 54.2 159.1c51.3-70.9 116.6-110.8 145.7-89.2 29.1 21.6 11.1 96.6-40.2 167.5zm351.2-57.3C437.1 303.5 319 367.8 246.4 323.7c-25-15.2-41.3-41.2-49-73.8-33.6 64.8-92.8 113.8-164.1 133.2 49.8 59.3 124.1 96.9 207 96.9 150 0 271.6-123.1 271.6-274.9.1-8.5-.3-16.8-1-25z"
303
+ }
304
+ }
305
+ },
306
+ "air-freshener": {
307
+ "changes": [
308
+ "5.2.0"
309
+ ],
310
+ "ligatures": [],
311
+ "search": {
312
+ "terms": []
313
+ },
314
+ "styles": [
315
+ "solid"
316
+ ],
317
+ "unicode": "f5d0",
318
+ "label": "Air Freshener",
319
+ "svg": {
320
+ "solid": {
321
+ "last_modified": 1532362831512,
322
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 384 512\"><path d=\"M378.94 321.41L284.7 224h49.22c15.3 0 23.66-16.6 13.86-27.53L234.45 69.96c3.43-6.61 5.55-14 5.55-21.96 0-26.51-21.49-48-48-48s-48 21.49-48 48c0 7.96 2.12 15.35 5.55 21.96L36.22 196.47C26.42 207.4 34.78 224 50.08 224H99.3L5.06 321.41C-6.69 333.56 3.34 352 21.7 352H160v32H48c-8.84 0-16 7.16-16 16v96c0 8.84 7.16 16 16 16h288c8.84 0 16-7.16 16-16v-96c0-8.84-7.16-16-16-16H224v-32h138.3c18.36 0 28.39-18.44 16.64-30.59zM192 31.98c8.85 0 16.02 7.17 16.02 16.02 0 8.84-7.17 16.02-16.02 16.02S175.98 56.84 175.98 48c0-8.85 7.17-16.02 16.02-16.02zM304 432v32H80v-32h224z\"/></svg>",
323
+ "viewBox": [
324
+ "0",
325
+ "0",
326
+ "384",
327
+ "512"
328
+ ],
329
+ "width": 384,
330
+ "height": 512,
331
+ "path": "M378.94 321.41L284.7 224h49.22c15.3 0 23.66-16.6 13.86-27.53L234.45 69.96c3.43-6.61 5.55-14 5.55-21.96 0-26.51-21.49-48-48-48s-48 21.49-48 48c0 7.96 2.12 15.35 5.55 21.96L36.22 196.47C26.42 207.4 34.78 224 50.08 224H99.3L5.06 321.41C-6.69 333.56 3.34 352 21.7 352H160v32H48c-8.84 0-16 7.16-16 16v96c0 8.84 7.16 16 16 16h288c8.84 0 16-7.16 16-16v-96c0-8.84-7.16-16-16-16H224v-32h138.3c18.36 0 28.39-18.44 16.64-30.59zM192 31.98c8.85 0 16.02 7.17 16.02 16.02 0 8.84-7.17 16.02-16.02 16.02S175.98 56.84 175.98 48c0-8.85 7.17-16.02 16.02-16.02zM304 432v32H80v-32h224z"
332
+ }
333
+ }
334
+ },
335
+ "algolia": {
336
+ "changes": [
337
+ "5.0.0"
338
+ ],
339
+ "ligatures": [],
340
+ "search": {
341
+ "terms": []
342
+ },
343
+ "styles": [
344
+ "brands"
345
+ ],
346
+ "unicode": "f36c",
347
+ "label": "Algolia",
348
+ "svg": {
349
+ "brands": {
350
+ "last_modified": 1500927880000,
351
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M229.3 182.6c-49.3 0-89.2 39.9-89.2 89.2 0 49.3 39.9 89.2 89.2 89.2s89.2-39.9 89.2-89.2c0-49.3-40-89.2-89.2-89.2zm62.7 56.6l-58.9 30.6c-1.8.9-3.8-.4-3.8-2.3V201c0-1.5 1.3-2.7 2.7-2.6 26.2 1 48.9 15.7 61.1 37.1.7 1.3.2 3-1.1 3.7zM389.1 32H58.9C26.4 32 0 58.4 0 90.9V421c0 32.6 26.4 59 58.9 59H389c32.6 0 58.9-26.4 58.9-58.9V90.9C448 58.4 421.6 32 389.1 32zm-202.6 84.7c0-10.8 8.7-19.5 19.5-19.5h45.3c10.8 0 19.5 8.7 19.5 19.5v15.4c0 1.8-1.7 3-3.3 2.5-12.3-3.4-25.1-5.1-38.1-5.1-13.5 0-26.7 1.8-39.4 5.5-1.7.5-3.4-.8-3.4-2.5v-15.8zm-84.4 37l9.2-9.2c7.6-7.6 19.9-7.6 27.5 0l7.7 7.7c1.1 1.1 1 3-.3 4-6.2 4.5-12.1 9.4-17.6 14.9-5.4 5.4-10.4 11.3-14.8 17.4-1 1.3-2.9 1.5-4 .3l-7.7-7.7c-7.6-7.5-7.6-19.8 0-27.4zm127.2 244.8c-70 0-126.6-56.7-126.6-126.6s56.7-126.6 126.6-126.6c70 0 126.6 56.6 126.6 126.6 0 69.8-56.7 126.6-126.6 126.6z\"/></svg>",
352
+ "viewBox": [
353
+ "0",
354
+ "0",
355
+ "448",
356
+ "512"
357
+ ],
358
+ "width": 448,
359
+ "height": 512,
360
+ "path": "M229.3 182.6c-49.3 0-89.2 39.9-89.2 89.2 0 49.3 39.9 89.2 89.2 89.2s89.2-39.9 89.2-89.2c0-49.3-40-89.2-89.2-89.2zm62.7 56.6l-58.9 30.6c-1.8.9-3.8-.4-3.8-2.3V201c0-1.5 1.3-2.7 2.7-2.6 26.2 1 48.9 15.7 61.1 37.1.7 1.3.2 3-1.1 3.7zM389.1 32H58.9C26.4 32 0 58.4 0 90.9V421c0 32.6 26.4 59 58.9 59H389c32.6 0 58.9-26.4 58.9-58.9V90.9C448 58.4 421.6 32 389.1 32zm-202.6 84.7c0-10.8 8.7-19.5 19.5-19.5h45.3c10.8 0 19.5 8.7 19.5 19.5v15.4c0 1.8-1.7 3-3.3 2.5-12.3-3.4-25.1-5.1-38.1-5.1-13.5 0-26.7 1.8-39.4 5.5-1.7.5-3.4-.8-3.4-2.5v-15.8zm-84.4 37l9.2-9.2c7.6-7.6 19.9-7.6 27.5 0l7.7 7.7c1.1 1.1 1 3-.3 4-6.2 4.5-12.1 9.4-17.6 14.9-5.4 5.4-10.4 11.3-14.8 17.4-1 1.3-2.9 1.5-4 .3l-7.7-7.7c-7.6-7.5-7.6-19.8 0-27.4zm127.2 244.8c-70 0-126.6-56.7-126.6-126.6s56.7-126.6 126.6-126.6c70 0 126.6 56.6 126.6 126.6 0 69.8-56.7 126.6-126.6 126.6z"
361
+ }
362
+ }
363
+ },
364
+ "align-center": {
365
+ "changes": [
366
+ "1",
367
+ "5.0.0"
368
+ ],
369
+ "ligatures": [],
370
+ "search": {
371
+ "terms": [
372
+ "middle",
373
+ "text"
374
+ ]
375
+ },
376
+ "styles": [
377
+ "solid"
378
+ ],
379
+ "unicode": "f037",
380
+ "label": "align-center",
381
+ "svg": {
382
+ "solid": {
383
+ "last_modified": 1500927880000,
384
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M352 44v40c0 8.837-7.163 16-16 16H112c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h224c8.837 0 16 7.163 16 16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm320-200H112c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z\"/></svg>",
385
+ "viewBox": [
386
+ "0",
387
+ "0",
388
+ "448",
389
+ "512"
390
+ ],
391
+ "width": 448,
392
+ "height": 512,
393
+ "path": "M352 44v40c0 8.837-7.163 16-16 16H112c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h224c8.837 0 16 7.163 16 16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm320-200H112c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z"
394
+ }
395
+ }
396
+ },
397
+ "align-justify": {
398
+ "changes": [
399
+ "1",
400
+ "5.0.0"
401
+ ],
402
+ "ligatures": [],
403
+ "search": {
404
+ "terms": [
405
+ "text"
406
+ ]
407
+ },
408
+ "styles": [
409
+ "solid"
410
+ ],
411
+ "unicode": "f039",
412
+ "label": "align-justify",
413
+ "svg": {
414
+ "solid": {
415
+ "last_modified": 1500927880000,
416
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm16 144h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0-128h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z\"/></svg>",
417
+ "viewBox": [
418
+ "0",
419
+ "0",
420
+ "448",
421
+ "512"
422
+ ],
423
+ "width": 448,
424
+ "height": 512,
425
+ "path": "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm16 144h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0-128h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"
426
+ }
427
+ }
428
+ },
429
+ "align-left": {
430
+ "changes": [
431
+ "1",
432
+ "5.0.0"
433
+ ],
434
+ "ligatures": [],
435
+ "search": {
436
+ "terms": [
437
+ "text"
438
+ ]
439
+ },
440
+ "styles": [
441
+ "solid"
442
+ ],
443
+ "unicode": "f036",
444
+ "label": "align-left",
445
+ "svg": {
446
+ "solid": {
447
+ "last_modified": 1500927880000,
448
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M288 44v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16zM0 172v40c0 8.837 7.163 16 16 16h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16zm16 312h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm256-200H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z\"/></svg>",
449
+ "viewBox": [
450
+ "0",
451
+ "0",
452
+ "448",
453
+ "512"
454
+ ],
455
+ "width": 448,
456
+ "height": 512,
457
+ "path": "M288 44v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16zM0 172v40c0 8.837 7.163 16 16 16h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16zm16 312h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm256-200H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z"
458
+ }
459
+ }
460
+ },
461
+ "align-right": {
462
+ "changes": [
463
+ "1",
464
+ "5.0.0"
465
+ ],
466
+ "ligatures": [],
467
+ "search": {
468
+ "terms": [
469
+ "text"
470
+ ]
471
+ },
472
+ "styles": [
473
+ "solid"
474
+ ],
475
+ "unicode": "f038",
476
+ "label": "align-right",
477
+ "svg": {
478
+ "solid": {
479
+ "last_modified": 1500927880000,
480
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M160 84V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H176c-8.837 0-16-7.163-16-16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z\"/></svg>",
481
+ "viewBox": [
482
+ "0",
483
+ "0",
484
+ "448",
485
+ "512"
486
+ ],
487
+ "width": 448,
488
+ "height": 512,
489
+ "path": "M160 84V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H176c-8.837 0-16-7.163-16-16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"
490
+ }
491
+ }
492
+ },
493
+ "allergies": {
494
+ "changes": [
495
+ "5.0.7"
496
+ ],
497
+ "ligatures": [],
498
+ "search": {
499
+ "terms": [
500
+ "freckles",
501
+ "hand",
502
+ "intolerances",
503
+ "pox",
504
+ "spots"
505
+ ]
506
+ },
507
+ "styles": [
508
+ "solid"
509
+ ],
510
+ "unicode": "f461",
511
+ "label": "Allergies",
512
+ "svg": {
513
+ "solid": {
514
+ "last_modified": 1521653821440,
515
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 112c-17.6 0-32 14.4-32 32v72c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32s-32 14.4-32 32v152c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V32c0-17.6-14.4-32-32-32s-32 14.4-32 32v184c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32S96 46.4 96 64v241l-23.6-32.5c-13-17.9-38-21.8-55.9-8.8s-21.8 38-8.8 55.9l125.6 172.7c9 12.4 23.5 19.8 38.8 19.8h197.6c22.3 0 41.6-15.3 46.7-37l26.5-112.7c3.2-13.7 4.9-28.3 5.1-42.3V144c0-17.6-14.4-32-32-32zM176 416c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 32c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32-128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z\"/></svg>",
516
+ "viewBox": [
517
+ "0",
518
+ "0",
519
+ "448",
520
+ "512"
521
+ ],
522
+ "width": 448,
523
+ "height": 512,
524
+ "path": "M416 112c-17.6 0-32 14.4-32 32v72c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32s-32 14.4-32 32v152c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V32c0-17.6-14.4-32-32-32s-32 14.4-32 32v184c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32S96 46.4 96 64v241l-23.6-32.5c-13-17.9-38-21.8-55.9-8.8s-21.8 38-8.8 55.9l125.6 172.7c9 12.4 23.5 19.8 38.8 19.8h197.6c22.3 0 41.6-15.3 46.7-37l26.5-112.7c3.2-13.7 4.9-28.3 5.1-42.3V144c0-17.6-14.4-32-32-32zM176 416c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 32c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32-128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"
525
+ }
526
+ }
527
+ },
528
+ "amazon": {
529
+ "changes": [
530
+ "4.4",
531
+ "5.0.0"
532
+ ],
533
+ "ligatures": [],
534
+ "search": {
535
+ "terms": []
536
+ },
537
+ "styles": [
538
+ "brands"
539
+ ],
540
+ "unicode": "f270",
541
+ "label": "Amazon",
542
+ "svg": {
543
+ "brands": {
544
+ "last_modified": 1500927880000,
545
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M257.2 162.7c-48.7 1.8-169.5 15.5-169.5 117.5 0 109.5 138.3 114 183.5 43.2 6.5 10.2 35.4 37.5 45.3 46.8l56.8-56S341 288.9 341 261.4V114.3C341 89 316.5 32 228.7 32 140.7 32 94 87 94 136.3l73.5 6.8c16.3-49.5 54.2-49.5 54.2-49.5 40.7-.1 35.5 29.8 35.5 69.1zm0 86.8c0 80-84.2 68-84.2 17.2 0-47.2 50.5-56.7 84.2-57.8v40.6zm136 163.5c-7.7 10-70 67-174.5 67S34.2 408.5 9.7 379c-6.8-7.7 1-11.3 5.5-8.3C88.5 415.2 203 488.5 387.7 401c7.5-3.7 13.3 2 5.5 12zm39.8 2.2c-6.5 15.8-16 26.8-21.2 31-5.5 4.5-9.5 2.7-6.5-3.8s19.3-46.5 12.7-55c-6.5-8.3-37-4.3-48-3.2-10.8 1-13 2-14-.3-2.3-5.7 21.7-15.5 37.5-17.5 15.7-1.8 41-.8 46 5.7 3.7 5.1 0 27.1-6.5 43.1z\"/></svg>",
546
+ "viewBox": [
547
+ "0",
548
+ "0",
549
+ "448",
550
+ "512"
551
+ ],
552
+ "width": 448,
553
+ "height": 512,
554
+ "path": "M257.2 162.7c-48.7 1.8-169.5 15.5-169.5 117.5 0 109.5 138.3 114 183.5 43.2 6.5 10.2 35.4 37.5 45.3 46.8l56.8-56S341 288.9 341 261.4V114.3C341 89 316.5 32 228.7 32 140.7 32 94 87 94 136.3l73.5 6.8c16.3-49.5 54.2-49.5 54.2-49.5 40.7-.1 35.5 29.8 35.5 69.1zm0 86.8c0 80-84.2 68-84.2 17.2 0-47.2 50.5-56.7 84.2-57.8v40.6zm136 163.5c-7.7 10-70 67-174.5 67S34.2 408.5 9.7 379c-6.8-7.7 1-11.3 5.5-8.3C88.5 415.2 203 488.5 387.7 401c7.5-3.7 13.3 2 5.5 12zm39.8 2.2c-6.5 15.8-16 26.8-21.2 31-5.5 4.5-9.5 2.7-6.5-3.8s19.3-46.5 12.7-55c-6.5-8.3-37-4.3-48-3.2-10.8 1-13 2-14-.3-2.3-5.7 21.7-15.5 37.5-17.5 15.7-1.8 41-.8 46 5.7 3.7 5.1 0 27.1-6.5 43.1z"
555
+ }
556
+ }
557
+ },
558
+ "amazon-pay": {
559
+ "changes": [
560
+ "5.0.2"
561
+ ],
562
+ "ligatures": [],
563
+ "search": {
564
+ "terms": []
565
+ },
566
+ "styles": [
567
+ "brands"
568
+ ],
569
+ "unicode": "f42c",
570
+ "label": "Amazon Pay",
571
+ "svg": {
572
+ "brands": {
573
+ "last_modified": 1513713060429,
574
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 611.2 512\"><path d=\"M0 325.2c2.3-4.2 5.2-4.9 9.7-2.5 10.4 5.6 20.6 11.4 31.2 16.7 40.7 20.4 83.2 35.6 127.4 46.3 20.9 5 41.9 9 63.2 11.8 31.5 4.2 63.2 6 95 5.2 17.4-.4 34.8-1.8 52.1-3.8 56.4-6.7 110.9-20.8 163.3-42.8 2.9-1.2 5.9-2 9.1-1.2 6.7 1.8 9 9 4.1 13.9-2.8 2.8-6.3 5.1-9.6 7.4-30.7 21.1-64.2 36.4-99.6 47.9-24.6 7.9-49.6 13.8-75.1 17.6-17.6 2.6-35.4 4.4-53.2 4.8-.8 0-1.7.2-2.5.3H294c-.8-.1-1.7-.3-2.5-.3-3.6-.2-7.2-.3-10.7-.4-16.9-.7-33.7-2.6-50.4-5.3-27.4-4.5-54.2-11.4-80.4-20.9-54.1-19.6-102.6-48.6-145.6-87-1.8-1.6-3-3.8-4.4-5.7v-2zM158 65c-1.4.2-2.9.4-4.3.6-14 1.7-26.6 6.9-38 15.1-2.4 1.7-4.6 3.5-7.1 5.4-.2-.5-.4-1-.4-1.4-.4-2.7-.8-5.5-1.3-8.2-.7-4.6-3-6.6-7.6-6.6H87.8c-6.9 0-8.2 1.3-8.2 8.2v209.3c0 1 0 2 .1 3 .2 3 2 4.9 4.9 5 7 .1 14.1.1 21.1 0 2.9 0 4.7-2 5-5 .1-1 .1-2 .1-3V215c1.1.9 1.7 1.4 2.2 1.9 17.9 14.9 38.5 19.8 61 15.4 20.4-4 34.6-16.5 43.8-34.9 7-13.9 9.9-28.7 10.3-44.1.5-17.1-1.2-33.9-8.1-49.8-8.5-19.6-22.6-32.5-43.9-36.9-3.2-.7-6.5-1-9.8-1.5-2.8-.1-5.5-.1-8.3-.1zm-47.4 41.9c0-1.5.4-2.4 1.7-3.3 13.7-9.5 28.8-14.5 45.6-13.2 14.9 1.1 27.1 8.4 33.5 25.9 3.9 10.7 4.9 21.8 4.9 33 0 10.4-.8 20.6-4 30.6-6.8 21.3-22.4 29.4-42.6 28.5-14-.6-26.2-6-37.4-13.9-1.2-.9-1.7-1.7-1.7-3.3.1-14.1 0-28.1 0-42.2 0-14 .1-28 0-42.1zM316.3 65c-1 .1-2 .3-2.9.4-9.8.5-19.4 1.7-28.9 4.1-6.1 1.6-12 3.8-17.9 5.8-3.6 1.2-5.4 3.8-5.3 7.7.1 3.3-.1 6.6 0 9.9.1 4.8 2.1 6.1 6.8 4.9 7.8-2 15.6-4.2 23.5-5.7 12.3-2.3 24.7-3.3 37.2-1.4 6.5 1 12.6 2.9 16.8 8.4 3.7 4.8 5.1 10.5 5.3 16.4.3 8.3.2 16.6.3 24.9 0 .4-.1.9-.2 1.4-.5-.1-.9 0-1.3-.1-10.5-2.5-21.1-4.3-32-4.9-11.3-.6-22.5.1-33.3 3.9-12.9 4.5-23.3 12.3-29.4 24.9-4.7 9.8-5.4 20.2-3.9 30.7 2 14 9 24.8 21.4 31.7 11.9 6.6 24.8 7.4 37.9 5.4 15.1-2.3 28.5-8.7 40.3-18.4.4-.4.9-.7 1.6-1.1.6 3.8 1.1 7.4 1.8 11 .6 3.1 2.5 5.1 5.4 5.2 5.4.1 10.9.1 16.3 0 2.7-.1 4.5-1.9 4.8-4.7.1-.9.1-1.9.1-2.8v-106c0-4.3-.2-8.6-.9-12.9-1.9-12.9-7.4-23.5-19-30.4-6.7-4-14.1-6-21.8-7.1-3.6-.5-7.2-.8-10.8-1.3-3.9.1-7.9.1-11.9.1zm35 127.7c0 1.3-.4 2.2-1.5 3-11.2 8.1-23.5 13.5-37.4 14.9-5.7.6-11.4.4-16.8-1.8-6.3-2.5-10.4-6.9-12.4-13.3s-2-13-.1-19.4c2.5-8.3 8.4-13 16.4-15.6 8.1-2.6 16.5-3 24.8-2.2 8.4.7 16.6 2.3 25 3.4 1.6.2 2.1 1 2.1 2.6-.1 4.8 0 9.5 0 14.3-.1 4.7-.2 9.4-.1 14.1zm259.9 129.4c-1-5-4.8-6.9-9.1-8.3-6.8-2.3-13.9-3.3-21-3.9-13.1-1.1-26.2-.5-39.2 1.9-14.3 2.7-27.9 7.3-40 15.6-1.4 1-2.8 2.1-3.7 3.5-.7 1.1-.9 2.8-.5 4 .4 1.5 2.1 1.9 3.6 1.8.7 0 1.5 0 2.2-.1 7.8-.8 15.5-1.7 23.3-2.5 11.4-1.1 22.9-1.8 34.3-.9 4.8.3 9.7 1.4 14.4 2.7 5.1 1.4 7.4 5.2 7.6 10.4.4 8-1.4 15.7-3.5 23.3-4.1 15.4-10 30.3-15.8 45.1-.4 1-.8 2-1 3-.5 2.9 1.2 4.8 4.1 4.1 1.7-.4 3.6-1.3 4.8-2.5 4.4-4.3 8.9-8.6 12.7-13.4 12.8-16.4 20.3-35.3 24.7-55.6.8-3.6 1.4-7.3 2.1-10.9v-17.3zM479.1 198.9c-12.9-35.7-25.8-71.5-38.7-107.2-2-5.7-4.2-11.3-6.3-16.9-1.1-2.9-3.2-4.8-6.4-4.8-7.6-.1-15.2-.2-22.9-.1-2.5 0-3.7 2-3.2 4.5.5 2.1 1.1 4.1 1.9 6.1 19.6 48.5 39.3 97.1 59.1 145.5 1.7 4.1 2.1 7.6.2 11.8-3.3 7.3-5.9 15-9.3 22.3-3 6.5-8 11.4-15.2 13.3-5.1 1.4-10.2 1.6-15.4 1.1-2.5-.2-5-.8-7.5-1-3.4-.2-5.1 1.3-5.2 4.8-.1 3.3-.1 6.6 0 9.9.1 5.5 2 8 7.4 8.9 5.6 1 11.3 1.9 16.9 2 17.1.4 30.7-6.5 39.5-21.4 3.5-5.9 6.7-12.1 9.2-18.4 23.7-59.8 47.1-119.7 70.6-179.6.7-1.8 1.3-3.6 1.6-5.5.4-2.8-.9-4.4-3.7-4.4-6.6-.1-13.3 0-19.9 0-3.7 0-6.3 1.6-7.7 5.2-.5 1.4-1.1 2.7-1.6 4.1-11.6 33.3-23.2 66.6-34.8 100-2.5 7.2-5.1 14.5-7.7 22.2-.4-1.1-.6-1.7-.9-2.4z\"/></svg>",
575
+ "viewBox": [
576
+ "0",
577
+ "0",
578
+ "611.2",
579
+ "512"
580
+ ],
581
+ "width": 611,
582
+ "height": 512,
583
+ "path": "M0 325.2c2.3-4.2 5.2-4.9 9.7-2.5 10.4 5.6 20.6 11.4 31.2 16.7 40.7 20.4 83.2 35.6 127.4 46.3 20.9 5 41.9 9 63.2 11.8 31.5 4.2 63.2 6 95 5.2 17.4-.4 34.8-1.8 52.1-3.8 56.4-6.7 110.9-20.8 163.3-42.8 2.9-1.2 5.9-2 9.1-1.2 6.7 1.8 9 9 4.1 13.9-2.8 2.8-6.3 5.1-9.6 7.4-30.7 21.1-64.2 36.4-99.6 47.9-24.6 7.9-49.6 13.8-75.1 17.6-17.6 2.6-35.4 4.4-53.2 4.8-.8 0-1.7.2-2.5.3H294c-.8-.1-1.7-.3-2.5-.3-3.6-.2-7.2-.3-10.7-.4-16.9-.7-33.7-2.6-50.4-5.3-27.4-4.5-54.2-11.4-80.4-20.9-54.1-19.6-102.6-48.6-145.6-87-1.8-1.6-3-3.8-4.4-5.7v-2zM158 65c-1.4.2-2.9.4-4.3.6-14 1.7-26.6 6.9-38 15.1-2.4 1.7-4.6 3.5-7.1 5.4-.2-.5-.4-1-.4-1.4-.4-2.7-.8-5.5-1.3-8.2-.7-4.6-3-6.6-7.6-6.6H87.8c-6.9 0-8.2 1.3-8.2 8.2v209.3c0 1 0 2 .1 3 .2 3 2 4.9 4.9 5 7 .1 14.1.1 21.1 0 2.9 0 4.7-2 5-5 .1-1 .1-2 .1-3V215c1.1.9 1.7 1.4 2.2 1.9 17.9 14.9 38.5 19.8 61 15.4 20.4-4 34.6-16.5 43.8-34.9 7-13.9 9.9-28.7 10.3-44.1.5-17.1-1.2-33.9-8.1-49.8-8.5-19.6-22.6-32.5-43.9-36.9-3.2-.7-6.5-1-9.8-1.5-2.8-.1-5.5-.1-8.3-.1zm-47.4 41.9c0-1.5.4-2.4 1.7-3.3 13.7-9.5 28.8-14.5 45.6-13.2 14.9 1.1 27.1 8.4 33.5 25.9 3.9 10.7 4.9 21.8 4.9 33 0 10.4-.8 20.6-4 30.6-6.8 21.3-22.4 29.4-42.6 28.5-14-.6-26.2-6-37.4-13.9-1.2-.9-1.7-1.7-1.7-3.3.1-14.1 0-28.1 0-42.2 0-14 .1-28 0-42.1zM316.3 65c-1 .1-2 .3-2.9.4-9.8.5-19.4 1.7-28.9 4.1-6.1 1.6-12 3.8-17.9 5.8-3.6 1.2-5.4 3.8-5.3 7.7.1 3.3-.1 6.6 0 9.9.1 4.8 2.1 6.1 6.8 4.9 7.8-2 15.6-4.2 23.5-5.7 12.3-2.3 24.7-3.3 37.2-1.4 6.5 1 12.6 2.9 16.8 8.4 3.7 4.8 5.1 10.5 5.3 16.4.3 8.3.2 16.6.3 24.9 0 .4-.1.9-.2 1.4-.5-.1-.9 0-1.3-.1-10.5-2.5-21.1-4.3-32-4.9-11.3-.6-22.5.1-33.3 3.9-12.9 4.5-23.3 12.3-29.4 24.9-4.7 9.8-5.4 20.2-3.9 30.7 2 14 9 24.8 21.4 31.7 11.9 6.6 24.8 7.4 37.9 5.4 15.1-2.3 28.5-8.7 40.3-18.4.4-.4.9-.7 1.6-1.1.6 3.8 1.1 7.4 1.8 11 .6 3.1 2.5 5.1 5.4 5.2 5.4.1 10.9.1 16.3 0 2.7-.1 4.5-1.9 4.8-4.7.1-.9.1-1.9.1-2.8v-106c0-4.3-.2-8.6-.9-12.9-1.9-12.9-7.4-23.5-19-30.4-6.7-4-14.1-6-21.8-7.1-3.6-.5-7.2-.8-10.8-1.3-3.9.1-7.9.1-11.9.1zm35 127.7c0 1.3-.4 2.2-1.5 3-11.2 8.1-23.5 13.5-37.4 14.9-5.7.6-11.4.4-16.8-1.8-6.3-2.5-10.4-6.9-12.4-13.3s-2-13-.1-19.4c2.5-8.3 8.4-13 16.4-15.6 8.1-2.6 16.5-3 24.8-2.2 8.4.7 16.6 2.3 25 3.4 1.6.2 2.1 1 2.1 2.6-.1 4.8 0 9.5 0 14.3-.1 4.7-.2 9.4-.1 14.1zm259.9 129.4c-1-5-4.8-6.9-9.1-8.3-6.8-2.3-13.9-3.3-21-3.9-13.1-1.1-26.2-.5-39.2 1.9-14.3 2.7-27.9 7.3-40 15.6-1.4 1-2.8 2.1-3.7 3.5-.7 1.1-.9 2.8-.5 4 .4 1.5 2.1 1.9 3.6 1.8.7 0 1.5 0 2.2-.1 7.8-.8 15.5-1.7 23.3-2.5 11.4-1.1 22.9-1.8 34.3-.9 4.8.3 9.7 1.4 14.4 2.7 5.1 1.4 7.4 5.2 7.6 10.4.4 8-1.4 15.7-3.5 23.3-4.1 15.4-10 30.3-15.8 45.1-.4 1-.8 2-1 3-.5 2.9 1.2 4.8 4.1 4.1 1.7-.4 3.6-1.3 4.8-2.5 4.4-4.3 8.9-8.6 12.7-13.4 12.8-16.4 20.3-35.3 24.7-55.6.8-3.6 1.4-7.3 2.1-10.9v-17.3zM479.1 198.9c-12.9-35.7-25.8-71.5-38.7-107.2-2-5.7-4.2-11.3-6.3-16.9-1.1-2.9-3.2-4.8-6.4-4.8-7.6-.1-15.2-.2-22.9-.1-2.5 0-3.7 2-3.2 4.5.5 2.1 1.1 4.1 1.9 6.1 19.6 48.5 39.3 97.1 59.1 145.5 1.7 4.1 2.1 7.6.2 11.8-3.3 7.3-5.9 15-9.3 22.3-3 6.5-8 11.4-15.2 13.3-5.1 1.4-10.2 1.6-15.4 1.1-2.5-.2-5-.8-7.5-1-3.4-.2-5.1 1.3-5.2 4.8-.1 3.3-.1 6.6 0 9.9.1 5.5 2 8 7.4 8.9 5.6 1 11.3 1.9 16.9 2 17.1.4 30.7-6.5 39.5-21.4 3.5-5.9 6.7-12.1 9.2-18.4 23.7-59.8 47.1-119.7 70.6-179.6.7-1.8 1.3-3.6 1.6-5.5.4-2.8-.9-4.4-3.7-4.4-6.6-.1-13.3 0-19.9 0-3.7 0-6.3 1.6-7.7 5.2-.5 1.4-1.1 2.7-1.6 4.1-11.6 33.3-23.2 66.6-34.8 100-2.5 7.2-5.1 14.5-7.7 22.2-.4-1.1-.6-1.7-.9-2.4z"
584
+ }
585
+ }
586
+ },
587
+ "ambulance": {
588
+ "changes": [
589
+ "3",
590
+ "5.0.0",
591
+ "5.0.7"
592
+ ],
593
+ "ligatures": [],
594
+ "search": {
595
+ "terms": [
596
+ "help",
597
+ "machine",
598
+ "support",
599
+ "vehicle"
600
+ ]
601
+ },
602
+ "styles": [
603
+ "solid"
604
+ ],
605
+ "unicode": "f0f9",
606
+ "label": "ambulance",
607
+ "svg": {
608
+ "solid": {
609
+ "last_modified": 1521653821441,
610
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm144-248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm176 248c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z\"/></svg>",
611
+ "viewBox": [
612
+ "0",
613
+ "0",
614
+ "640",
615
+ "512"
616
+ ],
617
+ "width": 640,
618
+ "height": 512,
619
+ "path": "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm144-248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm176 248c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"
620
+ }
621
+ }
622
+ },
623
+ "american-sign-language-interpreting": {
624
+ "changes": [
625
+ "4.6",
626
+ "5.0.0"
627
+ ],
628
+ "ligatures": [],
629
+ "search": {
630
+ "terms": []
631
+ },
632
+ "styles": [
633
+ "solid"
634
+ ],
635
+ "unicode": "f2a3",
636
+ "label": "American Sign Language Interpreting",
637
+ "svg": {
638
+ "solid": {
639
+ "last_modified": 1503937790000,
640
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M290.547 189.039c-20.295-10.149-44.147-11.199-64.739-3.89 42.606 0 71.208 20.475 85.578 50.576 8.576 17.899-5.148 38.071-23.617 38.071 18.429 0 32.211 20.136 23.617 38.071-14.725 30.846-46.123 50.854-80.298 50.854-.557 0-94.471-8.615-94.471-8.615l-66.406 33.347c-9.384 4.693-19.815.379-23.895-7.781L1.86 290.747c-4.167-8.615-1.111-18.897 6.946-23.621l58.072-33.069L108 159.861c6.39-57.245 34.731-109.767 79.743-146.726 11.391-9.448 28.341-7.781 37.51 3.613 9.446 11.394 7.78 28.067-3.612 37.516-12.503 10.559-23.618 22.509-32.509 35.57 21.672-14.729 46.679-24.732 74.186-28.067 14.725-1.945 28.063 8.336 29.73 23.065 1.945 14.728-8.336 28.067-23.062 29.734-16.116 1.945-31.12 7.503-44.178 15.284 26.114-5.713 58.712-3.138 88.079 11.115 13.336 6.669 18.893 22.509 12.224 35.848-6.389 13.06-22.504 18.617-35.564 12.226zm-27.229 69.472c-6.112-12.505-18.338-20.286-32.231-20.286a35.46 35.46 0 0 0-35.565 35.57c0 21.428 17.808 35.57 35.565 35.57 13.893 0 26.119-7.781 32.231-20.286 4.446-9.449 13.614-15.006 23.339-15.284-9.725-.277-18.893-5.835-23.339-15.284zm374.821-37.237c4.168 8.615 1.111 18.897-6.946 23.621l-58.071 33.069L532 352.16c-6.39 57.245-34.731 109.767-79.743 146.726-10.932 9.112-27.799 8.144-37.51-3.613-9.446-11.394-7.78-28.067 3.613-37.516 12.503-10.559 23.617-22.509 32.508-35.57-21.672 14.729-46.679 24.732-74.186 28.067-10.021 2.506-27.552-5.643-29.73-23.065-1.945-14.728 8.336-28.067 23.062-29.734 16.116-1.946 31.12-7.503 44.178-15.284-26.114 5.713-58.712 3.138-88.079-11.115-13.336-6.669-18.893-22.509-12.224-35.848 6.389-13.061 22.505-18.619 35.565-12.227 20.295 10.149 44.147 11.199 64.739 3.89-42.606 0-71.208-20.475-85.578-50.576-8.576-17.899 5.148-38.071 23.617-38.071-18.429 0-32.211-20.136-23.617-38.071 14.033-29.396 44.039-50.887 81.966-50.854l92.803 8.615 66.406-33.347c9.408-4.704 19.828-.354 23.894 7.781l44.455 88.926zm-229.227-18.618c-13.893 0-26.119 7.781-32.231 20.286-4.446 9.449-13.614 15.006-23.339 15.284 9.725.278 18.893 5.836 23.339 15.284 6.112 12.505 18.338 20.286 32.231 20.286a35.46 35.46 0 0 0 35.565-35.57c0-21.429-17.808-35.57-35.565-35.57z\"/></svg>",
641
+ "viewBox": [
642
+ "0",
643
+ "0",
644
+ "640",
645
+ "512"
646
+ ],
647
+ "width": 640,
648
+ "height": 512,
649
+ "path": "M290.547 189.039c-20.295-10.149-44.147-11.199-64.739-3.89 42.606 0 71.208 20.475 85.578 50.576 8.576 17.899-5.148 38.071-23.617 38.071 18.429 0 32.211 20.136 23.617 38.071-14.725 30.846-46.123 50.854-80.298 50.854-.557 0-94.471-8.615-94.471-8.615l-66.406 33.347c-9.384 4.693-19.815.379-23.895-7.781L1.86 290.747c-4.167-8.615-1.111-18.897 6.946-23.621l58.072-33.069L108 159.861c6.39-57.245 34.731-109.767 79.743-146.726 11.391-9.448 28.341-7.781 37.51 3.613 9.446 11.394 7.78 28.067-3.612 37.516-12.503 10.559-23.618 22.509-32.509 35.57 21.672-14.729 46.679-24.732 74.186-28.067 14.725-1.945 28.063 8.336 29.73 23.065 1.945 14.728-8.336 28.067-23.062 29.734-16.116 1.945-31.12 7.503-44.178 15.284 26.114-5.713 58.712-3.138 88.079 11.115 13.336 6.669 18.893 22.509 12.224 35.848-6.389 13.06-22.504 18.617-35.564 12.226zm-27.229 69.472c-6.112-12.505-18.338-20.286-32.231-20.286a35.46 35.46 0 0 0-35.565 35.57c0 21.428 17.808 35.57 35.565 35.57 13.893 0 26.119-7.781 32.231-20.286 4.446-9.449 13.614-15.006 23.339-15.284-9.725-.277-18.893-5.835-23.339-15.284zm374.821-37.237c4.168 8.615 1.111 18.897-6.946 23.621l-58.071 33.069L532 352.16c-6.39 57.245-34.731 109.767-79.743 146.726-10.932 9.112-27.799 8.144-37.51-3.613-9.446-11.394-7.78-28.067 3.613-37.516 12.503-10.559 23.617-22.509 32.508-35.57-21.672 14.729-46.679 24.732-74.186 28.067-10.021 2.506-27.552-5.643-29.73-23.065-1.945-14.728 8.336-28.067 23.062-29.734 16.116-1.946 31.12-7.503 44.178-15.284-26.114 5.713-58.712 3.138-88.079-11.115-13.336-6.669-18.893-22.509-12.224-35.848 6.389-13.061 22.505-18.619 35.565-12.227 20.295 10.149 44.147 11.199 64.739 3.89-42.606 0-71.208-20.475-85.578-50.576-8.576-17.899 5.148-38.071 23.617-38.071-18.429 0-32.211-20.136-23.617-38.071 14.033-29.396 44.039-50.887 81.966-50.854l92.803 8.615 66.406-33.347c9.408-4.704 19.828-.354 23.894 7.781l44.455 88.926zm-229.227-18.618c-13.893 0-26.119 7.781-32.231 20.286-4.446 9.449-13.614 15.006-23.339 15.284 9.725.278 18.893 5.836 23.339 15.284 6.112 12.505 18.338 20.286 32.231 20.286a35.46 35.46 0 0 0 35.565-35.57c0-21.429-17.808-35.57-35.565-35.57z"
650
+ }
651
+ }
652
+ },
653
+ "amilia": {
654
+ "changes": [
655
+ "5.0.0"
656
+ ],
657
+ "ligatures": [],
658
+ "search": {
659
+ "terms": []
660
+ },
661
+ "styles": [
662
+ "brands"
663
+ ],
664
+ "unicode": "f36d",
665
+ "label": "Amilia",
666
+ "svg": {
667
+ "brands": {
668
+ "last_modified": 1500927880000,
669
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M240.1 32c-61.9 0-131.5 16.9-184.2 55.4-5.1 3.1-9.1 9.2-7.2 19.4 1.1 5.1 5.1 27.4 10.2 39.6 4.1 10.2 14.2 10.2 20.3 6.1 32.5-22.3 96.5-47.7 152.3-47.7 57.9 0 58.9 28.4 58.9 73.1v38.5C203 227.7 78.2 251 46.7 264.2 11.2 280.5 16.3 357.7 16.3 376s15.2 104 124.9 104c47.8 0 113.7-20.7 153.3-42.1v25.4c0 3 2.1 8.2 6.1 9.1 3.1 1 50.7 2 59.9 2s62.5.3 66.5-.7c4.1-1 5.1-6.1 5.1-9.1V168c-.1-80.3-57.9-136-192-136zm-87.9 327.7c0-12.2-3-42.7 18.3-52.9 24.3-13.2 75.1-29.4 119.8-33.5V380c-21.4 13.2-48.7 24.4-79.1 24.4-52.8 0-58.9-33.5-59-44.7\"/></svg>",
670
+ "viewBox": [
671
+ "0",
672
+ "0",
673
+ "448",
674
+ "512"
675
+ ],
676
+ "width": 448,
677
+ "height": 512,
678
+ "path": "M240.1 32c-61.9 0-131.5 16.9-184.2 55.4-5.1 3.1-9.1 9.2-7.2 19.4 1.1 5.1 5.1 27.4 10.2 39.6 4.1 10.2 14.2 10.2 20.3 6.1 32.5-22.3 96.5-47.7 152.3-47.7 57.9 0 58.9 28.4 58.9 73.1v38.5C203 227.7 78.2 251 46.7 264.2 11.2 280.5 16.3 357.7 16.3 376s15.2 104 124.9 104c47.8 0 113.7-20.7 153.3-42.1v25.4c0 3 2.1 8.2 6.1 9.1 3.1 1 50.7 2 59.9 2s62.5.3 66.5-.7c4.1-1 5.1-6.1 5.1-9.1V168c-.1-80.3-57.9-136-192-136zm-87.9 327.7c0-12.2-3-42.7 18.3-52.9 24.3-13.2 75.1-29.4 119.8-33.5V380c-21.4 13.2-48.7 24.4-79.1 24.4-52.8 0-58.9-33.5-59-44.7"
679
+ }
680
+ }
681
+ },
682
+ "anchor": {
683
+ "changes": [
684
+ "3.1",
685
+ "5.0.0"
686
+ ],
687
+ "ligatures": [],
688
+ "search": {
689
+ "terms": [
690
+ "link"
691
+ ]
692
+ },
693
+ "styles": [
694
+ "solid"
695
+ ],
696
+ "unicode": "f13d",
697
+ "label": "Anchor",
698
+ "svg": {
699
+ "solid": {
700
+ "last_modified": 1500927880000,
701
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M12.971 352h32.394C67.172 454.735 181.944 512 288 512c106.229 0 220.853-57.38 242.635-160h32.394c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0l-67.029 67.029c-7.56 7.56-2.206 20.485 8.485 20.485h35.146c-20.29 54.317-84.963 86.588-144.117 94.015V256h52c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-52v-5.47c37.281-13.178 63.995-48.725 64-90.518C384.005 43.772 341.605.738 289.37.01 235.723-.739 192 42.525 192 96c0 41.798 26.716 77.35 64 90.53V192h-52c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v190.015c-58.936-7.399-123.82-39.679-144.117-94.015h35.146c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0L4.485 331.515C-3.074 339.074 2.28 352 12.971 352zM288 64c17.645 0 32 14.355 32 32s-14.355 32-32 32-32-14.355-32-32 14.355-32 32-32z\"/></svg>",
702
+ "viewBox": [
703
+ "0",
704
+ "0",
705
+ "576",
706
+ "512"
707
+ ],
708
+ "width": 576,
709
+ "height": 512,
710
+ "path": "M12.971 352h32.394C67.172 454.735 181.944 512 288 512c106.229 0 220.853-57.38 242.635-160h32.394c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0l-67.029 67.029c-7.56 7.56-2.206 20.485 8.485 20.485h35.146c-20.29 54.317-84.963 86.588-144.117 94.015V256h52c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-52v-5.47c37.281-13.178 63.995-48.725 64-90.518C384.005 43.772 341.605.738 289.37.01 235.723-.739 192 42.525 192 96c0 41.798 26.716 77.35 64 90.53V192h-52c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v190.015c-58.936-7.399-123.82-39.679-144.117-94.015h35.146c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0L4.485 331.515C-3.074 339.074 2.28 352 12.971 352zM288 64c17.645 0 32 14.355 32 32s-14.355 32-32 32-32-14.355-32-32 14.355-32 32-32z"
711
+ }
712
+ }
713
+ },
714
+ "android": {
715
+ "changes": [
716
+ "3.2",
717
+ "5.0.0"
718
+ ],
719
+ "ligatures": [],
720
+ "search": {
721
+ "terms": [
722
+ "robot"
723
+ ]
724
+ },
725
+ "styles": [
726
+ "brands"
727
+ ],
728
+ "unicode": "f17b",
729
+ "label": "Android",
730
+ "svg": {
731
+ "brands": {
732
+ "last_modified": 1500927880000,
733
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M89.6 204.5v115.8c0 15.4-12.1 27.7-27.5 27.7-15.3 0-30.1-12.4-30.1-27.7V204.5c0-15.1 14.8-27.5 30.1-27.5 15.1 0 27.5 12.4 27.5 27.5zm10.8 157c0 16.4 13.2 29.6 29.6 29.6h19.9l.3 61.1c0 36.9 55.2 36.6 55.2 0v-61.1h37.2v61.1c0 36.7 55.5 36.8 55.5 0v-61.1h20.2c16.2 0 29.4-13.2 29.4-29.6V182.1H100.4v179.4zm248-189.1H99.3c0-42.8 25.6-80 63.6-99.4l-19.1-35.3c-2.8-4.9 4.3-8 6.7-3.8l19.4 35.6c34.9-15.5 75-14.7 108.3 0L297.5 34c2.5-4.3 9.5-1.1 6.7 3.8L285.1 73c37.7 19.4 63.3 56.6 63.3 99.4zm-170.7-55.5c0-5.7-4.6-10.5-10.5-10.5-5.7 0-10.2 4.8-10.2 10.5s4.6 10.5 10.2 10.5c5.9 0 10.5-4.8 10.5-10.5zm113.4 0c0-5.7-4.6-10.5-10.2-10.5-5.9 0-10.5 4.8-10.5 10.5s4.6 10.5 10.5 10.5c5.6 0 10.2-4.8 10.2-10.5zm94.8 60.1c-15.1 0-27.5 12.1-27.5 27.5v115.8c0 15.4 12.4 27.7 27.5 27.7 15.4 0 30.1-12.4 30.1-27.7V204.5c0-15.4-14.8-27.5-30.1-27.5z\"/></svg>",
734
+ "viewBox": [
735
+ "0",
736
+ "0",
737
+ "448",
738
+ "512"
739
+ ],
740
+ "width": 448,
741
+ "height": 512,
742
+ "path": "M89.6 204.5v115.8c0 15.4-12.1 27.7-27.5 27.7-15.3 0-30.1-12.4-30.1-27.7V204.5c0-15.1 14.8-27.5 30.1-27.5 15.1 0 27.5 12.4 27.5 27.5zm10.8 157c0 16.4 13.2 29.6 29.6 29.6h19.9l.3 61.1c0 36.9 55.2 36.6 55.2 0v-61.1h37.2v61.1c0 36.7 55.5 36.8 55.5 0v-61.1h20.2c16.2 0 29.4-13.2 29.4-29.6V182.1H100.4v179.4zm248-189.1H99.3c0-42.8 25.6-80 63.6-99.4l-19.1-35.3c-2.8-4.9 4.3-8 6.7-3.8l19.4 35.6c34.9-15.5 75-14.7 108.3 0L297.5 34c2.5-4.3 9.5-1.1 6.7 3.8L285.1 73c37.7 19.4 63.3 56.6 63.3 99.4zm-170.7-55.5c0-5.7-4.6-10.5-10.5-10.5-5.7 0-10.2 4.8-10.2 10.5s4.6 10.5 10.2 10.5c5.9 0 10.5-4.8 10.5-10.5zm113.4 0c0-5.7-4.6-10.5-10.2-10.5-5.9 0-10.5 4.8-10.5 10.5s4.6 10.5 10.5 10.5c5.6 0 10.2-4.8 10.2-10.5zm94.8 60.1c-15.1 0-27.5 12.1-27.5 27.5v115.8c0 15.4 12.4 27.7 27.5 27.7 15.4 0 30.1-12.4 30.1-27.7V204.5c0-15.4-14.8-27.5-30.1-27.5z"
743
+ }
744
+ }
745
+ },
746
+ "angellist": {
747
+ "changes": [
748
+ "4.2",
749
+ "5.0.0"
750
+ ],
751
+ "ligatures": [],
752
+ "search": {
753
+ "terms": []
754
+ },
755
+ "styles": [
756
+ "brands"
757
+ ],
758
+ "unicode": "f209",
759
+ "label": "AngelList",
760
+ "svg": {
761
+ "brands": {
762
+ "last_modified": 1500927880000,
763
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M347.1 215.4c11.7-32.6 45.4-126.9 45.4-157.1 0-26.6-15.7-48.9-43.7-48.9-44.6 0-84.6 131.7-97.1 163.1C242 144 196.6 0 156.6 0c-31.1 0-45.7 22.9-45.7 51.7 0 35.3 34.2 126.8 46.6 162-6.3-2.3-13.1-4.3-20-4.3-23.4 0-48.3 29.1-48.3 52.6 0 8.9 4.9 21.4 8 29.7-36.9 10-51.1 34.6-51.1 71.7C46 435.6 114.4 512 210.6 512c118 0 191.4-88.6 191.4-202.9 0-43.1-6.9-82-54.9-93.7zM311.7 108c4-12.3 21.1-64.3 37.1-64.3 8.6 0 10.9 8.9 10.9 16 0 19.1-38.6 124.6-47.1 148l-34-6 33.1-93.7zM142.3 48.3c0-11.9 14.5-45.7 46.3 47.1l34.6 100.3c-15.6-1.3-27.7-3-35.4 1.4-10.9-28.8-45.5-119.7-45.5-148.8zM140 244c29.3 0 67.1 94.6 67.1 107.4 0 5.1-4.9 11.4-10.6 11.4-20.9 0-76.9-76.9-76.9-97.7.1-7.7 12.7-21.1 20.4-21.1zm184.3 186.3c-29.1 32-66.3 48.6-109.7 48.6-59.4 0-106.3-32.6-128.9-88.3-17.1-43.4 3.8-68.3 20.6-68.3 11.4 0 54.3 60.3 54.3 73.1 0 4.9-7.7 8.3-11.7 8.3-16.1 0-22.4-15.5-51.1-51.4-29.7 29.7 20.5 86.9 58.3 86.9 26.1 0 43.1-24.2 38-42 3.7 0 8.3.3 11.7-.6 1.1 27.1 9.1 59.4 41.7 61.7 0-.9 2-7.1 2-7.4 0-17.4-10.6-32.6-10.6-50.3 0-28.3 21.7-55.7 43.7-71.7 8-6 17.7-9.7 27.1-13.1 9.7-3.7 20-8 27.4-15.4-1.1-11.2-5.7-21.1-16.9-21.1-27.7 0-120.6 4-120.6-39.7 0-6.7.1-13.1 17.4-13.1 32.3 0 114.3 8 138.3 29.1 18.1 16.1 24.3 113.2-31 174.7zm-98.6-126c9.7 3.1 19.7 4 29.7 6-7.4 5.4-14 12-20.3 19.1-2.8-8.5-6.2-16.8-9.4-25.1z\"/></svg>",
764
+ "viewBox": [
765
+ "0",
766
+ "0",
767
+ "448",
768
+ "512"
769
+ ],
770
+ "width": 448,
771
+ "height": 512,
772
+ "path": "M347.1 215.4c11.7-32.6 45.4-126.9 45.4-157.1 0-26.6-15.7-48.9-43.7-48.9-44.6 0-84.6 131.7-97.1 163.1C242 144 196.6 0 156.6 0c-31.1 0-45.7 22.9-45.7 51.7 0 35.3 34.2 126.8 46.6 162-6.3-2.3-13.1-4.3-20-4.3-23.4 0-48.3 29.1-48.3 52.6 0 8.9 4.9 21.4 8 29.7-36.9 10-51.1 34.6-51.1 71.7C46 435.6 114.4 512 210.6 512c118 0 191.4-88.6 191.4-202.9 0-43.1-6.9-82-54.9-93.7zM311.7 108c4-12.3 21.1-64.3 37.1-64.3 8.6 0 10.9 8.9 10.9 16 0 19.1-38.6 124.6-47.1 148l-34-6 33.1-93.7zM142.3 48.3c0-11.9 14.5-45.7 46.3 47.1l34.6 100.3c-15.6-1.3-27.7-3-35.4 1.4-10.9-28.8-45.5-119.7-45.5-148.8zM140 244c29.3 0 67.1 94.6 67.1 107.4 0 5.1-4.9 11.4-10.6 11.4-20.9 0-76.9-76.9-76.9-97.7.1-7.7 12.7-21.1 20.4-21.1zm184.3 186.3c-29.1 32-66.3 48.6-109.7 48.6-59.4 0-106.3-32.6-128.9-88.3-17.1-43.4 3.8-68.3 20.6-68.3 11.4 0 54.3 60.3 54.3 73.1 0 4.9-7.7 8.3-11.7 8.3-16.1 0-22.4-15.5-51.1-51.4-29.7 29.7 20.5 86.9 58.3 86.9 26.1 0 43.1-24.2 38-42 3.7 0 8.3.3 11.7-.6 1.1 27.1 9.1 59.4 41.7 61.7 0-.9 2-7.1 2-7.4 0-17.4-10.6-32.6-10.6-50.3 0-28.3 21.7-55.7 43.7-71.7 8-6 17.7-9.7 27.1-13.1 9.7-3.7 20-8 27.4-15.4-1.1-11.2-5.7-21.1-16.9-21.1-27.7 0-120.6 4-120.6-39.7 0-6.7.1-13.1 17.4-13.1 32.3 0 114.3 8 138.3 29.1 18.1 16.1 24.3 113.2-31 174.7zm-98.6-126c9.7 3.1 19.7 4 29.7 6-7.4 5.4-14 12-20.3 19.1-2.8-8.5-6.2-16.8-9.4-25.1z"
773
+ }
774
+ }
775
+ },
776
+ "angle-double-down": {
777
+ "changes": [
778
+ "3",
779
+ "5.0.0"
780
+ ],
781
+ "ligatures": [],
782
+ "search": {
783
+ "terms": [
784
+ "arrows"
785
+ ]
786
+ },
787
+ "styles": [
788
+ "solid"
789
+ ],
790
+ "unicode": "f103",
791
+ "label": "Angle Double Down",
792
+ "svg": {
793
+ "solid": {
794
+ "last_modified": 1500927880000,
795
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 320 512\"><path d=\"M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z\"/></svg>",
796
+ "viewBox": [
797
+ "0",
798
+ "0",
799
+ "320",
800
+ "512"
801
+ ],
802
+ "width": 320,
803
+ "height": 512,
804
+ "path": "M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z"
805
+ }
806
+ }
807
+ },
808
+ "angle-double-left": {
809
+ "changes": [
810
+ "3",
811
+ "5.0.0"
812
+ ],
813
+ "ligatures": [],
814
+ "search": {
815
+ "terms": [
816
+ "arrows",
817
+ "back",
818
+ "laquo",
819
+ "previous",
820
+ "quote"
821
+ ]
822
+ },
823
+ "styles": [
824
+ "solid"
825
+ ],
826
+ "unicode": "f100",
827
+ "label": "Angle Double Left",
828
+ "svg": {
829
+ "solid": {
830
+ "last_modified": 1500927880000,
831
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z\"/></svg>",
832
+ "viewBox": [
833
+ "0",
834
+ "0",
835
+ "448",
836
+ "512"
837
+ ],
838
+ "width": 448,
839
+ "height": 512,
840
+ "path": "M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z"
841
+ }
842
+ }
843
+ },
844
+ "angle-double-right": {
845
+ "changes": [
846
+ "3",
847
+ "5.0.0"
848
+ ],
849
+ "ligatures": [],
850
+ "search": {
851
+ "terms": [
852
+ "arrows",
853
+ "forward",
854
+ "next",
855
+ "quote",
856
+ "raquo"
857
+ ]
858
+ },
859
+ "styles": [
860
+ "solid"
861
+ ],
862
+ "unicode": "f101",
863
+ "label": "Angle Double Right",
864
+ "svg": {
865
+ "solid": {
866
+ "last_modified": 1500927880000,
867
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"/></svg>",
868
+ "viewBox": [
869
+ "0",
870
+ "0",
871
+ "448",
872
+ "512"
873
+ ],
874
+ "width": 448,
875
+ "height": 512,
876
+ "path": "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z"
877
+ }
878
+ }
879
+ },
880
+ "angle-double-up": {
881
+ "changes": [
882
+ "3",
883
+ "5.0.0"
884
+ ],
885
+ "ligatures": [],
886
+ "search": {
887
+ "terms": [
888
+ "arrows"
889
+ ]
890
+ },
891
+ "styles": [
892
+ "solid"
893
+ ],
894
+ "unicode": "f102",
895
+ "label": "Angle Double Up",
896
+ "svg": {
897
+ "solid": {
898
+ "last_modified": 1500927880000,
899
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 320 512\"><path d=\"M177 255.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 351.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 425.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1zm-34-192L7 199.7c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l96.4-96.4 96.4 96.4c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9l-136-136c-9.2-9.4-24.4-9.4-33.8 0z\"/></svg>",
900
+ "viewBox": [
901
+ "0",
902
+ "0",
903
+ "320",
904
+ "512"
905
+ ],
906
+ "width": 320,
907
+ "height": 512,
908
+ "path": "M177 255.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 351.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 425.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1zm-34-192L7 199.7c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l96.4-96.4 96.4 96.4c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9l-136-136c-9.2-9.4-24.4-9.4-33.8 0z"
909
+ }
910
+ }
911
+ },
912
+ "angle-down": {
913
+ "changes": [
914
+ "3",
915
+ "5.0.0"
916
+ ],
917
+ "ligatures": [],
918
+ "search": {
919
+ "terms": [
920
+ "arrow"
921
+ ]
922
+ },
923
+ "styles": [
924
+ "solid"
925
+ ],
926
+ "unicode": "f107",
927
+ "label": "angle-down",
928
+ "svg": {
929
+ "solid": {
930
+ "last_modified": 1500927880000,
931
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 320 512\"><path d=\"M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z\"/></svg>",
932
+ "viewBox": [
933
+ "0",
934
+ "0",
935
+ "320",
936
+ "512"
937
+ ],
938
+ "width": 320,
939
+ "height": 512,
940
+ "path": "M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z"
941
+ }
942
+ }
943
+ },
944
+ "angle-left": {
945
+ "changes": [
946
+ "3",
947
+ "5.0.0"
948
+ ],
949
+ "ligatures": [],
950
+ "search": {
951
+ "terms": [
952
+ "arrow",
953
+ "back",
954
+ "previous"
955
+ ]
956
+ },
957
+ "styles": [
958
+ "solid"
959
+ ],
960
+ "unicode": "f104",
961
+ "label": "angle-left",
962
+ "svg": {
963
+ "solid": {
964
+ "last_modified": 1500927880000,
965
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 512\"><path d=\"M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z\"/></svg>",
966
+ "viewBox": [
967
+ "0",
968
+ "0",
969
+ "256",
970
+ "512"
971
+ ],
972
+ "width": 256,
973
+ "height": 512,
974
+ "path": "M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z"
975
+ }
976
+ }
977
+ },
978
+ "angle-right": {
979
+ "changes": [
980
+ "3",
981
+ "5.0.0"
982
+ ],
983
+ "ligatures": [],
984
+ "search": {
985
+ "terms": [
986
+ "arrow",
987
+ "forward",
988
+ "next"
989
+ ]
990
+ },
991
+ "styles": [
992
+ "solid"
993
+ ],
994
+ "unicode": "f105",
995
+ "label": "angle-right",
996
+ "svg": {
997
+ "solid": {
998
+ "last_modified": 1500927880000,
999
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 512\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z\"/></svg>",
1000
+ "viewBox": [
1001
+ "0",
1002
+ "0",
1003
+ "256",
1004
+ "512"
1005
+ ],
1006
+ "width": 256,
1007
+ "height": 512,
1008
+ "path": "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"
1009
+ }
1010
+ }
1011
+ },
1012
+ "angle-up": {
1013
+ "changes": [
1014
+ "3",
1015
+ "5.0.0"
1016
+ ],
1017
+ "ligatures": [],
1018
+ "search": {
1019
+ "terms": [
1020
+ "arrow"
1021
+ ]
1022
+ },
1023
+ "styles": [
1024
+ "solid"
1025
+ ],
1026
+ "unicode": "f106",
1027
+ "label": "angle-up",
1028
+ "svg": {
1029
+ "solid": {
1030
+ "last_modified": 1500927880000,
1031
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 320 512\"><path d=\"M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z\"/></svg>",
1032
+ "viewBox": [
1033
+ "0",
1034
+ "0",
1035
+ "320",
1036
+ "512"
1037
+ ],
1038
+ "width": 320,
1039
+ "height": 512,
1040
+ "path": "M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z"
1041
+ }
1042
+ }
1043
+ },
1044
+ "angry": {
1045
+ "changes": [
1046
+ "5.1.0"
1047
+ ],
1048
+ "ligatures": [],
1049
+ "search": {
1050
+ "terms": [
1051
+ "disapprove",
1052
+ "emoticon",
1053
+ "face",
1054
+ "mad",
1055
+ "upset"
1056
+ ]
1057
+ },
1058
+ "styles": [
1059
+ "solid",
1060
+ "regular"
1061
+ ],
1062
+ "unicode": "f556",
1063
+ "label": "Angry Face",
1064
+ "svg": {
1065
+ "solid": {
1066
+ "last_modified": 1529520111644,
1067
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 496 512\"><path d=\"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 240c0-9.3 4.1-17.5 10.5-23.4l-31-9.3c-8.5-2.5-13.3-11.5-10.7-19.9 2.5-8.5 11.4-13.2 19.9-10.7l80 24c8.5 2.5 13.3 11.5 10.7 19.9-2.1 6.9-8.4 11.4-15.3 11.4-.5 0-1.1-.2-1.7-.2.7 2.7 1.7 5.3 1.7 8.2 0 17.7-14.3 32-32 32S136 257.7 136 240zm168 154.2c-27.8-33.4-84.2-33.4-112.1 0-13.5 16.3-38.2-4.2-24.6-20.5 20-24 49.4-37.8 80.6-37.8s60.6 13.8 80.6 37.8c13.8 16.5-11.1 36.6-24.5 20.5zm76.6-186.9l-31 9.3c6.3 5.8 10.5 14.1 10.5 23.4 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-2.9.9-5.6 1.7-8.2-.6.1-1.1.2-1.7.2-6.9 0-13.2-4.5-15.3-11.4-2.5-8.5 2.3-17.4 10.7-19.9l80-24c8.4-2.5 17.4 2.3 19.9 10.7 2.5 8.5-2.3 17.4-10.8 19.9z\"/></svg>",
1068
+ "viewBox": [
1069
+ "0",
1070
+ "0",
1071
+ "496",
1072
+ "512"
1073
+ ],
1074
+ "width": 496,
1075
+ "height": 512,
1076
+ "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 240c0-9.3 4.1-17.5 10.5-23.4l-31-9.3c-8.5-2.5-13.3-11.5-10.7-19.9 2.5-8.5 11.4-13.2 19.9-10.7l80 24c8.5 2.5 13.3 11.5 10.7 19.9-2.1 6.9-8.4 11.4-15.3 11.4-.5 0-1.1-.2-1.7-.2.7 2.7 1.7 5.3 1.7 8.2 0 17.7-14.3 32-32 32S136 257.7 136 240zm168 154.2c-27.8-33.4-84.2-33.4-112.1 0-13.5 16.3-38.2-4.2-24.6-20.5 20-24 49.4-37.8 80.6-37.8s60.6 13.8 80.6 37.8c13.8 16.5-11.1 36.6-24.5 20.5zm76.6-186.9l-31 9.3c6.3 5.8 10.5 14.1 10.5 23.4 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-2.9.9-5.6 1.7-8.2-.6.1-1.1.2-1.7.2-6.9 0-13.2-4.5-15.3-11.4-2.5-8.5 2.3-17.4 10.7-19.9l80-24c8.4-2.5 17.4 2.3 19.9 10.7 2.5 8.5-2.3 17.4-10.8 19.9z"
1077
+ },
1078
+ "regular": {
1079
+ "last_modified": 1529520111607,
1080
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 496 512\"><path d=\"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm0-144c-33.6 0-65.2 14.8-86.8 40.6-8.5 10.2-7.1 25.3 3.1 33.8s25.3 7.2 33.8-3c24.8-29.7 75-29.7 99.8 0 8.1 9.7 23.2 11.9 33.8 3 10.2-8.5 11.5-23.6 3.1-33.8-21.6-25.8-53.2-40.6-86.8-40.6zm-48-72c10.3 0 19.9-6.7 23-17.1 3.8-12.7-3.4-26.1-16.1-29.9l-80-24c-12.8-3.9-26.1 3.4-29.9 16.1-3.8 12.7 3.4 26.1 16.1 29.9l28.2 8.5c-3.1 4.9-5.3 10.4-5.3 16.6 0 17.7 14.3 32 32 32s32-14.4 32-32.1zm199-54.9c-3.8-12.7-17.1-19.9-29.9-16.1l-80 24c-12.7 3.8-19.9 17.2-16.1 29.9 3.1 10.4 12.7 17.1 23 17.1 0 17.7 14.3 32 32 32s32-14.3 32-32c0-6.2-2.2-11.7-5.3-16.6l28.2-8.5c12.7-3.7 19.9-17.1 16.1-29.8z\"/></svg>",
1081
+ "viewBox": [
1082
+ "0",
1083
+ "0",
1084
+ "496",
1085
+ "512"
1086
+ ],
1087
+ "width": 496,
1088
+ "height": 512,
1089
+ "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm0-144c-33.6 0-65.2 14.8-86.8 40.6-8.5 10.2-7.1 25.3 3.1 33.8s25.3 7.2 33.8-3c24.8-29.7 75-29.7 99.8 0 8.1 9.7 23.2 11.9 33.8 3 10.2-8.5 11.5-23.6 3.1-33.8-21.6-25.8-53.2-40.6-86.8-40.6zm-48-72c10.3 0 19.9-6.7 23-17.1 3.8-12.7-3.4-26.1-16.1-29.9l-80-24c-12.8-3.9-26.1 3.4-29.9 16.1-3.8 12.7 3.4 26.1 16.1 29.9l28.2 8.5c-3.1 4.9-5.3 10.4-5.3 16.6 0 17.7 14.3 32 32 32s32-14.4 32-32.1zm199-54.9c-3.8-12.7-17.1-19.9-29.9-16.1l-80 24c-12.7 3.8-19.9 17.2-16.1 29.9 3.1 10.4 12.7 17.1 23 17.1 0 17.7 14.3 32 32 32s32-14.3 32-32c0-6.2-2.2-11.7-5.3-16.6l28.2-8.5c12.7-3.7 19.9-17.1 16.1-29.8z"
1090
+ }
1091
+ }
1092
+ },
1093
+ "angrycreative": {
1094
+ "changes": [
1095
+ "5.0.0"
1096
+ ],
1097
+ "ligatures": [],
1098
+ "search": {
1099
+ "terms": []
1100
+ },
1101
+ "styles": [
1102
+ "brands"
1103
+ ],
1104
+ "unicode": "f36e",
1105
+ "label": "Angry Creative",
1106
+ "svg": {
1107
+ "brands": {
1108
+ "last_modified": 1500927880000,
1109
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M640 238.2l-3.2 28.2-34.5 2.3-2 18.1 34.5-2.3-3.2 28.2-34.4 2.2-2.3 20.1 34.4-2.2-3 26.1-64.7 4.1 12.7-113.2L527 365.2l-31.9 2-23.8-117.8 30.3-2 13.6 79.4 31.7-82.4 93.1-6.2zM426.8 371.5l28.3-1.8L468 249.6l-28.4 1.9-12.8 120zM162 388.1l-19.4-36-3.5 37.4-28.2 1.7 2.7-29.1c-11 18-32 34.3-56.9 35.8C23.9 399.9-3 377 .3 339.7c2.6-29.3 26.7-62.8 67.5-65.4 37.7-2.4 47.6 23.2 51.3 28.8l2.8-30.8 38.9-2.5c20.1-1.3 38.7 3.7 42.5 23.7l2.6-26.6 64.8-4.2-2.7 27.9-36.4 2.4-1.7 17.9 36.4-2.3-2.7 27.9-36.4 2.3-1.9 19.9 36.3-2.3-2.1 20.8 55-117.2 23.8-1.6L370.4 369l8.9-85.6-22.3 1.4 2.9-27.9 75-4.9-3 28-24.3 1.6-9.7 91.9-58 3.7-4.3-15.6-39.4 2.5-8 16.3-126.2 7.7zm-44.3-70.2l-26.4 1.7C84.6 307.2 76.9 303 65 303.8c-19 1.2-33.3 17.5-34.6 33.3-1.4 16 7.3 32.5 28.7 31.2 12.8-.8 21.3-8.6 28.9-18.9l27-1.7 2.7-29.8zm56.1-7.7c1.2-12.9-7.6-13.6-26.1-12.4l-2.7 28.5c14.2-.9 27.5-2.1 28.8-16.1zm21.1 70.8l5.8-60c-5 13.5-14.7 21.1-27.9 26.6l22.1 33.4zm135.4-45l-7.9-37.8-15.8 39.3 23.7-1.5zm-170.1-74.6l-4.3-17.5-39.6 2.6-8.1 18.2-31.9 2.1 57-121.9 23.9-1.6 30.7 102 9.9-104.7 27-1.8 37.8 63.6 6.5-66.6 28.5-1.9-4 41.2c7.4-13.5 22.9-44.7 63.6-47.5 40.5-2.8 52.4 29.3 53.4 30.3l3.3-32 39.3-2.7c12.7-.9 27.8.3 36.3 9.7l-4.4-11.9 32.2-2.2 12.9 43.2 23-45.7 31-2.2-43.6 78.4-4.8 44.3-28.4 1.9 4.8-44.3-15.8-43c1 22.3-9.2 40.1-32 49.6l25.2 38.8-36.4 2.4-19.2-36.8-4 38.3-28.4 1.9 3.3-31.5c-6.7 9.3-19.7 35.4-59.6 38-26.2 1.7-45.6-10.3-55.4-39.2l-4 40.3-25 1.6-37.6-63.3-6.3 66.2-56.8 3.7zm276.6-82.1c10.2-.7 17.5-2.1 21.6-4.3 4.5-2.4 7-6.4 7.6-12.1.6-5.3-.6-8.8-3.4-10.4-3.6-2.1-10.6-2.8-22.9-2l-2.9 28.8zM327.7 214c5.6 5.9 12.7 8.5 21.3 7.9 4.7-.3 9.1-1.8 13.3-4.1 5.5-3 10.6-8 15.1-14.3l-34.2 2.3 2.4-23.9 63.1-4.3 1.2-12-31.2 2.1c-4.1-3.7-7.8-6.6-11.1-8.1-4-1.7-8.1-2.8-12.2-2.5-8 .5-15.3 3.6-22 9.2-7.7 6.4-12 14.5-12.9 24.4-1.1 9.6 1.4 17.3 7.2 23.3zm-201.3 8.2l23.8-1.6-8.3-37.6-15.5 39.2z\"/></svg>",
1110
+ "viewBox": [
1111
+ "0",
1112
+ "0",
1113
+ "640",
1114
+ "512"
1115
+ ],
1116
+ "width": 640,
1117
+ "height": 512,
1118
+ "path": "M640 238.2l-3.2 28.2-34.5 2.3-2 18.1 34.5-2.3-3.2 28.2-34.4 2.2-2.3 20.1 34.4-2.2-3 26.1-64.7 4.1 12.7-113.2L527 365.2l-31.9 2-23.8-117.8 30.3-2 13.6 79.4 31.7-82.4 93.1-6.2zM426.8 371.5l28.3-1.8L468 249.6l-28.4 1.9-12.8 120zM162 388.1l-19.4-36-3.5 37.4-28.2 1.7 2.7-29.1c-11 18-32 34.3-56.9 35.8C23.9 399.9-3 377 .3 339.7c2.6-29.3 26.7-62.8 67.5-65.4 37.7-2.4 47.6 23.2 51.3 28.8l2.8-30.8 38.9-2.5c20.1-1.3 38.7 3.7 42.5 23.7l2.6-26.6 64.8-4.2-2.7 27.9-36.4 2.4-1.7 17.9 36.4-2.3-2.7 27.9-36.4 2.3-1.9 19.9 36.3-2.3-2.1 20.8 55-117.2 23.8-1.6L370.4 369l8.9-85.6-22.3 1.4 2.9-27.9 75-4.9-3 28-24.3 1.6-9.7 91.9-58 3.7-4.3-15.6-39.4 2.5-8 16.3-126.2 7.7zm-44.3-70.2l-26.4 1.7C84.6 307.2 76.9 303 65 303.8c-19 1.2-33.3 17.5-34.6 33.3-1.4 16 7.3 32.5 28.7 31.2 12.8-.8 21.3-8.6 28.9-18.9l27-1.7 2.7-29.8zm56.1-7.7c1.2-12.9-7.6-13.6-26.1-12.4l-2.7 28.5c14.2-.9 27.5-2.1 28.8-16.1zm21.1 70.8l5.8-60c-5 13.5-14.7 21.1-27.9 26.6l22.1 33.4zm135.4-45l-7.9-37.8-15.8 39.3 23.7-1.5zm-170.1-74.6l-4.3-17.5-39.6 2.6-8.1 18.2-31.9 2.1 57-121.9 23.9-1.6 30.7 102 9.9-104.7 27-1.8 37.8 63.6 6.5-66.6 28.5-1.9-4 41.2c7.4-13.5 22.9-44.7 63.6-47.5 40.5-2.8 52.4 29.3 53.4 30.3l3.3-32 39.3-2.7c12.7-.9 27.8.3 36.3 9.7l-4.4-11.9 32.2-2.2 12.9 43.2 23-45.7 31-2.2-43.6 78.4-4.8 44.3-28.4 1.9 4.8-44.3-15.8-43c1 22.3-9.2 40.1-32 49.6l25.2 38.8-36.4 2.4-19.2-36.8-4 38.3-28.4 1.9 3.3-31.5c-6.7 9.3-19.7 35.4-59.6 38-26.2 1.7-45.6-10.3-55.4-39.2l-4 40.3-25 1.6-37.6-63.3-6.3 66.2-56.8 3.7zm276.6-82.1c10.2-.7 17.5-2.1 21.6-4.3 4.5-2.4 7-6.4 7.6-12.1.6-5.3-.6-8.8-3.4-10.4-3.6-2.1-10.6-2.8-22.9-2l-2.9 28.8zM327.7 214c5.6 5.9 12.7 8.5 21.3 7.9 4.7-.3 9.1-1.8 13.3-4.1 5.5-3 10.6-8 15.1-14.3l-34.2 2.3 2.4-23.9 63.1-4.3 1.2-12-31.2 2.1c-4.1-3.7-7.8-6.6-11.1-8.1-4-1.7-8.1-2.8-12.2-2.5-8 .5-15.3 3.6-22 9.2-7.7 6.4-12 14.5-12.9 24.4-1.1 9.6 1.4 17.3 7.2 23.3zm-201.3 8.2l23.8-1.6-8.3-37.6-15.5 39.2z"
1119
+ }
1120
+ }
1121
+ },
1122
+ "angular": {
1123
+ "changes": [
1124
+ "5.0.0"
1125
+ ],
1126
+ "ligatures": [],
1127
+ "search": {
1128
+ "terms": []
1129
+ },
1130
+ "styles": [
1131
+ "brands"
1132
+ ],
1133
+ "unicode": "f420",
1134
+ "label": "Angular",
1135
+ "svg": {
1136
+ "brands": {
1137
+ "last_modified": 1511194600653,
1138
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 415.6 512\"><path d=\"M169.7 268.1h76.2l-38.1-91.6-38.1 91.6zM207.8 32L0 106.4l31.8 275.7 176 97.9 176-97.9 31.8-275.7L207.8 32zM338 373.8h-48.6l-26.2-65.4H152.6l-26.2 65.4H77.7L207.8 81.5 338 373.8z\"/></svg>",
1139
+ "viewBox": [
1140
+ "0",
1141
+ "0",
1142
+ "415.6",
1143
+ "512"
1144
+ ],
1145
+ "width": 415,
1146
+ "height": 512,
1147
+ "path": "M169.7 268.1h76.2l-38.1-91.6-38.1 91.6zM207.8 32L0 106.4l31.8 275.7 176 97.9 176-97.9 31.8-275.7L207.8 32zM338 373.8h-48.6l-26.2-65.4H152.6l-26.2 65.4H77.7L207.8 81.5 338 373.8z"
1148
+ }
1149
+ }
1150
+ },
1151
+ "app-store": {
1152
+ "changes": [
1153
+ "5.0.0"
1154
+ ],
1155
+ "ligatures": [],
1156
+ "search": {
1157
+ "terms": []
1158
+ },
1159
+ "styles": [
1160
+ "brands"
1161
+ ],
1162
+ "unicode": "f36f",
1163
+ "label": "App Store",
1164
+ "svg": {
1165
+ "brands": {
1166
+ "last_modified": 1521653821381,
1167
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M255.9 120.9l9.1-15.7c5.6-9.8 18.1-13.1 27.9-7.5 9.8 5.6 13.1 18.1 7.5 27.9l-87.5 151.5h63.3c20.5 0 32 24.1 23.1 40.8H113.8c-11.3 0-20.4-9.1-20.4-20.4 0-11.3 9.1-20.4 20.4-20.4h52l66.6-115.4-20.8-36.1c-5.6-9.8-2.3-22.2 7.5-27.9 9.8-5.6 22.2-2.3 27.9 7.5l8.9 15.7zm-78.7 218l-19.6 34c-5.6 9.8-18.1 13.1-27.9 7.5-9.8-5.6-13.1-18.1-7.5-27.9l14.6-25.2c16.4-5.1 29.8-1.2 40.4 11.6zm168.9-61.7h53.1c11.3 0 20.4 9.1 20.4 20.4 0 11.3-9.1 20.4-20.4 20.4h-29.5l19.9 34.5c5.6 9.8 2.3 22.2-7.5 27.9-9.8 5.6-22.2 2.3-27.9-7.5-33.5-58.1-58.7-101.6-75.4-130.6-17.1-29.5-4.9-59.1 7.2-69.1 13.4 23 33.4 57.7 60.1 104zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm216 248c0 118.7-96.1 216-216 216-118.7 0-216-96.1-216-216 0-118.7 96.1-216 216-216 118.7 0 216 96.1 216 216z\"/></svg>",
1168
+ "viewBox": [
1169
+ "0",
1170
+ "0",
1171
+ "512",
1172
+ "512"
1173
+ ],
1174
+ "width": 512,
1175
+ "height": 512,
1176
+ "path": "M255.9 120.9l9.1-15.7c5.6-9.8 18.1-13.1 27.9-7.5 9.8 5.6 13.1 18.1 7.5 27.9l-87.5 151.5h63.3c20.5 0 32 24.1 23.1 40.8H113.8c-11.3 0-20.4-9.1-20.4-20.4 0-11.3 9.1-20.4 20.4-20.4h52l66.6-115.4-20.8-36.1c-5.6-9.8-2.3-22.2 7.5-27.9 9.8-5.6 22.2-2.3 27.9 7.5l8.9 15.7zm-78.7 218l-19.6 34c-5.6 9.8-18.1 13.1-27.9 7.5-9.8-5.6-13.1-18.1-7.5-27.9l14.6-25.2c16.4-5.1 29.8-1.2 40.4 11.6zm168.9-61.7h53.1c11.3 0 20.4 9.1 20.4 20.4 0 11.3-9.1 20.4-20.4 20.4h-29.5l19.9 34.5c5.6 9.8 2.3 22.2-7.5 27.9-9.8 5.6-22.2 2.3-27.9-7.5-33.5-58.1-58.7-101.6-75.4-130.6-17.1-29.5-4.9-59.1 7.2-69.1 13.4 23 33.4 57.7 60.1 104zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm216 248c0 118.7-96.1 216-216 216-118.7 0-216-96.1-216-216 0-118.7 96.1-216 216-216 118.7 0 216 96.1 216 216z"
1177
+ }
1178
+ }
1179
+ },
1180
+ "app-store-ios": {
1181
+ "changes": [
1182
+ "5.0.0"
1183
+ ],
1184
+ "ligatures": [],
1185
+ "search": {
1186
+ "terms": []
1187
+ },
1188
+ "styles": [
1189
+ "brands"
1190
+ ],
1191
+ "unicode": "f370",
1192
+ "label": "iOS App Store",
1193
+ "svg": {
1194
+ "brands": {
1195
+ "last_modified": 1507838931322,
1196
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM127 384.5c-5.5 9.6-17.8 12.8-27.3 7.3-9.6-5.5-12.8-17.8-7.3-27.3l14.3-24.7c16.1-4.9 29.3-1.1 39.6 11.4L127 384.5zm138.9-53.9H84c-11 0-20-9-20-20s9-20 20-20h51l65.4-113.2-20.5-35.4c-5.5-9.6-2.2-21.8 7.3-27.3 9.6-5.5 21.8-2.2 27.3 7.3l8.9 15.4 8.9-15.4c5.5-9.6 17.8-12.8 27.3-7.3 9.6 5.5 12.8 17.8 7.3 27.3l-85.8 148.6h62.1c20.2 0 31.5 23.7 22.7 40zm98.1 0h-29l19.6 33.9c5.5 9.6 2.2 21.8-7.3 27.3-9.6 5.5-21.8 2.2-27.3-7.3-32.9-56.9-57.5-99.7-74-128.1-16.7-29-4.8-58 7.1-67.8 13.1 22.7 32.7 56.7 58.9 102h52c11 0 20 9 20 20 0 11.1-9 20-20 20z\"/></svg>",
1197
+ "viewBox": [
1198
+ "0",
1199
+ "0",
1200
+ "448",
1201
+ "512"
1202
+ ],
1203
+ "width": 448,
1204
+ "height": 512,
1205
+ "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM127 384.5c-5.5 9.6-17.8 12.8-27.3 7.3-9.6-5.5-12.8-17.8-7.3-27.3l14.3-24.7c16.1-4.9 29.3-1.1 39.6 11.4L127 384.5zm138.9-53.9H84c-11 0-20-9-20-20s9-20 20-20h51l65.4-113.2-20.5-35.4c-5.5-9.6-2.2-21.8 7.3-27.3 9.6-5.5 21.8-2.2 27.3 7.3l8.9 15.4 8.9-15.4c5.5-9.6 17.8-12.8 27.3-7.3 9.6 5.5 12.8 17.8 7.3 27.3l-85.8 148.6h62.1c20.2 0 31.5 23.7 22.7 40zm98.1 0h-29l19.6 33.9c5.5 9.6 2.2 21.8-7.3 27.3-9.6 5.5-21.8 2.2-27.3-7.3-32.9-56.9-57.5-99.7-74-128.1-16.7-29-4.8-58 7.1-67.8 13.1 22.7 32.7 56.7 58.9 102h52c11 0 20 9 20 20 0 11.1-9 20-20 20z"
1206
+ }
1207
+ }
1208
+ },
1209
+ "apper": {
1210
+ "changes": [
1211
+ "5.0.0"
1212
+ ],
1213
+ "ligatures": [],
1214
+ "search": {
1215
+ "terms": []
1216
+ },
1217
+ "styles": [
1218
+ "brands"
1219
+ ],
1220
+ "unicode": "f371",
1221
+ "label": "Apper Systems AB",
1222
+ "svg": {
1223
+ "brands": {
1224
+ "last_modified": 1500927880000,
1225
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M42.1 239.1c22.2 0 29 2.8 33.5 14.6h.8v-22.9c0-11.3-4.8-15.4-17.9-15.4-11.3 0-14.4 2.5-15.1 12.8H4.8c.3-13.9 1.5-19.1 5.8-24.4C17.9 195 29.5 192 56.7 192c33 0 47.1 5 53.9 18.9 2 4.3 4 15.6 4 23.7v76.3H76.3l1.3-19.1h-1c-5.3 15.6-13.6 20.4-35.5 20.4-30.3 0-41.1-10.1-41.1-37.3 0-25.2 12.3-35.8 42.1-35.8zm17.1 48.1c13.1 0 16.9-3 16.9-13.4 0-9.1-4.3-11.6-19.6-11.6-13.1 0-17.9 3-17.9 12.1-.1 10.4 3.7 12.9 20.6 12.9zm77.8-94.9h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.2 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3H137v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm57.9-60.7h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.3 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3h-39.5v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm53.8-3.8c0-25.4 3.3-37.8 12.3-45.8 8.8-8.1 22.2-11.3 45.1-11.3 42.8 0 55.7 12.8 55.7 55.7v11.1h-75.3c-.3 2-.3 4-.3 4.8 0 16.9 4.5 21.9 20.1 21.9 13.9 0 17.9-3 17.9-13.9h37.5v2.3c0 9.8-2.5 18.9-6.8 24.7-7.3 9.8-19.6 13.6-44.3 13.6-27.5 0-41.6-3.3-50.6-12.3-8.5-8.5-11.3-21.3-11.3-50.8zm76.4-11.6c-.3-1.8-.3-3.3-.3-3.8 0-12.3-3.3-14.6-19.6-14.6-14.4 0-17.1 3-18.1 15.1l-.3 3.3h38.3zm55.6-45.3h38.3l-1.8 19.9h.7c6.8-14.9 14.4-20.2 29.7-20.2 10.8 0 19.1 3.3 23.4 9.3 5.3 7.3 6.8 14.4 6.8 34 0 1.5 0 5 .2 9.3h-35c.3-1.8.3-3.3.3-4 0-15.4-2-19.4-10.3-19.4-6.3 0-10.8 3.3-13.1 9.3-1 3-1 4.3-1 12.3v68h-38.3V192.3z\"/></svg>",
1226
+ "viewBox": [
1227
+ "0",
1228
+ "0",
1229
+ "640",
1230
+ "512"
1231
+ ],
1232
+ "width": 640,
1233
+ "height": 512,
1234
+ "path": "M42.1 239.1c22.2 0 29 2.8 33.5 14.6h.8v-22.9c0-11.3-4.8-15.4-17.9-15.4-11.3 0-14.4 2.5-15.1 12.8H4.8c.3-13.9 1.5-19.1 5.8-24.4C17.9 195 29.5 192 56.7 192c33 0 47.1 5 53.9 18.9 2 4.3 4 15.6 4 23.7v76.3H76.3l1.3-19.1h-1c-5.3 15.6-13.6 20.4-35.5 20.4-30.3 0-41.1-10.1-41.1-37.3 0-25.2 12.3-35.8 42.1-35.8zm17.1 48.1c13.1 0 16.9-3 16.9-13.4 0-9.1-4.3-11.6-19.6-11.6-13.1 0-17.9 3-17.9 12.1-.1 10.4 3.7 12.9 20.6 12.9zm77.8-94.9h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.2 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3H137v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm57.9-60.7h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.3 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3h-39.5v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm53.8-3.8c0-25.4 3.3-37.8 12.3-45.8 8.8-8.1 22.2-11.3 45.1-11.3 42.8 0 55.7 12.8 55.7 55.7v11.1h-75.3c-.3 2-.3 4-.3 4.8 0 16.9 4.5 21.9 20.1 21.9 13.9 0 17.9-3 17.9-13.9h37.5v2.3c0 9.8-2.5 18.9-6.8 24.7-7.3 9.8-19.6 13.6-44.3 13.6-27.5 0-41.6-3.3-50.6-12.3-8.5-8.5-11.3-21.3-11.3-50.8zm76.4-11.6c-.3-1.8-.3-3.3-.3-3.8 0-12.3-3.3-14.6-19.6-14.6-14.4 0-17.1 3-18.1 15.1l-.3 3.3h38.3zm55.6-45.3h38.3l-1.8 19.9h.7c6.8-14.9 14.4-20.2 29.7-20.2 10.8 0 19.1 3.3 23.4 9.3 5.3 7.3 6.8 14.4 6.8 34 0 1.5 0 5 .2 9.3h-35c.3-1.8.3-3.3.3-4 0-15.4-2-19.4-10.3-19.4-6.3 0-10.8 3.3-13.1 9.3-1 3-1 4.3-1 12.3v68h-38.3V192.3z"
1235
+ }
1236
+ }
1237
+ },
1238
+ "apple": {
1239
+ "changes": [
1240
+ "3.2",
1241
+ "5.0.0",
1242
+ "5.0.7"
1243
+ ],
1244
+ "ligatures": [],
1245
+ "search": {
1246
+ "terms": [
1247
+ "food",
1248
+ "fruit",
1249
+ "osx"
1250
+ ]
1251
+ },
1252
+ "styles": [
1253
+ "brands"
1254
+ ],
1255
+ "unicode": "f179",
1256
+ "label": "Apple",
1257
+ "svg": {
1258
+ "brands": {
1259
+ "last_modified": 1519917094301,
1260
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 376.5 512\"><path d=\"M314.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C59.3 141.2 0 184.8 0 273.5c0 26.2 4.8 53.3 14.4 81.2 12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z\"/></svg>",
1261
+ "viewBox": [
1262
+ "0",
1263
+ "0",
1264
+ "376.5",
1265
+ "512"
1266
+ ],
1267
+ "width": 376,
1268
+ "height": 512,
1269
+ "path": "M314.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C59.3 141.2 0 184.8 0 273.5c0 26.2 4.8 53.3 14.4 81.2 12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z"
1270
+ }
1271
+ }
1272
+ },
1273
+ "apple-alt": {
1274
+ "changes": [
1275
+ "5.2.0"
1276
+ ],
1277
+ "ligatures": [],
1278
+ "search": {
1279
+ "terms": []
1280
+ },
1281
+ "styles": [
1282
+ "solid"
1283
+ ],
1284
+ "unicode": "f5d1",
1285
+ "label": "Fruit Apple",
1286
+ "svg": {
1287
+ "solid": {
1288
+ "last_modified": 1532362831512,
1289
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M351.18 129.15c-35.53-6.25-98.06 14.36-127.18 30.81-29.12-16.45-91.66-37.07-127.19-30.81-81.24 14.3-107.42 124.49-93.09 205.6C18.05 415.86 65.02 512 160.41 512c12.06 0 24.12-4.61 34.44-10.34 18.08-10.03 40.23-10.03 58.31 0 10.32 5.73 22.38 10.34 34.43 10.34 95.39 0 142.36-96.14 156.68-177.25 14.33-81.11-11.83-191.3-93.09-205.6zm-55.55-41.53C326.19 57.06 319.35.65 319.35.65s-56.41-6.85-86.97 23.72c-30.57 30.57-23.72 86.97-23.72 86.97s56.4 6.85 86.97-23.72z\"/></svg>",
1290
+ "viewBox": [
1291
+ "0",
1292
+ "0",
1293
+ "448",
1294
+ "512"
1295
+ ],
1296
+ "width": 448,
1297
+ "height": 512,
1298
+ "path": "M351.18 129.15c-35.53-6.25-98.06 14.36-127.18 30.81-29.12-16.45-91.66-37.07-127.19-30.81-81.24 14.3-107.42 124.49-93.09 205.6C18.05 415.86 65.02 512 160.41 512c12.06 0 24.12-4.61 34.44-10.34 18.08-10.03 40.23-10.03 58.31 0 10.32 5.73 22.38 10.34 34.43 10.34 95.39 0 142.36-96.14 156.68-177.25 14.33-81.11-11.83-191.3-93.09-205.6zm-55.55-41.53C326.19 57.06 319.35.65 319.35.65s-56.41-6.85-86.97 23.72c-30.57 30.57-23.72 86.97-23.72 86.97s56.4 6.85 86.97-23.72z"
1299
+ }
1300
+ }
1301
+ },
1302
+ "apple-pay": {
1303
+ "changes": [
1304
+ "5.0.0"
1305
+ ],
1306
+ "ligatures": [],
1307
+ "search": {
1308
+ "terms": []
1309
+ },
1310
+ "styles": [
1311
+ "brands"
1312
+ ],
1313
+ "unicode": "f415",
1314
+ "label": "Apple Pay",
1315
+ "svg": {
1316
+ "brands": {
1317
+ "last_modified": 1507669930671,
1318
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M116.9 158.5c-7.5 8.9-19.5 15.9-31.5 14.9-1.5-12 4.4-24.8 11.3-32.6 7.5-9.1 20.6-15.6 31.3-16.1 1.2 12.4-3.7 24.7-11.1 33.8m10.9 17.2c-17.4-1-32.3 9.9-40.5 9.9-8.4 0-21-9.4-34.8-9.1-17.9.3-34.5 10.4-43.6 26.5-18.8 32.3-4.9 80 13.3 106.3 8.9 13 19.5 27.3 33.5 26.8 13.3-.5 18.5-8.6 34.5-8.6 16.1 0 20.8 8.6 34.8 8.4 14.5-.3 23.6-13 32.5-26 10.1-14.8 14.3-29.1 14.5-29.9-.3-.3-28-10.9-28.3-42.9-.3-26.8 21.9-39.5 22.9-40.3-12.5-18.6-32-20.6-38.8-21.1m100.4-36.2v194.9h30.3v-66.6h41.9c38.3 0 65.1-26.3 65.1-64.3s-26.4-64-64.1-64h-73.2zm30.3 25.5h34.9c26.3 0 41.3 14 41.3 38.6s-15 38.8-41.4 38.8h-34.8V165zm162.2 170.9c19 0 36.6-9.6 44.6-24.9h.6v23.4h28v-97c0-28.1-22.5-46.3-57.1-46.3-32.1 0-55.9 18.4-56.8 43.6h27.3c2.3-12 13.4-19.9 28.6-19.9 18.5 0 28.9 8.6 28.9 24.5v10.8l-37.8 2.3c-35.1 2.1-54.1 16.5-54.1 41.5.1 25.2 19.7 42 47.8 42zm8.2-23.1c-16.1 0-26.4-7.8-26.4-19.6 0-12.3 9.9-19.4 28.8-20.5l33.6-2.1v11c0 18.2-15.5 31.2-36 31.2zm102.5 74.6c29.5 0 43.4-11.3 55.5-45.4L640 193h-30.8l-35.6 115.1h-.6L537.4 193h-31.6L557 334.9l-2.8 8.6c-4.6 14.6-12.1 20.3-25.5 20.3-2.4 0-7-.3-8.9-.5v23.4c1.8.4 9.3.7 11.6.7z\"/></svg>",
1319
+ "viewBox": [
1320
+ "0",
1321
+ "0",
1322
+ "640",
1323
+ "512"
1324
+ ],
1325
+ "width": 640,
1326
+ "height": 512,
1327
+ "path": "M116.9 158.5c-7.5 8.9-19.5 15.9-31.5 14.9-1.5-12 4.4-24.8 11.3-32.6 7.5-9.1 20.6-15.6 31.3-16.1 1.2 12.4-3.7 24.7-11.1 33.8m10.9 17.2c-17.4-1-32.3 9.9-40.5 9.9-8.4 0-21-9.4-34.8-9.1-17.9.3-34.5 10.4-43.6 26.5-18.8 32.3-4.9 80 13.3 106.3 8.9 13 19.5 27.3 33.5 26.8 13.3-.5 18.5-8.6 34.5-8.6 16.1 0 20.8 8.6 34.8 8.4 14.5-.3 23.6-13 32.5-26 10.1-14.8 14.3-29.1 14.5-29.9-.3-.3-28-10.9-28.3-42.9-.3-26.8 21.9-39.5 22.9-40.3-12.5-18.6-32-20.6-38.8-21.1m100.4-36.2v194.9h30.3v-66.6h41.9c38.3 0 65.1-26.3 65.1-64.3s-26.4-64-64.1-64h-73.2zm30.3 25.5h34.9c26.3 0 41.3 14 41.3 38.6s-15 38.8-41.4 38.8h-34.8V165zm162.2 170.9c19 0 36.6-9.6 44.6-24.9h.6v23.4h28v-97c0-28.1-22.5-46.3-57.1-46.3-32.1 0-55.9 18.4-56.8 43.6h27.3c2.3-12 13.4-19.9 28.6-19.9 18.5 0 28.9 8.6 28.9 24.5v10.8l-37.8 2.3c-35.1 2.1-54.1 16.5-54.1 41.5.1 25.2 19.7 42 47.8 42zm8.2-23.1c-16.1 0-26.4-7.8-26.4-19.6 0-12.3 9.9-19.4 28.8-20.5l33.6-2.1v11c0 18.2-15.5 31.2-36 31.2zm102.5 74.6c29.5 0 43.4-11.3 55.5-45.4L640 193h-30.8l-35.6 115.1h-.6L537.4 193h-31.6L557 334.9l-2.8 8.6c-4.6 14.6-12.1 20.3-25.5 20.3-2.4 0-7-.3-8.9-.5v23.4c1.8.4 9.3.7 11.6.7z"
1328
+ }
1329
+ }
1330
+ },
1331
+ "archive": {
1332
+ "changes": [
1333
+ "3.2",
1334
+ "5.0.0",
1335
+ "5.0.9"
1336
+ ],
1337
+ "ligatures": [],
1338
+ "search": {
1339
+ "terms": [
1340
+ "box",
1341
+ "package",
1342
+ "storage"
1343
+ ]
1344
+ },
1345
+ "styles": [
1346
+ "solid"
1347
+ ],
1348
+ "unicode": "f187",
1349
+ "label": "Archive",
1350
+ "svg": {
1351
+ "solid": {
1352
+ "last_modified": 1521653821441,
1353
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M32 448c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V160H32v288zm160-212c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v8c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-8zM480 32H32C14.3 32 0 46.3 0 64v48c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16V64c0-17.7-14.3-32-32-32z\"/></svg>",
1354
+ "viewBox": [
1355
+ "0",
1356
+ "0",
1357
+ "512",
1358
+ "512"
1359
+ ],
1360
+ "width": 512,
1361
+ "height": 512,
1362
+ "path": "M32 448c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V160H32v288zm160-212c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v8c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-8zM480 32H32C14.3 32 0 46.3 0 64v48c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16V64c0-17.7-14.3-32-32-32z"
1363
+ }
1364
+ }
1365
+ },
1366
+ "archway": {
1367
+ "changes": [
1368
+ "5.1.0"
1369
+ ],
1370
+ "ligatures": [],
1371
+ "search": {
1372
+ "terms": [
1373
+ "arc",
1374
+ "monument",
1375
+ "road",
1376
+ "street"
1377
+ ]
1378
+ },
1379
+ "styles": [
1380
+ "solid"
1381
+ ],
1382
+ "unicode": "f557",
1383
+ "label": "Archway",
1384
+ "svg": {
1385
+ "solid": {
1386
+ "last_modified": 1529520111645,
1387
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M560 448h-16V96H32v352H16.02c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16H176c8.84 0 16-7.16 16-16V320c0-53.02 42.98-96 96-96s96 42.98 96 96l.02 160v16c0 8.84 7.16 16 16 16H560c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm0-448H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h544c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16z\"/></svg>",
1388
+ "viewBox": [
1389
+ "0",
1390
+ "0",
1391
+ "576",
1392
+ "512"
1393
+ ],
1394
+ "width": 576,
1395
+ "height": 512,
1396
+ "path": "M560 448h-16V96H32v352H16.02c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16H176c8.84 0 16-7.16 16-16V320c0-53.02 42.98-96 96-96s96 42.98 96 96l.02 160v16c0 8.84 7.16 16 16 16H560c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm0-448H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h544c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16z"
1397
+ }
1398
+ }
1399
+ },
1400
+ "arrow-alt-circle-down": {
1401
+ "changes": [
1402
+ "5.0.0"
1403
+ ],
1404
+ "ligatures": [],
1405
+ "search": {
1406
+ "terms": [
1407
+ "arrow-circle-o-down",
1408
+ "download"
1409
+ ]
1410
+ },
1411
+ "styles": [
1412
+ "solid",
1413
+ "regular"
1414
+ ],
1415
+ "unicode": "f358",
1416
+ "label": "Alternate Arrow Circle Down",
1417
+ "svg": {
1418
+ "solid": {
1419
+ "last_modified": 1500927880000,
1420
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM212 140v116h-70.9c-10.7 0-16.1 13-8.5 20.5l114.9 114.3c4.7 4.7 12.2 4.7 16.9 0l114.9-114.3c7.6-7.6 2.2-20.5-8.5-20.5H300V140c0-6.6-5.4-12-12-12h-64c-6.6 0-12 5.4-12 12z\"/></svg>",
1421
+ "viewBox": [
1422
+ "0",
1423
+ "0",
1424
+ "512",
1425
+ "512"
1426
+ ],
1427
+ "width": 512,
1428
+ "height": 512,
1429
+ "path": "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM212 140v116h-70.9c-10.7 0-16.1 13-8.5 20.5l114.9 114.3c4.7 4.7 12.2 4.7 16.9 0l114.9-114.3c7.6-7.6 2.2-20.5-8.5-20.5H300V140c0-6.6-5.4-12-12-12h-64c-6.6 0-12 5.4-12 12z"
1430
+ },
1431
+ "regular": {
1432
+ "last_modified": 1500927880000,
1433
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm-32-316v116h-67c-10.7 0-16 12.9-8.5 20.5l99 99c4.7 4.7 12.3 4.7 17 0l99-99c7.6-7.6 2.2-20.5-8.5-20.5h-67V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12z\"/></svg>",
1434
+ "viewBox": [
1435
+ "0",
1436
+ "0",
1437
+ "512",
1438
+ "512"
1439
+ ],
1440
+ "width": 512,
1441
+ "height": 512,
1442
+ "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm-32-316v116h-67c-10.7 0-16 12.9-8.5 20.5l99 99c4.7 4.7 12.3 4.7 17 0l99-99c7.6-7.6 2.2-20.5-8.5-20.5h-67V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12z"
1443
+ }
1444
+ }
1445
+ },
1446
+ "arrow-alt-circle-left": {
1447
+ "changes": [
1448
+ "5.0.0"
1449
+ ],
1450
+ "ligatures": [],
1451
+ "search": {
1452
+ "terms": [
1453
+ "arrow-circle-o-left",
1454
+ "back",
1455
+ "previous"
1456
+ ]
1457
+ },
1458
+ "styles": [
1459
+ "solid",
1460
+ "regular"
1461
+ ],
1462
+ "unicode": "f359",
1463
+ "label": "Alternate Arrow Circle Left",
1464
+ "svg": {
1465
+ "solid": {
1466
+ "last_modified": 1500927880000,
1467
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z\"/></svg>",
1468
+ "viewBox": [
1469
+ "0",
1470
+ "0",
1471
+ "512",
1472
+ "512"
1473
+ ],
1474
+ "width": 512,
1475
+ "height": 512,
1476
+ "path": "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z"
1477
+ },
1478
+ "regular": {
1479
+ "last_modified": 1500927880000,
1480
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M8 256c0 137 111 248 248 248s248-111 248-248S393 8 256 8 8 119 8 256zm448 0c0 110.5-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56s200 89.5 200 200zm-72-20v40c0 6.6-5.4 12-12 12H256v67c0 10.7-12.9 16-20.5 8.5l-99-99c-4.7-4.7-4.7-12.3 0-17l99-99c7.6-7.6 20.5-2.2 20.5 8.5v67h116c6.6 0 12 5.4 12 12z\"/></svg>",
1481
+ "viewBox": [
1482
+ "0",
1483
+ "0",
1484
+ "512",
1485
+ "512"
1486
+ ],
1487
+ "width": 512,
1488
+ "height": 512,
1489
+ "path": "M8 256c0 137 111 248 248 248s248-111 248-248S393 8 256 8 8 119 8 256zm448 0c0 110.5-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56s200 89.5 200 200zm-72-20v40c0 6.6-5.4 12-12 12H256v67c0 10.7-12.9 16-20.5 8.5l-99-99c-4.7-4.7-4.7-12.3 0-17l99-99c7.6-7.6 20.5-2.2 20.5 8.5v67h116c6.6 0 12 5.4 12 12z"
1490
+ }
1491
+ }
1492
+ },
1493
+ "arrow-alt-circle-right": {
1494
+ "changes": [
1495
+ "5.0.0"
1496
+ ],
1497
+ "ligatures": [],
1498
+ "search": {
1499
+ "terms": [
1500
+ "arrow-circle-o-right",
1501
+ "forward",
1502
+ "next"
1503
+ ]
1504
+ },
1505
+ "styles": [
1506
+ "solid",
1507
+ "regular"
1508
+ ],
1509
+ "unicode": "f35a",
1510
+ "label": "Alternate Arrow Circle Right",
1511
+ "svg": {
1512
+ "solid": {
1513
+ "last_modified": 1500927880000,
1514
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\"/></svg>",
1515
+ "viewBox": [
1516
+ "0",
1517
+ "0",
1518
+ "512",
1519
+ "512"
1520
+ ],
1521
+ "width": 512,
1522
+ "height": 512,
1523
+ "path": "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z"
1524
+ },
1525
+ "regular": {
1526
+ "last_modified": 1500927880000,
1527
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\"/></svg>",
1528
+ "viewBox": [
1529
+ "0",
1530
+ "0",
1531
+ "512",
1532
+ "512"
1533
+ ],
1534
+ "width": 512,
1535
+ "height": 512,
1536
+ "path": "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z"
1537
+ }
1538
+ }
1539
+ },
1540
+ "arrow-alt-circle-up": {
1541
+ "changes": [
1542
+ "5.0.0"
1543
+ ],
1544
+ "ligatures": [],
1545
+ "search": {
1546
+ "terms": [
1547
+ "arrow-circle-o-up"
1548
+ ]
1549
+ },
1550
+ "styles": [
1551
+ "solid",
1552
+ "regular"
1553
+ ],
1554
+ "unicode": "f35b",
1555
+ "label": "Alternate Arrow Circle Up",
1556
+ "svg": {
1557
+ "solid": {
1558
+ "last_modified": 1500927880000,
1559
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm292 116V256h70.9c10.7 0 16.1-13 8.5-20.5L264.5 121.2c-4.7-4.7-12.2-4.7-16.9 0l-115 114.3c-7.6 7.6-2.2 20.5 8.5 20.5H212v116c0 6.6 5.4 12 12 12h64c6.6 0 12-5.4 12-12z\"/></svg>",
1560
+ "viewBox": [
1561
+ "0",
1562
+ "0",
1563
+ "512",
1564
+ "512"
1565
+ ],
1566
+ "width": 512,
1567
+ "height": 512,
1568
+ "path": "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm292 116V256h70.9c10.7 0 16.1-13 8.5-20.5L264.5 121.2c-4.7-4.7-12.2-4.7-16.9 0l-115 114.3c-7.6 7.6-2.2 20.5 8.5 20.5H212v116c0 6.6 5.4 12 12 12h64c6.6 0 12-5.4 12-12z"
1569
+ },
1570
+ "regular": {
1571
+ "last_modified": 1500927880000,
1572
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M256 504c137 0 248-111 248-248S393 8 256 8 8 119 8 256s111 248 248 248zm0-448c110.5 0 200 89.5 200 200s-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56zm20 328h-40c-6.6 0-12-5.4-12-12V256h-67c-10.7 0-16-12.9-8.5-20.5l99-99c4.7-4.7 12.3-4.7 17 0l99 99c7.6 7.6 2.2 20.5-8.5 20.5h-67v116c0 6.6-5.4 12-12 12z\"/></svg>",
1573
+ "viewBox": [
1574
+ "0",
1575
+ "0",
1576
+ "512",
1577
+ "512"
1578
+ ],
1579
+ "width": 512,
1580
+ "height": 512,
1581
+ "path": "M256 504c137 0 248-111 248-248S393 8 256 8 8 119 8 256s111 248 248 248zm0-448c110.5 0 200 89.5 200 200s-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56zm20 328h-40c-6.6 0-12-5.4-12-12V256h-67c-10.7 0-16-12.9-8.5-20.5l99-99c4.7-4.7 12.3-4.7 17 0l99 99c7.6 7.6 2.2 20.5-8.5 20.5h-67v116c0 6.6-5.4 12-12 12z"
1582
+ }
1583
+ }
1584
+ },
1585
+ "arrow-circle-down": {
1586
+ "changes": [
1587
+ "2",
1588
+ "5.0.0"
1589
+ ],
1590
+ "ligatures": [],
1591
+ "search": {
1592
+ "terms": [
1593
+ "download"
1594
+ ]
1595
+ },
1596
+ "styles": [
1597
+ "solid"
1598
+ ],
1599
+ "unicode": "f0ab",
1600
+ "label": "Arrow Circle Down",
1601
+ "svg": {
1602
+ "solid": {
1603
+ "last_modified": 1500927880000,
1604
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-143.6-28.9L288 302.6V120c0-13.3-10.7-24-24-24h-16c-13.3 0-24 10.7-24 24v182.6l-72.4-75.5c-9.3-9.7-24.8-9.9-34.3-.4l-10.9 11c-9.4 9.4-9.4 24.6 0 33.9L239 404.3c9.4 9.4 24.6 9.4 33.9 0l132.7-132.7c9.4-9.4 9.4-24.6 0-33.9l-10.9-11c-9.5-9.5-25-9.3-34.3.4z\"/></svg>",
1605
+ "viewBox": [
1606
+ "0",
1607
+ "0",
1608
+ "512",
1609
+ "512"
1610
+ ],
1611
+ "width": 512,
1612
+ "height": 512,
1613
+ "path": "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-143.6-28.9L288 302.6V120c0-13.3-10.7-24-24-24h-16c-13.3 0-24 10.7-24 24v182.6l-72.4-75.5c-9.3-9.7-24.8-9.9-34.3-.4l-10.9 11c-9.4 9.4-9.4 24.6 0 33.9L239 404.3c9.4 9.4 24.6 9.4 33.9 0l132.7-132.7c9.4-9.4 9.4-24.6 0-33.9l-10.9-11c-9.5-9.5-25-9.3-34.3.4z"
1614
+ }
1615
+ }
1616
+ },
1617
+ "arrow-circle-left": {
1618
+ "changes": [
1619
+ "2",
1620
+ "5.0.0"
1621
+ ],
1622
+ "ligatures": [],
1623
+ "search": {
1624
+ "terms": [
1625
+ "back",
1626
+ "previous"
1627
+ ]
1628
+ },
1629
+ "styles": [
1630
+ "solid"
1631
+ ],
1632
+ "unicode": "f0a8",
1633
+ "label": "Arrow Circle Left",
1634
+ "svg": {
1635
+ "solid": {
1636
+ "last_modified": 1500927880000,
1637
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm28.9-143.6L209.4 288H392c13.3 0 24-10.7 24-24v-16c0-13.3-10.7-24-24-24H209.4l75.5-72.4c9.7-9.3 9.9-24.8.4-34.3l-11-10.9c-9.4-9.4-24.6-9.4-33.9 0L107.7 239c-9.4 9.4-9.4 24.6 0 33.9l132.7 132.7c9.4 9.4 24.6 9.4 33.9 0l11-10.9c9.5-9.5 9.3-25-.4-34.3z\"/></svg>",
1638
+ "viewBox": [
1639
+ "0",
1640
+ "0",
1641
+ "512",
1642
+ "512"
1643
+ ],
1644
+ "width": 512,
1645
+ "height": 512,
1646
+ "path": "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm28.9-143.6L209.4 288H392c13.3 0 24-10.7 24-24v-16c0-13.3-10.7-24-24-24H209.4l75.5-72.4c9.7-9.3 9.9-24.8.4-34.3l-11-10.9c-9.4-9.4-24.6-9.4-33.9 0L107.7 239c-9.4 9.4-9.4 24.6 0 33.9l132.7 132.7c9.4 9.4 24.6 9.4 33.9 0l11-10.9c9.5-9.5 9.3-25-.4-34.3z"
1647
+ }
1648
+ }
1649
+ },
1650
+ "arrow-circle-right": {
1651
+ "changes": [
1652
+ "2",
1653
+ "5.0.0"
1654
+ ],
1655
+ "ligatures": [],
1656
+ "search": {
1657
+ "terms": [
1658
+ "forward",
1659
+ "next"
1660
+ ]
1661
+ },
1662
+ "styles": [
1663
+ "solid"
1664
+ ],
1665
+ "unicode": "f0a9",
1666
+ "label": "Arrow Circle Right",
1667
+ "svg": {
1668
+ "solid": {
1669
+ "last_modified": 1500927880000,
1670
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm-28.9 143.6l75.5 72.4H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h182.6l-75.5 72.4c-9.7 9.3-9.9 24.8-.4 34.3l11 10.9c9.4 9.4 24.6 9.4 33.9 0L404.3 273c9.4-9.4 9.4-24.6 0-33.9L271.6 106.3c-9.4-9.4-24.6-9.4-33.9 0l-11 10.9c-9.5 9.6-9.3 25.1.4 34.4z\"/></svg>",
1671
+ "viewBox": [
1672
+ "0",
1673
+ "0",
1674
+ "512",
1675
+ "512"
1676
+ ],
1677
+ "width": 512,
1678
+ "height": 512,
1679
+ "path": "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm-28.9 143.6l75.5 72.4H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h182.6l-75.5 72.4c-9.7 9.3-9.9 24.8-.4 34.3l11 10.9c9.4 9.4 24.6 9.4 33.9 0L404.3 273c9.4-9.4 9.4-24.6 0-33.9L271.6 106.3c-9.4-9.4-24.6-9.4-33.9 0l-11 10.9c-9.5 9.6-9.3 25.1.4 34.4z"
1680
+ }
1681
+ }
1682
+ },
1683
+ "arrow-circle-up": {
1684
+ "changes": [
1685
+ "2",
1686
+ "5.0.0"
1687
+ ],
1688
+ "ligatures": [],
1689
+ "search": {
1690
+ "terms": []
1691
+ },
1692
+ "styles": [
1693
+ "solid"
1694
+ ],
1695
+ "unicode": "f0aa",
1696
+ "label": "Arrow Circle Up",
1697
+ "svg": {
1698
+ "solid": {
1699
+ "last_modified": 1500927880000,
1700
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm143.6 28.9l72.4-75.5V392c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V209.4l72.4 75.5c9.3 9.7 24.8 9.9 34.3.4l10.9-11c9.4-9.4 9.4-24.6 0-33.9L273 107.7c-9.4-9.4-24.6-9.4-33.9 0L106.3 240.4c-9.4 9.4-9.4 24.6 0 33.9l10.9 11c9.6 9.5 25.1 9.3 34.4-.4z\"/></svg>",
1701
+ "viewBox": [
1702
+ "0",
1703
+ "0",
1704
+ "512",
1705
+ "512"
1706
+ ],
1707
+ "width": 512,
1708
+ "height": 512,
1709
+ "path": "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm143.6 28.9l72.4-75.5V392c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V209.4l72.4 75.5c9.3 9.7 24.8 9.9 34.3.4l10.9-11c9.4-9.4 9.4-24.6 0-33.9L273 107.7c-9.4-9.4-24.6-9.4-33.9 0L106.3 240.4c-9.4 9.4-9.4 24.6 0 33.9l10.9 11c9.6 9.5 25.1 9.3 34.4-.4z"
1710
+ }
1711
+ }
1712
+ },
1713
+ "arrow-down": {
1714
+ "changes": [
1715
+ "1",
1716
+ "5.0.0"
1717
+ ],
1718
+ "ligatures": [],
1719
+ "search": {
1720
+ "terms": [
1721
+ "download"
1722
+ ]
1723
+ },
1724
+ "styles": [
1725
+ "solid"
1726
+ ],
1727
+ "unicode": "f063",
1728
+ "label": "arrow-down",
1729
+ "svg": {
1730
+ "solid": {
1731
+ "last_modified": 1500927880000,
1732
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M413.1 222.5l22.2 22.2c9.4 9.4 9.4 24.6 0 33.9L241 473c-9.4 9.4-24.6 9.4-33.9 0L12.7 278.6c-9.4-9.4-9.4-24.6 0-33.9l22.2-22.2c9.5-9.5 25-9.3 34.3.4L184 343.4V56c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24v287.4l114.8-120.5c9.3-9.8 24.8-10 34.3-.4z\"/></svg>",
1733
+ "viewBox": [
1734
+ "0",
1735
+ "0",
1736
+ "448",
1737
+ "512"
1738
+ ],
1739
+ "width": 448,
1740
+ "height": 512,
1741
+ "path": "M413.1 222.5l22.2 22.2c9.4 9.4 9.4 24.6 0 33.9L241 473c-9.4 9.4-24.6 9.4-33.9 0L12.7 278.6c-9.4-9.4-9.4-24.6 0-33.9l22.2-22.2c9.5-9.5 25-9.3 34.3.4L184 343.4V56c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24v287.4l114.8-120.5c9.3-9.8 24.8-10 34.3-.4z"
1742
+ }
1743
+ }
1744
+ },
1745
+ "arrow-left": {
1746
+ "changes": [
1747
+ "1",
1748
+ "5.0.0"
1749
+ ],
1750
+ "ligatures": [],
1751
+ "search": {
1752
+ "terms": [
1753
+ "back",
1754
+ "previous"
1755
+ ]
1756
+ },
1757
+ "styles": [
1758
+ "solid"
1759
+ ],
1760
+ "unicode": "f060",
1761
+ "label": "arrow-left",
1762
+ "svg": {
1763
+ "solid": {
1764
+ "last_modified": 1500927880000,
1765
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M257.5 445.1l-22.2 22.2c-9.4 9.4-24.6 9.4-33.9 0L7 273c-9.4-9.4-9.4-24.6 0-33.9L201.4 44.7c9.4-9.4 24.6-9.4 33.9 0l22.2 22.2c9.5 9.5 9.3 25-.4 34.3L136.6 216H424c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24H136.6l120.5 114.8c9.8 9.3 10 24.8.4 34.3z\"/></svg>",
1766
+ "viewBox": [
1767
+ "0",
1768
+ "0",
1769
+ "448",
1770
+ "512"
1771
+ ],
1772
+ "width": 448,
1773
+ "height": 512,
1774
+ "path": "M257.5 445.1l-22.2 22.2c-9.4 9.4-24.6 9.4-33.9 0L7 273c-9.4-9.4-9.4-24.6 0-33.9L201.4 44.7c9.4-9.4 24.6-9.4 33.9 0l22.2 22.2c9.5 9.5 9.3 25-.4 34.3L136.6 216H424c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24H136.6l120.5 114.8c9.8 9.3 10 24.8.4 34.3z"
1775
+ }
1776
+ }
1777
+ },
1778
+ "arrow-right": {
1779
+ "changes": [
1780
+ "1",
1781
+ "5.0.0"
1782
+ ],
1783
+ "ligatures": [],
1784
+ "search": {
1785
+ "terms": [
1786
+ "forward",
1787
+ "next"
1788
+ ]
1789
+ },
1790
+ "styles": [
1791
+ "solid"
1792
+ ],
1793
+ "unicode": "f061",
1794
+ "label": "arrow-right",
1795
+ "svg": {
1796
+ "solid": {
1797
+ "last_modified": 1500927880000,
1798
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z\"/></svg>",
1799
+ "viewBox": [
1800
+ "0",
1801
+ "0",
1802
+ "448",
1803
+ "512"
1804
+ ],
1805
+ "width": 448,
1806
+ "height": 512,
1807
+ "path": "M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z"
1808
+ }
1809
+ }
1810
+ },
1811
+ "arrow-up": {
1812
+ "changes": [
1813
+ "1",
1814
+ "5.0.0"
1815
+ ],
1816
+ "ligatures": [],
1817
+ "search": {
1818
+ "terms": []
1819
+ },
1820
+ "styles": [
1821
+ "solid"
1822
+ ],
1823
+ "unicode": "f062",
1824
+ "label": "arrow-up",
1825
+ "svg": {
1826
+ "solid": {
1827
+ "last_modified": 1500927880000,
1828
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z\"/></svg>",
1829
+ "viewBox": [
1830
+ "0",
1831
+ "0",
1832
+ "448",
1833
+ "512"
1834
+ ],
1835
+ "width": 448,
1836
+ "height": 512,
1837
+ "path": "M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z"
1838
+ }
1839
+ }
1840
+ },
1841
+ "arrows-alt": {
1842
+ "changes": [
1843
+ "2",
1844
+ "5.0.0"
1845
+ ],
1846
+ "ligatures": [],
1847
+ "search": {
1848
+ "terms": [
1849
+ "arrow",
1850
+ "arrows",
1851
+ "bigger",
1852
+ "enlarge",
1853
+ "expand",
1854
+ "fullscreen",
1855
+ "move",
1856
+ "position",
1857
+ "reorder",
1858
+ "resize"
1859
+ ]
1860
+ },
1861
+ "styles": [
1862
+ "solid"
1863
+ ],
1864
+ "unicode": "f0b2",
1865
+ "label": "Alternate Arrows",
1866
+ "svg": {
1867
+ "solid": {
1868
+ "last_modified": 1500927880000,
1869
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M352.201 425.775l-79.196 79.196c-9.373 9.373-24.568 9.373-33.941 0l-79.196-79.196c-15.119-15.119-4.411-40.971 16.971-40.97h51.162L228 284H127.196v51.162c0 21.382-25.851 32.09-40.971 16.971L7.029 272.937c-9.373-9.373-9.373-24.569 0-33.941L86.225 159.8c15.119-15.119 40.971-4.411 40.971 16.971V228H228V127.196h-51.23c-21.382 0-32.09-25.851-16.971-40.971l79.196-79.196c9.373-9.373 24.568-9.373 33.941 0l79.196 79.196c15.119 15.119 4.411 40.971-16.971 40.971h-51.162V228h100.804v-51.162c0-21.382 25.851-32.09 40.97-16.971l79.196 79.196c9.373 9.373 9.373 24.569 0 33.941L425.773 352.2c-15.119 15.119-40.971 4.411-40.97-16.971V284H284v100.804h51.23c21.382 0 32.09 25.851 16.971 40.971z\"/></svg>",
1870
+ "viewBox": [
1871
+ "0",
1872
+ "0",
1873
+ "512",
1874
+ "512"
1875
+ ],
1876
+ "width": 512,
1877
+ "height": 512,
1878
+ "path": "M352.201 425.775l-79.196 79.196c-9.373 9.373-24.568 9.373-33.941 0l-79.196-79.196c-15.119-15.119-4.411-40.971 16.971-40.97h51.162L228 284H127.196v51.162c0 21.382-25.851 32.09-40.971 16.971L7.029 272.937c-9.373-9.373-9.373-24.569 0-33.941L86.225 159.8c15.119-15.119 40.971-4.411 40.971 16.971V228H228V127.196h-51.23c-21.382 0-32.09-25.851-16.971-40.971l79.196-79.196c9.373-9.373 24.568-9.373 33.941 0l79.196 79.196c15.119 15.119 4.411 40.971-16.971 40.971h-51.162V228h100.804v-51.162c0-21.382 25.851-32.09 40.97-16.971l79.196 79.196c9.373 9.373 9.373 24.569 0 33.941L425.773 352.2c-15.119 15.119-40.971 4.411-40.97-16.971V284H284v100.804h51.23c21.382 0 32.09 25.851 16.971 40.971z"
1879
+ }
1880
+ }
1881
+ },
1882
+ "arrows-alt-h": {
1883
+ "changes": [
1884
+ "5.0.0"
1885
+ ],
1886
+ "ligatures": [],
1887
+ "search": {
1888
+ "terms": [
1889
+ "arrows-h",
1890
+ "resize"
1891
+ ]
1892
+ },
1893
+ "styles": [
1894
+ "solid"
1895
+ ],
1896
+ "unicode": "f337",
1897
+ "label": "Alternate Arrows Horizontal",
1898
+ "svg": {
1899
+ "solid": {
1900
+ "last_modified": 1500927880000,
1901
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M377.941 169.941V216H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.568 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296h243.882v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.568 0-33.941l-86.059-86.059c-15.119-15.12-40.971-4.412-40.971 16.97z\"/></svg>",
1902
+ "viewBox": [
1903
+ "0",
1904
+ "0",
1905
+ "512",
1906
+ "512"
1907
+ ],
1908
+ "width": 512,
1909
+ "height": 512,
1910
+ "path": "M377.941 169.941V216H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.568 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296h243.882v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.568 0-33.941l-86.059-86.059c-15.119-15.12-40.971-4.412-40.971 16.97z"
1911
+ }
1912
+ }
1913
+ },
1914
+ "arrows-alt-v": {
1915
+ "changes": [
1916
+ "5.0.0"
1917
+ ],
1918
+ "ligatures": [],
1919
+ "search": {
1920
+ "terms": [
1921
+ "arrows-v",
1922
+ "resize"
1923
+ ]
1924
+ },
1925
+ "styles": [
1926
+ "solid"
1927
+ ],
1928
+ "unicode": "f338",
1929
+ "label": "Alternate Arrows Vertical",
1930
+ "svg": {
1931
+ "solid": {
1932
+ "last_modified": 1500927880000,
1933
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 512\"><path d=\"M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z\"/></svg>",
1934
+ "viewBox": [
1935
+ "0",
1936
+ "0",
1937
+ "256",
1938
+ "512"
1939
+ ],
1940
+ "width": 256,
1941
+ "height": 512,
1942
+ "path": "M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z"
1943
+ }
1944
+ }
1945
+ },
1946
+ "assistive-listening-systems": {
1947
+ "changes": [
1948
+ "4.6",
1949
+ "5.0.0"
1950
+ ],
1951
+ "ligatures": [],
1952
+ "search": {
1953
+ "terms": []
1954
+ },
1955
+ "styles": [
1956
+ "solid"
1957
+ ],
1958
+ "unicode": "f2a2",
1959
+ "label": "Assistive Listening Systems",
1960
+ "svg": {
1961
+ "solid": {
1962
+ "last_modified": 1502483808000,
1963
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm-80 236c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zM32 448c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm480-187.993c0-1.518-.012-3.025-.045-4.531C510.076 140.525 436.157 38.47 327.994 1.511c-14.633-4.998-30.549 2.809-35.55 17.442-5 14.633 2.81 30.549 17.442 35.55 85.906 29.354 144.61 110.513 146.077 201.953l.003.188c.026 1.118.033 2.236.033 3.363 0 15.464 12.536 28 28 28s28.001-12.536 28.001-28zM152.971 439.029l-80-80L39.03 392.97l80 80 33.941-33.941z\"/></svg>",
1964
+ "viewBox": [
1965
+ "0",
1966
+ "0",
1967
+ "512",
1968
+ "512"
1969
+ ],
1970
+ "width": 512,
1971
+ "height": 512,
1972
+ "path": "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm-80 236c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zM32 448c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm480-187.993c0-1.518-.012-3.025-.045-4.531C510.076 140.525 436.157 38.47 327.994 1.511c-14.633-4.998-30.549 2.809-35.55 17.442-5 14.633 2.81 30.549 17.442 35.55 85.906 29.354 144.61 110.513 146.077 201.953l.003.188c.026 1.118.033 2.236.033 3.363 0 15.464 12.536 28 28 28s28.001-12.536 28.001-28zM152.971 439.029l-80-80L39.03 392.97l80 80 33.941-33.941z"
1973
+ }
1974
+ }
1975
+ },
1976
+ "asterisk": {
1977
+ "changes": [
1978
+ "1",
1979
+ "5.0.0"
1980
+ ],
1981
+ "ligatures": [],
1982
+ "search": {
1983
+ "terms": [
1984
+ "details"
1985
+ ]
1986
+ },
1987
+ "styles": [
1988
+ "solid"
1989
+ ],
1990
+ "unicode": "f069",
1991
+ "label": "asterisk",
1992
+ "svg": {
1993
+ "solid": {
1994
+ "last_modified": 1500927880000,
1995
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M478.21 334.093L336 256l142.21-78.093c11.795-6.477 15.961-21.384 9.232-33.037l-19.48-33.741c-6.728-11.653-21.72-15.499-33.227-8.523L296 186.718l3.475-162.204C299.763 11.061 288.937 0 275.48 0h-38.96c-13.456 0-24.283 11.061-23.994 24.514L216 186.718 77.265 102.607c-11.506-6.976-26.499-3.13-33.227 8.523l-19.48 33.741c-6.728 11.653-2.562 26.56 9.233 33.037L176 256 33.79 334.093c-11.795 6.477-15.961 21.384-9.232 33.037l19.48 33.741c6.728 11.653 21.721 15.499 33.227 8.523L216 325.282l-3.475 162.204C212.237 500.939 223.064 512 236.52 512h38.961c13.456 0 24.283-11.061 23.995-24.514L296 325.282l138.735 84.111c11.506 6.976 26.499 3.13 33.227-8.523l19.48-33.741c6.728-11.653 2.563-26.559-9.232-33.036z\"/></svg>",
1996
+ "viewBox": [
1997
+ "0",
1998
+ "0",
1999
+ "512",
2000
+ "512"
2001
+ ],
2002
+ "width": 512,
2003
+ "height": 512,
2004
+ "path": "M478.21 334.093L336 256l142.21-78.093c11.795-6.477 15.961-21.384 9.232-33.037l-19.48-33.741c-6.728-11.653-21.72-15.499-33.227-8.523L296 186.718l3.475-162.204C299.763 11.061 288.937 0 275.48 0h-38.96c-13.456 0-24.283 11.061-23.994 24.514L216 186.718 77.265 102.607c-11.506-6.976-26.499-3.13-33.227 8.523l-19.48 33.741c-6.728 11.653-2.562 26.56 9.233 33.037L176 256 33.79 334.093c-11.795 6.477-15.961 21.384-9.232 33.037l19.48 33.741c6.728 11.653 21.721 15.499 33.227 8.523L216 325.282l-3.475 162.204C212.237 500.939 223.064 512 236.52 512h38.961c13.456 0 24.283-11.061 23.995-24.514L296 325.282l138.735 84.111c11.506 6.976 26.499 3.13 33.227-8.523l19.48-33.741c6.728-11.653 2.563-26.559-9.232-33.036z"
2005
+ }
2006
+ }
2007
+ },
2008
+ "asymmetrik": {
2009
+ "changes": [
2010
+ "5.0.0"
2011
+ ],
2012
+ "ligatures": [],
2013
+ "search": {
2014
+ "terms": []
2015
+ },
2016
+ "styles": [
2017
+ "brands"
2018
+ ],
2019
+ "unicode": "f372",
2020
+ "label": "Asymmetrik, Ltd.",
2021
+ "svg": {
2022
+ "brands": {
2023
+ "last_modified": 1500927880000,
2024
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M517.5 309.2c38.8-40 58.1-80 58.5-116.1.8-65.5-59.4-118.2-169.4-135C277.9 38.4 118.1 73.6 0 140.5 52 114 110.6 92.3 170.7 82.3c74.5-20.5 153-25.4 221.3-14.8C544.5 91.3 588.8 195 490.8 299.2c-10.2 10.8-22 21.1-35 30.6L304.9 103.4 114.7 388.9c-65.6-29.4-76.5-90.2-19.1-151.2 20.8-22.2 48.3-41.9 79.5-58.1 20-12.2 39.7-22.6 62-30.7-65.1 20.3-122.7 52.9-161.6 92.9-27.7 28.6-41.4 57.1-41.7 82.9-.5 35.1 23.4 65.1 68.4 83l-34.5 51.7h101.6l22-34.4c22.2 1 45.3 0 68.6-2.7l-22.8 37.1h135.5L340 406.3c18.6-5.3 36.9-11.5 54.5-18.7l45.9 71.8H542L468.6 349c18.5-12.1 35-25.5 48.9-39.8zm-187.6 80.5l-25-40.6-32.7 53.3c-23.4 3.5-46.7 5.1-69.2 4.4l101.9-159.3 78.7 123c-17.2 7.4-35.3 13.9-53.7 19.2z\"/></svg>",
2025
+ "viewBox": [
2026
+ "0",
2027
+ "0",
2028
+ "576",
2029
+ "512"
2030
+ ],
2031
+ "width": 576,
2032
+ "height": 512,
2033
+ "path": "M517.5 309.2c38.8-40 58.1-80 58.5-116.1.8-65.5-59.4-118.2-169.4-135C277.9 38.4 118.1 73.6 0 140.5 52 114 110.6 92.3 170.7 82.3c74.5-20.5 153-25.4 221.3-14.8C544.5 91.3 588.8 195 490.8 299.2c-10.2 10.8-22 21.1-35 30.6L304.9 103.4 114.7 388.9c-65.6-29.4-76.5-90.2-19.1-151.2 20.8-22.2 48.3-41.9 79.5-58.1 20-12.2 39.7-22.6 62-30.7-65.1 20.3-122.7 52.9-161.6 92.9-27.7 28.6-41.4 57.1-41.7 82.9-.5 35.1 23.4 65.1 68.4 83l-34.5 51.7h101.6l22-34.4c22.2 1 45.3 0 68.6-2.7l-22.8 37.1h135.5L340 406.3c18.6-5.3 36.9-11.5 54.5-18.7l45.9 71.8H542L468.6 349c18.5-12.1 35-25.5 48.9-39.8zm-187.6 80.5l-25-40.6-32.7 53.3c-23.4 3.5-46.7 5.1-69.2 4.4l101.9-159.3 78.7 123c-17.2 7.4-35.3 13.9-53.7 19.2z"
2034
+ }
2035
+ }
2036
+ },
2037
+ "at": {
2038
+ "changes": [
2039
+ "4.2",
2040
+ "5.0.0"
2041
+ ],
2042
+ "ligatures": [],
2043
+ "search": {
2044
+ "terms": [
2045
+ "e-mail",
2046
+ "email"
2047
+ ]
2048
+ },
2049
+ "styles": [
2050
+ "solid"
2051
+ ],
2052
+ "unicode": "f1fa",
2053
+ "label": "At",
2054
+ "svg": {
2055
+ "solid": {
2056
+ "last_modified": 1500927880000,
2057
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M256 8C118.941 8 8 118.919 8 256c0 137.059 110.919 248 248 248 48.154 0 95.342-14.14 135.408-40.223 12.005-7.815 14.625-24.288 5.552-35.372l-10.177-12.433c-7.671-9.371-21.179-11.667-31.373-5.129C325.92 429.757 291.314 440 256 440c-101.458 0-184-82.542-184-184S154.542 72 256 72c100.139 0 184 57.619 184 160 0 38.786-21.093 79.742-58.17 83.693-17.349-.454-16.91-12.857-13.476-30.024l23.433-121.11C394.653 149.75 383.308 136 368.225 136h-44.981a13.518 13.518 0 0 0-13.432 11.993l-.01.092c-14.697-17.901-40.448-21.775-59.971-21.775-74.58 0-137.831 62.234-137.831 151.46 0 65.303 36.785 105.87 96 105.87 26.984 0 57.369-15.637 74.991-38.333 9.522 34.104 40.613 34.103 70.71 34.103C462.609 379.41 504 307.798 504 232 504 95.653 394.023 8 256 8zm-21.68 304.43c-22.249 0-36.07-15.623-36.07-40.771 0-44.993 30.779-72.729 58.63-72.729 22.292 0 35.601 15.241 35.601 40.77 0 45.061-33.875 72.73-58.161 72.73z\"/></svg>",
2058
+ "viewBox": [
2059
+ "0",
2060
+ "0",
2061
+ "512",
2062
+ "512"
2063
+ ],
2064
+ "width": 512,
2065
+ "height": 512,
2066
+ "path": "M256 8C118.941 8 8 118.919 8 256c0 137.059 110.919 248 248 248 48.154 0 95.342-14.14 135.408-40.223 12.005-7.815 14.625-24.288 5.552-35.372l-10.177-12.433c-7.671-9.371-21.179-11.667-31.373-5.129C325.92 429.757 291.314 440 256 440c-101.458 0-184-82.542-184-184S154.542 72 256 72c100.139 0 184 57.619 184 160 0 38.786-21.093 79.742-58.17 83.693-17.349-.454-16.91-12.857-13.476-30.024l23.433-121.11C394.653 149.75 383.308 136 368.225 136h-44.981a13.518 13.518 0 0 0-13.432 11.993l-.01.092c-14.697-17.901-40.448-21.775-59.971-21.775-74.58 0-137.831 62.234-137.831 151.46 0 65.303 36.785 105.87 96 105.87 26.984 0 57.369-15.637 74.991-38.333 9.522 34.104 40.613 34.103 70.71 34.103C462.609 379.41 504 307.798 504 232 504 95.653 394.023 8 256 8zm-21.68 304.43c-22.249 0-36.07-15.623-36.07-40.771 0-44.993 30.779-72.729 58.63-72.729 22.292 0 35.601 15.241 35.601 40.77 0 45.061-33.875 72.73-58.161 72.73z"
2067
+ }
2068
+ }
2069
+ },
2070
+ "atlas": {
2071
+ "changes": [
2072
+ "5.1.0"
2073
+ ],
2074
+ "ligatures": [],
2075
+ "search": {
2076
+ "terms": [
2077
+ "book",
2078
+ "directions",
2079
+ "geography",
2080
+ "map",
2081
+ "wayfinding"
2082
+ ]
2083
+ },
2084
+ "styles": [
2085
+ "solid"
2086
+ ],
2087
+ "unicode": "f558",
2088
+ "label": "Atlas",
2089
+ "svg": {
2090
+ "solid": {
2091
+ "last_modified": 1529520111646,
2092
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M318.38 208h-39.09c-1.49 27.03-6.54 51.35-14.21 70.41 27.71-13.24 48.02-39.19 53.3-70.41zm0-32c-5.29-31.22-25.59-57.17-53.3-70.41 7.68 19.06 12.72 43.38 14.21 70.41h39.09zM224 97.31c-7.69 7.45-20.77 34.42-23.43 78.69h46.87c-2.67-44.26-15.75-71.24-23.44-78.69zm-41.08 8.28c-27.71 13.24-48.02 39.19-53.3 70.41h39.09c1.49-27.03 6.53-51.35 14.21-70.41zm0 172.82c-7.68-19.06-12.72-43.38-14.21-70.41h-39.09c5.28 31.22 25.59 57.17 53.3 70.41zM247.43 208h-46.87c2.66 44.26 15.74 71.24 23.43 78.69 7.7-7.45 20.78-34.43 23.44-78.69zM448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM224 64c70.69 0 128 57.31 128 128s-57.31 128-128 128S96 262.69 96 192 153.31 64 224 64zm160 384H96c-19.2 0-32-12.8-32-32s16-32 32-32h288v64z\"/></svg>",
2093
+ "viewBox": [
2094
+ "0",
2095
+ "0",
2096
+ "448",
2097
+ "512"
2098
+ ],
2099
+ "width": 448,
2100
+ "height": 512,
2101
+ "path": "M318.38 208h-39.09c-1.49 27.03-6.54 51.35-14.21 70.41 27.71-13.24 48.02-39.19 53.3-70.41zm0-32c-5.29-31.22-25.59-57.17-53.3-70.41 7.68 19.06 12.72 43.38 14.21 70.41h39.09zM224 97.31c-7.69 7.45-20.77 34.42-23.43 78.69h46.87c-2.67-44.26-15.75-71.24-23.44-78.69zm-41.08 8.28c-27.71 13.24-48.02 39.19-53.3 70.41h39.09c1.49-27.03 6.53-51.35 14.21-70.41zm0 172.82c-7.68-19.06-12.72-43.38-14.21-70.41h-39.09c5.28 31.22 25.59 57.17 53.3 70.41zM247.43 208h-46.87c2.66 44.26 15.74 71.24 23.43 78.69 7.7-7.45 20.78-34.43 23.44-78.69zM448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM224 64c70.69 0 128 57.31 128 128s-57.31 128-128 128S96 262.69 96 192 153.31 64 224 64zm160 384H96c-19.2 0-32-12.8-32-32s16-32 32-32h288v64z"
2102
+ }
2103
+ }
2104
+ },
2105
+ "atom": {
2106
+ "changes": [
2107
+ "5.2.0"
2108
+ ],
2109
+ "ligatures": [],
2110
+ "search": {
2111
+ "terms": []
2112
+ },
2113
+ "styles": [
2114
+ "solid"
2115
+ ],
2116
+ "unicode": "f5d2",
2117
+ "label": "Atom",
2118
+ "svg": {
2119
+ "solid": {
2120
+ "last_modified": 1532362831513,
2121
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M413.03 256c40.13-54.89 41.51-98.62 25.14-128-10.91-19.52-40.54-50.73-116.33-41.88C300.36 34.89 267.64 0 224 0s-76.36 34.89-97.84 86.12C50.43 77.34 20.73 108.48 9.83 128c-16.38 29.4-15 73.09 25.14 128-40.13 54.89-41.51 98.62-25.14 128 29.21 52.34 101.68 43.58 116.33 41.88C147.63 477.1 180.36 512 224 512s76.37-34.9 97.84-86.12c14.64 1.7 87.11 10.46 116.33-41.88 16.38-29.4 15-73.09-25.14-128zM63.38 352c-4.03-7.21-.19-24.8 14.95-48.29 6.96 6.53 14.2 12.89 21.87 19.18 1.71 13.71 4 27.08 6.76 40.08-24.56.89-39.89-4.37-43.58-10.97zm36.82-162.88c-7.66 6.29-14.9 12.65-21.87 19.18-15.13-23.5-18.97-41.09-14.95-48.3 3.41-6.14 16.39-11.47 37.92-11.47 1.71 0 3.87.3 5.69.37a472.191 472.191 0 0 0-6.79 40.22zM224 64c9.47 0 22.2 13.52 33.86 37.26-11.19 3.7-22.44 8-33.86 12.86-11.42-4.86-22.67-9.16-33.86-12.86C201.8 77.52 214.53 64 224 64zm0 384c-9.47 0-22.2-13.52-33.86-37.26 11.19-3.7 22.44-8 33.86-12.86 11.42 4.86 22.67 9.16 33.86 12.86C246.2 434.48 233.47 448 224 448zm62.5-157.33c-26.7 19.08-46.14 29.33-62.5 37.48-16.35-8.14-35.8-18.41-62.5-37.48-1.99-27.79-1.99-41.54 0-69.33 26.67-19.05 46.13-29.32 62.5-37.48 16.39 8.17 35.86 18.44 62.5 37.48 1.98 27.78 1.99 41.53 0 69.33zM384.62 352c-3.67 6.62-19 11.82-43.58 10.95 2.76-13 5.05-26.37 6.76-40.06 7.66-6.29 14.9-12.65 21.87-19.18 15.13 23.49 18.97 41.08 14.95 48.29zm-14.95-143.71c-6.96-6.53-14.2-12.89-21.87-19.18a473.535 473.535 0 0 0-6.79-40.22c1.82-.07 3.97-.37 5.69-.37 21.52 0 34.51 5.34 37.92 11.47 4.02 7.22.18 24.81-14.95 48.3zM224 224c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32z\"/></svg>",
2122
+ "viewBox": [
2123
+ "0",
2124
+ "0",
2125
+ "448",
2126
+ "512"
2127
+ ],
2128
+ "width": 448,
2129
+ "height": 512,
2130
+ "path": "M413.03 256c40.13-54.89 41.51-98.62 25.14-128-10.91-19.52-40.54-50.73-116.33-41.88C300.36 34.89 267.64 0 224 0s-76.36 34.89-97.84 86.12C50.43 77.34 20.73 108.48 9.83 128c-16.38 29.4-15 73.09 25.14 128-40.13 54.89-41.51 98.62-25.14 128 29.21 52.34 101.68 43.58 116.33 41.88C147.63 477.1 180.36 512 224 512s76.37-34.9 97.84-86.12c14.64 1.7 87.11 10.46 116.33-41.88 16.38-29.4 15-73.09-25.14-128zM63.38 352c-4.03-7.21-.19-24.8 14.95-48.29 6.96 6.53 14.2 12.89 21.87 19.18 1.71 13.71 4 27.08 6.76 40.08-24.56.89-39.89-4.37-43.58-10.97zm36.82-162.88c-7.66 6.29-14.9 12.65-21.87 19.18-15.13-23.5-18.97-41.09-14.95-48.3 3.41-6.14 16.39-11.47 37.92-11.47 1.71 0 3.87.3 5.69.37a472.191 472.191 0 0 0-6.79 40.22zM224 64c9.47 0 22.2 13.52 33.86 37.26-11.19 3.7-22.44 8-33.86 12.86-11.42-4.86-22.67-9.16-33.86-12.86C201.8 77.52 214.53 64 224 64zm0 384c-9.47 0-22.2-13.52-33.86-37.26 11.19-3.7 22.44-8 33.86-12.86 11.42 4.86 22.67 9.16 33.86 12.86C246.2 434.48 233.47 448 224 448zm62.5-157.33c-26.7 19.08-46.14 29.33-62.5 37.48-16.35-8.14-35.8-18.41-62.5-37.48-1.99-27.79-1.99-41.54 0-69.33 26.67-19.05 46.13-29.32 62.5-37.48 16.39 8.17 35.86 18.44 62.5 37.48 1.98 27.78 1.99 41.53 0 69.33zM384.62 352c-3.67 6.62-19 11.82-43.58 10.95 2.76-13 5.05-26.37 6.76-40.06 7.66-6.29 14.9-12.65 21.87-19.18 15.13 23.49 18.97 41.08 14.95 48.29zm-14.95-143.71c-6.96-6.53-14.2-12.89-21.87-19.18a473.535 473.535 0 0 0-6.79-40.22c1.82-.07 3.97-.37 5.69-.37 21.52 0 34.51 5.34 37.92 11.47 4.02 7.22.18 24.81-14.95 48.3zM224 224c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32z"
2131
+ }
2132
+ }
2133
+ },
2134
+ "audible": {
2135
+ "changes": [
2136
+ "5.0.0"
2137
+ ],
2138
+ "ligatures": [],
2139
+ "search": {
2140
+ "terms": []
2141
+ },
2142
+ "styles": [
2143
+ "brands"
2144
+ ],
2145
+ "unicode": "f373",
2146
+ "label": "Audible",
2147
+ "svg": {
2148
+ "brands": {
2149
+ "last_modified": 1500927880000,
2150
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M640 199.9v54l-320 200L0 254v-54l320 200 320-200.1zm-194.5 72l47.1-29.4c-37.2-55.8-100.7-92.6-172.7-92.6-72 0-135.5 36.7-172.6 92.4h.3c2.5-2.3 5.1-4.5 7.7-6.7 89.7-74.4 219.4-58.1 290.2 36.3zm-220.1 18.8c16.9-11.9 36.5-18.7 57.4-18.7 34.4 0 65.2 18.4 86.4 47.6l45.4-28.4c-20.9-29.9-55.6-49.5-94.8-49.5-38.9 0-73.4 19.4-94.4 49zM103.6 161.1c131.8-104.3 318.2-76.4 417.5 62.1l.7 1 48.8-30.4C517.1 112.1 424.8 58.1 319.9 58.1c-103.5 0-196.6 53.5-250.5 135.6 9.9-10.5 22.7-23.5 34.2-32.6zm467 32.7z\"/></svg>",
2151
+ "viewBox": [
2152
+ "0",
2153
+ "0",
2154
+ "640",
2155
+ "512"
2156
+ ],
2157
+ "width": 640,
2158
+ "height": 512,
2159
+ "path": "M640 199.9v54l-320 200L0 254v-54l320 200 320-200.1zm-194.5 72l47.1-29.4c-37.2-55.8-100.7-92.6-172.7-92.6-72 0-135.5 36.7-172.6 92.4h.3c2.5-2.3 5.1-4.5 7.7-6.7 89.7-74.4 219.4-58.1 290.2 36.3zm-220.1 18.8c16.9-11.9 36.5-18.7 57.4-18.7 34.4 0 65.2 18.4 86.4 47.6l45.4-28.4c-20.9-29.9-55.6-49.5-94.8-49.5-38.9 0-73.4 19.4-94.4 49zM103.6 161.1c131.8-104.3 318.2-76.4 417.5 62.1l.7 1 48.8-30.4C517.1 112.1 424.8 58.1 319.9 58.1c-103.5 0-196.6 53.5-250.5 135.6 9.9-10.5 22.7-23.5 34.2-32.6zm467 32.7z"
2160
+ }
2161
+ }
2162
+ },
2163
+ "audio-description": {
2164
+ "changes": [
2165
+ "4.6",
2166
+ "5.0.0"
2167
+ ],
2168
+ "ligatures": [],
2169
+ "search": {
2170
+ "terms": []
2171
+ },
2172
+ "styles": [
2173
+ "solid"
2174
+ ],
2175
+ "unicode": "f29e",
2176
+ "label": "Audio Description",
2177
+ "svg": {
2178
+ "solid": {
2179
+ "last_modified": 1502397066000,
2180
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M162.925 238.709l8.822 30.655h-25.606l9.041-30.652c1.277-4.421 2.651-9.994 3.872-15.245 1.22 5.251 2.594 10.823 3.871 15.242zm166.474-32.099h-14.523v98.781h14.523c29.776 0 46.175-17.678 46.175-49.776 0-32.239-17.49-49.005-46.175-49.005zM512 112v288c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48zM245.459 336.139l-57.097-168A12.001 12.001 0 0 0 177 160h-35.894a12.001 12.001 0 0 0-11.362 8.139l-57.097 168C70.003 343.922 75.789 352 84.009 352h29.133a12 12 0 0 0 11.535-8.693l8.574-29.906h51.367l8.793 29.977A12 12 0 0 0 204.926 352h29.172c8.22 0 14.006-8.078 11.361-15.861zm184.701-80.525c0-58.977-37.919-95.614-98.96-95.614h-57.366c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12H331.2c61.041 0 98.96-36.933 98.96-96.386z\"/></svg>",
2181
+ "viewBox": [
2182
+ "0",
2183
+ "0",
2184
+ "512",
2185
+ "512"
2186
+ ],
2187
+ "width": 512,
2188
+ "height": 512,
2189
+ "path": "M162.925 238.709l8.822 30.655h-25.606l9.041-30.652c1.277-4.421 2.651-9.994 3.872-15.245 1.22 5.251 2.594 10.823 3.871 15.242zm166.474-32.099h-14.523v98.781h14.523c29.776 0 46.175-17.678 46.175-49.776 0-32.239-17.49-49.005-46.175-49.005zM512 112v288c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48zM245.459 336.139l-57.097-168A12.001 12.001 0 0 0 177 160h-35.894a12.001 12.001 0 0 0-11.362 8.139l-57.097 168C70.003 343.922 75.789 352 84.009 352h29.133a12 12 0 0 0 11.535-8.693l8.574-29.906h51.367l8.793 29.977A12 12 0 0 0 204.926 352h29.172c8.22 0 14.006-8.078 11.361-15.861zm184.701-80.525c0-58.977-37.919-95.614-98.96-95.614h-57.366c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12H331.2c61.041 0 98.96-36.933 98.96-96.386z"
2190
+ }
2191
+ }
2192
+ },
2193
+ "autoprefixer": {
2194
+ "changes": [
2195
+ "5.0.0"
2196
+ ],
2197
+ "ligatures": [],
2198
+ "search": {
2199
+ "terms": []
2200
+ },
2201
+ "styles": [
2202
+ "brands"
2203
+ ],
2204
+ "unicode": "f41c",
2205
+ "label": "Autoprefixer",
2206
+ "svg": {
2207
+ "brands": {
2208
+ "last_modified": 1508787003039,
2209
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M318.4 16l-161 480h77.5l25.4-81.4h119.5L405 496h77.5L318.4 16zm-40.3 341.9l41.2-130.4h1.5l40.9 130.4h-83.6zM640 405l-10-31.4L462.1 358l19.4 56.5L640 405zm-462.1-47L10 373.7 0 405l158.5 9.4 19.4-56.4z\"/></svg>",
2210
+ "viewBox": [
2211
+ "0",
2212
+ "0",
2213
+ "640",
2214
+ "512"
2215
+ ],
2216
+ "width": 640,
2217
+ "height": 512,
2218
+ "path": "M318.4 16l-161 480h77.5l25.4-81.4h119.5L405 496h77.5L318.4 16zm-40.3 341.9l41.2-130.4h1.5l40.9 130.4h-83.6zM640 405l-10-31.4L462.1 358l19.4 56.5L640 405zm-462.1-47L10 373.7 0 405l158.5 9.4 19.4-56.4z"
2219
+ }
2220
+ }
2221
+ },
2222
+ "avianex": {
2223
+ "changes": [
2224
+ "5.0.0"
2225
+ ],
2226
+ "ligatures": [],
2227
+ "search": {
2228
+ "terms": []
2229
+ },
2230
+ "styles": [
2231
+ "brands"
2232
+ ],
2233
+ "unicode": "f374",
2234
+ "label": "avianex",
2235
+ "svg": {
2236
+ "brands": {
2237
+ "last_modified": 1500927880000,
2238
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M453.1 32h-312c-38.9 0-76.2 31.2-83.3 69.7L1.2 410.3C-5.9 448.8 19.9 480 58.9 480h312c38.9 0 76.2-31.2 83.3-69.7l56.7-308.5c7-38.6-18.8-69.8-57.8-69.8zm-58.2 347.3l-32 13.5-115.4-110c-14.7 10-29.2 19.5-41.7 27.1l22.1 64.2-17.9 12.7-40.6-61-52.4-48.1 15.7-15.4 58 31.1c9.3-10.5 20.8-22.6 32.8-34.9L203 228.9l-68.8-99.8 18.8-28.9 8.9-4.8L265 207.8l4.9 4.5c19.4-18.8 33.8-32.4 33.8-32.4 7.7-6.5 21.5-2.9 30.7 7.9 9 10.5 10.6 24.7 2.7 31.3-1.8 1.3-15.5 11.4-35.3 25.6l4.5 7.3 94.9 119.4-6.3 7.9z\"/></svg>",
2239
+ "viewBox": [
2240
+ "0",
2241
+ "0",
2242
+ "512",
2243
+ "512"
2244
+ ],
2245
+ "width": 512,
2246
+ "height": 512,
2247
+ "path": "M453.1 32h-312c-38.9 0-76.2 31.2-83.3 69.7L1.2 410.3C-5.9 448.8 19.9 480 58.9 480h312c38.9 0 76.2-31.2 83.3-69.7l56.7-308.5c7-38.6-18.8-69.8-57.8-69.8zm-58.2 347.3l-32 13.5-115.4-110c-14.7 10-29.2 19.5-41.7 27.1l22.1 64.2-17.9 12.7-40.6-61-52.4-48.1 15.7-15.4 58 31.1c9.3-10.5 20.8-22.6 32.8-34.9L203 228.9l-68.8-99.8 18.8-28.9 8.9-4.8L265 207.8l4.9 4.5c19.4-18.8 33.8-32.4 33.8-32.4 7.7-6.5 21.5-2.9 30.7 7.9 9 10.5 10.6 24.7 2.7 31.3-1.8 1.3-15.5 11.4-35.3 25.6l4.5 7.3 94.9 119.4-6.3 7.9z"
2248
+ }
2249
+ }
2250
+ },
2251
+ "aviato": {
2252
+ "changes": [
2253
+ "5.0.0"
2254
+ ],
2255
+ "ligatures": [],
2256
+ "search": {
2257
+ "terms": []
2258
+ },
2259
+ "styles": [
2260
+ "brands"
2261
+ ],
2262
+ "unicode": "f421",
2263
+ "label": "Aviato",
2264
+ "svg": {
2265
+ "brands": {
2266
+ "last_modified": 1521653821381,
2267
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M107.2 283.5l-19-41.8H36.1l-19 41.8H0l62.2-131.4 62.2 131.4h-17.2zm-45-98.1l-19.6 42.5h39.2l-19.6-42.5zm112.7 102.4l-62.2-131.4h17.1l45.1 96 45.1-96h17l-62.1 131.4zm80.6-4.3V156.4H271v127.1h-15.5zm209.1-115.6v115.6h-17.3V167.9h-41.2v-11.5h99.6v11.5h-41.1zM640 218.8c0 9.2-1.7 17.8-5.1 25.8-3.4 8-8.2 15.1-14.2 21.1-6 6-13.1 10.8-21.1 14.2-8 3.4-16.6 5.1-25.8 5.1s-17.8-1.7-25.8-5.1c-8-3.4-15.1-8.2-21.1-14.2-6-6-10.8-13-14.2-21.1-3.4-8-5.1-16.6-5.1-25.8s1.7-17.8 5.1-25.8c3.4-8 8.2-15.1 14.2-21.1 6-6 13-8.4 21.1-11.9 8-3.4 16.6-5.1 25.8-5.1s17.8 1.7 25.8 5.1c8 3.4 15.1 5.8 21.1 11.9 6 6 10.7 13.1 14.2 21.1 3.4 8 5.1 16.6 5.1 25.8zm-15.5 0c0-7.3-1.3-14-3.9-20.3-2.6-6.3-6.2-11.7-10.8-16.3-4.6-4.6-10-8.2-16.2-10.9-6.2-2.7-12.8-4-19.8-4s-13.6 1.3-19.8 4c-6.2 2.7-11.6 6.3-16.2 10.9-4.6 4.6-8.2 10-10.8 16.3-2.6 6.3-3.9 13.1-3.9 20.3 0 7.3 1.3 14 3.9 20.3 2.6 6.3 6.2 11.7 10.8 16.3 4.6 4.6 10 8.2 16.2 10.9 6.2 2.7 12.8 4 19.8 4s13.6-1.3 19.8-4c6.2-2.7 11.6-6.3 16.2-10.9 4.6-4.6 8.2-10 10.8-16.3 2.6-6.3 3.9-13.1 3.9-20.3zm-94.8 96.7v-6.3l88.9-10-242.9 13.4c.6-2.2 1.1-4.6 1.4-7.2.3-2 .5-4.2.6-6.5l64.8-8.1-64.9 1.9c0-.4-.1-.7-.1-1.1-2.8-17.2-25.5-23.7-25.5-23.7l-1.1-26.3h23.8l19 41.8h17.1L348.6 152l-62.2 131.4h17.1l19-41.8h23.6L345 268s-22.7 6.5-25.5 23.7c-.1.3-.1.7-.1 1.1l-64.9-1.9 64.8 8.1c.1 2.3.3 4.4.6 6.5.3 2.6.8 5 1.4 7.2L78.4 299.2l88.9 10v6.3c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4 0-6.2-4.6-11.3-10.5-12.2v-5.8l80.3 9v5.4c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-4.9l28.4 3.2v23.7h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9V323l38.3 4.3c8.1 11.4 19 13.6 19 13.6l-.1 6.7-5.1.2-.1 12.1h4.1l.1-5h5.2l.1 5h4.1l-.1-12.1-5.1-.2-.1-6.7s10.9-2.1 19-13.6l38.3-4.3v23.2h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9v-23.7l28.4-3.2v4.9c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-5.4l80.3-9v5.8c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4-.2-6.3-4.7-11.4-10.7-12.3zm-200.8-87.6l19.6-42.5 19.6 42.5h-17.9l-1.7-40.3-1.7 40.3h-17.9z\"/></svg>",
2268
+ "viewBox": [
2269
+ "0",
2270
+ "0",
2271
+ "640",
2272
+ "512"
2273
+ ],
2274
+ "width": 640,
2275
+ "height": 512,
2276
+ "path": "M107.2 283.5l-19-41.8H36.1l-19 41.8H0l62.2-131.4 62.2 131.4h-17.2zm-45-98.1l-19.6 42.5h39.2l-19.6-42.5zm112.7 102.4l-62.2-131.4h17.1l45.1 96 45.1-96h17l-62.1 131.4zm80.6-4.3V156.4H271v127.1h-15.5zm209.1-115.6v115.6h-17.3V167.9h-41.2v-11.5h99.6v11.5h-41.1zM640 218.8c0 9.2-1.7 17.8-5.1 25.8-3.4 8-8.2 15.1-14.2 21.1-6 6-13.1 10.8-21.1 14.2-8 3.4-16.6 5.1-25.8 5.1s-17.8-1.7-25.8-5.1c-8-3.4-15.1-8.2-21.1-14.2-6-6-10.8-13-14.2-21.1-3.4-8-5.1-16.6-5.1-25.8s1.7-17.8 5.1-25.8c3.4-8 8.2-15.1 14.2-21.1 6-6 13-8.4 21.1-11.9 8-3.4 16.6-5.1 25.8-5.1s17.8 1.7 25.8 5.1c8 3.4 15.1 5.8 21.1 11.9 6 6 10.7 13.1 14.2 21.1 3.4 8 5.1 16.6 5.1 25.8zm-15.5 0c0-7.3-1.3-14-3.9-20.3-2.6-6.3-6.2-11.7-10.8-16.3-4.6-4.6-10-8.2-16.2-10.9-6.2-2.7-12.8-4-19.8-4s-13.6 1.3-19.8 4c-6.2 2.7-11.6 6.3-16.2 10.9-4.6 4.6-8.2 10-10.8 16.3-2.6 6.3-3.9 13.1-3.9 20.3 0 7.3 1.3 14 3.9 20.3 2.6 6.3 6.2 11.7 10.8 16.3 4.6 4.6 10 8.2 16.2 10.9 6.2 2.7 12.8 4 19.8 4s13.6-1.3 19.8-4c6.2-2.7 11.6-6.3 16.2-10.9 4.6-4.6 8.2-10 10.8-16.3 2.6-6.3 3.9-13.1 3.9-20.3zm-94.8 96.7v-6.3l88.9-10-242.9 13.4c.6-2.2 1.1-4.6 1.4-7.2.3-2 .5-4.2.6-6.5l64.8-8.1-64.9 1.9c0-.4-.1-.7-.1-1.1-2.8-17.2-25.5-23.7-25.5-23.7l-1.1-26.3h23.8l19 41.8h17.1L348.6 152l-62.2 131.4h17.1l19-41.8h23.6L345 268s-22.7 6.5-25.5 23.7c-.1.3-.1.7-.1 1.1l-64.9-1.9 64.8 8.1c.1 2.3.3 4.4.6 6.5.3 2.6.8 5 1.4 7.2L78.4 299.2l88.9 10v6.3c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4 0-6.2-4.6-11.3-10.5-12.2v-5.8l80.3 9v5.4c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-4.9l28.4 3.2v23.7h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9V323l38.3 4.3c8.1 11.4 19 13.6 19 13.6l-.1 6.7-5.1.2-.1 12.1h4.1l.1-5h5.2l.1 5h4.1l-.1-12.1-5.1-.2-.1-6.7s10.9-2.1 19-13.6l38.3-4.3v23.2h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9v-23.7l28.4-3.2v4.9c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-5.4l80.3-9v5.8c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4-.2-6.3-4.7-11.4-10.7-12.3zm-200.8-87.6l19.6-42.5 19.6 42.5h-17.9l-1.7-40.3-1.7 40.3h-17.9z"
2277
+ }
2278
+ }
2279
+ },
2280
+ "award": {
2281
+ "changes": [
2282
+ "5.1.0",
2283
+ "5.2.0"
2284
+ ],
2285
+ "ligatures": [],
2286
+ "search": {
2287
+ "terms": [
2288
+ "honor",
2289
+ "praise",
2290
+ "prize",
2291
+ "recognition",
2292
+ "ribbon"
2293
+ ]
2294
+ },
2295
+ "styles": [
2296
+ "solid"
2297
+ ],
2298
+ "unicode": "f559",
2299
+ "label": "Award",
2300
+ "svg": {
2301
+ "solid": {
2302
+ "last_modified": 1532362831513,
2303
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 384 512\"><path d=\"M97.12 362.63c-8.69-8.69-4.16-6.24-25.12-11.85-9.51-2.55-17.87-7.45-25.43-13.32L1.2 448.7c-4.39 10.77 3.81 22.47 15.43 22.03l52.69-2.01L105.56 507c8 8.44 22.04 5.81 26.43-4.96l52.05-127.62c-10.84 6.04-22.87 9.58-35.31 9.58-19.5 0-37.82-7.59-51.61-21.37zM382.8 448.7l-45.37-111.24c-7.56 5.88-15.92 10.77-25.43 13.32-21.07 5.64-16.45 3.18-25.12 11.85-13.79 13.78-32.12 21.37-51.62 21.37-12.44 0-24.47-3.55-35.31-9.58L252 502.04c4.39 10.77 18.44 13.4 26.43 4.96l36.25-38.28 52.69 2.01c11.62.44 19.82-11.27 15.43-22.03zM263 340c15.28-15.55 17.03-14.21 38.79-20.14 13.89-3.79 24.75-14.84 28.47-28.98 7.48-28.4 5.54-24.97 25.95-45.75 10.17-10.35 14.14-25.44 10.42-39.58-7.47-28.38-7.48-24.42 0-52.83 3.72-14.14-.25-29.23-10.42-39.58-20.41-20.78-18.47-17.36-25.95-45.75-3.72-14.14-14.58-25.19-28.47-28.98-27.88-7.61-24.52-5.62-44.95-26.41-10.17-10.35-25-14.4-38.89-10.61-27.87 7.6-23.98 7.61-51.9 0-13.89-3.79-28.72.25-38.89 10.61-20.41 20.78-17.05 18.8-44.94 26.41-13.89 3.79-24.75 14.84-28.47 28.98-7.47 28.39-5.54 24.97-25.95 45.75-10.17 10.35-14.15 25.44-10.42 39.58 7.47 28.36 7.48 24.4 0 52.82-3.72 14.14.25 29.23 10.42 39.59 20.41 20.78 18.47 17.35 25.95 45.75 3.72 14.14 14.58 25.19 28.47 28.98C104.6 325.96 106.27 325 121 340c13.23 13.47 33.84 15.88 49.74 5.82a39.676 39.676 0 0 1 42.53 0c15.89 10.06 36.5 7.65 49.73-5.82zM97.66 175.96c0-53.03 42.24-96.02 94.34-96.02s94.34 42.99 94.34 96.02-42.24 96.02-94.34 96.02-94.34-42.99-94.34-96.02z\"/></svg>",
2304
+ "viewBox": [
2305
+ "0",
2306
+ "0",
2307
+ "384",
2308
+ "512"
2309
+ ],
2310
+ "width": 384,
2311
+ "height": 512,
2312
+ "path": "M97.12 362.63c-8.69-8.69-4.16-6.24-25.12-11.85-9.51-2.55-17.87-7.45-25.43-13.32L1.2 448.7c-4.39 10.77 3.81 22.47 15.43 22.03l52.69-2.01L105.56 507c8 8.44 22.04 5.81 26.43-4.96l52.05-127.62c-10.84 6.04-22.87 9.58-35.31 9.58-19.5 0-37.82-7.59-51.61-21.37zM382.8 448.7l-45.37-111.24c-7.56 5.88-15.92 10.77-25.43 13.32-21.07 5.64-16.45 3.18-25.12 11.85-13.79 13.78-32.12 21.37-51.62 21.37-12.44 0-24.47-3.55-35.31-9.58L252 502.04c4.39 10.77 18.44 13.4 26.43 4.96l36.25-38.28 52.69 2.01c11.62.44 19.82-11.27 15.43-22.03zM263 340c15.28-15.55 17.03-14.21 38.79-20.14 13.89-3.79 24.75-14.84 28.47-28.98 7.48-28.4 5.54-24.97 25.95-45.75 10.17-10.35 14.14-25.44 10.42-39.58-7.47-28.38-7.48-24.42 0-52.83 3.72-14.14-.25-29.23-10.42-39.58-20.41-20.78-18.47-17.36-25.95-45.75-3.72-14.14-14.58-25.19-28.47-28.98-27.88-7.61-24.52-5.62-44.95-26.41-10.17-10.35-25-14.4-38.89-10.61-27.87 7.6-23.98 7.61-51.9 0-13.89-3.79-28.72.25-38.89 10.61-20.41 20.78-17.05 18.8-44.94 26.41-13.89 3.79-24.75 14.84-28.47 28.98-7.47 28.39-5.54 24.97-25.95 45.75-10.17 10.35-14.15 25.44-10.42 39.58 7.47 28.36 7.48 24.4 0 52.82-3.72 14.14.25 29.23 10.42 39.59 20.41 20.78 18.47 17.35 25.95 45.75 3.72 14.14 14.58 25.19 28.47 28.98C104.6 325.96 106.27 325 121 340c13.23 13.47 33.84 15.88 49.74 5.82a39.676 39.676 0 0 1 42.53 0c15.89 10.06 36.5 7.65 49.73-5.82zM97.66 175.96c0-53.03 42.24-96.02 94.34-96.02s94.34 42.99 94.34 96.02-42.24 96.02-94.34 96.02-94.34-42.99-94.34-96.02z"
2313
+ }
2314
+ }
2315
+ },
2316
+ "aws": {
2317
+ "changes": [
2318
+ "5.0.0",
2319
+ "5.1.0"
2320
+ ],
2321
+ "ligatures": [],
2322
+ "search": {
2323
+ "terms": []
2324
+ },
2325
+ "styles": [
2326
+ "brands"
2327
+ ],
2328
+ "unicode": "f375",
2329
+ "label": "Amazon Web Services (AWS)",
2330
+ "svg": {
2331
+ "brands": {
2332
+ "last_modified": 1529514897188,
2333
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M180.41 203.01c-.72 22.65 10.6 32.68 10.88 39.05a8.164 8.164 0 0 1-4.1 6.27l-12.8 8.96a10.66 10.66 0 0 1-5.63 1.92c-.43-.02-8.19 1.83-20.48-25.61a78.608 78.608 0 0 1-62.61 29.45c-16.28.89-60.4-9.24-58.13-56.21-1.59-38.28 34.06-62.06 70.93-60.05 7.1.02 21.6.37 46.99 6.27v-15.62c2.69-26.46-14.7-46.99-44.81-43.91-2.4.01-19.4-.5-45.84 10.11-7.36 3.38-8.3 2.82-10.75 2.82-7.41 0-4.36-21.48-2.94-24.2 5.21-6.4 35.86-18.35 65.94-18.18a76.857 76.857 0 0 1 55.69 17.28 70.285 70.285 0 0 1 17.67 52.36l-.01 69.29zM93.99 235.4c32.43-.47 46.16-19.97 49.29-30.47 2.46-10.05 2.05-16.41 2.05-27.4-9.67-2.32-23.59-4.85-39.56-4.87-15.15-1.14-42.82 5.63-41.74 32.26-1.24 16.79 11.12 31.4 29.96 30.48zm170.92 23.05c-7.86.72-11.52-4.86-12.68-10.37l-49.8-164.65c-.97-2.78-1.61-5.65-1.92-8.58a4.61 4.61 0 0 1 3.86-5.25c.24-.04-2.13 0 22.25 0 8.78-.88 11.64 6.03 12.55 10.37l35.72 140.83 33.16-140.83c.53-3.22 2.94-11.07 12.8-10.24h17.16c2.17-.18 11.11-.5 12.68 10.37l33.42 142.63L420.98 80.1c.48-2.18 2.72-11.37 12.68-10.37h19.72c.85-.13 6.15-.81 5.25 8.58-.43 1.85 3.41-10.66-52.75 169.9-1.15 5.51-4.82 11.09-12.68 10.37h-18.69c-10.94 1.15-12.51-9.66-12.68-10.75L328.67 110.7l-32.78 136.99c-.16 1.09-1.73 11.9-12.68 10.75h-18.3zm273.48 5.63c-5.88.01-33.92-.3-57.36-12.29a12.802 12.802 0 0 1-7.81-11.91v-10.75c0-8.45 6.2-6.9 8.83-5.89 10.04 4.06 16.48 7.14 28.81 9.6 36.65 7.53 52.77-2.3 56.72-4.48 13.15-7.81 14.19-25.68 5.25-34.95-10.48-8.79-15.48-9.12-53.13-21-4.64-1.29-43.7-13.61-43.79-52.36-.61-28.24 25.05-56.18 69.52-55.95 12.67-.01 46.43 4.13 55.57 15.62 1.35 2.09 2.02 4.55 1.92 7.04v10.11c0 4.44-1.62 6.66-4.87 6.66-7.71-.86-21.39-11.17-49.16-10.75-6.89-.36-39.89.91-38.41 24.97-.43 18.96 26.61 26.07 29.7 26.89 36.46 10.97 48.65 12.79 63.12 29.58 17.14 22.25 7.9 48.3 4.35 55.44-19.08 37.49-68.42 34.44-69.26 34.42zm40.2 104.86c-70.03 51.72-171.69 79.25-258.49 79.25A469.127 469.127 0 0 1 2.83 327.46c-6.53-5.89-.77-13.96 7.17-9.47a637.37 637.37 0 0 0 316.88 84.12 630.22 630.22 0 0 0 241.59-49.55c11.78-5 21.77 7.8 10.12 16.38zm29.19-33.29c-8.96-11.52-59.28-5.38-81.81-2.69-6.79.77-7.94-5.12-1.79-9.47 40.07-28.17 105.88-20.1 113.44-10.63 7.55 9.47-2.05 75.41-39.56 106.91-5.76 4.87-11.27 2.3-8.71-4.1 8.44-21.25 27.39-68.49 18.43-80.02z\"/></svg>",
2334
+ "viewBox": [
2335
+ "0",
2336
+ "0",
2337
+ "640",
2338
+ "512"
2339
+ ],
2340
+ "width": 640,
2341
+ "height": 512,
2342
+ "path": "M180.41 203.01c-.72 22.65 10.6 32.68 10.88 39.05a8.164 8.164 0 0 1-4.1 6.27l-12.8 8.96a10.66 10.66 0 0 1-5.63 1.92c-.43-.02-8.19 1.83-20.48-25.61a78.608 78.608 0 0 1-62.61 29.45c-16.28.89-60.4-9.24-58.13-56.21-1.59-38.28 34.06-62.06 70.93-60.05 7.1.02 21.6.37 46.99 6.27v-15.62c2.69-26.46-14.7-46.99-44.81-43.91-2.4.01-19.4-.5-45.84 10.11-7.36 3.38-8.3 2.82-10.75 2.82-7.41 0-4.36-21.48-2.94-24.2 5.21-6.4 35.86-18.35 65.94-18.18a76.857 76.857 0 0 1 55.69 17.28 70.285 70.285 0 0 1 17.67 52.36l-.01 69.29zM93.99 235.4c32.43-.47 46.16-19.97 49.29-30.47 2.46-10.05 2.05-16.41 2.05-27.4-9.67-2.32-23.59-4.85-39.56-4.87-15.15-1.14-42.82 5.63-41.74 32.26-1.24 16.79 11.12 31.4 29.96 30.48zm170.92 23.05c-7.86.72-11.52-4.86-12.68-10.37l-49.8-164.65c-.97-2.78-1.61-5.65-1.92-8.58a4.61 4.61 0 0 1 3.86-5.25c.24-.04-2.13 0 22.25 0 8.78-.88 11.64 6.03 12.55 10.37l35.72 140.83 33.16-140.83c.53-3.22 2.94-11.07 12.8-10.24h17.16c2.17-.18 11.11-.5 12.68 10.37l33.42 142.63L420.98 80.1c.48-2.18 2.72-11.37 12.68-10.37h19.72c.85-.13 6.15-.81 5.25 8.58-.43 1.85 3.41-10.66-52.75 169.9-1.15 5.51-4.82 11.09-12.68 10.37h-18.69c-10.94 1.15-12.51-9.66-12.68-10.75L328.67 110.7l-32.78 136.99c-.16 1.09-1.73 11.9-12.68 10.75h-18.3zm273.48 5.63c-5.88.01-33.92-.3-57.36-12.29a12.802 12.802 0 0 1-7.81-11.91v-10.75c0-8.45 6.2-6.9 8.83-5.89 10.04 4.06 16.48 7.14 28.81 9.6 36.65 7.53 52.77-2.3 56.72-4.48 13.15-7.81 14.19-25.68 5.25-34.95-10.48-8.79-15.48-9.12-53.13-21-4.64-1.29-43.7-13.61-43.79-52.36-.61-28.24 25.05-56.18 69.52-55.95 12.67-.01 46.43 4.13 55.57 15.62 1.35 2.09 2.02 4.55 1.92 7.04v10.11c0 4.44-1.62 6.66-4.87 6.66-7.71-.86-21.39-11.17-49.16-10.75-6.89-.36-39.89.91-38.41 24.97-.43 18.96 26.61 26.07 29.7 26.89 36.46 10.97 48.65 12.79 63.12 29.58 17.14 22.25 7.9 48.3 4.35 55.44-19.08 37.49-68.42 34.44-69.26 34.42zm40.2 104.86c-70.03 51.72-171.69 79.25-258.49 79.25A469.127 469.127 0 0 1 2.83 327.46c-6.53-5.89-.77-13.96 7.17-9.47a637.37 637.37 0 0 0 316.88 84.12 630.22 630.22 0 0 0 241.59-49.55c11.78-5 21.77 7.8 10.12 16.38zm29.19-33.29c-8.96-11.52-59.28-5.38-81.81-2.69-6.79.77-7.94-5.12-1.79-9.47 40.07-28.17 105.88-20.1 113.44-10.63 7.55 9.47-2.05 75.41-39.56 106.91-5.76 4.87-11.27 2.3-8.71-4.1 8.44-21.25 27.39-68.49 18.43-80.02z"
2343
+ }
2344
+ }
2345
+ },
2346
+ "backspace": {
2347
+ "changes": [
2348
+ "5.1.0"
2349
+ ],
2350
+ "ligatures": [],
2351
+ "search": {
2352
+ "terms": [
2353
+ "command",
2354
+ "delete",
2355
+ "keyboard",
2356
+ "undo"
2357
+ ]
2358
+ },
2359
+ "styles": [
2360
+ "solid"
2361
+ ],
2362
+ "unicode": "f55a",
2363
+ "label": "Backspace",
2364
+ "svg": {
2365
+ "solid": {
2366
+ "last_modified": 1529520111647,
2367
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M576 64H205.26A63.97 63.97 0 0 0 160 82.75L9.37 233.37c-12.5 12.5-12.5 32.76 0 45.25L160 429.25c12 12 28.28 18.75 45.25 18.75H576c35.35 0 64-28.65 64-64V128c0-35.35-28.65-64-64-64zm-84.69 254.06c6.25 6.25 6.25 16.38 0 22.63l-22.62 22.62c-6.25 6.25-16.38 6.25-22.63 0L384 301.25l-62.06 62.06c-6.25 6.25-16.38 6.25-22.63 0l-22.62-22.62c-6.25-6.25-6.25-16.38 0-22.63L338.75 256l-62.06-62.06c-6.25-6.25-6.25-16.38 0-22.63l22.62-22.62c6.25-6.25 16.38-6.25 22.63 0L384 210.75l62.06-62.06c6.25-6.25 16.38-6.25 22.63 0l22.62 22.62c6.25 6.25 6.25 16.38 0 22.63L429.25 256l62.06 62.06z\"/></svg>",
2368
+ "viewBox": [
2369
+ "0",
2370
+ "0",
2371
+ "640",
2372
+ "512"
2373
+ ],
2374
+ "width": 640,
2375
+ "height": 512,
2376
+ "path": "M576 64H205.26A63.97 63.97 0 0 0 160 82.75L9.37 233.37c-12.5 12.5-12.5 32.76 0 45.25L160 429.25c12 12 28.28 18.75 45.25 18.75H576c35.35 0 64-28.65 64-64V128c0-35.35-28.65-64-64-64zm-84.69 254.06c6.25 6.25 6.25 16.38 0 22.63l-22.62 22.62c-6.25 6.25-16.38 6.25-22.63 0L384 301.25l-62.06 62.06c-6.25 6.25-16.38 6.25-22.63 0l-22.62-22.62c-6.25-6.25-6.25-16.38 0-22.63L338.75 256l-62.06-62.06c-6.25-6.25-6.25-16.38 0-22.63l22.62-22.62c6.25-6.25 16.38-6.25 22.63 0L384 210.75l62.06-62.06c6.25-6.25 16.38-6.25 22.63 0l22.62 22.62c6.25 6.25 6.25 16.38 0 22.63L429.25 256l62.06 62.06z"
2377
+ }
2378
+ }
2379
+ },
2380
+ "backward": {
2381
+ "changes": [
2382
+ "1",
2383
+ "5.0.0"
2384
+ ],
2385
+ "ligatures": [],
2386
+ "search": {
2387
+ "terms": [
2388
+ "previous",
2389
+ "rewind"
2390
+ ]
2391
+ },
2392
+ "styles": [
2393
+ "solid"
2394
+ ],
2395
+ "unicode": "f04a",
2396
+ "label": "backward",
2397
+ "svg": {
2398
+ "solid": {
2399
+ "last_modified": 1500927880000,
2400
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M11.5 280.6l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2zm256 0l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2z\"/></svg>",
2401
+ "viewBox": [
2402
+ "0",
2403
+ "0",
2404
+ "512",
2405
+ "512"
2406
+ ],
2407
+ "width": 512,
2408
+ "height": 512,
2409
+ "path": "M11.5 280.6l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2zm256 0l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2z"
2410
+ }
2411
+ }
2412
+ },
2413
+ "balance-scale": {
2414
+ "changes": [
2415
+ "4.4",
2416
+ "5.0.0",
2417
+ "5.0.13"
2418
+ ],
2419
+ "ligatures": [],
2420
+ "search": {
2421
+ "terms": [
2422
+ "balanced",
2423
+ "justice",
2424
+ "legal",
2425
+ "measure",
2426
+ "weight"
2427
+ ]
2428
+ },
2429
+ "styles": [
2430
+ "solid"
2431
+ ],
2432
+ "unicode": "f24e",
2433
+ "label": "Balance Scale",
2434
+ "svg": {
2435
+ "solid": {
2436
+ "last_modified": 1525967154563,
2437
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M256 336h-.02c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0C-2.06 328.75.02 320.33.02 336H0c0 44.18 57.31 80 128 80s128-35.82 128-80zM128 176l72 144H56l72-144zm511.98 160c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0-87.12 174.26-85.04 165.84-85.04 181.51H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02zM440 320l72-144 72 144H440zm88 128H352V153.25c23.51-10.29 41.16-31.48 46.39-57.25H528c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H383.64C369.04 12.68 346.09 0 320 0s-49.04 12.68-63.64 32H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h129.61c5.23 25.76 22.87 46.96 46.39 57.25V448H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z\"/></svg>",
2438
+ "viewBox": [
2439
+ "0",
2440
+ "0",
2441
+ "640",
2442
+ "512"
2443
+ ],
2444
+ "width": 640,
2445
+ "height": 512,
2446
+ "path": "M256 336h-.02c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0C-2.06 328.75.02 320.33.02 336H0c0 44.18 57.31 80 128 80s128-35.82 128-80zM128 176l72 144H56l72-144zm511.98 160c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0-87.12 174.26-85.04 165.84-85.04 181.51H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02zM440 320l72-144 72 144H440zm88 128H352V153.25c23.51-10.29 41.16-31.48 46.39-57.25H528c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H383.64C369.04 12.68 346.09 0 320 0s-49.04 12.68-63.64 32H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h129.61c5.23 25.76 22.87 46.96 46.39 57.25V448H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"
2447
+ }
2448
+ }
2449
+ },
2450
+ "ban": {
2451
+ "changes": [
2452
+ "1",
2453
+ "5.0.0"
2454
+ ],
2455
+ "ligatures": [],
2456
+ "search": {
2457
+ "terms": [
2458
+ "abort",
2459
+ "ban",
2460
+ "block",
2461
+ "cancel",
2462
+ "delete",
2463
+ "hide",
2464
+ "prohibit",
2465
+ "remove",
2466
+ "stop",
2467
+ "trash"
2468
+ ]
2469
+ },
2470
+ "styles": [
2471
+ "solid"
2472
+ ],
2473
+ "unicode": "f05e",
2474
+ "label": "ban",
2475
+ "svg": {
2476
+ "solid": {
2477
+ "last_modified": 1500927880000,
2478
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M256 8C119.034 8 8 119.033 8 256s111.034 248 248 248 248-111.034 248-248S392.967 8 256 8zm130.108 117.892c65.448 65.448 70 165.481 20.677 235.637L150.47 105.216c70.204-49.356 170.226-44.735 235.638 20.676zM125.892 386.108c-65.448-65.448-70-165.481-20.677-235.637L361.53 406.784c-70.203 49.356-170.226 44.736-235.638-20.676z\"/></svg>",
2479
+ "viewBox": [
2480
+ "0",
2481
+ "0",
2482
+ "512",
2483
+ "512"
2484
+ ],
2485
+ "width": 512,
2486
+ "height": 512,
2487
+ "path": "M256 8C119.034 8 8 119.033 8 256s111.034 248 248 248 248-111.034 248-248S392.967 8 256 8zm130.108 117.892c65.448 65.448 70 165.481 20.677 235.637L150.47 105.216c70.204-49.356 170.226-44.735 235.638 20.676zM125.892 386.108c-65.448-65.448-70-165.481-20.677-235.637L361.53 406.784c-70.203 49.356-170.226 44.736-235.638-20.676z"
2488
+ }
2489
+ }
2490
+ },
2491
+ "band-aid": {
2492
+ "changes": [
2493
+ "5.0.7"
2494
+ ],
2495
+ "ligatures": [],
2496
+ "search": {
2497
+ "terms": [
2498
+ "bandage",
2499
+ "boo boo",
2500
+ "ouch"
2501
+ ]
2502
+ },
2503
+ "styles": [
2504
+ "solid"
2505
+ ],
2506
+ "unicode": "f462",
2507
+ "label": "Band-Aid",
2508
+ "svg": {
2509
+ "solid": {
2510
+ "last_modified": 1521653821441,
2511
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M0 160v192c0 35.3 28.7 64 64 64h96V96H64c-35.3 0-64 28.7-64 64zm576-64h-96v320h96c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64zM192 416h256V96H192v320zm176-232c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24z\"/></svg>",
2512
+ "viewBox": [
2513
+ "0",
2514
+ "0",
2515
+ "640",
2516
+ "512"
2517
+ ],
2518
+ "width": 640,
2519
+ "height": 512,
2520
+ "path": "M0 160v192c0 35.3 28.7 64 64 64h96V96H64c-35.3 0-64 28.7-64 64zm576-64h-96v320h96c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64zM192 416h256V96H192v320zm176-232c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24z"
2521
+ }
2522
+ }
2523
+ },
2524
+ "bandcamp": {
2525
+ "changes": [
2526
+ "4.7",
2527
+ "5.0.0"
2528
+ ],
2529
+ "ligatures": [],
2530
+ "search": {
2531
+ "terms": []
2532
+ },
2533
+ "styles": [
2534
+ "brands"
2535
+ ],
2536
+ "unicode": "f2d5",
2537
+ "label": "Bandcamp",
2538
+ "svg": {
2539
+ "brands": {
2540
+ "last_modified": 1500927880000,
2541
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 496 512\"><path d=\"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm48.2 326.1h-181L199.9 178h181l-84.7 156.1z\"/></svg>",
2542
+ "viewBox": [
2543
+ "0",
2544
+ "0",
2545
+ "496",
2546
+ "512"
2547
+ ],
2548
+ "width": 496,
2549
+ "height": 512,
2550
+ "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm48.2 326.1h-181L199.9 178h181l-84.7 156.1z"
2551
+ }
2552
+ }
2553
+ },
2554
+ "barcode": {
2555
+ "changes": [
2556
+ "1",
2557
+ "5.0.0"
2558
+ ],
2559
+ "ligatures": [],
2560
+ "search": {
2561
+ "terms": [
2562
+ "scan"
2563
+ ]
2564
+ },
2565
+ "styles": [
2566
+ "solid"
2567
+ ],
2568
+ "unicode": "f02a",
2569
+ "label": "barcode",
2570
+ "svg": {
2571
+ "solid": {
2572
+ "last_modified": 1500927880000,
2573
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M0 448V64h18v384H0zm26.857-.273V64H36v383.727h-9.143zm27.143 0V64h8.857v383.727H54zm44.857 0V64h8.857v383.727h-8.857zm36 0V64h17.714v383.727h-17.714zm44.857 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm35.715 0V64h18v383.727h-18zm44.857 0V64h18v383.727h-18zm35.999 0V64h18.001v383.727h-18.001zm36.001 0V64h18.001v383.727h-18.001zm26.857 0V64h18v383.727h-18zm45.143 0V64h26.857v383.727h-26.857zm35.714 0V64h9.143v383.727H476zm18 .273V64h18v384h-18z\"/></svg>",
2574
+ "viewBox": [
2575
+ "0",
2576
+ "0",
2577
+ "512",
2578
+ "512"
2579
+ ],
2580
+ "width": 512,
2581
+ "height": 512,
2582
+ "path": "M0 448V64h18v384H0zm26.857-.273V64H36v383.727h-9.143zm27.143 0V64h8.857v383.727H54zm44.857 0V64h8.857v383.727h-8.857zm36 0V64h17.714v383.727h-17.714zm44.857 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm35.715 0V64h18v383.727h-18zm44.857 0V64h18v383.727h-18zm35.999 0V64h18.001v383.727h-18.001zm36.001 0V64h18.001v383.727h-18.001zm26.857 0V64h18v383.727h-18zm45.143 0V64h26.857v383.727h-26.857zm35.714 0V64h9.143v383.727H476zm18 .273V64h18v384h-18z"
2583
+ }
2584
+ }
2585
+ },
2586
+ "bars": {
2587
+ "changes": [
2588
+ "2",
2589
+ "5.0.0"
2590
+ ],
2591
+ "ligatures": [],
2592
+ "search": {
2593
+ "terms": [
2594
+ "checklist",
2595
+ "drag",
2596
+ "hamburger",
2597
+ "list",
2598
+ "menu",
2599
+ "nav",
2600
+ "navigation",
2601
+ "ol",
2602
+ "reorder",
2603
+ "settings",
2604
+ "todo",
2605
+ "ul"
2606
+ ]
2607
+ },
2608
+ "styles": [
2609
+ "solid"
2610
+ ],
2611
+ "unicode": "f0c9",
2612
+ "label": "Bars",
2613
+ "svg": {
2614
+ "solid": {
2615
+ "last_modified": 1500927880000,
2616
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z\"/></svg>",
2617
+ "viewBox": [
2618
+ "0",
2619
+ "0",
2620
+ "448",
2621
+ "512"
2622
+ ],
2623
+ "width": 448,
2624
+ "height": 512,
2625
+ "path": "M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"
2626
+ }
2627
+ }
2628
+ },
2629
+ "baseball-ball": {
2630
+ "changes": [
2631
+ "5.0.5"
2632
+ ],
2633
+ "ligatures": [],
2634
+ "search": {
2635
+ "terms": []
2636
+ },
2637
+ "styles": [
2638
+ "solid"
2639
+ ],
2640
+ "unicode": "f433",
2641
+ "label": "Baseball Ball",
2642
+ "svg": {
2643
+ "solid": {
2644
+ "last_modified": 1518899527985,
2645
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 496 512\"><path d=\"M368.5 363.9l28.8-13.9c11.1 22.9 26 43.2 44.1 60.9 34-42.5 54.5-96.3 54.5-154.9 0-58.5-20.4-112.2-54.2-154.6-17.8 17.3-32.6 37.1-43.6 59.5l-28.7-14.1c12.8-26 30-49 50.8-69C375.6 34.7 315 8 248 8 181.1 8 120.5 34.6 75.9 77.7c20.7 19.9 37.9 42.9 50.7 68.8l-28.7 14.1c-11-22.3-25.7-42.1-43.5-59.4C20.4 143.7 0 197.4 0 256c0 58.6 20.4 112.3 54.4 154.7 18.2-17.7 33.2-38 44.3-61l28.8 13.9c-12.9 26.7-30.3 50.3-51.5 70.7 44.5 43.1 105.1 69.7 172 69.7 66.8 0 127.3-26.5 171.9-69.5-21.1-20.4-38.5-43.9-51.4-70.6zm-228.3-32l-30.5-9.8c14.9-46.4 12.7-93.8-.6-134l30.4-10c15 45.6 18 99.9.7 153.8zm216.3-153.4l30.4 10c-13.2 40.1-15.5 87.5-.6 134l-30.5 9.8c-17.3-54-14.3-108.3.7-153.8z\"/></svg>",
2646
+ "viewBox": [
2647
+ "0",
2648
+ "0",
2649
+ "496",
2650
+ "512"
2651
+ ],
2652
+ "width": 496,
2653
+ "height": 512,
2654
+ "path": "M368.5 363.9l28.8-13.9c11.1 22.9 26 43.2 44.1 60.9 34-42.5 54.5-96.3 54.5-154.9 0-58.5-20.4-112.2-54.2-154.6-17.8 17.3-32.6 37.1-43.6 59.5l-28.7-14.1c12.8-26 30-49 50.8-69C375.6 34.7 315 8 248 8 181.1 8 120.5 34.6 75.9 77.7c20.7 19.9 37.9 42.9 50.7 68.8l-28.7 14.1c-11-22.3-25.7-42.1-43.5-59.4C20.4 143.7 0 197.4 0 256c0 58.6 20.4 112.3 54.4 154.7 18.2-17.7 33.2-38 44.3-61l28.8 13.9c-12.9 26.7-30.3 50.3-51.5 70.7 44.5 43.1 105.1 69.7 172 69.7 66.8 0 127.3-26.5 171.9-69.5-21.1-20.4-38.5-43.9-51.4-70.6zm-228.3-32l-30.5-9.8c14.9-46.4 12.7-93.8-.6-134l30.4-10c15 45.6 18 99.9.7 153.8zm216.3-153.4l30.4 10c-13.2 40.1-15.5 87.5-.6 134l-30.5 9.8c-17.3-54-14.3-108.3.7-153.8z"
2655
+ }
2656
+ }
2657
+ },
2658
+ "basketball-ball": {
2659
+ "changes": [
2660
+ "5.0.5"
2661
+ ],
2662
+ "ligatures": [],
2663
+ "search": {
2664
+ "terms": []
2665
+ },
2666
+ "styles": [
2667
+ "solid"
2668
+ ],
2669
+ "unicode": "f434",
2670
+ "label": "Basketball Ball",
2671
+ "svg": {
2672
+ "solid": {
2673
+ "last_modified": 1518899527986,
2674
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 496 512\"><path d=\"M212.3 10.3c-43.8 6.3-86.2 24.1-122.2 53.8l77.4 77.4c27.8-35.8 43.3-81.2 44.8-131.2zM248 222L405.9 64.1c-42.4-35-93.6-53.5-145.5-56.1-1.2 63.9-21.5 122.3-58.7 167.7L248 222zM56.1 98.1c-29.7 36-47.5 78.4-53.8 122.2 50-1.5 95.5-17 131.2-44.8L56.1 98.1zm272.2 204.2c45.3-37.1 103.7-57.4 167.7-58.7-2.6-51.9-21.1-103.1-56.1-145.5L282 256l46.3 46.3zM248 290L90.1 447.9c42.4 34.9 93.6 53.5 145.5 56.1 1.3-64 21.6-122.4 58.7-167.7L248 290zm191.9 123.9c29.7-36 47.5-78.4 53.8-122.2-50.1 1.6-95.5 17.1-131.2 44.8l77.4 77.4zM167.7 209.7C122.3 246.9 63.9 267.3 0 268.4c2.6 51.9 21.1 103.1 56.1 145.5L214 256l-46.3-46.3zm116 292c43.8-6.3 86.2-24.1 122.2-53.8l-77.4-77.4c-27.7 35.7-43.2 81.2-44.8 131.2z\"/></svg>",
2675
+ "viewBox": [
2676
+ "0",
2677
+ "0",
2678
+ "496",
2679
+ "512"
2680
+ ],
2681
+ "width": 496,
2682
+ "height": 512,
2683
+ "path": "M212.3 10.3c-43.8 6.3-86.2 24.1-122.2 53.8l77.4 77.4c27.8-35.8 43.3-81.2 44.8-131.2zM248 222L405.9 64.1c-42.4-35-93.6-53.5-145.5-56.1-1.2 63.9-21.5 122.3-58.7 167.7L248 222zM56.1 98.1c-29.7 36-47.5 78.4-53.8 122.2 50-1.5 95.5-17 131.2-44.8L56.1 98.1zm272.2 204.2c45.3-37.1 103.7-57.4 167.7-58.7-2.6-51.9-21.1-103.1-56.1-145.5L282 256l46.3 46.3zM248 290L90.1 447.9c42.4 34.9 93.6 53.5 145.5 56.1 1.3-64 21.6-122.4 58.7-167.7L248 290zm191.9 123.9c29.7-36 47.5-78.4 53.8-122.2-50.1 1.6-95.5 17.1-131.2 44.8l77.4 77.4zM167.7 209.7C122.3 246.9 63.9 267.3 0 268.4c2.6 51.9 21.1 103.1 56.1 145.5L214 256l-46.3-46.3zm116 292c43.8-6.3 86.2-24.1 122.2-53.8l-77.4-77.4c-27.7 35.7-43.2 81.2-44.8 131.2z"
2684
+ }
2685
+ }
2686
+ },
2687
+ "bath": {
2688
+ "changes": [
2689
+ "4.7",
2690
+ "5.0.0"
2691
+ ],
2692
+ "ligatures": [],
2693
+ "search": {
2694
+ "terms": []
2695
+ },
2696
+ "styles": [
2697
+ "solid"
2698
+ ],
2699
+ "unicode": "f2cd",
2700
+ "label": "Bath",
2701
+ "svg": {
2702
+ "solid": {
2703
+ "last_modified": 1500927880000,
2704
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M488 256H80V112c0-17.645 14.355-32 32-32 11.351 0 21.332 5.945 27.015 14.88-16.492 25.207-14.687 59.576 6.838 83.035-4.176 4.713-4.021 11.916.491 16.428l11.314 11.314c4.686 4.686 12.284 4.686 16.971 0l95.03-95.029c4.686-4.686 4.686-12.284 0-16.971l-11.314-11.314c-4.512-4.512-11.715-4.666-16.428-.491-17.949-16.469-42.294-21.429-64.178-15.365C163.281 45.667 139.212 32 112 32c-44.112 0-80 35.888-80 80v144h-8c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h8v32c0 28.43 12.362 53.969 32 71.547V456c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-8h256v8c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-32.453c19.638-17.578 32-43.117 32-71.547v-32h8c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z\"/></svg>",
2705
+ "viewBox": [
2706
+ "0",
2707
+ "0",
2708
+ "512",
2709
+ "512"
2710
+ ],
2711
+ "width": 512,
2712
+ "height": 512,
2713
+ "path": "M488 256H80V112c0-17.645 14.355-32 32-32 11.351 0 21.332 5.945 27.015 14.88-16.492 25.207-14.687 59.576 6.838 83.035-4.176 4.713-4.021 11.916.491 16.428l11.314 11.314c4.686 4.686 12.284 4.686 16.971 0l95.03-95.029c4.686-4.686 4.686-12.284 0-16.971l-11.314-11.314c-4.512-4.512-11.715-4.666-16.428-.491-17.949-16.469-42.294-21.429-64.178-15.365C163.281 45.667 139.212 32 112 32c-44.112 0-80 35.888-80 80v144h-8c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h8v32c0 28.43 12.362 53.969 32 71.547V456c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-8h256v8c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-32.453c19.638-17.578 32-43.117 32-71.547v-32h8c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z"
2714
+ }
2715
+ }
2716
+ },
2717
+ "battery-empty": {
2718
+ "changes": [
2719
+ "4.4",
2720
+ "5.0.0"
2721
+ ],
2722
+ "ligatures": [],
2723
+ "search": {
2724
+ "terms": [
2725
+ "power",
2726
+ "status"
2727
+ ]
2728
+ },
2729
+ "styles": [
2730
+ "solid"
2731
+ ],
2732
+ "unicode": "f244",
2733
+ "label": "Battery Empty",
2734
+ "svg": {
2735
+ "solid": {
2736
+ "last_modified": 1500927880000,
2737
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48z\"/></svg>",
2738
+ "viewBox": [
2739
+ "0",
2740
+ "0",
2741
+ "640",
2742
+ "512"
2743
+ ],
2744
+ "width": 640,
2745
+ "height": 512,
2746
+ "path": "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48z"
2747
+ }
2748
+ }
2749
+ },
2750
+ "battery-full": {
2751
+ "changes": [
2752
+ "4.4",
2753
+ "5.0.0"
2754
+ ],
2755
+ "ligatures": [],
2756
+ "search": {
2757
+ "terms": [
2758
+ "power",
2759
+ "status"
2760
+ ]
2761
+ },
2762
+ "styles": [
2763
+ "solid"
2764
+ ],
2765
+ "unicode": "f240",
2766
+ "label": "Battery Full",
2767
+ "svg": {
2768
+ "solid": {
2769
+ "last_modified": 1500927880000,
2770
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-48 96H96v128h416V192z\"/></svg>",
2771
+ "viewBox": [
2772
+ "0",
2773
+ "0",
2774
+ "640",
2775
+ "512"
2776
+ ],
2777
+ "width": 640,
2778
+ "height": 512,
2779
+ "path": "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-48 96H96v128h416V192z"
2780
+ }
2781
+ }
2782
+ },
2783
+ "battery-half": {
2784
+ "changes": [
2785
+ "4.4",
2786
+ "5.0.0"
2787
+ ],
2788
+ "ligatures": [],
2789
+ "search": {
2790
+ "terms": [
2791
+ "power",
2792
+ "status"
2793
+ ]
2794
+ },
2795
+ "styles": [
2796
+ "solid"
2797
+ ],
2798
+ "unicode": "f242",
2799
+ "label": "Battery 1/2 Full",
2800
+ "svg": {
2801
+ "solid": {
2802
+ "last_modified": 1500927880000,
2803
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-240 96H96v128h224V192z\"/></svg>",
2804
+ "viewBox": [
2805
+ "0",
2806
+ "0",
2807
+ "640",
2808
+ "512"
2809
+ ],
2810
+ "width": 640,
2811
+ "height": 512,
2812
+ "path": "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-240 96H96v128h224V192z"
2813
+ }
2814
+ }
2815
+ },
2816
+ "battery-quarter": {
2817
+ "changes": [
2818
+ "4.4",
2819
+ "5.0.0"
2820
+ ],
2821
+ "ligatures": [],
2822
+ "search": {
2823
+ "terms": [
2824
+ "power",
2825
+ "status"
2826
+ ]
2827
+ },
2828
+ "styles": [
2829
+ "solid"
2830
+ ],
2831
+ "unicode": "f243",
2832
+ "label": "Battery 1/4 Full",
2833
+ "svg": {
2834
+ "solid": {
2835
+ "last_modified": 1500927880000,
2836
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-336 96H96v128h128V192z\"/></svg>",
2837
+ "viewBox": [
2838
+ "0",
2839
+ "0",
2840
+ "640",
2841
+ "512"
2842
+ ],
2843
+ "width": 640,
2844
+ "height": 512,
2845
+ "path": "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-336 96H96v128h128V192z"
2846
+ }
2847
+ }
2848
+ },
2849
+ "battery-three-quarters": {
2850
+ "changes": [
2851
+ "4.4",
2852
+ "5.0.0"
2853
+ ],
2854
+ "ligatures": [],
2855
+ "search": {
2856
+ "terms": [
2857
+ "power",
2858
+ "status"
2859
+ ]
2860
+ },
2861
+ "styles": [
2862
+ "solid"
2863
+ ],
2864
+ "unicode": "f241",
2865
+ "label": "Battery 3/4 Full",
2866
+ "svg": {
2867
+ "solid": {
2868
+ "last_modified": 1500927880000,
2869
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-144 96H96v128h320V192z\"/></svg>",
2870
+ "viewBox": [
2871
+ "0",
2872
+ "0",
2873
+ "640",
2874
+ "512"
2875
+ ],
2876
+ "width": 640,
2877
+ "height": 512,
2878
+ "path": "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-144 96H96v128h320V192z"
2879
+ }
2880
+ }
2881
+ },
2882
+ "bed": {
2883
+ "changes": [
2884
+ "4.3",
2885
+ "5.0.0",
2886
+ "5.1.0"
2887
+ ],
2888
+ "ligatures": [],
2889
+ "search": {
2890
+ "terms": [
2891
+ "lodging",
2892
+ "sleep",
2893
+ "travel"
2894
+ ]
2895
+ },
2896
+ "styles": [
2897
+ "solid"
2898
+ ],
2899
+ "unicode": "f236",
2900
+ "label": "Bed",
2901
+ "svg": {
2902
+ "solid": {
2903
+ "last_modified": 1529520111647,
2904
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M176 256c44.11 0 80-35.89 80-80s-35.89-80-80-80-80 35.89-80 80 35.89 80 80 80zm352-128H304c-8.84 0-16 7.16-16 16v144H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v352c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48h512v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V240c0-61.86-50.14-112-112-112z\"/></svg>",
2905
+ "viewBox": [
2906
+ "0",
2907
+ "0",
2908
+ "640",
2909
+ "512"
2910
+ ],
2911
+ "width": 640,
2912
+ "height": 512,
2913
+ "path": "M176 256c44.11 0 80-35.89 80-80s-35.89-80-80-80-80 35.89-80 80 35.89 80 80 80zm352-128H304c-8.84 0-16 7.16-16 16v144H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v352c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48h512v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V240c0-61.86-50.14-112-112-112z"
2914
+ }
2915
+ }
2916
+ },
2917
+ "beer": {
2918
+ "changes": [
2919
+ "3",
2920
+ "5.0.0"
2921
+ ],
2922
+ "ligatures": [],
2923
+ "search": {
2924
+ "terms": [
2925
+ "alcohol",
2926
+ "bar",
2927
+ "drink",
2928
+ "liquor",
2929
+ "mug",
2930
+ "stein"
2931
+ ]
2932
+ },
2933
+ "styles": [
2934
+ "solid"
2935
+ ],
2936
+ "unicode": "f0fc",
2937
+ "label": "beer",
2938
+ "svg": {
2939
+ "solid": {
2940
+ "last_modified": 1500927880000,
2941
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M368 96h-48V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24v-42.11l80.606-35.977C429.396 365.063 448 336.388 448 304.86V176c0-44.112-35.888-80-80-80zm16 208.86a16.018 16.018 0 0 1-9.479 14.611L320 343.805V160h48c8.822 0 16 7.178 16 16v128.86zM208 384c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16zm-96 0c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16z\"/></svg>",
2942
+ "viewBox": [
2943
+ "0",
2944
+ "0",
2945
+ "448",
2946
+ "512"
2947
+ ],
2948
+ "width": 448,
2949
+ "height": 512,
2950
+ "path": "M368 96h-48V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24v-42.11l80.606-35.977C429.396 365.063 448 336.388 448 304.86V176c0-44.112-35.888-80-80-80zm16 208.86a16.018 16.018 0 0 1-9.479 14.611L320 343.805V160h48c8.822 0 16 7.178 16 16v128.86zM208 384c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16zm-96 0c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16z"
2951
+ }
2952
+ }
2953
+ },
2954
+ "behance": {
2955
+ "changes": [
2956
+ "4.1",
2957
+ "5.0.0"
2958
+ ],
2959
+ "ligatures": [],
2960
+ "search": {
2961
+ "terms": []
2962
+ },
2963
+ "styles": [
2964
+ "brands"
2965
+ ],
2966
+ "unicode": "f1b4",
2967
+ "label": "Behance",
2968
+ "svg": {
2969
+ "brands": {
2970
+ "last_modified": 1500927880000,
2971
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M232 237.2c31.8-15.2 48.4-38.2 48.4-74 0-70.6-52.6-87.8-113.3-87.8H0v354.4h171.8c64.4 0 124.9-30.9 124.9-102.9 0-44.5-21.1-77.4-64.7-89.7zM77.9 135.9H151c28.1 0 53.4 7.9 53.4 40.5 0 30.1-19.7 42.2-47.5 42.2h-79v-82.7zm83.3 233.7H77.9V272h84.9c34.3 0 56 14.3 56 50.6 0 35.8-25.9 47-57.6 47zm358.5-240.7H376V94h143.7v34.9zM576 305.2c0-75.9-44.4-139.2-124.9-139.2-78.2 0-131.3 58.8-131.3 135.8 0 79.9 50.3 134.7 131.3 134.7 61.3 0 101-27.6 120.1-86.3H509c-6.7 21.9-34.3 33.5-55.7 33.5-41.3 0-63-24.2-63-65.3h185.1c.3-4.2.6-8.7.6-13.2zM390.4 274c2.3-33.7 24.7-54.8 58.5-54.8 35.4 0 53.2 20.8 56.2 54.8H390.4z\"/></svg>",
2972
+ "viewBox": [
2973
+ "0",
2974
+ "0",
2975
+ "576",
2976
+ "512"
2977
+ ],
2978
+ "width": 576,
2979
+ "height": 512,
2980
+ "path": "M232 237.2c31.8-15.2 48.4-38.2 48.4-74 0-70.6-52.6-87.8-113.3-87.8H0v354.4h171.8c64.4 0 124.9-30.9 124.9-102.9 0-44.5-21.1-77.4-64.7-89.7zM77.9 135.9H151c28.1 0 53.4 7.9 53.4 40.5 0 30.1-19.7 42.2-47.5 42.2h-79v-82.7zm83.3 233.7H77.9V272h84.9c34.3 0 56 14.3 56 50.6 0 35.8-25.9 47-57.6 47zm358.5-240.7H376V94h143.7v34.9zM576 305.2c0-75.9-44.4-139.2-124.9-139.2-78.2 0-131.3 58.8-131.3 135.8 0 79.9 50.3 134.7 131.3 134.7 61.3 0 101-27.6 120.1-86.3H509c-6.7 21.9-34.3 33.5-55.7 33.5-41.3 0-63-24.2-63-65.3h185.1c.3-4.2.6-8.7.6-13.2zM390.4 274c2.3-33.7 24.7-54.8 58.5-54.8 35.4 0 53.2 20.8 56.2 54.8H390.4z"
2981
+ }
2982
+ }
2983
+ },
2984
+ "behance-square": {
2985
+ "changes": [
2986
+ "4.1",
2987
+ "5.0.0",
2988
+ "5.0.3"
2989
+ ],
2990
+ "ligatures": [],
2991
+ "search": {
2992
+ "terms": []
2993
+ },
2994
+ "styles": [
2995
+ "brands"
2996
+ ],
2997
+ "unicode": "f1b5",
2998
+ "label": "Behance Square",
2999
+ "svg": {
3000
+ "brands": {
3001
+ "last_modified": 1515426581996,
3002
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M186.5 293c0 19.3-14 25.4-31.2 25.4h-45.1v-52.9h46c18.6.1 30.3 7.8 30.3 27.5zm-7.7-82.3c0-17.7-13.7-21.9-28.9-21.9h-39.6v44.8H153c15.1 0 25.8-6.6 25.8-22.9zm132.3 23.2c-18.3 0-30.5 11.4-31.7 29.7h62.2c-1.7-18.5-11.3-29.7-30.5-29.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM271.7 185h77.8v-18.9h-77.8V185zm-43 110.3c0-24.1-11.4-44.9-35-51.6 17.2-8.2 26.2-17.7 26.2-37 0-38.2-28.5-47.5-61.4-47.5H68v192h93.1c34.9-.2 67.6-16.9 67.6-55.9zM380 280.5c0-41.1-24.1-75.4-67.6-75.4-42.4 0-71.1 31.8-71.1 73.6 0 43.3 27.3 73 71.1 73 33.2 0 54.7-14.9 65.1-46.8h-33.7c-3.7 11.9-18.6 18.1-30.2 18.1-22.4 0-34.1-13.1-34.1-35.3h100.2c.1-2.3.3-4.8.3-7.2z\"/></svg>",
3003
+ "viewBox": [
3004
+ "0",
3005
+ "0",
3006
+ "448",
3007
+ "512"
3008
+ ],
3009
+ "width": 448,
3010
+ "height": 512,
3011
+ "path": "M186.5 293c0 19.3-14 25.4-31.2 25.4h-45.1v-52.9h46c18.6.1 30.3 7.8 30.3 27.5zm-7.7-82.3c0-17.7-13.7-21.9-28.9-21.9h-39.6v44.8H153c15.1 0 25.8-6.6 25.8-22.9zm132.3 23.2c-18.3 0-30.5 11.4-31.7 29.7h62.2c-1.7-18.5-11.3-29.7-30.5-29.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM271.7 185h77.8v-18.9h-77.8V185zm-43 110.3c0-24.1-11.4-44.9-35-51.6 17.2-8.2 26.2-17.7 26.2-37 0-38.2-28.5-47.5-61.4-47.5H68v192h93.1c34.9-.2 67.6-16.9 67.6-55.9zM380 280.5c0-41.1-24.1-75.4-67.6-75.4-42.4 0-71.1 31.8-71.1 73.6 0 43.3 27.3 73 71.1 73 33.2 0 54.7-14.9 65.1-46.8h-33.7c-3.7 11.9-18.6 18.1-30.2 18.1-22.4 0-34.1-13.1-34.1-35.3h100.2c.1-2.3.3-4.8.3-7.2z"
3012
+ }
3013
+ }
3014
+ },
3015
+ "bell": {
3016
+ "changes": [
3017
+ "2",
3018
+ "5.0.0",
3019
+ "5.2.0"
3020
+ ],
3021
+ "ligatures": [],
3022
+ "search": {
3023
+ "terms": [
3024
+ "alert",
3025
+ "notification",
3026
+ "reminder"
3027
+ ]
3028
+ },
3029
+ "styles": [
3030
+ "solid",
3031
+ "regular"
3032
+ ],
3033
+ "unicode": "f0f3",
3034
+ "label": "bell",
3035
+ "svg": {
3036
+ "solid": {
3037
+ "last_modified": 1532362831515,
3038
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M224 512c35.32 0 63.97-28.65 63.97-64H160.03c0 35.35 28.65 64 63.97 64zm215.39-149.71c-19.32-20.76-55.47-51.99-55.47-154.29 0-77.7-54.48-139.9-127.94-155.16V32c0-17.67-14.32-32-31.98-32s-31.98 14.33-31.98 32v20.84C118.56 68.1 64.08 130.3 64.08 208c0 102.3-36.15 133.53-55.47 154.29-6 6.45-8.66 14.16-8.61 21.71.11 16.4 12.98 32 32.1 32h383.8c19.12 0 32-15.6 32.1-32 .05-7.55-2.61-15.27-8.61-21.71z\"/></svg>",
3039
+ "viewBox": [
3040
+ "0",
3041
+ "0",
3042
+ "448",
3043
+ "512"
3044
+ ],
3045
+ "width": 448,
3046
+ "height": 512,
3047
+ "path": "M224 512c35.32 0 63.97-28.65 63.97-64H160.03c0 35.35 28.65 64 63.97 64zm215.39-149.71c-19.32-20.76-55.47-51.99-55.47-154.29 0-77.7-54.48-139.9-127.94-155.16V32c0-17.67-14.32-32-31.98-32s-31.98 14.33-31.98 32v20.84C118.56 68.1 64.08 130.3 64.08 208c0 102.3-36.15 133.53-55.47 154.29-6 6.45-8.66 14.16-8.61 21.71.11 16.4 12.98 32 32.1 32h383.8c19.12 0 32-15.6 32.1-32 .05-7.55-2.61-15.27-8.61-21.71z"
3048
+ },
3049
+ "regular": {
3050
+ "last_modified": 1532362831475,
3051
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M439.39 362.29c-19.32-20.76-55.47-51.99-55.47-154.29 0-77.7-54.48-139.9-127.94-155.16V32c0-17.67-14.32-32-31.98-32s-31.98 14.33-31.98 32v20.84C118.56 68.1 64.08 130.3 64.08 208c0 102.3-36.15 133.53-55.47 154.29-6 6.45-8.66 14.16-8.61 21.71.11 16.4 12.98 32 32.1 32h383.8c19.12 0 32-15.6 32.1-32 .05-7.55-2.61-15.27-8.61-21.71zM67.53 368c21.22-27.97 44.42-74.33 44.53-159.42 0-.2-.06-.38-.06-.58 0-61.86 50.14-112 112-112s112 50.14 112 112c0 .2-.06.38-.06.58.11 85.1 23.31 131.46 44.53 159.42H67.53zM224 512c35.32 0 63.97-28.65 63.97-64H160.03c0 35.35 28.65 64 63.97 64z\"/></svg>",
3052
+ "viewBox": [
3053
+ "0",
3054
+ "0",
3055
+ "448",
3056
+ "512"
3057
+ ],
3058
+ "width": 448,
3059
+ "height": 512,
3060
+ "path": "M439.39 362.29c-19.32-20.76-55.47-51.99-55.47-154.29 0-77.7-54.48-139.9-127.94-155.16V32c0-17.67-14.32-32-31.98-32s-31.98 14.33-31.98 32v20.84C118.56 68.1 64.08 130.3 64.08 208c0 102.3-36.15 133.53-55.47 154.29-6 6.45-8.66 14.16-8.61 21.71.11 16.4 12.98 32 32.1 32h383.8c19.12 0 32-15.6 32.1-32 .05-7.55-2.61-15.27-8.61-21.71zM67.53 368c21.22-27.97 44.42-74.33 44.53-159.42 0-.2-.06-.38-.06-.58 0-61.86 50.14-112 112-112s112 50.14 112 112c0 .2-.06.38-.06.58.11 85.1 23.31 131.46 44.53 159.42H67.53zM224 512c35.32 0 63.97-28.65 63.97-64H160.03c0 35.35 28.65 64 63.97 64z"
3061
+ }
3062
+ }
3063
+ },
3064
+ "bell-slash": {
3065
+ "changes": [
3066
+ "4.2",
3067
+ "5.0.0",
3068
+ "5.2.0"
3069
+ ],
3070
+ "ligatures": [],
3071
+ "search": {
3072
+ "terms": []
3073
+ },
3074
+ "styles": [
3075
+ "solid",
3076
+ "regular"
3077
+ ],
3078
+ "unicode": "f1f6",
3079
+ "label": "Bell Slash",
3080
+ "svg": {
3081
+ "solid": {
3082
+ "last_modified": 1532362831515,
3083
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M633.82 458.1l-90.62-70.05c.19-1.38.8-2.66.8-4.06.05-7.55-2.61-15.27-8.61-21.71-19.32-20.76-55.47-51.99-55.47-154.29 0-77.7-54.48-139.9-127.94-155.16V32c0-17.67-14.32-32-31.98-32s-31.98 14.33-31.98 32v20.84c-40.33 8.38-74.66 31.07-97.59 62.57L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.35 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.42-6.97 4.17-17.02-2.81-22.45zM157.23 251.54c-8.61 67.96-36.41 93.33-52.62 110.75-6 6.45-8.66 14.16-8.61 21.71.11 16.4 12.98 32 32.1 32h241.92L157.23 251.54zM320 512c35.32 0 63.97-28.65 63.97-64H256.03c0 35.35 28.65 64 63.97 64z\"/></svg>",
3084
+ "viewBox": [
3085
+ "0",
3086
+ "0",
3087
+ "640",
3088
+ "512"
3089
+ ],
3090
+ "width": 640,
3091
+ "height": 512,
3092
+ "path": "M633.82 458.1l-90.62-70.05c.19-1.38.8-2.66.8-4.06.05-7.55-2.61-15.27-8.61-21.71-19.32-20.76-55.47-51.99-55.47-154.29 0-77.7-54.48-139.9-127.94-155.16V32c0-17.67-14.32-32-31.98-32s-31.98 14.33-31.98 32v20.84c-40.33 8.38-74.66 31.07-97.59 62.57L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.35 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.42-6.97 4.17-17.02-2.81-22.45zM157.23 251.54c-8.61 67.96-36.41 93.33-52.62 110.75-6 6.45-8.66 14.16-8.61 21.71.11 16.4 12.98 32 32.1 32h241.92L157.23 251.54zM320 512c35.32 0 63.97-28.65 63.97-64H256.03c0 35.35 28.65 64 63.97 64z"
3093
+ },
3094
+ "regular": {
3095
+ "last_modified": 1532362831475,
3096
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M633.99 471.02L36 3.51C29.1-2.01 19.03-.9 13.51 6l-10 12.49C-2.02 25.39-.9 35.46 6 40.98l598 467.51c6.9 5.52 16.96 4.4 22.49-2.49l10-12.49c5.52-6.9 4.41-16.97-2.5-22.49zM163.53 368c16.71-22.03 34.48-55.8 41.4-110.58l-45.47-35.55c-3.27 90.73-36.47 120.68-54.84 140.42-6 6.45-8.66 14.16-8.61 21.71.11 16.4 12.98 32 32.1 32h279.66l-61.4-48H163.53zM320 96c61.86 0 112 50.14 112 112 0 .2-.06.38-.06.58.02 16.84 1.16 31.77 2.79 45.73l59.53 46.54c-8.31-22.13-14.34-51.49-14.34-92.85 0-77.7-54.48-139.9-127.94-155.16V32c0-17.67-14.32-32-31.98-32s-31.98 14.33-31.98 32v20.84c-26.02 5.41-49.45 16.94-69.13 32.72l38.17 29.84C275 103.18 296.65 96 320 96zm0 416c35.32 0 63.97-28.65 63.97-64H256.03c0 35.35 28.65 64 63.97 64z\"/></svg>",
3097
+ "viewBox": [
3098
+ "0",
3099
+ "0",
3100
+ "640",
3101
+ "512"
3102
+ ],
3103
+ "width": 640,
3104
+ "height": 512,
3105
+ "path": "M633.99 471.02L36 3.51C29.1-2.01 19.03-.9 13.51 6l-10 12.49C-2.02 25.39-.9 35.46 6 40.98l598 467.51c6.9 5.52 16.96 4.4 22.49-2.49l10-12.49c5.52-6.9 4.41-16.97-2.5-22.49zM163.53 368c16.71-22.03 34.48-55.8 41.4-110.58l-45.47-35.55c-3.27 90.73-36.47 120.68-54.84 140.42-6 6.45-8.66 14.16-8.61 21.71.11 16.4 12.98 32 32.1 32h279.66l-61.4-48H163.53zM320 96c61.86 0 112 50.14 112 112 0 .2-.06.38-.06.58.02 16.84 1.16 31.77 2.79 45.73l59.53 46.54c-8.31-22.13-14.34-51.49-14.34-92.85 0-77.7-54.48-139.9-127.94-155.16V32c0-17.67-14.32-32-31.98-32s-31.98 14.33-31.98 32v20.84c-26.02 5.41-49.45 16.94-69.13 32.72l38.17 29.84C275 103.18 296.65 96 320 96zm0 416c35.32 0 63.97-28.65 63.97-64H256.03c0 35.35 28.65 64 63.97 64z"
3106
+ }
3107
+ }
3108
+ },
3109
+ "bezier-curve": {
3110
+ "changes": [
3111
+ "5.1.0"
3112
+ ],
3113
+ "ligatures": [],
3114
+ "search": {
3115
+ "terms": [
3116
+ "curves",
3117
+ "illustrator",
3118
+ "lines",
3119
+ "path",
3120
+ "vector"
3121
+ ]
3122
+ },
3123
+ "styles": [
3124
+ "solid"
3125
+ ],
3126
+ "unicode": "f55b",
3127
+ "label": "Bezier Curve",
3128
+ "svg": {
3129
+ "solid": {
3130
+ "last_modified": 1529520111648,
3131
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M368 32h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM208 88h-84.75C113.75 64.56 90.84 48 64 48 28.66 48 0 76.65 0 112s28.66 64 64 64c26.84 0 49.75-16.56 59.25-40h79.73c-55.37 32.52-95.86 87.32-109.54 152h49.4c11.3-41.61 36.77-77.21 71.04-101.56-3.7-8.08-5.88-16.99-5.88-26.44V88zm-48 232H64c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zM576 48c-26.84 0-49.75 16.56-59.25 40H432v72c0 9.45-2.19 18.36-5.88 26.44 34.27 24.35 59.74 59.95 71.04 101.56h49.4c-13.68-64.68-54.17-119.48-109.54-152h79.73c9.5 23.44 32.41 40 59.25 40 35.34 0 64-28.65 64-64s-28.66-64-64-64zm0 272h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z\"/></svg>",
3132
+ "viewBox": [
3133
+ "0",
3134
+ "0",
3135
+ "640",
3136
+ "512"
3137
+ ],
3138
+ "width": 640,
3139
+ "height": 512,
3140
+ "path": "M368 32h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM208 88h-84.75C113.75 64.56 90.84 48 64 48 28.66 48 0 76.65 0 112s28.66 64 64 64c26.84 0 49.75-16.56 59.25-40h79.73c-55.37 32.52-95.86 87.32-109.54 152h49.4c11.3-41.61 36.77-77.21 71.04-101.56-3.7-8.08-5.88-16.99-5.88-26.44V88zm-48 232H64c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zM576 48c-26.84 0-49.75 16.56-59.25 40H432v72c0 9.45-2.19 18.36-5.88 26.44 34.27 24.35 59.74 59.95 71.04 101.56h49.4c-13.68-64.68-54.17-119.48-109.54-152h79.73c9.5 23.44 32.41 40 59.25 40 35.34 0 64-28.65 64-64s-28.66-64-64-64zm0 272h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z"
3141
+ }
3142
+ }
3143
+ },
3144
+ "bicycle": {
3145
+ "changes": [
3146
+ "4.2",
3147
+ "5.0.0"
3148
+ ],
3149
+ "ligatures": [],
3150
+ "search": {
3151
+ "terms": [
3152
+ "bike",
3153
+ "gears",
3154
+ "transportation",
3155
+ "vehicle"
3156
+ ]
3157
+ },
3158
+ "styles": [
3159
+ "solid"
3160
+ ],
3161
+ "unicode": "f206",
3162
+ "label": "Bicycle",
3163
+ "svg": {
3164
+ "solid": {
3165
+ "last_modified": 1502397066000,
3166
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M512.509 192.001c-16.373-.064-32.03 2.955-46.436 8.495l-77.68-125.153A24 24 0 0 0 368.001 64h-64c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h50.649l14.896 24H256.002v-16c0-8.837-7.163-16-16-16h-87.459c-13.441 0-24.777 10.999-24.536 24.437.232 13.044 10.876 23.563 23.995 23.563h48.726l-29.417 47.52c-13.433-4.83-27.904-7.483-42.992-7.52C58.094 191.83.412 249.012.002 319.236-.413 390.279 57.055 448 128.002 448c59.642 0 109.758-40.793 123.967-96h52.033a24 24 0 0 0 20.406-11.367L410.37 201.77l14.938 24.067c-25.455 23.448-41.385 57.081-41.307 94.437.145 68.833 57.899 127.051 126.729 127.719 70.606.685 128.181-55.803 129.255-125.996 1.086-70.941-56.526-129.72-127.476-129.996zM186.75 265.772c9.727 10.529 16.673 23.661 19.642 38.228h-43.306l23.664-38.228zM128.002 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c5.869 0 11.586.653 17.099 1.859l-45.505 73.509C89.715 331.327 101.213 352 120.002 352h81.3c-12.37 28.225-40.562 48-73.3 48zm162.63-96h-35.624c-3.96-31.756-19.556-59.894-42.383-80.026L237.371 184h127.547l-74.286 120zm217.057 95.886c-41.036-2.165-74.049-35.692-75.627-76.755-.812-21.121 6.633-40.518 19.335-55.263l44.433 71.586c4.66 7.508 14.524 9.816 22.032 5.156l13.594-8.437c7.508-4.66 9.817-14.524 5.156-22.032l-44.468-71.643a79.901 79.901 0 0 1 19.858-2.497c44.112 0 80 35.888 80 80-.001 45.54-38.252 82.316-84.313 79.885z\"/></svg>",
3167
+ "viewBox": [
3168
+ "0",
3169
+ "0",
3170
+ "640",
3171
+ "512"
3172
+ ],
3173
+ "width": 640,
3174
+ "height": 512,
3175
+ "path": "M512.509 192.001c-16.373-.064-32.03 2.955-46.436 8.495l-77.68-125.153A24 24 0 0 0 368.001 64h-64c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h50.649l14.896 24H256.002v-16c0-8.837-7.163-16-16-16h-87.459c-13.441 0-24.777 10.999-24.536 24.437.232 13.044 10.876 23.563 23.995 23.563h48.726l-29.417 47.52c-13.433-4.83-27.904-7.483-42.992-7.52C58.094 191.83.412 249.012.002 319.236-.413 390.279 57.055 448 128.002 448c59.642 0 109.758-40.793 123.967-96h52.033a24 24 0 0 0 20.406-11.367L410.37 201.77l14.938 24.067c-25.455 23.448-41.385 57.081-41.307 94.437.145 68.833 57.899 127.051 126.729 127.719 70.606.685 128.181-55.803 129.255-125.996 1.086-70.941-56.526-129.72-127.476-129.996zM186.75 265.772c9.727 10.529 16.673 23.661 19.642 38.228h-43.306l23.664-38.228zM128.002 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c5.869 0 11.586.653 17.099 1.859l-45.505 73.509C89.715 331.327 101.213 352 120.002 352h81.3c-12.37 28.225-40.562 48-73.3 48zm162.63-96h-35.624c-3.96-31.756-19.556-59.894-42.383-80.026L237.371 184h127.547l-74.286 120zm217.057 95.886c-41.036-2.165-74.049-35.692-75.627-76.755-.812-21.121 6.633-40.518 19.335-55.263l44.433 71.586c4.66 7.508 14.524 9.816 22.032 5.156l13.594-8.437c7.508-4.66 9.817-14.524 5.156-22.032l-44.468-71.643a79.901 79.901 0 0 1 19.858-2.497c44.112 0 80 35.888 80 80-.001 45.54-38.252 82.316-84.313 79.885z"
3176
+ }
3177
+ }
3178
+ },
3179
+ "bimobject": {
3180
+ "changes": [
3181
+ "5.0.0"
3182
+ ],
3183
+ "ligatures": [],
3184
+ "search": {
3185
+ "terms": []
3186
+ },
3187
+ "styles": [
3188
+ "brands"
3189
+ ],
3190
+ "unicode": "f378",
3191
+ "label": "BIMobject",
3192
+ "svg": {
3193
+ "brands": {
3194
+ "last_modified": 1500927880000,
3195
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 32H32C14.4 32 0 46.4 0 64v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32zm-64 257.4c0 49.4-11.4 82.6-103.8 82.6h-16.9c-44.1 0-62.4-14.9-70.4-38.8h-.9V368H96V136h64v74.7h1.1c4.6-30.5 39.7-38.8 69.7-38.8h17.3c92.4 0 103.8 33.1 103.8 82.5v35zm-64-28.9v22.9c0 21.7-3.4 33.8-38.4 33.8h-45.3c-28.9 0-44.1-6.5-44.1-35.7v-19c0-29.3 15.2-35.7 44.1-35.7h45.3c35-.2 38.4 12 38.4 33.7z\"/></svg>",
3196
+ "viewBox": [
3197
+ "0",
3198
+ "0",
3199
+ "448",
3200
+ "512"
3201
+ ],
3202
+ "width": 448,
3203
+ "height": 512,
3204
+ "path": "M416 32H32C14.4 32 0 46.4 0 64v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32zm-64 257.4c0 49.4-11.4 82.6-103.8 82.6h-16.9c-44.1 0-62.4-14.9-70.4-38.8h-.9V368H96V136h64v74.7h1.1c4.6-30.5 39.7-38.8 69.7-38.8h17.3c92.4 0 103.8 33.1 103.8 82.5v35zm-64-28.9v22.9c0 21.7-3.4 33.8-38.4 33.8h-45.3c-28.9 0-44.1-6.5-44.1-35.7v-19c0-29.3 15.2-35.7 44.1-35.7h45.3c35-.2 38.4 12 38.4 33.7z"
3205
+ }
3206
+ }
3207
+ },
3208
+ "binoculars": {
3209
+ "changes": [
3210
+ "4.2",
3211
+ "5.0.0",
3212
+ "5.2.0"
3213
+ ],
3214
+ "ligatures": [],
3215
+ "search": {
3216
+ "terms": []
3217
+ },
3218
+ "styles": [
3219
+ "solid"
3220
+ ],
3221
+ "unicode": "f1e5",
3222
+ "label": "Binoculars",
3223
+ "svg": {
3224
+ "solid": {
3225
+ "last_modified": 1532362831516,
3226
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M416 48c0-8.84-7.16-16-16-16h-64c-8.84 0-16 7.16-16 16v48h96V48zM63.91 159.99C61.4 253.84 3.46 274.22 0 404v44c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32V288h32V128H95.84c-17.63 0-31.45 14.37-31.93 31.99zm384.18 0c-.48-17.62-14.3-31.99-31.93-31.99H320v160h32v160c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-44c-3.46-129.78-61.4-150.16-63.91-244.01zM176 32h-64c-8.84 0-16 7.16-16 16v48h96V48c0-8.84-7.16-16-16-16zm48 256h64V128h-64v160z\"/></svg>",
3227
+ "viewBox": [
3228
+ "0",
3229
+ "0",
3230
+ "512",
3231
+ "512"
3232
+ ],
3233
+ "width": 512,
3234
+ "height": 512,
3235
+ "path": "M416 48c0-8.84-7.16-16-16-16h-64c-8.84 0-16 7.16-16 16v48h96V48zM63.91 159.99C61.4 253.84 3.46 274.22 0 404v44c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32V288h32V128H95.84c-17.63 0-31.45 14.37-31.93 31.99zm384.18 0c-.48-17.62-14.3-31.99-31.93-31.99H320v160h32v160c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-44c-3.46-129.78-61.4-150.16-63.91-244.01zM176 32h-64c-8.84 0-16 7.16-16 16v48h96V48c0-8.84-7.16-16-16-16zm48 256h64V128h-64v160z"
3236
+ }
3237
+ }
3238
+ },
3239
+ "birthday-cake": {
3240
+ "changes": [
3241
+ "4.2",
3242
+ "5.0.0"
3243
+ ],
3244
+ "ligatures": [],
3245
+ "search": {
3246
+ "terms": []
3247
+ },
3248
+ "styles": [
3249
+ "solid"
3250
+ ],
3251
+ "unicode": "f1fd",
3252
+ "label": "Birthday Cake",
3253
+ "svg": {
3254
+ "solid": {
3255
+ "last_modified": 1500927880000,
3256
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M448 384c-28.02 0-31.26-32-74.5-32-43.43 0-46.825 32-74.75 32-27.695 0-31.454-32-74.75-32-42.842 0-47.218 32-74.5 32-28.148 0-31.202-32-74.75-32-43.547 0-46.653 32-74.75 32v-80c0-26.5 21.5-48 48-48h16V112h64v144h64V112h64v144h64V112h64v144h16c26.5 0 48 21.5 48 48v80zm0 128H0v-96c43.356 0 46.767-32 74.75-32 27.951 0 31.253 32 74.75 32 42.843 0 47.217-32 74.5-32 28.148 0 31.201 32 74.75 32 43.357 0 46.767-32 74.75-32 27.488 0 31.252 32 74.5 32v96zM96 96c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40z\"/></svg>",
3257
+ "viewBox": [
3258
+ "0",
3259
+ "0",
3260
+ "448",
3261
+ "512"
3262
+ ],
3263
+ "width": 448,
3264
+ "height": 512,
3265
+ "path": "M448 384c-28.02 0-31.26-32-74.5-32-43.43 0-46.825 32-74.75 32-27.695 0-31.454-32-74.75-32-42.842 0-47.218 32-74.5 32-28.148 0-31.202-32-74.75-32-43.547 0-46.653 32-74.75 32v-80c0-26.5 21.5-48 48-48h16V112h64v144h64V112h64v144h64V112h64v144h16c26.5 0 48 21.5 48 48v80zm0 128H0v-96c43.356 0 46.767-32 74.75-32 27.951 0 31.253 32 74.75 32 42.843 0 47.217-32 74.5-32 28.148 0 31.201 32 74.75 32 43.357 0 46.767-32 74.75-32 27.488 0 31.252 32 74.5 32v96zM96 96c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40z"
3266
+ }
3267
+ }
3268
+ },
3269
+ "bitbucket": {
3270
+ "changes": [
3271
+ "3.2",
3272
+ "5.0.0"
3273
+ ],
3274
+ "ligatures": [],
3275
+ "search": {
3276
+ "terms": [
3277
+ "bitbucket-square",
3278
+ "git"
3279
+ ]
3280
+ },
3281
+ "styles": [
3282
+ "brands"
3283
+ ],
3284
+ "unicode": "f171",
3285
+ "label": "Bitbucket",
3286
+ "svg": {
3287
+ "brands": {
3288
+ "last_modified": 1505492030000,
3289
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M23.1 32C14.2 31.9 7 38.9 6.9 47.8c0 .9.1 1.8.2 2.8L74.9 462c1.7 10.4 10.7 18 21.2 18.1h325.1c7.9.1 14.7-5.6 16-13.4l67.8-416c1.4-8.7-4.5-16.9-13.2-18.3-.9-.1-1.8-.2-2.8-.2L23.1 32zm285.3 297.3H204.6l-28.1-146.8h157l-25.1 146.8z\"/></svg>",
3290
+ "viewBox": [
3291
+ "0",
3292
+ "0",
3293
+ "512",
3294
+ "512"
3295
+ ],
3296
+ "width": 512,
3297
+ "height": 512,
3298
+ "path": "M23.1 32C14.2 31.9 7 38.9 6.9 47.8c0 .9.1 1.8.2 2.8L74.9 462c1.7 10.4 10.7 18 21.2 18.1h325.1c7.9.1 14.7-5.6 16-13.4l67.8-416c1.4-8.7-4.5-16.9-13.2-18.3-.9-.1-1.8-.2-2.8-.2L23.1 32zm285.3 297.3H204.6l-28.1-146.8h157l-25.1 146.8z"
3299
+ }
3300
+ }
3301
+ },
3302
+ "bitcoin": {
3303
+ "changes": [
3304
+ "5.0.0"
3305
+ ],
3306
+ "ligatures": [],
3307
+ "search": {
3308
+ "terms": []
3309
+ },
3310
+ "styles": [
3311
+ "brands"
3312
+ ],
3313
+ "unicode": "f379",
3314
+ "label": "Bitcoin",
3315
+ "svg": {
3316
+ "brands": {
3317
+ "last_modified": 1501102193000,
3318
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-141.651-35.33c4.937-32.999-20.191-50.739-54.55-62.573l11.146-44.702-27.213-6.781-10.851 43.524c-7.154-1.783-14.502-3.464-21.803-5.13l10.929-43.81-27.198-6.781-11.153 44.686c-5.922-1.349-11.735-2.682-17.377-4.084l.031-.14-37.53-9.37-7.239 29.062s20.191 4.627 19.765 4.913c11.022 2.751 13.014 10.044 12.68 15.825l-12.696 50.925c.76.194 1.744.473 2.829.907-.907-.225-1.876-.473-2.876-.713l-17.796 71.338c-1.349 3.348-4.767 8.37-12.471 6.464.271.395-19.78-4.937-19.78-4.937l-13.51 31.147 35.414 8.827c6.588 1.651 13.045 3.379 19.4 5.006l-11.262 45.213 27.182 6.781 11.153-44.733a1038.209 1038.209 0 0 0 21.687 5.627l-11.115 44.523 27.213 6.781 11.262-45.128c46.404 8.781 81.299 5.239 95.986-36.727 11.836-33.79-.589-53.281-25.004-65.991 17.78-4.098 31.174-15.792 34.747-39.949zm-62.177 87.179c-8.41 33.79-65.308 15.523-83.755 10.943l14.944-59.899c18.446 4.603 77.6 13.717 68.811 48.956zm8.417-87.667c-7.673 30.736-55.031 15.12-70.393 11.292l13.548-54.327c15.363 3.828 64.836 10.973 56.845 43.035z\"/></svg>",
3319
+ "viewBox": [
3320
+ "0",
3321
+ "0",
3322
+ "512",
3323
+ "512"
3324
+ ],
3325
+ "width": 512,
3326
+ "height": 512,
3327
+ "path": "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-141.651-35.33c4.937-32.999-20.191-50.739-54.55-62.573l11.146-44.702-27.213-6.781-10.851 43.524c-7.154-1.783-14.502-3.464-21.803-5.13l10.929-43.81-27.198-6.781-11.153 44.686c-5.922-1.349-11.735-2.682-17.377-4.084l.031-.14-37.53-9.37-7.239 29.062s20.191 4.627 19.765 4.913c11.022 2.751 13.014 10.044 12.68 15.825l-12.696 50.925c.76.194 1.744.473 2.829.907-.907-.225-1.876-.473-2.876-.713l-17.796 71.338c-1.349 3.348-4.767 8.37-12.471 6.464.271.395-19.78-4.937-19.78-4.937l-13.51 31.147 35.414 8.827c6.588 1.651 13.045 3.379 19.4 5.006l-11.262 45.213 27.182 6.781 11.153-44.733a1038.209 1038.209 0 0 0 21.687 5.627l-11.115 44.523 27.213 6.781 11.262-45.128c46.404 8.781 81.299 5.239 95.986-36.727 11.836-33.79-.589-53.281-25.004-65.991 17.78-4.098 31.174-15.792 34.747-39.949zm-62.177 87.179c-8.41 33.79-65.308 15.523-83.755 10.943l14.944-59.899c18.446 4.603 77.6 13.717 68.811 48.956zm8.417-87.667c-7.673 30.736-55.031 15.12-70.393 11.292l13.548-54.327c15.363 3.828 64.836 10.973 56.845 43.035z"
3328
+ }
3329
+ }
3330
+ },
3331
+ "bity": {
3332
+ "changes": [
3333
+ "5.0.0"
3334
+ ],
3335
+ "ligatures": [],
3336
+ "search": {
3337
+ "terms": []
3338
+ },
3339
+ "styles": [
3340
+ "brands"
3341
+ ],
3342
+ "unicode": "f37a",
3343
+ "label": "Bity",
3344
+ "svg": {
3345
+ "brands": {
3346
+ "last_modified": 1521653821381,
3347
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 496 512\"><path d=\"M78.4 67.2C173.8-22 324.5-24 421.5 71c14.3 14.1-6.4 37.1-22.4 21.5-84.8-82.4-215.8-80.3-298.9-3.2-16.3 15.1-36.5-8.3-21.8-22.1zm98.9 418.6c19.3 5.7 29.3-23.6 7.9-30C73 421.9 9.4 306.1 37.7 194.8c5-19.6-24.9-28.1-30.2-7.1-32.1 127.4 41.1 259.8 169.8 298.1zm148.1-2c121.9-40.2 192.9-166.9 164.4-291-4.5-19.7-34.9-13.8-30 7.9 24.2 107.7-37.1 217.9-143.2 253.4-21.2 7-10.4 36 8.8 29.7zm-62.9-79l.2-71.8c0-8.2-6.6-14.8-14.8-14.8-8.2 0-14.8 6.7-14.8 14.8l-.2 71.8c0 8.2 6.6 14.8 14.8 14.8s14.8-6.6 14.8-14.8zm71-269c2.1 90.9 4.7 131.9-85.5 132.5-92.5-.7-86.9-44.3-85.5-132.5 0-21.8-32.5-19.6-32.5 0v71.6c0 69.3 60.7 90.9 118 90.1 57.3.8 118-20.8 118-90.1v-71.6c0-19.6-32.5-21.8-32.5 0z\"/></svg>",
3348
+ "viewBox": [
3349
+ "0",
3350
+ "0",
3351
+ "496",
3352
+ "512"
3353
+ ],
3354
+ "width": 496,
3355
+ "height": 512,
3356
+ "path": "M78.4 67.2C173.8-22 324.5-24 421.5 71c14.3 14.1-6.4 37.1-22.4 21.5-84.8-82.4-215.8-80.3-298.9-3.2-16.3 15.1-36.5-8.3-21.8-22.1zm98.9 418.6c19.3 5.7 29.3-23.6 7.9-30C73 421.9 9.4 306.1 37.7 194.8c5-19.6-24.9-28.1-30.2-7.1-32.1 127.4 41.1 259.8 169.8 298.1zm148.1-2c121.9-40.2 192.9-166.9 164.4-291-4.5-19.7-34.9-13.8-30 7.9 24.2 107.7-37.1 217.9-143.2 253.4-21.2 7-10.4 36 8.8 29.7zm-62.9-79l.2-71.8c0-8.2-6.6-14.8-14.8-14.8-8.2 0-14.8 6.7-14.8 14.8l-.2 71.8c0 8.2 6.6 14.8 14.8 14.8s14.8-6.6 14.8-14.8zm71-269c2.1 90.9 4.7 131.9-85.5 132.5-92.5-.7-86.9-44.3-85.5-132.5 0-21.8-32.5-19.6-32.5 0v71.6c0 69.3 60.7 90.9 118 90.1 57.3.8 118-20.8 118-90.1v-71.6c0-19.6-32.5-21.8-32.5 0z"
3357
+ }
3358
+ }
3359
+ },
3360
+ "black-tie": {
3361
+ "changes": [
3362
+ "4.4",
3363
+ "5.0.0"
3364
+ ],
3365
+ "ligatures": [],
3366
+ "search": {
3367
+ "terms": []
3368
+ },
3369
+ "styles": [
3370
+ "brands"
3371
+ ],
3372
+ "unicode": "f27e",
3373
+ "label": "Font Awesome Black Tie",
3374
+ "svg": {
3375
+ "brands": {
3376
+ "last_modified": 1500927880000,
3377
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M0 32v448h448V32H0zm316.5 325.2L224 445.9l-92.5-88.7 64.5-184-64.5-86.6h184.9L252 173.2l64.5 184z\"/></svg>",
3378
+ "viewBox": [
3379
+ "0",
3380
+ "0",
3381
+ "448",
3382
+ "512"
3383
+ ],
3384
+ "width": 448,
3385
+ "height": 512,
3386
+ "path": "M0 32v448h448V32H0zm316.5 325.2L224 445.9l-92.5-88.7 64.5-184-64.5-86.6h184.9L252 173.2l64.5 184z"
3387
+ }
3388
+ }
3389
+ },
3390
+ "blackberry": {
3391
+ "changes": [
3392
+ "5.0.0"
3393
+ ],
3394
+ "ligatures": [],
3395
+ "search": {
3396
+ "terms": []
3397
+ },
3398
+ "styles": [
3399
+ "brands"
3400
+ ],
3401
+ "unicode": "f37b",
3402
+ "label": "BlackBerry",
3403
+ "svg": {
3404
+ "brands": {
3405
+ "last_modified": 1501873838000,
3406
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M166 116.9c0 23.4-16.4 49.1-72.5 49.1H23.4l21-88.8h67.8c42.1 0 53.8 23.3 53.8 39.7zm126.2-39.7h-67.8L205.7 166h70.1c53.8 0 70.1-25.7 70.1-49.1.1-16.4-11.6-39.7-53.7-39.7zM88.8 208.1H21L0 296.9h70.1c56.1 0 72.5-23.4 72.5-49.1 0-16.3-11.7-39.7-53.8-39.7zm180.1 0h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1 0-16.3-11.7-39.7-53.7-39.7zm189.3-53.8h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7zm-28 137.9h-67.8L343.7 381h70.1c56.1 0 70.1-23.4 70.1-49.1 0-16.3-11.6-39.7-53.7-39.7zM240.8 346H173l-18.7 88.8h70.1c56.1 0 70.1-25.7 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7z\"/></svg>",
3407
+ "viewBox": [
3408
+ "0",
3409
+ "0",
3410
+ "512",
3411
+ "512"
3412
+ ],
3413
+ "width": 512,
3414
+ "height": 512,
3415
+ "path": "M166 116.9c0 23.4-16.4 49.1-72.5 49.1H23.4l21-88.8h67.8c42.1 0 53.8 23.3 53.8 39.7zm126.2-39.7h-67.8L205.7 166h70.1c53.8 0 70.1-25.7 70.1-49.1.1-16.4-11.6-39.7-53.7-39.7zM88.8 208.1H21L0 296.9h70.1c56.1 0 72.5-23.4 72.5-49.1 0-16.3-11.7-39.7-53.8-39.7zm180.1 0h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1 0-16.3-11.7-39.7-53.7-39.7zm189.3-53.8h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7zm-28 137.9h-67.8L343.7 381h70.1c56.1 0 70.1-23.4 70.1-49.1 0-16.3-11.6-39.7-53.7-39.7zM240.8 346H173l-18.7 88.8h70.1c56.1 0 70.1-25.7 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7z"
3416
+ }
3417
+ }
3418
+ },
3419
+ "blender": {
3420
+ "changes": [
3421
+ "5.0.13"
3422
+ ],
3423
+ "ligatures": [],
3424
+ "search": {
3425
+ "terms": []
3426
+ },
3427
+ "styles": [
3428
+ "solid"
3429
+ ],
3430
+ "unicode": "f517",
3431
+ "label": "Blender",
3432
+ "svg": {
3433
+ "solid": {
3434
+ "last_modified": 1525967154563,
3435
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M416 384H160c-35.35 0-64 28.65-64 64v32c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-32c0-35.35-28.65-64-64-64zm-128 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm40-416h166.54L512 0H48C21.49 0 0 21.49 0 48v160c0 26.51 21.49 48 48 48h103.27l8.73 96h256l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h114.18l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h140.36l17.46-64H328c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8zM64 192V64h69.82l11.64 128H64z\"/></svg>",
3436
+ "viewBox": [
3437
+ "0",
3438
+ "0",
3439
+ "512",
3440
+ "512"
3441
+ ],
3442
+ "width": 512,
3443
+ "height": 512,
3444
+ "path": "M416 384H160c-35.35 0-64 28.65-64 64v32c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-32c0-35.35-28.65-64-64-64zm-128 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm40-416h166.54L512 0H48C21.49 0 0 21.49 0 48v160c0 26.51 21.49 48 48 48h103.27l8.73 96h256l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h114.18l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h140.36l17.46-64H328c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8zM64 192V64h69.82l11.64 128H64z"
3445
+ }
3446
+ }
3447
+ },
3448
+ "blind": {
3449
+ "changes": [
3450
+ "4.6",
3451
+ "5.0.0"
3452
+ ],
3453
+ "ligatures": [],
3454
+ "search": {
3455
+ "terms": []
3456
+ },
3457
+ "styles": [
3458
+ "solid"
3459
+ ],
3460
+ "unicode": "f29d",
3461
+ "label": "Blind",
3462
+ "svg": {
3463
+ "solid": {
3464
+ "last_modified": 1503937790000,
3465
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 384 512\"><path d=\"M380.15 510.837a8 8 0 0 1-10.989-2.687l-125.33-206.427a31.923 31.923 0 0 0 12.958-9.485l126.048 207.608a8 8 0 0 1-2.687 10.991zM142.803 314.338l-32.54 89.485 36.12 88.285c6.693 16.36 25.377 24.192 41.733 17.501 16.357-6.692 24.193-25.376 17.501-41.734l-62.814-153.537zM96 88c24.301 0 44-19.699 44-44S120.301 0 96 0 52 19.699 52 44s19.699 44 44 44zm154.837 169.128l-120-152c-4.733-5.995-11.75-9.108-18.837-9.112V96H80v.026c-7.146.003-14.217 3.161-18.944 9.24L0 183.766v95.694c0 13.455 11.011 24.791 24.464 24.536C37.505 303.748 48 293.1 48 280v-79.766l16-20.571v140.698L9.927 469.055c-6.04 16.609 2.528 34.969 19.138 41.009 16.602 6.039 34.968-2.524 41.009-19.138L136 309.638V202.441l-31.406-39.816a4 4 0 1 1 6.269-4.971l102.3 129.217c9.145 11.584 24.368 11.339 33.708 3.965 10.41-8.216 12.159-23.334 3.966-33.708z\"/></svg>",
3466
+ "viewBox": [
3467
+ "0",
3468
+ "0",
3469
+ "384",
3470
+ "512"
3471
+ ],
3472
+ "width": 384,
3473
+ "height": 512,
3474
+ "path": "M380.15 510.837a8 8 0 0 1-10.989-2.687l-125.33-206.427a31.923 31.923 0 0 0 12.958-9.485l126.048 207.608a8 8 0 0 1-2.687 10.991zM142.803 314.338l-32.54 89.485 36.12 88.285c6.693 16.36 25.377 24.192 41.733 17.501 16.357-6.692 24.193-25.376 17.501-41.734l-62.814-153.537zM96 88c24.301 0 44-19.699 44-44S120.301 0 96 0 52 19.699 52 44s19.699 44 44 44zm154.837 169.128l-120-152c-4.733-5.995-11.75-9.108-18.837-9.112V96H80v.026c-7.146.003-14.217 3.161-18.944 9.24L0 183.766v95.694c0 13.455 11.011 24.791 24.464 24.536C37.505 303.748 48 293.1 48 280v-79.766l16-20.571v140.698L9.927 469.055c-6.04 16.609 2.528 34.969 19.138 41.009 16.602 6.039 34.968-2.524 41.009-19.138L136 309.638V202.441l-31.406-39.816a4 4 0 1 1 6.269-4.971l102.3 129.217c9.145 11.584 24.368 11.339 33.708 3.965 10.41-8.216 12.159-23.334 3.966-33.708z"
3475
+ }
3476
+ }
3477
+ },
3478
+ "blogger": {
3479
+ "changes": [
3480
+ "5.0.0"
3481
+ ],
3482
+ "ligatures": [],
3483
+ "search": {
3484
+ "terms": []
3485
+ },
3486
+ "styles": [
3487
+ "brands"
3488
+ ],
3489
+ "unicode": "f37c",
3490
+ "label": "Blogger",
3491
+ "svg": {
3492
+ "brands": {
3493
+ "last_modified": 1500927880000,
3494
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M162.4 196c4.8-4.9 6.2-5.1 36.4-5.1 27.2 0 28.1.1 32.1 2.1 5.8 2.9 8.3 7 8.3 13.6 0 5.9-2.4 10-7.6 13.4-2.8 1.8-4.5 1.9-31.1 2.1-16.4.1-29.5-.2-31.5-.8-10.3-2.9-14.1-17.7-6.6-25.3zm61.4 94.5c-53.9 0-55.8.2-60.2 4.1-3.5 3.1-5.7 9.4-5.1 13.9.7 4.7 4.8 10.1 9.2 12 2.2 1 14.1 1.7 56.3 1.2l47.9-.6 9.2-1.5c9-5.1 10.5-17.4 3.1-24.4-5.3-4.7-5-4.7-60.4-4.7zm223.4 130.1c-3.5 28.4-23 50.4-51.1 57.5-7.2 1.8-9.7 1.9-172.9 1.8-157.8 0-165.9-.1-172-1.8-8.4-2.2-15.6-5.5-22.3-10-5.6-3.8-13.9-11.8-17-16.4-3.8-5.6-8.2-15.3-10-22C.1 423 0 420.3 0 256.3 0 93.2 0 89.7 1.8 82.6 8.1 57.9 27.7 39 53 33.4c7.3-1.6 332.1-1.9 340-.3 21.2 4.3 37.9 17.1 47.6 36.4 7.7 15.3 7-1.5 7.3 180.6.2 115.8 0 164.5-.7 170.5zm-85.4-185.2c-1.1-5-4.2-9.6-7.7-11.5-1.1-.6-8-1.3-15.5-1.7-12.4-.6-13.8-.8-17.8-3.1-6.2-3.6-7.9-7.6-8-18.3 0-20.4-8.5-39.4-25.3-56.5-12-12.2-25.3-20.5-40.6-25.1-3.6-1.1-11.8-1.5-39.2-1.8-42.9-.5-52.5.4-67.1 6.2-27 10.7-46.3 33.4-53.4 62.4-1.3 5.4-1.6 14.2-1.9 64.3-.4 62.8 0 72.1 4 84.5 9.7 30.7 37.1 53.4 64.6 58.4 9.2 1.7 122.2 2.1 133.7.5 20.1-2.7 35.9-10.8 50.7-25.9 10.7-10.9 17.4-22.8 21.8-38.5 3.2-10.9 2.9-88.4 1.7-93.9z\"/></svg>",
3495
+ "viewBox": [
3496
+ "0",
3497
+ "0",
3498
+ "448",
3499
+ "512"
3500
+ ],
3501
+ "width": 448,
3502
+ "height": 512,
3503
+ "path": "M162.4 196c4.8-4.9 6.2-5.1 36.4-5.1 27.2 0 28.1.1 32.1 2.1 5.8 2.9 8.3 7 8.3 13.6 0 5.9-2.4 10-7.6 13.4-2.8 1.8-4.5 1.9-31.1 2.1-16.4.1-29.5-.2-31.5-.8-10.3-2.9-14.1-17.7-6.6-25.3zm61.4 94.5c-53.9 0-55.8.2-60.2 4.1-3.5 3.1-5.7 9.4-5.1 13.9.7 4.7 4.8 10.1 9.2 12 2.2 1 14.1 1.7 56.3 1.2l47.9-.6 9.2-1.5c9-5.1 10.5-17.4 3.1-24.4-5.3-4.7-5-4.7-60.4-4.7zm223.4 130.1c-3.5 28.4-23 50.4-51.1 57.5-7.2 1.8-9.7 1.9-172.9 1.8-157.8 0-165.9-.1-172-1.8-8.4-2.2-15.6-5.5-22.3-10-5.6-3.8-13.9-11.8-17-16.4-3.8-5.6-8.2-15.3-10-22C.1 423 0 420.3 0 256.3 0 93.2 0 89.7 1.8 82.6 8.1 57.9 27.7 39 53 33.4c7.3-1.6 332.1-1.9 340-.3 21.2 4.3 37.9 17.1 47.6 36.4 7.7 15.3 7-1.5 7.3 180.6.2 115.8 0 164.5-.7 170.5zm-85.4-185.2c-1.1-5-4.2-9.6-7.7-11.5-1.1-.6-8-1.3-15.5-1.7-12.4-.6-13.8-.8-17.8-3.1-6.2-3.6-7.9-7.6-8-18.3 0-20.4-8.5-39.4-25.3-56.5-12-12.2-25.3-20.5-40.6-25.1-3.6-1.1-11.8-1.5-39.2-1.8-42.9-.5-52.5.4-67.1 6.2-27 10.7-46.3 33.4-53.4 62.4-1.3 5.4-1.6 14.2-1.9 64.3-.4 62.8 0 72.1 4 84.5 9.7 30.7 37.1 53.4 64.6 58.4 9.2 1.7 122.2 2.1 133.7.5 20.1-2.7 35.9-10.8 50.7-25.9 10.7-10.9 17.4-22.8 21.8-38.5 3.2-10.9 2.9-88.4 1.7-93.9z"
3504
+ }
3505
+ }
3506
+ },
3507
+ "blogger-b": {
3508
+ "changes": [
3509
+ "5.0.0"
3510
+ ],
3511
+ "ligatures": [],
3512
+ "search": {
3513
+ "terms": []
3514
+ },
3515
+ "styles": [
3516
+ "brands"
3517
+ ],
3518
+ "unicode": "f37d",
3519
+ "label": "Blogger B",
3520
+ "svg": {
3521
+ "brands": {
3522
+ "last_modified": 1500927880000,
3523
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M446.6 222.7c-1.8-8-6.8-15.4-12.5-18.5-1.8-1-13-2.2-25-2.7-20.1-.9-22.3-1.3-28.7-5-10.1-5.9-12.8-12.3-12.9-29.5-.1-33-13.8-63.7-40.9-91.3-19.3-19.7-40.9-33-65.5-40.5-5.9-1.8-19.1-2.4-63.3-2.9-69.4-.8-84.8.6-108.4 10C45.9 59.5 14.7 96.1 3.3 142.9 1.2 151.7.7 165.8.2 246.8c-.6 101.5.1 116.4 6.4 136.5 15.6 49.6 59.9 86.3 104.4 94.3 14.8 2.7 197.3 3.3 216 .8 32.5-4.4 58-17.5 81.9-41.9 17.3-17.7 28.1-36.8 35.2-62.1 4.9-17.6 4.5-142.8 2.5-151.7zm-322.1-63.6c7.8-7.9 10-8.2 58.8-8.2 43.9 0 45.4.1 51.8 3.4 9.3 4.7 13.4 11.3 13.4 21.9 0 9.5-3.8 16.2-12.3 21.6-4.6 2.9-7.3 3.1-50.3 3.3-26.5.2-47.7-.4-50.8-1.2-16.6-4.7-22.8-28.5-10.6-40.8zm191.8 199.8l-14.9 2.4-77.5.9c-68.1.8-87.3-.4-90.9-2-7.1-3.1-13.8-11.7-14.9-19.4-1.1-7.3 2.6-17.3 8.2-22.4 7.1-6.4 10.2-6.6 97.3-6.7 89.6-.1 89.1-.1 97.6 7.8 12.1 11.3 9.5 31.2-4.9 39.4z\"/></svg>",
3524
+ "viewBox": [
3525
+ "0",
3526
+ "0",
3527
+ "448",
3528
+ "512"
3529
+ ],
3530
+ "width": 448,
3531
+ "height": 512,
3532
+ "path": "M446.6 222.7c-1.8-8-6.8-15.4-12.5-18.5-1.8-1-13-2.2-25-2.7-20.1-.9-22.3-1.3-28.7-5-10.1-5.9-12.8-12.3-12.9-29.5-.1-33-13.8-63.7-40.9-91.3-19.3-19.7-40.9-33-65.5-40.5-5.9-1.8-19.1-2.4-63.3-2.9-69.4-.8-84.8.6-108.4 10C45.9 59.5 14.7 96.1 3.3 142.9 1.2 151.7.7 165.8.2 246.8c-.6 101.5.1 116.4 6.4 136.5 15.6 49.6 59.9 86.3 104.4 94.3 14.8 2.7 197.3 3.3 216 .8 32.5-4.4 58-17.5 81.9-41.9 17.3-17.7 28.1-36.8 35.2-62.1 4.9-17.6 4.5-142.8 2.5-151.7zm-322.1-63.6c7.8-7.9 10-8.2 58.8-8.2 43.9 0 45.4.1 51.8 3.4 9.3 4.7 13.4 11.3 13.4 21.9 0 9.5-3.8 16.2-12.3 21.6-4.6 2.9-7.3 3.1-50.3 3.3-26.5.2-47.7-.4-50.8-1.2-16.6-4.7-22.8-28.5-10.6-40.8zm191.8 199.8l-14.9 2.4-77.5.9c-68.1.8-87.3-.4-90.9-2-7.1-3.1-13.8-11.7-14.9-19.4-1.1-7.3 2.6-17.3 8.2-22.4 7.1-6.4 10.2-6.6 97.3-6.7 89.6-.1 89.1-.1 97.6 7.8 12.1 11.3 9.5 31.2-4.9 39.4z"
3533
+ }
3534
+ }
3535
+ },
3536
+ "bluetooth": {
3537
+ "changes": [
3538
+ "4.5",
3539
+ "5.0.0"
3540
+ ],
3541
+ "ligatures": [],
3542
+ "search": {
3543
+ "terms": []
3544
+ },
3545
+ "styles": [
3546
+ "brands"
3547
+ ],
3548
+ "unicode": "f293",
3549
+ "label": "Bluetooth",
3550
+ "svg": {
3551
+ "brands": {
3552
+ "last_modified": 1500927880000,
3553
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M292.6 171.1L249.7 214l-.3-86 43.2 43.1m-43.2 219.8l43.1-43.1-42.9-42.9-.2 86zM416 259.4C416 465 344.1 512 230.9 512S32 465 32 259.4 115.4 0 228.6 0 416 53.9 416 259.4zm-158.5 0l79.4-88.6L211.8 36.5v176.9L138 139.6l-27 26.9 92.7 93-92.7 93 26.9 26.9 73.8-73.8 2.3 170 127.4-127.5-83.9-88.7z\"/></svg>",
3554
+ "viewBox": [
3555
+ "0",
3556
+ "0",
3557
+ "448",
3558
+ "512"
3559
+ ],
3560
+ "width": 448,
3561
+ "height": 512,
3562
+ "path": "M292.6 171.1L249.7 214l-.3-86 43.2 43.1m-43.2 219.8l43.1-43.1-42.9-42.9-.2 86zM416 259.4C416 465 344.1 512 230.9 512S32 465 32 259.4 115.4 0 228.6 0 416 53.9 416 259.4zm-158.5 0l79.4-88.6L211.8 36.5v176.9L138 139.6l-27 26.9 92.7 93-92.7 93 26.9 26.9 73.8-73.8 2.3 170 127.4-127.5-83.9-88.7z"
3563
+ }
3564
+ }
3565
+ },
3566
+ "bluetooth-b": {
3567
+ "changes": [
3568
+ "4.5",
3569
+ "5.0.0"
3570
+ ],
3571
+ "ligatures": [],
3572
+ "search": {
3573
+ "terms": []
3574
+ },
3575
+ "styles": [
3576
+ "brands"
3577
+ ],
3578
+ "unicode": "f294",
3579
+ "label": "Bluetooth",
3580
+ "svg": {
3581
+ "brands": {
3582
+ "last_modified": 1501102193000,
3583
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 320 512\"><path d=\"M196.48 260.023l92.626-103.333L143.125 0v206.33l-86.111-86.111-31.406 31.405 108.061 108.399L25.608 368.422l31.406 31.405 86.111-86.111L145.84 512l148.552-148.644-97.912-103.333zm40.86-102.996l-49.977 49.978-.338-100.295 50.315 50.317zM187.363 313.04l49.977 49.978-50.315 50.316.338-100.294z\"/></svg>",
3584
+ "viewBox": [
3585
+ "0",
3586
+ "0",
3587
+ "320",
3588
+ "512"
3589
+ ],
3590
+ "width": 320,
3591
+ "height": 512,
3592
+ "path": "M196.48 260.023l92.626-103.333L143.125 0v206.33l-86.111-86.111-31.406 31.405 108.061 108.399L25.608 368.422l31.406 31.405 86.111-86.111L145.84 512l148.552-148.644-97.912-103.333zm40.86-102.996l-49.977 49.978-.338-100.295 50.315 50.317zM187.363 313.04l49.977 49.978-50.315 50.316.338-100.294z"
3593
+ }
3594
+ }
3595
+ },
3596
+ "bold": {
3597
+ "changes": [
3598
+ "1",
3599
+ "5.0.0"
3600
+ ],
3601
+ "ligatures": [],
3602
+ "search": {
3603
+ "terms": []
3604
+ },
3605
+ "styles": [
3606
+ "solid"
3607
+ ],
3608
+ "unicode": "f032",
3609
+ "label": "bold",
3610
+ "svg": {
3611
+ "solid": {
3612
+ "last_modified": 1500927880000,
3613
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 384 512\"><path d=\"M304.793 243.891c33.639-18.537 53.657-54.16 53.657-95.693 0-48.236-26.25-87.626-68.626-104.179C265.138 34.01 240.849 32 209.661 32H24c-8.837 0-16 7.163-16 16v33.049c0 8.837 7.163 16 16 16h33.113v318.53H24c-8.837 0-16 7.163-16 16V464c0 8.837 7.163 16 16 16h195.69c24.203 0 44.834-1.289 66.866-7.584C337.52 457.193 376 410.647 376 350.014c0-52.168-26.573-91.684-71.207-106.123zM142.217 100.809h67.444c16.294 0 27.536 2.019 37.525 6.717 15.828 8.479 24.906 26.502 24.906 49.446 0 35.029-20.32 56.79-53.029 56.79h-76.846V100.809zm112.642 305.475c-10.14 4.056-22.677 4.907-31.409 4.907h-81.233V281.943h84.367c39.645 0 63.057 25.38 63.057 63.057.001 28.425-13.66 52.483-34.782 61.284z\"/></svg>",
3614
+ "viewBox": [
3615
+ "0",
3616
+ "0",
3617
+ "384",
3618
+ "512"
3619
+ ],
3620
+ "width": 384,
3621
+ "height": 512,
3622
+ "path": "M304.793 243.891c33.639-18.537 53.657-54.16 53.657-95.693 0-48.236-26.25-87.626-68.626-104.179C265.138 34.01 240.849 32 209.661 32H24c-8.837 0-16 7.163-16 16v33.049c0 8.837 7.163 16 16 16h33.113v318.53H24c-8.837 0-16 7.163-16 16V464c0 8.837 7.163 16 16 16h195.69c24.203 0 44.834-1.289 66.866-7.584C337.52 457.193 376 410.647 376 350.014c0-52.168-26.573-91.684-71.207-106.123zM142.217 100.809h67.444c16.294 0 27.536 2.019 37.525 6.717 15.828 8.479 24.906 26.502 24.906 49.446 0 35.029-20.32 56.79-53.029 56.79h-76.846V100.809zm112.642 305.475c-10.14 4.056-22.677 4.907-31.409 4.907h-81.233V281.943h84.367c39.645 0 63.057 25.38 63.057 63.057.001 28.425-13.66 52.483-34.782 61.284z"
3623
+ }
3624
+ }
3625
+ },
3626
+ "bolt": {
3627
+ "changes": [
3628
+ "2",
3629
+ "5.0.0"
3630
+ ],
3631
+ "ligatures": [],
3632
+ "search": {
3633
+ "terms": [
3634
+ "electricity",
3635
+ "lightning",
3636
+ "weather",
3637
+ "zap"
3638
+ ]
3639
+ },
3640
+ "styles": [
3641
+ "solid"
3642
+ ],
3643
+ "unicode": "f0e7",
3644
+ "label": "Lightning Bolt",
3645
+ "svg": {
3646
+ "solid": {
3647
+ "last_modified": 1500927880000,
3648
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 320 512\"><path d=\"M295.973 160H180.572L215.19 30.184C219.25 14.956 207.756 0 192 0H56C43.971 0 33.8 8.905 32.211 20.828l-31.996 240C-1.704 275.217 9.504 288 24.004 288h118.701L96.646 482.466C93.05 497.649 104.659 512 119.992 512c8.35 0 16.376-4.374 20.778-11.978l175.973-303.997c9.244-15.967-2.288-36.025-20.77-36.025z\"/></svg>",
3649
+ "viewBox": [
3650
+ "0",
3651
+ "0",
3652
+ "320",
3653
+ "512"
3654
+ ],
3655
+ "width": 320,
3656
+ "height": 512,
3657
+ "path": "M295.973 160H180.572L215.19 30.184C219.25 14.956 207.756 0 192 0H56C43.971 0 33.8 8.905 32.211 20.828l-31.996 240C-1.704 275.217 9.504 288 24.004 288h118.701L96.646 482.466C93.05 497.649 104.659 512 119.992 512c8.35 0 16.376-4.374 20.778-11.978l175.973-303.997c9.244-15.967-2.288-36.025-20.77-36.025z"
3658
+ }
3659
+ }
3660
+ },
3661
+ "bomb": {
3662
+ "changes": [
3663
+ "4.1",
3664
+ "5.0.0"
3665
+ ],
3666
+ "ligatures": [],
3667
+ "search": {
3668
+ "terms": []
3669
+ },
3670
+ "styles": [
3671
+ "solid"
3672
+ ],
3673
+ "unicode": "f1e2",
3674
+ "label": "Bomb",
3675
+ "svg": {
3676
+ "solid": {
3677
+ "last_modified": 1500927880000,
3678
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M440.5 88.5l-52 52L415 167c9.4 9.4 9.4 24.6 0 33.9l-17.4 17.4c11.8 26.1 18.4 55.1 18.4 85.6 0 114.9-93.1 208-208 208S0 418.9 0 304 93.1 96 208 96c30.5 0 59.5 6.6 85.6 18.4L311 97c9.4-9.4 24.6-9.4 33.9 0l26.5 26.5 52-52 17.1 17zM500 60h-24c-6.6 0-12 5.4-12 12s5.4 12 12 12h24c6.6 0 12-5.4 12-12s-5.4-12-12-12zM440 0c-6.6 0-12 5.4-12 12v24c0 6.6 5.4 12 12 12s12-5.4 12-12V12c0-6.6-5.4-12-12-12zm33.9 55l17-17c4.7-4.7 4.7-12.3 0-17-4.7-4.7-12.3-4.7-17 0l-17 17c-4.7 4.7-4.7 12.3 0 17 4.8 4.7 12.4 4.7 17 0zm-67.8 0c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17zm67.8 34c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17zM112 272c0-35.3 28.7-64 64-64 8.8 0 16-7.2 16-16s-7.2-16-16-16c-52.9 0-96 43.1-96 96 0 8.8 7.2 16 16 16s16-7.2 16-16z\"/></svg>",
3679
+ "viewBox": [
3680
+ "0",
3681
+ "0",
3682
+ "512",
3683
+ "512"
3684
+ ],
3685
+ "width": 512,
3686
+ "height": 512,
3687
+ "path": "M440.5 88.5l-52 52L415 167c9.4 9.4 9.4 24.6 0 33.9l-17.4 17.4c11.8 26.1 18.4 55.1 18.4 85.6 0 114.9-93.1 208-208 208S0 418.9 0 304 93.1 96 208 96c30.5 0 59.5 6.6 85.6 18.4L311 97c9.4-9.4 24.6-9.4 33.9 0l26.5 26.5 52-52 17.1 17zM500 60h-24c-6.6 0-12 5.4-12 12s5.4 12 12 12h24c6.6 0 12-5.4 12-12s-5.4-12-12-12zM440 0c-6.6 0-12 5.4-12 12v24c0 6.6 5.4 12 12 12s12-5.4 12-12V12c0-6.6-5.4-12-12-12zm33.9 55l17-17c4.7-4.7 4.7-12.3 0-17-4.7-4.7-12.3-4.7-17 0l-17 17c-4.7 4.7-4.7 12.3 0 17 4.8 4.7 12.4 4.7 17 0zm-67.8 0c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17zm67.8 34c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17zM112 272c0-35.3 28.7-64 64-64 8.8 0 16-7.2 16-16s-7.2-16-16-16c-52.9 0-96 43.1-96 96 0 8.8 7.2 16 16 16s16-7.2 16-16z"
3688
+ }
3689
+ }
3690
+ },
3691
+ "bone": {
3692
+ "changes": [
3693
+ "5.2.0"
3694
+ ],
3695
+ "ligatures": [],
3696
+ "search": {
3697
+ "terms": []
3698
+ },
3699
+ "styles": [
3700
+ "solid"
3701
+ ],
3702
+ "unicode": "f5d7",
3703
+ "label": "Bone",
3704
+ "svg": {
3705
+ "solid": {
3706
+ "last_modified": 1532362831517,
3707
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M598.88 244.56c25.2-12.6 41.12-38.36 41.12-66.53v-7.64C640 129.3 606.7 96 565.61 96c-32.02 0-60.44 20.49-70.57 50.86-7.68 23.03-11.6 45.14-38.11 45.14H183.06c-27.38 0-31.58-25.54-38.11-45.14C134.83 116.49 106.4 96 74.39 96 33.3 96 0 129.3 0 170.39v7.64c0 28.17 15.92 53.93 41.12 66.53 9.43 4.71 9.43 18.17 0 22.88C15.92 280.04 0 305.8 0 333.97v7.64C0 382.7 33.3 416 74.38 416c32.02 0 60.44-20.49 70.57-50.86 7.68-23.03 11.6-45.14 38.11-45.14h273.87c27.38 0 31.58 25.54 38.11 45.14C505.17 395.51 533.6 416 565.61 416c41.08 0 74.38-33.3 74.38-74.39v-7.64c0-28.18-15.92-53.93-41.12-66.53-9.42-4.71-9.42-18.17.01-22.88z\"/></svg>",
3708
+ "viewBox": [
3709
+ "0",
3710
+ "0",
3711
+ "640",
3712
+ "512"
3713
+ ],
3714
+ "width": 640,
3715
+ "height": 512,
3716
+ "path": "M598.88 244.56c25.2-12.6 41.12-38.36 41.12-66.53v-7.64C640 129.3 606.7 96 565.61 96c-32.02 0-60.44 20.49-70.57 50.86-7.68 23.03-11.6 45.14-38.11 45.14H183.06c-27.38 0-31.58-25.54-38.11-45.14C134.83 116.49 106.4 96 74.39 96 33.3 96 0 129.3 0 170.39v7.64c0 28.17 15.92 53.93 41.12 66.53 9.43 4.71 9.43 18.17 0 22.88C15.92 280.04 0 305.8 0 333.97v7.64C0 382.7 33.3 416 74.38 416c32.02 0 60.44-20.49 70.57-50.86 7.68-23.03 11.6-45.14 38.11-45.14h273.87c27.38 0 31.58 25.54 38.11 45.14C505.17 395.51 533.6 416 565.61 416c41.08 0 74.38-33.3 74.38-74.39v-7.64c0-28.18-15.92-53.93-41.12-66.53-9.42-4.71-9.42-18.17.01-22.88z"
3717
+ }
3718
+ }
3719
+ },
3720
+ "bong": {
3721
+ "changes": [
3722
+ "5.1.0"
3723
+ ],
3724
+ "ligatures": [],
3725
+ "search": {
3726
+ "terms": [
3727
+ "aparatus",
3728
+ "cannabis",
3729
+ "marijuana",
3730
+ "pipe",
3731
+ "smoke",
3732
+ "smoking"
3733
+ ]
3734
+ },
3735
+ "styles": [
3736
+ "solid"
3737
+ ],
3738
+ "unicode": "f55c",
3739
+ "label": "Bong",
3740
+ "svg": {
3741
+ "solid": {
3742
+ "last_modified": 1529520111648,
3743
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M302.5 512c23.18 0 44.43-12.58 56-32.66C374.69 451.26 384 418.75 384 384c0-36.12-10.08-69.81-27.44-98.62L400 241.94l9.38 9.38c6.25 6.25 16.38 6.25 22.63 0l11.3-11.32c6.25-6.25 6.25-16.38 0-22.63l-52.69-52.69c-6.25-6.25-16.38-6.25-22.63 0l-11.31 11.31c-6.25 6.25-6.25 16.38 0 22.63l9.38 9.38-39.41 39.41c-11.56-11.37-24.53-21.33-38.65-29.51V63.74l15.97-.02c8.82-.01 15.97-7.16 15.98-15.98l.04-31.72C320 7.17 312.82-.01 303.97 0L80.03.26c-8.82.01-15.97 7.16-15.98 15.98l-.04 31.73c-.01 8.85 7.17 16.02 16.02 16.01L96 63.96v153.93C38.67 251.1 0 312.97 0 384c0 34.75 9.31 67.27 25.5 95.34C37.08 499.42 58.33 512 81.5 512h221zM120.06 259.43L144 245.56V63.91l96-.11v181.76l23.94 13.87c24.81 14.37 44.12 35.73 56.56 60.57h-257c12.45-24.84 31.75-46.2 56.56-60.57z\"/></svg>",
3744
+ "viewBox": [
3745
+ "0",
3746
+ "0",
3747
+ "448",
3748
+ "512"
3749
+ ],
3750
+ "width": 448,
3751
+ "height": 512,
3752
+ "path": "M302.5 512c23.18 0 44.43-12.58 56-32.66C374.69 451.26 384 418.75 384 384c0-36.12-10.08-69.81-27.44-98.62L400 241.94l9.38 9.38c6.25 6.25 16.38 6.25 22.63 0l11.3-11.32c6.25-6.25 6.25-16.38 0-22.63l-52.69-52.69c-6.25-6.25-16.38-6.25-22.63 0l-11.31 11.31c-6.25 6.25-6.25 16.38 0 22.63l9.38 9.38-39.41 39.41c-11.56-11.37-24.53-21.33-38.65-29.51V63.74l15.97-.02c8.82-.01 15.97-7.16 15.98-15.98l.04-31.72C320 7.17 312.82-.01 303.97 0L80.03.26c-8.82.01-15.97 7.16-15.98 15.98l-.04 31.73c-.01 8.85 7.17 16.02 16.02 16.01L96 63.96v153.93C38.67 251.1 0 312.97 0 384c0 34.75 9.31 67.27 25.5 95.34C37.08 499.42 58.33 512 81.5 512h221zM120.06 259.43L144 245.56V63.91l96-.11v181.76l23.94 13.87c24.81 14.37 44.12 35.73 56.56 60.57h-257c12.45-24.84 31.75-46.2 56.56-60.57z"
3753
+ }
3754
+ }
3755
+ },
3756
+ "book": {
3757
+ "changes": [
3758
+ "1",
3759
+ "5.0.0"
3760
+ ],
3761
+ "ligatures": [],
3762
+ "search": {
3763
+ "terms": [
3764
+ "documentation",
3765
+ "read"
3766
+ ]
3767
+ },
3768
+ "styles": [
3769
+ "solid"
3770
+ ],
3771
+ "unicode": "f02d",
3772
+ "label": "book",
3773
+ "svg": {
3774
+ "solid": {
3775
+ "last_modified": 1500927880000,
3776
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M448 360V24c0-13.3-10.7-24-24-24H96C43 0 0 43 0 96v320c0 53 43 96 96 96h328c13.3 0 24-10.7 24-24v-16c0-7.5-3.5-14.3-8.9-18.7-4.2-15.4-4.2-59.3 0-74.7 5.4-4.3 8.9-11.1 8.9-18.6zM128 134c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm0 64c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm253.4 250H96c-17.7 0-32-14.3-32-32 0-17.6 14.4-32 32-32h285.4c-1.9 17.1-1.9 46.9 0 64z\"/></svg>",
3777
+ "viewBox": [
3778
+ "0",
3779
+ "0",
3780
+ "448",
3781
+ "512"
3782
+ ],
3783
+ "width": 448,
3784
+ "height": 512,
3785
+ "path": "M448 360V24c0-13.3-10.7-24-24-24H96C43 0 0 43 0 96v320c0 53 43 96 96 96h328c13.3 0 24-10.7 24-24v-16c0-7.5-3.5-14.3-8.9-18.7-4.2-15.4-4.2-59.3 0-74.7 5.4-4.3 8.9-11.1 8.9-18.6zM128 134c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm0 64c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm253.4 250H96c-17.7 0-32-14.3-32-32 0-17.6 14.4-32 32-32h285.4c-1.9 17.1-1.9 46.9 0 64z"
3786
+ }
3787
+ }
3788
+ },
3789
+ "book-open": {
3790
+ "changes": [
3791
+ "5.0.13",
3792
+ "5.1.0",
3793
+ "5.2.0"
3794
+ ],
3795
+ "ligatures": [],
3796
+ "search": {
3797
+ "terms": [
3798
+ "flyer",
3799
+ "notebook",
3800
+ "open book",
3801
+ "pamphlet",
3802
+ "reading"
3803
+ ]
3804
+ },
3805
+ "styles": [
3806
+ "solid"
3807
+ ],
3808
+ "unicode": "f518",
3809
+ "label": "Book Open",
3810
+ "svg": {
3811
+ "solid": {
3812
+ "last_modified": 1529514897312,
3813
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M542.22 32.05c-54.8 3.11-163.72 14.43-230.96 55.59-4.64 2.84-7.27 7.89-7.27 13.17v363.87c0 11.55 12.63 18.85 23.28 13.49 69.18-34.82 169.23-44.32 218.7-46.92 16.89-.89 30.02-14.43 30.02-30.66V62.75c.01-17.71-15.35-31.74-33.77-30.7zM264.73 87.64C197.5 46.48 88.58 35.17 33.78 32.05 15.36 31.01 0 45.04 0 62.75V400.6c0 16.24 13.13 29.78 30.02 30.66 49.49 2.6 149.59 12.11 218.77 46.95 10.62 5.35 23.21-1.94 23.21-13.46V100.63c0-5.29-2.62-10.14-7.27-12.99z\"/></svg>",
3814
+ "viewBox": [
3815
+ "0",
3816
+ "0",
3817
+ "576",
3818
+ "512"
3819
+ ],
3820
+ "width": 576,
3821
+ "height": 512,
3822
+ "path": "M542.22 32.05c-54.8 3.11-163.72 14.43-230.96 55.59-4.64 2.84-7.27 7.89-7.27 13.17v363.87c0 11.55 12.63 18.85 23.28 13.49 69.18-34.82 169.23-44.32 218.7-46.92 16.89-.89 30.02-14.43 30.02-30.66V62.75c.01-17.71-15.35-31.74-33.77-30.7zM264.73 87.64C197.5 46.48 88.58 35.17 33.78 32.05 15.36 31.01 0 45.04 0 62.75V400.6c0 16.24 13.13 29.78 30.02 30.66 49.49 2.6 149.59 12.11 218.77 46.95 10.62 5.35 23.21-1.94 23.21-13.46V100.63c0-5.29-2.62-10.14-7.27-12.99z"
3823
+ }
3824
+ }
3825
+ },
3826
+ "book-reader": {
3827
+ "changes": [
3828
+ "5.2.0"
3829
+ ],
3830
+ "ligatures": [],
3831
+ "search": {
3832
+ "terms": [
3833
+ "library"
3834
+ ]
3835
+ },
3836
+ "styles": [
3837
+ "solid"
3838
+ ],
3839
+ "unicode": "f5da",
3840
+ "label": "Book Reader",
3841
+ "svg": {
3842
+ "solid": {
3843
+ "last_modified": 1532362831517,
3844
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M352 96c0-53.02-42.98-96-96-96s-96 42.98-96 96 42.98 96 96 96 96-42.98 96-96zM233.59 241.1c-59.33-36.32-155.43-46.3-203.79-49.05C13.55 191.13 0 203.51 0 219.14v222.8c0 14.33 11.59 26.28 26.49 27.05 43.66 2.29 131.99 10.68 193.04 41.43 9.37 4.72 20.48-1.71 20.48-11.87V252.56c-.01-4.67-2.32-8.95-6.42-11.46zm248.61-49.05c-48.35 2.74-144.46 12.73-203.78 49.05-4.1 2.51-6.41 6.96-6.41 11.63v245.79c0 10.19 11.14 16.63 20.54 11.9 61.04-30.72 149.32-39.11 192.97-41.4 14.9-.78 26.49-12.73 26.49-27.06V219.14c-.01-15.63-13.56-28.01-29.81-27.09z\"/></svg>",
3845
+ "viewBox": [
3846
+ "0",
3847
+ "0",
3848
+ "512",
3849
+ "512"
3850
+ ],
3851
+ "width": 512,
3852
+ "height": 512,
3853
+ "path": "M352 96c0-53.02-42.98-96-96-96s-96 42.98-96 96 42.98 96 96 96 96-42.98 96-96zM233.59 241.1c-59.33-36.32-155.43-46.3-203.79-49.05C13.55 191.13 0 203.51 0 219.14v222.8c0 14.33 11.59 26.28 26.49 27.05 43.66 2.29 131.99 10.68 193.04 41.43 9.37 4.72 20.48-1.71 20.48-11.87V252.56c-.01-4.67-2.32-8.95-6.42-11.46zm248.61-49.05c-48.35 2.74-144.46 12.73-203.78 49.05-4.1 2.51-6.41 6.96-6.41 11.63v245.79c0 10.19 11.14 16.63 20.54 11.9 61.04-30.72 149.32-39.11 192.97-41.4 14.9-.78 26.49-12.73 26.49-27.06V219.14c-.01-15.63-13.56-28.01-29.81-27.09z"
3854
+ }
3855
+ }
3856
+ },
3857
+ "bookmark": {
3858
+ "changes": [
3859
+ "1",
3860
+ "5.0.0"
3861
+ ],
3862
+ "ligatures": [],
3863
+ "search": {
3864
+ "terms": [
3865
+ "save"
3866
+ ]
3867
+ },
3868
+ "styles": [
3869
+ "solid",
3870
+ "regular"
3871
+ ],
3872
+ "unicode": "f02e",
3873
+ "label": "bookmark",
3874
+ "svg": {
3875
+ "solid": {
3876
+ "last_modified": 1500927880000,
3877
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 384 512\"><path d=\"M0 512V48C0 21.49 21.49 0 48 0h288c26.51 0 48 21.49 48 48v464L192 400 0 512z\"/></svg>",
3878
+ "viewBox": [
3879
+ "0",
3880
+ "0",
3881
+ "384",
3882
+ "512"
3883
+ ],
3884
+ "width": 384,
3885
+ "height": 512,
3886
+ "path": "M0 512V48C0 21.49 21.49 0 48 0h288c26.51 0 48 21.49 48 48v464L192 400 0 512z"
3887
+ },
3888
+ "regular": {
3889
+ "last_modified": 1500927880000,
3890
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 384 512\"><path d=\"M336 0H48C21.49 0 0 21.49 0 48v464l192-112 192 112V48c0-26.51-21.49-48-48-48zm0 428.43l-144-84-144 84V54a6 6 0 0 1 6-6h276c3.314 0 6 2.683 6 5.996V428.43z\"/></svg>",
3891
+ "viewBox": [
3892
+ "0",
3893
+ "0",
3894
+ "384",
3895
+ "512"
3896
+ ],
3897
+ "width": 384,
3898
+ "height": 512,
3899
+ "path": "M336 0H48C21.49 0 0 21.49 0 48v464l192-112 192 112V48c0-26.51-21.49-48-48-48zm0 428.43l-144-84-144 84V54a6 6 0 0 1 6-6h276c3.314 0 6 2.683 6 5.996V428.43z"
3900
+ }
3901
+ }
3902
+ },
3903
+ "bowling-ball": {
3904
+ "changes": [
3905
+ "5.0.5"
3906
+ ],
3907
+ "ligatures": [],
3908
+ "search": {
3909
+ "terms": []
3910
+ },
3911
+ "styles": [
3912
+ "solid"
3913
+ ],
3914
+ "unicode": "f436",
3915
+ "label": "Bowling Ball",
3916
+ "svg": {
3917
+ "solid": {
3918
+ "last_modified": 1518899527987,
3919
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 496 512\"><path d=\"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM120 192c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64-96c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm48 144c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"/></svg>",
3920
+ "viewBox": [
3921
+ "0",
3922
+ "0",
3923
+ "496",
3924
+ "512"
3925
+ ],
3926
+ "width": 496,
3927
+ "height": 512,
3928
+ "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM120 192c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64-96c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm48 144c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"
3929
+ }
3930
+ }
3931
+ },
3932
+ "box": {
3933
+ "changes": [
3934
+ "5.0.7"
3935
+ ],
3936
+ "ligatures": [],
3937
+ "search": {
3938
+ "terms": [
3939
+ "package"
3940
+ ]
3941
+ },
3942
+ "styles": [
3943
+ "solid"
3944
+ ],
3945
+ "unicode": "f466",
3946
+ "label": "Box",
3947
+ "svg": {
3948
+ "solid": {
3949
+ "last_modified": 1521653821444,
3950
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M509.5 184.6L458.9 32.8C452.4 13.2 434.1 0 413.4 0H272v192h238.7c-.4-2.5-.4-5-1.2-7.4zM240 0H98.6c-20.7 0-39 13.2-45.5 32.8L2.5 184.6c-.8 2.4-.8 4.9-1.2 7.4H240V0zM0 224v240c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V224H0z\"/></svg>",
3951
+ "viewBox": [
3952
+ "0",
3953
+ "0",
3954
+ "512",
3955
+ "512"
3956
+ ],
3957
+ "width": 512,
3958
+ "height": 512,
3959
+ "path": "M509.5 184.6L458.9 32.8C452.4 13.2 434.1 0 413.4 0H272v192h238.7c-.4-2.5-.4-5-1.2-7.4zM240 0H98.6c-20.7 0-39 13.2-45.5 32.8L2.5 184.6c-.8 2.4-.8 4.9-1.2 7.4H240V0zM0 224v240c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V224H0z"
3960
+ }
3961
+ }
3962
+ },
3963
+ "box-open": {
3964
+ "changes": [
3965
+ "5.0.9"
3966
+ ],
3967
+ "ligatures": [],
3968
+ "search": {
3969
+ "terms": []
3970
+ },
3971
+ "styles": [
3972
+ "solid"
3973
+ ],
3974
+ "unicode": "f49e",
3975
+ "label": "Box Open",
3976
+ "svg": {
3977
+ "solid": {
3978
+ "last_modified": 1521653821443,
3979
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M53.2 41L1.7 143.8c-4.6 9.2.3 20.2 10.1 23l197.9 56.5c7.1 2 14.7-1 18.5-7.3L320 64 69.8 32.1c-6.9-.8-13.5 2.7-16.6 8.9zm585.1 102.8L586.8 41c-3.1-6.2-9.8-9.8-16.7-8.9L320 64l91.7 152.1c3.8 6.3 11.4 9.3 18.5 7.3l197.9-56.5c9.9-2.9 14.7-13.9 10.2-23.1zM425.7 256c-16.9 0-32.8-9-41.4-23.4L320 126l-64.2 106.6c-8.7 14.5-24.6 23.5-41.5 23.5-4.5 0-9-.6-13.3-1.9L64 215v178c0 14.7 10 27.5 24.2 31l216.2 54.1c10.2 2.5 20.9 2.5 31 0L551.8 424c14.2-3.6 24.2-16.4 24.2-31V215l-137 39.1c-4.3 1.3-8.8 1.9-13.3 1.9z\"/></svg>",
3980
+ "viewBox": [
3981
+ "0",
3982
+ "0",
3983
+ "640",
3984
+ "512"
3985
+ ],
3986
+ "width": 640,
3987
+ "height": 512,
3988
+ "path": "M53.2 41L1.7 143.8c-4.6 9.2.3 20.2 10.1 23l197.9 56.5c7.1 2 14.7-1 18.5-7.3L320 64 69.8 32.1c-6.9-.8-13.5 2.7-16.6 8.9zm585.1 102.8L586.8 41c-3.1-6.2-9.8-9.8-16.7-8.9L320 64l91.7 152.1c3.8 6.3 11.4 9.3 18.5 7.3l197.9-56.5c9.9-2.9 14.7-13.9 10.2-23.1zM425.7 256c-16.9 0-32.8-9-41.4-23.4L320 126l-64.2 106.6c-8.7 14.5-24.6 23.5-41.5 23.5-4.5 0-9-.6-13.3-1.9L64 215v178c0 14.7 10 27.5 24.2 31l216.2 54.1c10.2 2.5 20.9 2.5 31 0L551.8 424c14.2-3.6 24.2-16.4 24.2-31V215l-137 39.1c-4.3 1.3-8.8 1.9-13.3 1.9z"
3989
+ }
3990
+ }
3991
+ },
3992
+ "boxes": {
3993
+ "changes": [
3994
+ "5.0.7"
3995
+ ],
3996
+ "ligatures": [],
3997
+ "search": {
3998
+ "terms": []
3999
+ },
4000
+ "styles": [
4001
+ "solid"
4002
+ ],
4003
+ "unicode": "f468",
4004
+ "label": "Boxes",
4005
+ "svg": {
4006
+ "solid": {
4007
+ "last_modified": 1521653821444,
4008
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M560 288h-80v96l-32-21.3-32 21.3v-96h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16zm-384-64h224c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16h-80v96l-32-21.3L256 96V0h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16zm64 64h-80v96l-32-21.3L96 384v-96H16c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16z\"/></svg>",
4009
+ "viewBox": [
4010
+ "0",
4011
+ "0",
4012
+ "576",
4013
+ "512"
4014
+ ],
4015
+ "width": 576,
4016
+ "height": 512,
4017
+ "path": "M560 288h-80v96l-32-21.3-32 21.3v-96h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16zm-384-64h224c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16h-80v96l-32-21.3L256 96V0h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16zm64 64h-80v96l-32-21.3L96 384v-96H16c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16z"
4018
+ }
4019
+ }
4020
+ },
4021
+ "braille": {
4022
+ "changes": [
4023
+ "4.6",
4024
+ "5.0.0"
4025
+ ],
4026
+ "ligatures": [],
4027
+ "search": {
4028
+ "terms": []
4029
+ },
4030
+ "styles": [
4031
+ "solid"
4032
+ ],
4033
+ "unicode": "f2a1",
4034
+ "label": "Braille",
4035
+ "svg": {
4036
+ "solid": {
4037
+ "last_modified": 1502397066000,
4038
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M128 256c0 35.346-28.654 64-64 64S0 291.346 0 256s28.654-64 64-64 64 28.654 64 64zM64 384c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352C28.654 32 0 60.654 0 96s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm224 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-320c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z\"/></svg>",
4039
+ "viewBox": [
4040
+ "0",
4041
+ "0",
4042
+ "640",
4043
+ "512"
4044
+ ],
4045
+ "width": 640,
4046
+ "height": 512,
4047
+ "path": "M128 256c0 35.346-28.654 64-64 64S0 291.346 0 256s28.654-64 64-64 64 28.654 64 64zM64 384c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352C28.654 32 0 60.654 0 96s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm224 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-320c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"
4048
+ }
4049
+ }
4050
+ },
4051
+ "brain": {
4052
+ "changes": [
4053
+ "5.2.0"
4054
+ ],
4055
+ "ligatures": [],
4056
+ "search": {
4057
+ "terms": []
4058
+ },
4059
+ "styles": [
4060
+ "solid"
4061
+ ],
4062
+ "unicode": "f5dc",
4063
+ "label": "Brain",
4064
+ "svg": {
4065
+ "solid": {
4066
+ "last_modified": 1532362831518,
4067
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M208 0c-29.87 0-54.74 20.55-61.8 48.22-.75-.02-1.45-.22-2.2-.22-35.34 0-64 28.65-64 64 0 4.84.64 9.51 1.66 14.04C52.54 138 32 166.57 32 200c0 12.58 3.16 24.32 8.34 34.91C16.34 248.72 0 274.33 0 304c0 33.34 20.42 61.88 49.42 73.89-.9 4.57-1.42 9.28-1.42 14.11 0 39.76 32.23 72 72 72 4.12 0 8.1-.55 12.03-1.21C141.61 491.31 168.25 512 200 512c39.77 0 72-32.24 72-72V205.45c-10.91 8.98-23.98 15.45-38.36 18.39-4.97 1.02-9.64-2.82-9.64-7.89v-16.18c0-3.57 2.35-6.78 5.8-7.66 24.2-6.16 42.2-27.95 42.2-54.04V64c0-35.35-28.66-64-64-64zm368 304c0-29.67-16.34-55.28-40.34-69.09 5.17-10.59 8.34-22.33 8.34-34.91 0-33.43-20.54-62-49.66-73.96 1.02-4.53 1.66-9.2 1.66-14.04 0-35.35-28.66-64-64-64-.75 0-1.45.2-2.2.22C422.74 20.55 397.87 0 368 0c-35.34 0-64 28.65-64 64v74.07c0 26.09 17.99 47.88 42.2 54.04 3.46.88 5.8 4.09 5.8 7.66v16.18c0 5.07-4.68 8.91-9.64 7.89-14.38-2.94-27.44-9.41-38.36-18.39V440c0 39.76 32.23 72 72 72 31.75 0 58.39-20.69 67.97-49.21 3.93.67 7.91 1.21 12.03 1.21 39.77 0 72-32.24 72-72 0-4.83-.52-9.54-1.42-14.11 29-12.01 49.42-40.55 49.42-73.89z\"/></svg>",
4068
+ "viewBox": [
4069
+ "0",
4070
+ "0",
4071
+ "576",
4072
+ "512"
4073
+ ],
4074
+ "width": 576,
4075
+ "height": 512,
4076
+ "path": "M208 0c-29.87 0-54.74 20.55-61.8 48.22-.75-.02-1.45-.22-2.2-.22-35.34 0-64 28.65-64 64 0 4.84.64 9.51 1.66 14.04C52.54 138 32 166.57 32 200c0 12.58 3.16 24.32 8.34 34.91C16.34 248.72 0 274.33 0 304c0 33.34 20.42 61.88 49.42 73.89-.9 4.57-1.42 9.28-1.42 14.11 0 39.76 32.23 72 72 72 4.12 0 8.1-.55 12.03-1.21C141.61 491.31 168.25 512 200 512c39.77 0 72-32.24 72-72V205.45c-10.91 8.98-23.98 15.45-38.36 18.39-4.97 1.02-9.64-2.82-9.64-7.89v-16.18c0-3.57 2.35-6.78 5.8-7.66 24.2-6.16 42.2-27.95 42.2-54.04V64c0-35.35-28.66-64-64-64zm368 304c0-29.67-16.34-55.28-40.34-69.09 5.17-10.59 8.34-22.33 8.34-34.91 0-33.43-20.54-62-49.66-73.96 1.02-4.53 1.66-9.2 1.66-14.04 0-35.35-28.66-64-64-64-.75 0-1.45.2-2.2.22C422.74 20.55 397.87 0 368 0c-35.34 0-64 28.65-64 64v74.07c0 26.09 17.99 47.88 42.2 54.04 3.46.88 5.8 4.09 5.8 7.66v16.18c0 5.07-4.68 8.91-9.64 7.89-14.38-2.94-27.44-9.41-38.36-18.39V440c0 39.76 32.23 72 72 72 31.75 0 58.39-20.69 67.97-49.21 3.93.67 7.91 1.21 12.03 1.21 39.77 0 72-32.24 72-72 0-4.83-.52-9.54-1.42-14.11 29-12.01 49.42-40.55 49.42-73.89z"
4077
+ }
4078
+ }
4079
+ },
4080
+ "briefcase": {
4081
+ "changes": [
4082
+ "2",
4083
+ "5.0.0"
4084
+ ],
4085
+ "ligatures": [],
4086
+ "search": {
4087
+ "terms": [
4088
+ "bag",
4089
+ "business",
4090
+ "luggage",
4091
+ "office",
4092
+ "work"
4093
+ ]
4094
+ },
4095
+ "styles": [
4096
+ "solid"
4097
+ ],
4098
+ "unicode": "f0b1",
4099
+ "label": "Briefcase",
4100
+ "svg": {
4101
+ "solid": {
4102
+ "last_modified": 1500927880000,
4103
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M320 288h192v144c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V288h192v20c0 6.627 5.373 12 12 12h104c6.627 0 12-5.373 12-12v-20zm192-112v80H0v-80c0-26.51 21.49-48 48-48h80V80c0-26.51 21.49-48 48-48h160c26.51 0 48 21.49 48 48v48h80c26.51 0 48 21.49 48 48zM320 96H192v32h128V96z\"/></svg>",
4104
+ "viewBox": [
4105
+ "0",
4106
+ "0",
4107
+ "512",
4108
+ "512"
4109
+ ],
4110
+ "width": 512,
4111
+ "height": 512,
4112
+ "path": "M320 288h192v144c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V288h192v20c0 6.627 5.373 12 12 12h104c6.627 0 12-5.373 12-12v-20zm192-112v80H0v-80c0-26.51 21.49-48 48-48h80V80c0-26.51 21.49-48 48-48h160c26.51 0 48 21.49 48 48v48h80c26.51 0 48 21.49 48 48zM320 96H192v32h128V96z"
4113
+ }
4114
+ }
4115
+ },
4116
+ "briefcase-medical": {
4117
+ "changes": [
4118
+ "5.0.7"
4119
+ ],
4120
+ "ligatures": [],
4121
+ "search": {
4122
+ "terms": [
4123
+ "health briefcase"
4124
+ ]
4125
+ },
4126
+ "styles": [
4127
+ "solid"
4128
+ ],
4129
+ "unicode": "f469",
4130
+ "label": "Medical Briefcase",
4131
+ "svg": {
4132
+ "solid": {
4133
+ "last_modified": 1521653821445,
4134
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M464 128h-80V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48zM192 96h128v32H192V96zm160 248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48z\"/></svg>",
4135
+ "viewBox": [
4136
+ "0",
4137
+ "0",
4138
+ "512",
4139
+ "512"
4140
+ ],
4141
+ "width": 512,
4142
+ "height": 512,
4143
+ "path": "M464 128h-80V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48zM192 96h128v32H192V96zm160 248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48z"
4144
+ }
4145
+ }
4146
+ },
4147
+ "broadcast-tower": {
4148
+ "changes": [
4149
+ "5.0.13"
4150
+ ],
4151
+ "ligatures": [],
4152
+ "search": {
4153
+ "terms": [
4154
+ "airwaves",
4155
+ "radio",
4156
+ "waves"
4157
+ ]
4158
+ },
4159
+ "styles": [
4160
+ "solid"
4161
+ ],
4162
+ "unicode": "f519",
4163
+ "label": "Broadcast Tower",
4164
+ "svg": {
4165
+ "solid": {
4166
+ "last_modified": 1525967154564,
4167
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M150.94 192h33.73c11.01 0 18.61-10.83 14.86-21.18-4.93-13.58-7.55-27.98-7.55-42.82s2.62-29.24 7.55-42.82C203.29 74.83 195.68 64 184.67 64h-33.73c-7.01 0-13.46 4.49-15.41 11.23C130.64 92.21 128 109.88 128 128c0 18.12 2.64 35.79 7.54 52.76 1.94 6.74 8.39 11.24 15.4 11.24zM89.92 23.34C95.56 12.72 87.97 0 75.96 0H40.63c-6.27 0-12.14 3.59-14.74 9.31C9.4 45.54 0 85.65 0 128c0 24.75 3.12 68.33 26.69 118.86 2.62 5.63 8.42 9.14 14.61 9.14h34.84c12.02 0 19.61-12.74 13.95-23.37-49.78-93.32-16.71-178.15-.17-209.29zM614.06 9.29C611.46 3.58 605.6 0 599.33 0h-35.42c-11.98 0-19.66 12.66-14.02 23.25 18.27 34.29 48.42 119.42.28 209.23-5.72 10.68 1.8 23.52 13.91 23.52h35.23c6.27 0 12.13-3.58 14.73-9.29C630.57 210.48 640 170.36 640 128s-9.42-82.48-25.94-118.71zM489.06 64h-33.73c-11.01 0-18.61 10.83-14.86 21.18 4.93 13.58 7.55 27.98 7.55 42.82s-2.62 29.24-7.55 42.82c-3.76 10.35 3.85 21.18 14.86 21.18h33.73c7.02 0 13.46-4.49 15.41-11.24 4.9-16.97 7.53-34.64 7.53-52.76 0-18.12-2.64-35.79-7.54-52.76-1.94-6.75-8.39-11.24-15.4-11.24zm-116.3 100.12c7.05-10.29 11.2-22.71 11.2-36.12 0-35.35-28.63-64-63.96-64-35.32 0-63.96 28.65-63.96 64 0 13.41 4.15 25.83 11.2 36.12l-130.5 313.41c-3.4 8.15.46 17.52 8.61 20.92l29.51 12.31c8.15 3.4 17.52-.46 20.91-8.61L244.96 384h150.07l49.2 118.15c3.4 8.16 12.76 12.01 20.91 8.61l29.51-12.31c8.15-3.4 12-12.77 8.61-20.92l-130.5-313.41zM271.62 320L320 203.81 368.38 320h-96.76z\"/></svg>",
4168
+ "viewBox": [
4169
+ "0",
4170
+ "0",
4171
+ "640",
4172
+ "512"
4173
+ ],
4174
+ "width": 640,
4175
+ "height": 512,
4176
+ "path": "M150.94 192h33.73c11.01 0 18.61-10.83 14.86-21.18-4.93-13.58-7.55-27.98-7.55-42.82s2.62-29.24 7.55-42.82C203.29 74.83 195.68 64 184.67 64h-33.73c-7.01 0-13.46 4.49-15.41 11.23C130.64 92.21 128 109.88 128 128c0 18.12 2.64 35.79 7.54 52.76 1.94 6.74 8.39 11.24 15.4 11.24zM89.92 23.34C95.56 12.72 87.97 0 75.96 0H40.63c-6.27 0-12.14 3.59-14.74 9.31C9.4 45.54 0 85.65 0 128c0 24.75 3.12 68.33 26.69 118.86 2.62 5.63 8.42 9.14 14.61 9.14h34.84c12.02 0 19.61-12.74 13.95-23.37-49.78-93.32-16.71-178.15-.17-209.29zM614.06 9.29C611.46 3.58 605.6 0 599.33 0h-35.42c-11.98 0-19.66 12.66-14.02 23.25 18.27 34.29 48.42 119.42.28 209.23-5.72 10.68 1.8 23.52 13.91 23.52h35.23c6.27 0 12.13-3.58 14.73-9.29C630.57 210.48 640 170.36 640 128s-9.42-82.48-25.94-118.71zM489.06 64h-33.73c-11.01 0-18.61 10.83-14.86 21.18 4.93 13.58 7.55 27.98 7.55 42.82s-2.62 29.24-7.55 42.82c-3.76 10.35 3.85 21.18 14.86 21.18h33.73c7.02 0 13.46-4.49 15.41-11.24 4.9-16.97 7.53-34.64 7.53-52.76 0-18.12-2.64-35.79-7.54-52.76-1.94-6.75-8.39-11.24-15.4-11.24zm-116.3 100.12c7.05-10.29 11.2-22.71 11.2-36.12 0-35.35-28.63-64-63.96-64-35.32 0-63.96 28.65-63.96 64 0 13.41 4.15 25.83 11.2 36.12l-130.5 313.41c-3.4 8.15.46 17.52 8.61 20.92l29.51 12.31c8.15 3.4 17.52-.46 20.91-8.61L244.96 384h150.07l49.2 118.15c3.4 8.16 12.76 12.01 20.91 8.61l29.51-12.31c8.15-3.4 12-12.77 8.61-20.92l-130.5-313.41zM271.62 320L320 203.81 368.38 320h-96.76z"
4177
+ }
4178
+ }
4179
+ },
4180
+ "broom": {
4181
+ "changes": [
4182
+ "5.0.13"
4183
+ ],
4184
+ "ligatures": [],
4185
+ "search": {
4186
+ "terms": []
4187
+ },
4188
+ "styles": [
4189
+ "solid"
4190
+ ],
4191
+ "unicode": "f51a",
4192
+ "label": "Broom",
4193
+ "svg": {
4194
+ "solid": {
4195
+ "last_modified": 1525967154564,
4196
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M10.8 247.2C-.7 251.8-3.7 266.7 5 275.4l54.8 54.8 73.2-24.4-24.4 73.2 128 128c8.8 8.8 23.6 5.7 28.2-5.8l98.1-243.7-108.4-108.4-243.7 98.1zM507.3 27.3L484.7 4.7c-6.2-6.3-16.4-6.3-22.6 0L359.8 106.9l-40.4-40.4c-4.2-4.3-11.4-3-13.9 2.5l-27.2 58.6 106.1 106.1 58.6-27.2c5.4-2.5 6.7-9.7 2.5-13.9l-40.4-40.4L507.3 49.9c6.3-6.2 6.3-16.3 0-22.6z\"/></svg>",
4197
+ "viewBox": [
4198
+ "0",
4199
+ "0",
4200
+ "512",
4201
+ "512"
4202
+ ],
4203
+ "width": 512,
4204
+ "height": 512,
4205
+ "path": "M10.8 247.2C-.7 251.8-3.7 266.7 5 275.4l54.8 54.8 73.2-24.4-24.4 73.2 128 128c8.8 8.8 23.6 5.7 28.2-5.8l98.1-243.7-108.4-108.4-243.7 98.1zM507.3 27.3L484.7 4.7c-6.2-6.3-16.4-6.3-22.6 0L359.8 106.9l-40.4-40.4c-4.2-4.3-11.4-3-13.9 2.5l-27.2 58.6 106.1 106.1 58.6-27.2c5.4-2.5 6.7-9.7 2.5-13.9l-40.4-40.4L507.3 49.9c6.3-6.2 6.3-16.3 0-22.6z"
4206
+ }
4207
+ }
4208
+ },
4209
+ "brush": {
4210
+ "changes": [
4211
+ "5.1.0"
4212
+ ],
4213
+ "ligatures": [],
4214
+ "search": {
4215
+ "terms": [
4216
+ "bristles",
4217
+ "color",
4218
+ "handle",
4219
+ "painting"
4220
+ ]
4221
+ },
4222
+ "styles": [
4223
+ "solid"
4224
+ ],
4225
+ "unicode": "f55d",
4226
+ "label": "Brush",
4227
+ "svg": {
4228
+ "solid": {
4229
+ "last_modified": 1529520111649,
4230
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 384 512\"><path d=\"M352 0H32C14.33 0 0 14.33 0 32v224h384V32c0-17.67-14.33-32-32-32zM0 320c0 35.35 28.66 64 64 64h64v64c0 35.35 28.66 64 64 64s64-28.65 64-64v-64h64c35.34 0 64-28.65 64-64v-32H0v32zm192 104c13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24s-24-10.75-24-24c0-13.26 10.75-24 24-24z\"/></svg>",
4231
+ "viewBox": [
4232
+ "0",
4233
+ "0",
4234
+ "384",
4235
+ "512"
4236
+ ],
4237
+ "width": 384,
4238
+ "height": 512,
4239
+ "path": "M352 0H32C14.33 0 0 14.33 0 32v224h384V32c0-17.67-14.33-32-32-32zM0 320c0 35.35 28.66 64 64 64h64v64c0 35.35 28.66 64 64 64s64-28.65 64-64v-64h64c35.34 0 64-28.65 64-64v-32H0v32zm192 104c13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24s-24-10.75-24-24c0-13.26 10.75-24 24-24z"
4240
+ }
4241
+ }
4242
+ },
4243
+ "btc": {
4244
+ "changes": [
4245
+ "3.2",
4246
+ "5.0.0"
4247
+ ],
4248
+ "ligatures": [],
4249
+ "search": {
4250
+ "terms": []
4251
+ },
4252
+ "styles": [
4253
+ "brands"
4254
+ ],
4255
+ "unicode": "f15a",
4256
+ "label": "BTC",
4257
+ "svg": {
4258
+ "brands": {
4259
+ "last_modified": 1501102193000,
4260
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 384 512\"><path d=\"M310.204 242.638c27.73-14.18 45.377-39.39 41.28-81.3-5.358-57.351-52.458-76.573-114.85-81.929V0h-48.528v77.203c-12.605 0-25.525.315-38.444.63V0h-48.528v79.409c-17.842.539-38.622.276-97.37 0v51.678c38.314-.678 58.417-3.14 63.023 21.427v217.429c-2.925 19.492-18.524 16.685-53.255 16.071L3.765 443.68c88.481 0 97.37.315 97.37.315V512h48.528v-67.06c13.234.315 26.154.315 38.444.315V512h48.528v-68.005c81.299-4.412 135.647-24.894 142.895-101.467 5.671-61.446-23.32-88.862-69.326-99.89zM150.608 134.553c27.415 0 113.126-8.507 113.126 48.528 0 54.515-85.71 48.212-113.126 48.212v-96.74zm0 251.776V279.821c32.772 0 133.127-9.138 133.127 53.255-.001 60.186-100.355 53.253-133.127 53.253z\"/></svg>",
4261
+ "viewBox": [
4262
+ "0",
4263
+ "0",
4264
+ "384",
4265
+ "512"
4266
+ ],
4267
+ "width": 384,
4268
+ "height": 512,
4269
+ "path": "M310.204 242.638c27.73-14.18 45.377-39.39 41.28-81.3-5.358-57.351-52.458-76.573-114.85-81.929V0h-48.528v77.203c-12.605 0-25.525.315-38.444.63V0h-48.528v79.409c-17.842.539-38.622.276-97.37 0v51.678c38.314-.678 58.417-3.14 63.023 21.427v217.429c-2.925 19.492-18.524 16.685-53.255 16.071L3.765 443.68c88.481 0 97.37.315 97.37.315V512h48.528v-67.06c13.234.315 26.154.315 38.444.315V512h48.528v-68.005c81.299-4.412 135.647-24.894 142.895-101.467 5.671-61.446-23.32-88.862-69.326-99.89zM150.608 134.553c27.415 0 113.126-8.507 113.126 48.528 0 54.515-85.71 48.212-113.126 48.212v-96.74zm0 251.776V279.821c32.772 0 133.127-9.138 133.127 53.255-.001 60.186-100.355 53.253-133.127 53.253z"
4270
+ }
4271
+ }
4272
+ },
4273
+ "bug": {
4274
+ "changes": [
4275
+ "3.2",
4276
+ "5.0.0"
4277
+ ],
4278
+ "ligatures": [],
4279
+ "search": {
4280
+ "terms": [
4281
+ "insect",
4282
+ "report"
4283
+ ]
4284
+ },
4285
+ "styles": [
4286
+ "solid"
4287
+ ],
4288
+ "unicode": "f188",
4289
+ "label": "Bug",
4290
+ "svg": {
4291
+ "solid": {
4292
+ "last_modified": 1502483808000,
4293
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M511.988 288.9c-.478 17.43-15.217 31.1-32.653 31.1H424v16c0 21.864-4.882 42.584-13.6 61.145l60.228 60.228c12.496 12.497 12.496 32.758 0 45.255-12.498 12.497-32.759 12.496-45.256 0l-54.736-54.736C345.886 467.965 314.351 480 280 480V236c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v244c-34.351 0-65.886-12.035-90.636-32.108l-54.736 54.736c-12.498 12.497-32.759 12.496-45.256 0-12.496-12.497-12.496-32.758 0-45.255l60.228-60.228C92.882 378.584 88 357.864 88 336v-16H32.666C15.23 320 .491 306.33.013 288.9-.484 270.816 14.028 256 32 256h56v-58.745l-46.628-46.628c-12.496-12.497-12.496-32.758 0-45.255 12.498-12.497 32.758-12.497 45.256 0L141.255 160h229.489l54.627-54.627c12.498-12.497 32.758-12.497 45.256 0 12.496 12.497 12.496 32.758 0 45.255L424 197.255V256h56c17.972 0 32.484 14.816 31.988 32.9zM257 0c-61.856 0-112 50.144-112 112h224C369 50.144 318.856 0 257 0z\"/></svg>",
4294
+ "viewBox": [
4295
+ "0",
4296
+ "0",
4297
+ "512",
4298
+ "512"
4299
+ ],
4300
+ "width": 512,
4301
+ "height": 512,
4302
+ "path": "M511.988 288.9c-.478 17.43-15.217 31.1-32.653 31.1H424v16c0 21.864-4.882 42.584-13.6 61.145l60.228 60.228c12.496 12.497 12.496 32.758 0 45.255-12.498 12.497-32.759 12.496-45.256 0l-54.736-54.736C345.886 467.965 314.351 480 280 480V236c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v244c-34.351 0-65.886-12.035-90.636-32.108l-54.736 54.736c-12.498 12.497-32.759 12.496-45.256 0-12.496-12.497-12.496-32.758 0-45.255l60.228-60.228C92.882 378.584 88 357.864 88 336v-16H32.666C15.23 320 .491 306.33.013 288.9-.484 270.816 14.028 256 32 256h56v-58.745l-46.628-46.628c-12.496-12.497-12.496-32.758 0-45.255 12.498-12.497 32.758-12.497 45.256 0L141.255 160h229.489l54.627-54.627c12.498-12.497 32.758-12.497 45.256 0 12.496 12.497 12.496 32.758 0 45.255L424 197.255V256h56c17.972 0 32.484 14.816 31.988 32.9zM257 0c-61.856 0-112 50.144-112 112h224C369 50.144 318.856 0 257 0z"
4303
+ }
4304
+ }
4305
+ },
4306
+ "building": {
4307
+ "changes": [
4308
+ "4.1",
4309
+ "5.0.0"
4310
+ ],
4311
+ "ligatures": [],
4312
+ "search": {
4313
+ "terms": [
4314
+ "apartment",
4315
+ "business",
4316
+ "company",
4317
+ "office",
4318
+ "work"
4319
+ ]
4320
+ },
4321
+ "styles": [
4322
+ "solid",
4323
+ "regular"
4324
+ ],
4325
+ "unicode": "f1ad",
4326
+ "label": "Building",
4327
+ "svg": {
4328
+ "solid": {
4329
+ "last_modified": 1500927880000,
4330
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M436 480h-20V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v456H12c-6.627 0-12 5.373-12 12v20h448v-20c0-6.627-5.373-12-12-12zM128 76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76zm0 96c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40zm52 148h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12zm76 160h-64v-84c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v84zm64-172c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40z\"/></svg>",
4331
+ "viewBox": [
4332
+ "0",
4333
+ "0",
4334
+ "448",
4335
+ "512"
4336
+ ],
4337
+ "width": 448,
4338
+ "height": 512,
4339
+ "path": "M436 480h-20V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v456H12c-6.627 0-12 5.373-12 12v20h448v-20c0-6.627-5.373-12-12-12zM128 76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76zm0 96c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40zm52 148h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12zm76 160h-64v-84c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v84zm64-172c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40z"
4340
+ },
4341
+ "regular": {
4342
+ "last_modified": 1500927880000,
4343
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M128 148v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12zm140 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-128 96h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm128 0h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-76 84v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm76 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm180 124v36H0v-36c0-6.6 5.4-12 12-12h19.5V24c0-13.3 10.7-24 24-24h337c13.3 0 24 10.7 24 24v440H436c6.6 0 12 5.4 12 12zM79.5 463H192v-67c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v67h112.5V49L80 48l-.5 415z\"/></svg>",
4344
+ "viewBox": [
4345
+ "0",
4346
+ "0",
4347
+ "448",
4348
+ "512"
4349
+ ],
4350
+ "width": 448,
4351
+ "height": 512,
4352
+ "path": "M128 148v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12zm140 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-128 96h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm128 0h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-76 84v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm76 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm180 124v36H0v-36c0-6.6 5.4-12 12-12h19.5V24c0-13.3 10.7-24 24-24h337c13.3 0 24 10.7 24 24v440H436c6.6 0 12 5.4 12 12zM79.5 463H192v-67c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v67h112.5V49L80 48l-.5 415z"
4353
+ }
4354
+ }
4355
+ },
4356
+ "bullhorn": {
4357
+ "changes": [
4358
+ "2",
4359
+ "5.0.0"
4360
+ ],
4361
+ "ligatures": [],
4362
+ "search": {
4363
+ "terms": [
4364
+ "announcement",
4365
+ "broadcast",
4366
+ "louder",
4367
+ "megaphone",
4368
+ "share"
4369
+ ]
4370
+ },
4371
+ "styles": [
4372
+ "solid"
4373
+ ],
4374
+ "unicode": "f0a1",
4375
+ "label": "bullhorn",
4376
+ "svg": {
4377
+ "solid": {
4378
+ "last_modified": 1500927880000,
4379
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M576 224c0-20.896-13.36-38.666-32-45.258V64c0-35.346-28.654-64-64-64-64.985 56-142.031 128-272 128H48c-26.51 0-48 21.49-48 48v96c0 26.51 21.49 48 48 48h43.263c-18.742 64.65 2.479 116.379 18.814 167.44 1.702 5.32 5.203 9.893 9.922 12.88 20.78 13.155 68.355 15.657 93.773 5.151 16.046-6.633 19.96-27.423 7.522-39.537-18.508-18.026-30.136-36.91-19.795-60.858a12.278 12.278 0 0 0-1.045-11.673c-16.309-24.679-3.581-62.107 28.517-72.752C346.403 327.887 418.591 395.081 480 448c35.346 0 64-28.654 64-64V269.258c18.64-6.592 32-24.362 32-45.258zm-96 139.855c-54.609-44.979-125.033-92.94-224-104.982v-69.747c98.967-12.042 169.391-60.002 224-104.982v279.711z\"/></svg>",
4380
+ "viewBox": [
4381
+ "0",
4382
+ "0",
4383
+ "576",
4384
+ "512"
4385
+ ],
4386
+ "width": 576,
4387
+ "height": 512,
4388
+ "path": "M576 224c0-20.896-13.36-38.666-32-45.258V64c0-35.346-28.654-64-64-64-64.985 56-142.031 128-272 128H48c-26.51 0-48 21.49-48 48v96c0 26.51 21.49 48 48 48h43.263c-18.742 64.65 2.479 116.379 18.814 167.44 1.702 5.32 5.203 9.893 9.922 12.88 20.78 13.155 68.355 15.657 93.773 5.151 16.046-6.633 19.96-27.423 7.522-39.537-18.508-18.026-30.136-36.91-19.795-60.858a12.278 12.278 0 0 0-1.045-11.673c-16.309-24.679-3.581-62.107 28.517-72.752C346.403 327.887 418.591 395.081 480 448c35.346 0 64-28.654 64-64V269.258c18.64-6.592 32-24.362 32-45.258zm-96 139.855c-54.609-44.979-125.033-92.94-224-104.982v-69.747c98.967-12.042 169.391-60.002 224-104.982v279.711z"
4389
+ }
4390
+ }
4391
+ },
4392
+ "bullseye": {
4393
+ "changes": [
4394
+ "3.1",
4395
+ "5.0.0"
4396
+ ],
4397
+ "ligatures": [],
4398
+ "search": {
4399
+ "terms": [
4400
+ "target"
4401
+ ]
4402
+ },
4403
+ "styles": [
4404
+ "solid"
4405
+ ],
4406
+ "unicode": "f140",
4407
+ "label": "Bullseye",
4408
+ "svg": {
4409
+ "solid": {
4410
+ "last_modified": 1500927880000,
4411
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M256 72c101.689 0 184 82.295 184 184 0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-101.689 82.295-184 184-184m0-64C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 184c35.29 0 64 28.71 64 64s-28.71 64-64 64-64-28.71-64-64 28.71-64 64-64m0-64c-70.692 0-128 57.308-128 128s57.308 128 128 128 128-57.308 128-128-57.308-128-128-128z\"/></svg>",
4412
+ "viewBox": [
4413
+ "0",
4414
+ "0",
4415
+ "512",
4416
+ "512"
4417
+ ],
4418
+ "width": 512,
4419
+ "height": 512,
4420
+ "path": "M256 72c101.689 0 184 82.295 184 184 0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-101.689 82.295-184 184-184m0-64C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 184c35.29 0 64 28.71 64 64s-28.71 64-64 64-64-28.71-64-64 28.71-64 64-64m0-64c-70.692 0-128 57.308-128 128s57.308 128 128 128 128-57.308 128-128-57.308-128-128-128z"
4421
+ }
4422
+ }
4423
+ },
4424
+ "burn": {
4425
+ "changes": [
4426
+ "5.0.7"
4427
+ ],
4428
+ "ligatures": [],
4429
+ "search": {
4430
+ "terms": [
4431
+ "energy"
4432
+ ]
4433
+ },
4434
+ "styles": [
4435
+ "solid"
4436
+ ],
4437
+ "unicode": "f46a",
4438
+ "label": "Burn",
4439
+ "svg": {
4440
+ "solid": {
4441
+ "last_modified": 1521653821445,
4442
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 384 512\"><path d=\"M192 0C79.7 101.3 0 220.9 0 300.5 0 425 79 512 192 512s192-87 192-211.5c0-79.9-80.2-199.6-192-300.5zm0 448c-56.5 0-96-39-96-94.8 0-13.5 4.6-61.5 96-161.2 91.4 99.7 96 147.7 96 161.2 0 55.8-39.5 94.8-96 94.8z\"/></svg>",
4443
+ "viewBox": [
4444
+ "0",
4445
+ "0",
4446
+ "384",
4447
+ "512"
4448
+ ],
4449
+ "width": 384,
4450
+ "height": 512,
4451
+ "path": "M192 0C79.7 101.3 0 220.9 0 300.5 0 425 79 512 192 512s192-87 192-211.5c0-79.9-80.2-199.6-192-300.5zm0 448c-56.5 0-96-39-96-94.8 0-13.5 4.6-61.5 96-161.2 91.4 99.7 96 147.7 96 161.2 0 55.8-39.5 94.8-96 94.8z"
4452
+ }
4453
+ }
4454
+ },
4455
+ "buromobelexperte": {
4456
+ "changes": [
4457
+ "5.0.0"
4458
+ ],
4459
+ "ligatures": [],
4460
+ "search": {
4461
+ "terms": []
4462
+ },
4463
+ "styles": [
4464
+ "brands"
4465
+ ],
4466
+ "unicode": "f37f",
4467
+ "label": "Büromöbel-Experte GmbH & Co. KG.",
4468
+ "svg": {
4469
+ "brands": {
4470
+ "last_modified": 1500927880000,
4471
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M0 32v128h128V32H0zm120 120H8V40h112v112zm40-120v128h128V32H160zm120 120H168V40h112v112zm40-120v128h128V32H320zm120 120H328V40h112v112zM0 192v128h128V192H0zm120 120H8V200h112v112zm40-120v128h128V192H160zm120 120H168V200h112v112zm40-120v128h128V192H320zm120 120H328V200h112v112zM0 352v128h128V352H0zm120 120H8V360h112v112zm40-120v128h128V352H160zm120 120H168V360h112v112zm40-120v128h128V352H320z\"/></svg>",
4472
+ "viewBox": [
4473
+ "0",
4474
+ "0",
4475
+ "448",
4476
+ "512"
4477
+ ],
4478
+ "width": 448,
4479
+ "height": 512,
4480
+ "path": "M0 32v128h128V32H0zm120 120H8V40h112v112zm40-120v128h128V32H160zm120 120H168V40h112v112zm40-120v128h128V32H320zm120 120H328V40h112v112zM0 192v128h128V192H0zm120 120H8V200h112v112zm40-120v128h128V192H160zm120 120H168V200h112v112zm40-120v128h128V192H320zm120 120H328V200h112v112zM0 352v128h128V352H0zm120 120H8V360h112v112zm40-120v128h128V352H160zm120 120H168V360h112v112zm40-120v128h128V352H320z"
4481
+ }
4482
+ }
4483
+ },
4484
+ "bus": {
4485
+ "changes": [
4486
+ "4.2",
4487
+ "5.0.0",
4488
+ "5.1.0"
4489
+ ],
4490
+ "ligatures": [],
4491
+ "search": {
4492
+ "terms": [
4493
+ "machine",
4494
+ "public transportation",
4495
+ "transportation",
4496
+ "vehicle"
4497
+ ]
4498
+ },
4499
+ "styles": [
4500
+ "solid"
4501
+ ],
4502
+ "unicode": "f207",
4503
+ "label": "Bus",
4504
+ "svg": {
4505
+ "solid": {
4506
+ "last_modified": 1529520111650,
4507
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM112 400c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm16-112c-17.67 0-32-14.33-32-32V128c0-17.67 14.33-32 32-32h256c17.67 0 32 14.33 32 32v128c0 17.67-14.33 32-32 32H128zm272 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"/></svg>",
4508
+ "viewBox": [
4509
+ "0",
4510
+ "0",
4511
+ "512",
4512
+ "512"
4513
+ ],
4514
+ "width": 512,
4515
+ "height": 512,
4516
+ "path": "M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM112 400c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm16-112c-17.67 0-32-14.33-32-32V128c0-17.67 14.33-32 32-32h256c17.67 0 32 14.33 32 32v128c0 17.67-14.33 32-32 32H128zm272 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"
4517
+ }
4518
+ }
4519
+ },
4520
+ "bus-alt": {
4521
+ "changes": [
4522
+ "5.1.0"
4523
+ ],
4524
+ "ligatures": [],
4525
+ "search": {
4526
+ "terms": [
4527
+ "machine",
4528
+ "public transportation",
4529
+ "transportation",
4530
+ "vehicle"
4531
+ ]
4532
+ },
4533
+ "styles": [
4534
+ "solid"
4535
+ ],
4536
+ "unicode": "f55e",
4537
+ "label": "Bus Alt",
4538
+ "svg": {
4539
+ "solid": {
4540
+ "last_modified": 1529520111650,
4541
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM160 72c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H168c-4.42 0-8-3.58-8-8V72zm-48 328c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm128-112H128c-17.67 0-32-14.33-32-32v-96c0-17.67 14.33-32 32-32h112v160zm32 0V128h112c17.67 0 32 14.33 32 32v96c0 17.67-14.33 32-32 32H272zm128 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"/></svg>",
4542
+ "viewBox": [
4543
+ "0",
4544
+ "0",
4545
+ "512",
4546
+ "512"
4547
+ ],
4548
+ "width": 512,
4549
+ "height": 512,
4550
+ "path": "M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM160 72c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H168c-4.42 0-8-3.58-8-8V72zm-48 328c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm128-112H128c-17.67 0-32-14.33-32-32v-96c0-17.67 14.33-32 32-32h112v160zm32 0V128h112c17.67 0 32 14.33 32 32v96c0 17.67-14.33 32-32 32H272zm128 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"
4551
+ }
4552
+ }
4553
+ },
4554
+ "buysellads": {
4555
+ "changes": [
4556
+ "4.3",
4557
+ "5.0.0"
4558
+ ],
4559
+ "ligatures": [],
4560
+ "search": {
4561
+ "terms": []
4562
+ },
4563
+ "styles": [
4564
+ "brands"
4565
+ ],
4566
+ "unicode": "f20d",
4567
+ "label": "BuySellAds",
4568
+ "svg": {
4569
+ "brands": {
4570
+ "last_modified": 1500927880000,
4571
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M224 150.7l42.9 160.7h-85.8L224 150.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-65.3 325.3l-94.5-298.7H159.8L65.3 405.3H156l111.7-91.6 24.2 91.6h90.8z\"/></svg>",
4572
+ "viewBox": [
4573
+ "0",
4574
+ "0",
4575
+ "448",
4576
+ "512"
4577
+ ],
4578
+ "width": 448,
4579
+ "height": 512,
4580
+ "path": "M224 150.7l42.9 160.7h-85.8L224 150.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-65.3 325.3l-94.5-298.7H159.8L65.3 405.3H156l111.7-91.6 24.2 91.6h90.8z"
4581
+ }
4582
+ }
4583
+ },
4584
+ "calculator": {
4585
+ "changes": [
4586
+ "4.2",
4587
+ "5.0.0"
4588
+ ],
4589
+ "ligatures": [],
4590
+ "search": {
4591
+ "terms": []
4592
+ },
4593
+ "styles": [
4594
+ "solid"
4595
+ ],
4596
+ "unicode": "f1ec",
4597
+ "label": "Calculator",
4598
+ "svg": {
4599
+ "solid": {
4600
+ "last_modified": 1500927880000,
4601
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M0 464V48C0 21.49 21.49 0 48 0h352c26.51 0 48 21.49 48 48v416c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm384-284V76c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v104c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12zM128 308v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm256 128V268c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-256 0v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm128-128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm0 128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z\"/></svg>",
4602
+ "viewBox": [
4603
+ "0",
4604
+ "0",
4605
+ "448",
4606
+ "512"
4607
+ ],
4608
+ "width": 448,
4609
+ "height": 512,
4610
+ "path": "M0 464V48C0 21.49 21.49 0 48 0h352c26.51 0 48 21.49 48 48v416c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm384-284V76c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v104c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12zM128 308v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm256 128V268c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-256 0v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm128-128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm0 128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"
4611
+ }
4612
+ }
4613
+ },
4614
+ "calendar": {
4615
+ "changes": [
4616
+ "3.1",
4617
+ "5.0.0"
4618
+ ],
4619
+ "ligatures": [],
4620
+ "search": {
4621
+ "terms": [
4622
+ "calendar-o",
4623
+ "date",
4624
+ "event",
4625
+ "schedule",
4626
+ "time",
4627
+ "when"
4628
+ ]
4629
+ },
4630
+ "styles": [
4631
+ "solid",
4632
+ "regular"
4633
+ ],
4634
+ "unicode": "f133",
4635
+ "label": "Calendar",
4636
+ "svg": {
4637
+ "solid": {
4638
+ "last_modified": 1500927880000,
4639
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm436-44v-36c0-26.5-21.5-48-48-48h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v36c0 6.6 5.4 12 12 12h424c6.6 0 12-5.4 12-12z\"/></svg>",
4640
+ "viewBox": [
4641
+ "0",
4642
+ "0",
4643
+ "448",
4644
+ "512"
4645
+ ],
4646
+ "width": 448,
4647
+ "height": 512,
4648
+ "path": "M12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm436-44v-36c0-26.5-21.5-48-48-48h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v36c0 6.6 5.4 12 12 12h424c6.6 0 12-5.4 12-12z"
4649
+ },
4650
+ "regular": {
4651
+ "last_modified": 1500927880000,
4652
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M400 64h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V160h352v298c0 3.3-2.7 6-6 6z\"/></svg>",
4653
+ "viewBox": [
4654
+ "0",
4655
+ "0",
4656
+ "448",
4657
+ "512"
4658
+ ],
4659
+ "width": 448,
4660
+ "height": 512,
4661
+ "path": "M400 64h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V160h352v298c0 3.3-2.7 6-6 6z"
4662
+ }
4663
+ }
4664
+ },
4665
+ "calendar-alt": {
4666
+ "changes": [
4667
+ "1",
4668
+ "5.0.0"
4669
+ ],
4670
+ "ligatures": [],
4671
+ "search": {
4672
+ "terms": [
4673
+ "calendar",
4674
+ "date",
4675
+ "event",
4676
+ "schedule",
4677
+ "time",
4678
+ "when"
4679
+ ]
4680
+ },
4681
+ "styles": [
4682
+ "solid",
4683
+ "regular"
4684
+ ],
4685
+ "unicode": "f073",
4686
+ "label": "Alternate Calendar",
4687
+ "svg": {
4688
+ "solid": {
4689
+ "last_modified": 1500927880000,
4690
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm116 204c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40z\"/></svg>",
4691
+ "viewBox": [
4692
+ "0",
4693
+ "0",
4694
+ "448",
4695
+ "512"
4696
+ ],
4697
+ "width": 448,
4698
+ "height": 512,
4699
+ "path": "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm116 204c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40z"
4700
+ },
4701
+ "regular": {
4702
+ "last_modified": 1500927880000,
4703
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z\"/></svg>",
4704
+ "viewBox": [
4705
+ "0",
4706
+ "0",
4707
+ "448",
4708
+ "512"
4709
+ ],
4710
+ "width": 448,
4711
+ "height": 512,
4712
+ "path": "M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"
4713
+ }
4714
+ }
4715
+ },
4716
+ "calendar-check": {
4717
+ "changes": [
4718
+ "4.4",
4719
+ "5.0.0"
4720
+ ],
4721
+ "ligatures": [],
4722
+ "search": {
4723
+ "terms": [
4724
+ "accept",
4725
+ "agree",
4726
+ "appointment",
4727
+ "confirm",
4728
+ "correct",
4729
+ "done",
4730
+ "ok",
4731
+ "select",
4732
+ "success",
4733
+ "todo"
4734
+ ]
4735
+ },
4736
+ "styles": [
4737
+ "solid",
4738
+ "regular"
4739
+ ],
4740
+ "unicode": "f274",
4741
+ "label": "Calendar Check",
4742
+ "svg": {
4743
+ "solid": {
4744
+ "last_modified": 1500927880000,
4745
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M436 160H12c-6.627 0-12-5.373-12-12v-36c0-26.51 21.49-48 48-48h48V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h128V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h48c26.51 0 48 21.49 48 48v36c0 6.627-5.373 12-12 12zM12 192h424c6.627 0 12 5.373 12 12v260c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V204c0-6.627 5.373-12 12-12zm333.296 95.947l-28.169-28.398c-4.667-4.705-12.265-4.736-16.97-.068L194.12 364.665l-45.98-46.352c-4.667-4.705-12.266-4.736-16.971-.068l-28.397 28.17c-4.705 4.667-4.736 12.265-.068 16.97l82.601 83.269c4.667 4.705 12.265 4.736 16.97.068l142.953-141.805c4.705-4.667 4.736-12.265.068-16.97z\"/></svg>",
4746
+ "viewBox": [
4747
+ "0",
4748
+ "0",
4749
+ "448",
4750
+ "512"
4751
+ ],
4752
+ "width": 448,
4753
+ "height": 512,
4754
+ "path": "M436 160H12c-6.627 0-12-5.373-12-12v-36c0-26.51 21.49-48 48-48h48V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h128V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h48c26.51 0 48 21.49 48 48v36c0 6.627-5.373 12-12 12zM12 192h424c6.627 0 12 5.373 12 12v260c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V204c0-6.627 5.373-12 12-12zm333.296 95.947l-28.169-28.398c-4.667-4.705-12.265-4.736-16.97-.068L194.12 364.665l-45.98-46.352c-4.667-4.705-12.266-4.736-16.971-.068l-28.397 28.17c-4.705 4.667-4.736 12.265-.068 16.97l82.601 83.269c4.667 4.705 12.265 4.736 16.97.068l142.953-141.805c4.705-4.667 4.736-12.265.068-16.97z"
4755
+ },
4756
+ "regular": {
4757
+ "last_modified": 1500927880000,
4758
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M400 64h-48V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H160V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V160h352v298a6 6 0 0 1-6 6zm-52.849-200.65L198.842 404.519c-4.705 4.667-12.303 4.637-16.971-.068l-75.091-75.699c-4.667-4.705-4.637-12.303.068-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l44.104 44.461 111.072-110.181c4.705-4.667 12.303-4.637 16.971.068l22.536 22.718c4.667 4.705 4.636 12.303-.069 16.97z\"/></svg>",
4759
+ "viewBox": [
4760
+ "0",
4761
+ "0",
4762
+ "448",
4763
+ "512"
4764
+ ],
4765
+ "width": 448,
4766
+ "height": 512,
4767
+ "path": "M400 64h-48V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H160V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V160h352v298a6 6 0 0 1-6 6zm-52.849-200.65L198.842 404.519c-4.705 4.667-12.303 4.637-16.971-.068l-75.091-75.699c-4.667-4.705-4.637-12.303.068-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l44.104 44.461 111.072-110.181c4.705-4.667 12.303-4.637 16.971.068l22.536 22.718c4.667 4.705 4.636 12.303-.069 16.97z"
4768
+ }
4769
+ }
4770
+ },
4771
+ "calendar-minus": {
4772
+ "changes": [
4773
+ "4.4",
4774
+ "5.0.0"
4775
+ ],
4776
+ "ligatures": [],
4777
+ "search": {
4778
+ "terms": []
4779
+ },
4780
+ "styles": [
4781
+ "solid",
4782
+ "regular"
4783
+ ],
4784
+ "unicode": "f272",
4785
+ "label": "Calendar Minus",
4786
+ "svg": {
4787
+ "solid": {
4788
+ "last_modified": 1500927880000,
4789
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm304 192c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H132c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h184z\"/></svg>",
4790
+ "viewBox": [
4791
+ "0",
4792
+ "0",
4793
+ "448",
4794
+ "512"
4795
+ ],
4796
+ "width": 448,
4797
+ "height": 512,
4798
+ "path": "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm304 192c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H132c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h184z"
4799
+ },
4800
+ "regular": {
4801
+ "last_modified": 1500927880000,
4802
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M124 328c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H124zm324-216v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z\"/></svg>",
4803
+ "viewBox": [
4804
+ "0",
4805
+ "0",
4806
+ "448",
4807
+ "512"
4808
+ ],
4809
+ "width": 448,
4810
+ "height": 512,
4811
+ "path": "M124 328c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H124zm324-216v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"
4812
+ }
4813
+ }
4814
+ },
4815
+ "calendar-plus": {
4816
+ "changes": [
4817
+ "4.4",
4818
+ "5.0.0"
4819
+ ],
4820
+ "ligatures": [],
4821
+ "search": {
4822
+ "terms": []
4823
+ },
4824
+ "styles": [
4825
+ "solid",
4826
+ "regular"
4827
+ ],
4828
+ "unicode": "f271",
4829
+ "label": "Calendar Plus",
4830
+ "svg": {
4831
+ "solid": {
4832
+ "last_modified": 1500927880000,
4833
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm316 140c0-6.6-5.4-12-12-12h-60v-60c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v60h-60c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h60v60c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-60h60c6.6 0 12-5.4 12-12v-40z\"/></svg>",
4834
+ "viewBox": [
4835
+ "0",
4836
+ "0",
4837
+ "448",
4838
+ "512"
4839
+ ],
4840
+ "width": 448,
4841
+ "height": 512,
4842
+ "path": "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm316 140c0-6.6-5.4-12-12-12h-60v-60c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v60h-60c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h60v60c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-60h60c6.6 0 12-5.4 12-12v-40z"
4843
+ },
4844
+ "regular": {
4845
+ "last_modified": 1500927880000,
4846
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M336 292v24c0 6.6-5.4 12-12 12h-76v76c0 6.6-5.4 12-12 12h-24c-6.6 0-12-5.4-12-12v-76h-76c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h76v-76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v76h76c6.6 0 12 5.4 12 12zm112-180v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z\"/></svg>",
4847
+ "viewBox": [
4848
+ "0",
4849
+ "0",
4850
+ "448",
4851
+ "512"
4852
+ ],
4853
+ "width": 448,
4854
+ "height": 512,
4855
+ "path": "M336 292v24c0 6.6-5.4 12-12 12h-76v76c0 6.6-5.4 12-12 12h-24c-6.6 0-12-5.4-12-12v-76h-76c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h76v-76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v76h76c6.6 0 12 5.4 12 12zm112-180v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"
4856
+ }
4857
+ }
4858
+ },
4859
+ "calendar-times": {
4860
+ "changes": [
4861
+ "4.4",
4862
+ "5.0.0"
4863
+ ],
4864
+ "ligatures": [],
4865
+ "search": {
4866
+ "terms": []
4867
+ },
4868
+ "styles": [
4869
+ "solid",
4870
+ "regular"
4871
+ ],
4872
+ "unicode": "f273",
4873
+ "label": "Calendar Times",
4874
+ "svg": {
4875
+ "solid": {
4876
+ "last_modified": 1500927880000,
4877
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm257.3 160l48.1-48.1c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0L224 306.7l-48.1-48.1c-4.7-4.7-12.3-4.7-17 0l-28.3 28.3c-4.7 4.7-4.7 12.3 0 17l48.1 48.1-48.1 48.1c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l48.1-48.1 48.1 48.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L269.3 352z\"/></svg>",
4878
+ "viewBox": [
4879
+ "0",
4880
+ "0",
4881
+ "448",
4882
+ "512"
4883
+ ],
4884
+ "width": 448,
4885
+ "height": 512,
4886
+ "path": "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm257.3 160l48.1-48.1c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0L224 306.7l-48.1-48.1c-4.7-4.7-12.3-4.7-17 0l-28.3 28.3c-4.7 4.7-4.7 12.3 0 17l48.1 48.1-48.1 48.1c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l48.1-48.1 48.1 48.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L269.3 352z"
4887
+ },
4888
+ "regular": {
4889
+ "last_modified": 1500927880000,
4890
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M311.7 374.7l-17 17c-4.7 4.7-12.3 4.7-17 0L224 337.9l-53.7 53.7c-4.7 4.7-12.3 4.7-17 0l-17-17c-4.7-4.7-4.7-12.3 0-17l53.7-53.7-53.7-53.7c-4.7-4.7-4.7-12.3 0-17l17-17c4.7-4.7 12.3-4.7 17 0l53.7 53.7 53.7-53.7c4.7-4.7 12.3-4.7 17 0l17 17c4.7 4.7 4.7 12.3 0 17L257.9 304l53.7 53.7c4.8 4.7 4.8 12.3.1 17zM448 112v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z\"/></svg>",
4891
+ "viewBox": [
4892
+ "0",
4893
+ "0",
4894
+ "448",
4895
+ "512"
4896
+ ],
4897
+ "width": 448,
4898
+ "height": 512,
4899
+ "path": "M311.7 374.7l-17 17c-4.7 4.7-12.3 4.7-17 0L224 337.9l-53.7 53.7c-4.7 4.7-12.3 4.7-17 0l-17-17c-4.7-4.7-4.7-12.3 0-17l53.7-53.7-53.7-53.7c-4.7-4.7-4.7-12.3 0-17l17-17c4.7-4.7 12.3-4.7 17 0l53.7 53.7 53.7-53.7c4.7-4.7 12.3-4.7 17 0l17 17c4.7 4.7 4.7 12.3 0 17L257.9 304l53.7 53.7c4.8 4.7 4.8 12.3.1 17zM448 112v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"
4900
+ }
4901
+ }
4902
+ },
4903
+ "camera": {
4904
+ "changes": [
4905
+ "1",
4906
+ "5.0.0"
4907
+ ],
4908
+ "ligatures": [],
4909
+ "search": {
4910
+ "terms": [
4911
+ "photo",
4912
+ "picture",
4913
+ "record"
4914
+ ]
4915
+ },
4916
+ "styles": [
4917
+ "solid"
4918
+ ],
4919
+ "unicode": "f030",
4920
+ "label": "camera",
4921
+ "svg": {
4922
+ "solid": {
4923
+ "last_modified": 1500927880000,
4924
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M512 144v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48h88l12.3-32.9c7-18.7 24.9-31.1 44.9-31.1h125.5c20 0 37.9 12.4 44.9 31.1L376 96h88c26.5 0 48 21.5 48 48zM376 288c0-66.2-53.8-120-120-120s-120 53.8-120 120 53.8 120 120 120 120-53.8 120-120zm-32 0c0 48.5-39.5 88-88 88s-88-39.5-88-88 39.5-88 88-88 88 39.5 88 88z\"/></svg>",
4925
+ "viewBox": [
4926
+ "0",
4927
+ "0",
4928
+ "512",
4929
+ "512"
4930
+ ],
4931
+ "width": 512,
4932
+ "height": 512,
4933
+ "path": "M512 144v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48h88l12.3-32.9c7-18.7 24.9-31.1 44.9-31.1h125.5c20 0 37.9 12.4 44.9 31.1L376 96h88c26.5 0 48 21.5 48 48zM376 288c0-66.2-53.8-120-120-120s-120 53.8-120 120 53.8 120 120 120 120-53.8 120-120zm-32 0c0 48.5-39.5 88-88 88s-88-39.5-88-88 39.5-88 88-88 88 39.5 88 88z"
4934
+ }
4935
+ }
4936
+ },
4937
+ "camera-retro": {
4938
+ "changes": [
4939
+ "1",
4940
+ "5.0.0"
4941
+ ],
4942
+ "ligatures": [],
4943
+ "search": {
4944
+ "terms": [
4945
+ "photo",
4946
+ "picture",
4947
+ "record"
4948
+ ]
4949
+ },
4950
+ "styles": [
4951
+ "solid"
4952
+ ],
4953
+ "unicode": "f083",
4954
+ "label": "Retro Camera",
4955
+ "svg": {
4956
+ "solid": {
4957
+ "last_modified": 1500927880000,
4958
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm0 32h106c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H38c-3.3 0-6-2.7-6-6V80c0-8.8 7.2-16 16-16zm426 96H38c-3.3 0-6-2.7-6-6v-36c0-3.3 2.7-6 6-6h138l30.2-45.3c1.1-1.7 3-2.7 5-2.7H464c8.8 0 16 7.2 16 16v74c0 3.3-2.7 6-6 6zM256 424c-66.2 0-120-53.8-120-120s53.8-120 120-120 120 53.8 120 120-53.8 120-120 120zm0-208c-48.5 0-88 39.5-88 88s39.5 88 88 88 88-39.5 88-88-39.5-88-88-88zm-48 104c-8.8 0-16-7.2-16-16 0-35.3 28.7-64 64-64 8.8 0 16 7.2 16 16s-7.2 16-16 16c-17.6 0-32 14.4-32 32 0 8.8-7.2 16-16 16z\"/></svg>",
4959
+ "viewBox": [
4960
+ "0",
4961
+ "0",
4962
+ "512",
4963
+ "512"
4964
+ ],
4965
+ "width": 512,
4966
+ "height": 512,
4967
+ "path": "M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm0 32h106c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H38c-3.3 0-6-2.7-6-6V80c0-8.8 7.2-16 16-16zm426 96H38c-3.3 0-6-2.7-6-6v-36c0-3.3 2.7-6 6-6h138l30.2-45.3c1.1-1.7 3-2.7 5-2.7H464c8.8 0 16 7.2 16 16v74c0 3.3-2.7 6-6 6zM256 424c-66.2 0-120-53.8-120-120s53.8-120 120-120 120 53.8 120 120-53.8 120-120 120zm0-208c-48.5 0-88 39.5-88 88s39.5 88 88 88 88-39.5 88-88-39.5-88-88-88zm-48 104c-8.8 0-16-7.2-16-16 0-35.3 28.7-64 64-64 8.8 0 16 7.2 16 16s-7.2 16-16 16c-17.6 0-32 14.4-32 32 0 8.8-7.2 16-16 16z"
4968
+ }
4969
+ }
4970
+ },
4971
+ "cannabis": {
4972
+ "changes": [
4973
+ "5.1.0"
4974
+ ],
4975
+ "ligatures": [],
4976
+ "search": {
4977
+ "terms": [
4978
+ "bud",
4979
+ "chronic",
4980
+ "drugs",
4981
+ "endica",
4982
+ "endo",
4983
+ "ganja",
4984
+ "marijuana",
4985
+ "mary jane",
4986
+ "pot",
4987
+ "reefer",
4988
+ "sativa",
4989
+ "spliff",
4990
+ "weed",
4991
+ "whacky-tabacky"
4992
+ ]
4993
+ },
4994
+ "styles": [
4995
+ "solid"
4996
+ ],
4997
+ "unicode": "f55f",
4998
+ "label": "Cannabis",
4999
+ "svg": {
5000
+ "solid": {
5001
+ "last_modified": 1529520111651,
5002
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M503.47 360.25c-1.56-.82-32.39-16.89-76.78-25.81 64.25-75.12 84.05-161.67 84.93-165.64 1.18-5.33-.44-10.9-4.3-14.77-3.03-3.04-7.12-4.7-11.32-4.7-1.14 0-2.29.12-3.44.38-3.88.85-86.54 19.59-160.58 79.76.01-1.46.01-2.93.01-4.4 0-118.79-59.98-213.72-62.53-217.7A15.973 15.973 0 0 0 256 0c-5.45 0-10.53 2.78-13.47 7.37-2.55 3.98-62.53 98.91-62.53 217.7 0 1.47.01 2.94.01 4.4-74.03-60.16-156.69-78.9-160.58-79.76-1.14-.25-2.29-.38-3.44-.38-4.2 0-8.29 1.66-11.32 4.7A15.986 15.986 0 0 0 .38 168.8c.88 3.97 20.68 90.52 84.93 165.64-44.39 8.92-75.21 24.99-76.78 25.81a16.003 16.003 0 0 0-.02 28.29c2.45 1.29 60.76 31.72 133.49 31.72 6.14 0 11.96-.1 17.5-.31-11.37 22.23-16.52 38.31-16.81 39.22-1.8 5.68-.29 11.89 3.91 16.11a16.019 16.019 0 0 0 16.1 3.99c1.83-.57 37.72-11.99 77.3-39.29V504c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8v-64.01c39.58 27.3 75.47 38.71 77.3 39.29a16.019 16.019 0 0 0 16.1-3.99c4.2-4.22 5.71-10.43 3.91-16.11-.29-.91-5.45-16.99-16.81-39.22 5.54.21 11.37.31 17.5.31 72.72 0 131.04-30.43 133.49-31.72 5.24-2.78 8.52-8.22 8.51-14.15-.01-5.94-3.29-11.39-8.53-14.15z\"/></svg>",
5003
+ "viewBox": [
5004
+ "0",
5005
+ "0",
5006
+ "512",
5007
+ "512"
5008
+ ],
5009
+ "width": 512,
5010
+ "height": 512,
5011
+ "path": "M503.47 360.25c-1.56-.82-32.39-16.89-76.78-25.81 64.25-75.12 84.05-161.67 84.93-165.64 1.18-5.33-.44-10.9-4.3-14.77-3.03-3.04-7.12-4.7-11.32-4.7-1.14 0-2.29.12-3.44.38-3.88.85-86.54 19.59-160.58 79.76.01-1.46.01-2.93.01-4.4 0-118.79-59.98-213.72-62.53-217.7A15.973 15.973 0 0 0 256 0c-5.45 0-10.53 2.78-13.47 7.37-2.55 3.98-62.53 98.91-62.53 217.7 0 1.47.01 2.94.01 4.4-74.03-60.16-156.69-78.9-160.58-79.76-1.14-.25-2.29-.38-3.44-.38-4.2 0-8.29 1.66-11.32 4.7A15.986 15.986 0 0 0 .38 168.8c.88 3.97 20.68 90.52 84.93 165.64-44.39 8.92-75.21 24.99-76.78 25.81a16.003 16.003 0 0 0-.02 28.29c2.45 1.29 60.76 31.72 133.49 31.72 6.14 0 11.96-.1 17.5-.31-11.37 22.23-16.52 38.31-16.81 39.22-1.8 5.68-.29 11.89 3.91 16.11a16.019 16.019 0 0 0 16.1 3.99c1.83-.57 37.72-11.99 77.3-39.29V504c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8v-64.01c39.58 27.3 75.47 38.71 77.3 39.29a16.019 16.019 0 0 0 16.1-3.99c4.2-4.22 5.71-10.43 3.91-16.11-.29-.91-5.45-16.99-16.81-39.22 5.54.21 11.37.31 17.5.31 72.72 0 131.04-30.43 133.49-31.72 5.24-2.78 8.52-8.22 8.51-14.15-.01-5.94-3.29-11.39-8.53-14.15z"
5012
+ }
5013
+ }
5014
+ },
5015
+ "capsules": {
5016
+ "changes": [
5017
+ "5.0.7"
5018
+ ],
5019
+ "ligatures": [],
5020
+ "search": {
5021
+ "terms": [
5022
+ "drugs",
5023
+ "medicine"
5024
+ ]
5025
+ },
5026
+ "styles": [
5027
+ "solid"
5028
+ ],
5029
+ "unicode": "f46b",
5030
+ "label": "Capsules",
5031
+ "svg": {
5032
+ "solid": {
5033
+ "last_modified": 1521653821446,
5034
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M555.3 300.1L424.2 112.8C401.9 81 366.4 64 330.4 64c-22.6 0-45.5 6.7-65.5 20.7-19.7 13.8-33.7 32.8-41.5 53.8C220.5 79.2 172 32 112 32 50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V218.9c3.3 8.6 7.3 17.1 12.8 25L368 431.2c22.2 31.8 57.7 48.8 93.8 48.8 22.7 0 45.5-6.7 65.5-20.7 51.7-36.2 64.2-107.5 28-159.2zM160 256H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm194.8 44.9l-65.6-93.7c-7.7-11-10.7-24.4-8.3-37.6 2.3-13.2 9.7-24.8 20.7-32.5 8.5-6 18.5-9.1 28.8-9.1 16.5 0 31.9 8 41.3 21.5l65.6 93.7-82.5 57.7z\"/></svg>",
5035
+ "viewBox": [
5036
+ "0",
5037
+ "0",
5038
+ "576",
5039
+ "512"
5040
+ ],
5041
+ "width": 576,
5042
+ "height": 512,
5043
+ "path": "M555.3 300.1L424.2 112.8C401.9 81 366.4 64 330.4 64c-22.6 0-45.5 6.7-65.5 20.7-19.7 13.8-33.7 32.8-41.5 53.8C220.5 79.2 172 32 112 32 50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V218.9c3.3 8.6 7.3 17.1 12.8 25L368 431.2c22.2 31.8 57.7 48.8 93.8 48.8 22.7 0 45.5-6.7 65.5-20.7 51.7-36.2 64.2-107.5 28-159.2zM160 256H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm194.8 44.9l-65.6-93.7c-7.7-11-10.7-24.4-8.3-37.6 2.3-13.2 9.7-24.8 20.7-32.5 8.5-6 18.5-9.1 28.8-9.1 16.5 0 31.9 8 41.3 21.5l65.6 93.7-82.5 57.7z"
5044
+ }
5045
+ }
5046
+ },
5047
+ "car": {
5048
+ "changes": [
5049
+ "4.1",
5050
+ "5.0.0",
5051
+ "5.2.0"
5052
+ ],
5053
+ "ligatures": [],
5054
+ "search": {
5055
+ "terms": [
5056
+ "machine",
5057
+ "transportation",
5058
+ "vehicle"
5059
+ ]
5060
+ },
5061
+ "styles": [
5062
+ "solid"
5063
+ ],
5064
+ "unicode": "f1b9",
5065
+ "label": "Car",
5066
+ "svg": {
5067
+ "solid": {
5068
+ "last_modified": 1532362831521,
5069
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M499.99 176h-59.87l-16.64-41.6C406.38 91.63 365.57 64 319.5 64h-127c-46.06 0-86.88 27.63-103.99 70.4L71.87 176H12.01C4.2 176-1.53 183.34.37 190.91l6 24C7.7 220.25 12.5 224 18.01 224h20.07C24.65 235.73 16 252.78 16 272v48c0 16.12 6.16 30.67 16 41.93V416c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h256v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-54.07c9.84-11.25 16-25.8 16-41.93v-48c0-19.22-8.65-36.27-22.07-48H494c5.51 0 10.31-3.75 11.64-9.09l6-24c1.89-7.57-3.84-14.91-11.65-14.91zm-352.06-17.83c7.29-18.22 24.94-30.17 44.57-30.17h127c19.63 0 37.28 11.95 44.57 30.17L384 208H128l19.93-49.83zM96 319.8c-19.2 0-32-12.76-32-31.9S76.8 256 96 256s48 28.71 48 47.85-28.8 15.95-48 15.95zm320 0c-19.2 0-48 3.19-48-15.95S396.8 256 416 256s32 12.76 32 31.9-12.8 31.9-32 31.9z\"/></svg>",
5070
+ "viewBox": [
5071
+ "0",
5072
+ "0",
5073
+ "512",
5074
+ "512"
5075
+ ],
5076
+ "width": 512,
5077
+ "height": 512,
5078
+ "path": "M499.99 176h-59.87l-16.64-41.6C406.38 91.63 365.57 64 319.5 64h-127c-46.06 0-86.88 27.63-103.99 70.4L71.87 176H12.01C4.2 176-1.53 183.34.37 190.91l6 24C7.7 220.25 12.5 224 18.01 224h20.07C24.65 235.73 16 252.78 16 272v48c0 16.12 6.16 30.67 16 41.93V416c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h256v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-54.07c9.84-11.25 16-25.8 16-41.93v-48c0-19.22-8.65-36.27-22.07-48H494c5.51 0 10.31-3.75 11.64-9.09l6-24c1.89-7.57-3.84-14.91-11.65-14.91zm-352.06-17.83c7.29-18.22 24.94-30.17 44.57-30.17h127c19.63 0 37.28 11.95 44.57 30.17L384 208H128l19.93-49.83zM96 319.8c-19.2 0-32-12.76-32-31.9S76.8 256 96 256s48 28.71 48 47.85-28.8 15.95-48 15.95zm320 0c-19.2 0-48 3.19-48-15.95S396.8 256 416 256s32 12.76 32 31.9-12.8 31.9-32 31.9z"
5079
+ }
5080
+ }
5081
+ },
5082
+ "car-alt": {
5083
+ "changes": [
5084
+ "5.2.0"
5085
+ ],
5086
+ "ligatures": [],
5087
+ "search": {
5088
+ "terms": []
5089
+ },
5090
+ "styles": [
5091
+ "solid"
5092
+ ],
5093
+ "unicode": "f5de",
5094
+ "label": "Car Alt",
5095
+ "svg": {
5096
+ "solid": {
5097
+ "last_modified": 1532362831519,
5098
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 480 512\"><path d=\"M438.66 212.33l-11.24-28.1-19.93-49.83C390.38 91.63 349.57 64 303.5 64h-127c-46.06 0-86.88 27.63-103.99 70.4l-19.93 49.83-11.24 28.1C17.22 221.5 0 244.66 0 272v48c0 16.12 6.16 30.67 16 41.93V416c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h256v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-54.07c9.84-11.25 16-25.8 16-41.93v-48c0-27.34-17.22-50.5-41.34-59.67zm-306.73-54.16c7.29-18.22 24.94-30.17 44.57-30.17h127c19.63 0 37.28 11.95 44.57 30.17L368 208H112l19.93-49.83zM80 319.8c-19.2 0-32-12.76-32-31.9S60.8 256 80 256s48 28.71 48 47.85-28.8 15.95-48 15.95zm320 0c-19.2 0-48 3.19-48-15.95S380.8 256 400 256s32 12.76 32 31.9-12.8 31.9-32 31.9z\"/></svg>",
5099
+ "viewBox": [
5100
+ "0",
5101
+ "0",
5102
+ "480",
5103
+ "512"
5104
+ ],
5105
+ "width": 480,
5106
+ "height": 512,
5107
+ "path": "M438.66 212.33l-11.24-28.1-19.93-49.83C390.38 91.63 349.57 64 303.5 64h-127c-46.06 0-86.88 27.63-103.99 70.4l-19.93 49.83-11.24 28.1C17.22 221.5 0 244.66 0 272v48c0 16.12 6.16 30.67 16 41.93V416c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h256v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-54.07c9.84-11.25 16-25.8 16-41.93v-48c0-27.34-17.22-50.5-41.34-59.67zm-306.73-54.16c7.29-18.22 24.94-30.17 44.57-30.17h127c19.63 0 37.28 11.95 44.57 30.17L368 208H112l19.93-49.83zM80 319.8c-19.2 0-32-12.76-32-31.9S60.8 256 80 256s48 28.71 48 47.85-28.8 15.95-48 15.95zm320 0c-19.2 0-48 3.19-48-15.95S380.8 256 400 256s32 12.76 32 31.9-12.8 31.9-32 31.9z"
5108
+ }
5109
+ }
5110
+ },
5111
+ "car-battery": {
5112
+ "changes": [
5113
+ "5.2.0"
5114
+ ],
5115
+ "ligatures": [],
5116
+ "search": {
5117
+ "terms": []
5118
+ },
5119
+ "styles": [
5120
+ "solid"
5121
+ ],
5122
+ "unicode": "f5df",
5123
+ "label": "Car Battery",
5124
+ "svg": {
5125
+ "solid": {
5126
+ "last_modified": 1532362831519,
5127
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M480 128h-32V80c0-8.84-7.16-16-16-16h-96c-8.84 0-16 7.16-16 16v48H192V80c0-8.84-7.16-16-16-16H80c-8.84 0-16 7.16-16 16v48H32c-17.67 0-32 14.33-32 32v256c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32V160c0-17.67-14.33-32-32-32zM192 264c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16zm256 0c0 4.42-3.58 8-8 8h-40v40c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-40h-40c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h40v-40c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v40h40c4.42 0 8 3.58 8 8v16z\"/></svg>",
5128
+ "viewBox": [
5129
+ "0",
5130
+ "0",
5131
+ "512",
5132
+ "512"
5133
+ ],
5134
+ "width": 512,
5135
+ "height": 512,
5136
+ "path": "M480 128h-32V80c0-8.84-7.16-16-16-16h-96c-8.84 0-16 7.16-16 16v48H192V80c0-8.84-7.16-16-16-16H80c-8.84 0-16 7.16-16 16v48H32c-17.67 0-32 14.33-32 32v256c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32V160c0-17.67-14.33-32-32-32zM192 264c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16zm256 0c0 4.42-3.58 8-8 8h-40v40c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-40h-40c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h40v-40c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v40h40c4.42 0 8 3.58 8 8v16z"
5137
+ }
5138
+ }
5139
+ },
5140
+ "car-crash": {
5141
+ "changes": [
5142
+ "5.2.0"
5143
+ ],
5144
+ "ligatures": [],
5145
+ "search": {
5146
+ "terms": []
5147
+ },
5148
+ "styles": [
5149
+ "solid"
5150
+ ],
5151
+ "unicode": "f5e1",
5152
+ "label": "Car Crash",
5153
+ "svg": {
5154
+ "solid": {
5155
+ "last_modified": 1532362831520,
5156
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M143.25 220.81l-12.42 46.37c-3.01 11.25-3.63 22.89-2.41 34.39l-35.2 28.98c-6.57 5.41-16.31-.43-14.62-8.77l15.44-76.68c1.06-5.26-2.66-10.28-8-10.79l-77.86-7.55c-8.47-.82-11.23-11.83-4.14-16.54l65.15-43.3c4.46-2.97 5.38-9.15 1.98-13.29L21.46 93.22c-5.41-6.57.43-16.3 8.78-14.62l76.68 15.44c5.26 1.06 10.28-2.66 10.8-8l7.55-77.86c.82-8.48 11.83-11.23 16.55-4.14l43.3 65.14c2.97 4.46 9.15 5.38 13.29 1.98l60.4-49.71c6.57-5.41 16.3.43 14.62 8.77L262.1 86.38c-2.71 3.05-5.43 6.09-7.91 9.4l-32.15 42.97-10.71 14.32c-32.73 8.76-59.18 34.53-68.08 67.74zm494.57 132.51l-12.42 46.36c-3.13 11.68-9.38 21.61-17.55 29.36a66.876 66.876 0 0 1-8.76 7l-13.99 52.23c-1.14 4.27-3.1 8.1-5.65 11.38-7.67 9.84-20.74 14.68-33.54 11.25L515 502.62c-17.07-4.57-27.2-22.12-22.63-39.19l8.28-30.91-247.28-66.26-8.28 30.91c-4.57 17.07-22.12 27.2-39.19 22.63l-30.91-8.28c-12.8-3.43-21.7-14.16-23.42-26.51-.57-4.12-.35-8.42.79-12.68l13.99-52.23a66.62 66.62 0 0 1-4.09-10.45c-3.2-10.79-3.65-22.52-.52-34.2l12.42-46.37c5.31-19.8 19.36-34.83 36.89-42.21a64.336 64.336 0 0 1 18.49-4.72l18.13-24.23 32.15-42.97c3.45-4.61 7.19-8.9 11.2-12.84 8-7.89 17.03-14.44 26.74-19.51 4.86-2.54 9.89-4.71 15.05-6.49 10.33-3.58 21.19-5.63 32.24-6.04 11.05-.41 22.31.82 33.43 3.8l122.68 32.87c11.12 2.98 21.48 7.54 30.85 13.43a111.11 111.11 0 0 1 34.69 34.5c8.82 13.88 14.64 29.84 16.68 46.99l6.36 53.29 3.59 30.05a64.49 64.49 0 0 1 22.74 29.93c4.39 11.88 5.29 25.19 1.75 38.39zM255.58 234.34c-18.55-4.97-34.21 4.04-39.17 22.53-4.96 18.49 4.11 34.12 22.65 39.09 18.55 4.97 45.54 15.51 50.49-2.98 4.96-18.49-15.43-53.67-33.97-58.64zm290.61 28.17l-6.36-53.29c-.58-4.87-1.89-9.53-3.82-13.86-5.8-12.99-17.2-23.01-31.42-26.82l-122.68-32.87a48.008 48.008 0 0 0-50.86 17.61l-32.15 42.97 172 46.08 75.29 20.18zm18.49 54.65c-18.55-4.97-53.8 15.31-58.75 33.79-4.95 18.49 23.69 22.86 42.24 27.83 18.55 4.97 34.21-4.04 39.17-22.53 4.95-18.48-4.11-34.12-22.66-39.09z\"/></svg>",
5157
+ "viewBox": [
5158
+ "0",
5159
+ "0",
5160
+ "640",
5161
+ "512"
5162
+ ],
5163
+ "width": 640,
5164
+ "height": 512,
5165
+ "path": "M143.25 220.81l-12.42 46.37c-3.01 11.25-3.63 22.89-2.41 34.39l-35.2 28.98c-6.57 5.41-16.31-.43-14.62-8.77l15.44-76.68c1.06-5.26-2.66-10.28-8-10.79l-77.86-7.55c-8.47-.82-11.23-11.83-4.14-16.54l65.15-43.3c4.46-2.97 5.38-9.15 1.98-13.29L21.46 93.22c-5.41-6.57.43-16.3 8.78-14.62l76.68 15.44c5.26 1.06 10.28-2.66 10.8-8l7.55-77.86c.82-8.48 11.83-11.23 16.55-4.14l43.3 65.14c2.97 4.46 9.15 5.38 13.29 1.98l60.4-49.71c6.57-5.41 16.3.43 14.62 8.77L262.1 86.38c-2.71 3.05-5.43 6.09-7.91 9.4l-32.15 42.97-10.71 14.32c-32.73 8.76-59.18 34.53-68.08 67.74zm494.57 132.51l-12.42 46.36c-3.13 11.68-9.38 21.61-17.55 29.36a66.876 66.876 0 0 1-8.76 7l-13.99 52.23c-1.14 4.27-3.1 8.1-5.65 11.38-7.67 9.84-20.74 14.68-33.54 11.25L515 502.62c-17.07-4.57-27.2-22.12-22.63-39.19l8.28-30.91-247.28-66.26-8.28 30.91c-4.57 17.07-22.12 27.2-39.19 22.63l-30.91-8.28c-12.8-3.43-21.7-14.16-23.42-26.51-.57-4.12-.35-8.42.79-12.68l13.99-52.23a66.62 66.62 0 0 1-4.09-10.45c-3.2-10.79-3.65-22.52-.52-34.2l12.42-46.37c5.31-19.8 19.36-34.83 36.89-42.21a64.336 64.336 0 0 1 18.49-4.72l18.13-24.23 32.15-42.97c3.45-4.61 7.19-8.9 11.2-12.84 8-7.89 17.03-14.44 26.74-19.51 4.86-2.54 9.89-4.71 15.05-6.49 10.33-3.58 21.19-5.63 32.24-6.04 11.05-.41 22.31.82 33.43 3.8l122.68 32.87c11.12 2.98 21.48 7.54 30.85 13.43a111.11 111.11 0 0 1 34.69 34.5c8.82 13.88 14.64 29.84 16.68 46.99l6.36 53.29 3.59 30.05a64.49 64.49 0 0 1 22.74 29.93c4.39 11.88 5.29 25.19 1.75 38.39zM255.58 234.34c-18.55-4.97-34.21 4.04-39.17 22.53-4.96 18.49 4.11 34.12 22.65 39.09 18.55 4.97 45.54 15.51 50.49-2.98 4.96-18.49-15.43-53.67-33.97-58.64zm290.61 28.17l-6.36-53.29c-.58-4.87-1.89-9.53-3.82-13.86-5.8-12.99-17.2-23.01-31.42-26.82l-122.68-32.87a48.008 48.008 0 0 0-50.86 17.61l-32.15 42.97 172 46.08 75.29 20.18zm18.49 54.65c-18.55-4.97-53.8 15.31-58.75 33.79-4.95 18.49 23.69 22.86 42.24 27.83 18.55 4.97 34.21-4.04 39.17-22.53 4.95-18.48-4.11-34.12-22.66-39.09z"
5166
+ }
5167
+ }
5168
+ },
5169
+ "car-side": {
5170
+ "changes": [
5171
+ "5.2.0"
5172
+ ],
5173
+ "ligatures": [],
5174
+ "search": {
5175
+ "terms": []
5176
+ },
5177
+ "styles": [
5178
+ "solid"
5179
+ ],
5180
+ "unicode": "f5e4",
5181
+ "label": "Car Side",
5182
+ "svg": {
5183
+ "solid": {
5184
+ "last_modified": 1532362831521,
5185
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M544 192h-16L419.22 56.02A64.025 64.025 0 0 0 369.24 32H155.33c-26.17 0-49.7 15.93-59.42 40.23L48 194.26C20.44 201.4 0 226.21 0 256v112c0 8.84 7.16 16 16 16h48c0 53.02 42.98 96 96 96s96-42.98 96-96h128c0 53.02 42.98 96 96 96s96-42.98 96-96h48c8.84 0 16-7.16 16-16v-80c0-53.02-42.98-96-96-96zM160 432c-26.47 0-48-21.53-48-48s21.53-48 48-48 48 21.53 48 48-21.53 48-48 48zm72-240H116.93l38.4-96H232v96zm48 0V96h89.24l76.8 96H280zm200 240c-26.47 0-48-21.53-48-48s21.53-48 48-48 48 21.53 48 48-21.53 48-48 48z\"/></svg>",
5186
+ "viewBox": [
5187
+ "0",
5188
+ "0",
5189
+ "640",
5190
+ "512"
5191
+ ],
5192
+ "width": 640,
5193
+ "height": 512,
5194
+ "path": "M544 192h-16L419.22 56.02A64.025 64.025 0 0 0 369.24 32H155.33c-26.17 0-49.7 15.93-59.42 40.23L48 194.26C20.44 201.4 0 226.21 0 256v112c0 8.84 7.16 16 16 16h48c0 53.02 42.98 96 96 96s96-42.98 96-96h128c0 53.02 42.98 96 96 96s96-42.98 96-96h48c8.84 0 16-7.16 16-16v-80c0-53.02-42.98-96-96-96zM160 432c-26.47 0-48-21.53-48-48s21.53-48 48-48 48 21.53 48 48-21.53 48-48 48zm72-240H116.93l38.4-96H232v96zm48 0V96h89.24l76.8 96H280zm200 240c-26.47 0-48-21.53-48-48s21.53-48 48-48 48 21.53 48 48-21.53 48-48 48z"
5195
+ }
5196
+ }
5197
+ },
5198
+ "caret-down": {
5199
+ "changes": [
5200
+ "2",
5201
+ "5.0.0"
5202
+ ],
5203
+ "ligatures": [],
5204
+ "search": {
5205
+ "terms": [
5206
+ "arrow",
5207
+ "dropdown",
5208
+ "menu",
5209
+ "more",
5210
+ "triangle down"
5211
+ ]
5212
+ },
5213
+ "styles": [
5214
+ "solid"
5215
+ ],
5216
+ "unicode": "f0d7",
5217
+ "label": "Caret Down",
5218
+ "svg": {
5219
+ "solid": {
5220
+ "last_modified": 1500927880000,
5221
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 320 512\"><path d=\"M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z\"/></svg>",
5222
+ "viewBox": [
5223
+ "0",
5224
+ "0",
5225
+ "320",
5226
+ "512"
5227
+ ],
5228
+ "width": 320,
5229
+ "height": 512,
5230
+ "path": "M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z"
5231
+ }
5232
+ }
5233
+ },
5234
+ "caret-left": {
5235
+ "changes": [
5236
+ "2",
5237
+ "5.0.0"
5238
+ ],
5239
+ "ligatures": [],
5240
+ "search": {
5241
+ "terms": [
5242
+ "arrow",
5243
+ "back",
5244
+ "previous",
5245
+ "triangle left"
5246
+ ]
5247
+ },
5248
+ "styles": [
5249
+ "solid"
5250
+ ],
5251
+ "unicode": "f0d9",
5252
+ "label": "Caret Left",
5253
+ "svg": {
5254
+ "solid": {
5255
+ "last_modified": 1500927880000,
5256
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 192 512\"><path d=\"M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z\"/></svg>",
5257
+ "viewBox": [
5258
+ "0",
5259
+ "0",
5260
+ "192",
5261
+ "512"
5262
+ ],
5263
+ "width": 192,
5264
+ "height": 512,
5265
+ "path": "M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z"
5266
+ }
5267
+ }
5268
+ },
5269
+ "caret-right": {
5270
+ "changes": [
5271
+ "2",
5272
+ "5.0.0"
5273
+ ],
5274
+ "ligatures": [],
5275
+ "search": {
5276
+ "terms": [
5277
+ "arrow",
5278
+ "forward",
5279
+ "next",
5280
+ "triangle right"
5281
+ ]
5282
+ },
5283
+ "styles": [
5284
+ "solid"
5285
+ ],
5286
+ "unicode": "f0da",
5287
+ "label": "Caret Right",
5288
+ "svg": {
5289
+ "solid": {
5290
+ "last_modified": 1500927880000,
5291
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 192 512\"><path d=\"M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z\"/></svg>",
5292
+ "viewBox": [
5293
+ "0",
5294
+ "0",
5295
+ "192",
5296
+ "512"
5297
+ ],
5298
+ "width": 192,
5299
+ "height": 512,
5300
+ "path": "M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z"
5301
+ }
5302
+ }
5303
+ },
5304
+ "caret-square-down": {
5305
+ "changes": [
5306
+ "3.2",
5307
+ "5.0.0"
5308
+ ],
5309
+ "ligatures": [],
5310
+ "search": {
5311
+ "terms": [
5312
+ "caret-square-o-down",
5313
+ "dropdown",
5314
+ "menu",
5315
+ "more"
5316
+ ]
5317
+ },
5318
+ "styles": [
5319
+ "solid",
5320
+ "regular"
5321
+ ],
5322
+ "unicode": "f150",
5323
+ "label": "Caret Square Down",
5324
+ "svg": {
5325
+ "solid": {
5326
+ "last_modified": 1500927880000,
5327
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM92.5 220.5l123 123c4.7 4.7 12.3 4.7 17 0l123-123c7.6-7.6 2.2-20.5-8.5-20.5H101c-10.7 0-16.1 12.9-8.5 20.5z\"/></svg>",
5328
+ "viewBox": [
5329
+ "0",
5330
+ "0",
5331
+ "448",
5332
+ "512"
5333
+ ],
5334
+ "width": 448,
5335
+ "height": 512,
5336
+ "path": "M448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM92.5 220.5l123 123c4.7 4.7 12.3 4.7 17 0l123-123c7.6-7.6 2.2-20.5-8.5-20.5H101c-10.7 0-16.1 12.9-8.5 20.5z"
5337
+ },
5338
+ "regular": {
5339
+ "last_modified": 1500927880000,
5340
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M125.1 208h197.8c10.7 0 16.1 13 8.5 20.5l-98.9 98.3c-4.7 4.7-12.2 4.7-16.9 0l-98.9-98.3c-7.7-7.5-2.3-20.5 8.4-20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z\"/></svg>",
5341
+ "viewBox": [
5342
+ "0",
5343
+ "0",
5344
+ "448",
5345
+ "512"
5346
+ ],
5347
+ "width": 448,
5348
+ "height": 512,
5349
+ "path": "M125.1 208h197.8c10.7 0 16.1 13 8.5 20.5l-98.9 98.3c-4.7 4.7-12.2 4.7-16.9 0l-98.9-98.3c-7.7-7.5-2.3-20.5 8.4-20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"
5350
+ }
5351
+ }
5352
+ },
5353
+ "caret-square-left": {
5354
+ "changes": [
5355
+ "4",
5356
+ "5.0.0"
5357
+ ],
5358
+ "ligatures": [],
5359
+ "search": {
5360
+ "terms": [
5361
+ "back",
5362
+ "caret-square-o-left",
5363
+ "previous"
5364
+ ]
5365
+ },
5366
+ "styles": [
5367
+ "solid",
5368
+ "regular"
5369
+ ],
5370
+ "unicode": "f191",
5371
+ "label": "Caret Square Left",
5372
+ "svg": {
5373
+ "solid": {
5374
+ "last_modified": 1500927880000,
5375
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM259.515 124.485l-123.03 123.03c-4.686 4.686-4.686 12.284 0 16.971l123.029 123.029c7.56 7.56 20.485 2.206 20.485-8.485V132.971c.001-10.691-12.925-16.045-20.484-8.486z\"/></svg>",
5376
+ "viewBox": [
5377
+ "0",
5378
+ "0",
5379
+ "448",
5380
+ "512"
5381
+ ],
5382
+ "width": 448,
5383
+ "height": 512,
5384
+ "path": "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM259.515 124.485l-123.03 123.03c-4.686 4.686-4.686 12.284 0 16.971l123.029 123.029c7.56 7.56 20.485 2.206 20.485-8.485V132.971c.001-10.691-12.925-16.045-20.484-8.486z"
5385
+ },
5386
+ "regular": {
5387
+ "last_modified": 1500927880000,
5388
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M272 157.1v197.8c0 10.7-13 16.1-20.5 8.5l-98.3-98.9c-4.7-4.7-4.7-12.2 0-16.9l98.3-98.9c7.5-7.7 20.5-2.3 20.5 8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z\"/></svg>",
5389
+ "viewBox": [
5390
+ "0",
5391
+ "0",
5392
+ "448",
5393
+ "512"
5394
+ ],
5395
+ "width": 448,
5396
+ "height": 512,
5397
+ "path": "M272 157.1v197.8c0 10.7-13 16.1-20.5 8.5l-98.3-98.9c-4.7-4.7-4.7-12.2 0-16.9l98.3-98.9c7.5-7.7 20.5-2.3 20.5 8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"
5398
+ }
5399
+ }
5400
+ },
5401
+ "caret-square-right": {
5402
+ "changes": [
5403
+ "3.2",
5404
+ "5.0.0"
5405
+ ],
5406
+ "ligatures": [],
5407
+ "search": {
5408
+ "terms": [
5409
+ "caret-square-o-right",
5410
+ "forward",
5411
+ "next"
5412
+ ]
5413
+ },
5414
+ "styles": [
5415
+ "solid",
5416
+ "regular"
5417
+ ],
5418
+ "unicode": "f152",
5419
+ "label": "Caret Square Right",
5420
+ "svg": {
5421
+ "solid": {
5422
+ "last_modified": 1500927880000,
5423
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M48 32h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48zm140.485 355.515l123.029-123.029c4.686-4.686 4.686-12.284 0-16.971l-123.029-123.03c-7.56-7.56-20.485-2.206-20.485 8.485v246.059c0 10.691 12.926 16.045 20.485 8.486z\"/></svg>",
5424
+ "viewBox": [
5425
+ "0",
5426
+ "0",
5427
+ "448",
5428
+ "512"
5429
+ ],
5430
+ "width": 448,
5431
+ "height": 512,
5432
+ "path": "M48 32h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48zm140.485 355.515l123.029-123.029c4.686-4.686 4.686-12.284 0-16.971l-123.029-123.03c-7.56-7.56-20.485-2.206-20.485 8.485v246.059c0 10.691 12.926 16.045 20.485 8.486z"
5433
+ },
5434
+ "regular": {
5435
+ "last_modified": 1500927880000,
5436
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M176 354.9V157.1c0-10.7 13-16.1 20.5-8.5l98.3 98.9c4.7 4.7 4.7 12.2 0 16.9l-98.3 98.9c-7.5 7.7-20.5 2.3-20.5-8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z\"/></svg>",
5437
+ "viewBox": [
5438
+ "0",
5439
+ "0",
5440
+ "448",
5441
+ "512"
5442
+ ],
5443
+ "width": 448,
5444
+ "height": 512,
5445
+ "path": "M176 354.9V157.1c0-10.7 13-16.1 20.5-8.5l98.3 98.9c4.7 4.7 4.7 12.2 0 16.9l-98.3 98.9c-7.5 7.7-20.5 2.3-20.5-8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"
5446
+ }
5447
+ }
5448
+ },
5449
+ "caret-square-up": {
5450
+ "changes": [
5451
+ "3.2",
5452
+ "5.0.0"
5453
+ ],
5454
+ "ligatures": [],
5455
+ "search": {
5456
+ "terms": [
5457
+ "caret-square-o-up"
5458
+ ]
5459
+ },
5460
+ "styles": [
5461
+ "solid",
5462
+ "regular"
5463
+ ],
5464
+ "unicode": "f151",
5465
+ "label": "Caret Square Up",
5466
+ "svg": {
5467
+ "solid": {
5468
+ "last_modified": 1500927880000,
5469
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M0 432V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm355.515-140.485l-123.03-123.03c-4.686-4.686-12.284-4.686-16.971 0L92.485 291.515c-7.56 7.56-2.206 20.485 8.485 20.485h246.059c10.691 0 16.045-12.926 8.486-20.485z\"/></svg>",
5470
+ "viewBox": [
5471
+ "0",
5472
+ "0",
5473
+ "448",
5474
+ "512"
5475
+ ],
5476
+ "width": 448,
5477
+ "height": 512,
5478
+ "path": "M0 432V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm355.515-140.485l-123.03-123.03c-4.686-4.686-12.284-4.686-16.971 0L92.485 291.515c-7.56 7.56-2.206 20.485 8.485 20.485h246.059c10.691 0 16.045-12.926 8.486-20.485z"
5479
+ },
5480
+ "regular": {
5481
+ "last_modified": 1500927880000,
5482
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M322.9 304H125.1c-10.7 0-16.1-13-8.5-20.5l98.9-98.3c4.7-4.7 12.2-4.7 16.9 0l98.9 98.3c7.7 7.5 2.3 20.5-8.4 20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z\"/></svg>",
5483
+ "viewBox": [
5484
+ "0",
5485
+ "0",
5486
+ "448",
5487
+ "512"
5488
+ ],
5489
+ "width": 448,
5490
+ "height": 512,
5491
+ "path": "M322.9 304H125.1c-10.7 0-16.1-13-8.5-20.5l98.9-98.3c4.7-4.7 12.2-4.7 16.9 0l98.9 98.3c7.7 7.5 2.3 20.5-8.4 20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"
5492
+ }
5493
+ }
5494
+ },
5495
+ "caret-up": {
5496
+ "changes": [
5497
+ "2",
5498
+ "5.0.0"
5499
+ ],
5500
+ "ligatures": [],
5501
+ "search": {
5502
+ "terms": [
5503
+ "arrow",
5504
+ "triangle up"
5505
+ ]
5506
+ },
5507
+ "styles": [
5508
+ "solid"
5509
+ ],
5510
+ "unicode": "f0d8",
5511
+ "label": "Caret Up",
5512
+ "svg": {
5513
+ "solid": {
5514
+ "last_modified": 1500927880000,
5515
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 320 512\"><path d=\"M288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z\"/></svg>",
5516
+ "viewBox": [
5517
+ "0",
5518
+ "0",
5519
+ "320",
5520
+ "512"
5521
+ ],
5522
+ "width": 320,
5523
+ "height": 512,
5524
+ "path": "M288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z"
5525
+ }
5526
+ }
5527
+ },
5528
+ "cart-arrow-down": {
5529
+ "changes": [
5530
+ "4.3",
5531
+ "5.0.0"
5532
+ ],
5533
+ "ligatures": [],
5534
+ "search": {
5535
+ "terms": [
5536
+ "shopping"
5537
+ ]
5538
+ },
5539
+ "styles": [
5540
+ "solid"
5541
+ ],
5542
+ "unicode": "f218",
5543
+ "label": "Shopping Cart Arrow Down",
5544
+ "svg": {
5545
+ "solid": {
5546
+ "last_modified": 1500927880000,
5547
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"/></svg>",
5548
+ "viewBox": [
5549
+ "0",
5550
+ "0",
5551
+ "576",
5552
+ "512"
5553
+ ],
5554
+ "width": 576,
5555
+ "height": 512,
5556
+ "path": "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z"
5557
+ }
5558
+ }
5559
+ },
5560
+ "cart-plus": {
5561
+ "changes": [
5562
+ "4.3",
5563
+ "5.0.0"
5564
+ ],
5565
+ "ligatures": [],
5566
+ "search": {
5567
+ "terms": [
5568
+ "add",
5569
+ "shopping"
5570
+ ]
5571
+ },
5572
+ "styles": [
5573
+ "solid"
5574
+ ],
5575
+ "unicode": "f217",
5576
+ "label": "Add to Shopping Cart",
5577
+ "svg": {
5578
+ "solid": {
5579
+ "last_modified": 1500927880000,
5580
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM408 168h-48v-40c0-8.837-7.163-16-16-16h-16c-8.837 0-16 7.163-16 16v40h-48c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h48v40c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-40h48c8.837 0 16-7.163 16-16v-16c0-8.837-7.163-16-16-16z\"/></svg>",
5581
+ "viewBox": [
5582
+ "0",
5583
+ "0",
5584
+ "576",
5585
+ "512"
5586
+ ],
5587
+ "width": 576,
5588
+ "height": 512,
5589
+ "path": "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM408 168h-48v-40c0-8.837-7.163-16-16-16h-16c-8.837 0-16 7.163-16 16v40h-48c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h48v40c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-40h48c8.837 0 16-7.163 16-16v-16c0-8.837-7.163-16-16-16z"
5590
+ }
5591
+ }
5592
+ },
5593
+ "cc-amazon-pay": {
5594
+ "changes": [
5595
+ "5.0.2"
5596
+ ],
5597
+ "ligatures": [],
5598
+ "search": {
5599
+ "terms": []
5600
+ },
5601
+ "styles": [
5602
+ "brands"
5603
+ ],
5604
+ "unicode": "f42d",
5605
+ "label": "Amazon Pay Credit Card",
5606
+ "svg": {
5607
+ "brands": {
5608
+ "last_modified": 1513713060430,
5609
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M124.7 201.8c.1-11.8 0-23.5 0-35.3v-35.3c0-1.3.4-2 1.4-2.7 11.5-8 24.1-12.1 38.2-11.1 12.5.9 22.7 7 28.1 21.7 3.3 8.9 4.1 18.2 4.1 27.7 0 8.7-.7 17.3-3.4 25.6-5.7 17.8-18.7 24.7-35.7 23.9-11.7-.5-21.9-5-31.4-11.7-.9-.8-1.4-1.6-1.3-2.8zm154.9 14.6c4.6 1.8 9.3 2 14.1 1.5 11.6-1.2 21.9-5.7 31.3-12.5.9-.6 1.3-1.3 1.3-2.5-.1-3.9 0-7.9 0-11.8 0-4-.1-8 0-12 0-1.4-.4-2-1.8-2.2-7-.9-13.9-2.2-20.9-2.9-7-.6-14-.3-20.8 1.9-6.7 2.2-11.7 6.2-13.7 13.1-1.6 5.4-1.6 10.8.1 16.2 1.6 5.5 5.2 9.2 10.4 11.2zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zm-207.5 23.9c.4 1.7.9 3.4 1.6 5.1 16.5 40.6 32.9 81.3 49.5 121.9 1.4 3.5 1.7 6.4.2 9.9-2.8 6.2-4.9 12.6-7.8 18.7-2.6 5.5-6.7 9.5-12.7 11.2-4.2 1.1-8.5 1.3-12.9.9-2.1-.2-4.2-.7-6.3-.8-2.8-.2-4.2 1.1-4.3 4-.1 2.8-.1 5.6 0 8.3.1 4.6 1.6 6.7 6.2 7.5 4.7.8 9.4 1.6 14.2 1.7 14.3.3 25.7-5.4 33.1-17.9 2.9-4.9 5.6-10.1 7.7-15.4 19.8-50.1 39.5-100.3 59.2-150.5.6-1.5 1.1-3 1.3-4.6.4-2.4-.7-3.6-3.1-3.7-5.6-.1-11.1 0-16.7 0-3.1 0-5.3 1.4-6.4 4.3-.4 1.1-.9 2.3-1.3 3.4l-29.1 83.7c-2.1 6.1-4.2 12.1-6.5 18.6-.4-.9-.6-1.4-.8-1.9-10.8-29.9-21.6-59.9-32.4-89.8-1.7-4.7-3.5-9.5-5.3-14.2-.9-2.5-2.7-4-5.4-4-6.4-.1-12.8-.2-19.2-.1-2.2 0-3.3 1.6-2.8 3.7zM242.4 206c1.7 11.7 7.6 20.8 18 26.6 9.9 5.5 20.7 6.2 31.7 4.6 12.7-1.9 23.9-7.3 33.8-15.5.4-.3.8-.6 1.4-1 .5 3.2.9 6.2 1.5 9.2.5 2.6 2.1 4.3 4.5 4.4 4.6.1 9.1.1 13.7 0 2.3-.1 3.8-1.6 4-3.9.1-.8.1-1.6.1-2.3v-88.8c0-3.6-.2-7.2-.7-10.8-1.6-10.8-6.2-19.7-15.9-25.4-5.6-3.3-11.8-5-18.2-5.9-3-.4-6-.7-9.1-1.1h-10c-.8.1-1.6.3-2.5.3-8.2.4-16.3 1.4-24.2 3.5-5.1 1.3-10 3.2-15 4.9-3 1-4.5 3.2-4.4 6.5.1 2.8-.1 5.6 0 8.3.1 4.1 1.8 5.2 5.7 4.1 6.5-1.7 13.1-3.5 19.7-4.8 10.3-1.9 20.7-2.7 31.1-1.2 5.4.8 10.5 2.4 14.1 7 3.1 4 4.2 8.8 4.4 13.7.3 6.9.2 13.9.3 20.8 0 .4-.1.7-.2 1.2-.4 0-.8 0-1.1-.1-8.8-2.1-17.7-3.6-26.8-4.1-9.5-.5-18.9.1-27.9 3.2-10.8 3.8-19.5 10.3-24.6 20.8-4.1 8.3-4.6 17-3.4 25.8zM98.7 106.9v175.3c0 .8 0 1.7.1 2.5.2 2.5 1.7 4.1 4.1 4.2 5.9.1 11.8.1 17.7 0 2.5 0 4-1.7 4.1-4.1.1-.8.1-1.7.1-2.5v-60.7c.9.7 1.4 1.2 1.9 1.6 15 12.5 32.2 16.6 51.1 12.9 17.1-3.4 28.9-13.9 36.7-29.2 5.8-11.6 8.3-24.1 8.7-37 .5-14.3-1-28.4-6.8-41.7-7.1-16.4-18.9-27.3-36.7-30.9-2.7-.6-5.5-.8-8.2-1.2h-7c-1.2.2-2.4.3-3.6.5-11.7 1.4-22.3 5.8-31.8 12.7-2 1.4-3.9 3-5.9 4.5-.1-.5-.3-.8-.4-1.2-.4-2.3-.7-4.6-1.1-6.9-.6-3.9-2.5-5.5-6.4-5.6h-9.7c-5.9-.1-6.9 1-6.9 6.8zM493.6 339c-2.7-.7-5.1 0-7.6 1-43.9 18.4-89.5 30.2-136.8 35.8-14.5 1.7-29.1 2.8-43.7 3.2-26.6.7-53.2-.8-79.6-4.3-17.8-2.4-35.5-5.7-53-9.9-37-8.9-72.7-21.7-106.7-38.8-8.8-4.4-17.4-9.3-26.1-14-3.8-2.1-6.2-1.5-8.2 2.1v1.7c1.2 1.6 2.2 3.4 3.7 4.8 36 32.2 76.6 56.5 122 72.9 21.9 7.9 44.4 13.7 67.3 17.5 14 2.3 28 3.8 42.2 4.5 3 .1 6 .2 9 .4.7 0 1.4.2 2.1.3h17.7c.7-.1 1.4-.3 2.1-.3 14.9-.4 29.8-1.8 44.6-4 21.4-3.2 42.4-8.1 62.9-14.7 29.6-9.6 57.7-22.4 83.4-40.1 2.8-1.9 5.7-3.8 8-6.2 4.3-4.4 2.3-10.4-3.3-11.9zm50.4-27.7c-.8-4.2-4-5.8-7.6-7-5.7-1.9-11.6-2.8-17.6-3.3-11-.9-22-.4-32.8 1.6-12 2.2-23.4 6.1-33.5 13.1-1.2.8-2.4 1.8-3.1 3-.6.9-.7 2.3-.5 3.4.3 1.3 1.7 1.6 3 1.5.6 0 1.2 0 1.8-.1l19.5-2.1c9.6-.9 19.2-1.5 28.8-.8 4.1.3 8.1 1.2 12 2.2 4.3 1.1 6.2 4.4 6.4 8.7.3 6.7-1.2 13.1-2.9 19.5-3.5 12.9-8.3 25.4-13.3 37.8-.3.8-.7 1.7-.8 2.5-.4 2.5 1 4 3.4 3.5 1.4-.3 3-1.1 4-2.1 3.7-3.6 7.5-7.2 10.6-11.2 10.7-13.8 17-29.6 20.7-46.6.7-3 1.2-6.1 1.7-9.1.2-4.7.2-9.6.2-14.5z\"/></svg>",
5610
+ "viewBox": [
5611
+ "0",
5612
+ "0",
5613
+ "576",
5614
+ "512"
5615
+ ],
5616
+ "width": 576,
5617
+ "height": 512,
5618
+ "path": "M124.7 201.8c.1-11.8 0-23.5 0-35.3v-35.3c0-1.3.4-2 1.4-2.7 11.5-8 24.1-12.1 38.2-11.1 12.5.9 22.7 7 28.1 21.7 3.3 8.9 4.1 18.2 4.1 27.7 0 8.7-.7 17.3-3.4 25.6-5.7 17.8-18.7 24.7-35.7 23.9-11.7-.5-21.9-5-31.4-11.7-.9-.8-1.4-1.6-1.3-2.8zm154.9 14.6c4.6 1.8 9.3 2 14.1 1.5 11.6-1.2 21.9-5.7 31.3-12.5.9-.6 1.3-1.3 1.3-2.5-.1-3.9 0-7.9 0-11.8 0-4-.1-8 0-12 0-1.4-.4-2-1.8-2.2-7-.9-13.9-2.2-20.9-2.9-7-.6-14-.3-20.8 1.9-6.7 2.2-11.7 6.2-13.7 13.1-1.6 5.4-1.6 10.8.1 16.2 1.6 5.5 5.2 9.2 10.4 11.2zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zm-207.5 23.9c.4 1.7.9 3.4 1.6 5.1 16.5 40.6 32.9 81.3 49.5 121.9 1.4 3.5 1.7 6.4.2 9.9-2.8 6.2-4.9 12.6-7.8 18.7-2.6 5.5-6.7 9.5-12.7 11.2-4.2 1.1-8.5 1.3-12.9.9-2.1-.2-4.2-.7-6.3-.8-2.8-.2-4.2 1.1-4.3 4-.1 2.8-.1 5.6 0 8.3.1 4.6 1.6 6.7 6.2 7.5 4.7.8 9.4 1.6 14.2 1.7 14.3.3 25.7-5.4 33.1-17.9 2.9-4.9 5.6-10.1 7.7-15.4 19.8-50.1 39.5-100.3 59.2-150.5.6-1.5 1.1-3 1.3-4.6.4-2.4-.7-3.6-3.1-3.7-5.6-.1-11.1 0-16.7 0-3.1 0-5.3 1.4-6.4 4.3-.4 1.1-.9 2.3-1.3 3.4l-29.1 83.7c-2.1 6.1-4.2 12.1-6.5 18.6-.4-.9-.6-1.4-.8-1.9-10.8-29.9-21.6-59.9-32.4-89.8-1.7-4.7-3.5-9.5-5.3-14.2-.9-2.5-2.7-4-5.4-4-6.4-.1-12.8-.2-19.2-.1-2.2 0-3.3 1.6-2.8 3.7zM242.4 206c1.7 11.7 7.6 20.8 18 26.6 9.9 5.5 20.7 6.2 31.7 4.6 12.7-1.9 23.9-7.3 33.8-15.5.4-.3.8-.6 1.4-1 .5 3.2.9 6.2 1.5 9.2.5 2.6 2.1 4.3 4.5 4.4 4.6.1 9.1.1 13.7 0 2.3-.1 3.8-1.6 4-3.9.1-.8.1-1.6.1-2.3v-88.8c0-3.6-.2-7.2-.7-10.8-1.6-10.8-6.2-19.7-15.9-25.4-5.6-3.3-11.8-5-18.2-5.9-3-.4-6-.7-9.1-1.1h-10c-.8.1-1.6.3-2.5.3-8.2.4-16.3 1.4-24.2 3.5-5.1 1.3-10 3.2-15 4.9-3 1-4.5 3.2-4.4 6.5.1 2.8-.1 5.6 0 8.3.1 4.1 1.8 5.2 5.7 4.1 6.5-1.7 13.1-3.5 19.7-4.8 10.3-1.9 20.7-2.7 31.1-1.2 5.4.8 10.5 2.4 14.1 7 3.1 4 4.2 8.8 4.4 13.7.3 6.9.2 13.9.3 20.8 0 .4-.1.7-.2 1.2-.4 0-.8 0-1.1-.1-8.8-2.1-17.7-3.6-26.8-4.1-9.5-.5-18.9.1-27.9 3.2-10.8 3.8-19.5 10.3-24.6 20.8-4.1 8.3-4.6 17-3.4 25.8zM98.7 106.9v175.3c0 .8 0 1.7.1 2.5.2 2.5 1.7 4.1 4.1 4.2 5.9.1 11.8.1 17.7 0 2.5 0 4-1.7 4.1-4.1.1-.8.1-1.7.1-2.5v-60.7c.9.7 1.4 1.2 1.9 1.6 15 12.5 32.2 16.6 51.1 12.9 17.1-3.4 28.9-13.9 36.7-29.2 5.8-11.6 8.3-24.1 8.7-37 .5-14.3-1-28.4-6.8-41.7-7.1-16.4-18.9-27.3-36.7-30.9-2.7-.6-5.5-.8-8.2-1.2h-7c-1.2.2-2.4.3-3.6.5-11.7 1.4-22.3 5.8-31.8 12.7-2 1.4-3.9 3-5.9 4.5-.1-.5-.3-.8-.4-1.2-.4-2.3-.7-4.6-1.1-6.9-.6-3.9-2.5-5.5-6.4-5.6h-9.7c-5.9-.1-6.9 1-6.9 6.8zM493.6 339c-2.7-.7-5.1 0-7.6 1-43.9 18.4-89.5 30.2-136.8 35.8-14.5 1.7-29.1 2.8-43.7 3.2-26.6.7-53.2-.8-79.6-4.3-17.8-2.4-35.5-5.7-53-9.9-37-8.9-72.7-21.7-106.7-38.8-8.8-4.4-17.4-9.3-26.1-14-3.8-2.1-6.2-1.5-8.2 2.1v1.7c1.2 1.6 2.2 3.4 3.7 4.8 36 32.2 76.6 56.5 122 72.9 21.9 7.9 44.4 13.7 67.3 17.5 14 2.3 28 3.8 42.2 4.5 3 .1 6 .2 9 .4.7 0 1.4.2 2.1.3h17.7c.7-.1 1.4-.3 2.1-.3 14.9-.4 29.8-1.8 44.6-4 21.4-3.2 42.4-8.1 62.9-14.7 29.6-9.6 57.7-22.4 83.4-40.1 2.8-1.9 5.7-3.8 8-6.2 4.3-4.4 2.3-10.4-3.3-11.9zm50.4-27.7c-.8-4.2-4-5.8-7.6-7-5.7-1.9-11.6-2.8-17.6-3.3-11-.9-22-.4-32.8 1.6-12 2.2-23.4 6.1-33.5 13.1-1.2.8-2.4 1.8-3.1 3-.6.9-.7 2.3-.5 3.4.3 1.3 1.7 1.6 3 1.5.6 0 1.2 0 1.8-.1l19.5-2.1c9.6-.9 19.2-1.5 28.8-.8 4.1.3 8.1 1.2 12 2.2 4.3 1.1 6.2 4.4 6.4 8.7.3 6.7-1.2 13.1-2.9 19.5-3.5 12.9-8.3 25.4-13.3 37.8-.3.8-.7 1.7-.8 2.5-.4 2.5 1 4 3.4 3.5 1.4-.3 3-1.1 4-2.1 3.7-3.6 7.5-7.2 10.6-11.2 10.7-13.8 17-29.6 20.7-46.6.7-3 1.2-6.1 1.7-9.1.2-4.7.2-9.6.2-14.5z"
5619
+ }
5620
+ }
5621
+ },
5622
+ "cc-amex": {
5623
+ "changes": [
5624
+ "4.2",
5625
+ "5.0.0"
5626
+ ],
5627
+ "ligatures": [],
5628
+ "search": {
5629
+ "terms": [
5630
+ "amex"
5631
+ ]
5632
+ },
5633
+ "styles": [
5634
+ "brands"
5635
+ ],
5636
+ "unicode": "f1f3",
5637
+ "label": "American Express Credit Card",
5638
+ "svg": {
5639
+ "brands": {
5640
+ "last_modified": 1500927880000,
5641
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M576 255.4c-37.9-.2-44.2-.9-54.5 5v-5c-45.3 0-53.5-1.7-64.9 5.2v-5.2h-78.2v5.1c-11.4-6.5-21.4-5.1-75.7-5.1v5.6c-6.3-3.7-14.5-5.6-24.3-5.6h-58c-3.5 3.8-12.5 13.7-15.7 17.2-12.7-14.1-10.5-11.6-15.5-17.2h-83.1v92.3h82c3.3-3.5 12.9-13.9 16.1-17.4 12.7 14.3 10.3 11.7 15.4 17.4h48.9c0-14.7.1-8.3.1-23 11.5.2 24.3-.2 34.3-6.2 0 13.9-.1 17.1-.1 29.2h39.6c0-18.5.1-7.4.1-25.3 6.2 0 7.7 0 9.4.1.1 1.3 0 0 0 25.2 152.8 0 145.9 1.1 156.7-4.5v4.5c34.8 0 54.8 2.2 67.5-6.1V432c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V228.3h26.6c4.2-10.1 2.2-5.3 6.4-15.3h19.2c4.2 10 2.2 5.2 6.4 15.3h52.9v-11.4c2.2 5 1.1 2.5 5.1 11.4h29.5c2.4-5.5 2.6-5.8 5.1-11.4v11.4h135.5v-25.1c6.4 0 8-.1 9.8.2 0 0-.2 10.9.1 24.8h66.5v-8.9c7.4 5.9 17.4 8.9 29.7 8.9h26.8c4.2-10.1 2.2-5.3 6.4-15.3h19c6.5 15 .2.5 6.6 15.3h52.8v-21.9c11.8 19.7 7.8 12.9 13.2 21.9h41.6v-92h-39.9v18.4c-12.2-20.2-6.3-10.4-11.2-18.4h-43.3v20.6c-6.2-14.6-4.6-10.8-8.8-20.6h-32.4c-.4 0-2.3.2-2.3-.3h-27.6c-12.8 0-23.1 3.2-30.7 9.3v-9.3h-39.9v5.3c-10.8-6.1-20.7-5.1-64.4-5.3-.1 0-11.6-.1-11.6 0h-103c-2.5 6.1-6.8 16.4-12.6 30-2.8-6-11-23.8-13.9-30h-46V157c-7.4-17.4-4.7-11-9-21.1H22.9c-3.4 7.9-13.7 32-23.1 53.9V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48v175.4zm-186.6-80.6c-.3.2-1.4 2.2-1.4 7.6 0 6 .9 7.7 1.1 7.9.2.1 1.1.5 3.4.5l7.3-16.9c-1.1 0-2.1-.1-3.1-.1-5.6 0-7 .7-7.3 1zm-19.9 130.9c9.2 3.3 11 9.5 11 18.4l-.1 13.8h-16.6l.1-11.5c0-11.8-3.8-13.8-14.8-13.8h-17.6l-.1 25.3h-16.6l.1-69.3h39.4c13 0 27.1 2.3 27.1 18.7-.1 7.6-4.2 15.3-11.9 18.4zm-6.3-15.4c0-6.4-5.6-7.4-10.7-7.4h-21v15.6h20.7c5.6 0 11-1.3 11-8.2zm181.7-7.1H575v-14.6h-32.9c-12.8 0-23.8 6.6-23.8 20.7 0 33 42.7 12.8 42.7 27.4 0 5.1-4.3 6.4-8.4 6.4h-32l-.1 14.8h32c8.4 0 17.6-1.8 22.5-8.9v-25.8c-10.5-13.8-39.3-1.3-39.3-13.5 0-5.8 4.6-6.5 9.2-6.5zm-99.2-.3v-14.3h-55.2l-.1 69.3h55.2l.1-14.3-38.6-.3v-13.8H445v-14.1h-37.8v-12.5h38.5zm42.2 40.1h-32.2l-.1 14.8h32.2c14.8 0 26.2-5.6 26.2-22 0-33.2-42.9-11.2-42.9-26.3 0-5.6 4.9-6.4 9.2-6.4h30.4v-14.6h-33.2c-12.8 0-23.5 6.6-23.5 20.7 0 33 42.7 12.5 42.7 27.4-.1 5.4-4.7 6.4-8.8 6.4zm-78.1-158.7c-17.4-.3-33.2-4.1-33.2 19.7 0 11.8 2.8 19.9 16.1 19.9h7.4l23.5-54.5h24.8l27.9 65.4v-65.4h25.3l29.1 48.1v-48.1h16.9v69H524l-31.2-51.9v51.9h-33.7l-6.6-15.3h-34.3l-6.4 15.3h-19.2c-22.8 0-33-11.8-33-34 0-23.3 10.5-35.3 34-35.3h16.1v15.2zm14.3 24.5h22.8l-11.2-27.6-11.6 27.6zm-72.6-39.6h-16.9v69.3h16.9v-69.3zm-38.1 37.3c9.5 3.3 11 9.2 11 18.4v13.5h-16.6c-.3-14.8 3.6-25.1-14.8-25.1h-18v25.1h-16.4v-69.3l39.1.3c13.3 0 27.4 2 27.4 18.4.1 8-4.3 15.7-11.7 18.7zm-6.7-15.3c0-6.4-5.6-7.4-10.7-7.4h-21v15.3h20.7c5.7 0 11-1.3 11-7.9zm-59.5-7.4v-14.6h-55.5v69.3h55.5v-14.3h-38.9v-13.8h37.8v-14.1h-37.8v-12.5h38.9zm-84.6 54.7v-54.2l-24 54.2H124l-24-54.2v54.2H66.2l-6.4-15.3H25.3l-6.4 15.3H1l29.7-69.3h24.5l28.1 65.7v-65.7h27.1l21.7 47 19.7-47h27.6v69.3h-16.8zM53.9 188.8l-11.5-27.6-11.2 27.6h22.7zm253 102.5c0 27.9-30.4 23.3-49.3 23.3l-.1 23.3h-32.2l-20.4-23-21.3 23h-65.4l.1-69.3h66.5l20.5 22.8 21-22.8H279c15.6 0 27.9 5.4 27.9 22.7zm-112.7 11.8l-17.9-20.2h-41.7v12.5h36.3v14.1h-36.3v13.8h40.6l19-20.2zM241 276l-25.3 27.4 25.3 28.1V276zm48.3 15.3c0-6.1-4.6-8.4-10.2-8.4h-21.5v17.6h21.2c5.9 0 10.5-2.8 10.5-9.2z\"/></svg>",
5642
+ "viewBox": [
5643
+ "0",
5644
+ "0",
5645
+ "576",
5646
+ "512"
5647
+ ],
5648
+ "width": 576,
5649
+ "height": 512,
5650
+ "path": "M576 255.4c-37.9-.2-44.2-.9-54.5 5v-5c-45.3 0-53.5-1.7-64.9 5.2v-5.2h-78.2v5.1c-11.4-6.5-21.4-5.1-75.7-5.1v5.6c-6.3-3.7-14.5-5.6-24.3-5.6h-58c-3.5 3.8-12.5 13.7-15.7 17.2-12.7-14.1-10.5-11.6-15.5-17.2h-83.1v92.3h82c3.3-3.5 12.9-13.9 16.1-17.4 12.7 14.3 10.3 11.7 15.4 17.4h48.9c0-14.7.1-8.3.1-23 11.5.2 24.3-.2 34.3-6.2 0 13.9-.1 17.1-.1 29.2h39.6c0-18.5.1-7.4.1-25.3 6.2 0 7.7 0 9.4.1.1 1.3 0 0 0 25.2 152.8 0 145.9 1.1 156.7-4.5v4.5c34.8 0 54.8 2.2 67.5-6.1V432c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V228.3h26.6c4.2-10.1 2.2-5.3 6.4-15.3h19.2c4.2 10 2.2 5.2 6.4 15.3h52.9v-11.4c2.2 5 1.1 2.5 5.1 11.4h29.5c2.4-5.5 2.6-5.8 5.1-11.4v11.4h135.5v-25.1c6.4 0 8-.1 9.8.2 0 0-.2 10.9.1 24.8h66.5v-8.9c7.4 5.9 17.4 8.9 29.7 8.9h26.8c4.2-10.1 2.2-5.3 6.4-15.3h19c6.5 15 .2.5 6.6 15.3h52.8v-21.9c11.8 19.7 7.8 12.9 13.2 21.9h41.6v-92h-39.9v18.4c-12.2-20.2-6.3-10.4-11.2-18.4h-43.3v20.6c-6.2-14.6-4.6-10.8-8.8-20.6h-32.4c-.4 0-2.3.2-2.3-.3h-27.6c-12.8 0-23.1 3.2-30.7 9.3v-9.3h-39.9v5.3c-10.8-6.1-20.7-5.1-64.4-5.3-.1 0-11.6-.1-11.6 0h-103c-2.5 6.1-6.8 16.4-12.6 30-2.8-6-11-23.8-13.9-30h-46V157c-7.4-17.4-4.7-11-9-21.1H22.9c-3.4 7.9-13.7 32-23.1 53.9V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48v175.4zm-186.6-80.6c-.3.2-1.4 2.2-1.4 7.6 0 6 .9 7.7 1.1 7.9.2.1 1.1.5 3.4.5l7.3-16.9c-1.1 0-2.1-.1-3.1-.1-5.6 0-7 .7-7.3 1zm-19.9 130.9c9.2 3.3 11 9.5 11 18.4l-.1 13.8h-16.6l.1-11.5c0-11.8-3.8-13.8-14.8-13.8h-17.6l-.1 25.3h-16.6l.1-69.3h39.4c13 0 27.1 2.3 27.1 18.7-.1 7.6-4.2 15.3-11.9 18.4zm-6.3-15.4c0-6.4-5.6-7.4-10.7-7.4h-21v15.6h20.7c5.6 0 11-1.3 11-8.2zm181.7-7.1H575v-14.6h-32.9c-12.8 0-23.8 6.6-23.8 20.7 0 33 42.7 12.8 42.7 27.4 0 5.1-4.3 6.4-8.4 6.4h-32l-.1 14.8h32c8.4 0 17.6-1.8 22.5-8.9v-25.8c-10.5-13.8-39.3-1.3-39.3-13.5 0-5.8 4.6-6.5 9.2-6.5zm-99.2-.3v-14.3h-55.2l-.1 69.3h55.2l.1-14.3-38.6-.3v-13.8H445v-14.1h-37.8v-12.5h38.5zm42.2 40.1h-32.2l-.1 14.8h32.2c14.8 0 26.2-5.6 26.2-22 0-33.2-42.9-11.2-42.9-26.3 0-5.6 4.9-6.4 9.2-6.4h30.4v-14.6h-33.2c-12.8 0-23.5 6.6-23.5 20.7 0 33 42.7 12.5 42.7 27.4-.1 5.4-4.7 6.4-8.8 6.4zm-78.1-158.7c-17.4-.3-33.2-4.1-33.2 19.7 0 11.8 2.8 19.9 16.1 19.9h7.4l23.5-54.5h24.8l27.9 65.4v-65.4h25.3l29.1 48.1v-48.1h16.9v69H524l-31.2-51.9v51.9h-33.7l-6.6-15.3h-34.3l-6.4 15.3h-19.2c-22.8 0-33-11.8-33-34 0-23.3 10.5-35.3 34-35.3h16.1v15.2zm14.3 24.5h22.8l-11.2-27.6-11.6 27.6zm-72.6-39.6h-16.9v69.3h16.9v-69.3zm-38.1 37.3c9.5 3.3 11 9.2 11 18.4v13.5h-16.6c-.3-14.8 3.6-25.1-14.8-25.1h-18v25.1h-16.4v-69.3l39.1.3c13.3 0 27.4 2 27.4 18.4.1 8-4.3 15.7-11.7 18.7zm-6.7-15.3c0-6.4-5.6-7.4-10.7-7.4h-21v15.3h20.7c5.7 0 11-1.3 11-7.9zm-59.5-7.4v-14.6h-55.5v69.3h55.5v-14.3h-38.9v-13.8h37.8v-14.1h-37.8v-12.5h38.9zm-84.6 54.7v-54.2l-24 54.2H124l-24-54.2v54.2H66.2l-6.4-15.3H25.3l-6.4 15.3H1l29.7-69.3h24.5l28.1 65.7v-65.7h27.1l21.7 47 19.7-47h27.6v69.3h-16.8zM53.9 188.8l-11.5-27.6-11.2 27.6h22.7zm253 102.5c0 27.9-30.4 23.3-49.3 23.3l-.1 23.3h-32.2l-20.4-23-21.3 23h-65.4l.1-69.3h66.5l20.5 22.8 21-22.8H279c15.6 0 27.9 5.4 27.9 22.7zm-112.7 11.8l-17.9-20.2h-41.7v12.5h36.3v14.1h-36.3v13.8h40.6l19-20.2zM241 276l-25.3 27.4 25.3 28.1V276zm48.3 15.3c0-6.1-4.6-8.4-10.2-8.4h-21.5v17.6h21.2c5.9 0 10.5-2.8 10.5-9.2z"
5651
+ }
5652
+ }
5653
+ },
5654
+ "cc-apple-pay": {
5655
+ "changes": [
5656
+ "5.0.0"
5657
+ ],
5658
+ "ligatures": [],
5659
+ "search": {
5660
+ "terms": []
5661
+ },
5662
+ "styles": [
5663
+ "brands"
5664
+ ],
5665
+ "unicode": "f416",
5666
+ "label": "Apple Pay Credit Card",
5667
+ "svg": {
5668
+ "brands": {
5669
+ "last_modified": 1507669930671,
5670
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M302.2 218.4c0 17.2-10.5 27.1-29 27.1h-24.3v-54.2h24.4c18.4 0 28.9 9.8 28.9 27.1zm47.5 62.6c0 8.3 7.2 13.7 18.5 13.7 14.4 0 25.2-9.1 25.2-21.9v-7.7l-23.5 1.5c-13.3.9-20.2 5.8-20.2 14.4zM576 79v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM127.8 197.2c8.4.7 16.8-4.2 22.1-10.4 5.2-6.4 8.6-15 7.7-23.7-7.4.3-16.6 4.9-21.9 11.3-4.8 5.5-8.9 14.4-7.9 22.8zm60.6 74.5c-.2-.2-19.6-7.6-19.8-30-.2-18.7 15.3-27.7 16-28.2-8.8-13-22.4-14.4-27.1-14.7-12.2-.7-22.6 6.9-28.4 6.9-5.9 0-14.7-6.6-24.3-6.4-12.5.2-24.2 7.3-30.5 18.6-13.1 22.6-3.4 56 9.3 74.4 6.2 9.1 13.7 19.1 23.5 18.7 9.3-.4 13-6 24.2-6 11.3 0 14.5 6 24.3 5.9 10.2-.2 16.5-9.1 22.8-18.2 6.9-10.4 9.8-20.4 10-21zm135.4-53.4c0-26.6-18.5-44.8-44.9-44.8h-51.2v136.4h21.2v-46.6h29.3c26.8 0 45.6-18.4 45.6-45zm90 23.7c0-19.7-15.8-32.4-40-32.4-22.5 0-39.1 12.9-39.7 30.5h19.1c1.6-8.4 9.4-13.9 20-13.9 13 0 20.2 6 20.2 17.2v7.5l-26.4 1.6c-24.6 1.5-37.9 11.6-37.9 29.1 0 17.7 13.7 29.4 33.4 29.4 13.3 0 25.6-6.7 31.2-17.4h.4V310h19.6v-68zM516 210.9h-21.5l-24.9 80.6h-.4l-24.9-80.6H422l35.9 99.3-1.9 6c-3.2 10.2-8.5 14.2-17.9 14.2-1.7 0-4.9-.2-6.2-.3v16.4c1.2.4 6.5.5 8.1.5 20.7 0 30.4-7.9 38.9-31.8L516 210.9z\"/></svg>",
5671
+ "viewBox": [
5672
+ "0",
5673
+ "0",
5674
+ "576",
5675
+ "512"
5676
+ ],
5677
+ "width": 576,
5678
+ "height": 512,
5679
+ "path": "M302.2 218.4c0 17.2-10.5 27.1-29 27.1h-24.3v-54.2h24.4c18.4 0 28.9 9.8 28.9 27.1zm47.5 62.6c0 8.3 7.2 13.7 18.5 13.7 14.4 0 25.2-9.1 25.2-21.9v-7.7l-23.5 1.5c-13.3.9-20.2 5.8-20.2 14.4zM576 79v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM127.8 197.2c8.4.7 16.8-4.2 22.1-10.4 5.2-6.4 8.6-15 7.7-23.7-7.4.3-16.6 4.9-21.9 11.3-4.8 5.5-8.9 14.4-7.9 22.8zm60.6 74.5c-.2-.2-19.6-7.6-19.8-30-.2-18.7 15.3-27.7 16-28.2-8.8-13-22.4-14.4-27.1-14.7-12.2-.7-22.6 6.9-28.4 6.9-5.9 0-14.7-6.6-24.3-6.4-12.5.2-24.2 7.3-30.5 18.6-13.1 22.6-3.4 56 9.3 74.4 6.2 9.1 13.7 19.1 23.5 18.7 9.3-.4 13-6 24.2-6 11.3 0 14.5 6 24.3 5.9 10.2-.2 16.5-9.1 22.8-18.2 6.9-10.4 9.8-20.4 10-21zm135.4-53.4c0-26.6-18.5-44.8-44.9-44.8h-51.2v136.4h21.2v-46.6h29.3c26.8 0 45.6-18.4 45.6-45zm90 23.7c0-19.7-15.8-32.4-40-32.4-22.5 0-39.1 12.9-39.7 30.5h19.1c1.6-8.4 9.4-13.9 20-13.9 13 0 20.2 6 20.2 17.2v7.5l-26.4 1.6c-24.6 1.5-37.9 11.6-37.9 29.1 0 17.7 13.7 29.4 33.4 29.4 13.3 0 25.6-6.7 31.2-17.4h.4V310h19.6v-68zM516 210.9h-21.5l-24.9 80.6h-.4l-24.9-80.6H422l35.9 99.3-1.9 6c-3.2 10.2-8.5 14.2-17.9 14.2-1.7 0-4.9-.2-6.2-.3v16.4c1.2.4 6.5.5 8.1.5 20.7 0 30.4-7.9 38.9-31.8L516 210.9z"
5680
+ }
5681
+ }
5682
+ },
5683
+ "cc-diners-club": {
5684
+ "changes": [
5685
+ "4.4",
5686
+ "5.0.0"
5687
+ ],
5688
+ "ligatures": [],
5689
+ "search": {
5690
+ "terms": []
5691
+ },
5692
+ "styles": [
5693
+ "brands"
5694
+ ],
5695
+ "unicode": "f24c",
5696
+ "label": "Diner's Club Credit Card",
5697
+ "svg": {
5698
+ "brands": {
5699
+ "last_modified": 1500927880000,
5700
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M239.7 79.9c-96.9 0-175.8 78.6-175.8 175.8 0 96.9 78.9 175.8 175.8 175.8 97.2 0 175.8-78.9 175.8-175.8 0-97.2-78.6-175.8-175.8-175.8zm-39.9 279.6c-41.7-15.9-71.4-56.4-71.4-103.8s29.7-87.9 71.4-104.1v207.9zm79.8.3V151.6c41.7 16.2 71.4 56.7 71.4 104.1s-29.7 87.9-71.4 104.1zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM329.7 448h-90.3c-106.2 0-193.8-85.5-193.8-190.2C45.6 143.2 133.2 64 239.4 64h90.3c105 0 200.7 79.2 200.7 193.8 0 104.7-95.7 190.2-200.7 190.2z\"/></svg>",
5701
+ "viewBox": [
5702
+ "0",
5703
+ "0",
5704
+ "576",
5705
+ "512"
5706
+ ],
5707
+ "width": 576,
5708
+ "height": 512,
5709
+ "path": "M239.7 79.9c-96.9 0-175.8 78.6-175.8 175.8 0 96.9 78.9 175.8 175.8 175.8 97.2 0 175.8-78.9 175.8-175.8 0-97.2-78.6-175.8-175.8-175.8zm-39.9 279.6c-41.7-15.9-71.4-56.4-71.4-103.8s29.7-87.9 71.4-104.1v207.9zm79.8.3V151.6c41.7 16.2 71.4 56.7 71.4 104.1s-29.7 87.9-71.4 104.1zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM329.7 448h-90.3c-106.2 0-193.8-85.5-193.8-190.2C45.6 143.2 133.2 64 239.4 64h90.3c105 0 200.7 79.2 200.7 193.8 0 104.7-95.7 190.2-200.7 190.2z"
5710
+ }
5711
+ }
5712
+ },
5713
+ "cc-discover": {
5714
+ "changes": [
5715
+ "4.2",
5716
+ "5.0.0"
5717
+ ],
5718
+ "ligatures": [],
5719
+ "search": {
5720
+ "terms": []
5721
+ },
5722
+ "styles": [
5723
+ "brands"
5724
+ ],
5725
+ "unicode": "f1f2",
5726
+ "label": "Discover Credit Card",
5727
+ "svg": {
5728
+ "brands": {
5729
+ "last_modified": 1500927880000,
5730
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M83 212.1c0 7.9-3.2 15.5-8.9 20.7-4.9 4.4-11.6 6.4-21.9 6.4H48V185h4.2c10.3 0 16.7 1.7 21.9 6.6 5.7 5 8.9 12.6 8.9 20.5zM504.8 184h-4.9v24.9h4.7c10.3 0 15.8-4.4 15.8-12.8 0-7.9-5.5-12.1-15.6-12.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM428 253h45.3v-13.8H444V217h28.3v-13.8H444V185h29.3v-14H428v82zm-86.2-82l35 84.2h8.6l35.5-84.2h-17.5l-22.2 55.2-21.9-55.2h-17.5zm-83 41.6c0 24.6 19.9 44.6 44.6 44.6 24.6 0 44.6-19.9 44.6-44.6 0-24.6-19.9-44.6-44.6-44.6-24.6 0-44.6 19.9-44.6 44.6zm-68-.5c0 32.5 33.6 52.5 63.3 38.2v-19c-19.3 19.3-46.8 5.8-46.8-19.2 0-23.7 26.7-39.1 46.8-19v-19c-30.2-15-63.3 6.8-63.3 38zm-33.9 28.3c-7.6 0-13.8-3.7-17.5-10.8l-10.3 9.9c17.8 26.1 56.6 18.2 56.6-11.3 0-13.1-5.4-19-23.6-25.6-9.6-3.4-12.3-5.9-12.3-10.3 0-8.7 14.5-14.1 24.9-2.5l8.4-10.8c-19.1-17.1-49.7-8.9-49.7 14.3 0 11.3 5.2 17.2 20.2 22.7 25.7 9.1 14.7 24.4 3.3 24.4zm-57.4-28.3c0-24.1-18-41.1-44.1-41.1H32v82h23.4c30.9 0 44.1-22.4 44.1-40.9zm23.4-41.1h-16v82h16v-82zM544 288c-33.3 20.8-226.4 124.4-416 160h401c8.2 0 15-6.8 15-15V288zm0-35l-25.9-34.5c12.1-2.5 18.7-10.6 18.7-23.2 0-28.5-30.3-24.4-52.9-24.4v82h16v-32.8h2.2l22.2 32.8H544z\"/></svg>",
5731
+ "viewBox": [
5732
+ "0",
5733
+ "0",
5734
+ "576",
5735
+ "512"
5736
+ ],
5737
+ "width": 576,
5738
+ "height": 512,
5739
+ "path": "M83 212.1c0 7.9-3.2 15.5-8.9 20.7-4.9 4.4-11.6 6.4-21.9 6.4H48V185h4.2c10.3 0 16.7 1.7 21.9 6.6 5.7 5 8.9 12.6 8.9 20.5zM504.8 184h-4.9v24.9h4.7c10.3 0 15.8-4.4 15.8-12.8 0-7.9-5.5-12.1-15.6-12.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM428 253h45.3v-13.8H444V217h28.3v-13.8H444V185h29.3v-14H428v82zm-86.2-82l35 84.2h8.6l35.5-84.2h-17.5l-22.2 55.2-21.9-55.2h-17.5zm-83 41.6c0 24.6 19.9 44.6 44.6 44.6 24.6 0 44.6-19.9 44.6-44.6 0-24.6-19.9-44.6-44.6-44.6-24.6 0-44.6 19.9-44.6 44.6zm-68-.5c0 32.5 33.6 52.5 63.3 38.2v-19c-19.3 19.3-46.8 5.8-46.8-19.2 0-23.7 26.7-39.1 46.8-19v-19c-30.2-15-63.3 6.8-63.3 38zm-33.9 28.3c-7.6 0-13.8-3.7-17.5-10.8l-10.3 9.9c17.8 26.1 56.6 18.2 56.6-11.3 0-13.1-5.4-19-23.6-25.6-9.6-3.4-12.3-5.9-12.3-10.3 0-8.7 14.5-14.1 24.9-2.5l8.4-10.8c-19.1-17.1-49.7-8.9-49.7 14.3 0 11.3 5.2 17.2 20.2 22.7 25.7 9.1 14.7 24.4 3.3 24.4zm-57.4-28.3c0-24.1-18-41.1-44.1-41.1H32v82h23.4c30.9 0 44.1-22.4 44.1-40.9zm23.4-41.1h-16v82h16v-82zM544 288c-33.3 20.8-226.4 124.4-416 160h401c8.2 0 15-6.8 15-15V288zm0-35l-25.9-34.5c12.1-2.5 18.7-10.6 18.7-23.2 0-28.5-30.3-24.4-52.9-24.4v82h16v-32.8h2.2l22.2 32.8H544z"
5740
+ }
5741
+ }
5742
+ },
5743
+ "cc-jcb": {
5744
+ "changes": [
5745
+ "4.4",
5746
+ "5.0.0"
5747
+ ],
5748
+ "ligatures": [],
5749
+ "search": {
5750
+ "terms": []
5751
+ },
5752
+ "styles": [
5753
+ "brands"
5754
+ ],
5755
+ "unicode": "f24b",
5756
+ "label": "JCB Credit Card",
5757
+ "svg": {
5758
+ "brands": {
5759
+ "last_modified": 1500927880000,
5760
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M431.5 244.3V212c41.2 0 38.5.2 38.5.2 7.3 1.3 13.3 7.3 13.3 16 0 8.8-6 14.5-13.3 15.8-1.2.4-3.3.3-38.5.3zm42.8 20.2c-2.8-.7-3.3-.5-42.8-.5v35c39.6 0 40 .2 42.8-.5 7.5-1.5 13.5-8 13.5-17 0-8.7-6-15.5-13.5-17zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM182 192.3h-57c0 67.1 10.7 109.7-35.8 109.7-19.5 0-38.8-5.7-57.2-14.8v28c30 8.3 68 8.3 68 8.3 97.9 0 82-47.7 82-131.2zm178.5 4.5c-63.4-16-165-14.9-165 59.3 0 77.1 108.2 73.6 165 59.2V287C312.9 311.7 253 309 253 256s59.8-55.6 107.5-31.2v-28zM544 286.5c0-18.5-16.5-30.5-38-32v-.8c19.5-2.7 30.3-15.5 30.3-30.2 0-19-15.7-30-37-31 0 0 6.3-.3-120.3-.3v127.5h122.7c24.3.1 42.3-12.9 42.3-33.2z\"/></svg>",
5761
+ "viewBox": [
5762
+ "0",
5763
+ "0",
5764
+ "576",
5765
+ "512"
5766
+ ],
5767
+ "width": 576,
5768
+ "height": 512,
5769
+ "path": "M431.5 244.3V212c41.2 0 38.5.2 38.5.2 7.3 1.3 13.3 7.3 13.3 16 0 8.8-6 14.5-13.3 15.8-1.2.4-3.3.3-38.5.3zm42.8 20.2c-2.8-.7-3.3-.5-42.8-.5v35c39.6 0 40 .2 42.8-.5 7.5-1.5 13.5-8 13.5-17 0-8.7-6-15.5-13.5-17zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM182 192.3h-57c0 67.1 10.7 109.7-35.8 109.7-19.5 0-38.8-5.7-57.2-14.8v28c30 8.3 68 8.3 68 8.3 97.9 0 82-47.7 82-131.2zm178.5 4.5c-63.4-16-165-14.9-165 59.3 0 77.1 108.2 73.6 165 59.2V287C312.9 311.7 253 309 253 256s59.8-55.6 107.5-31.2v-28zM544 286.5c0-18.5-16.5-30.5-38-32v-.8c19.5-2.7 30.3-15.5 30.3-30.2 0-19-15.7-30-37-31 0 0 6.3-.3-120.3-.3v127.5h122.7c24.3.1 42.3-12.9 42.3-33.2z"
5770
+ }
5771
+ }
5772
+ },
5773
+ "cc-mastercard": {
5774
+ "changes": [
5775
+ "4.2",
5776
+ "5.0.0"
5777
+ ],
5778
+ "ligatures": [],
5779
+ "search": {
5780
+ "terms": []
5781
+ },
5782
+ "styles": [
5783
+ "brands"
5784
+ ],
5785
+ "unicode": "f1f1",
5786
+ "label": "MasterCard Credit Card",
5787
+ "svg": {
5788
+ "brands": {
5789
+ "last_modified": 1500927880000,
5790
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M482.9 410.3c0 6.8-4.6 11.7-11.2 11.7-6.8 0-11.2-5.2-11.2-11.7 0-6.5 4.4-11.7 11.2-11.7 6.6 0 11.2 5.2 11.2 11.7zm-310.8-11.7c-7.1 0-11.2 5.2-11.2 11.7 0 6.5 4.1 11.7 11.2 11.7 6.5 0 10.9-4.9 10.9-11.7-.1-6.5-4.4-11.7-10.9-11.7zm117.5-.3c-5.4 0-8.7 3.5-9.5 8.7h19.1c-.9-5.7-4.4-8.7-9.6-8.7zm107.8.3c-6.8 0-10.9 5.2-10.9 11.7 0 6.5 4.1 11.7 10.9 11.7 6.8 0 11.2-4.9 11.2-11.7 0-6.5-4.4-11.7-11.2-11.7zm105.9 26.1c0 .3.3.5.3 1.1 0 .3-.3.5-.3 1.1-.3.3-.3.5-.5.8-.3.3-.5.5-1.1.5-.3.3-.5.3-1.1.3-.3 0-.5 0-1.1-.3-.3 0-.5-.3-.8-.5-.3-.3-.5-.5-.5-.8-.3-.5-.3-.8-.3-1.1 0-.5 0-.8.3-1.1 0-.5.3-.8.5-1.1.3-.3.5-.3.8-.5.5-.3.8-.3 1.1-.3.5 0 .8 0 1.1.3.5.3.8.3 1.1.5s.2.6.5 1.1zm-2.2 1.4c.5 0 .5-.3.8-.3.3-.3.3-.5.3-.8 0-.3 0-.5-.3-.8-.3 0-.5-.3-1.1-.3h-1.6v3.5h.8V426h.3l1.1 1.4h.8l-1.1-1.3zM576 81v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V81c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM64 220.6c0 76.5 62.1 138.5 138.5 138.5 27.2 0 53.9-8.2 76.5-23.1-72.9-59.3-72.4-171.2 0-230.5-22.6-15-49.3-23.1-76.5-23.1-76.4-.1-138.5 62-138.5 138.2zm224 108.8c70.5-55 70.2-162.2 0-217.5-70.2 55.3-70.5 162.6 0 217.5zm-142.3 76.3c0-8.7-5.7-14.4-14.7-14.7-4.6 0-9.5 1.4-12.8 6.5-2.4-4.1-6.5-6.5-12.2-6.5-3.8 0-7.6 1.4-10.6 5.4V392h-8.2v36.7h8.2c0-18.9-2.5-30.2 9-30.2 10.2 0 8.2 10.2 8.2 30.2h7.9c0-18.3-2.5-30.2 9-30.2 10.2 0 8.2 10 8.2 30.2h8.2v-23zm44.9-13.7h-7.9v4.4c-2.7-3.3-6.5-5.4-11.7-5.4-10.3 0-18.2 8.2-18.2 19.3 0 11.2 7.9 19.3 18.2 19.3 5.2 0 9-1.9 11.7-5.4v4.6h7.9V392zm40.5 25.6c0-15-22.9-8.2-22.9-15.2 0-5.7 11.9-4.8 18.5-1.1l3.3-6.5c-9.4-6.1-30.2-6-30.2 8.2 0 14.3 22.9 8.3 22.9 15 0 6.3-13.5 5.8-20.7.8l-3.5 6.3c11.2 7.6 32.6 6 32.6-7.5zm35.4 9.3l-2.2-6.8c-3.8 2.1-12.2 4.4-12.2-4.1v-16.6h13.1V392h-13.1v-11.2h-8.2V392h-7.6v7.3h7.6V416c0 17.6 17.3 14.4 22.6 10.9zm13.3-13.4h27.5c0-16.2-7.4-22.6-17.4-22.6-10.6 0-18.2 7.9-18.2 19.3 0 20.5 22.6 23.9 33.8 14.2l-3.8-6c-7.8 6.4-19.6 5.8-21.9-4.9zm59.1-21.5c-4.6-2-11.6-1.8-15.2 4.4V392h-8.2v36.7h8.2V408c0-11.6 9.5-10.1 12.8-8.4l2.4-7.6zm10.6 18.3c0-11.4 11.6-15.1 20.7-8.4l3.8-6.5c-11.6-9.1-32.7-4.1-32.7 15 0 19.8 22.4 23.8 32.7 15l-3.8-6.5c-9.2 6.5-20.7 2.6-20.7-8.6zm66.7-18.3H408v4.4c-8.3-11-29.9-4.8-29.9 13.9 0 19.2 22.4 24.7 29.9 13.9v4.6h8.2V392zm33.7 0c-2.4-1.2-11-2.9-15.2 4.4V392h-7.9v36.7h7.9V408c0-11 9-10.3 12.8-8.4l2.4-7.6zm40.3-14.9h-7.9v19.3c-8.2-10.9-29.9-5.1-29.9 13.9 0 19.4 22.5 24.6 29.9 13.9v4.6h7.9v-51.7zm7.6-75.1v4.6h.8V302h1.9v-.8h-4.6v.8h1.9zm6.6 123.8c0-.5 0-1.1-.3-1.6-.3-.3-.5-.8-.8-1.1-.3-.3-.8-.5-1.1-.8-.5 0-1.1-.3-1.6-.3-.3 0-.8.3-1.4.3-.5.3-.8.5-1.1.8-.5.3-.8.8-.8 1.1-.3.5-.3 1.1-.3 1.6 0 .3 0 .8.3 1.4 0 .3.3.8.8 1.1.3.3.5.5 1.1.8.5.3 1.1.3 1.4.3.5 0 1.1 0 1.6-.3.3-.3.8-.5 1.1-.8.3-.3.5-.8.8-1.1.3-.6.3-1.1.3-1.4zm3.2-124.7h-1.4l-1.6 3.5-1.6-3.5h-1.4v5.4h.8v-4.1l1.6 3.5h1.1l1.4-3.5v4.1h1.1v-5.4zm4.4-80.5c0-76.2-62.1-138.3-138.5-138.3-27.2 0-53.9 8.2-76.5 23.1 72.1 59.3 73.2 171.5 0 230.5 22.6 15 49.5 23.1 76.5 23.1 76.4.1 138.5-61.9 138.5-138.4z\"/></svg>",
5791
+ "viewBox": [
5792
+ "0",
5793
+ "0",
5794
+ "576",
5795
+ "512"
5796
+ ],
5797
+ "width": 576,
5798
+ "height": 512,
5799
+ "path": "M482.9 410.3c0 6.8-4.6 11.7-11.2 11.7-6.8 0-11.2-5.2-11.2-11.7 0-6.5 4.4-11.7 11.2-11.7 6.6 0 11.2 5.2 11.2 11.7zm-310.8-11.7c-7.1 0-11.2 5.2-11.2 11.7 0 6.5 4.1 11.7 11.2 11.7 6.5 0 10.9-4.9 10.9-11.7-.1-6.5-4.4-11.7-10.9-11.7zm117.5-.3c-5.4 0-8.7 3.5-9.5 8.7h19.1c-.9-5.7-4.4-8.7-9.6-8.7zm107.8.3c-6.8 0-10.9 5.2-10.9 11.7 0 6.5 4.1 11.7 10.9 11.7 6.8 0 11.2-4.9 11.2-11.7 0-6.5-4.4-11.7-11.2-11.7zm105.9 26.1c0 .3.3.5.3 1.1 0 .3-.3.5-.3 1.1-.3.3-.3.5-.5.8-.3.3-.5.5-1.1.5-.3.3-.5.3-1.1.3-.3 0-.5 0-1.1-.3-.3 0-.5-.3-.8-.5-.3-.3-.5-.5-.5-.8-.3-.5-.3-.8-.3-1.1 0-.5 0-.8.3-1.1 0-.5.3-.8.5-1.1.3-.3.5-.3.8-.5.5-.3.8-.3 1.1-.3.5 0 .8 0 1.1.3.5.3.8.3 1.1.5s.2.6.5 1.1zm-2.2 1.4c.5 0 .5-.3.8-.3.3-.3.3-.5.3-.8 0-.3 0-.5-.3-.8-.3 0-.5-.3-1.1-.3h-1.6v3.5h.8V426h.3l1.1 1.4h.8l-1.1-1.3zM576 81v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V81c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM64 220.6c0 76.5 62.1 138.5 138.5 138.5 27.2 0 53.9-8.2 76.5-23.1-72.9-59.3-72.4-171.2 0-230.5-22.6-15-49.3-23.1-76.5-23.1-76.4-.1-138.5 62-138.5 138.2zm224 108.8c70.5-55 70.2-162.2 0-217.5-70.2 55.3-70.5 162.6 0 217.5zm-142.3 76.3c0-8.7-5.7-14.4-14.7-14.7-4.6 0-9.5 1.4-12.8 6.5-2.4-4.1-6.5-6.5-12.2-6.5-3.8 0-7.6 1.4-10.6 5.4V392h-8.2v36.7h8.2c0-18.9-2.5-30.2 9-30.2 10.2 0 8.2 10.2 8.2 30.2h7.9c0-18.3-2.5-30.2 9-30.2 10.2 0 8.2 10 8.2 30.2h8.2v-23zm44.9-13.7h-7.9v4.4c-2.7-3.3-6.5-5.4-11.7-5.4-10.3 0-18.2 8.2-18.2 19.3 0 11.2 7.9 19.3 18.2 19.3 5.2 0 9-1.9 11.7-5.4v4.6h7.9V392zm40.5 25.6c0-15-22.9-8.2-22.9-15.2 0-5.7 11.9-4.8 18.5-1.1l3.3-6.5c-9.4-6.1-30.2-6-30.2 8.2 0 14.3 22.9 8.3 22.9 15 0 6.3-13.5 5.8-20.7.8l-3.5 6.3c11.2 7.6 32.6 6 32.6-7.5zm35.4 9.3l-2.2-6.8c-3.8 2.1-12.2 4.4-12.2-4.1v-16.6h13.1V392h-13.1v-11.2h-8.2V392h-7.6v7.3h7.6V416c0 17.6 17.3 14.4 22.6 10.9zm13.3-13.4h27.5c0-16.2-7.4-22.6-17.4-22.6-10.6 0-18.2 7.9-18.2 19.3 0 20.5 22.6 23.9 33.8 14.2l-3.8-6c-7.8 6.4-19.6 5.8-21.9-4.9zm59.1-21.5c-4.6-2-11.6-1.8-15.2 4.4V392h-8.2v36.7h8.2V408c0-11.6 9.5-10.1 12.8-8.4l2.4-7.6zm10.6 18.3c0-11.4 11.6-15.1 20.7-8.4l3.8-6.5c-11.6-9.1-32.7-4.1-32.7 15 0 19.8 22.4 23.8 32.7 15l-3.8-6.5c-9.2 6.5-20.7 2.6-20.7-8.6zm66.7-18.3H408v4.4c-8.3-11-29.9-4.8-29.9 13.9 0 19.2 22.4 24.7 29.9 13.9v4.6h8.2V392zm33.7 0c-2.4-1.2-11-2.9-15.2 4.4V392h-7.9v36.7h7.9V408c0-11 9-10.3 12.8-8.4l2.4-7.6zm40.3-14.9h-7.9v19.3c-8.2-10.9-29.9-5.1-29.9 13.9 0 19.4 22.5 24.6 29.9 13.9v4.6h7.9v-51.7zm7.6-75.1v4.6h.8V302h1.9v-.8h-4.6v.8h1.9zm6.6 123.8c0-.5 0-1.1-.3-1.6-.3-.3-.5-.8-.8-1.1-.3-.3-.8-.5-1.1-.8-.5 0-1.1-.3-1.6-.3-.3 0-.8.3-1.4.3-.5.3-.8.5-1.1.8-.5.3-.8.8-.8 1.1-.3.5-.3 1.1-.3 1.6 0 .3 0 .8.3 1.4 0 .3.3.8.8 1.1.3.3.5.5 1.1.8.5.3 1.1.3 1.4.3.5 0 1.1 0 1.6-.3.3-.3.8-.5 1.1-.8.3-.3.5-.8.8-1.1.3-.6.3-1.1.3-1.4zm3.2-124.7h-1.4l-1.6 3.5-1.6-3.5h-1.4v5.4h.8v-4.1l1.6 3.5h1.1l1.4-3.5v4.1h1.1v-5.4zm4.4-80.5c0-76.2-62.1-138.3-138.5-138.3-27.2 0-53.9 8.2-76.5 23.1 72.1 59.3 73.2 171.5 0 230.5 22.6 15 49.5 23.1 76.5 23.1 76.4.1 138.5-61.9 138.5-138.4z"
5800
+ }
5801
+ }
5802
+ },
5803
+ "cc-paypal": {
5804
+ "changes": [
5805
+ "4.2",
5806
+ "5.0.0"
5807
+ ],
5808
+ "ligatures": [],
5809
+ "search": {
5810
+ "terms": []
5811
+ },
5812
+ "styles": [
5813
+ "brands"
5814
+ ],
5815
+ "unicode": "f1f4",
5816
+ "label": "Paypal Credit Card",
5817
+ "svg": {
5818
+ "brands": {
5819
+ "last_modified": 1500927880000,
5820
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M186.3 258.2c0 12.2-9.7 21.5-22 21.5-9.2 0-16-5.2-16-15 0-12.2 9.5-22 21.7-22 9.3 0 16.3 5.7 16.3 15.5zM80.5 209.7h-4.7c-1.5 0-3 1-3.2 2.7l-4.3 26.7 8.2-.3c11 0 19.5-1.5 21.5-14.2 2.3-13.4-6.2-14.9-17.5-14.9zm284 0H360c-1.8 0-3 1-3.2 2.7l-4.2 26.7 8-.3c13 0 22-3 22-18-.1-10.6-9.6-11.1-18.1-11.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM128.3 215.4c0-21-16.2-28-34.7-28h-40c-2.5 0-5 2-5.2 4.7L32 294.2c-.3 2 1.2 4 3.2 4h19c2.7 0 5.2-2.9 5.5-5.7l4.5-26.6c1-7.2 13.2-4.7 18-4.7 28.6 0 46.1-17 46.1-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.2 8.2-5.8-8.5-14.2-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9 0 20.2-4.9 26.5-11.9-.5 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H200c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm40.5 97.9l63.7-92.6c.5-.5.5-1 .5-1.7 0-1.7-1.5-3.5-3.2-3.5h-19.2c-1.7 0-3.5 1-4.5 2.5l-26.5 39-11-37.5c-.8-2.2-3-4-5.5-4h-18.7c-1.7 0-3.2 1.8-3.2 3.5 0 1.2 19.5 56.8 21.2 62.1-2.7 3.8-20.5 28.6-20.5 31.6 0 1.8 1.5 3.2 3.2 3.2h19.2c1.8-.1 3.5-1.1 4.5-2.6zm159.3-106.7c0-21-16.2-28-34.7-28h-39.7c-2.7 0-5.2 2-5.5 4.7l-16.2 102c-.2 2 1.3 4 3.2 4h20.5c2 0 3.5-1.5 4-3.2l4.5-29c1-7.2 13.2-4.7 18-4.7 28.4 0 45.9-17 45.9-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.3 8.2-5.5-8.5-14-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9.3 0 20.5-4.9 26.5-11.9-.3 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H484c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm47.5-33.3c0-2-1.5-3.5-3.2-3.5h-18.5c-1.5 0-3 1.2-3.2 2.7l-16.2 104-.3.5c0 1.8 1.5 3.5 3.5 3.5h16.5c2.5 0 5-2.9 5.2-5.7L544 191.2v-.3zm-90 51.8c-12.2 0-21.7 9.7-21.7 22 0 9.7 7 15 16.2 15 12 0 21.7-9.2 21.7-21.5.1-9.8-6.9-15.5-16.2-15.5z\"/></svg>",
5821
+ "viewBox": [
5822
+ "0",
5823
+ "0",
5824
+ "576",
5825
+ "512"
5826
+ ],
5827
+ "width": 576,
5828
+ "height": 512,
5829
+ "path": "M186.3 258.2c0 12.2-9.7 21.5-22 21.5-9.2 0-16-5.2-16-15 0-12.2 9.5-22 21.7-22 9.3 0 16.3 5.7 16.3 15.5zM80.5 209.7h-4.7c-1.5 0-3 1-3.2 2.7l-4.3 26.7 8.2-.3c11 0 19.5-1.5 21.5-14.2 2.3-13.4-6.2-14.9-17.5-14.9zm284 0H360c-1.8 0-3 1-3.2 2.7l-4.2 26.7 8-.3c13 0 22-3 22-18-.1-10.6-9.6-11.1-18.1-11.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM128.3 215.4c0-21-16.2-28-34.7-28h-40c-2.5 0-5 2-5.2 4.7L32 294.2c-.3 2 1.2 4 3.2 4h19c2.7 0 5.2-2.9 5.5-5.7l4.5-26.6c1-7.2 13.2-4.7 18-4.7 28.6 0 46.1-17 46.1-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.2 8.2-5.8-8.5-14.2-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9 0 20.2-4.9 26.5-11.9-.5 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H200c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm40.5 97.9l63.7-92.6c.5-.5.5-1 .5-1.7 0-1.7-1.5-3.5-3.2-3.5h-19.2c-1.7 0-3.5 1-4.5 2.5l-26.5 39-11-37.5c-.8-2.2-3-4-5.5-4h-18.7c-1.7 0-3.2 1.8-3.2 3.5 0 1.2 19.5 56.8 21.2 62.1-2.7 3.8-20.5 28.6-20.5 31.6 0 1.8 1.5 3.2 3.2 3.2h19.2c1.8-.1 3.5-1.1 4.5-2.6zm159.3-106.7c0-21-16.2-28-34.7-28h-39.7c-2.7 0-5.2 2-5.5 4.7l-16.2 102c-.2 2 1.3 4 3.2 4h20.5c2 0 3.5-1.5 4-3.2l4.5-29c1-7.2 13.2-4.7 18-4.7 28.4 0 45.9-17 45.9-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.3 8.2-5.5-8.5-14-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9.3 0 20.5-4.9 26.5-11.9-.3 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H484c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm47.5-33.3c0-2-1.5-3.5-3.2-3.5h-18.5c-1.5 0-3 1.2-3.2 2.7l-16.2 104-.3.5c0 1.8 1.5 3.5 3.5 3.5h16.5c2.5 0 5-2.9 5.2-5.7L544 191.2v-.3zm-90 51.8c-12.2 0-21.7 9.7-21.7 22 0 9.7 7 15 16.2 15 12 0 21.7-9.2 21.7-21.5.1-9.8-6.9-15.5-16.2-15.5z"
5830
+ }
5831
+ }
5832
+ },
5833
+ "cc-stripe": {
5834
+ "changes": [
5835
+ "4.2",
5836
+ "5.0.0"
5837
+ ],
5838
+ "ligatures": [],
5839
+ "search": {
5840
+ "terms": []
5841
+ },
5842
+ "styles": [
5843
+ "brands"
5844
+ ],
5845
+ "unicode": "f1f5",
5846
+ "label": "Stripe Credit Card",
5847
+ "svg": {
5848
+ "brands": {
5849
+ "last_modified": 1510266191926,
5850
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M396.9 256.5c0 19.1-8.8 33.4-21.9 33.4-8.3 0-13.3-3-16.8-6.7l-.2-52.8c3.7-4.1 8.8-7 17-7 12.9-.1 21.9 14.5 21.9 33.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM122.2 281.1c0-42.3-54.3-34.7-54.3-50.7 0-5.5 4.6-7.7 12.1-7.7 10.8 0 24.5 3.3 35.3 9.1v-33.4c-11.8-4.7-23.5-6.5-35.3-6.5-28.8 0-48 15-48 40.2 0 39.3 54 32.9 54 49.9 0 6.6-5.7 8.7-13.6 8.7-11.8 0-26.9-4.9-38.9-11.3v33.9c13.2 5.7 26.6 8.1 38.8 8.1 29.6-.2 49.9-14.7 49.9-40.3zm68.9-86.9h-27v-30.8l-34.7 7.4-.2 113.9c0 21 15.8 36.5 36.9 36.5 11.6 0 20.2-2.1 24.9-4.7v-28.9c-4.5 1.8-27 8.3-27-12.6v-50.5h27v-30.3zm73.8 0c-4.7-1.7-21.3-4.8-29.6 10.5l-2.2-10.5h-30.7v124.5h35.5v-84.4c8.4-11 22.6-8.9 27.1-7.4v-32.7zm44.2 0h-35.7v124.5h35.7V194.2zm0-47.3l-35.7 7.6v28.9l35.7-7.6v-28.9zm122.7 108.8c0-41.3-23.5-63.8-48.4-63.8-13.9 0-22.9 6.6-27.8 11.1l-1.8-8.8h-31.3V360l35.5-7.5.1-40.2c5.1 3.7 12.7 9 25.1 9 25.4-.1 48.6-20.5 48.6-65.6zm112.2 1.2c0-36.4-17.6-65.1-51.3-65.1-33.8 0-54.3 28.7-54.3 64.9 0 42.8 24.2 64.5 58.8 64.5 17 0 29.7-3.9 39.4-9.2v-28.6c-9.7 4.9-20.8 7.9-34.9 7.9-13.8 0-26-4.9-27.6-21.5h69.5c.1-2 .4-9.4.4-12.9zm-51.6-36.1c-8.9 0-18.7 6.7-18.7 22.7h36.7c0-16-9.3-22.7-18-22.7z\"/></svg>",
5851
+ "viewBox": [
5852
+ "0",
5853
+ "0",
5854
+ "576",
5855
+ "512"
5856
+ ],
5857
+ "width": 576,
5858
+ "height": 512,
5859
+ "path": "M396.9 256.5c0 19.1-8.8 33.4-21.9 33.4-8.3 0-13.3-3-16.8-6.7l-.2-52.8c3.7-4.1 8.8-7 17-7 12.9-.1 21.9 14.5 21.9 33.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM122.2 281.1c0-42.3-54.3-34.7-54.3-50.7 0-5.5 4.6-7.7 12.1-7.7 10.8 0 24.5 3.3 35.3 9.1v-33.4c-11.8-4.7-23.5-6.5-35.3-6.5-28.8 0-48 15-48 40.2 0 39.3 54 32.9 54 49.9 0 6.6-5.7 8.7-13.6 8.7-11.8 0-26.9-4.9-38.9-11.3v33.9c13.2 5.7 26.6 8.1 38.8 8.1 29.6-.2 49.9-14.7 49.9-40.3zm68.9-86.9h-27v-30.8l-34.7 7.4-.2 113.9c0 21 15.8 36.5 36.9 36.5 11.6 0 20.2-2.1 24.9-4.7v-28.9c-4.5 1.8-27 8.3-27-12.6v-50.5h27v-30.3zm73.8 0c-4.7-1.7-21.3-4.8-29.6 10.5l-2.2-10.5h-30.7v124.5h35.5v-84.4c8.4-11 22.6-8.9 27.1-7.4v-32.7zm44.2 0h-35.7v124.5h35.7V194.2zm0-47.3l-35.7 7.6v28.9l35.7-7.6v-28.9zm122.7 108.8c0-41.3-23.5-63.8-48.4-63.8-13.9 0-22.9 6.6-27.8 11.1l-1.8-8.8h-31.3V360l35.5-7.5.1-40.2c5.1 3.7 12.7 9 25.1 9 25.4-.1 48.6-20.5 48.6-65.6zm112.2 1.2c0-36.4-17.6-65.1-51.3-65.1-33.8 0-54.3 28.7-54.3 64.9 0 42.8 24.2 64.5 58.8 64.5 17 0 29.7-3.9 39.4-9.2v-28.6c-9.7 4.9-20.8 7.9-34.9 7.9-13.8 0-26-4.9-27.6-21.5h69.5c.1-2 .4-9.4.4-12.9zm-51.6-36.1c-8.9 0-18.7 6.7-18.7 22.7h36.7c0-16-9.3-22.7-18-22.7z"
5860
+ }
5861
+ }
5862
+ },
5863
+ "cc-visa": {
5864
+ "changes": [
5865
+ "4.2",
5866
+ "5.0.0"
5867
+ ],
5868
+ "ligatures": [],
5869
+ "search": {
5870
+ "terms": []
5871
+ },
5872
+ "styles": [
5873
+ "brands"
5874
+ ],
5875
+ "unicode": "f1f0",
5876
+ "label": "Visa Credit Card",
5877
+ "svg": {
5878
+ "brands": {
5879
+ "last_modified": 1505492030000,
5880
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M470.1 231.3s7.6 37.2 9.3 45H446c3.3-8.9 16-43.5 16-43.5-.2.3 3.3-9.1 5.3-14.9l2.8 13.4zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM152.5 331.2L215.7 176h-42.5l-39.3 106-4.3-21.5-14-71.4c-2.3-9.9-9.4-12.7-18.2-13.1H32.7l-.7 3.1c15.8 4 29.9 9.8 42.2 17.1l35.8 135h42.5zm94.4.2L272.1 176h-40.2l-25.1 155.4h40.1zm139.9-50.8c.2-17.7-10.6-31.2-33.7-42.3-14.1-7.1-22.7-11.9-22.7-19.2.2-6.6 7.3-13.4 23.1-13.4 13.1-.3 22.7 2.8 29.9 5.9l3.6 1.7 5.5-33.6c-7.9-3.1-20.5-6.6-36-6.6-39.7 0-67.6 21.2-67.8 51.4-.3 22.3 20 34.7 35.2 42.2 15.5 7.6 20.8 12.6 20.8 19.3-.2 10.4-12.6 15.2-24.1 15.2-16 0-24.6-2.5-37.7-8.3l-5.3-2.5-5.6 34.9c9.4 4.3 26.8 8.1 44.8 8.3 42.2.1 69.7-20.8 70-53zM528 331.4L495.6 176h-31.1c-9.6 0-16.9 2.8-21 12.9l-59.7 142.5H426s6.9-19.2 8.4-23.3H486c1.2 5.5 4.8 23.3 4.8 23.3H528z\"/></svg>",
5881
+ "viewBox": [
5882
+ "0",
5883
+ "0",
5884
+ "576",
5885
+ "512"
5886
+ ],
5887
+ "width": 576,
5888
+ "height": 512,
5889
+ "path": "M470.1 231.3s7.6 37.2 9.3 45H446c3.3-8.9 16-43.5 16-43.5-.2.3 3.3-9.1 5.3-14.9l2.8 13.4zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM152.5 331.2L215.7 176h-42.5l-39.3 106-4.3-21.5-14-71.4c-2.3-9.9-9.4-12.7-18.2-13.1H32.7l-.7 3.1c15.8 4 29.9 9.8 42.2 17.1l35.8 135h42.5zm94.4.2L272.1 176h-40.2l-25.1 155.4h40.1zm139.9-50.8c.2-17.7-10.6-31.2-33.7-42.3-14.1-7.1-22.7-11.9-22.7-19.2.2-6.6 7.3-13.4 23.1-13.4 13.1-.3 22.7 2.8 29.9 5.9l3.6 1.7 5.5-33.6c-7.9-3.1-20.5-6.6-36-6.6-39.7 0-67.6 21.2-67.8 51.4-.3 22.3 20 34.7 35.2 42.2 15.5 7.6 20.8 12.6 20.8 19.3-.2 10.4-12.6 15.2-24.1 15.2-16 0-24.6-2.5-37.7-8.3l-5.3-2.5-5.6 34.9c9.4 4.3 26.8 8.1 44.8 8.3 42.2.1 69.7-20.8 70-53zM528 331.4L495.6 176h-31.1c-9.6 0-16.9 2.8-21 12.9l-59.7 142.5H426s6.9-19.2 8.4-23.3H486c1.2 5.5 4.8 23.3 4.8 23.3H528z"
5890
+ }
5891
+ }
5892
+ },
5893
+ "centercode": {
5894
+ "changes": [
5895
+ "5.0.0"
5896
+ ],
5897
+ "ligatures": [],
5898
+ "search": {
5899
+ "terms": []
5900
+ },
5901
+ "styles": [
5902
+ "brands"
5903
+ ],
5904
+ "unicode": "f380",
5905
+ "label": "Centercode",
5906
+ "svg": {
5907
+ "brands": {
5908
+ "last_modified": 1503937790000,
5909
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M329.2 268.6c-3.8 35.2-35.4 60.6-70.6 56.8-35.2-3.8-60.6-35.4-56.8-70.6 3.8-35.2 35.4-60.6 70.6-56.8 35.1 3.8 60.6 35.4 56.8 70.6zm-85.8 235.1C96.7 496-8.2 365.5 10.1 224.3c11.2-86.6 65.8-156.9 139.1-192 161-77.1 349.7 37.4 354.7 216.6 4.1 147-118.4 262.2-260.5 254.8zm179.9-180c27.9-118-160.5-205.9-237.2-234.2-57.5 56.3-69.1 188.6-33.8 344.4 68.8 15.8 169.1-26.4 271-110.2z\"/></svg>",
5910
+ "viewBox": [
5911
+ "0",
5912
+ "0",
5913
+ "512",
5914
+ "512"
5915
+ ],
5916
+ "width": 512,
5917
+ "height": 512,
5918
+ "path": "M329.2 268.6c-3.8 35.2-35.4 60.6-70.6 56.8-35.2-3.8-60.6-35.4-56.8-70.6 3.8-35.2 35.4-60.6 70.6-56.8 35.1 3.8 60.6 35.4 56.8 70.6zm-85.8 235.1C96.7 496-8.2 365.5 10.1 224.3c11.2-86.6 65.8-156.9 139.1-192 161-77.1 349.7 37.4 354.7 216.6 4.1 147-118.4 262.2-260.5 254.8zm179.9-180c27.9-118-160.5-205.9-237.2-234.2-57.5 56.3-69.1 188.6-33.8 344.4 68.8 15.8 169.1-26.4 271-110.2z"
5919
+ }
5920
+ }
5921
+ },
5922
+ "certificate": {
5923
+ "changes": [
5924
+ "2",
5925
+ "5.0.0"
5926
+ ],
5927
+ "ligatures": [],
5928
+ "search": {
5929
+ "terms": [
5930
+ "badge",
5931
+ "star"
5932
+ ]
5933
+ },
5934
+ "styles": [
5935
+ "solid"
5936
+ ],
5937
+ "unicode": "f0a3",
5938
+ "label": "certificate",
5939
+ "svg": {
5940
+ "solid": {
5941
+ "last_modified": 1500927880000,
5942
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M458.622 255.92l45.985-45.005c13.708-12.977 7.316-36.039-10.664-40.339l-62.65-15.99 17.661-62.015c4.991-17.838-11.829-34.663-29.661-29.671l-61.994 17.667-15.984-62.671C337.085.197 313.765-6.276 300.99 7.228L256 53.57 211.011 7.229c-12.63-13.351-36.047-7.234-40.325 10.668l-15.984 62.671-61.995-17.667C74.87 57.907 58.056 74.738 63.046 92.572l17.661 62.015-62.65 15.99C.069 174.878-6.31 197.944 7.392 210.915l45.985 45.005-45.985 45.004c-13.708 12.977-7.316 36.039 10.664 40.339l62.65 15.99-17.661 62.015c-4.991 17.838 11.829 34.663 29.661 29.671l61.994-17.667 15.984 62.671c4.439 18.575 27.696 24.018 40.325 10.668L256 458.61l44.989 46.001c12.5 13.488 35.987 7.486 40.325-10.668l15.984-62.671 61.994 17.667c17.836 4.994 34.651-11.837 29.661-29.671l-17.661-62.015 62.65-15.99c17.987-4.302 24.366-27.367 10.664-40.339l-45.984-45.004z\"/></svg>",
5943
+ "viewBox": [
5944
+ "0",
5945
+ "0",
5946
+ "512",
5947
+ "512"
5948
+ ],
5949
+ "width": 512,
5950
+ "height": 512,
5951
+ "path": "M458.622 255.92l45.985-45.005c13.708-12.977 7.316-36.039-10.664-40.339l-62.65-15.99 17.661-62.015c4.991-17.838-11.829-34.663-29.661-29.671l-61.994 17.667-15.984-62.671C337.085.197 313.765-6.276 300.99 7.228L256 53.57 211.011 7.229c-12.63-13.351-36.047-7.234-40.325 10.668l-15.984 62.671-61.995-17.667C74.87 57.907 58.056 74.738 63.046 92.572l17.661 62.015-62.65 15.99C.069 174.878-6.31 197.944 7.392 210.915l45.985 45.005-45.985 45.004c-13.708 12.977-7.316 36.039 10.664 40.339l62.65 15.99-17.661 62.015c-4.991 17.838 11.829 34.663 29.661 29.671l61.994-17.667 15.984 62.671c4.439 18.575 27.696 24.018 40.325 10.668L256 458.61l44.989 46.001c12.5 13.488 35.987 7.486 40.325-10.668l15.984-62.671 61.994 17.667c17.836 4.994 34.651-11.837 29.661-29.671l-17.661-62.015 62.65-15.99c17.987-4.302 24.366-27.367 10.664-40.339l-45.984-45.004z"
5952
+ }
5953
+ }
5954
+ },
5955
+ "chalkboard": {
5956
+ "changes": [
5957
+ "5.0.13"
5958
+ ],
5959
+ "ligatures": [],
5960
+ "search": {
5961
+ "terms": [
5962
+ "blackboard",
5963
+ "learning",
5964
+ "school",
5965
+ "teaching",
5966
+ "whiteboard",
5967
+ "writing"
5968
+ ]
5969
+ },
5970
+ "styles": [
5971
+ "solid"
5972
+ ],
5973
+ "unicode": "f51b",
5974
+ "label": "Chalkboard",
5975
+ "svg": {
5976
+ "solid": {
5977
+ "last_modified": 1525967154565,
5978
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M96 64h448v352h64V40c0-22.06-17.94-40-40-40H72C49.94 0 32 17.94 32 40v376h64V64zm528 384H480v-64H288v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z\"/></svg>",
5979
+ "viewBox": [
5980
+ "0",
5981
+ "0",
5982
+ "640",
5983
+ "512"
5984
+ ],
5985
+ "width": 640,
5986
+ "height": 512,
5987
+ "path": "M96 64h448v352h64V40c0-22.06-17.94-40-40-40H72C49.94 0 32 17.94 32 40v376h64V64zm528 384H480v-64H288v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"
5988
+ }
5989
+ }
5990
+ },
5991
+ "chalkboard-teacher": {
5992
+ "changes": [
5993
+ "5.0.13"
5994
+ ],
5995
+ "ligatures": [],
5996
+ "search": {
5997
+ "terms": [
5998
+ "blackboard",
5999
+ "instructor",
6000
+ "learning",
6001
+ "professor",
6002
+ "school",
6003
+ "whiteboard",
6004
+ "writing"
6005
+ ]
6006
+ },
6007
+ "styles": [
6008
+ "solid"
6009
+ ],
6010
+ "unicode": "f51c",
6011
+ "label": "Chalkboard Teacher",
6012
+ "svg": {
6013
+ "solid": {
6014
+ "last_modified": 1525967154564,
6015
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M208 352c-2.39 0-4.78.35-7.06 1.09C187.98 357.3 174.35 360 160 360c-14.35 0-27.98-2.7-40.95-6.91-2.28-.74-4.66-1.09-7.05-1.09C49.94 352-.33 402.48 0 464.62.14 490.88 21.73 512 48 512h224c26.27 0 47.86-21.12 48-47.38.33-62.14-49.94-112.62-112-112.62zm-48-32c53.02 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96 42.98 96 96 96zM592 0H208c-26.47 0-48 22.25-48 49.59V96c23.42 0 45.1 6.78 64 17.8V64h352v288h-64v-64H384v64h-76.24c19.1 16.69 33.12 38.73 39.69 64H592c26.47 0 48-22.25 48-49.59V49.59C640 22.25 618.47 0 592 0z\"/></svg>",
6016
+ "viewBox": [
6017
+ "0",
6018
+ "0",
6019
+ "640",
6020
+ "512"
6021
+ ],
6022
+ "width": 640,
6023
+ "height": 512,
6024
+ "path": "M208 352c-2.39 0-4.78.35-7.06 1.09C187.98 357.3 174.35 360 160 360c-14.35 0-27.98-2.7-40.95-6.91-2.28-.74-4.66-1.09-7.05-1.09C49.94 352-.33 402.48 0 464.62.14 490.88 21.73 512 48 512h224c26.27 0 47.86-21.12 48-47.38.33-62.14-49.94-112.62-112-112.62zm-48-32c53.02 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96 42.98 96 96 96zM592 0H208c-26.47 0-48 22.25-48 49.59V96c23.42 0 45.1 6.78 64 17.8V64h352v288h-64v-64H384v64h-76.24c19.1 16.69 33.12 38.73 39.69 64H592c26.47 0 48-22.25 48-49.59V49.59C640 22.25 618.47 0 592 0z"
6025
+ }
6026
+ }
6027
+ },
6028
+ "charging-station": {
6029
+ "changes": [
6030
+ "5.2.0"
6031
+ ],
6032
+ "ligatures": [],
6033
+ "search": {
6034
+ "terms": []
6035
+ },
6036
+ "styles": [
6037
+ "solid"
6038
+ ],
6039
+ "unicode": "f5e7",
6040
+ "label": "Charging Station",
6041
+ "svg": {
6042
+ "solid": {
6043
+ "last_modified": 1532362831522,
6044
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M336 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h320c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm208-320V80c0-8.84-7.16-16-16-16s-16 7.16-16 16v48h-32V80c0-8.84-7.16-16-16-16s-16 7.16-16 16v48h-16c-8.84 0-16 7.16-16 16v32c0 35.76 23.62 65.69 56 75.93v118.49c0 13.95-9.5 26.92-23.26 29.19C431.22 402.5 416 388.99 416 372v-28c0-48.6-39.4-88-88-88h-8V64c0-35.35-28.65-64-64-64H96C60.65 0 32 28.65 32 64v352h288V304h8c22.09 0 40 17.91 40 40v24.61c0 39.67 28.92 75.16 68.41 79.01C481.71 452.05 520 416.41 520 372V251.93c32.38-10.24 56-40.17 56-75.93v-32c0-8.84-7.16-16-16-16h-16zm-283.91 47.76l-93.7 139c-2.2 3.33-6.21 5.24-10.39 5.24-7.67 0-13.47-6.28-11.67-12.92L167.35 224H108c-7.25 0-12.85-5.59-11.89-11.89l16-107C112.9 99.9 117.98 96 124 96h68c7.88 0 13.62 6.54 11.6 13.21L192 160h57.7c9.24 0 15.01 8.78 10.39 15.76z\"/></svg>",
6045
+ "viewBox": [
6046
+ "0",
6047
+ "0",
6048
+ "576",
6049
+ "512"
6050
+ ],
6051
+ "width": 576,
6052
+ "height": 512,
6053
+ "path": "M336 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h320c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm208-320V80c0-8.84-7.16-16-16-16s-16 7.16-16 16v48h-32V80c0-8.84-7.16-16-16-16s-16 7.16-16 16v48h-16c-8.84 0-16 7.16-16 16v32c0 35.76 23.62 65.69 56 75.93v118.49c0 13.95-9.5 26.92-23.26 29.19C431.22 402.5 416 388.99 416 372v-28c0-48.6-39.4-88-88-88h-8V64c0-35.35-28.65-64-64-64H96C60.65 0 32 28.65 32 64v352h288V304h8c22.09 0 40 17.91 40 40v24.61c0 39.67 28.92 75.16 68.41 79.01C481.71 452.05 520 416.41 520 372V251.93c32.38-10.24 56-40.17 56-75.93v-32c0-8.84-7.16-16-16-16h-16zm-283.91 47.76l-93.7 139c-2.2 3.33-6.21 5.24-10.39 5.24-7.67 0-13.47-6.28-11.67-12.92L167.35 224H108c-7.25 0-12.85-5.59-11.89-11.89l16-107C112.9 99.9 117.98 96 124 96h68c7.88 0 13.62 6.54 11.6 13.21L192 160h57.7c9.24 0 15.01 8.78 10.39 15.76z"
6054
+ }
6055
+ }
6056
+ },
6057
+ "chart-area": {
6058
+ "changes": [
6059
+ "4.2",
6060
+ "5.0.0"
6061
+ ],
6062
+ "ligatures": [],
6063
+ "search": {
6064
+ "terms": [
6065
+ "analytics",
6066
+ "area-chart",
6067
+ "graph"
6068
+ ]
6069
+ },
6070
+ "styles": [
6071
+ "solid"
6072
+ ],
6073
+ "unicode": "f1fe",
6074
+ "label": "Area Chart",
6075
+ "svg": {
6076
+ "solid": {
6077
+ "last_modified": 1500927880000,
6078
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM372.7 159.5L288 216l-85.3-113.7c-5.1-6.8-15.5-6.3-19.9 1L96 248v104h384l-89.9-187.8c-3.2-6.5-11.4-8.7-17.4-4.7z\"/></svg>",
6079
+ "viewBox": [
6080
+ "0",
6081
+ "0",
6082
+ "512",
6083
+ "512"
6084
+ ],
6085
+ "width": 512,
6086
+ "height": 512,
6087
+ "path": "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM372.7 159.5L288 216l-85.3-113.7c-5.1-6.8-15.5-6.3-19.9 1L96 248v104h384l-89.9-187.8c-3.2-6.5-11.4-8.7-17.4-4.7z"
6088
+ }
6089
+ }
6090
+ },
6091
+ "chart-bar": {
6092
+ "changes": [
6093
+ "1",
6094
+ "5.0.0"
6095
+ ],
6096
+ "ligatures": [],
6097
+ "search": {
6098
+ "terms": [
6099
+ "analytics",
6100
+ "bar-chart",
6101
+ "graph"
6102
+ ]
6103
+ },
6104
+ "styles": [
6105
+ "solid",
6106
+ "regular"
6107
+ ],
6108
+ "unicode": "f080",
6109
+ "label": "Bar Chart",
6110
+ "svg": {
6111
+ "solid": {
6112
+ "last_modified": 1500927880000,
6113
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zm-308-44v-72c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V204c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V108c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z\"/></svg>",
6114
+ "viewBox": [
6115
+ "0",
6116
+ "0",
6117
+ "512",
6118
+ "512"
6119
+ ],
6120
+ "width": 512,
6121
+ "height": 512,
6122
+ "path": "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zm-308-44v-72c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V204c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V108c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"
6123
+ },
6124
+ "regular": {
6125
+ "last_modified": 1500927880000,
6126
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M500 400c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v324h452zm-356-60v-72c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V140c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V204c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V108c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12z\"/></svg>",
6127
+ "viewBox": [
6128
+ "0",
6129
+ "0",
6130
+ "512",
6131
+ "512"
6132
+ ],
6133
+ "width": 512,
6134
+ "height": 512,
6135
+ "path": "M500 400c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v324h452zm-356-60v-72c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V140c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V204c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V108c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12z"
6136
+ }
6137
+ }
6138
+ },
6139
+ "chart-line": {
6140
+ "changes": [
6141
+ "4.2",
6142
+ "5.0.0"
6143
+ ],
6144
+ "ligatures": [],
6145
+ "search": {
6146
+ "terms": [
6147
+ "activity",
6148
+ "analytics",
6149
+ "dashboard",
6150
+ "graph",
6151
+ "line-chart"
6152
+ ]
6153
+ },
6154
+ "styles": [
6155
+ "solid"
6156
+ ],
6157
+ "unicode": "f201",
6158
+ "label": "Line Chart",
6159
+ "svg": {
6160
+ "solid": {
6161
+ "last_modified": 1500927880000,
6162
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM456 96H344c-21.4 0-32.1 25.9-17 41l32.9 32.9-72 72.9-55.6-55.6c-4.7-4.7-12.2-4.7-16.9 0L96.4 305c-4.7 4.6-4.8 12.2-.2 16.9l28.5 29.4c4.7 4.8 12.4 4.9 17.1.1l82.1-82.1 55.5 55.5c4.7 4.7 12.3 4.7 17 0l109.2-109.2L439 249c15.1 15.1 41 4.4 41-17V120c0-13.3-10.7-24-24-24z\"/></svg>",
6163
+ "viewBox": [
6164
+ "0",
6165
+ "0",
6166
+ "512",
6167
+ "512"
6168
+ ],
6169
+ "width": 512,
6170
+ "height": 512,
6171
+ "path": "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM456 96H344c-21.4 0-32.1 25.9-17 41l32.9 32.9-72 72.9-55.6-55.6c-4.7-4.7-12.2-4.7-16.9 0L96.4 305c-4.7 4.6-4.8 12.2-.2 16.9l28.5 29.4c4.7 4.8 12.4 4.9 17.1.1l82.1-82.1 55.5 55.5c4.7 4.7 12.3 4.7 17 0l109.2-109.2L439 249c15.1 15.1 41 4.4 41-17V120c0-13.3-10.7-24-24-24z"
6172
+ }
6173
+ }
6174
+ },
6175
+ "chart-pie": {
6176
+ "changes": [
6177
+ "4.2",
6178
+ "5.0.0"
6179
+ ],
6180
+ "ligatures": [],
6181
+ "search": {
6182
+ "terms": [
6183
+ "analytics",
6184
+ "graph",
6185
+ "pie-chart"
6186
+ ]
6187
+ },
6188
+ "styles": [
6189
+ "solid"
6190
+ ],
6191
+ "unicode": "f200",
6192
+ "label": "Pie Chart",
6193
+ "svg": {
6194
+ "solid": {
6195
+ "last_modified": 1500927880000,
6196
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M288 12.3V240h227.7c6.9 0 12.3-5.8 12-12.7-6.4-122.4-104.5-220.6-227-227-6.9-.3-12.7 5.1-12.7 12zM552.7 288c6.9 0 12.3 5.8 12 12.7-2.8 53.2-23.2 105.6-61.2 147.8-4.6 5.1-12.6 5.4-17.5.5L325 288h227.7zM401 433c4.8 4.8 4.7 12.8-.4 17.3-42.6 38.4-99 61.7-160.8 61.7C107.6 511.9-.2 403.8 0 271.5.2 143.4 100.8 38.9 227.3 32.3c6.9-.4 12.7 5.1 12.7 12V272l161 161z\"/></svg>",
6197
+ "viewBox": [
6198
+ "0",
6199
+ "0",
6200
+ "576",
6201
+ "512"
6202
+ ],
6203
+ "width": 576,
6204
+ "height": 512,
6205
+ "path": "M288 12.3V240h227.7c6.9 0 12.3-5.8 12-12.7-6.4-122.4-104.5-220.6-227-227-6.9-.3-12.7 5.1-12.7 12zM552.7 288c6.9 0 12.3 5.8 12 12.7-2.8 53.2-23.2 105.6-61.2 147.8-4.6 5.1-12.6 5.4-17.5.5L325 288h227.7zM401 433c4.8 4.8 4.7 12.8-.4 17.3-42.6 38.4-99 61.7-160.8 61.7C107.6 511.9-.2 403.8 0 271.5.2 143.4 100.8 38.9 227.3 32.3c6.9-.4 12.7 5.1 12.7 12V272l161 161z"
6206
+ }
6207
+ }
6208
+ },
6209
+ "check": {
6210
+ "changes": [
6211
+ "1",
6212
+ "5.0.0"
6213
+ ],
6214
+ "ligatures": [],
6215
+ "search": {
6216
+ "terms": [
6217
+ "accept",
6218
+ "agree",
6219
+ "checkmark",
6220
+ "confirm",
6221
+ "correct",
6222
+ "done",
6223
+ "notice",
6224
+ "notification",
6225
+ "notify",
6226
+ "ok",
6227
+ "select",
6228
+ "success",
6229
+ "tick",
6230
+ "todo",
6231
+ "yes"
6232
+ ]
6233
+ },
6234
+ "styles": [
6235
+ "solid"
6236
+ ],
6237
+ "unicode": "f00c",
6238
+ "label": "Check",
6239
+ "svg": {
6240
+ "solid": {
6241
+ "last_modified": 1500927880000,
6242
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"/></svg>",
6243
+ "viewBox": [
6244
+ "0",
6245
+ "0",
6246
+ "512",
6247
+ "512"
6248
+ ],
6249
+ "width": 512,
6250
+ "height": 512,
6251
+ "path": "M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"
6252
+ }
6253
+ }
6254
+ },
6255
+ "check-circle": {
6256
+ "changes": [
6257
+ "1",
6258
+ "5.0.0"
6259
+ ],
6260
+ "ligatures": [],
6261
+ "search": {
6262
+ "terms": [
6263
+ "accept",
6264
+ "agree",
6265
+ "confirm",
6266
+ "correct",
6267
+ "done",
6268
+ "ok",
6269
+ "select",
6270
+ "success",
6271
+ "todo",
6272
+ "yes"
6273
+ ]
6274
+ },
6275
+ "styles": [
6276
+ "solid",
6277
+ "regular"
6278
+ ],
6279
+ "unicode": "f058",
6280
+ "label": "Check Circle",
6281
+ "svg": {
6282
+ "solid": {
6283
+ "last_modified": 1521653821446,
6284
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"/></svg>",
6285
+ "viewBox": [
6286
+ "0",
6287
+ "0",
6288
+ "512",
6289
+ "512"
6290
+ ],
6291
+ "width": 512,
6292
+ "height": 512,
6293
+ "path": "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"
6294
+ },
6295
+ "regular": {
6296
+ "last_modified": 1500927880000,
6297
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z\"/></svg>",
6298
+ "viewBox": [
6299
+ "0",
6300
+ "0",
6301
+ "512",
6302
+ "512"
6303
+ ],
6304
+ "width": 512,
6305
+ "height": 512,
6306
+ "path": "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z"
6307
+ }
6308
+ }
6309
+ },
6310
+ "check-double": {
6311
+ "changes": [
6312
+ "5.1.0"
6313
+ ],
6314
+ "ligatures": [],
6315
+ "search": {
6316
+ "terms": [
6317
+ "accept",
6318
+ "agree",
6319
+ "checkmark",
6320
+ "confirm",
6321
+ "correct",
6322
+ "done",
6323
+ "notice",
6324
+ "notification",
6325
+ "notify",
6326
+ "ok",
6327
+ "select",
6328
+ "success",
6329
+ "tick",
6330
+ "todo"
6331
+ ]
6332
+ },
6333
+ "styles": [
6334
+ "solid"
6335
+ ],
6336
+ "unicode": "f560",
6337
+ "label": "Check Double",
6338
+ "svg": {
6339
+ "solid": {
6340
+ "last_modified": 1529520111651,
6341
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M504.5 171.95l-36.2-36.41c-10-10.05-26.21-10.05-36.2 0L192 377.02 79.9 264.28c-10-10.06-26.21-10.06-36.2 0L7.5 300.69c-10 10.05-10 26.36 0 36.41l166.4 167.36c10 10.06 26.21 10.06 36.2 0l294.4-296.09c10-10.06 10-26.36 0-36.42zM166.57 282.71c6.84 7.02 18.18 7.02 25.21.18L403.85 72.62c7.02-6.84 7.02-18.18.18-25.21L362.08 5.29c-6.84-7.02-18.18-7.02-25.21-.18L179.71 161.19l-68.23-68.77c-6.84-7.02-18.18-7.02-25.2-.18l-42.13 41.77c-7.02 6.84-7.02 18.18-.18 25.2l122.6 123.5z\"/></svg>",
6342
+ "viewBox": [
6343
+ "0",
6344
+ "0",
6345
+ "512",
6346
+ "512"
6347
+ ],
6348
+ "width": 512,
6349
+ "height": 512,
6350
+ "path": "M504.5 171.95l-36.2-36.41c-10-10.05-26.21-10.05-36.2 0L192 377.02 79.9 264.28c-10-10.06-26.21-10.06-36.2 0L7.5 300.69c-10 10.05-10 26.36 0 36.41l166.4 167.36c10 10.06 26.21 10.06 36.2 0l294.4-296.09c10-10.06 10-26.36 0-36.42zM166.57 282.71c6.84 7.02 18.18 7.02 25.21.18L403.85 72.62c7.02-6.84 7.02-18.18.18-25.21L362.08 5.29c-6.84-7.02-18.18-7.02-25.21-.18L179.71 161.19l-68.23-68.77c-6.84-7.02-18.18-7.02-25.2-.18l-42.13 41.77c-7.02 6.84-7.02 18.18-.18 25.2l122.6 123.5z"
6351
+ }
6352
+ }
6353
+ },
6354
+ "check-square": {
6355
+ "changes": [
6356
+ "3.1",
6357
+ "5.0.0"
6358
+ ],
6359
+ "ligatures": [],
6360
+ "search": {
6361
+ "terms": [
6362
+ "accept",
6363
+ "agree",
6364
+ "checkmark",
6365
+ "confirm",
6366
+ "correct",
6367
+ "done",
6368
+ "ok",
6369
+ "select",
6370
+ "success",
6371
+ "todo",
6372
+ "yes"
6373
+ ]
6374
+ },
6375
+ "styles": [
6376
+ "solid",
6377
+ "regular"
6378
+ ],
6379
+ "unicode": "f14a",
6380
+ "label": "Check Square",
6381
+ "svg": {
6382
+ "solid": {
6383
+ "last_modified": 1500927880000,
6384
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\"/></svg>",
6385
+ "viewBox": [
6386
+ "0",
6387
+ "0",
6388
+ "448",
6389
+ "512"
6390
+ ],
6391
+ "width": 448,
6392
+ "height": 512,
6393
+ "path": "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"
6394
+ },
6395
+ "regular": {
6396
+ "last_modified": 1500927880000,
6397
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm0 400H48V80h352v352zm-35.864-241.724L191.547 361.48c-4.705 4.667-12.303 4.637-16.97-.068l-90.781-91.516c-4.667-4.705-4.637-12.303.069-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l59.792 60.277 141.352-140.216c4.705-4.667 12.303-4.637 16.97.068l22.536 22.718c4.667 4.706 4.637 12.304-.068 16.971z\"/></svg>",
6398
+ "viewBox": [
6399
+ "0",
6400
+ "0",
6401
+ "448",
6402
+ "512"
6403
+ ],
6404
+ "width": 448,
6405
+ "height": 512,
6406
+ "path": "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm0 400H48V80h352v352zm-35.864-241.724L191.547 361.48c-4.705 4.667-12.303 4.637-16.97-.068l-90.781-91.516c-4.667-4.705-4.637-12.303.069-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l59.792 60.277 141.352-140.216c4.705-4.667 12.303-4.637 16.97.068l22.536 22.718c4.667 4.706 4.637 12.304-.068 16.971z"
6407
+ }
6408
+ }
6409
+ },
6410
+ "chess": {
6411
+ "changes": [
6412
+ "5.0.5"
6413
+ ],
6414
+ "ligatures": [],
6415
+ "search": {
6416
+ "terms": []
6417
+ },
6418
+ "styles": [
6419
+ "solid"
6420
+ ],
6421
+ "unicode": "f439",
6422
+ "label": "Chess",
6423
+ "svg": {
6424
+ "solid": {
6425
+ "last_modified": 1518899527992,
6426
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M199.821 217.633a6 6 0 0 1 6 6l-.001 20.766a6 6 0 0 1-6 6h-25.805c0 31.715-2.153 96.201 17.398 153.229H64.597C84.54 345.452 82.02 279.245 82.02 250.399H56.183a6 6 0 0 1-6-6l.002-20.766a6 6 0 0 1 6-6h143.636zM41.554 115.088l34.58 95.071h103.734l34.572-95.072c2.846-7.826-2.95-16.101-11.278-16.101H152v-30.22h21.57a6 6 0 0 0 6-6V40.383a6 6 0 0 0-6-6h-28.367V6a6 6 0 0 0-6-6H116.82a6 6 0 0 0-6 6v28.383H82.421a6 6 0 0 0-6 6v22.383a6 6 0 0 0 6 6H104v30.219H52.831c-8.328.001-14.124 8.276-11.277 16.103zM222.678 445.17v-28.067a6 6 0 0 0-6-6H39.322a6 6 0 0 0-6 6v28.067l-22.148 14.164a6 6 0 0 0-2.767 5.055V506a6 6 0 0 0 6 6h227.187a6 6 0 0 0 6-6v-41.612a6 6 0 0 0-2.767-5.055l-22.149-14.163zm90.578-144.225l24.88 16.963c.09 18.124-.167 63.904-11.905 114.522h147.526c-11.713-50.475-11.969-96.324-11.882-114.537l24.859-16.949a3.856 3.856 0 0 0 1.684-3.187v-69.901a3.857 3.857 0 0 0-3.857-3.857h-27.655a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.858-3.857h-52.918a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.857-3.857H315.43a3.857 3.857 0 0 0-3.857 3.857v69.901a3.855 3.855 0 0 0 1.683 3.188zm71.585 51.906c0-8.372 6.787-15.158 15.159-15.158s15.158 6.787 15.158 15.158v30.318h-30.317v-30.318zM504.62 470.059l-13.664-10.639v-15.552a3.857 3.857 0 0 0-3.857-3.857H312.915a3.857 3.857 0 0 0-3.857 3.857v15.552l-13.677 10.639a3.857 3.857 0 0 0-1.488 3.044v35.039a3.857 3.857 0 0 0 3.857 3.857h204.5a3.857 3.857 0 0 0 3.857-3.857v-35.04a3.859 3.859 0 0 0-1.487-3.043z\"/></svg>",
6427
+ "viewBox": [
6428
+ "0",
6429
+ "0",
6430
+ "512",
6431
+ "512"
6432
+ ],
6433
+ "width": 512,
6434
+ "height": 512,
6435
+ "path": "M199.821 217.633a6 6 0 0 1 6 6l-.001 20.766a6 6 0 0 1-6 6h-25.805c0 31.715-2.153 96.201 17.398 153.229H64.597C84.54 345.452 82.02 279.245 82.02 250.399H56.183a6 6 0 0 1-6-6l.002-20.766a6 6 0 0 1 6-6h143.636zM41.554 115.088l34.58 95.071h103.734l34.572-95.072c2.846-7.826-2.95-16.101-11.278-16.101H152v-30.22h21.57a6 6 0 0 0 6-6V40.383a6 6 0 0 0-6-6h-28.367V6a6 6 0 0 0-6-6H116.82a6 6 0 0 0-6 6v28.383H82.421a6 6 0 0 0-6 6v22.383a6 6 0 0 0 6 6H104v30.219H52.831c-8.328.001-14.124 8.276-11.277 16.103zM222.678 445.17v-28.067a6 6 0 0 0-6-6H39.322a6 6 0 0 0-6 6v28.067l-22.148 14.164a6 6 0 0 0-2.767 5.055V506a6 6 0 0 0 6 6h227.187a6 6 0 0 0 6-6v-41.612a6 6 0 0 0-2.767-5.055l-22.149-14.163zm90.578-144.225l24.88 16.963c.09 18.124-.167 63.904-11.905 114.522h147.526c-11.713-50.475-11.969-96.324-11.882-114.537l24.859-16.949a3.856 3.856 0 0 0 1.684-3.187v-69.901a3.857 3.857 0 0 0-3.857-3.857h-27.655a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.858-3.857h-52.918a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.857-3.857H315.43a3.857 3.857 0 0 0-3.857 3.857v69.901a3.855 3.855 0 0 0 1.683 3.188zm71.585 51.906c0-8.372 6.787-15.158 15.159-15.158s15.158 6.787 15.158 15.158v30.318h-30.317v-30.318zM504.62 470.059l-13.664-10.639v-15.552a3.857 3.857 0 0 0-3.857-3.857H312.915a3.857 3.857 0 0 0-3.857 3.857v15.552l-13.677 10.639a3.857 3.857 0 0 0-1.488 3.044v35.039a3.857 3.857 0 0 0 3.857 3.857h204.5a3.857 3.857 0 0 0 3.857-3.857v-35.04a3.859 3.859 0 0 0-1.487-3.043z"
6436
+ }
6437
+ }
6438
+ },
6439
+ "chess-bishop": {
6440
+ "changes": [
6441
+ "5.0.5"
6442
+ ],
6443
+ "ligatures": [],
6444
+ "search": {
6445
+ "terms": []
6446
+ },
6447
+ "styles": [
6448
+ "solid"
6449
+ ],
6450
+ "unicode": "f43a",
6451
+ "label": "Chess Bishop",
6452
+ "svg": {
6453
+ "solid": {
6454
+ "last_modified": 1518899527988,
6455
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 320 512\"><path d=\"M123.158 77.881C107.369 72.53 96 57.597 96 40c0-22.091 17.909-40 40-40h47.796c22.091 0 40 17.909 40 40 0 17.541-11.295 32.434-27.005 37.829 23.993 16.657 48.577 46.839 68.703 82.05L144.929 280.443a6 6 0 0 0 0 8.485l14.142 14.142a6 6 0 0 0 8.485 0L280.9 189.726c17.758 38.297 29.371 79.443 29.371 114.273 0 53.786-22.897 75.788-58.446 86.033V448H68.174v-57.97C32.631 379.784 9.739 357.781 9.739 304c0-78.029 58.281-187.766 113.419-226.119zM320 500v-24c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12z\"/></svg>",
6456
+ "viewBox": [
6457
+ "0",
6458
+ "0",
6459
+ "320",
6460
+ "512"
6461
+ ],
6462
+ "width": 320,
6463
+ "height": 512,
6464
+ "path": "M123.158 77.881C107.369 72.53 96 57.597 96 40c0-22.091 17.909-40 40-40h47.796c22.091 0 40 17.909 40 40 0 17.541-11.295 32.434-27.005 37.829 23.993 16.657 48.577 46.839 68.703 82.05L144.929 280.443a6 6 0 0 0 0 8.485l14.142 14.142a6 6 0 0 0 8.485 0L280.9 189.726c17.758 38.297 29.371 79.443 29.371 114.273 0 53.786-22.897 75.788-58.446 86.033V448H68.174v-57.97C32.631 379.784 9.739 357.781 9.739 304c0-78.029 58.281-187.766 113.419-226.119zM320 500v-24c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12z"
6465
+ }
6466
+ }
6467
+ },
6468
+ "chess-board": {
6469
+ "changes": [
6470
+ "5.0.5"
6471
+ ],
6472
+ "ligatures": [],
6473
+ "search": {
6474
+ "terms": []
6475
+ },
6476
+ "styles": [
6477
+ "solid"
6478
+ ],
6479
+ "unicode": "f43c",
6480
+ "label": "Chess Board",
6481
+ "svg": {
6482
+ "solid": {
6483
+ "last_modified": 1518899527988,
6484
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M256 256v64h-64v-64h64zm0-256h-64v64h64V0zm0 256h64v-64h-64v64zM384 0h-64v64h64V0zm0 512h64v-64h-64v64zm128-64v-64h-64v64h64zm-384 64h64v-64h-64v64zm0-512H64v64h64V0zm384 192v-64h-64v64h64zm0 128v-64h-64v64h64zM0 512h64v-64H0v64zM0 64v64h64V64H0zm0 128v64h64v-64H0zm0 128v64h64v-64H0zm256 192h64v-64h-64v64zm-64-128v64h64v-64h-64zm64-192v-64h-64v64h64zM64 384v64h64v-64H64zm64-128H64v64h64v-64zm256 128h64v-64h-64v64zM512 0h-64v64h64V0zM384 256h64v-64h-64v64zm0-192v64h64V64h-64zm-64 320v64h64v-64h-64zm-192-64v64h64v-64h-64zm128 0v64h64v-64h-64zm-64-128h-64v64h64v-64zm-64-64H64v64h64v-64zm192 192h64v-64h-64v64zM192 128V64h-64v64h64zm128 0V64h-64v64h64zm0 64h64v-64h-64v64z\"/></svg>",
6485
+ "viewBox": [
6486
+ "0",
6487
+ "0",
6488
+ "512",
6489
+ "512"
6490
+ ],
6491
+ "width": 512,
6492
+ "height": 512,
6493
+ "path": "M256 256v64h-64v-64h64zm0-256h-64v64h64V0zm0 256h64v-64h-64v64zM384 0h-64v64h64V0zm0 512h64v-64h-64v64zm128-64v-64h-64v64h64zm-384 64h64v-64h-64v64zm0-512H64v64h64V0zm384 192v-64h-64v64h64zm0 128v-64h-64v64h64zM0 512h64v-64H0v64zM0 64v64h64V64H0zm0 128v64h64v-64H0zm0 128v64h64v-64H0zm256 192h64v-64h-64v64zm-64-128v64h64v-64h-64zm64-192v-64h-64v64h64zM64 384v64h64v-64H64zm64-128H64v64h64v-64zm256 128h64v-64h-64v64zM512 0h-64v64h64V0zM384 256h64v-64h-64v64zm0-192v64h64V64h-64zm-64 320v64h64v-64h-64zm-192-64v64h64v-64h-64zm128 0v64h64v-64h-64zm-64-128h-64v64h64v-64zm-64-64H64v64h64v-64zm192 192h64v-64h-64v64zM192 128V64h-64v64h64zm128 0V64h-64v64h64zm0 64h64v-64h-64v64z"
6494
+ }
6495
+ }
6496
+ },
6497
+ "chess-king": {
6498
+ "changes": [
6499
+ "5.0.5"
6500
+ ],
6501
+ "ligatures": [],
6502
+ "search": {
6503
+ "terms": []
6504
+ },
6505
+ "styles": [
6506
+ "solid"
6507
+ ],
6508
+ "unicode": "f43f",
6509
+ "label": "Chess King",
6510
+ "svg": {
6511
+ "solid": {
6512
+ "last_modified": 1518899527989,
6513
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 476v24c0 6.627-5.373 12-12 12H44c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12zm-8.033-324H248v-48h50a6 6 0 0 0 6-6V62a6 6 0 0 0-6-6h-50V6a6 6 0 0 0-6-6h-36a6 6 0 0 0-6 6v50h-50a6 6 0 0 0-6 6v36a6 6 0 0 0 6 6h50v48H40.033c-27.574 0-46.879 27.244-37.738 53.259L87.582 448h272.836l85.287-242.741C454.846 179.244 435.541 152 407.967 152z\"/></svg>",
6514
+ "viewBox": [
6515
+ "0",
6516
+ "0",
6517
+ "448",
6518
+ "512"
6519
+ ],
6520
+ "width": 448,
6521
+ "height": 512,
6522
+ "path": "M416 476v24c0 6.627-5.373 12-12 12H44c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12zm-8.033-324H248v-48h50a6 6 0 0 0 6-6V62a6 6 0 0 0-6-6h-50V6a6 6 0 0 0-6-6h-36a6 6 0 0 0-6 6v50h-50a6 6 0 0 0-6 6v36a6 6 0 0 0 6 6h50v48H40.033c-27.574 0-46.879 27.244-37.738 53.259L87.582 448h272.836l85.287-242.741C454.846 179.244 435.541 152 407.967 152z"
6523
+ }
6524
+ }
6525
+ },
6526
+ "chess-knight": {
6527
+ "changes": [
6528
+ "5.0.5"
6529
+ ],
6530
+ "ligatures": [],
6531
+ "search": {
6532
+ "terms": []
6533
+ },
6534
+ "styles": [
6535
+ "solid"
6536
+ ],
6537
+ "unicode": "f441",
6538
+ "label": "Chess Knight",
6539
+ "svg": {
6540
+ "solid": {
6541
+ "last_modified": 1518899527990,
6542
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 384 512\"><path d=\"M352 224v224H32v-46.557c0-30.302 17.12-58.003 44.223-71.554l57.243-28.622A48 48 0 0 0 160 258.334V208l-22.127 11.063a23.996 23.996 0 0 0-12.55 15.645l-11.835 47.338a12 12 0 0 1-7.185 8.231l-29.601 11.84a11.998 11.998 0 0 1-9.33-.176L7.126 275.167A12 12 0 0 1 0 264.201v-158.26c0-6.365 2.529-12.47 7.03-16.971L16 80 1.789 51.578A16.937 16.937 0 0 1 0 44c0-6.627 5.373-12 12-12h148c106.039 0 192 85.961 192 192zm20 240H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12zM52 128c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z\"/></svg>",
6543
+ "viewBox": [
6544
+ "0",
6545
+ "0",
6546
+ "384",
6547
+ "512"
6548
+ ],
6549
+ "width": 384,
6550
+ "height": 512,
6551
+ "path": "M352 224v224H32v-46.557c0-30.302 17.12-58.003 44.223-71.554l57.243-28.622A48 48 0 0 0 160 258.334V208l-22.127 11.063a23.996 23.996 0 0 0-12.55 15.645l-11.835 47.338a12 12 0 0 1-7.185 8.231l-29.601 11.84a11.998 11.998 0 0 1-9.33-.176L7.126 275.167A12 12 0 0 1 0 264.201v-158.26c0-6.365 2.529-12.47 7.03-16.971L16 80 1.789 51.578A16.937 16.937 0 0 1 0 44c0-6.627 5.373-12 12-12h148c106.039 0 192 85.961 192 192zm20 240H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12zM52 128c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z"
6552
+ }
6553
+ }
6554
+ },
6555
+ "chess-pawn": {
6556
+ "changes": [
6557
+ "5.0.5"
6558
+ ],
6559
+ "ligatures": [],
6560
+ "search": {
6561
+ "terms": []
6562
+ },
6563
+ "styles": [
6564
+ "solid"
6565
+ ],
6566
+ "unicode": "f443",
6567
+ "label": "Chess Pawn",
6568
+ "svg": {
6569
+ "solid": {
6570
+ "last_modified": 1518899527990,
6571
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 320 512\"><path d=\"M264 448H56s60-42.743 60-176H84c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h40.209C95.721 210.56 76 181.588 76 148c0-46.392 37.608-84 84-84s84 37.608 84 84c0 33.588-19.721 62.56-48.209 76H236c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12h-32c0 133.257 60 176 60 176zm28 16H28c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h264c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12z\"/></svg>",
6572
+ "viewBox": [
6573
+ "0",
6574
+ "0",
6575
+ "320",
6576
+ "512"
6577
+ ],
6578
+ "width": 320,
6579
+ "height": 512,
6580
+ "path": "M264 448H56s60-42.743 60-176H84c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h40.209C95.721 210.56 76 181.588 76 148c0-46.392 37.608-84 84-84s84 37.608 84 84c0 33.588-19.721 62.56-48.209 76H236c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12h-32c0 133.257 60 176 60 176zm28 16H28c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h264c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12z"
6581
+ }
6582
+ }
6583
+ },
6584
+ "chess-queen": {
6585
+ "changes": [
6586
+ "5.0.5"
6587
+ ],
6588
+ "ligatures": [],
6589
+ "search": {
6590
+ "terms": []
6591
+ },
6592
+ "styles": [
6593
+ "solid"
6594
+ ],
6595
+ "unicode": "f445",
6596
+ "label": "Chess Queen",
6597
+ "svg": {
6598
+ "solid": {
6599
+ "last_modified": 1518899527991,
6600
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M436 512H76c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12zM255.579 0c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zm204.568 154.634c-5.768-3.045-12.916-.932-16.082 4.77-8.616 15.516-22.747 37.801-44.065 37.801-28.714 0-30.625-19.804-31.686-57.542-.183-6.492-5.501-11.664-11.995-11.664h-41.006c-5.175 0-9.754 3.328-11.388 8.238-8.89 26.709-26.073 40.992-47.925 40.992s-39.034-14.283-47.925-40.992c-1.634-4.91-6.213-8.238-11.388-8.238h-41.005c-6.495 0-11.813 5.174-11.995 11.667-1.052 37.642-2.934 57.539-31.688 57.539-20.691 0-33.817-20.224-44.425-38.025-3.266-5.48-10.258-7.431-15.899-4.453l-39.179 20.679a12 12 0 0 0-5.51 15.145L112 448h288l105.014-257.448a12 12 0 0 0-5.51-15.145l-39.357-20.773z\"/></svg>",
6601
+ "viewBox": [
6602
+ "0",
6603
+ "0",
6604
+ "512",
6605
+ "512"
6606
+ ],
6607
+ "width": 512,
6608
+ "height": 512,
6609
+ "path": "M436 512H76c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12zM255.579 0c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zm204.568 154.634c-5.768-3.045-12.916-.932-16.082 4.77-8.616 15.516-22.747 37.801-44.065 37.801-28.714 0-30.625-19.804-31.686-57.542-.183-6.492-5.501-11.664-11.995-11.664h-41.006c-5.175 0-9.754 3.328-11.388 8.238-8.89 26.709-26.073 40.992-47.925 40.992s-39.034-14.283-47.925-40.992c-1.634-4.91-6.213-8.238-11.388-8.238h-41.005c-6.495 0-11.813 5.174-11.995 11.667-1.052 37.642-2.934 57.539-31.688 57.539-20.691 0-33.817-20.224-44.425-38.025-3.266-5.48-10.258-7.431-15.899-4.453l-39.179 20.679a12 12 0 0 0-5.51 15.145L112 448h288l105.014-257.448a12 12 0 0 0-5.51-15.145l-39.357-20.773z"
6610
+ }
6611
+ }
6612
+ },
6613
+ "chess-rook": {
6614
+ "changes": [
6615
+ "5.0.5"
6616
+ ],
6617
+ "ligatures": [],
6618
+ "search": {
6619
+ "terms": []
6620
+ },
6621
+ "styles": [
6622
+ "solid"
6623
+ ],
6624
+ "unicode": "f447",
6625
+ "label": "Chess Rook",
6626
+ "svg": {
6627
+ "solid": {
6628
+ "last_modified": 1518899527992,
6629
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 384 512\"><path d=\"M81.241 215.027C80.957 258.92 77.411 348.076 48 448h287.982c-29.4-99.604-32.936-188.912-33.221-232.975l45.418-42.312a11.998 11.998 0 0 0 3.82-8.78V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v44h-48V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v44H96V44c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v119.932c0 3.33 1.384 6.51 3.82 8.78l45.421 42.315zM160 256c0-17.673 14.327-32 32-32 17.673 0 32 14.327 32 32v64.004h-64V256zm224 220v24c0 6.627-5.373 12-12 12H12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12z\"/></svg>",
6630
+ "viewBox": [
6631
+ "0",
6632
+ "0",
6633
+ "384",
6634
+ "512"
6635
+ ],
6636
+ "width": 384,
6637
+ "height": 512,
6638
+ "path": "M81.241 215.027C80.957 258.92 77.411 348.076 48 448h287.982c-29.4-99.604-32.936-188.912-33.221-232.975l45.418-42.312a11.998 11.998 0 0 0 3.82-8.78V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v44h-48V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v44H96V44c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v119.932c0 3.33 1.384 6.51 3.82 8.78l45.421 42.315zM160 256c0-17.673 14.327-32 32-32 17.673 0 32 14.327 32 32v64.004h-64V256zm224 220v24c0 6.627-5.373 12-12 12H12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12z"
6639
+ }
6640
+ }
6641
+ },
6642
+ "chevron-circle-down": {
6643
+ "changes": [
6644
+ "3.1",
6645
+ "5.0.0"
6646
+ ],
6647
+ "ligatures": [],
6648
+ "search": {
6649
+ "terms": [
6650
+ "arrow",
6651
+ "dropdown",
6652
+ "menu",
6653
+ "more"
6654
+ ]
6655
+ },
6656
+ "styles": [
6657
+ "solid"
6658
+ ],
6659
+ "unicode": "f13a",
6660
+ "label": "Chevron Circle Down",
6661
+ "svg": {
6662
+ "solid": {
6663
+ "last_modified": 1500927880000,
6664
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM273 369.9l135.5-135.5c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L256 285.1 154.4 183.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L239 369.9c9.4 9.4 24.6 9.4 34 0z\"/></svg>",
6665
+ "viewBox": [
6666
+ "0",
6667
+ "0",
6668
+ "512",
6669
+ "512"
6670
+ ],
6671
+ "width": 512,
6672
+ "height": 512,
6673
+ "path": "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM273 369.9l135.5-135.5c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L256 285.1 154.4 183.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L239 369.9c9.4 9.4 24.6 9.4 34 0z"
6674
+ }
6675
+ }
6676
+ },
6677
+ "chevron-circle-left": {
6678
+ "changes": [
6679
+ "3.1",
6680
+ "5.0.0"
6681
+ ],
6682
+ "ligatures": [],
6683
+ "search": {
6684
+ "terms": [
6685
+ "arrow",
6686
+ "back",
6687
+ "previous"
6688
+ ]
6689
+ },
6690
+ "styles": [
6691
+ "solid"
6692
+ ],
6693
+ "unicode": "f137",
6694
+ "label": "Chevron Circle Left",
6695
+ "svg": {
6696
+ "solid": {
6697
+ "last_modified": 1500927880000,
6698
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zM142.1 273l135.5 135.5c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L226.9 256l101.6-101.6c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L142.1 239c-9.4 9.4-9.4 24.6 0 34z\"/></svg>",
6699
+ "viewBox": [
6700
+ "0",
6701
+ "0",
6702
+ "512",
6703
+ "512"
6704
+ ],
6705
+ "width": 512,
6706
+ "height": 512,
6707
+ "path": "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zM142.1 273l135.5 135.5c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L226.9 256l101.6-101.6c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L142.1 239c-9.4 9.4-9.4 24.6 0 34z"
6708
+ }
6709
+ }
6710
+ },
6711
+ "chevron-circle-right": {
6712
+ "changes": [
6713
+ "3.1",
6714
+ "5.0.0"
6715
+ ],
6716
+ "ligatures": [],
6717
+ "search": {
6718
+ "terms": [
6719
+ "arrow",
6720
+ "forward",
6721
+ "next"
6722
+ ]
6723
+ },
6724
+ "styles": [
6725
+ "solid"
6726
+ ],
6727
+ "unicode": "f138",
6728
+ "label": "Chevron Circle Right",
6729
+ "svg": {
6730
+ "solid": {
6731
+ "last_modified": 1500927880000,
6732
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\"/></svg>",
6733
+ "viewBox": [
6734
+ "0",
6735
+ "0",
6736
+ "512",
6737
+ "512"
6738
+ ],
6739
+ "width": 512,
6740
+ "height": 512,
6741
+ "path": "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z"
6742
+ }
6743
+ }
6744
+ },
6745
+ "chevron-circle-up": {
6746
+ "changes": [
6747
+ "3.1",
6748
+ "5.0.0"
6749
+ ],
6750
+ "ligatures": [],
6751
+ "search": {
6752
+ "terms": [
6753
+ "arrow"
6754
+ ]
6755
+ },
6756
+ "styles": [
6757
+ "solid"
6758
+ ],
6759
+ "unicode": "f139",
6760
+ "label": "Chevron Circle Up",
6761
+ "svg": {
6762
+ "solid": {
6763
+ "last_modified": 1500927880000,
6764
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm231-113.9L103.5 277.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L256 226.9l101.6 101.6c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L273 142.1c-9.4-9.4-24.6-9.4-34 0z\"/></svg>",
6765
+ "viewBox": [
6766
+ "0",
6767
+ "0",
6768
+ "512",
6769
+ "512"
6770
+ ],
6771
+ "width": 512,
6772
+ "height": 512,
6773
+ "path": "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm231-113.9L103.5 277.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L256 226.9l101.6 101.6c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L273 142.1c-9.4-9.4-24.6-9.4-34 0z"
6774
+ }
6775
+ }
6776
+ },
6777
+ "chevron-down": {
6778
+ "changes": [
6779
+ "1",
6780
+ "5.0.0"
6781
+ ],
6782
+ "ligatures": [],
6783
+ "search": {
6784
+ "terms": []
6785
+ },
6786
+ "styles": [
6787
+ "solid"
6788
+ ],
6789
+ "unicode": "f078",
6790
+ "label": "chevron-down",
6791
+ "svg": {
6792
+ "solid": {
6793
+ "last_modified": 1500927880000,
6794
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z\"/></svg>",
6795
+ "viewBox": [
6796
+ "0",
6797
+ "0",
6798
+ "448",
6799
+ "512"
6800
+ ],
6801
+ "width": 448,
6802
+ "height": 512,
6803
+ "path": "M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z"
6804
+ }
6805
+ }
6806
+ },
6807
+ "chevron-left": {
6808
+ "changes": [
6809
+ "1",
6810
+ "5.0.0"
6811
+ ],
6812
+ "ligatures": [],
6813
+ "search": {
6814
+ "terms": [
6815
+ "back",
6816
+ "bracket",
6817
+ "previous"
6818
+ ]
6819
+ },
6820
+ "styles": [
6821
+ "solid"
6822
+ ],
6823
+ "unicode": "f053",
6824
+ "label": "chevron-left",
6825
+ "svg": {
6826
+ "solid": {
6827
+ "last_modified": 1500927880000,
6828
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 320 512\"><path d=\"M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z\"/></svg>",
6829
+ "viewBox": [
6830
+ "0",
6831
+ "0",
6832
+ "320",
6833
+ "512"
6834
+ ],
6835
+ "width": 320,
6836
+ "height": 512,
6837
+ "path": "M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z"
6838
+ }
6839
+ }
6840
+ },
6841
+ "chevron-right": {
6842
+ "changes": [
6843
+ "1",
6844
+ "5.0.0"
6845
+ ],
6846
+ "ligatures": [],
6847
+ "search": {
6848
+ "terms": [
6849
+ "bracket",
6850
+ "forward",
6851
+ "next"
6852
+ ]
6853
+ },
6854
+ "styles": [
6855
+ "solid"
6856
+ ],
6857
+ "unicode": "f054",
6858
+ "label": "chevron-right",
6859
+ "svg": {
6860
+ "solid": {
6861
+ "last_modified": 1500927880000,
6862
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 320 512\"><path d=\"M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z\"/></svg>",
6863
+ "viewBox": [
6864
+ "0",
6865
+ "0",
6866
+ "320",
6867
+ "512"
6868
+ ],
6869
+ "width": 320,
6870
+ "height": 512,
6871
+ "path": "M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z"
6872
+ }
6873
+ }
6874
+ },
6875
+ "chevron-up": {
6876
+ "changes": [
6877
+ "1",
6878
+ "5.0.0"
6879
+ ],
6880
+ "ligatures": [],
6881
+ "search": {
6882
+ "terms": []
6883
+ },
6884
+ "styles": [
6885
+ "solid"
6886
+ ],
6887
+ "unicode": "f077",
6888
+ "label": "chevron-up",
6889
+ "svg": {
6890
+ "solid": {
6891
+ "last_modified": 1500927880000,
6892
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z\"/></svg>",
6893
+ "viewBox": [
6894
+ "0",
6895
+ "0",
6896
+ "448",
6897
+ "512"
6898
+ ],
6899
+ "width": 448,
6900
+ "height": 512,
6901
+ "path": "M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z"
6902
+ }
6903
+ }
6904
+ },
6905
+ "child": {
6906
+ "changes": [
6907
+ "4.1",
6908
+ "5.0.0"
6909
+ ],
6910
+ "ligatures": [],
6911
+ "search": {
6912
+ "terms": []
6913
+ },
6914
+ "styles": [
6915
+ "solid"
6916
+ ],
6917
+ "unicode": "f1ae",
6918
+ "label": "Child",
6919
+ "svg": {
6920
+ "solid": {
6921
+ "last_modified": 1502397066000,
6922
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 384 512\"><path d=\"M120 72c0-39.765 32.235-72 72-72s72 32.235 72 72c0 39.764-32.235 72-72 72s-72-32.236-72-72zm254.627 1.373c-12.496-12.497-32.758-12.497-45.254 0L242.745 160H141.254L54.627 73.373c-12.496-12.497-32.758-12.497-45.254 0-12.497 12.497-12.497 32.758 0 45.255L104 213.254V480c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V368h16v112c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V213.254l94.627-94.627c12.497-12.497 12.497-32.757 0-45.254z\"/></svg>",
6923
+ "viewBox": [
6924
+ "0",
6925
+ "0",
6926
+ "384",
6927
+ "512"
6928
+ ],
6929
+ "width": 384,
6930
+ "height": 512,
6931
+ "path": "M120 72c0-39.765 32.235-72 72-72s72 32.235 72 72c0 39.764-32.235 72-72 72s-72-32.236-72-72zm254.627 1.373c-12.496-12.497-32.758-12.497-45.254 0L242.745 160H141.254L54.627 73.373c-12.496-12.497-32.758-12.497-45.254 0-12.497 12.497-12.497 32.758 0 45.255L104 213.254V480c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V368h16v112c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V213.254l94.627-94.627c12.497-12.497 12.497-32.757 0-45.254z"
6932
+ }
6933
+ }
6934
+ },
6935
+ "chrome": {
6936
+ "changes": [
6937
+ "4.4",
6938
+ "5.0.0"
6939
+ ],
6940
+ "ligatures": [],
6941
+ "search": {
6942
+ "terms": [
6943
+ "browser"
6944
+ ]
6945
+ },
6946
+ "styles": [
6947
+ "brands"
6948
+ ],
6949
+ "unicode": "f268",
6950
+ "label": "Chrome",
6951
+ "svg": {
6952
+ "brands": {
6953
+ "last_modified": 1500927880000,
6954
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 496 512\"><path d=\"M131.5 217.5L55.1 100.1c47.6-59.2 119-91.8 192-92.1 42.3-.3 85.5 10.5 124.8 33.2 43.4 25.2 76.4 61.4 97.4 103L264 133.4c-58.1-3.4-113.4 29.3-132.5 84.1zm32.9 38.5c0 46.2 37.4 83.6 83.6 83.6s83.6-37.4 83.6-83.6-37.4-83.6-83.6-83.6-83.6 37.3-83.6 83.6zm314.9-89.2L339.6 174c37.9 44.3 38.5 108.2 6.6 157.2L234.1 503.6c46.5 2.5 94.4-7.7 137.8-32.9 107.4-62 150.9-192 107.4-303.9zM133.7 303.6L40.4 120.1C14.9 159.1 0 205.9 0 256c0 124 90.8 226.7 209.5 244.9l63.7-124.8c-57.6 10.8-113.2-20.8-139.5-72.5z\"/></svg>",
6955
+ "viewBox": [
6956
+ "0",
6957
+ "0",
6958
+ "496",
6959
+ "512"
6960
+ ],
6961
+ "width": 496,
6962
+ "height": 512,
6963
+ "path": "M131.5 217.5L55.1 100.1c47.6-59.2 119-91.8 192-92.1 42.3-.3 85.5 10.5 124.8 33.2 43.4 25.2 76.4 61.4 97.4 103L264 133.4c-58.1-3.4-113.4 29.3-132.5 84.1zm32.9 38.5c0 46.2 37.4 83.6 83.6 83.6s83.6-37.4 83.6-83.6-37.4-83.6-83.6-83.6-83.6 37.3-83.6 83.6zm314.9-89.2L339.6 174c37.9 44.3 38.5 108.2 6.6 157.2L234.1 503.6c46.5 2.5 94.4-7.7 137.8-32.9 107.4-62 150.9-192 107.4-303.9zM133.7 303.6L40.4 120.1C14.9 159.1 0 205.9 0 256c0 124 90.8 226.7 209.5 244.9l63.7-124.8c-57.6 10.8-113.2-20.8-139.5-72.5z"
6964
+ }
6965
+ }
6966
+ },
6967
+ "church": {
6968
+ "changes": [
6969
+ "5.0.13"
6970
+ ],
6971
+ "ligatures": [],
6972
+ "search": {
6973
+ "terms": [
6974
+ "building",
6975
+ "community",
6976
+ "religion"
6977
+ ]
6978
+ },
6979
+ "styles": [
6980
+ "solid"
6981
+ ],
6982
+ "unicode": "f51d",
6983
+ "label": "Church",
6984
+ "svg": {
6985
+ "solid": {
6986
+ "last_modified": 1525967154565,
6987
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M464.46 246.68L352 179.2V128h48c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-48V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v48h-48c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h48v51.2l-112.46 67.48A31.997 31.997 0 0 0 160 274.12V512h96v-96c0-35.35 28.65-64 64-64s64 28.65 64 64v96h96V274.12c0-11.24-5.9-21.66-15.54-27.44zM0 395.96V496c0 8.84 7.16 16 16 16h112V320L19.39 366.54A32.024 32.024 0 0 0 0 395.96zm620.61-29.42L512 320v192h112c8.84 0 16-7.16 16-16V395.96c0-12.8-7.63-24.37-19.39-29.42z\"/></svg>",
6988
+ "viewBox": [
6989
+ "0",
6990
+ "0",
6991
+ "640",
6992
+ "512"
6993
+ ],
6994
+ "width": 640,
6995
+ "height": 512,
6996
+ "path": "M464.46 246.68L352 179.2V128h48c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-48V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v48h-48c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h48v51.2l-112.46 67.48A31.997 31.997 0 0 0 160 274.12V512h96v-96c0-35.35 28.65-64 64-64s64 28.65 64 64v96h96V274.12c0-11.24-5.9-21.66-15.54-27.44zM0 395.96V496c0 8.84 7.16 16 16 16h112V320L19.39 366.54A32.024 32.024 0 0 0 0 395.96zm620.61-29.42L512 320v192h112c8.84 0 16-7.16 16-16V395.96c0-12.8-7.63-24.37-19.39-29.42z"
6997
+ }
6998
+ }
6999
+ },
7000
+ "circle": {
7001
+ "changes": [
7002
+ "3",
7003
+ "5.0.0"
7004
+ ],
7005
+ "ligatures": [],
7006
+ "search": {
7007
+ "terms": [
7008
+ "circle-thin",
7009
+ "dot",
7010
+ "notification"
7011
+ ]
7012
+ },
7013
+ "styles": [
7014
+ "solid",
7015
+ "regular"
7016
+ ],
7017
+ "unicode": "f111",
7018
+ "label": "Circle",
7019
+ "svg": {
7020
+ "solid": {
7021
+ "last_modified": 1500927880000,
7022
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"/></svg>",
7023
+ "viewBox": [
7024
+ "0",
7025
+ "0",
7026
+ "512",
7027
+ "512"
7028
+ ],
7029
+ "width": 512,
7030
+ "height": 512,
7031
+ "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z"
7032
+ },
7033
+ "regular": {
7034
+ "last_modified": 1500927880000,
7035
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z\"/></svg>",
7036
+ "viewBox": [
7037
+ "0",
7038
+ "0",
7039
+ "512",
7040
+ "512"
7041
+ ],
7042
+ "width": 512,
7043
+ "height": 512,
7044
+ "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z"
7045
+ }
7046
+ }
7047
+ },
7048
+ "circle-notch": {
7049
+ "changes": [
7050
+ "4.1",
7051
+ "5.0.0"
7052
+ ],
7053
+ "ligatures": [],
7054
+ "search": {
7055
+ "terms": [
7056
+ "circle-o-notch"
7057
+ ]
7058
+ },
7059
+ "styles": [
7060
+ "solid"
7061
+ ],
7062
+ "unicode": "f1ce",
7063
+ "label": "Circle Notched",
7064
+ "svg": {
7065
+ "solid": {
7066
+ "last_modified": 1500927880000,
7067
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M288 39.056v16.659c0 10.804 7.281 20.159 17.686 23.066C383.204 100.434 440 171.518 440 256c0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-84.47 56.786-155.564 134.312-177.219C216.719 75.874 224 66.517 224 55.712V39.064c0-15.709-14.834-27.153-30.046-23.234C86.603 43.482 7.394 141.206 8.003 257.332c.72 137.052 111.477 246.956 248.531 246.667C393.255 503.711 504 392.788 504 256c0-115.633-79.14-212.779-186.211-240.236C302.678 11.889 288 23.456 288 39.056z\"/></svg>",
7068
+ "viewBox": [
7069
+ "0",
7070
+ "0",
7071
+ "512",
7072
+ "512"
7073
+ ],
7074
+ "width": 512,
7075
+ "height": 512,
7076
+ "path": "M288 39.056v16.659c0 10.804 7.281 20.159 17.686 23.066C383.204 100.434 440 171.518 440 256c0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-84.47 56.786-155.564 134.312-177.219C216.719 75.874 224 66.517 224 55.712V39.064c0-15.709-14.834-27.153-30.046-23.234C86.603 43.482 7.394 141.206 8.003 257.332c.72 137.052 111.477 246.956 248.531 246.667C393.255 503.711 504 392.788 504 256c0-115.633-79.14-212.779-186.211-240.236C302.678 11.889 288 23.456 288 39.056z"
7077
+ }
7078
+ }
7079
+ },
7080
+ "clipboard": {
7081
+ "changes": [
7082
+ "5.0.0"
7083
+ ],
7084
+ "ligatures": [],
7085
+ "search": {
7086
+ "terms": [
7087
+ "paste"
7088
+ ]
7089
+ },
7090
+ "styles": [
7091
+ "solid",
7092
+ "regular"
7093
+ ],
7094
+ "unicode": "f328",
7095
+ "label": "Clipboard",
7096
+ "svg": {
7097
+ "solid": {
7098
+ "last_modified": 1500927880000,
7099
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 384 512\"><path d=\"M384 112v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h80c0-35.29 28.71-64 64-64s64 28.71 64 64h80c26.51 0 48 21.49 48 48zM192 40c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24m96 114v-20a6 6 0 0 0-6-6H102a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h180a6 6 0 0 0 6-6z\"/></svg>",
7100
+ "viewBox": [
7101
+ "0",
7102
+ "0",
7103
+ "384",
7104
+ "512"
7105
+ ],
7106
+ "width": 384,
7107
+ "height": 512,
7108
+ "path": "M384 112v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h80c0-35.29 28.71-64 64-64s64 28.71 64 64h80c26.51 0 48 21.49 48 48zM192 40c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24m96 114v-20a6 6 0 0 0-6-6H102a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h180a6 6 0 0 0 6-6z"
7109
+ },
7110
+ "regular": {
7111
+ "last_modified": 1500927880000,
7112
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 384 512\"><path d=\"M336 64h-80c0-35.29-28.71-64-64-64s-64 28.71-64 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h42v36c0 6.627 5.373 12 12 12h168c6.627 0 12-5.373 12-12v-36h42a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zM192 40c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24\"/></svg>",
7113
+ "viewBox": [
7114
+ "0",
7115
+ "0",
7116
+ "384",
7117
+ "512"
7118
+ ],
7119
+ "width": 384,
7120
+ "height": 512,
7121
+ "path": "M336 64h-80c0-35.29-28.71-64-64-64s-64 28.71-64 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h42v36c0 6.627 5.373 12 12 12h168c6.627 0 12-5.373 12-12v-36h42a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zM192 40c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24"
7122
+ }
7123
+ }
7124
+ },
7125
+ "clipboard-check": {
7126
+ "changes": [
7127
+ "5.0.7"
7128
+ ],
7129
+ "ligatures": [],
7130
+ "search": {
7131
+ "terms": [
7132
+ "accept",
7133
+ "agree",
7134
+ "confirm",
7135
+ "done",
7136
+ "ok",
7137
+ "select",
7138
+ "success",
7139
+ "todo",
7140
+ "yes"
7141
+ ]
7142
+ },
7143
+ "styles": [
7144
+ "solid"
7145
+ ],
7146
+ "unicode": "f46c",
7147
+ "label": "Clipboard Check",
7148
+ "svg": {
7149
+ "solid": {
7150
+ "last_modified": 1521653821446,
7151
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 384 512\"><path d=\"M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm121.2 231.8l-143 141.8c-4.7 4.7-12.3 4.6-17-.1l-82.6-83.3c-4.7-4.7-4.6-12.3.1-17L99.1 285c4.7-4.7 12.3-4.6 17 .1l46 46.4 106-105.2c4.7-4.7 12.3-4.6 17 .1l28.2 28.4c4.7 4.8 4.6 12.3-.1 17z\"/></svg>",
7152
+ "viewBox": [
7153
+ "0",
7154
+ "0",
7155
+ "384",
7156
+ "512"
7157
+ ],
7158
+ "width": 384,
7159
+ "height": 512,
7160
+ "path": "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm121.2 231.8l-143 141.8c-4.7 4.7-12.3 4.6-17-.1l-82.6-83.3c-4.7-4.7-4.6-12.3.1-17L99.1 285c4.7-4.7 12.3-4.6 17 .1l46 46.4 106-105.2c4.7-4.7 12.3-4.6 17 .1l28.2 28.4c4.7 4.8 4.6 12.3-.1 17z"
7161
+ }
7162
+ }
7163
+ },
7164
+ "clipboard-list": {
7165
+ "changes": [
7166
+ "5.0.7"
7167
+ ],
7168
+ "ligatures": [],
7169
+ "search": {
7170
+ "terms": [
7171
+ "checklist",
7172
+ "completed",
7173
+ "done",
7174
+ "finished",
7175
+ "intinerary",
7176
+ "ol",
7177
+ "schedule",
7178
+ "todo",
7179
+ "ul"
7180
+ ]
7181
+ },
7182
+ "styles": [
7183
+ "solid"
7184
+ ],
7185
+ "unicode": "f46d",
7186
+ "label": "Clipboard List",
7187
+ "svg": {
7188
+ "solid": {
7189
+ "last_modified": 1521653821446,
7190
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 384 512\"><path d=\"M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM96 424c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm96-192c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm128 368c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z\"/></svg>",
7191
+ "viewBox": [
7192
+ "0",
7193
+ "0",
7194
+ "384",
7195
+ "512"
7196
+ ],
7197
+ "width": 384,
7198
+ "height": 512,
7199
+ "path": "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM96 424c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm96-192c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm128 368c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z"
7200
+ }
7201
+ }
7202
+ },
7203
+ "clock": {
7204
+ "changes": [
7205
+ "1",
7206
+ "5.0.0"
7207
+ ],
7208
+ "ligatures": [],
7209
+ "search": {
7210
+ "terms": [
7211
+ "date",
7212
+ "late",
7213
+ "schedule",
7214
+ "timer",
7215
+ "timestamp",
7216
+ "watch"
7217
+ ]
7218
+ },
7219
+ "styles": [
7220
+ "solid",
7221
+ "regular"
7222
+ ],
7223
+ "unicode": "f017",
7224
+ "label": "Clock",
7225
+ "svg": {
7226
+ "solid": {
7227
+ "last_modified": 1500927880000,
7228
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm57.1 350.1L224.9 294c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v137.7l63.5 46.2c5.4 3.9 6.5 11.4 2.6 16.8l-28.2 38.8c-3.9 5.3-11.4 6.5-16.8 2.6z\"/></svg>",
7229
+ "viewBox": [
7230
+ "0",
7231
+ "0",
7232
+ "512",
7233
+ "512"
7234
+ ],
7235
+ "width": 512,
7236
+ "height": 512,
7237
+ "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm57.1 350.1L224.9 294c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v137.7l63.5 46.2c5.4 3.9 6.5 11.4 2.6 16.8l-28.2 38.8c-3.9 5.3-11.4 6.5-16.8 2.6z"
7238
+ },
7239
+ "regular": {
7240
+ "last_modified": 1500927880000,
7241
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z\"/></svg>",
7242
+ "viewBox": [
7243
+ "0",
7244
+ "0",
7245
+ "512",
7246
+ "512"
7247
+ ],
7248
+ "width": 512,
7249
+ "height": 512,
7250
+ "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"
7251
+ }
7252
+ }
7253
+ },
7254
+ "clone": {
7255
+ "changes": [
7256
+ "4.4",
7257
+ "5.0.0"
7258
+ ],
7259
+ "ligatures": [],
7260
+ "search": {
7261
+ "terms": [
7262
+ "copy",
7263
+ "duplicate"
7264
+ ]
7265
+ },
7266
+ "styles": [
7267
+ "solid",
7268
+ "regular"
7269
+ ],
7270
+ "unicode": "f24d",
7271
+ "label": "Clone",
7272
+ "svg": {
7273
+ "solid": {
7274
+ "last_modified": 1500927880000,
7275
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M464 0c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48H176c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h288M176 416c-44.112 0-80-35.888-80-80V128H48c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48v-48H176z\"/></svg>",
7276
+ "viewBox": [
7277
+ "0",
7278
+ "0",
7279
+ "512",
7280
+ "512"
7281
+ ],
7282
+ "width": 512,
7283
+ "height": 512,
7284
+ "path": "M464 0c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48H176c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h288M176 416c-44.112 0-80-35.888-80-80V128H48c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48v-48H176z"
7285
+ },
7286
+ "regular": {
7287
+ "last_modified": 1500927880000,
7288
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M464 0H144c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h320c26.51 0 48-21.49 48-48v-48h48c26.51 0 48-21.49 48-48V48c0-26.51-21.49-48-48-48zM362 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h42v224c0 26.51 21.49 48 48 48h224v42a6 6 0 0 1-6 6zm96-96H150a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h308a6 6 0 0 1 6 6v308a6 6 0 0 1-6 6z\"/></svg>",
7289
+ "viewBox": [
7290
+ "0",
7291
+ "0",
7292
+ "512",
7293
+ "512"
7294
+ ],
7295
+ "width": 512,
7296
+ "height": 512,
7297
+ "path": "M464 0H144c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h320c26.51 0 48-21.49 48-48v-48h48c26.51 0 48-21.49 48-48V48c0-26.51-21.49-48-48-48zM362 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h42v224c0 26.51 21.49 48 48 48h224v42a6 6 0 0 1-6 6zm96-96H150a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h308a6 6 0 0 1 6 6v308a6 6 0 0 1-6 6z"
7298
+ }
7299
+ }
7300
+ },
7301
+ "closed-captioning": {
7302
+ "changes": [
7303
+ "4.2",
7304
+ "5.0.0"
7305
+ ],
7306
+ "ligatures": [],
7307
+ "search": {
7308
+ "terms": [
7309
+ "cc"
7310
+ ]
7311
+ },
7312
+ "styles": [
7313
+ "solid",
7314
+ "regular"
7315
+ ],
7316
+ "unicode": "f20a",
7317
+ "label": "Closed Captioning",
7318
+ "svg": {
7319
+ "solid": {
7320
+ "last_modified": 1500927880000,
7321
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM218.1 287.7c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2.1 48 51.1 70.5 92.3 32.6zm190.4 0c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.5 56.9-172.7 32.1-172.7-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 222.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6z\"/></svg>",
7322
+ "viewBox": [
7323
+ "0",
7324
+ "0",
7325
+ "512",
7326
+ "512"
7327
+ ],
7328
+ "width": 512,
7329
+ "height": 512,
7330
+ "path": "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM218.1 287.7c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2.1 48 51.1 70.5 92.3 32.6zm190.4 0c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.5 56.9-172.7 32.1-172.7-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 222.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6z"
7331
+ },
7332
+ "regular": {
7333
+ "last_modified": 1500927880000,
7334
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 336H54c-3.3 0-6-2.7-6-6V118c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v276c0 3.3-2.7 6-6 6zm-211.1-85.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7zm190.4 0c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.9-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 220.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7z\"/></svg>",
7335
+ "viewBox": [
7336
+ "0",
7337
+ "0",
7338
+ "512",
7339
+ "512"
7340
+ ],
7341
+ "width": 512,
7342
+ "height": 512,
7343
+ "path": "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 336H54c-3.3 0-6-2.7-6-6V118c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v276c0 3.3-2.7 6-6 6zm-211.1-85.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7zm190.4 0c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.9-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 220.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7z"
7344
+ }
7345
+ }
7346
+ },
7347
+ "cloud": {
7348
+ "changes": [
7349
+ "2",
7350
+ "5.0.0",
7351
+ "5.0.11"
7352
+ ],
7353
+ "ligatures": [],
7354
+ "search": {
7355
+ "terms": [
7356
+ "save"
7357
+ ]
7358
+ },
7359
+ "styles": [
7360
+ "solid"
7361
+ ],
7362
+ "unicode": "f0c2",
7363
+ "label": "Cloud",
7364
+ "svg": {
7365
+ "solid": {
7366
+ "last_modified": 1525209365067,
7367
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4z\"/></svg>",
7368
+ "viewBox": [
7369
+ "0",
7370
+ "0",
7371
+ "640",
7372
+ "512"
7373
+ ],
7374
+ "width": 640,
7375
+ "height": 512,
7376
+ "path": "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4z"
7377
+ }
7378
+ }
7379
+ },
7380
+ "cloud-download-alt": {
7381
+ "changes": [
7382
+ "5.0.0",
7383
+ "5.0.11"
7384
+ ],
7385
+ "ligatures": [],
7386
+ "search": {
7387
+ "terms": [
7388
+ "cloud-download"
7389
+ ]
7390
+ },
7391
+ "styles": [
7392
+ "solid"
7393
+ ],
7394
+ "unicode": "f381",
7395
+ "label": "Alternate Cloud Download",
7396
+ "svg": {
7397
+ "solid": {
7398
+ "last_modified": 1525209365065,
7399
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zm-132.9 88.7L299.3 420.7c-6.2 6.2-16.4 6.2-22.6 0L171.3 315.3c-10.1-10.1-2.9-27.3 11.3-27.3H248V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v112h65.4c14.2 0 21.4 17.2 11.3 27.3z\"/></svg>",
7400
+ "viewBox": [
7401
+ "0",
7402
+ "0",
7403
+ "640",
7404
+ "512"
7405
+ ],
7406
+ "width": 640,
7407
+ "height": 512,
7408
+ "path": "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zm-132.9 88.7L299.3 420.7c-6.2 6.2-16.4 6.2-22.6 0L171.3 315.3c-10.1-10.1-2.9-27.3 11.3-27.3H248V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v112h65.4c14.2 0 21.4 17.2 11.3 27.3z"
7409
+ }
7410
+ }
7411
+ },
7412
+ "cloud-upload-alt": {
7413
+ "changes": [
7414
+ "5.0.0",
7415
+ "5.0.11"
7416
+ ],
7417
+ "ligatures": [],
7418
+ "search": {
7419
+ "terms": [
7420
+ "cloud-upload"
7421
+ ]
7422
+ },
7423
+ "styles": [
7424
+ "solid"
7425
+ ],
7426
+ "unicode": "f382",
7427
+ "label": "Alternate Cloud Upload",
7428
+ "svg": {
7429
+ "solid": {
7430
+ "last_modified": 1525209365066,
7431
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zM393.4 288H328v112c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V288h-65.4c-14.3 0-21.4-17.2-11.3-27.3l105.4-105.4c6.2-6.2 16.4-6.2 22.6 0l105.4 105.4c10.1 10.1 2.9 27.3-11.3 27.3z\"/></svg>",
7432
+ "viewBox": [
7433
+ "0",
7434
+ "0",
7435
+ "640",
7436
+ "512"
7437
+ ],
7438
+ "width": 640,
7439
+ "height": 512,
7440
+ "path": "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zM393.4 288H328v112c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V288h-65.4c-14.3 0-21.4-17.2-11.3-27.3l105.4-105.4c6.2-6.2 16.4-6.2 22.6 0l105.4 105.4c10.1 10.1 2.9 27.3-11.3 27.3z"
7441
+ }
7442
+ }
7443
+ },
7444
+ "cloudscale": {
7445
+ "changes": [
7446
+ "5.0.0"
7447
+ ],
7448
+ "ligatures": [],
7449
+ "search": {
7450
+ "terms": []
7451
+ },
7452
+ "styles": [
7453
+ "brands"
7454
+ ],
7455
+ "unicode": "f383",
7456
+ "label": "cloudscale.ch",
7457
+ "svg": {
7458
+ "brands": {
7459
+ "last_modified": 1500927880000,
7460
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M318.1 154l-9.4 7.6c-22.5-19.3-51.5-33.6-83.3-33.6C153.8 128 96 188.8 96 260.3c0 6.6.4 13.1 1.4 19.4-2-56 41.8-97.4 92.6-97.4 24.2 0 46.2 9.4 62.6 24.7l-25.2 20.4c-8.3-.9-16.8 1.8-23.1 8.1-11.1 11-11.1 28.9 0 40 11.1 11 28.9 11 40 0 6.3-6.3 9-14.9 8.1-23.1l75.2-88.8c6.3-6.5-3.3-15.9-9.5-9.6zm-83.8 111.5c-5.6 5.5-14.6 5.5-20.2 0-5.6-5.6-5.6-14.6 0-20.2s14.6-5.6 20.2 0 5.6 14.7 0 20.2zM224 32C100.5 32 0 132.5 0 256s100.5 224 224 224 224-100.5 224-224S347.5 32 224 32zm0 384c-88.2 0-160-71.8-160-160S135.8 96 224 96s160 71.8 160 160-71.8 160-160 160z\"/></svg>",
7461
+ "viewBox": [
7462
+ "0",
7463
+ "0",
7464
+ "448",
7465
+ "512"
7466
+ ],
7467
+ "width": 448,
7468
+ "height": 512,
7469
+ "path": "M318.1 154l-9.4 7.6c-22.5-19.3-51.5-33.6-83.3-33.6C153.8 128 96 188.8 96 260.3c0 6.6.4 13.1 1.4 19.4-2-56 41.8-97.4 92.6-97.4 24.2 0 46.2 9.4 62.6 24.7l-25.2 20.4c-8.3-.9-16.8 1.8-23.1 8.1-11.1 11-11.1 28.9 0 40 11.1 11 28.9 11 40 0 6.3-6.3 9-14.9 8.1-23.1l75.2-88.8c6.3-6.5-3.3-15.9-9.5-9.6zm-83.8 111.5c-5.6 5.5-14.6 5.5-20.2 0-5.6-5.6-5.6-14.6 0-20.2s14.6-5.6 20.2 0 5.6 14.7 0 20.2zM224 32C100.5 32 0 132.5 0 256s100.5 224 224 224 224-100.5 224-224S347.5 32 224 32zm0 384c-88.2 0-160-71.8-160-160S135.8 96 224 96s160 71.8 160 160-71.8 160-160 160z"
7470
+ }
7471
+ }
7472
+ },
7473
+ "cloudsmith": {
7474
+ "changes": [
7475
+ "5.0.0"
7476
+ ],
7477
+ "ligatures": [],
7478
+ "search": {
7479
+ "terms": []
7480
+ },
7481
+ "styles": [
7482
+ "brands"
7483
+ ],
7484
+ "unicode": "f384",
7485
+ "label": "Cloudsmith",
7486
+ "svg": {
7487
+ "brands": {
7488
+ "last_modified": 1500927880000,
7489
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 332 512\"><path d=\"M332.5 419.9c0 46.4-37.6 84.1-84 84.1s-84-37.7-84-84.1 37.6-84 84-84 84 37.6 84 84zm-84-243.9c46.4 0 80-37.6 80-84s-33.6-84-80-84-88 37.6-88 84-29.6 76-76 76-84 41.6-84 88 37.6 80 84 80 84-33.6 84-80 33.6-80 80-80z\"/></svg>",
7490
+ "viewBox": [
7491
+ "0",
7492
+ "0",
7493
+ "332",
7494
+ "512"
7495
+ ],
7496
+ "width": 332,
7497
+ "height": 512,
7498
+ "path": "M332.5 419.9c0 46.4-37.6 84.1-84 84.1s-84-37.7-84-84.1 37.6-84 84-84 84 37.6 84 84zm-84-243.9c46.4 0 80-37.6 80-84s-33.6-84-80-84-88 37.6-88 84-29.6 76-76 76-84 41.6-84 88 37.6 80 84 80 84-33.6 84-80 33.6-80 80-80z"
7499
+ }
7500
+ }
7501
+ },
7502
+ "cloudversify": {
7503
+ "changes": [
7504
+ "5.0.0"
7505
+ ],
7506
+ "ligatures": [],
7507
+ "search": {
7508
+ "terms": []
7509
+ },
7510
+ "styles": [
7511
+ "brands"
7512
+ ],
7513
+ "unicode": "f385",
7514
+ "label": "cloudversify",
7515
+ "svg": {
7516
+ "brands": {
7517
+ "last_modified": 1500927880000,
7518
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 616 512\"><path d=\"M148.6 304c8.2 68.5 67.4 115.5 146 111.3 51.2 43.3 136.8 45.8 186.4-5.6 69.2 1.1 118.5-44.6 131.5-99.5 14.8-62.5-18.2-132.5-92.1-155.1-33-88.1-131.4-101.5-186.5-85-57.3 17.3-84.3 53.2-99.3 109.7-7.8 2.7-26.5 8.9-45 24.1 11.7 0 15.2 8.9 15.2 19.5v20.4c0 10.7-8.7 19.5-19.5 19.5h-20.2c-10.7 0-19.5-6-19.5-16.7V240H98.8C95 240 88 244.3 88 251.9v40.4c0 6.4 5.3 11.8 11.7 11.8h48.9zm227.4 8c-10.7 46.3 21.7 72.4 55.3 86.8C324.1 432.6 259.7 348 296 288c-33.2 21.6-33.7 71.2-29.2 92.9-17.9-12.4-53.8-32.4-57.4-79.8-3-39.9 21.5-75.7 57-93.9C297 191.4 369.9 198.7 400 248c-14.1-48-53.8-70.1-101.8-74.8 30.9-30.7 64.4-50.3 114.2-43.7 69.8 9.3 133.2 82.8 67.7 150.5 35-16.3 48.7-54.4 47.5-76.9l10.5 19.6c11.8 22 15.2 47.6 9.4 72-9.2 39-40.6 68.8-79.7 76.5-32.1 6.3-83.1-5.1-91.8-59.2zM128 208H88.2c-8.9 0-16.2-7.3-16.2-16.2v-39.6c0-8.9 7.3-16.2 16.2-16.2H128c8.9 0 16.2 7.3 16.2 16.2v39.6c0 8.9-7.3 16.2-16.2 16.2zM10.1 168C4.5 168 0 163.5 0 157.9v-27.8c0-5.6 4.5-10.1 10.1-10.1h27.7c5.5 0 10.1 4.5 10.1 10.1v27.8c0 5.6-4.5 10.1-10.1 10.1H10.1zM168 142.7v-21.4c0-5.1 4.2-9.3 9.3-9.3h21.4c5.1 0 9.3 4.2 9.3 9.3v21.4c0 5.1-4.2 9.3-9.3 9.3h-21.4c-5.1 0-9.3-4.2-9.3-9.3zM56 235.5v25c0 6.3-5.1 11.5-11.4 11.5H19.4C13.1 272 8 266.8 8 260.5v-25c0-6.3 5.1-11.5 11.4-11.5h25.1c6.4 0 11.5 5.2 11.5 11.5z\"/></svg>",
7519
+ "viewBox": [
7520
+ "0",
7521
+ "0",
7522
+ "616",
7523
+ "512"
7524
+ ],
7525
+ "width": 616,
7526
+ "height": 512,
7527
+ "path": "M148.6 304c8.2 68.5 67.4 115.5 146 111.3 51.2 43.3 136.8 45.8 186.4-5.6 69.2 1.1 118.5-44.6 131.5-99.5 14.8-62.5-18.2-132.5-92.1-155.1-33-88.1-131.4-101.5-186.5-85-57.3 17.3-84.3 53.2-99.3 109.7-7.8 2.7-26.5 8.9-45 24.1 11.7 0 15.2 8.9 15.2 19.5v20.4c0 10.7-8.7 19.5-19.5 19.5h-20.2c-10.7 0-19.5-6-19.5-16.7V240H98.8C95 240 88 244.3 88 251.9v40.4c0 6.4 5.3 11.8 11.7 11.8h48.9zm227.4 8c-10.7 46.3 21.7 72.4 55.3 86.8C324.1 432.6 259.7 348 296 288c-33.2 21.6-33.7 71.2-29.2 92.9-17.9-12.4-53.8-32.4-57.4-79.8-3-39.9 21.5-75.7 57-93.9C297 191.4 369.9 198.7 400 248c-14.1-48-53.8-70.1-101.8-74.8 30.9-30.7 64.4-50.3 114.2-43.7 69.8 9.3 133.2 82.8 67.7 150.5 35-16.3 48.7-54.4 47.5-76.9l10.5 19.6c11.8 22 15.2 47.6 9.4 72-9.2 39-40.6 68.8-79.7 76.5-32.1 6.3-83.1-5.1-91.8-59.2zM128 208H88.2c-8.9 0-16.2-7.3-16.2-16.2v-39.6c0-8.9 7.3-16.2 16.2-16.2H128c8.9 0 16.2 7.3 16.2 16.2v39.6c0 8.9-7.3 16.2-16.2 16.2zM10.1 168C4.5 168 0 163.5 0 157.9v-27.8c0-5.6 4.5-10.1 10.1-10.1h27.7c5.5 0 10.1 4.5 10.1 10.1v27.8c0 5.6-4.5 10.1-10.1 10.1H10.1zM168 142.7v-21.4c0-5.1 4.2-9.3 9.3-9.3h21.4c5.1 0 9.3 4.2 9.3 9.3v21.4c0 5.1-4.2 9.3-9.3 9.3h-21.4c-5.1 0-9.3-4.2-9.3-9.3zM56 235.5v25c0 6.3-5.1 11.5-11.4 11.5H19.4C13.1 272 8 266.8 8 260.5v-25c0-6.3 5.1-11.5 11.4-11.5h25.1c6.4 0 11.5 5.2 11.5 11.5z"
7528
+ }
7529
+ }
7530
+ },
7531
+ "cocktail": {
7532
+ "changes": [
7533
+ "5.1.0"
7534
+ ],
7535
+ "ligatures": [],
7536
+ "search": {
7537
+ "terms": [
7538
+ "alcohol",
7539
+ "drink"
7540
+ ]
7541
+ },
7542
+ "styles": [
7543
+ "solid"
7544
+ ],
7545
+ "unicode": "f561",
7546
+ "label": "Cocktail",
7547
+ "svg": {
7548
+ "solid": {
7549
+ "last_modified": 1529520111652,
7550
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M296 464h-56V338.78l168.74-168.73c15.52-15.52 4.53-42.05-17.42-42.05H24.68c-21.95 0-32.94 26.53-17.42 42.05L176 338.78V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM432 0c-62.61 0-115.35 40.2-135.18 96h52.54c16.65-28.55 47.27-48 82.64-48 52.93 0 96 43.06 96 96s-43.07 96-96 96c-14.04 0-27.29-3.2-39.32-8.64l-35.26 35.26C379.23 279.92 404.59 288 432 288c79.53 0 144-64.47 144-144S511.53 0 432 0z\"/></svg>",
7551
+ "viewBox": [
7552
+ "0",
7553
+ "0",
7554
+ "576",
7555
+ "512"
7556
+ ],
7557
+ "width": 576,
7558
+ "height": 512,
7559
+ "path": "M296 464h-56V338.78l168.74-168.73c15.52-15.52 4.53-42.05-17.42-42.05H24.68c-21.95 0-32.94 26.53-17.42 42.05L176 338.78V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM432 0c-62.61 0-115.35 40.2-135.18 96h52.54c16.65-28.55 47.27-48 82.64-48 52.93 0 96 43.06 96 96s-43.07 96-96 96c-14.04 0-27.29-3.2-39.32-8.64l-35.26 35.26C379.23 279.92 404.59 288 432 288c79.53 0 144-64.47 144-144S511.53 0 432 0z"
7560
+ }
7561
+ }
7562
+ },
7563
+ "code": {
7564
+ "changes": [
7565
+ "3.1",
7566
+ "5.0.0"
7567
+ ],
7568
+ "ligatures": [],
7569
+ "search": {
7570
+ "terms": [
7571
+ "brackets",
7572
+ "html"
7573
+ ]
7574
+ },
7575
+ "styles": [
7576
+ "solid"
7577
+ ],
7578
+ "unicode": "f121",
7579
+ "label": "Code",
7580
+ "svg": {
7581
+ "solid": {
7582
+ "last_modified": 1500927880000,
7583
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z\"/></svg>",
7584
+ "viewBox": [
7585
+ "0",
7586
+ "0",
7587
+ "640",
7588
+ "512"
7589
+ ],
7590
+ "width": 640,
7591
+ "height": 512,
7592
+ "path": "M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"
7593
+ }
7594
+ }
7595
+ },
7596
+ "code-branch": {
7597
+ "changes": [
7598
+ "5.0.0"
7599
+ ],
7600
+ "ligatures": [],
7601
+ "search": {
7602
+ "terms": [
7603
+ "branch",
7604
+ "code-fork",
7605
+ "fork",
7606
+ "git",
7607
+ "github",
7608
+ "rebase",
7609
+ "svn",
7610
+ "vcs",
7611
+ "version"
7612
+ ]
7613
+ },
7614
+ "styles": [
7615
+ "solid"
7616
+ ],
7617
+ "unicode": "f126",
7618
+ "label": "Code Branch",
7619
+ "svg": {
7620
+ "solid": {
7621
+ "last_modified": 1502809851000,
7622
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 384 512\"><path d=\"M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z\"/></svg>",
7623
+ "viewBox": [
7624
+ "0",
7625
+ "0",
7626
+ "384",
7627
+ "512"
7628
+ ],
7629
+ "width": 384,
7630
+ "height": 512,
7631
+ "path": "M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z"
7632
+ }
7633
+ }
7634
+ },
7635
+ "codepen": {
7636
+ "changes": [
7637
+ "4.1",
7638
+ "5.0.0"
7639
+ ],
7640
+ "ligatures": [],
7641
+ "search": {
7642
+ "terms": []
7643
+ },
7644
+ "styles": [
7645
+ "brands"
7646
+ ],
7647
+ "unicode": "f1cb",
7648
+ "label": "Codepen",
7649
+ "svg": {
7650
+ "brands": {
7651
+ "last_modified": 1501102193000,
7652
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M502.285 159.704l-234-156c-7.987-4.915-16.511-4.96-24.571 0l-234 156C3.714 163.703 0 170.847 0 177.989v155.999c0 7.143 3.714 14.286 9.715 18.286l234 156.022c7.987 4.915 16.511 4.96 24.571 0l234-156.022c6-3.999 9.715-11.143 9.715-18.286V177.989c-.001-7.142-3.715-14.286-9.716-18.285zM278 63.131l172.286 114.858-76.857 51.429L278 165.703V63.131zm-44 0v102.572l-95.429 63.715-76.857-51.429L234 63.131zM44 219.132l55.143 36.857L44 292.846v-73.714zm190 229.715L61.714 333.989l76.857-51.429L234 346.275v102.572zm22-140.858l-77.715-52 77.715-52 77.715 52-77.715 52zm22 140.858V346.275l95.429-63.715 76.857 51.429L278 448.847zm190-156.001l-55.143-36.857L468 219.132v73.714z\"/></svg>",
7653
+ "viewBox": [
7654
+ "0",
7655
+ "0",
7656
+ "512",
7657
+ "512"
7658
+ ],
7659
+ "width": 512,
7660
+ "height": 512,
7661
+ "path": "M502.285 159.704l-234-156c-7.987-4.915-16.511-4.96-24.571 0l-234 156C3.714 163.703 0 170.847 0 177.989v155.999c0 7.143 3.714 14.286 9.715 18.286l234 156.022c7.987 4.915 16.511 4.96 24.571 0l234-156.022c6-3.999 9.715-11.143 9.715-18.286V177.989c-.001-7.142-3.715-14.286-9.716-18.285zM278 63.131l172.286 114.858-76.857 51.429L278 165.703V63.131zm-44 0v102.572l-95.429 63.715-76.857-51.429L234 63.131zM44 219.132l55.143 36.857L44 292.846v-73.714zm190 229.715L61.714 333.989l76.857-51.429L234 346.275v102.572zm22-140.858l-77.715-52 77.715-52 77.715 52-77.715 52zm22 140.858V346.275l95.429-63.715 76.857 51.429L278 448.847zm190-156.001l-55.143-36.857L468 219.132v73.714z"
7662
+ }
7663
+ }
7664
+ },
7665
+ "codiepie": {
7666
+ "changes": [
7667
+ "4.5",
7668
+ "5.0.0"
7669
+ ],
7670
+ "ligatures": [],
7671
+ "search": {
7672
+ "terms": []
7673
+ },
7674
+ "styles": [
7675
+ "brands"
7676
+ ],
7677
+ "unicode": "f284",
7678
+ "label": "Codie Pie",
7679
+ "svg": {
7680
+ "brands": {
7681
+ "last_modified": 1500927880000,
7682
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 472 512\"><path d=\"M422.5 202.9c30.7 0 33.5 53.1-.3 53.1h-10.8v44.3h-26.6v-97.4h37.7zM472 352.6C429.9 444.5 350.4 504 248 504 111 504 0 393 0 256S111 8 248 8c97.4 0 172.8 53.7 218.2 138.4l-186 108.8L472 352.6zm-38.5 12.5l-60.3-30.7c-27.1 44.3-70.4 71.4-122.4 71.4-82.5 0-149.2-66.7-149.2-148.9 0-82.5 66.7-149.2 149.2-149.2 48.4 0 88.9 23.5 116.9 63.4l59.5-34.6c-40.7-62.6-104.7-100-179.2-100-121.2 0-219.5 98.3-219.5 219.5S126.8 475.5 248 475.5c78.6 0 146.5-42.1 185.5-110.4z\"/></svg>",
7683
+ "viewBox": [
7684
+ "0",
7685
+ "0",
7686
+ "472",
7687
+ "512"
7688
+ ],
7689
+ "width": 472,
7690
+ "height": 512,
7691
+ "path": "M422.5 202.9c30.7 0 33.5 53.1-.3 53.1h-10.8v44.3h-26.6v-97.4h37.7zM472 352.6C429.9 444.5 350.4 504 248 504 111 504 0 393 0 256S111 8 248 8c97.4 0 172.8 53.7 218.2 138.4l-186 108.8L472 352.6zm-38.5 12.5l-60.3-30.7c-27.1 44.3-70.4 71.4-122.4 71.4-82.5 0-149.2-66.7-149.2-148.9 0-82.5 66.7-149.2 149.2-149.2 48.4 0 88.9 23.5 116.9 63.4l59.5-34.6c-40.7-62.6-104.7-100-179.2-100-121.2 0-219.5 98.3-219.5 219.5S126.8 475.5 248 475.5c78.6 0 146.5-42.1 185.5-110.4z"
7692
+ }
7693
+ }
7694
+ },
7695
+ "coffee": {
7696
+ "changes": [
7697
+ "3",
7698
+ "5.0.0"
7699
+ ],
7700
+ "ligatures": [],
7701
+ "search": {
7702
+ "terms": [
7703
+ "breakfast",
7704
+ "cafe",
7705
+ "drink",
7706
+ "morning",
7707
+ "mug",
7708
+ "tea"
7709
+ ]
7710
+ },
7711
+ "styles": [
7712
+ "solid"
7713
+ ],
7714
+ "unicode": "f0f4",
7715
+ "label": "Coffee",
7716
+ "svg": {
7717
+ "solid": {
7718
+ "last_modified": 1500927880000,
7719
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M192 384h192c53 0 96-43 96-96h32c70.6 0 128-57.4 128-128S582.6 32 512 32H120c-13.3 0-24 10.7-24 24v232c0 53 43 96 96 96zM512 96c35.3 0 64 28.7 64 64s-28.7 64-64 64h-32V96h32zm47.7 384H48.3c-47.6 0-61-64-36-64h583.3c25 0 11.8 64-35.9 64z\"/></svg>",
7720
+ "viewBox": [
7721
+ "0",
7722
+ "0",
7723
+ "640",
7724
+ "512"
7725
+ ],
7726
+ "width": 640,
7727
+ "height": 512,
7728
+ "path": "M192 384h192c53 0 96-43 96-96h32c70.6 0 128-57.4 128-128S582.6 32 512 32H120c-13.3 0-24 10.7-24 24v232c0 53 43 96 96 96zM512 96c35.3 0 64 28.7 64 64s-28.7 64-64 64h-32V96h32zm47.7 384H48.3c-47.6 0-61-64-36-64h583.3c25 0 11.8 64-35.9 64z"
7729
+ }
7730
+ }
7731
+ },
7732
+ "cog": {
7733
+ "changes": [
7734
+ "1",
7735
+ "5.0.0"
7736
+ ],
7737
+ "ligatures": [],
7738
+ "search": {
7739
+ "terms": [
7740
+ "settings"
7741
+ ]
7742
+ },
7743
+ "styles": [
7744
+ "solid"
7745
+ ],
7746
+ "unicode": "f013",
7747
+ "label": "cog",
7748
+ "svg": {
7749
+ "solid": {
7750
+ "last_modified": 1500927880000,
7751
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M444.788 291.1l42.616 24.599c4.867 2.809 7.126 8.618 5.459 13.985-11.07 35.642-29.97 67.842-54.689 94.586a12.016 12.016 0 0 1-14.832 2.254l-42.584-24.595a191.577 191.577 0 0 1-60.759 35.13v49.182a12.01 12.01 0 0 1-9.377 11.718c-34.956 7.85-72.499 8.256-109.219.007-5.49-1.233-9.403-6.096-9.403-11.723v-49.184a191.555 191.555 0 0 1-60.759-35.13l-42.584 24.595a12.016 12.016 0 0 1-14.832-2.254c-24.718-26.744-43.619-58.944-54.689-94.586-1.667-5.366.592-11.175 5.459-13.985L67.212 291.1a193.48 193.48 0 0 1 0-70.199l-42.616-24.599c-4.867-2.809-7.126-8.618-5.459-13.985 11.07-35.642 29.97-67.842 54.689-94.586a12.016 12.016 0 0 1 14.832-2.254l42.584 24.595a191.577 191.577 0 0 1 60.759-35.13V25.759a12.01 12.01 0 0 1 9.377-11.718c34.956-7.85 72.499-8.256 109.219-.007 5.49 1.233 9.403 6.096 9.403 11.723v49.184a191.555 191.555 0 0 1 60.759 35.13l42.584-24.595a12.016 12.016 0 0 1 14.832 2.254c24.718 26.744 43.619 58.944 54.689 94.586 1.667 5.366-.592 11.175-5.459 13.985L444.788 220.9a193.485 193.485 0 0 1 0 70.2zM336 256c0-44.112-35.888-80-80-80s-80 35.888-80 80 35.888 80 80 80 80-35.888 80-80z\"/></svg>",
7752
+ "viewBox": [
7753
+ "0",
7754
+ "0",
7755
+ "512",
7756
+ "512"
7757
+ ],
7758
+ "width": 512,
7759
+ "height": 512,
7760
+ "path": "M444.788 291.1l42.616 24.599c4.867 2.809 7.126 8.618 5.459 13.985-11.07 35.642-29.97 67.842-54.689 94.586a12.016 12.016 0 0 1-14.832 2.254l-42.584-24.595a191.577 191.577 0 0 1-60.759 35.13v49.182a12.01 12.01 0 0 1-9.377 11.718c-34.956 7.85-72.499 8.256-109.219.007-5.49-1.233-9.403-6.096-9.403-11.723v-49.184a191.555 191.555 0 0 1-60.759-35.13l-42.584 24.595a12.016 12.016 0 0 1-14.832-2.254c-24.718-26.744-43.619-58.944-54.689-94.586-1.667-5.366.592-11.175 5.459-13.985L67.212 291.1a193.48 193.48 0 0 1 0-70.199l-42.616-24.599c-4.867-2.809-7.126-8.618-5.459-13.985 11.07-35.642 29.97-67.842 54.689-94.586a12.016 12.016 0 0 1 14.832-2.254l42.584 24.595a191.577 191.577 0 0 1 60.759-35.13V25.759a12.01 12.01 0 0 1 9.377-11.718c34.956-7.85 72.499-8.256 109.219-.007 5.49 1.233 9.403 6.096 9.403 11.723v49.184a191.555 191.555 0 0 1 60.759 35.13l42.584-24.595a12.016 12.016 0 0 1 14.832 2.254c24.718 26.744 43.619 58.944 54.689 94.586 1.667 5.366-.592 11.175-5.459 13.985L444.788 220.9a193.485 193.485 0 0 1 0 70.2zM336 256c0-44.112-35.888-80-80-80s-80 35.888-80 80 35.888 80 80 80 80-35.888 80-80z"
7761
+ }
7762
+ }
7763
+ },
7764
+ "cogs": {
7765
+ "changes": [
7766
+ "1",
7767
+ "5.0.0"
7768
+ ],
7769
+ "ligatures": [],
7770
+ "search": {
7771
+ "terms": [
7772
+ "gears",
7773
+ "settings"
7774
+ ]
7775
+ },
7776
+ "styles": [
7777
+ "solid"
7778
+ ],
7779
+ "unicode": "f085",
7780
+ "label": "cogs",
7781
+ "svg": {
7782
+ "solid": {
7783
+ "last_modified": 1502397066000,
7784
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M512.1 191l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0L552 6.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zm-10.5-58.8c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.7-82.4 14.3-52.8 52.8zM386.3 286.1l33.7 16.8c10.1 5.8 14.5 18.1 10.5 29.1-8.9 24.2-26.4 46.4-42.6 65.8-7.4 8.9-20.2 11.1-30.3 5.3l-29.1-16.8c-16 13.7-34.6 24.6-54.9 31.7v33.6c0 11.6-8.3 21.6-19.7 23.6-24.6 4.2-50.4 4.4-75.9 0-11.5-2-20-11.9-20-23.6V418c-20.3-7.2-38.9-18-54.9-31.7L74 403c-10 5.8-22.9 3.6-30.3-5.3-16.2-19.4-33.3-41.6-42.2-65.7-4-10.9.4-23.2 10.5-29.1l33.3-16.8c-3.9-20.9-3.9-42.4 0-63.4L12 205.8c-10.1-5.8-14.6-18.1-10.5-29 8.9-24.2 26-46.4 42.2-65.8 7.4-8.9 20.2-11.1 30.3-5.3l29.1 16.8c16-13.7 34.6-24.6 54.9-31.7V57.1c0-11.5 8.2-21.5 19.6-23.5 24.6-4.2 50.5-4.4 76-.1 11.5 2 20 11.9 20 23.6v33.6c20.3 7.2 38.9 18 54.9 31.7l29.1-16.8c10-5.8 22.9-3.6 30.3 5.3 16.2 19.4 33.2 41.6 42.1 65.8 4 10.9.1 23.2-10 29.1l-33.7 16.8c3.9 21 3.9 42.5 0 63.5zm-117.6 21.1c59.2-77-28.7-164.9-105.7-105.7-59.2 77 28.7 164.9 105.7 105.7zm243.4 182.7l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0l8.2-14.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zM501.6 431c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.6-82.4 14.3-52.8 52.8z\"/></svg>",
7785
+ "viewBox": [
7786
+ "0",
7787
+ "0",
7788
+ "640",
7789
+ "512"
7790
+ ],
7791
+ "width": 640,
7792
+ "height": 512,
7793
+ "path": "M512.1 191l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0L552 6.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zm-10.5-58.8c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.7-82.4 14.3-52.8 52.8zM386.3 286.1l33.7 16.8c10.1 5.8 14.5 18.1 10.5 29.1-8.9 24.2-26.4 46.4-42.6 65.8-7.4 8.9-20.2 11.1-30.3 5.3l-29.1-16.8c-16 13.7-34.6 24.6-54.9 31.7v33.6c0 11.6-8.3 21.6-19.7 23.6-24.6 4.2-50.4 4.4-75.9 0-11.5-2-20-11.9-20-23.6V418c-20.3-7.2-38.9-18-54.9-31.7L74 403c-10 5.8-22.9 3.6-30.3-5.3-16.2-19.4-33.3-41.6-42.2-65.7-4-10.9.4-23.2 10.5-29.1l33.3-16.8c-3.9-20.9-3.9-42.4 0-63.4L12 205.8c-10.1-5.8-14.6-18.1-10.5-29 8.9-24.2 26-46.4 42.2-65.8 7.4-8.9 20.2-11.1 30.3-5.3l29.1 16.8c16-13.7 34.6-24.6 54.9-31.7V57.1c0-11.5 8.2-21.5 19.6-23.5 24.6-4.2 50.5-4.4 76-.1 11.5 2 20 11.9 20 23.6v33.6c20.3 7.2 38.9 18 54.9 31.7l29.1-16.8c10-5.8 22.9-3.6 30.3 5.3 16.2 19.4 33.2 41.6 42.1 65.8 4 10.9.1 23.2-10 29.1l-33.7 16.8c3.9 21 3.9 42.5 0 63.5zm-117.6 21.1c59.2-77-28.7-164.9-105.7-105.7-59.2 77 28.7 164.9 105.7 105.7zm243.4 182.7l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0l8.2-14.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zM501.6 431c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.6-82.4 14.3-52.8 52.8z"
7794
+ }
7795
+ }
7796
+ },
7797
+ "coins": {
7798
+ "changes": [
7799
+ "5.0.13"
7800
+ ],
7801
+ "ligatures": [],
7802
+ "search": {
7803
+ "terms": []
7804
+ },
7805
+ "styles": [
7806
+ "solid"
7807
+ ],
7808
+ "unicode": "f51e",
7809
+ "label": "Coins",
7810
+ "svg": {
7811
+ "solid": {
7812
+ "last_modified": 1525967154565,
7813
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M0 405.3V448c0 35.3 86 64 192 64s192-28.7 192-64v-42.7C342.7 434.4 267.2 448 192 448S41.3 434.4 0 405.3zM320 128c106 0 192-28.7 192-64S426 0 320 0 128 28.7 128 64s86 64 192 64zM0 300.4V352c0 35.3 86 64 192 64s192-28.7 192-64v-51.6c-41.3 34-116.9 51.6-192 51.6S41.3 334.4 0 300.4zm416 11c57.3-11.1 96-31.7 96-55.4v-42.7c-23.2 16.4-57.3 27.6-96 34.5v63.6zM192 160C86 160 0 195.8 0 240s86 80 192 80 192-35.8 192-80-86-80-192-80zm219.3 56.3c60-10.8 100.7-32 100.7-56.3v-42.7c-35.5 25.1-96.5 38.6-160.7 41.8 29.5 14.3 51.2 33.5 60 57.2z\"/></svg>",
7814
+ "viewBox": [
7815
+ "0",
7816
+ "0",
7817
+ "512",
7818
+ "512"
7819
+ ],
7820
+ "width": 512,
7821
+ "height": 512,
7822
+ "path": "M0 405.3V448c0 35.3 86 64 192 64s192-28.7 192-64v-42.7C342.7 434.4 267.2 448 192 448S41.3 434.4 0 405.3zM320 128c106 0 192-28.7 192-64S426 0 320 0 128 28.7 128 64s86 64 192 64zM0 300.4V352c0 35.3 86 64 192 64s192-28.7 192-64v-51.6c-41.3 34-116.9 51.6-192 51.6S41.3 334.4 0 300.4zm416 11c57.3-11.1 96-31.7 96-55.4v-42.7c-23.2 16.4-57.3 27.6-96 34.5v63.6zM192 160C86 160 0 195.8 0 240s86 80 192 80 192-35.8 192-80-86-80-192-80zm219.3 56.3c60-10.8 100.7-32 100.7-56.3v-42.7c-35.5 25.1-96.5 38.6-160.7 41.8 29.5 14.3 51.2 33.5 60 57.2z"
7823
+ }
7824
+ }
7825
+ },
7826
+ "columns": {
7827
+ "changes": [
7828
+ "2",
7829
+ "5.0.0"
7830
+ ],
7831
+ "ligatures": [],
7832
+ "search": {
7833
+ "terms": [
7834
+ "dashboard",
7835
+ "panes",
7836
+ "split"
7837
+ ]
7838
+ },
7839
+ "styles": [
7840
+ "solid"
7841
+ ],
7842
+ "unicode": "f0db",
7843
+ "label": "Columns",
7844
+ "svg": {
7845
+ "solid": {
7846
+ "last_modified": 1500927880000,
7847
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64V160h160v256zm224 0H288V160h160v256z\"/></svg>",
7848
+ "viewBox": [
7849
+ "0",
7850
+ "0",
7851
+ "512",
7852
+ "512"
7853
+ ],
7854
+ "width": 512,
7855
+ "height": 512,
7856
+ "path": "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64V160h160v256zm224 0H288V160h160v256z"
7857
+ }
7858
+ }
7859
+ },
7860
+ "comment": {
7861
+ "changes": [
7862
+ "1",
7863
+ "5.0.0",
7864
+ "5.0.9"
7865
+ ],
7866
+ "ligatures": [],
7867
+ "search": {
7868
+ "terms": [
7869
+ "bubble",
7870
+ "chat",
7871
+ "conversation",
7872
+ "feedback",
7873
+ "message",
7874
+ "note",
7875
+ "notification",
7876
+ "sms",
7877
+ "speech",
7878
+ "texting"
7879
+ ]
7880
+ },
7881
+ "styles": [
7882
+ "solid",
7883
+ "regular"
7884
+ ],
7885
+ "unicode": "f075",
7886
+ "label": "comment",
7887
+ "svg": {
7888
+ "solid": {
7889
+ "last_modified": 1522083406015,
7890
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32z\"/></svg>",
7891
+ "viewBox": [
7892
+ "0",
7893
+ "0",
7894
+ "512",
7895
+ "512"
7896
+ ],
7897
+ "width": 512,
7898
+ "height": 512,
7899
+ "path": "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32z"
7900
+ },
7901
+ "regular": {
7902
+ "last_modified": 1522083405998,
7903
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z\"/></svg>",
7904
+ "viewBox": [
7905
+ "0",
7906
+ "0",
7907
+ "512",
7908
+ "512"
7909
+ ],
7910
+ "width": 512,
7911
+ "height": 512,
7912
+ "path": "M256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z"
7913
+ }
7914
+ }
7915
+ },
7916
+ "comment-alt": {
7917
+ "changes": [
7918
+ "4.4",
7919
+ "5.0.0"
7920
+ ],
7921
+ "ligatures": [],
7922
+ "search": {
7923
+ "terms": [
7924
+ "bubble",
7925
+ "chat",
7926
+ "commenting",
7927
+ "commenting",
7928
+ "conversation",
7929
+ "feedback",
7930
+ "message",
7931
+ "note",
7932
+ "notification",
7933
+ "sms",
7934
+ "speech",
7935
+ "texting"
7936
+ ]
7937
+ },
7938
+ "styles": [
7939
+ "solid",
7940
+ "regular"
7941
+ ],
7942
+ "unicode": "f27a",
7943
+ "label": "Alternate Comment",
7944
+ "svg": {
7945
+ "solid": {
7946
+ "last_modified": 1522083406013,
7947
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 9.8 11.2 15.5 19.1 9.7L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64z\"/></svg>",
7948
+ "viewBox": [
7949
+ "0",
7950
+ "0",
7951
+ "512",
7952
+ "512"
7953
+ ],
7954
+ "width": 512,
7955
+ "height": 512,
7956
+ "path": "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 9.8 11.2 15.5 19.1 9.7L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64z"
7957
+ },
7958
+ "regular": {
7959
+ "last_modified": 1522083405995,
7960
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 7.1 5.8 12 12 12 2.4 0 4.9-.7 7.1-2.4L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm16 352c0 8.8-7.2 16-16 16H288l-12.8 9.6L208 428v-60H64c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16h384c8.8 0 16 7.2 16 16v288z\"/></svg>",
7961
+ "viewBox": [
7962
+ "0",
7963
+ "0",
7964
+ "512",
7965
+ "512"
7966
+ ],
7967
+ "width": 512,
7968
+ "height": 512,
7969
+ "path": "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 7.1 5.8 12 12 12 2.4 0 4.9-.7 7.1-2.4L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm16 352c0 8.8-7.2 16-16 16H288l-12.8 9.6L208 428v-60H64c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16h384c8.8 0 16 7.2 16 16v288z"
7970
+ }
7971
+ }
7972
+ },
7973
+ "comment-dots": {
7974
+ "changes": [
7975
+ "5.0.9"
7976
+ ],
7977
+ "ligatures": [],
7978
+ "search": {
7979
+ "terms": []
7980
+ },
7981
+ "styles": [
7982
+ "solid",
7983
+ "regular"
7984
+ ],
7985
+ "unicode": "f4ad",
7986
+ "label": "Comment Dots",
7987
+ "svg": {
7988
+ "solid": {
7989
+ "last_modified": 1522083406013,
7990
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128 272c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"/></svg>",
7991
+ "viewBox": [
7992
+ "0",
7993
+ "0",
7994
+ "512",
7995
+ "512"
7996
+ ],
7997
+ "width": 512,
7998
+ "height": 512,
7999
+ "path": "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128 272c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"
8000
+ },
8001
+ "regular": {
8002
+ "last_modified": 1522083405995,
8003
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M144 208c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zM256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z\"/></svg>",
8004
+ "viewBox": [
8005
+ "0",
8006
+ "0",
8007
+ "512",
8008
+ "512"
8009
+ ],
8010
+ "width": 512,
8011
+ "height": 512,
8012
+ "path": "M144 208c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zM256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z"
8013
+ }
8014
+ }
8015
+ },
8016
+ "comment-slash": {
8017
+ "changes": [
8018
+ "5.0.9"
8019
+ ],
8020
+ "ligatures": [],
8021
+ "search": {
8022
+ "terms": []
8023
+ },
8024
+ "styles": [
8025
+ "solid"
8026
+ ],
8027
+ "unicode": "f4b3",
8028
+ "label": "Comment Slash",
8029
+ "svg": {
8030
+ "solid": {
8031
+ "last_modified": 1522083406015,
8032
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M64 240c0 49.6 21.4 95 57 130.7-12.6 50.3-54.3 95.2-54.8 95.8-2.2 2.3-2.8 5.7-1.5 8.7 1.3 2.9 4.1 4.8 7.3 4.8 66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 27.4 0 53.7-3.6 78.4-10L72.9 186.4c-5.6 17.1-8.9 35-8.9 53.6zm569.8 218.1l-114.4-88.4C554.6 334.1 576 289.2 576 240c0-114.9-114.6-208-256-208-65.1 0-124.2 20.1-169.4 52.7L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z\"/></svg>",
8033
+ "viewBox": [
8034
+ "0",
8035
+ "0",
8036
+ "640",
8037
+ "512"
8038
+ ],
8039
+ "width": 640,
8040
+ "height": 512,
8041
+ "path": "M64 240c0 49.6 21.4 95 57 130.7-12.6 50.3-54.3 95.2-54.8 95.8-2.2 2.3-2.8 5.7-1.5 8.7 1.3 2.9 4.1 4.8 7.3 4.8 66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 27.4 0 53.7-3.6 78.4-10L72.9 186.4c-5.6 17.1-8.9 35-8.9 53.6zm569.8 218.1l-114.4-88.4C554.6 334.1 576 289.2 576 240c0-114.9-114.6-208-256-208-65.1 0-124.2 20.1-169.4 52.7L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z"
8042
+ }
8043
+ }
8044
+ },
8045
+ "comments": {
8046
+ "changes": [
8047
+ "1",
8048
+ "5.0.0",
8049
+ "5.0.9"
8050
+ ],
8051
+ "ligatures": [],
8052
+ "search": {
8053
+ "terms": [
8054
+ "bubble",
8055
+ "chat",
8056
+ "conversation",
8057
+ "feedback",
8058
+ "message",
8059
+ "note",
8060
+ "notification",
8061
+ "sms",
8062
+ "speech",
8063
+ "texting"
8064
+ ]
8065
+ },
8066
+ "styles": [
8067
+ "solid",
8068
+ "regular"
8069
+ ],
8070
+ "unicode": "f086",
8071
+ "label": "comments",
8072
+ "svg": {
8073
+ "solid": {
8074
+ "last_modified": 1522083406016,
8075
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M416 192c0-88.4-93.1-160-208-160S0 103.6 0 192c0 34.3 14.1 65.9 38 92-13.4 30.2-35.5 54.2-35.8 54.5-2.2 2.3-2.8 5.7-1.5 8.7S4.8 352 8 352c36.6 0 66.9-12.3 88.7-25 32.2 15.7 70.3 25 111.3 25 114.9 0 208-71.6 208-160zm122 220c23.9-26 38-57.7 38-92 0-66.9-53.5-124.2-129.3-148.1.9 6.6 1.3 13.3 1.3 20.1 0 105.9-107.7 192-240 192-10.8 0-21.3-.8-31.7-1.9C207.8 439.6 281.8 480 368 480c41 0 79.1-9.2 111.3-25 21.8 12.7 52.1 25 88.7 25 3.2 0 6.1-1.9 7.3-4.8 1.3-2.9.7-6.3-1.5-8.7-.3-.3-22.4-24.2-35.8-54.5z\"/></svg>",
8076
+ "viewBox": [
8077
+ "0",
8078
+ "0",
8079
+ "576",
8080
+ "512"
8081
+ ],
8082
+ "width": 576,
8083
+ "height": 512,
8084
+ "path": "M416 192c0-88.4-93.1-160-208-160S0 103.6 0 192c0 34.3 14.1 65.9 38 92-13.4 30.2-35.5 54.2-35.8 54.5-2.2 2.3-2.8 5.7-1.5 8.7S4.8 352 8 352c36.6 0 66.9-12.3 88.7-25 32.2 15.7 70.3 25 111.3 25 114.9 0 208-71.6 208-160zm122 220c23.9-26 38-57.7 38-92 0-66.9-53.5-124.2-129.3-148.1.9 6.6 1.3 13.3 1.3 20.1 0 105.9-107.7 192-240 192-10.8 0-21.3-.8-31.7-1.9C207.8 439.6 281.8 480 368 480c41 0 79.1-9.2 111.3-25 21.8 12.7 52.1 25 88.7 25 3.2 0 6.1-1.9 7.3-4.8 1.3-2.9.7-6.3-1.5-8.7-.3-.3-22.4-24.2-35.8-54.5z"
8085
+ },
8086
+ "regular": {
8087
+ "last_modified": 1522083405999,
8088
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z\"/></svg>",
8089
+ "viewBox": [
8090
+ "0",
8091
+ "0",
8092
+ "576",
8093
+ "512"
8094
+ ],
8095
+ "width": 576,
8096
+ "height": 512,
8097
+ "path": "M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"
8098
+ }
8099
+ }
8100
+ },
8101
+ "compact-disc": {
8102
+ "changes": [
8103
+ "5.0.13"
8104
+ ],
8105
+ "ligatures": [],
8106
+ "search": {
8107
+ "terms": [
8108
+ "bluray",
8109
+ "cd",
8110
+ "disc",
8111
+ "media"
8112
+ ]
8113
+ },
8114
+ "styles": [
8115
+ "solid"
8116
+ ],
8117
+ "unicode": "f51f",
8118
+ "label": "Compact Disc",
8119
+ "svg": {
8120
+ "solid": {
8121
+ "last_modified": 1525967154565,
8122
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 496 512\"><path d=\"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 256H56c0-105.9 86.1-192 192-192v32c-88.2 0-160 71.8-160 160zm160 96c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96zm0-128c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z\"/></svg>",
8123
+ "viewBox": [
8124
+ "0",
8125
+ "0",
8126
+ "496",
8127
+ "512"
8128
+ ],
8129
+ "width": 496,
8130
+ "height": 512,
8131
+ "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 256H56c0-105.9 86.1-192 192-192v32c-88.2 0-160 71.8-160 160zm160 96c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96zm0-128c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"
8132
+ }
8133
+ }
8134
+ },
8135
+ "compass": {
8136
+ "changes": [
8137
+ "3.2",
8138
+ "5.0.0",
8139
+ "5.2.0"
8140
+ ],
8141
+ "ligatures": [],
8142
+ "search": {
8143
+ "terms": [
8144
+ "directory",
8145
+ "location",
8146
+ "menu",
8147
+ "safari"
8148
+ ]
8149
+ },
8150
+ "styles": [
8151
+ "solid",
8152
+ "regular"
8153
+ ],
8154
+ "unicode": "f14e",
8155
+ "label": "Compass",
8156
+ "svg": {
8157
+ "solid": {
8158
+ "last_modified": 1532362831523,
8159
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 496 512\"><path d=\"M225.38 233.37c-12.5 12.5-12.5 32.76 0 45.25 12.49 12.5 32.76 12.5 45.25 0 12.5-12.5 12.5-32.76 0-45.25-12.5-12.49-32.76-12.49-45.25 0zM248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm126.14 148.05L308.17 300.4a31.938 31.938 0 0 1-15.77 15.77l-144.34 65.97c-16.65 7.61-33.81-9.55-26.2-26.2l65.98-144.35a31.938 31.938 0 0 1 15.77-15.77l144.34-65.97c16.65-7.6 33.8 9.55 26.19 26.2z\"/></svg>",
8160
+ "viewBox": [
8161
+ "0",
8162
+ "0",
8163
+ "496",
8164
+ "512"
8165
+ ],
8166
+ "width": 496,
8167
+ "height": 512,
8168
+ "path": "M225.38 233.37c-12.5 12.5-12.5 32.76 0 45.25 12.49 12.5 32.76 12.5 45.25 0 12.5-12.5 12.5-32.76 0-45.25-12.5-12.49-32.76-12.49-45.25 0zM248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm126.14 148.05L308.17 300.4a31.938 31.938 0 0 1-15.77 15.77l-144.34 65.97c-16.65 7.61-33.81-9.55-26.2-26.2l65.98-144.35a31.938 31.938 0 0 1 15.77-15.77l144.34-65.97c16.65-7.6 33.8 9.55 26.19 26.2z"
8169
+ },
8170
+ "regular": {
8171
+ "last_modified": 1532362831483,
8172
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 496 512\"><path d=\"M347.94 129.86L203.6 195.83a31.938 31.938 0 0 0-15.77 15.77l-65.97 144.34c-7.61 16.65 9.54 33.81 26.2 26.2l144.34-65.97a31.938 31.938 0 0 0 15.77-15.77l65.97-144.34c7.61-16.66-9.54-33.81-26.2-26.2zm-77.36 148.72c-12.47 12.47-32.69 12.47-45.16 0-12.47-12.47-12.47-32.69 0-45.16 12.47-12.47 32.69-12.47 45.16 0 12.47 12.47 12.47 32.69 0 45.16zM248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 448c-110.28 0-200-89.72-200-200S137.72 56 248 56s200 89.72 200 200-89.72 200-200 200z\"/></svg>",
8173
+ "viewBox": [
8174
+ "0",
8175
+ "0",
8176
+ "496",
8177
+ "512"
8178
+ ],
8179
+ "width": 496,
8180
+ "height": 512,
8181
+ "path": "M347.94 129.86L203.6 195.83a31.938 31.938 0 0 0-15.77 15.77l-65.97 144.34c-7.61 16.65 9.54 33.81 26.2 26.2l144.34-65.97a31.938 31.938 0 0 0 15.77-15.77l65.97-144.34c7.61-16.66-9.54-33.81-26.2-26.2zm-77.36 148.72c-12.47 12.47-32.69 12.47-45.16 0-12.47-12.47-12.47-32.69 0-45.16 12.47-12.47 32.69-12.47 45.16 0 12.47 12.47 12.47 32.69 0 45.16zM248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 448c-110.28 0-200-89.72-200-200S137.72 56 248 56s200 89.72 200 200-89.72 200-200 200z"
8182
+ }
8183
+ }
8184
+ },
8185
+ "compress": {
8186
+ "changes": [
8187
+ "5.0.0"
8188
+ ],
8189
+ "ligatures": [],
8190
+ "search": {
8191
+ "terms": [
8192
+ "collapse",
8193
+ "combine",
8194
+ "contract",
8195
+ "merge",
8196
+ "smaller"
8197
+ ]
8198
+ },
8199
+ "styles": [
8200
+ "solid"
8201
+ ],
8202
+ "unicode": "f066",
8203
+ "label": "Compress",
8204
+ "svg": {
8205
+ "solid": {
8206
+ "last_modified": 1500927880000,
8207
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M436 192H312c-13.3 0-24-10.7-24-24V44c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v84h84c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm-276-24V44c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v84H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24zm0 300V344c0-13.3-10.7-24-24-24H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-84h84c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H312c-13.3 0-24 10.7-24 24v124c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z\"/></svg>",
8208
+ "viewBox": [
8209
+ "0",
8210
+ "0",
8211
+ "448",
8212
+ "512"
8213
+ ],
8214
+ "width": 448,
8215
+ "height": 512,
8216
+ "path": "M436 192H312c-13.3 0-24-10.7-24-24V44c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v84h84c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm-276-24V44c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v84H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24zm0 300V344c0-13.3-10.7-24-24-24H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-84h84c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H312c-13.3 0-24 10.7-24 24v124c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"
8217
+ }
8218
+ }
8219
+ },
8220
+ "concierge-bell": {
8221
+ "changes": [
8222
+ "5.1.0"
8223
+ ],
8224
+ "ligatures": [],
8225
+ "search": {
8226
+ "terms": [
8227
+ "attention",
8228
+ "hotel",
8229
+ "service",
8230
+ "support"
8231
+ ]
8232
+ },
8233
+ "styles": [
8234
+ "solid"
8235
+ ],
8236
+ "unicode": "f562",
8237
+ "label": "Concierge Bell",
8238
+ "svg": {
8239
+ "solid": {
8240
+ "last_modified": 1529520111652,
8241
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M288 130.54V112h16c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h16v18.54C115.49 146.11 32 239.18 32 352h448c0-112.82-83.49-205.89-192-221.46zM496 384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z\"/></svg>",
8242
+ "viewBox": [
8243
+ "0",
8244
+ "0",
8245
+ "512",
8246
+ "512"
8247
+ ],
8248
+ "width": 512,
8249
+ "height": 512,
8250
+ "path": "M288 130.54V112h16c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h16v18.54C115.49 146.11 32 239.18 32 352h448c0-112.82-83.49-205.89-192-221.46zM496 384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"
8251
+ }
8252
+ }
8253
+ },
8254
+ "connectdevelop": {
8255
+ "changes": [
8256
+ "4.3",
8257
+ "5.0.0"
8258
+ ],
8259
+ "ligatures": [],
8260
+ "search": {
8261
+ "terms": []
8262
+ },
8263
+ "styles": [
8264
+ "brands"
8265
+ ],
8266
+ "unicode": "f20e",
8267
+ "label": "Connect Develop",
8268
+ "svg": {
8269
+ "brands": {
8270
+ "last_modified": 1501102193000,
8271
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M550.5 241l-50.089-86.786c1.071-2.142 1.875-4.553 1.875-7.232 0-8.036-6.696-14.733-14.732-15.001l-55.447-95.893c.536-1.607 1.071-3.214 1.071-4.821 0-8.571-6.964-15.268-15.268-15.268-4.821 0-8.839 2.143-11.786 5.625H299.518C296.839 18.143 292.821 16 288 16s-8.839 2.143-11.518 5.625H170.411C167.464 18.143 163.447 16 158.625 16c-8.303 0-15.268 6.696-15.268 15.268 0 1.607.536 3.482 1.072 4.821l-55.983 97.233c-5.356 2.41-9.107 7.5-9.107 13.661 0 .535.268 1.071.268 1.607l-53.304 92.143c-7.232 1.339-12.59 7.5-12.59 15 0 7.232 5.089 13.393 12.054 15l55.179 95.358c-.536 1.607-.804 2.946-.804 4.821 0 7.232 5.089 13.393 12.054 14.732l51.697 89.732c-.536 1.607-1.071 3.482-1.071 5.357 0 8.571 6.964 15.268 15.268 15.268 4.821 0 8.839-2.143 11.518-5.357h106.875C279.161 493.857 283.447 496 288 496s8.839-2.143 11.518-5.357h107.143c2.678 2.946 6.696 4.821 10.982 4.821 8.571 0 15.268-6.964 15.268-15.268 0-1.607-.267-2.946-.803-4.285l51.697-90.268c6.964-1.339 12.054-7.5 12.054-14.732 0-1.607-.268-3.214-.804-4.821l54.911-95.358c6.964-1.339 12.322-7.5 12.322-15-.002-7.232-5.092-13.393-11.788-14.732zM153.535 450.732l-43.66-75.803h43.66v75.803zm0-83.839h-43.66c-.268-1.071-.804-2.142-1.339-3.214l44.999-47.41v50.624zm0-62.411l-50.357 53.304c-1.339-.536-2.679-1.34-4.018-1.607L43.447 259.75c.535-1.339.535-2.679.535-4.018s0-2.41-.268-3.482l51.965-90c2.679-.268 5.357-1.072 7.768-2.679l50.089 51.965v92.946zm0-102.322l-45.803-47.41c1.339-2.143 2.143-4.821 2.143-7.767 0-.268-.268-.804-.268-1.072l43.928-15.804v72.053zm0-80.625l-43.66 15.804 43.66-75.536v59.732zm326.519 39.108l.804 1.339L445.5 329.125l-63.75-67.232 98.036-101.518.268.268zM291.75 355.107l11.518 11.786H280.5l11.25-11.786zm-.268-11.25l-83.303-85.446 79.553-84.375 83.036 87.589-79.286 82.232zm5.357 5.893l79.286-82.232 67.5 71.25-5.892 28.125H313.714l-16.875-17.143zM410.411 44.393c1.071.536 2.142 1.072 3.482 1.34l57.857 100.714v.536c0 2.946.803 5.624 2.143 7.767L376.393 256l-83.035-87.589L410.411 44.393zm-9.107-2.143L287.732 162.518l-57.054-60.268 166.339-60h4.287zm-123.483 0c2.678 2.678 6.16 4.285 10.179 4.285s7.5-1.607 10.179-4.285h75L224.786 95.821 173.893 42.25h103.928zm-116.249 5.625l1.071-2.142a33.834 33.834 0 0 0 2.679-.804l51.161 53.84-54.911 19.821V47.875zm0 79.286l60.803-21.964 59.732 63.214-79.553 84.107-40.982-42.053v-83.304zm0 92.678L198 257.607l-36.428 38.304v-76.072zm0 87.858l42.053-44.464 82.768 85.982-17.143 17.678H161.572v-59.196zm6.964 162.053c-1.607-1.607-3.482-2.678-5.893-3.482l-1.071-1.607v-89.732h99.91l-91.607 94.821h-1.339zm129.911 0c-2.679-2.41-6.428-4.285-10.447-4.285s-7.767 1.875-10.447 4.285h-96.429l91.607-94.821h38.304l91.607 94.821H298.447zm120-11.786l-4.286 7.5c-1.339.268-2.41.803-3.482 1.339l-89.196-91.875h114.376l-17.412 83.036zm12.856-22.232l12.858-60.803h21.964l-34.822 60.803zm34.822-68.839h-20.357l4.553-21.16 17.143 18.214c-.535.803-1.071 1.874-1.339 2.946zm66.161-107.411l-55.447 96.697c-1.339.535-2.679 1.071-4.018 1.874l-20.625-21.964 34.554-163.928 45.803 79.286c-.267 1.339-.803 2.678-.803 4.285 0 1.339.268 2.411.536 3.75z\"/></svg>",
8272
+ "viewBox": [
8273
+ "0",
8274
+ "0",
8275
+ "576",
8276
+ "512"
8277
+ ],
8278
+ "width": 576,
8279
+ "height": 512,
8280
+ "path": "M550.5 241l-50.089-86.786c1.071-2.142 1.875-4.553 1.875-7.232 0-8.036-6.696-14.733-14.732-15.001l-55.447-95.893c.536-1.607 1.071-3.214 1.071-4.821 0-8.571-6.964-15.268-15.268-15.268-4.821 0-8.839 2.143-11.786 5.625H299.518C296.839 18.143 292.821 16 288 16s-8.839 2.143-11.518 5.625H170.411C167.464 18.143 163.447 16 158.625 16c-8.303 0-15.268 6.696-15.268 15.268 0 1.607.536 3.482 1.072 4.821l-55.983 97.233c-5.356 2.41-9.107 7.5-9.107 13.661 0 .535.268 1.071.268 1.607l-53.304 92.143c-7.232 1.339-12.59 7.5-12.59 15 0 7.232 5.089 13.393 12.054 15l55.179 95.358c-.536 1.607-.804 2.946-.804 4.821 0 7.232 5.089 13.393 12.054 14.732l51.697 89.732c-.536 1.607-1.071 3.482-1.071 5.357 0 8.571 6.964 15.268 15.268 15.268 4.821 0 8.839-2.143 11.518-5.357h106.875C279.161 493.857 283.447 496 288 496s8.839-2.143 11.518-5.357h107.143c2.678 2.946 6.696 4.821 10.982 4.821 8.571 0 15.268-6.964 15.268-15.268 0-1.607-.267-2.946-.803-4.285l51.697-90.268c6.964-1.339 12.054-7.5 12.054-14.732 0-1.607-.268-3.214-.804-4.821l54.911-95.358c6.964-1.339 12.322-7.5 12.322-15-.002-7.232-5.092-13.393-11.788-14.732zM153.535 450.732l-43.66-75.803h43.66v75.803zm0-83.839h-43.66c-.268-1.071-.804-2.142-1.339-3.214l44.999-47.41v50.624zm0-62.411l-50.357 53.304c-1.339-.536-2.679-1.34-4.018-1.607L43.447 259.75c.535-1.339.535-2.679.535-4.018s0-2.41-.268-3.482l51.965-90c2.679-.268 5.357-1.072 7.768-2.679l50.089 51.965v92.946zm0-102.322l-45.803-47.41c1.339-2.143 2.143-4.821 2.143-7.767 0-.268-.268-.804-.268-1.072l43.928-15.804v72.053zm0-80.625l-43.66 15.804 43.66-75.536v59.732zm326.519 39.108l.804 1.339L445.5 329.125l-63.75-67.232 98.036-101.518.268.268zM291.75 355.107l11.518 11.786H280.5l11.25-11.786zm-.268-11.25l-83.303-85.446 79.553-84.375 83.036 87.589-79.286 82.232zm5.357 5.893l79.286-82.232 67.5 71.25-5.892 28.125H313.714l-16.875-17.143zM410.411 44.393c1.071.536 2.142 1.072 3.482 1.34l57.857 100.714v.536c0 2.946.803 5.624 2.143 7.767L376.393 256l-83.035-87.589L410.411 44.393zm-9.107-2.143L287.732 162.518l-57.054-60.268 166.339-60h4.287zm-123.483 0c2.678 2.678 6.16 4.285 10.179 4.285s7.5-1.607 10.179-4.285h75L224.786 95.821 173.893 42.25h103.928zm-116.249 5.625l1.071-2.142a33.834 33.834 0 0 0 2.679-.804l51.161 53.84-54.911 19.821V47.875zm0 79.286l60.803-21.964 59.732 63.214-79.553 84.107-40.982-42.053v-83.304zm0 92.678L198 257.607l-36.428 38.304v-76.072zm0 87.858l42.053-44.464 82.768 85.982-17.143 17.678H161.572v-59.196zm6.964 162.053c-1.607-1.607-3.482-2.678-5.893-3.482l-1.071-1.607v-89.732h99.91l-91.607 94.821h-1.339zm129.911 0c-2.679-2.41-6.428-4.285-10.447-4.285s-7.767 1.875-10.447 4.285h-96.429l91.607-94.821h38.304l91.607 94.821H298.447zm120-11.786l-4.286 7.5c-1.339.268-2.41.803-3.482 1.339l-89.196-91.875h114.376l-17.412 83.036zm12.856-22.232l12.858-60.803h21.964l-34.822 60.803zm34.822-68.839h-20.357l4.553-21.16 17.143 18.214c-.535.803-1.071 1.874-1.339 2.946zm66.161-107.411l-55.447 96.697c-1.339.535-2.679 1.071-4.018 1.874l-20.625-21.964 34.554-163.928 45.803 79.286c-.267 1.339-.803 2.678-.803 4.285 0 1.339.268 2.411.536 3.75z"
8281
+ }
8282
+ }
8283
+ },
8284
+ "contao": {
8285
+ "changes": [
8286
+ "4.4",
8287
+ "5.0.0"
8288
+ ],
8289
+ "ligatures": [],
8290
+ "search": {
8291
+ "terms": []
8292
+ },
8293
+ "styles": [
8294
+ "brands"
8295
+ ],
8296
+ "unicode": "f26d",
8297
+ "label": "Contao",
8298
+ "svg": {
8299
+ "brands": {
8300
+ "last_modified": 1500927880000,
8301
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M45.4 305c14.4 67.1 26.4 129 68.2 175H34c-18.7 0-34-15.2-34-34V66c0-18.7 15.2-34 34-34h57.7C77.9 44.6 65.6 59.2 54.8 75.6c-45.4 70-27 146.8-9.4 229.4zM478 32h-90.2c21.4 21.4 39.2 49.5 52.7 84.1l-137.1 29.3c-14.9-29-37.8-53.3-82.6-43.9-24.6 5.3-41 19.3-48.3 34.6-8.8 18.7-13.2 39.8 8.2 140.3 21.1 100.2 33.7 117.7 49.5 131.2 12.9 11.1 33.4 17 58.3 11.7 44.5-9.4 55.7-40.7 57.4-73.2l137.4-29.6c3.2 71.5-18.7 125.2-57.4 163.6H478c18.7 0 34-15.2 34-34V66c0-18.8-15.2-34-34-34z\"/></svg>",
8302
+ "viewBox": [
8303
+ "0",
8304
+ "0",
8305
+ "512",
8306
+ "512"
8307
+ ],
8308
+ "width": 512,
8309
+ "height": 512,
8310
+ "path": "M45.4 305c14.4 67.1 26.4 129 68.2 175H34c-18.7 0-34-15.2-34-34V66c0-18.7 15.2-34 34-34h57.7C77.9 44.6 65.6 59.2 54.8 75.6c-45.4 70-27 146.8-9.4 229.4zM478 32h-90.2c21.4 21.4 39.2 49.5 52.7 84.1l-137.1 29.3c-14.9-29-37.8-53.3-82.6-43.9-24.6 5.3-41 19.3-48.3 34.6-8.8 18.7-13.2 39.8 8.2 140.3 21.1 100.2 33.7 117.7 49.5 131.2 12.9 11.1 33.4 17 58.3 11.7 44.5-9.4 55.7-40.7 57.4-73.2l137.4-29.6c3.2 71.5-18.7 125.2-57.4 163.6H478c18.7 0 34-15.2 34-34V66c0-18.8-15.2-34-34-34z"
8311
+ }
8312
+ }
8313
+ },
8314
+ "cookie": {
8315
+ "changes": [
8316
+ "5.1.0"
8317
+ ],
8318
+ "ligatures": [],
8319
+ "search": {
8320
+ "terms": [
8321
+ "baked good",
8322
+ "chips",
8323
+ "food",
8324
+ "snack",
8325
+ "sweet",
8326
+ "treat"
8327
+ ]
8328
+ },
8329
+ "styles": [
8330
+ "solid"
8331
+ ],
8332
+ "unicode": "f563",
8333
+ "label": "Cookie",
8334
+ "svg": {
8335
+ "solid": {
8336
+ "last_modified": 1529520111653,
8337
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M510.37 254.79l-12.08-76.26a132.493 132.493 0 0 0-37.16-72.95l-54.76-54.75c-19.73-19.72-45.18-32.7-72.71-37.05l-76.7-12.15c-27.51-4.36-55.69.11-80.52 12.76L107.32 49.6a132.25 132.25 0 0 0-57.79 57.8l-35.1 68.88a132.602 132.602 0 0 0-12.82 80.94l12.08 76.27a132.493 132.493 0 0 0 37.16 72.95l54.76 54.75a132.087 132.087 0 0 0 72.71 37.05l76.7 12.14c27.51 4.36 55.69-.11 80.52-12.75l69.12-35.21a132.302 132.302 0 0 0 57.79-57.8l35.1-68.87c12.71-24.96 17.2-53.3 12.82-80.96zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"/></svg>",
8338
+ "viewBox": [
8339
+ "0",
8340
+ "0",
8341
+ "512",
8342
+ "512"
8343
+ ],
8344
+ "width": 512,
8345
+ "height": 512,
8346
+ "path": "M510.37 254.79l-12.08-76.26a132.493 132.493 0 0 0-37.16-72.95l-54.76-54.75c-19.73-19.72-45.18-32.7-72.71-37.05l-76.7-12.15c-27.51-4.36-55.69.11-80.52 12.76L107.32 49.6a132.25 132.25 0 0 0-57.79 57.8l-35.1 68.88a132.602 132.602 0 0 0-12.82 80.94l12.08 76.27a132.493 132.493 0 0 0 37.16 72.95l54.76 54.75a132.087 132.087 0 0 0 72.71 37.05l76.7 12.14c27.51 4.36 55.69-.11 80.52-12.75l69.12-35.21a132.302 132.302 0 0 0 57.79-57.8l35.1-68.87c12.71-24.96 17.2-53.3 12.82-80.96zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"
8347
+ }
8348
+ }
8349
+ },
8350
+ "cookie-bite": {
8351
+ "changes": [
8352
+ "5.1.0"
8353
+ ],
8354
+ "ligatures": [],
8355
+ "search": {
8356
+ "terms": [
8357
+ "baked good",
8358
+ "bitten",
8359
+ "chips",
8360
+ "eating",
8361
+ "food",
8362
+ "snack",
8363
+ "sweet",
8364
+ "treat"
8365
+ ]
8366
+ },
8367
+ "styles": [
8368
+ "solid"
8369
+ ],
8370
+ "unicode": "f564",
8371
+ "label": "Cookie Bite",
8372
+ "svg": {
8373
+ "solid": {
8374
+ "last_modified": 1529520111653,
8375
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M510.52 255.82c-69.97-.85-126.47-57.69-126.47-127.86-70.17 0-127-56.49-127.86-126.45-27.26-4.14-55.13.3-79.72 12.82l-69.13 35.22a132.221 132.221 0 0 0-57.79 57.81l-35.1 68.88a132.645 132.645 0 0 0-12.82 80.95l12.08 76.27a132.521 132.521 0 0 0 37.16 72.96l54.77 54.76a132.036 132.036 0 0 0 72.71 37.06l76.71 12.15c27.51 4.36 55.7-.11 80.53-12.76l69.13-35.21a132.273 132.273 0 0 0 57.79-57.81l35.1-68.88c12.56-24.64 17.01-52.58 12.91-79.91zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"/></svg>",
8376
+ "viewBox": [
8377
+ "0",
8378
+ "0",
8379
+ "512",
8380
+ "512"
8381
+ ],
8382
+ "width": 512,
8383
+ "height": 512,
8384
+ "path": "M510.52 255.82c-69.97-.85-126.47-57.69-126.47-127.86-70.17 0-127-56.49-127.86-126.45-27.26-4.14-55.13.3-79.72 12.82l-69.13 35.22a132.221 132.221 0 0 0-57.79 57.81l-35.1 68.88a132.645 132.645 0 0 0-12.82 80.95l12.08 76.27a132.521 132.521 0 0 0 37.16 72.96l54.77 54.76a132.036 132.036 0 0 0 72.71 37.06l76.71 12.15c27.51 4.36 55.7-.11 80.53-12.76l69.13-35.21a132.273 132.273 0 0 0 57.79-57.81l35.1-68.88c12.56-24.64 17.01-52.58 12.91-79.91zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"
8385
+ }
8386
+ }
8387
+ },
8388
+ "copy": {
8389
+ "changes": [
8390
+ "2",
8391
+ "5.0.0"
8392
+ ],
8393
+ "ligatures": [],
8394
+ "search": {
8395
+ "terms": [
8396
+ "clone",
8397
+ "duplicate",
8398
+ "file",
8399
+ "files-o"
8400
+ ]
8401
+ },
8402
+ "styles": [
8403
+ "solid",
8404
+ "regular"
8405
+ ],
8406
+ "unicode": "f0c5",
8407
+ "label": "Copy",
8408
+ "svg": {
8409
+ "solid": {
8410
+ "last_modified": 1500927880000,
8411
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z\"/></svg>",
8412
+ "viewBox": [
8413
+ "0",
8414
+ "0",
8415
+ "448",
8416
+ "512"
8417
+ ],
8418
+ "width": 448,
8419
+ "height": 512,
8420
+ "path": "M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z"
8421
+ },
8422
+ "regular": {
8423
+ "last_modified": 1500927880000,
8424
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M433.941 65.941l-51.882-51.882A48 48 0 0 0 348.118 0H176c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48v-48h80c26.51 0 48-21.49 48-48V99.882a48 48 0 0 0-14.059-33.941zM266 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h74v224c0 26.51 21.49 48 48 48h96v42a6 6 0 0 1-6 6zm128-96H182a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h106v88c0 13.255 10.745 24 24 24h88v202a6 6 0 0 1-6 6zm6-256h-64V48h9.632c1.591 0 3.117.632 4.243 1.757l48.368 48.368a6 6 0 0 1 1.757 4.243V112z\"/></svg>",
8425
+ "viewBox": [
8426
+ "0",
8427
+ "0",
8428
+ "448",
8429
+ "512"
8430
+ ],
8431
+ "width": 448,
8432
+ "height": 512,
8433
+ "path": "M433.941 65.941l-51.882-51.882A48 48 0 0 0 348.118 0H176c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48v-48h80c26.51 0 48-21.49 48-48V99.882a48 48 0 0 0-14.059-33.941zM266 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h74v224c0 26.51 21.49 48 48 48h96v42a6 6 0 0 1-6 6zm128-96H182a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h106v88c0 13.255 10.745 24 24 24h88v202a6 6 0 0 1-6 6zm6-256h-64V48h9.632c1.591 0 3.117.632 4.243 1.757l48.368 48.368a6 6 0 0 1 1.757 4.243V112z"
8434
+ }
8435
+ }
8436
+ },
8437
+ "copyright": {
8438
+ "changes": [
8439
+ "4.2",
8440
+ "5.0.0"
8441
+ ],
8442
+ "ligatures": [],
8443
+ "search": {
8444
+ "terms": []
8445
+ },
8446
+ "styles": [
8447
+ "solid",
8448
+ "regular"
8449
+ ],
8450
+ "unicode": "f1f9",
8451
+ "label": "Copyright",
8452
+ "svg": {
8453
+ "solid": {
8454
+ "last_modified": 1501102193000,
8455
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm117.134 346.753c-1.592 1.867-39.776 45.731-109.851 45.731-84.692 0-144.484-63.26-144.484-145.567 0-81.303 62.004-143.401 143.762-143.401 66.957 0 101.965 37.315 103.422 38.904a12 12 0 0 1 1.238 14.623l-22.38 34.655c-4.049 6.267-12.774 7.351-18.234 2.295-.233-.214-26.529-23.88-61.88-23.88-46.116 0-73.916 33.575-73.916 76.082 0 39.602 25.514 79.692 74.277 79.692 38.697 0 65.28-28.338 65.544-28.625 5.132-5.565 14.059-5.033 18.508 1.053l24.547 33.572a12.001 12.001 0 0 1-.553 14.866z\"/></svg>",
8456
+ "viewBox": [
8457
+ "0",
8458
+ "0",
8459
+ "512",
8460
+ "512"
8461
+ ],
8462
+ "width": 512,
8463
+ "height": 512,
8464
+ "path": "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm117.134 346.753c-1.592 1.867-39.776 45.731-109.851 45.731-84.692 0-144.484-63.26-144.484-145.567 0-81.303 62.004-143.401 143.762-143.401 66.957 0 101.965 37.315 103.422 38.904a12 12 0 0 1 1.238 14.623l-22.38 34.655c-4.049 6.267-12.774 7.351-18.234 2.295-.233-.214-26.529-23.88-61.88-23.88-46.116 0-73.916 33.575-73.916 76.082 0 39.602 25.514 79.692 74.277 79.692 38.697 0 65.28-28.338 65.544-28.625 5.132-5.565 14.059-5.033 18.508 1.053l24.547 33.572a12.001 12.001 0 0 1-.553 14.866z"
8465
+ },
8466
+ "regular": {
8467
+ "last_modified": 1501102193000,
8468
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm107.351-101.064c-9.614 9.712-45.53 41.396-104.065 41.396-82.43 0-140.484-61.425-140.484-141.567 0-79.152 60.275-139.401 139.762-139.401 55.531 0 88.738 26.62 97.593 34.779a11.965 11.965 0 0 1 1.936 15.322l-18.155 28.113c-3.841 5.95-11.966 7.282-17.499 2.921-8.595-6.776-31.814-22.538-61.708-22.538-48.303 0-77.916 35.33-77.916 80.082 0 41.589 26.888 83.692 78.277 83.692 32.657 0 56.843-19.039 65.726-27.225 5.27-4.857 13.596-4.039 17.82 1.738l19.865 27.17a11.947 11.947 0 0 1-1.152 15.518z\"/></svg>",
8469
+ "viewBox": [
8470
+ "0",
8471
+ "0",
8472
+ "512",
8473
+ "512"
8474
+ ],
8475
+ "width": 512,
8476
+ "height": 512,
8477
+ "path": "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm107.351-101.064c-9.614 9.712-45.53 41.396-104.065 41.396-82.43 0-140.484-61.425-140.484-141.567 0-79.152 60.275-139.401 139.762-139.401 55.531 0 88.738 26.62 97.593 34.779a11.965 11.965 0 0 1 1.936 15.322l-18.155 28.113c-3.841 5.95-11.966 7.282-17.499 2.921-8.595-6.776-31.814-22.538-61.708-22.538-48.303 0-77.916 35.33-77.916 80.082 0 41.589 26.888 83.692 78.277 83.692 32.657 0 56.843-19.039 65.726-27.225 5.27-4.857 13.596-4.039 17.82 1.738l19.865 27.17a11.947 11.947 0 0 1-1.152 15.518z"
8478
+ }
8479
+ }
8480
+ },
8481
+ "couch": {
8482
+ "changes": [
8483
+ "5.0.9"
8484
+ ],
8485
+ "ligatures": [],
8486
+ "search": {
8487
+ "terms": []
8488
+ },
8489
+ "styles": [
8490
+ "solid"
8491
+ ],
8492
+ "unicode": "f4b8",
8493
+ "label": "Couch",
8494
+ "svg": {
8495
+ "solid": {
8496
+ "last_modified": 1521653821447,
8497
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M160 224v64h320v-64c0-35.3 28.7-64 64-64h32c0-53-43-96-96-96H160c-53 0-96 43-96 96h32c35.3 0 64 28.7 64 64zm416-32h-32c-17.7 0-32 14.3-32 32v96H128v-96c0-17.7-14.3-32-32-32H64c-35.3 0-64 28.7-64 64 0 23.6 13 44 32 55.1V432c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-16h384v16c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V311.1c19-11.1 32-31.5 32-55.1 0-35.3-28.7-64-64-64z\"/></svg>",
8498
+ "viewBox": [
8499
+ "0",
8500
+ "0",
8501
+ "640",
8502
+ "512"
8503
+ ],
8504
+ "width": 640,
8505
+ "height": 512,
8506
+ "path": "M160 224v64h320v-64c0-35.3 28.7-64 64-64h32c0-53-43-96-96-96H160c-53 0-96 43-96 96h32c35.3 0 64 28.7 64 64zm416-32h-32c-17.7 0-32 14.3-32 32v96H128v-96c0-17.7-14.3-32-32-32H64c-35.3 0-64 28.7-64 64 0 23.6 13 44 32 55.1V432c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-16h384v16c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V311.1c19-11.1 32-31.5 32-55.1 0-35.3-28.7-64-64-64z"
8507
+ }
8508
+ }
8509
+ },
8510
+ "cpanel": {
8511
+ "changes": [
8512
+ "5.0.0"
8513
+ ],
8514
+ "ligatures": [],
8515
+ "search": {
8516
+ "terms": []
8517
+ },
8518
+ "styles": [
8519
+ "brands"
8520
+ ],
8521
+ "unicode": "f388",
8522
+ "label": "cPanel",
8523
+ "svg": {
8524
+ "brands": {
8525
+ "last_modified": 1500927880000,
8526
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M52.9 213.7h40l-6.2 23.6c-1.9 6.5-7.4 10.9-14.3 10.9H53.8c-24.9 0-24.7 37.4 0 37.4h11.3c4.2 0 7.6 3.9 6.4 8.3L64.4 320H52c-33.5 0-59-31.4-50.3-65.2 7.3-27 28.3-41.1 51.2-41.1M73.1 320L108 189.9c1.8-6.4 7.2-10.9 14.3-10.9h37c24.1 0 45.4 16.4 51 41.2 6.6 29.1-14.5 65.3-51.7 65.3h-32l6.4-23.8c1.8-6.2 7.3-10.8 14.3-10.8h10.3c12.4 0 20.8-11.7 18.3-22.6-2.1-9.2-9.9-14.8-18.3-14.8h-19.8L112 309.2c-1.9 6.2-7.4 10.7-14.2 10.7l-24.7.1m220.6-69.4c.3-1 1.9-5.3-2.1-5.3h-57.5c-9.7 0-16.6-8.9-14.2-18.5l3.5-13.4h77.9c18.8 0 33.3 17.6 28.5 36.8l-14 51.8c-2.8 10.6-12.2 17.8-23.4 17.8l-57.5-.2c-42.9 0-38.5-63.8.7-63.8H284l-3.5 13.2c-1.9 6.2-7.4 10.8-14.2 10.8h-21.6c-5.3 0-5.3 7.9 0 7.9h34.9c4.6 0 5.1-3.9 5.5-5.3l8.6-31.8m103.1-36.9c34.4 0 59.3 32.3 50.3 65.4l-8.8 33.1c-1.2 4.9-5.7 7.8-10.3 7.8h-19.1c-4.5 0-7.6-4-6.4-8.3l10.6-40c3.3-11.6-5.6-23.4-18.1-23.4h-19.8l-17.2 64c-1.2 4.8-5.6 7.8-10.4 7.8h-18.9c-4.2 0-7.6-3.9-6.4-8.3l26.2-98h48.3M498 251.6l-8 30c-.9 3.3 1.5 6.7 5.1 6.7h73.3l-5.7 21c-1.9 6.2-7.4 10.7-14.2 10.7h-66.7c-20 0-33.3-19-28.3-36.7l10.8-40c4.8-17.6 20.7-29.6 38.6-29.6h47.3c19 0 33.2 17.7 28.3 36.8l-3.2 12c-2.9 11-12.7 17.6-23.2 17.6h-53.4l3.5-13c1.6-6.2 7.2-10.8 14.2-10.8H538c2 0 3.3-1 3.9-3l.7-2.6c.7-2.7-1.3-5.1-3.9-5.1h-32.9c-4.1 0-6.9 2.1-7.8 6zm70.2 68.4l35.6-133.1c1.2-4.7 5.5-7.9 10.4-7.9h18.9c4.5 0 7.7 4 6.5 8.3l-26.5 98.2c-5.1 20.7-24.2 34.5-44.9 34.5\"/></svg>",
8527
+ "viewBox": [
8528
+ "0",
8529
+ "0",
8530
+ "640",
8531
+ "512"
8532
+ ],
8533
+ "width": 640,
8534
+ "height": 512,
8535
+ "path": "M52.9 213.7h40l-6.2 23.6c-1.9 6.5-7.4 10.9-14.3 10.9H53.8c-24.9 0-24.7 37.4 0 37.4h11.3c4.2 0 7.6 3.9 6.4 8.3L64.4 320H52c-33.5 0-59-31.4-50.3-65.2 7.3-27 28.3-41.1 51.2-41.1M73.1 320L108 189.9c1.8-6.4 7.2-10.9 14.3-10.9h37c24.1 0 45.4 16.4 51 41.2 6.6 29.1-14.5 65.3-51.7 65.3h-32l6.4-23.8c1.8-6.2 7.3-10.8 14.3-10.8h10.3c12.4 0 20.8-11.7 18.3-22.6-2.1-9.2-9.9-14.8-18.3-14.8h-19.8L112 309.2c-1.9 6.2-7.4 10.7-14.2 10.7l-24.7.1m220.6-69.4c.3-1 1.9-5.3-2.1-5.3h-57.5c-9.7 0-16.6-8.9-14.2-18.5l3.5-13.4h77.9c18.8 0 33.3 17.6 28.5 36.8l-14 51.8c-2.8 10.6-12.2 17.8-23.4 17.8l-57.5-.2c-42.9 0-38.5-63.8.7-63.8H284l-3.5 13.2c-1.9 6.2-7.4 10.8-14.2 10.8h-21.6c-5.3 0-5.3 7.9 0 7.9h34.9c4.6 0 5.1-3.9 5.5-5.3l8.6-31.8m103.1-36.9c34.4 0 59.3 32.3 50.3 65.4l-8.8 33.1c-1.2 4.9-5.7 7.8-10.3 7.8h-19.1c-4.5 0-7.6-4-6.4-8.3l10.6-40c3.3-11.6-5.6-23.4-18.1-23.4h-19.8l-17.2 64c-1.2 4.8-5.6 7.8-10.4 7.8h-18.9c-4.2 0-7.6-3.9-6.4-8.3l26.2-98h48.3M498 251.6l-8 30c-.9 3.3 1.5 6.7 5.1 6.7h73.3l-5.7 21c-1.9 6.2-7.4 10.7-14.2 10.7h-66.7c-20 0-33.3-19-28.3-36.7l10.8-40c4.8-17.6 20.7-29.6 38.6-29.6h47.3c19 0 33.2 17.7 28.3 36.8l-3.2 12c-2.9 11-12.7 17.6-23.2 17.6h-53.4l3.5-13c1.6-6.2 7.2-10.8 14.2-10.8H538c2 0 3.3-1 3.9-3l.7-2.6c.7-2.7-1.3-5.1-3.9-5.1h-32.9c-4.1 0-6.9 2.1-7.8 6zm70.2 68.4l35.6-133.1c1.2-4.7 5.5-7.9 10.4-7.9h18.9c4.5 0 7.7 4 6.5 8.3l-26.5 98.2c-5.1 20.7-24.2 34.5-44.9 34.5"
8536
+ }
8537
+ }
8538
+ },
8539
+ "creative-commons": {
8540
+ "changes": [
8541
+ "4.4",
8542
+ "5.0.0",
8543
+ "5.0.11",
8544
+ "5.1.0"
8545
+ ],
8546
+ "ligatures": [],
8547
+ "search": {
8548
+ "terms": []
8549
+ },
8550
+ "styles": [
8551
+ "brands"
8552
+ ],
8553
+ "unicode": "f25e",
8554
+ "label": "Creative Commons",
8555
+ "svg": {
8556
+ "brands": {
8557
+ "last_modified": 1529514897189,
8558
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 496 512\"><path d=\"M245.83 214.87l-33.22 17.28c-9.43-19.58-25.24-19.93-27.46-19.93-22.13 0-33.22 14.61-33.22 43.84 0 23.57 9.21 43.84 33.22 43.84 14.47 0 24.65-7.09 30.57-21.26l30.55 15.5c-6.17 11.51-25.69 38.98-65.1 38.98-22.6 0-73.96-10.32-73.96-77.05 0-58.69 43-77.06 72.63-77.06 30.72-.01 52.7 11.95 65.99 35.86zm143.05 0l-32.78 17.28c-9.5-19.77-25.72-19.93-27.9-19.93-22.14 0-33.22 14.61-33.22 43.84 0 23.55 9.23 43.84 33.22 43.84 14.45 0 24.65-7.09 30.54-21.26l31 15.5c-2.1 3.75-21.39 38.98-65.09 38.98-22.69 0-73.96-9.87-73.96-77.05 0-58.67 42.97-77.06 72.63-77.06 30.71-.01 52.58 11.95 65.56 35.86zM247.56 8.05C104.74 8.05 0 123.11 0 256.05c0 138.49 113.6 248 247.56 248 129.93 0 248.44-100.87 248.44-248 0-137.87-106.62-248-248.44-248zm.87 450.81c-112.54 0-203.7-93.04-203.7-202.81 0-105.42 85.43-203.27 203.72-203.27 112.53 0 202.82 89.46 202.82 203.26-.01 121.69-99.68 202.82-202.84 202.82z\"/></svg>",
8559
+ "viewBox": [
8560
+ "0",
8561
+ "0",
8562
+ "496",
8563
+ "512"
8564
+ ],
8565
+ "width": 496,
8566
+ "height": 512,
8567
+ "path": "M245.83 214.87l-33.22 17.28c-9.43-19.58-25.24-19.93-27.46-19.93-22.13 0-33.22 14.61-33.22 43.84 0 23.57 9.21 43.84 33.22 43.84 14.47 0 24.65-7.09 30.57-21.26l30.55 15.5c-6.17 11.51-25.69 38.98-65.1 38.98-22.6 0-73.96-10.32-73.96-77.05 0-58.69 43-77.06 72.63-77.06 30.72-.01 52.7 11.95 65.99 35.86zm143.05 0l-32.78 17.28c-9.5-19.77-25.72-19.93-27.9-19.93-22.14 0-33.22 14.61-33.22 43.84 0 23.55 9.23 43.84 33.22 43.84 14.45 0 24.65-7.09 30.54-21.26l31 15.5c-2.1 3.75-21.39 38.98-65.09 38.98-22.69 0-73.96-9.87-73.96-77.05 0-58.67 42.97-77.06 72.63-77.06 30.71-.01 52.58 11.95 65.56 35.86zM247.56 8.05C104.74 8.05 0 123.11 0 256.05c0 138.49 113.6 248 247.56 248 129.93 0 248.44-100.87 248.44-248 0-137.87-106.62-248-248.44-248zm.87 450.81c-112.54 0-203.7-93.04-203.7-202.81 0-105.42 85.43-203.27 203.72-203.27 112.53 0 202.82 89.46 202.82 203.26-.01 121.69-99.68 202.82-202.84 202.82z"
8568
+ }
8569
+ }
8570
+ },
8571
+ "creative-commons-by": {
8572
+ "changes": [
8573
+ "5.0.11"
8574
+ ],
8575
+ "ligatures": [],
8576
+ "search": {
8577
+ "terms": []
8578
+ },
8579
+ "styles": [
8580
+ "brands"
8581
+ ],
8582
+ "unicode": "f4e7",
8583
+ "label": "Creative Commons Attribution",
8584
+ "svg": {
8585
+ "brands": {
8586
+ "last_modified": 1525209365016,
8587
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 496 512\"><path d=\"M314.9 194.4v101.4h-28.3v120.5h-77.1V295.9h-28.3V194.4c0-4.4 1.6-8.2 4.6-11.3 3.1-3.1 6.9-4.7 11.3-4.7H299c4.1 0 7.8 1.6 11.1 4.7 3.1 3.2 4.8 6.9 4.8 11.3zm-101.5-63.7c0-23.3 11.5-35 34.5-35s34.5 11.7 34.5 35c0 23-11.5 34.5-34.5 34.5s-34.5-11.5-34.5-34.5zM247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3z\"/></svg>",
8588
+ "viewBox": [
8589
+ "0",
8590
+ "0",
8591
+ "496",
8592
+ "512"
8593
+ ],
8594
+ "width": 496,
8595
+ "height": 512,
8596
+ "path": "M314.9 194.4v101.4h-28.3v120.5h-77.1V295.9h-28.3V194.4c0-4.4 1.6-8.2 4.6-11.3 3.1-3.1 6.9-4.7 11.3-4.7H299c4.1 0 7.8 1.6 11.1 4.7 3.1 3.2 4.8 6.9 4.8 11.3zm-101.5-63.7c0-23.3 11.5-35 34.5-35s34.5 11.7 34.5 35c0 23-11.5 34.5-34.5 34.5s-34.5-11.5-34.5-34.5zM247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3z"
8597
+ }
8598
+ }
8599
+ },
8600
+ "creative-commons-nc": {
8601
+ "changes": [
8602
+ "5.0.11"
8603
+ ],
8604
+ "ligatures": [],
8605
+ "search": {
8606
+ "terms": []
8607
+ },
8608
+ "styles": [
8609
+ "brands"
8610
+ ],
8611
+ "unicode": "f4e8",
8612
+ "label": "Creative Commons Noncommercial",
8613
+ "svg": {
8614
+ "brands": {
8615
+ "last_modified": 1525209365017,
8616
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 496 512\"><path d=\"M247.6 8C387.4 8 496 115.9 496 256c0 147.2-118.5 248-248.4 248C113.1 504 0 393.2 0 256 0 123.1 104.7 8 247.6 8zM55.8 189.1c-7.4 20.4-11.1 42.7-11.1 66.9 0 110.9 92.1 202.4 203.7 202.4 122.4 0 177.2-101.8 178.5-104.1l-93.4-41.6c-7.7 37.1-41.2 53-68.2 55.4v38.1h-28.8V368c-27.5-.3-52.6-10.2-75.3-29.7l34.1-34.5c31.7 29.4 86.4 31.8 86.4-2.2 0-6.2-2.2-11.2-6.6-15.1-14.2-6-1.8-.1-219.3-97.4zM248.4 52.3c-38.4 0-112.4 8.7-170.5 93l94.8 42.5c10-31.3 40.4-42.9 63.8-44.3v-38.1h28.8v38.1c22.7 1.2 43.4 8.9 62 23L295 199.7c-42.7-29.9-83.5-8-70 11.1 53.4 24.1 43.8 19.8 93 41.6l127.1 56.7c4.1-17.4 6.2-35.1 6.2-53.1 0-57-19.8-105-59.3-143.9-39.3-39.9-87.2-59.8-143.6-59.8z\"/></svg>",
8617
+ "viewBox": [
8618
+ "0",
8619
+ "0",
8620
+ "496",
8621
+ "512"
8622
+ ],
8623
+ "width": 496,
8624
+ "height": 512,
8625
+ "path": "M247.6 8C387.4 8 496 115.9 496 256c0 147.2-118.5 248-248.4 248C113.1 504 0 393.2 0 256 0 123.1 104.7 8 247.6 8zM55.8 189.1c-7.4 20.4-11.1 42.7-11.1 66.9 0 110.9 92.1 202.4 203.7 202.4 122.4 0 177.2-101.8 178.5-104.1l-93.4-41.6c-7.7 37.1-41.2 53-68.2 55.4v38.1h-28.8V368c-27.5-.3-52.6-10.2-75.3-29.7l34.1-34.5c31.7 29.4 86.4 31.8 86.4-2.2 0-6.2-2.2-11.2-6.6-15.1-14.2-6-1.8-.1-219.3-97.4zM248.4 52.3c-38.4 0-112.4 8.7-170.5 93l94.8 42.5c10-31.3 40.4-42.9 63.8-44.3v-38.1h28.8v38.1c22.7 1.2 43.4 8.9 62 23L295 199.7c-42.7-29.9-83.5-8-70 11.1 53.4 24.1 43.8 19.8 93 41.6l127.1 56.7c4.1-17.4 6.2-35.1 6.2-53.1 0-57-19.8-105-59.3-143.9-39.3-39.9-87.2-59.8-143.6-59.8z"
8626
+ }
8627
+ }
8628
+ },
8629
+ "creative-commons-nc-eu": {
8630
+ "changes": [
8631
+ "5.0.11"
8632
+ ],
8633
+ "ligatures": [],
8634
+ "search": {
8635
+ "terms": []
8636
+ },
8637
+ "styles": [
8638
+ "brands"
8639
+ ],
8640
+ "unicode": "f4e9",
8641
+ "label": "Creative Commons Noncommercial (Euro Sign)",
8642
+ "svg": {
8643
+ "brands": {
8644
+ "last_modified": 1525209365016,
8645
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 496 512\"><path d=\"M247.7 8C103.6 8 0 124.8 0 256c0 136.3 111.7 248 247.7 248C377.9 504 496 403.1 496 256 496 117 388.4 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-23.2 3.7-45.2 10.9-66l65.7 29.1h-4.7v29.5h23.3c0 6.2-.4 3.2-.4 19.5h-22.8v29.5h27c11.4 67 67.2 101.3 124.6 101.3 26.6 0 50.6-7.9 64.8-15.8l-10-46.1c-8.7 4.6-28.2 10.8-47.3 10.8-28.2 0-58.1-10.9-67.3-50.2h90.3l128.3 56.8c-1.5 2.1-56.2 104.3-178.8 104.3zm-16.7-190.6l-.5-.4.9.4h-.4zm77.2-19.5h3.7v-29.5h-70.3l-28.6-12.6c2.5-5.5 5.4-10.5 8.8-14.3 12.9-15.8 31.1-22.4 51.1-22.4 18.3 0 35.3 5.4 46.1 10l11.6-47.3c-15-6.6-37-12.4-62.3-12.4-39 0-72.2 15.8-95.9 42.3-5.3 6.1-9.8 12.9-13.9 20.1l-81.6-36.1c64.6-96.8 157.7-93.6 170.7-93.6 113 0 203 90.2 203 203.4 0 18.7-2.1 36.3-6.3 52.9l-136.1-60.5z\"/></svg>",
8646
+ "viewBox": [
8647
+ "0",
8648
+ "0",
8649
+ "496",
8650
+ "512"
8651
+ ],
8652
+ "width": 496,
8653
+ "height": 512,
8654
+ "path": "M247.7 8C103.6 8 0 124.8 0 256c0 136.3 111.7 248 247.7 248C377.9 504 496 403.1 496 256 496 117 388.4 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-23.2 3.7-45.2 10.9-66l65.7 29.1h-4.7v29.5h23.3c0 6.2-.4 3.2-.4 19.5h-22.8v29.5h27c11.4 67 67.2 101.3 124.6 101.3 26.6 0 50.6-7.9 64.8-15.8l-10-46.1c-8.7 4.6-28.2 10.8-47.3 10.8-28.2 0-58.1-10.9-67.3-50.2h90.3l128.3 56.8c-1.5 2.1-56.2 104.3-178.8 104.3zm-16.7-190.6l-.5-.4.9.4h-.4zm77.2-19.5h3.7v-29.5h-70.3l-28.6-12.6c2.5-5.5 5.4-10.5 8.8-14.3 12.9-15.8 31.1-22.4 51.1-22.4 18.3 0 35.3 5.4 46.1 10l11.6-47.3c-15-6.6-37-12.4-62.3-12.4-39 0-72.2 15.8-95.9 42.3-5.3 6.1-9.8 12.9-13.9 20.1l-81.6-36.1c64.6-96.8 157.7-93.6 170.7-93.6 113 0 203 90.2 203 203.4 0 18.7-2.1 36.3-6.3 52.9l-136.1-60.5z"
8655
+ }
8656
+ }
8657
+ },
8658
+ "creative-commons-nc-jp": {
8659
+ "changes": [
8660
+ "5.0.11"
8661
+ ],
8662
+ "ligatures": [],
8663
+ "search": {
8664
+ "terms": []
8665
+ },
8666
+ "styles": [
8667
+ "brands"
8668
+ ],
8669
+ "unicode": "f4ea",
8670
+ "label": "Creative Commons Noncommercial (Yen Sign)",
8671
+ "svg": {
8672
+ "brands": {
8673
+ "last_modified": 1525209365016,
8674
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 496 512\"><path d=\"M247.7 8C103.6 8 0 124.8 0 256c0 136.4 111.8 248 247.7 248C377.9 504 496 403.2 496 256 496 117.2 388.5 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-21.1 3-41.2 9-60.3l127 56.5h-27.9v38.6h58.1l5.7 11.8v18.7h-63.8V360h63.8v56h61.7v-56h64.2v-35.7l81 36.1c-1.5 2.2-57.1 98.3-175.2 98.3zm87.6-137.3h-57.6v-18.7l2.9-5.6 54.7 24.3zm6.5-51.4v-17.8h-38.6l63-116H301l-43.4 96-23-10.2-39.6-85.7h-65.8l27.3 51-81.9-36.5c27.8-44.1 82.6-98.1 173.7-98.1 112.8 0 203 90 203 203.4 0 21-2.7 40.6-7.9 59l-101-45.1z\"/></svg>",
8675
+ "viewBox": [
8676
+ "0",
8677
+ "0",
8678
+ "496",
8679
+ "512"
8680
+ ],
8681
+ "width": 496,
8682
+ "height": 512,
8683
+ "path": "M247.7 8C103.6 8 0 124.8 0 256c0 136.4 111.8 248 247.7 248C377.9 504 496 403.2 496 256 496 117.2 388.5 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-21.1 3-41.2 9-60.3l127 56.5h-27.9v38.6h58.1l5.7 11.8v18.7h-63.8V360h63.8v56h61.7v-56h64.2v-35.7l81 36.1c-1.5 2.2-57.1 98.3-175.2 98.3zm87.6-137.3h-57.6v-18.7l2.9-5.6 54.7 24.3zm6.5-51.4v-17.8h-38.6l63-116H301l-43.4 96-23-10.2-39.6-85.7h-65.8l27.3 51-81.9-36.5c27.8-44.1 82.6-98.1 173.7-98.1 112.8 0 203 90 203 203.4 0 21-2.7 40.6-7.9 59l-101-45.1z"
8684
+ }
8685
+ }
8686
+ },
8687
+ "creative-commons-nd": {
8688
+ "changes": [
8689
+ "5.0.11"
8690
+ ],
8691
+ "ligatures": [],
8692
+ "search": {
8693
+ "terms": []
8694
+ },
8695
+ "styles": [
8696
+ "brands"
8697
+ ],
8698
+ "unicode": "f4eb",
8699
+ "label": "Creative Commons No Derivative Works",
8700
+ "svg": {
8701
+ "brands": {
8702
+ "last_modified": 1525209365017,
8703
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 496 512\"><path d=\"M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm94 144.3v42.5H162.1V197h180.3zm0 79.8v42.5H162.1v-42.5h180.3z\"/></svg>",
8704
+ "viewBox": [
8705
+ "0",
8706
+ "0",
8707
+ "496",
8708
+ "512"
8709
+ ],
8710
+ "width": 496,
8711
+ "height": 512,
8712
+ "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm94 144.3v42.5H162.1V197h180.3zm0 79.8v42.5H162.1v-42.5h180.3z"
8713
+ }
8714
+ }
8715
+ },
8716
+ "creative-commons-pd": {
8717
+ "changes": [
8718
+ "5.0.11"
8719
+ ],
8720
+ "ligatures": [],
8721
+ "search": {
8722
+ "terms": []
8723
+ },
8724
+ "styles": [
8725
+ "brands"
8726
+ ],
8727
+ "unicode": "f4ec",
8728
+ "label": "Creative Commons Public Domain",
8729
+ "svg": {
8730
+ "brands": {
8731
+ "last_modified": 1525209365017,
8732
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 496 512\"><path d=\"M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm0 449.5c-139.2 0-235.8-138-190.2-267.9l78.8 35.1c-2.1 10.5-3.3 21.5-3.3 32.9 0 99 73.9 126.9 120.4 126.9 22.9 0 53.5-6.7 79.4-29.5L297 311.1c-5.5 6.3-17.6 16.7-36.3 16.7-37.8 0-53.7-39.9-53.9-71.9 230.4 102.6 216.5 96.5 217.9 96.8-34.3 62.4-100.6 104.8-176.7 104.8zm194.2-150l-224-100c18.8-34 54.9-30.7 74.7-11l40.4-41.6c-27.1-23.3-58-27.5-78.1-27.5-47.4 0-80.9 20.5-100.7 51.6l-74.9-33.4c36.1-54.9 98.1-91.2 168.5-91.2 111.1 0 201.5 90.4 201.5 201.5 0 18-2.4 35.4-6.8 52-.3-.1-.4-.2-.6-.4z\"/></svg>",
8733
+ "viewBox": [
8734
+ "0",
8735
+ "0",
8736
+ "496",
8737
+ "512"
8738
+ ],
8739
+ "width": 496,
8740
+ "height": 512,
8741
+ "path": "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm0 449.5c-139.2 0-235.8-138-190.2-267.9l78.8 35.1c-2.1 10.5-3.3 21.5-3.3 32.9 0 99 73.9 126.9 120.4 126.9 22.9 0 53.5-6.7 79.4-29.5L297 311.1c-5.5 6.3-17.6 16.7-36.3 16.7-37.8 0-53.7-39.9-53.9-71.9 230.4 102.6 216.5 96.5 217.9 96.8-34.3 62.4-100.6 104.8-176.7 104.8zm194.2-150l-224-100c18.8-34 54.9-30.7 74.7-11l40.4-41.6c-27.1-23.3-58-27.5-78.1-27.5-47.4 0-80.9 20.5-100.7 51.6l-74.9-33.4c36.1-54.9 98.1-91.2 168.5-91.2 111.1 0 201.5 90.4 201.5 201.5 0 18-2.4 35.4-6.8 52-.3-.1-.4-.2-.6-.4z"
8742
+ }
8743
+ }
8744
+ },
8745
+ "creative-commons-pd-alt": {
8746
+ "changes": [
8747
+ "5.0.11"
8748
+ ],
8749
+ "ligatures": [],
8750
+ "search": {
8751
+ "terms": []
8752
+ },
8753
+ "styles": [
8754
+ "brands"
8755
+ ],
8756
+ "unicode": "f4ed",
8757
+ "label": "Creative Commons Public Domain Alternate",
8758
+ "svg": {
8759
+ "brands": {
8760
+ "last_modified": 1525209365017,
8761
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 496 512\"><path d=\"M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM135.5 323.3V186h68.2c33.7 0 50.5 15.5 50.5 46.5 0 9-3 46.5-57.1 46.5h-27v44.3h-34.6zm34.1-111.6v41.6h29.2c27.9 0 30-41.6-.9-41.6h-28.3zm93.9 111.6V186h53.2c21.4 0 70 5.2 70 68.6 0 63.5-48.6 68.6-70 68.6h-53.2zm34.1-108.5v79.7h19.9c24 0 34.5-15.3 34.5-39.9 0-42-31.2-39.9-35-39.9l-19.4.1z\"/></svg>",
8762
+ "viewBox": [
8763
+ "0",
8764
+ "0",
8765
+ "496",
8766
+ "512"
8767
+ ],
8768
+ "width": 496,
8769
+ "height": 512,
8770
+ "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM135.5 323.3V186h68.2c33.7 0 50.5 15.5 50.5 46.5 0 9-3 46.5-57.1 46.5h-27v44.3h-34.6zm34.1-111.6v41.6h29.2c27.9 0 30-41.6-.9-41.6h-28.3zm93.9 111.6V186h53.2c21.4 0 70 5.2 70 68.6 0 63.5-48.6 68.6-70 68.6h-53.2zm34.1-108.5v79.7h19.9c24 0 34.5-15.3 34.5-39.9 0-42-31.2-39.9-35-39.9l-19.4.1z"
8771
+ }
8772
+ }
8773
+ },
8774
+ "creative-commons-remix": {
8775
+ "changes": [
8776
+ "5.0.11"
8777
+ ],
8778
+ "ligatures": [],
8779
+ "search": {
8780
+ "terms": []
8781
+ },
8782
+ "styles": [
8783
+ "brands"
8784
+ ],
8785
+ "unicode": "f4ee",
8786
+ "label": "Creative Commons Remix",
8787
+ "svg": {
8788
+ "brands": {
8789
+ "last_modified": 1525209365017,
8790
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 496 512\"><path d=\"M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm161.7 207.7l4.9 2.2v70c-7.2 3.6-63.4 27.5-67.3 28.8-6.5-1.8-113.7-46.8-137.3-56.2l-64.2 26.6-63.3-27.5v-63.8l59.3-24.8c-.7-.7-.4 5-.4-70.4l67.3-29.7L361 178.5v61.6l49.1 20.3zm-70.4 81.5v-43.8h-.4v-1.8l-113.8-46.5V295l113.8 46.9v-.4l.4.4zm7.5-57.6l39.9-16.4-36.8-15.5-39 16.4 35.9 15.5zm52.3 38.1v-43L355.2 298v43.4l44.3-19z\"/></svg>",
8791
+ "viewBox": [
8792
+ "0",
8793
+ "0",
8794
+ "496",
8795
+ "512"
8796
+ ],
8797
+ "width": 496,
8798
+ "height": 512,
8799
+ "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm161.7 207.7l4.9 2.2v70c-7.2 3.6-63.4 27.5-67.3 28.8-6.5-1.8-113.7-46.8-137.3-56.2l-64.2 26.6-63.3-27.5v-63.8l59.3-24.8c-.7-.7-.4 5-.4-70.4l67.3-29.7L361 178.5v61.6l49.1 20.3zm-70.4 81.5v-43.8h-.4v-1.8l-113.8-46.5V295l113.8 46.9v-.4l.4.4zm7.5-57.6l39.9-16.4-36.8-15.5-39 16.4 35.9 15.5zm52.3 38.1v-43L355.2 298v43.4l44.3-19z"
8800
+ }
8801
+ }
8802
+ },
8803
+ "creative-commons-sa": {
8804
+ "changes": [
8805
+ "5.0.11"
8806
+ ],
8807
+ "ligatures": [],
8808
+ "search": {
8809
+ "terms": []
8810
+ },
8811
+ "styles": [
8812
+ "brands"
8813
+ ],
8814
+ "unicode": "f4ef",
8815
+ "label": "Creative Commons Share Alike",
8816
+ "svg": {
8817
+ "brands": {
8818
+ "last_modified": 1525209365018,
8819
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 496 512\"><path d=\"M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM137.7 221c13-83.9 80.5-95.7 108.9-95.7 99.8 0 127.5 82.5 127.5 134.2 0 63.6-41 132.9-128.9 132.9-38.9 0-99.1-20-109.4-97h62.5c1.5 30.1 19.6 45.2 54.5 45.2 23.3 0 58-18.2 58-82.8 0-82.5-49.1-80.6-56.7-80.6-33.1 0-51.7 14.6-55.8 43.8h18.2l-49.2 49.2-49-49.2h19.4z\"/></svg>",
8820
+ "viewBox": [
8821
+ "0",
8822
+ "0",
8823
+ "496",
8824
+ "512"
8825
+ ],
8826
+ "width": 496,
8827
+ "height": 512,
8828
+ "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM137.7 221c13-83.9 80.5-95.7 108.9-95.7 99.8 0 127.5 82.5 127.5 134.2 0 63.6-41 132.9-128.9 132.9-38.9 0-99.1-20-109.4-97h62.5c1.5 30.1 19.6 45.2 54.5 45.2 23.3 0 58-18.2 58-82.8 0-82.5-49.1-80.6-56.7-80.6-33.1 0-51.7 14.6-55.8 43.8h18.2l-49.2 49.2-49-49.2h19.4z"
8829
+ }
8830
+ }
8831
+ },
8832
+ "creative-commons-sampling": {
8833
+ "changes": [
8834
+ "5.0.11"
8835
+ ],
8836
+ "ligatures": [],
8837
+ "search": {
8838
+ "terms": []
8839
+ },
8840
+ "styles": [
8841
+ "brands"
8842
+ ],
8843
+ "unicode": "f4f0",
8844
+ "label": "Creative Commons Sampling",
8845
+ "svg": {
8846
+ "brands": {
8847
+ "last_modified": 1525209365018,
8848
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 496 512\"><path d=\"M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm3.6 53.2c2.8-.3 11.5 1 11.5 11.5l6.6 107.2 4.9-59.3c0-6 4.7-10.6 10.6-10.6 5.9 0 10.6 4.7 10.6 10.6 0 2.5-.5-5.7 5.7 81.5l5.8-64.2c.3-2.9 2.9-9.3 10.2-9.3 3.8 0 9.9 2.3 10.6 8.9l11.5 96.5 5.3-12.8c1.8-4.4 5.2-6.6 10.2-6.6h58v21.3h-50.9l-18.2 44.3c-3.9 9.9-19.5 9.1-20.8-3.1l-4-31.9-7.5 92.6c-.3 3-3 9.3-10.2 9.3-3 0-9.8-2.1-10.6-9.3 0-1.9.6 5.8-6.2-77.9l-5.3 72.2c-1.1 4.8-4.8 9.3-10.6 9.3-2.9 0-9.8-2-10.6-9.3 0-1.9.5 6.7-5.8-87.7l-5.8 94.8c0 6.3-3.6 12.4-10.6 12.4-5.2 0-10.6-4.1-10.6-12l-5.8-87.7c-5.8 92.5-5.3 84-5.3 85.9-1.1 4.8-4.8 9.3-10.6 9.3-3 0-9.8-2.1-10.6-9.3 0-.7-.4-1.1-.4-2.6l-6.2-88.6L182 348c-.7 6.5-6.7 9.3-10.6 9.3-5.8 0-9.6-4.1-10.6-8.9L149.7 272c-2 4-3.5 8.4-11.1 8.4H87.2v-21.3H132l13.7-27.9c4.4-9.9 18.2-7.2 19.9 2.7l3.1 20.4 8.4-97.9c0-6 4.8-10.6 10.6-10.6.5 0 10.6-.2 10.6 12.4l4.9 69.1 6.6-92.6c0-10.1 9.5-10.6 10.2-10.6.6 0 10.6.7 10.6 10.6l5.3 80.6 6.2-97.9c.1-1.1-.6-10.3 9.9-11.5z\"/></svg>",
8849
+ "viewBox": [
8850
+ "0",
8851
+ "0",
8852
+ "496",
8853
+ "512"
8854
+ ],
8855
+ "width": 496,
8856
+ "height": 512,
8857
+ "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm3.6 53.2c2.8-.3 11.5 1 11.5 11.5l6.6 107.2 4.9-59.3c0-6 4.7-10.6 10.6-10.6 5.9 0 10.6 4.7 10.6 10.6 0 2.5-.5-5.7 5.7 81.5l5.8-64.2c.3-2.9 2.9-9.3 10.2-9.3 3.8 0 9.9 2.3 10.6 8.9l11.5 96.5 5.3-12.8c1.8-4.4 5.2-6.6 10.2-6.6h58v21.3h-50.9l-18.2 44.3c-3.9 9.9-19.5 9.1-20.8-3.1l-4-31.9-7.5 92.6c-.3 3-3 9.3-10.2 9.3-3 0-9.8-2.1-10.6-9.3 0-1.9.6 5.8-6.2-77.9l-5.3 72.2c-1.1 4.8-4.8 9.3-10.6 9.3-2.9 0-9.8-2-10.6-9.3 0-1.9.5 6.7-5.8-87.7l-5.8 94.8c0 6.3-3.6 12.4-10.6 12.4-5.2 0-10.6-4.1-10.6-12l-5.8-87.7c-5.8 92.5-5.3 84-5.3 85.9-1.1 4.8-4.8 9.3-10.6 9.3-3 0-9.8-2.1-10.6-9.3 0-.7-.4-1.1-.4-2.6l-6.2-88.6L182 348c-.7 6.5-6.7 9.3-10.6 9.3-5.8 0-9.6-4.1-10.6-8.9L149.7 272c-2 4-3.5 8.4-11.1 8.4H87.2v-21.3H132l13.7-27.9c4.4-9.9 18.2-7.2 19.9 2.7l3.1 20.4 8.4-97.9c0-6 4.8-10.6 10.6-10.6.5 0 10.6-.2 10.6 12.4l4.9 69.1 6.6-92.6c0-10.1 9.5-10.6 10.2-10.6.6 0 10.6.7 10.6 10.6l5.3 80.6 6.2-97.9c.1-1.1-.6-10.3 9.9-11.5z"
8858
+ }
8859
+ }
8860
+ },
8861
+ "creative-commons-sampling-plus": {
8862
+ "changes": [
8863
+ "5.0.11"
8864
+ ],
8865
+ "ligatures": [],
8866
+ "search": {
8867
+ "terms": []
8868
+ },
8869
+ "styles": [
8870
+ "brands"
8871
+ ],
8872
+ "unicode": "f4f1",
8873
+ "label": "Creative Commons Sampling +",
8874
+ "svg": {
8875
+ "brands": {
8876
+ "last_modified": 1525209365018,
8877
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 496 512\"><path d=\"M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm107 205.6c-4.7 0-9 2.8-10.7 7.2l-4 9.5-11-92.8c-1.7-13.9-22-13.4-23.1.4l-4.3 51.4-5.2-68.8c-1.1-14.3-22.1-14.2-23.2 0l-3.5 44.9-5.9-94.3c-.9-14.5-22.3-14.4-23.2 0l-5.1 83.7-4.3-66.3c-.9-14.4-22.2-14.4-23.2 0l-5.3 80.2-4.1-57c-1.1-14.3-22-14.3-23.2-.2l-7.7 89.8-1.8-12.2c-1.7-11.4-17.1-13.6-22-3.3l-13.2 27.7H87.5v23.2h51.3c4.4 0 8.4-2.5 10.4-6.4l10.7 73.1c2 13.5 21.9 13 23.1-.7l3.8-43.6 5.7 78.3c1.1 14.4 22.3 14.2 23.2-.1l4.6-70.4 4.8 73.3c.9 14.4 22.3 14.4 23.2-.1l4.9-80.5 4.5 71.8c.9 14.3 22.1 14.5 23.2.2l4.6-58.6 4.9 64.4c1.1 14.3 22 14.2 23.1.1l6.8-83 2.7 22.3c1.4 11.8 17.7 14.1 22.3 3.1l18-43.4h50.5V258l-58.4.3zm-78 5.2h-21.9v21.9c0 4.1-3.3 7.5-7.5 7.5-4.1 0-7.5-3.3-7.5-7.5v-21.9h-21.9c-4.1 0-7.5-3.3-7.5-7.5 0-4.1 3.4-7.5 7.5-7.5h21.9v-21.9c0-4.1 3.4-7.5 7.5-7.5s7.5 3.3 7.5 7.5v21.9h21.9c4.1 0 7.5 3.3 7.5 7.5 0 4.1-3.4 7.5-7.5 7.5z\"/></svg>",
8878
+ "viewBox": [
8879
+ "0",
8880
+ "0",
8881
+ "496",
8882
+ "512"
8883
+ ],
8884
+ "width": 496,
8885
+ "height": 512,
8886
+ "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm107 205.6c-4.7 0-9 2.8-10.7 7.2l-4 9.5-11-92.8c-1.7-13.9-22-13.4-23.1.4l-4.3 51.4-5.2-68.8c-1.1-14.3-22.1-14.2-23.2 0l-3.5 44.9-5.9-94.3c-.9-14.5-22.3-14.4-23.2 0l-5.1 83.7-4.3-66.3c-.9-14.4-22.2-14.4-23.2 0l-5.3 80.2-4.1-57c-1.1-14.3-22-14.3-23.2-.2l-7.7 89.8-1.8-12.2c-1.7-11.4-17.1-13.6-22-3.3l-13.2 27.7H87.5v23.2h51.3c4.4 0 8.4-2.5 10.4-6.4l10.7 73.1c2 13.5 21.9 13 23.1-.7l3.8-43.6 5.7 78.3c1.1 14.4 22.3 14.2 23.2-.1l4.6-70.4 4.8 73.3c.9 14.4 22.3 14.4 23.2-.1l4.9-80.5 4.5 71.8c.9 14.3 22.1 14.5 23.2.2l4.6-58.6 4.9 64.4c1.1 14.3 22 14.2 23.1.1l6.8-83 2.7 22.3c1.4 11.8 17.7 14.1 22.3 3.1l18-43.4h50.5V258l-58.4.3zm-78 5.2h-21.9v21.9c0 4.1-3.3 7.5-7.5 7.5-4.1 0-7.5-3.3-7.5-7.5v-21.9h-21.9c-4.1 0-7.5-3.3-7.5-7.5 0-4.1 3.4-7.5 7.5-7.5h21.9v-21.9c0-4.1 3.4-7.5 7.5-7.5s7.5 3.3 7.5 7.5v21.9h21.9c4.1 0 7.5 3.3 7.5 7.5 0 4.1-3.4 7.5-7.5 7.5z"
8887
+ }
8888
+ }
8889
+ },
8890
+ "creative-commons-share": {
8891
+ "changes": [
8892
+ "5.0.11"
8893
+ ],
8894
+ "ligatures": [],
8895
+ "search": {
8896
+ "terms": []
8897
+ },
8898
+ "styles": [
8899
+ "brands"
8900
+ ],
8901
+ "unicode": "f4f2",
8902
+ "label": "Creative Commons Share",
8903
+ "svg": {
8904
+ "brands": {
8905
+ "last_modified": 1525209365018,
8906
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 496 512\"><path d=\"M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm101 132.4c7.8 0 13.7 6.1 13.7 13.7v182.5c0 7.7-6.1 13.7-13.7 13.7H214.3c-7.7 0-13.7-6-13.7-13.7v-54h-54c-7.8 0-13.7-6-13.7-13.7V131.1c0-8.2 6.6-12.7 12.4-13.7h136.4c7.7 0 13.7 6 13.7 13.7v54h54zM159.9 300.3h40.7V198.9c0-7.4 5.8-12.6 12-13.7h55.8v-40.3H159.9v155.4zm176.2-88.1H227.6v155.4h108.5V212.2z\"/></svg>",
8907
+ "viewBox": [
8908
+ "0",
8909
+ "0",
8910
+ "496",
8911
+ "512"
8912
+ ],
8913
+ "width": 496,
8914
+ "height": 512,
8915
+ "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm101 132.4c7.8 0 13.7 6.1 13.7 13.7v182.5c0 7.7-6.1 13.7-13.7 13.7H214.3c-7.7 0-13.7-6-13.7-13.7v-54h-54c-7.8 0-13.7-6-13.7-13.7V131.1c0-8.2 6.6-12.7 12.4-13.7h136.4c7.7 0 13.7 6 13.7 13.7v54h54zM159.9 300.3h40.7V198.9c0-7.4 5.8-12.6 12-13.7h55.8v-40.3H159.9v155.4zm176.2-88.1H227.6v155.4h108.5V212.2z"
8916
+ }
8917
+ }
8918
+ },
8919
+ "credit-card": {
8920
+ "changes": [
8921
+ "2",
8922
+ "5.0.0"
8923
+ ],
8924
+ "ligatures": [],
8925
+ "search": {
8926
+ "terms": [
8927
+ "buy",
8928
+ "checkout",
8929
+ "credit-card-alt",
8930
+ "debit",
8931
+ "money",
8932
+ "payment",
8933
+ "purchase"
8934
+ ]
8935
+ },
8936
+ "styles": [
8937
+ "solid",
8938
+ "regular"
8939
+ ],
8940
+ "unicode": "f09d",
8941
+ "label": "Credit Card",
8942
+ "svg": {
8943
+ "solid": {
8944
+ "last_modified": 1500927880000,
8945
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V256H0v176zm192-68c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-40zm-128 0c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM576 80v48H0V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48z\"/></svg>",
8946
+ "viewBox": [
8947
+ "0",
8948
+ "0",
8949
+ "576",
8950
+ "512"
8951
+ ],
8952
+ "width": 576,
8953
+ "height": 512,
8954
+ "path": "M0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V256H0v176zm192-68c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-40zm-128 0c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM576 80v48H0V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48z"
8955
+ },
8956
+ "regular": {
8957
+ "last_modified": 1500927880000,
8958
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M527.9 32H48.1C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48.1 48h479.8c26.6 0 48.1-21.5 48.1-48V80c0-26.5-21.5-48-48.1-48zM54.1 80h467.8c3.3 0 6 2.7 6 6v42H48.1V86c0-3.3 2.7-6 6-6zm467.8 352H54.1c-3.3 0-6-2.7-6-6V256h479.8v170c0 3.3-2.7 6-6 6zM192 332v40c0 6.6-5.4 12-12 12h-72c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12zm192 0v40c0 6.6-5.4 12-12 12H236c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12z\"/></svg>",
8959
+ "viewBox": [
8960
+ "0",
8961
+ "0",
8962
+ "576",
8963
+ "512"
8964
+ ],
8965
+ "width": 576,
8966
+ "height": 512,
8967
+ "path": "M527.9 32H48.1C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48.1 48h479.8c26.6 0 48.1-21.5 48.1-48V80c0-26.5-21.5-48-48.1-48zM54.1 80h467.8c3.3 0 6 2.7 6 6v42H48.1V86c0-3.3 2.7-6 6-6zm467.8 352H54.1c-3.3 0-6-2.7-6-6V256h479.8v170c0 3.3-2.7 6-6 6zM192 332v40c0 6.6-5.4 12-12 12h-72c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12zm192 0v40c0 6.6-5.4 12-12 12H236c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12z"
8968
+ }
8969
+ }
8970
+ },
8971
+ "crop": {
8972
+ "changes": [
8973
+ "3.1",
8974
+ "5.0.0",
8975
+ "5.1.0"
8976
+ ],
8977
+ "ligatures": [],
8978
+ "search": {
8979
+ "terms": [
8980
+ "design"
8981
+ ]
8982
+ },
8983
+ "styles": [
8984
+ "solid"
8985
+ ],
8986
+ "unicode": "f125",
8987
+ "label": "crop",
8988
+ "svg": {
8989
+ "solid": {
8990
+ "last_modified": 1529520111654,
8991
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M488 352h-40V109.25l59.31-59.31c6.25-6.25 6.25-16.38 0-22.63L484.69 4.69c-6.25-6.25-16.38-6.25-22.63 0L402.75 64H192v96h114.75L160 306.75V24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v264c0 13.25 10.75 24 24 24h232v-96H205.25L352 205.25V488c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z\"/></svg>",
8992
+ "viewBox": [
8993
+ "0",
8994
+ "0",
8995
+ "512",
8996
+ "512"
8997
+ ],
8998
+ "width": 512,
8999
+ "height": 512,
9000
+ "path": "M488 352h-40V109.25l59.31-59.31c6.25-6.25 6.25-16.38 0-22.63L484.69 4.69c-6.25-6.25-16.38-6.25-22.63 0L402.75 64H192v96h114.75L160 306.75V24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v264c0 13.25 10.75 24 24 24h232v-96H205.25L352 205.25V488c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z"
9001
+ }
9002
+ }
9003
+ },
9004
+ "crop-alt": {
9005
+ "changes": [
9006
+ "5.1.0"
9007
+ ],
9008
+ "ligatures": [],
9009
+ "search": {
9010
+ "terms": []
9011
+ },
9012
+ "styles": [
9013
+ "solid"
9014
+ ],
9015
+ "unicode": "f565",
9016
+ "label": "Alternate Crop",
9017
+ "svg": {
9018
+ "solid": {
9019
+ "last_modified": 1529520111653,
9020
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M488 352h-40V96c0-17.67-14.33-32-32-32H192v96h160v328c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24zM160 24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v256c0 17.67 14.33 32 32 32h224v-96H160V24z\"/></svg>",
9021
+ "viewBox": [
9022
+ "0",
9023
+ "0",
9024
+ "512",
9025
+ "512"
9026
+ ],
9027
+ "width": 512,
9028
+ "height": 512,
9029
+ "path": "M488 352h-40V96c0-17.67-14.33-32-32-32H192v96h160v328c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24zM160 24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v256c0 17.67 14.33 32 32 32h224v-96H160V24z"
9030
+ }
9031
+ }
9032
+ },
9033
+ "crosshairs": {
9034
+ "changes": [
9035
+ "1",
9036
+ "5.0.0"
9037
+ ],
9038
+ "ligatures": [],
9039
+ "search": {
9040
+ "terms": [
9041
+ "gpd",
9042
+ "picker",
9043
+ "position"
9044
+ ]
9045
+ },
9046
+ "styles": [
9047
+ "solid"
9048
+ ],
9049
+ "unicode": "f05b",
9050
+ "label": "Crosshairs",
9051
+ "svg": {
9052
+ "solid": {
9053
+ "last_modified": 1500927880000,
9054
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M500 224h-30.364C455.724 130.325 381.675 56.276 288 42.364V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v30.364C130.325 56.276 56.276 130.325 42.364 224H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h30.364C56.276 381.675 130.325 455.724 224 469.636V500c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-30.364C381.675 455.724 455.724 381.675 469.636 288H500c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zM288 404.634V364c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40.634C165.826 392.232 119.783 346.243 107.366 288H148c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40.634C119.768 165.826 165.757 119.783 224 107.366V148c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40.634C346.174 119.768 392.217 165.757 404.634 224H364c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40.634C392.232 346.174 346.243 392.217 288 404.634zM288 256c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z\"/></svg>",
9055
+ "viewBox": [
9056
+ "0",
9057
+ "0",
9058
+ "512",
9059
+ "512"
9060
+ ],
9061
+ "width": 512,
9062
+ "height": 512,
9063
+ "path": "M500 224h-30.364C455.724 130.325 381.675 56.276 288 42.364V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v30.364C130.325 56.276 56.276 130.325 42.364 224H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h30.364C56.276 381.675 130.325 455.724 224 469.636V500c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-30.364C381.675 455.724 455.724 381.675 469.636 288H500c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zM288 404.634V364c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40.634C165.826 392.232 119.783 346.243 107.366 288H148c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40.634C119.768 165.826 165.757 119.783 224 107.366V148c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40.634C346.174 119.768 392.217 165.757 404.634 224H364c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40.634C392.232 346.174 346.243 392.217 288 404.634zM288 256c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z"
9064
+ }
9065
+ }
9066
+ },
9067
+ "crow": {
9068
+ "changes": [
9069
+ "5.0.13"
9070
+ ],
9071
+ "ligatures": [],
9072
+ "search": {
9073
+ "terms": [
9074
+ "bird",
9075
+ "bullfrog",
9076
+ "toad"
9077
+ ]
9078
+ },
9079
+ "styles": [
9080
+ "solid"
9081
+ ],
9082
+ "unicode": "f520",
9083
+ "label": "Crow",
9084
+ "svg": {
9085
+ "solid": {
9086
+ "last_modified": 1525967154565,
9087
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M544 32h-16.36C513.04 12.68 490.09 0 464 0c-44.18 0-80 35.82-80 80v20.98L12.09 393.57A30.216 30.216 0 0 0 0 417.74c0 22.46 23.64 37.07 43.73 27.03L165.27 384h96.49l44.41 120.1c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38L312.94 384H352c1.91 0 3.76-.23 5.66-.29l44.51 120.38c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38l-41.24-111.53C485.74 352.8 544 279.26 544 192v-80l96-16c0-35.35-42.98-64-96-64zm-80 72c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z\"/></svg>",
9088
+ "viewBox": [
9089
+ "0",
9090
+ "0",
9091
+ "640",
9092
+ "512"
9093
+ ],
9094
+ "width": 640,
9095
+ "height": 512,
9096
+ "path": "M544 32h-16.36C513.04 12.68 490.09 0 464 0c-44.18 0-80 35.82-80 80v20.98L12.09 393.57A30.216 30.216 0 0 0 0 417.74c0 22.46 23.64 37.07 43.73 27.03L165.27 384h96.49l44.41 120.1c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38L312.94 384H352c1.91 0 3.76-.23 5.66-.29l44.51 120.38c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38l-41.24-111.53C485.74 352.8 544 279.26 544 192v-80l96-16c0-35.35-42.98-64-96-64zm-80 72c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"
9097
+ }
9098
+ }
9099
+ },
9100
+ "crown": {
9101
+ "changes": [
9102
+ "5.0.13"
9103
+ ],
9104
+ "ligatures": [],
9105
+ "search": {
9106
+ "terms": []
9107
+ },
9108
+ "styles": [
9109
+ "solid"
9110
+ ],
9111
+ "unicode": "f521",
9112
+ "label": "Crown",
9113
+ "svg": {
9114
+ "solid": {
9115
+ "last_modified": 1525967154566,
9116
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M528 448H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h416c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm64-320c-26.5 0-48 21.5-48 48 0 7.1 1.6 13.7 4.4 19.8L476 239.2c-15.4 9.2-35.3 4-44.2-11.6L350.3 85C361 76.2 368 63 368 48c0-26.5-21.5-48-48-48s-48 21.5-48 48c0 15 7 28.2 17.7 37l-81.5 142.6c-8.9 15.6-28.9 20.8-44.2 11.6l-72.3-43.4c2.7-6 4.4-12.7 4.4-19.8 0-26.5-21.5-48-48-48S0 149.5 0 176s21.5 48 48 48c2.6 0 5.2-.4 7.7-.8L128 416h384l72.3-192.8c2.5.4 5.1.8 7.7.8 26.5 0 48-21.5 48-48s-21.5-48-48-48z\"/></svg>",
9117
+ "viewBox": [
9118
+ "0",
9119
+ "0",
9120
+ "640",
9121
+ "512"
9122
+ ],
9123
+ "width": 640,
9124
+ "height": 512,
9125
+ "path": "M528 448H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h416c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm64-320c-26.5 0-48 21.5-48 48 0 7.1 1.6 13.7 4.4 19.8L476 239.2c-15.4 9.2-35.3 4-44.2-11.6L350.3 85C361 76.2 368 63 368 48c0-26.5-21.5-48-48-48s-48 21.5-48 48c0 15 7 28.2 17.7 37l-81.5 142.6c-8.9 15.6-28.9 20.8-44.2 11.6l-72.3-43.4c2.7-6 4.4-12.7 4.4-19.8 0-26.5-21.5-48-48-48S0 149.5 0 176s21.5 48 48 48c2.6 0 5.2-.4 7.7-.8L128 416h384l72.3-192.8c2.5.4 5.1.8 7.7.8 26.5 0 48-21.5 48-48s-21.5-48-48-48z"
9126
+ }
9127
+ }
9128
+ },
9129
+ "css3": {
9130
+ "changes": [
9131
+ "3.1",
9132
+ "5.0.0"
9133
+ ],
9134
+ "ligatures": [],
9135
+ "search": {
9136
+ "terms": [
9137
+ "code"
9138
+ ]
9139
+ },
9140
+ "styles": [
9141
+ "brands"
9142
+ ],
9143
+ "unicode": "f13c",
9144
+ "label": "CSS 3 Logo",
9145
+ "svg": {
9146
+ "brands": {
9147
+ "last_modified": 1505400127000,
9148
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M480 32l-64 368-223.3 80L0 400l19.6-94.8h82l-8 40.6L210 390.2l134.1-44.4 18.8-97.1H29.5l16-82h333.7l10.5-52.7H56.3l16.3-82H480z\"/></svg>",
9149
+ "viewBox": [
9150
+ "0",
9151
+ "0",
9152
+ "512",
9153
+ "512"
9154
+ ],
9155
+ "width": 512,
9156
+ "height": 512,
9157
+ "path": "M480 32l-64 368-223.3 80L0 400l19.6-94.8h82l-8 40.6L210 390.2l134.1-44.4 18.8-97.1H29.5l16-82h333.7l10.5-52.7H56.3l16.3-82H480z"
9158
+ }
9159
+ }
9160
+ },
9161
+ "css3-alt": {
9162
+ "changes": [
9163
+ "5.0.0"
9164
+ ],
9165
+ "ligatures": [],
9166
+ "search": {
9167
+ "terms": []
9168
+ },
9169
+ "styles": [
9170
+ "brands"
9171
+ ],
9172
+ "unicode": "f38b",
9173
+ "label": "Alternate CSS3 Logo",
9174
+ "svg": {
9175
+ "brands": {
9176
+ "last_modified": 1505400127000,
9177
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 384 512\"><path d=\"M0 32l34.9 395.8L192 480l157.1-52.2L384 32H0zm313.1 80l-4.8 47.3L193 208.6l-.3.1h111.5l-12.8 146.6-98.2 28.7-98.8-29.2-6.4-73.9h48.9l3.2 38.3 52.6 13.3 54.7-15.4 3.7-61.6-166.3-.5v-.1l-.2.1-3.6-46.3L193.1 162l6.5-2.7H76.7L70.9 112h242.2z\"/></svg>",
9178
+ "viewBox": [
9179
+ "0",
9180
+ "0",
9181
+ "384",
9182
+ "512"
9183
+ ],
9184
+ "width": 384,
9185
+ "height": 512,
9186
+ "path": "M0 32l34.9 395.8L192 480l157.1-52.2L384 32H0zm313.1 80l-4.8 47.3L193 208.6l-.3.1h111.5l-12.8 146.6-98.2 28.7-98.8-29.2-6.4-73.9h48.9l3.2 38.3 52.6 13.3 54.7-15.4 3.7-61.6-166.3-.5v-.1l-.2.1-3.6-46.3L193.1 162l6.5-2.7H76.7L70.9 112h242.2z"
9187
+ }
9188
+ }
9189
+ },
9190
+ "cube": {
9191
+ "changes": [
9192
+ "4.1",
9193
+ "5.0.0"
9194
+ ],
9195
+ "ligatures": [],
9196
+ "search": {
9197
+ "terms": [
9198
+ "package"
9199
+ ]
9200
+ },
9201
+ "styles": [
9202
+ "solid"
9203
+ ],
9204
+ "unicode": "f1b2",
9205
+ "label": "Cube",
9206
+ "svg": {
9207
+ "solid": {
9208
+ "last_modified": 1502397066000,
9209
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M239.1 6.3l-208 78c-18.7 7-31.1 25-31.1 45v225.1c0 18.2 10.3 34.8 26.5 42.9l208 104c13.5 6.8 29.4 6.8 42.9 0l208-104c16.3-8.1 26.5-24.8 26.5-42.9V129.3c0-20-12.4-37.9-31.1-44.9l-208-78C262 2.2 250 2.2 239.1 6.3zM256 68.4l192 72v1.1l-192 78-192-78v-1.1l192-72zm32 356V275.5l160-65v133.9l-160 80z\"/></svg>",
9210
+ "viewBox": [
9211
+ "0",
9212
+ "0",
9213
+ "512",
9214
+ "512"
9215
+ ],
9216
+ "width": 512,
9217
+ "height": 512,
9218
+ "path": "M239.1 6.3l-208 78c-18.7 7-31.1 25-31.1 45v225.1c0 18.2 10.3 34.8 26.5 42.9l208 104c13.5 6.8 29.4 6.8 42.9 0l208-104c16.3-8.1 26.5-24.8 26.5-42.9V129.3c0-20-12.4-37.9-31.1-44.9l-208-78C262 2.2 250 2.2 239.1 6.3zM256 68.4l192 72v1.1l-192 78-192-78v-1.1l192-72zm32 356V275.5l160-65v133.9l-160 80z"
9219
+ }
9220
+ }
9221
+ },
9222
+ "cubes": {
9223
+ "changes": [
9224
+ "4.1",
9225
+ "5.0.0"
9226
+ ],
9227
+ "ligatures": [],
9228
+ "search": {
9229
+ "terms": [
9230
+ "packages"
9231
+ ]
9232
+ },
9233
+ "styles": [
9234
+ "solid"
9235
+ ],
9236
+ "unicode": "f1b3",
9237
+ "label": "Cubes",
9238
+ "svg": {
9239
+ "solid": {
9240
+ "last_modified": 1502397066000,
9241
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M488.6 250.2L392 214V105.5c0-15-9.3-28.4-23.4-33.7l-100-37.5c-8.1-3.1-17.1-3.1-25.3 0l-100 37.5c-14.1 5.3-23.4 18.7-23.4 33.7V214l-96.6 36.2C9.3 255.5 0 268.9 0 283.9V394c0 13.6 7.7 26.1 19.9 32.2l100 50c10.1 5.1 22.1 5.1 32.2 0l103.9-52 103.9 52c10.1 5.1 22.1 5.1 32.2 0l100-50c12.2-6.1 19.9-18.6 19.9-32.2V283.9c0-15-9.3-28.4-23.4-33.7zM358 214.8l-85 31.9v-68.2l85-37v73.3zM154 104.1l102-38.2 102 38.2v.6l-102 41.4-102-41.4v-.6zm84 291.1l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6zm240 112l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6z\"/></svg>",
9242
+ "viewBox": [
9243
+ "0",
9244
+ "0",
9245
+ "512",
9246
+ "512"
9247
+ ],
9248
+ "width": 512,
9249
+ "height": 512,
9250
+ "path": "M488.6 250.2L392 214V105.5c0-15-9.3-28.4-23.4-33.7l-100-37.5c-8.1-3.1-17.1-3.1-25.3 0l-100 37.5c-14.1 5.3-23.4 18.7-23.4 33.7V214l-96.6 36.2C9.3 255.5 0 268.9 0 283.9V394c0 13.6 7.7 26.1 19.9 32.2l100 50c10.1 5.1 22.1 5.1 32.2 0l103.9-52 103.9 52c10.1 5.1 22.1 5.1 32.2 0l100-50c12.2-6.1 19.9-18.6 19.9-32.2V283.9c0-15-9.3-28.4-23.4-33.7zM358 214.8l-85 31.9v-68.2l85-37v73.3zM154 104.1l102-38.2 102 38.2v.6l-102 41.4-102-41.4v-.6zm84 291.1l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6zm240 112l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6z"
9251
+ }
9252
+ }
9253
+ },
9254
+ "cut": {
9255
+ "changes": [
9256
+ "2",
9257
+ "5.0.0",
9258
+ "5.1.0"
9259
+ ],
9260
+ "ligatures": [],
9261
+ "search": {
9262
+ "terms": [
9263
+ "scissors",
9264
+ "scissors"
9265
+ ]
9266
+ },
9267
+ "styles": [
9268
+ "solid"
9269
+ ],
9270
+ "unicode": "f0c4",
9271
+ "label": "Cut",
9272
+ "svg": {
9273
+ "solid": {
9274
+ "last_modified": 1529520111654,
9275
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M278.06 256L444.48 89.57c4.69-4.69 4.69-12.29 0-16.97-32.8-32.8-85.99-32.8-118.79 0L210.18 188.12l-24.86-24.86c4.31-10.92 6.68-22.81 6.68-35.26 0-53.02-42.98-96-96-96S0 74.98 0 128s42.98 96 96 96c4.54 0 8.99-.32 13.36-.93L142.29 256l-32.93 32.93c-4.37-.61-8.83-.93-13.36-.93-53.02 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96c0-12.45-2.37-24.34-6.68-35.26l24.86-24.86L325.69 439.4c32.8 32.8 85.99 32.8 118.79 0 4.69-4.68 4.69-12.28 0-16.97L278.06 256zM96 160c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32zm0 256c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z\"/></svg>",
9276
+ "viewBox": [
9277
+ "0",
9278
+ "0",
9279
+ "448",
9280
+ "512"
9281
+ ],
9282
+ "width": 448,
9283
+ "height": 512,
9284
+ "path": "M278.06 256L444.48 89.57c4.69-4.69 4.69-12.29 0-16.97-32.8-32.8-85.99-32.8-118.79 0L210.18 188.12l-24.86-24.86c4.31-10.92 6.68-22.81 6.68-35.26 0-53.02-42.98-96-96-96S0 74.98 0 128s42.98 96 96 96c4.54 0 8.99-.32 13.36-.93L142.29 256l-32.93 32.93c-4.37-.61-8.83-.93-13.36-.93-53.02 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96c0-12.45-2.37-24.34-6.68-35.26l24.86-24.86L325.69 439.4c32.8 32.8 85.99 32.8 118.79 0 4.69-4.68 4.69-12.28 0-16.97L278.06 256zM96 160c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32zm0 256c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z"
9285
+ }
9286
+ }
9287
+ },
9288
+ "cuttlefish": {
9289
+ "changes": [
9290
+ "5.0.0"
9291
+ ],
9292
+ "ligatures": [],
9293
+ "search": {
9294
+ "terms": []
9295
+ },
9296
+ "styles": [
9297
+ "brands"
9298
+ ],
9299
+ "unicode": "f38c",
9300
+ "label": "Cuttlefish",
9301
+ "svg": {
9302
+ "brands": {
9303
+ "last_modified": 1500927880000,
9304
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 440 512\"><path d=\"M344 305.5c-17.5 31.6-57.4 54.5-96 54.5-56.6 0-104-47.4-104-104s47.4-104 104-104c38.6 0 78.5 22.9 96 54.5 13.7-50.9 41.7-93.3 87-117.8C385.7 39.1 320.5 8 248 8 111 8 0 119 0 256s111 248 248 248c72.5 0 137.7-31.1 183-80.7-45.3-24.5-73.3-66.9-87-117.8z\"/></svg>",
9305
+ "viewBox": [
9306
+ "0",
9307
+ "0",
9308
+ "440",
9309
+ "512"
9310
+ ],
9311
+ "width": 440,
9312
+ "height": 512,
9313
+ "path": "M344 305.5c-17.5 31.6-57.4 54.5-96 54.5-56.6 0-104-47.4-104-104s47.4-104 104-104c38.6 0 78.5 22.9 96 54.5 13.7-50.9 41.7-93.3 87-117.8C385.7 39.1 320.5 8 248 8 111 8 0 119 0 256s111 248 248 248c72.5 0 137.7-31.1 183-80.7-45.3-24.5-73.3-66.9-87-117.8z"
9314
+ }
9315
+ }
9316
+ },
9317
+ "d-and-d": {
9318
+ "changes": [
9319
+ "5.0.0"
9320
+ ],
9321
+ "ligatures": [],
9322
+ "search": {
9323
+ "terms": []
9324
+ },
9325
+ "styles": [
9326
+ "brands"
9327
+ ],
9328
+ "unicode": "f38d",
9329
+ "label": "Dungeons & Dragons",
9330
+ "svg": {
9331
+ "brands": {
9332
+ "last_modified": 1500927880000,
9333
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M82.5 98.9c-.6-17.2 2-33.8 12.7-48.2.3 7.4 1.2 14.5 4.2 21.6 5.9-27.5 19.7-49.3 42.3-65.5-1.9 5.9-3.5 11.8-3 17.7 8.7-7.4 18.8-17.8 44.4-22.7 14.7-2.8 29.7-2 42.1 1 38.5 9.3 61 34.3 69.7 72.3 5.3 23.1.7 45-8.3 66.4-5.2 12.4-12 24.4-20.7 35.1-2-1.9-3.9-3.8-5.8-5.6-42.8-40.8-26.8-25.2-37.4-37.4-1.1-1.2-1-2.2-.1-3.6 8.3-13.5 11.8-28.2 10-44-1.1-9.8-4.3-18.9-11.3-26.2-14.5-15.3-39.2-15-53.5.6-11.4 12.5-14.1 27.4-10.9 43.6.2 1.3.4 2.7 0 3.9-3.4 13.7-4.6 27.6-2.5 41.6.1.5.1 1.1.1 1.6 0 .3-.1.5-.2 1.1-21.8-11-36-28.3-43.2-52.2-8.3 17.8-11.1 35.5-6.6 54.1-15.6-15.2-21.3-34.3-22-55.2zm469.6 123.2c-11.6-11.6-25-20.4-40.1-26.6-12.8-5.2-26-7.9-39.9-7.1-10 .6-19.6 3.1-29 6.4-2.5.9-5.1 1.6-7.7 2.2-4.9 1.2-7.3-3.1-4.7-6.8 3.2-4.6 3.4-4.2 15-12 .6-.4 1.2-.8 2.2-1.5h-2.5c-.6 0-1.2.2-1.9.3-19.3 3.3-30.7 15.5-48.9 29.6-10.4 8.1-13.8 3.8-12-.5 1.4-3.5 3.3-6.7 5.1-10 1-1.8 2.3-3.4 3.5-5.1-.2-.2-.5-.3-.7-.5-27 18.3-46.7 42.4-57.7 73.3.3.3.7.6 1 .9.3-.6.5-1.2.9-1.7 10.4-12.1 22.8-21.8 36.6-29.8 18.2-10.6 37.5-18.3 58.7-20.2 4.3-.4 8.7-.1 13.1-.1-1.8.7-3.5.9-5.3 1.1-18.5 2.4-35.5 9-51.5 18.5-30.2 17.9-54.5 42.2-75.1 70.4-.3.4-.4.9-.7 1.3 14.5 5.3 24 17.3 36.1 25.6.2-.1.3-.2.4-.4l1.2-2.7c12.2-26.9 27-52.3 46.7-74.5 16.7-18.8 38-25.3 62.5-20 5.9 1.3 11.4 4.4 17.2 6.8 2.3-1.4 5.1-3.2 8-4.7 8.4-4.3 17.4-7 26.7-9 14.7-3.1 29.5-4.9 44.5-1.3v-.5c-.5-.4-1.2-.8-1.7-1.4zM316.7 397.6c-39.4-33-22.8-19.5-42.7-35.6-.8.9 0-.2-1.9 3-11.2 19.1-25.5 35.3-44 47.6-10.3 6.8-21.5 11.8-34.1 11.8-21.6 0-38.2-9.5-49.4-27.8-12-19.5-13.3-40.7-8.2-62.6 7.8-33.8 30.1-55.2 38.6-64.3-18.7-6.2-33 1.7-46.4 13.9.8-13.9 4.3-26.2 11.8-37.3-24.3 10.6-45.9 25-64.8 43.9-.3-5.8 5.4-43.7 5.6-44.7.3-2.7-.6-5.3-3-7.4-24.2 24.7-44.5 51.8-56.1 84.6 7.4-5.9 14.9-11.4 23.6-16.2-8.3 22.3-19.6 52.8-7.8 101.1 4.6 19 11.9 36.8 24.1 52.3 2.9 3.7 6.3 6.9 9.5 10.3.2-.2.4-.3.6-.5-1.4-7-2.2-14.1-1.5-21.9 2.2 3.2 3.9 6 5.9 8.6 12.6 16 28.7 27.4 47.2 35.6 25 11.3 51.1 13.3 77.9 8.6 54.9-9.7 90.7-48.6 116-98.8 1-1.8.6-2.9-.9-4.2zm172-46.4c-9.5-3.1-22.2-4.2-28.7-2.9 9.9 4 14.1 6.6 18.8 12 12.6 14.4 10.4 34.7-5.4 45.6-11.7 8.1-24.9 10.5-38.9 9.1-1.2-.1-2.3-.4-3-.6 2.8-3.7 6-7 8.1-10.8 9.4-16.8 5.4-42.1-8.7-56.1-2.1-2.1-4.6-3.9-7-5.9-.3 1.3-.1 2.1.1 2.8 4.2 16.6-8.1 32.4-24.8 31.8-7.6-.3-13.9-3.8-19.6-8.5-19.5-16.1-39.1-32.1-58.5-48.3-5.9-4.9-12.5-8.1-20.1-8.7-4.6-.4-9.3-.6-13.9-.9-5.9-.4-8.8-2.8-10.4-8.4-.9-3.4-1.5-6.8-2.2-10.2-1.5-8.1-6.2-13-14.3-14.2-4.4-.7-8.9-1-13.3-1.5-13-1.4-19.8-7.4-22.6-20.3-5 11-1.6 22.4 7.3 29.9 4.5 3.8 9.3 7.3 13.8 11.2 4.6 3.8 7.4 8.7 7.9 14.8.4 4.7.8 9.5 1.8 14.1 2.2 10.6 8.9 18.4 17 25.1 16.5 13.7 33 27.3 49.5 41.1 17.9 15 13.9 32.8 13 56-.9 22.9 12.2 42.9 33.5 51.2 1 .4 2 .6 3.6 1.1-15.7-18.2-10.1-44.1.7-52.3.3 2.2.4 4.3.9 6.4 9.4 44.1 45.4 64.2 85 56.9 16-2.9 30.6-8.9 42.9-19.8 2-1.8 3.7-4.1 5.9-6.5-19.3 4.6-35.8.1-50.9-10.6.7-.3 1.3-.3 1.9-.3 21.3 1.8 40.6-3.4 57-17.4 19.5-16.6 26.6-42.9 17.4-66-8.3-20.1-23.6-32.3-43.8-38.9zM99.4 179.3c-5.3-9.2-13.2-15.6-22.1-21.3 13.7-.5 26.6.2 39.6 3.7-7-12.2-8.5-24.7-5-38.7 5.3 11.9 13.7 20.1 23.6 26.8 19.7 13.2 35.7 19.6 46.7 30.2 3.4 3.3 6.3 7.1 9.6 10.9-.8-2.1-1.4-4.1-2.2-6-5-10.6-13-18.6-22.6-25-1.8-1.2-2.8-2.5-3.4-4.5-3.3-12.5-3-25.1-.7-37.6 1-5.5 2.8-10.9 4.5-16.3.8-2.4 2.3-4.6 4-6.6.6 6.9 0 25.5 19.6 46 10.8 11.3 22.4 21.9 33.9 32.7 9 8.5 18.3 16.7 25.5 26.8 1.1 1.6 2.2 3.3 3.8 4.7-5-13-14.2-24.1-24.2-33.8-9.6-9.3-19.4-18.4-29.2-27.4-3.3-3-4.6-6.7-5.1-10.9-1.2-10.4 0-20.6 4.3-30.2.5-1 1.1-2 1.9-3.3.5 4.2.6 7.9 1.4 11.6 4.8 23.1 20.4 36.3 49.3 63.5 10 9.4 19.3 19.2 25.6 31.6 4.8 9.3 7.3 19 5.7 29.6-.1.6.5 1.7 1.1 2 6.2 2.6 10 6.9 9.7 14.3 7.7-2.6 12.5-8 16.4-14.5 4.2 20.2-9.1 50.3-27.2 58.7.4-4.5 5-23.4-16.5-27.7-6.8-1.3-12.8-1.3-22.9-2.1 4.7-9 10.4-20.6.5-22.4-24.9-4.6-52.8 1.9-57.8 4.6 8.2.4 16.3 1 23.5 3.3-2 6.5-4 12.7-5.8 18.9-1.9 6.5 2.1 14.6 9.3 9.6 1.2-.9 2.3-1.9 3.3-2.7-3.1 17.9-2.9 15.9-2.8 18.3.3 10.2 9.5 7.8 15.7 7.3-2.5 11.8-29.5 27.3-45.4 25.8 7-4.7 12.7-10.3 15.9-17.9-6.5.8-12.9 1.6-19.2 2.4l-.3-.9c4.7-3.4 8-7.8 10.2-13.1 8.7-21.1-3.6-38-25-39.9-9.1-.8-17.8.8-25.9 5.5 6.2-15.6 17.2-26.6 32.6-34.5-15.2-4.3-8.9-2.7-24.6-6.3 14.6-9.3 30.2-13.2 46.5-14.6-5.2-3.2-48.1-3.6-70.2 20.9 7.9 1.4 15.5 2.8 23.2 4.2-23.8 7-44 19.7-62.4 35.6 1.1-4.8 2.7-9.5 3.3-14.3.6-4.5.8-9.2.1-13.6-1.5-9.4-8.9-15.1-19.7-16.3-7.9-.9-15.6.1-23.3 1.3-.9.1-1.7.3-2.9 0 15.8-14.8 36-21.7 53.1-33.5 6-4.5 6.8-8.2 3-14.9zm128.4 26.8c3.3 16 12.6 25.5 23.8 24.3-4.6-11.3-12.1-19.5-23.8-24.3z\"/></svg>",
9334
+ "viewBox": [
9335
+ "0",
9336
+ "0",
9337
+ "576",
9338
+ "512"
9339
+ ],
9340
+ "width": 576,
9341
+ "height": 512,
9342
+ "path": "M82.5 98.9c-.6-17.2 2-33.8 12.7-48.2.3 7.4 1.2 14.5 4.2 21.6 5.9-27.5 19.7-49.3 42.3-65.5-1.9 5.9-3.5 11.8-3 17.7 8.7-7.4 18.8-17.8 44.4-22.7 14.7-2.8 29.7-2 42.1 1 38.5 9.3 61 34.3 69.7 72.3 5.3 23.1.7 45-8.3 66.4-5.2 12.4-12 24.4-20.7 35.1-2-1.9-3.9-3.8-5.8-5.6-42.8-40.8-26.8-25.2-37.4-37.4-1.1-1.2-1-2.2-.1-3.6 8.3-13.5 11.8-28.2 10-44-1.1-9.8-4.3-18.9-11.3-26.2-14.5-15.3-39.2-15-53.5.6-11.4 12.5-14.1 27.4-10.9 43.6.2 1.3.4 2.7 0 3.9-3.4 13.7-4.6 27.6-2.5 41.6.1.5.1 1.1.1 1.6 0 .3-.1.5-.2 1.1-21.8-11-36-28.3-43.2-52.2-8.3 17.8-11.1 35.5-6.6 54.1-15.6-15.2-21.3-34.3-22-55.2zm469.6 123.2c-11.6-11.6-25-20.4-40.1-26.6-12.8-5.2-26-7.9-39.9-7.1-10 .6-19.6 3.1-29 6.4-2.5.9-5.1 1.6-7.7 2.2-4.9 1.2-7.3-3.1-4.7-6.8 3.2-4.6 3.4-4.2 15-12 .6-.4 1.2-.8 2.2-1.5h-2.5c-.6 0-1.2.2-1.9.3-19.3 3.3-30.7 15.5-48.9 29.6-10.4 8.1-13.8 3.8-12-.5 1.4-3.5 3.3-6.7 5.1-10 1-1.8 2.3-3.4 3.5-5.1-.2-.2-.5-.3-.7-.5-27 18.3-46.7 42.4-57.7 73.3.3.3.7.6 1 .9.3-.6.5-1.2.9-1.7 10.4-12.1 22.8-21.8 36.6-29.8 18.2-10.6 37.5-18.3 58.7-20.2 4.3-.4 8.7-.1 13.1-.1-1.8.7-3.5.9-5.3 1.1-18.5 2.4-35.5 9-51.5 18.5-30.2 17.9-54.5 42.2-75.1 70.4-.3.4-.4.9-.7 1.3 14.5 5.3 24 17.3 36.1 25.6.2-.1.3-.2.4-.4l1.2-2.7c12.2-26.9 27-52.3 46.7-74.5 16.7-18.8 38-25.3 62.5-20 5.9 1.3 11.4 4.4 17.2 6.8 2.3-1.4 5.1-3.2 8-4.7 8.4-4.3 17.4-7 26.7-9 14.7-3.1 29.5-4.9 44.5-1.3v-.5c-.5-.4-1.2-.8-1.7-1.4zM316.7 397.6c-39.4-33-22.8-19.5-42.7-35.6-.8.9 0-.2-1.9 3-11.2 19.1-25.5 35.3-44 47.6-10.3 6.8-21.5 11.8-34.1 11.8-21.6 0-38.2-9.5-49.4-27.8-12-19.5-13.3-40.7-8.2-62.6 7.8-33.8 30.1-55.2 38.6-64.3-18.7-6.2-33 1.7-46.4 13.9.8-13.9 4.3-26.2 11.8-37.3-24.3 10.6-45.9 25-64.8 43.9-.3-5.8 5.4-43.7 5.6-44.7.3-2.7-.6-5.3-3-7.4-24.2 24.7-44.5 51.8-56.1 84.6 7.4-5.9 14.9-11.4 23.6-16.2-8.3 22.3-19.6 52.8-7.8 101.1 4.6 19 11.9 36.8 24.1 52.3 2.9 3.7 6.3 6.9 9.5 10.3.2-.2.4-.3.6-.5-1.4-7-2.2-14.1-1.5-21.9 2.2 3.2 3.9 6 5.9 8.6 12.6 16 28.7 27.4 47.2 35.6 25 11.3 51.1 13.3 77.9 8.6 54.9-9.7 90.7-48.6 116-98.8 1-1.8.6-2.9-.9-4.2zm172-46.4c-9.5-3.1-22.2-4.2-28.7-2.9 9.9 4 14.1 6.6 18.8 12 12.6 14.4 10.4 34.7-5.4 45.6-11.7 8.1-24.9 10.5-38.9 9.1-1.2-.1-2.3-.4-3-.6 2.8-3.7 6-7 8.1-10.8 9.4-16.8 5.4-42.1-8.7-56.1-2.1-2.1-4.6-3.9-7-5.9-.3 1.3-.1 2.1.1 2.8 4.2 16.6-8.1 32.4-24.8 31.8-7.6-.3-13.9-3.8-19.6-8.5-19.5-16.1-39.1-32.1-58.5-48.3-5.9-4.9-12.5-8.1-20.1-8.7-4.6-.4-9.3-.6-13.9-.9-5.9-.4-8.8-2.8-10.4-8.4-.9-3.4-1.5-6.8-2.2-10.2-1.5-8.1-6.2-13-14.3-14.2-4.4-.7-8.9-1-13.3-1.5-13-1.4-19.8-7.4-22.6-20.3-5 11-1.6 22.4 7.3 29.9 4.5 3.8 9.3 7.3 13.8 11.2 4.6 3.8 7.4 8.7 7.9 14.8.4 4.7.8 9.5 1.8 14.1 2.2 10.6 8.9 18.4 17 25.1 16.5 13.7 33 27.3 49.5 41.1 17.9 15 13.9 32.8 13 56-.9 22.9 12.2 42.9 33.5 51.2 1 .4 2 .6 3.6 1.1-15.7-18.2-10.1-44.1.7-52.3.3 2.2.4 4.3.9 6.4 9.4 44.1 45.4 64.2 85 56.9 16-2.9 30.6-8.9 42.9-19.8 2-1.8 3.7-4.1 5.9-6.5-19.3 4.6-35.8.1-50.9-10.6.7-.3 1.3-.3 1.9-.3 21.3 1.8 40.6-3.4 57-17.4 19.5-16.6 26.6-42.9 17.4-66-8.3-20.1-23.6-32.3-43.8-38.9zM99.4 179.3c-5.3-9.2-13.2-15.6-22.1-21.3 13.7-.5 26.6.2 39.6 3.7-7-12.2-8.5-24.7-5-38.7 5.3 11.9 13.7 20.1 23.6 26.8 19.7 13.2 35.7 19.6 46.7 30.2 3.4 3.3 6.3 7.1 9.6 10.9-.8-2.1-1.4-4.1-2.2-6-5-10.6-13-18.6-22.6-25-1.8-1.2-2.8-2.5-3.4-4.5-3.3-12.5-3-25.1-.7-37.6 1-5.5 2.8-10.9 4.5-16.3.8-2.4 2.3-4.6 4-6.6.6 6.9 0 25.5 19.6 46 10.8 11.3 22.4 21.9 33.9 32.7 9 8.5 18.3 16.7 25.5 26.8 1.1 1.6 2.2 3.3 3.8 4.7-5-13-14.2-24.1-24.2-33.8-9.6-9.3-19.4-18.4-29.2-27.4-3.3-3-4.6-6.7-5.1-10.9-1.2-10.4 0-20.6 4.3-30.2.5-1 1.1-2 1.9-3.3.5 4.2.6 7.9 1.4 11.6 4.8 23.1 20.4 36.3 49.3 63.5 10 9.4 19.3 19.2 25.6 31.6 4.8 9.3 7.3 19 5.7 29.6-.1.6.5 1.7 1.1 2 6.2 2.6 10 6.9 9.7 14.3 7.7-2.6 12.5-8 16.4-14.5 4.2 20.2-9.1 50.3-27.2 58.7.4-4.5 5-23.4-16.5-27.7-6.8-1.3-12.8-1.3-22.9-2.1 4.7-9 10.4-20.6.5-22.4-24.9-4.6-52.8 1.9-57.8 4.6 8.2.4 16.3 1 23.5 3.3-2 6.5-4 12.7-5.8 18.9-1.9 6.5 2.1 14.6 9.3 9.6 1.2-.9 2.3-1.9 3.3-2.7-3.1 17.9-2.9 15.9-2.8 18.3.3 10.2 9.5 7.8 15.7 7.3-2.5 11.8-29.5 27.3-45.4 25.8 7-4.7 12.7-10.3 15.9-17.9-6.5.8-12.9 1.6-19.2 2.4l-.3-.9c4.7-3.4 8-7.8 10.2-13.1 8.7-21.1-3.6-38-25-39.9-9.1-.8-17.8.8-25.9 5.5 6.2-15.6 17.2-26.6 32.6-34.5-15.2-4.3-8.9-2.7-24.6-6.3 14.6-9.3 30.2-13.2 46.5-14.6-5.2-3.2-48.1-3.6-70.2 20.9 7.9 1.4 15.5 2.8 23.2 4.2-23.8 7-44 19.7-62.4 35.6 1.1-4.8 2.7-9.5 3.3-14.3.6-4.5.8-9.2.1-13.6-1.5-9.4-8.9-15.1-19.7-16.3-7.9-.9-15.6.1-23.3 1.3-.9.1-1.7.3-2.9 0 15.8-14.8 36-21.7 53.1-33.5 6-4.5 6.8-8.2 3-14.9zm128.4 26.8c3.3 16 12.6 25.5 23.8 24.3-4.6-11.3-12.1-19.5-23.8-24.3z"
9343
+ }
9344
+ }
9345
+ },
9346
+ "dashcube": {
9347
+ "changes": [
9348
+ "4.3",
9349
+ "5.0.0",
9350
+ "5.0.3"
9351
+ ],
9352
+ "ligatures": [],
9353
+ "search": {
9354
+ "terms": []
9355
+ },
9356
+ "styles": [
9357
+ "brands"
9358
+ ],
9359
+ "unicode": "f210",
9360
+ "label": "DashCube",
9361
+ "svg": {
9362
+ "brands": {
9363
+ "last_modified": 1515426581996,
9364
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M326.6 104H110.4c-51.1 0-91.2 43.3-91.2 93.5V427c0 50.5 40.1 85 91.2 85h227.2c51.1 0 91.2-34.5 91.2-85V0L326.6 104zM153.9 416.5c-17.7 0-32.4-15.1-32.4-32.8V240.8c0-17.7 14.7-32.5 32.4-32.5h140.7c17.7 0 32 14.8 32 32.5v123.5l51.1 52.3H153.9z\"/></svg>",
9365
+ "viewBox": [
9366
+ "0",
9367
+ "0",
9368
+ "448",
9369
+ "512"
9370
+ ],
9371
+ "width": 448,
9372
+ "height": 512,
9373
+ "path": "M326.6 104H110.4c-51.1 0-91.2 43.3-91.2 93.5V427c0 50.5 40.1 85 91.2 85h227.2c51.1 0 91.2-34.5 91.2-85V0L326.6 104zM153.9 416.5c-17.7 0-32.4-15.1-32.4-32.8V240.8c0-17.7 14.7-32.5 32.4-32.5h140.7c17.7 0 32 14.8 32 32.5v123.5l51.1 52.3H153.9z"
9374
+ }
9375
+ }
9376
+ },
9377
+ "database": {
9378
+ "changes": [
9379
+ "4.1",
9380
+ "5.0.0"
9381
+ ],
9382
+ "ligatures": [],
9383
+ "search": {
9384
+ "terms": []
9385
+ },
9386
+ "styles": [
9387
+ "solid"
9388
+ ],
9389
+ "unicode": "f1c0",
9390
+ "label": "Database",
9391
+ "svg": {
9392
+ "solid": {
9393
+ "last_modified": 1500927880000,
9394
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M448 73.143v45.714C448 159.143 347.667 192 224 192S0 159.143 0 118.857V73.143C0 32.857 100.333 0 224 0s224 32.857 224 73.143zM448 176v102.857C448 319.143 347.667 352 224 352S0 319.143 0 278.857V176c48.125 33.143 136.208 48.572 224 48.572S399.874 209.143 448 176zm0 160v102.857C448 479.143 347.667 512 224 512S0 479.143 0 438.857V336c48.125 33.143 136.208 48.572 224 48.572S399.874 369.143 448 336z\"/></svg>",
9395
+ "viewBox": [
9396
+ "0",
9397
+ "0",
9398
+ "448",
9399
+ "512"
9400
+ ],
9401
+ "width": 448,
9402
+ "height": 512,
9403
+ "path": "M448 73.143v45.714C448 159.143 347.667 192 224 192S0 159.143 0 118.857V73.143C0 32.857 100.333 0 224 0s224 32.857 224 73.143zM448 176v102.857C448 319.143 347.667 352 224 352S0 319.143 0 278.857V176c48.125 33.143 136.208 48.572 224 48.572S399.874 209.143 448 176zm0 160v102.857C448 479.143 347.667 512 224 512S0 479.143 0 438.857V336c48.125 33.143 136.208 48.572 224 48.572S399.874 369.143 448 336z"
9404
+ }
9405
+ }
9406
+ },
9407
+ "deaf": {
9408
+ "changes": [
9409
+ "4.6",
9410
+ "5.0.0"
9411
+ ],
9412
+ "ligatures": [],
9413
+ "search": {
9414
+ "terms": []
9415
+ },
9416
+ "styles": [
9417
+ "solid"
9418
+ ],
9419
+ "unicode": "f2a4",
9420
+ "label": "Deaf",
9421
+ "svg": {
9422
+ "solid": {
9423
+ "last_modified": 1502483808000,
9424
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm268.485-52.201L480.2 3.515c-4.687-4.686-12.284-4.686-16.971 0L376.2 90.544c-4.686 4.686-4.686 12.284 0 16.971l28.285 28.285c4.686 4.686 12.284 4.686 16.97 0l87.03-87.029c4.687-4.688 4.687-12.286 0-16.972zM168.97 314.745c-4.686-4.686-12.284-4.686-16.97 0L3.515 463.23c-4.686 4.686-4.686 12.284 0 16.971L31.8 508.485c4.687 4.686 12.284 4.686 16.971 0L197.256 360c4.686-4.686 4.686-12.284 0-16.971l-28.286-28.284z\"/></svg>",
9425
+ "viewBox": [
9426
+ "0",
9427
+ "0",
9428
+ "512",
9429
+ "512"
9430
+ ],
9431
+ "width": 512,
9432
+ "height": 512,
9433
+ "path": "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm268.485-52.201L480.2 3.515c-4.687-4.686-12.284-4.686-16.971 0L376.2 90.544c-4.686 4.686-4.686 12.284 0 16.971l28.285 28.285c4.686 4.686 12.284 4.686 16.97 0l87.03-87.029c4.687-4.688 4.687-12.286 0-16.972zM168.97 314.745c-4.686-4.686-12.284-4.686-16.97 0L3.515 463.23c-4.686 4.686-4.686 12.284 0 16.971L31.8 508.485c4.687 4.686 12.284 4.686 16.971 0L197.256 360c4.686-4.686 4.686-12.284 0-16.971l-28.286-28.284z"
9434
+ }
9435
+ }
9436
+ },
9437
+ "delicious": {
9438
+ "changes": [
9439
+ "4.1",
9440
+ "5.0.0"
9441
+ ],
9442
+ "ligatures": [],
9443
+ "search": {
9444
+ "terms": []
9445
+ },
9446
+ "styles": [
9447
+ "brands"
9448
+ ],
9449
+ "unicode": "f1a5",
9450
+ "label": "Delicious Logo",
9451
+ "svg": {
9452
+ "brands": {
9453
+ "last_modified": 1500927880000,
9454
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M446.5 68c-.4-1.5-.9-3-1.4-4.5-.9-2.5-2-4.8-3.3-7.1-1.4-2.4-3-4.8-4.7-6.9-2.1-2.5-4.4-4.8-6.9-6.8-1.1-.9-2.2-1.7-3.3-2.5-1.3-.9-2.6-1.7-4-2.4-1.8-1-3.6-1.8-5.5-2.5-1.7-.7-3.5-1.3-5.4-1.7-3.8-1-7.9-1.5-12-1.5H48C21.5 32 0 53.5 0 80v352c0 4.1.5 8.2 1.5 12 2 7.7 5.8 14.6 11 20.3 1 1.1 2.1 2.2 3.3 3.3 5.7 5.2 12.6 9 20.3 11 3.8 1 7.9 1.5 12 1.5h352c26.5 0 48-21.5 48-48V80c-.1-4.1-.6-8.2-1.6-12zM416 432c0 8.8-7.2 16-16 16H224V256H32V80c0-8.8 7.2-16 16-16h176v192h192v176z\"/></svg>",
9455
+ "viewBox": [
9456
+ "0",
9457
+ "0",
9458
+ "448",
9459
+ "512"
9460
+ ],
9461
+ "width": 448,
9462
+ "height": 512,
9463
+ "path": "M446.5 68c-.4-1.5-.9-3-1.4-4.5-.9-2.5-2-4.8-3.3-7.1-1.4-2.4-3-4.8-4.7-6.9-2.1-2.5-4.4-4.8-6.9-6.8-1.1-.9-2.2-1.7-3.3-2.5-1.3-.9-2.6-1.7-4-2.4-1.8-1-3.6-1.8-5.5-2.5-1.7-.7-3.5-1.3-5.4-1.7-3.8-1-7.9-1.5-12-1.5H48C21.5 32 0 53.5 0 80v352c0 4.1.5 8.2 1.5 12 2 7.7 5.8 14.6 11 20.3 1 1.1 2.1 2.2 3.3 3.3 5.7 5.2 12.6 9 20.3 11 3.8 1 7.9 1.5 12 1.5h352c26.5 0 48-21.5 48-48V80c-.1-4.1-.6-8.2-1.6-12zM416 432c0 8.8-7.2 16-16 16H224V256H32V80c0-8.8 7.2-16 16-16h176v192h192v176z"
9464
+ }
9465
+ }
9466
+ },
9467
+ "deploydog": {
9468
+ "changes": [
9469
+ "5.0.0"
9470
+ ],
9471
+ "ligatures": [],
9472
+ "search": {
9473
+ "terms": []
9474
+ },
9475
+ "styles": [
9476
+ "brands"
9477
+ ],
9478
+ "unicode": "f38e",
9479
+ "label": "deploy.dog",
9480
+ "svg": {
9481
+ "brands": {
9482
+ "last_modified": 1500927880000,
9483
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M382.2 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.6 0-33.2 16.4-33.2 32.6zM188.5 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.7 0-33.2 16.4-33.2 32.6zM448 96c17.5 0 32 14.4 32 32v256c0 17.5-14.4 32-32 32H64c-17.5 0-32-14.4-32-32V128c0-17.5 14.4-32 32-32h384m0-32H64C28.8 64 0 92.8 0 128v256c0 35.2 28.8 64 64 64h384c35.2 0 64-28.8 64-64V128c0-35.2-28.8-64-64-64z\"/></svg>",
9484
+ "viewBox": [
9485
+ "0",
9486
+ "0",
9487
+ "512",
9488
+ "512"
9489
+ ],
9490
+ "width": 512,
9491
+ "height": 512,
9492
+ "path": "M382.2 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.6 0-33.2 16.4-33.2 32.6zM188.5 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.7 0-33.2 16.4-33.2 32.6zM448 96c17.5 0 32 14.4 32 32v256c0 17.5-14.4 32-32 32H64c-17.5 0-32-14.4-32-32V128c0-17.5 14.4-32 32-32h384m0-32H64C28.8 64 0 92.8 0 128v256c0 35.2 28.8 64 64 64h384c35.2 0 64-28.8 64-64V128c0-35.2-28.8-64-64-64z"
9493
+ }
9494
+ }
9495
+ },
9496
+ "deskpro": {
9497
+ "changes": [
9498
+ "5.0.0"
9499
+ ],
9500
+ "ligatures": [],
9501
+ "search": {
9502
+ "terms": []
9503
+ },
9504
+ "styles": [
9505
+ "brands"
9506
+ ],
9507
+ "unicode": "f38f",
9508
+ "label": "Deskpro",
9509
+ "svg": {
9510
+ "brands": {
9511
+ "last_modified": 1521653821382,
9512
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 480 512\"><path d=\"M205.9 512l31.1-38.4c12.3-.2 25.6-1.4 36.5-6.6 38.9-18.6 38.4-61.9 38.3-63.8-.1-5-.8-4.4-28.9-37.4H362c-.2 50.1-7.3 68.5-10.2 75.7-9.4 23.7-43.9 62.8-95.2 69.4-8.7 1.1-32.8 1.2-50.7 1.1zm200.4-167.7c38.6 0 58.5-13.6 73.7-30.9l-175.5-.3-17.4 31.3 119.2-.1zm-43.6-223.9v168.3h-73.5l-32.7 55.5H250c-52.3 0-58.1-56.5-58.3-58.9-1.2-13.2-21.3-11.6-20.1 1.8 1.4 15.8 8.8 40 26.4 57.1h-91c-25.5 0-110.8-26.8-107-114V16.9C0 .9 9.7.3 15 .1h82c.2 0 .3.1.5.1 4.3-.4 50.1-2.1 50.1 43.7 0 13.3 20.2 13.4 20.2 0 0-18.2-5.5-32.8-15.8-43.7h84.2c108.7-.4 126.5 79.4 126.5 120.2zm-132.5 56l64 29.3c13.3-45.5-42.2-71.7-64-29.3z\"/></svg>",
9513
+ "viewBox": [
9514
+ "0",
9515
+ "0",
9516
+ "480",
9517
+ "512"
9518
+ ],
9519
+ "width": 480,
9520
+ "height": 512,
9521
+ "path": "M205.9 512l31.1-38.4c12.3-.2 25.6-1.4 36.5-6.6 38.9-18.6 38.4-61.9 38.3-63.8-.1-5-.8-4.4-28.9-37.4H362c-.2 50.1-7.3 68.5-10.2 75.7-9.4 23.7-43.9 62.8-95.2 69.4-8.7 1.1-32.8 1.2-50.7 1.1zm200.4-167.7c38.6 0 58.5-13.6 73.7-30.9l-175.5-.3-17.4 31.3 119.2-.1zm-43.6-223.9v168.3h-73.5l-32.7 55.5H250c-52.3 0-58.1-56.5-58.3-58.9-1.2-13.2-21.3-11.6-20.1 1.8 1.4 15.8 8.8 40 26.4 57.1h-91c-25.5 0-110.8-26.8-107-114V16.9C0 .9 9.7.3 15 .1h82c.2 0 .3.1.5.1 4.3-.4 50.1-2.1 50.1 43.7 0 13.3 20.2 13.4 20.2 0 0-18.2-5.5-32.8-15.8-43.7h84.2c108.7-.4 126.5 79.4 126.5 120.2zm-132.5 56l64 29.3c13.3-45.5-42.2-71.7-64-29.3z"
9522
+ }
9523
+ }
9524
+ },
9525
+ "desktop": {
9526
+ "changes": [
9527
+ "3",
9528
+ "5.0.0"
9529
+ ],
9530
+ "ligatures": [],
9531
+ "search": {
9532
+ "terms": [
9533
+ "computer",
9534
+ "cpu",
9535
+ "demo",
9536
+ "desktop",
9537
+ "device",
9538
+ "machine",
9539
+ "monitor",
9540
+ "pc",
9541
+ "screen"
9542
+ ]
9543
+ },
9544
+ "styles": [
9545
+ "solid"
9546
+ ],
9547
+ "unicode": "f108",
9548
+ "label": "Desktop",
9549
+ "svg": {
9550
+ "solid": {
9551
+ "last_modified": 1502809851000,
9552
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z\"/></svg>",
9553
+ "viewBox": [
9554
+ "0",
9555
+ "0",
9556
+ "576",
9557
+ "512"
9558
+ ],
9559
+ "width": 576,
9560
+ "height": 512,
9561
+ "path": "M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z"
9562
+ }
9563
+ }
9564
+ },
9565
+ "deviantart": {
9566
+ "changes": [
9567
+ "4.1",
9568
+ "5.0.0"
9569
+ ],
9570
+ "ligatures": [],
9571
+ "search": {
9572
+ "terms": []
9573
+ },
9574
+ "styles": [
9575
+ "brands"
9576
+ ],
9577
+ "unicode": "f1bd",
9578
+ "label": "deviantART",
9579
+ "svg": {
9580
+ "brands": {
9581
+ "last_modified": 1500927880000,
9582
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 320 512\"><path d=\"M320 93.2l-98.2 179.1 7.4 9.5H320v127.7H159.1l-13.5 9.2-43.7 84c-.3 0-8.6 8.6-9.2 9.2H0v-93.2l93.2-179.4-7.4-9.2H0V102.5h156l13.5-9.2 43.7-84c.3 0 8.6-8.6 9.2-9.2H320v93.1z\"/></svg>",
9583
+ "viewBox": [
9584
+ "0",
9585
+ "0",
9586
+ "320",
9587
+ "512"
9588
+ ],
9589
+ "width": 320,
9590
+ "height": 512,
9591
+ "path": "M320 93.2l-98.2 179.1 7.4 9.5H320v127.7H159.1l-13.5 9.2-43.7 84c-.3 0-8.6 8.6-9.2 9.2H0v-93.2l93.2-179.4-7.4-9.2H0V102.5h156l13.5-9.2 43.7-84c.3 0 8.6-8.6 9.2-9.2H320v93.1z"
9592
+ }
9593
+ }
9594
+ },
9595
+ "diagnoses": {
9596
+ "changes": [
9597
+ "5.0.7"
9598
+ ],
9599
+ "ligatures": [],
9600
+ "search": {
9601
+ "terms": []
9602
+ },
9603
+ "styles": [
9604
+ "solid"
9605
+ ],
9606
+ "unicode": "f470",
9607
+ "label": "Diagnoses",
9608
+ "svg": {
9609
+ "solid": {
9610
+ "last_modified": 1521653821447,
9611
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M496 256c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm-176-80c48.5 0 88-39.5 88-88S368.5 0 320 0s-88 39.5-88 88 39.5 88 88 88zM59.8 364c10.2 15.3 29.3 17.8 42.9 9.8 16.2-9.6 56.2-31.7 105.3-48.6V416h224v-90.7c49.1 16.8 89.1 39 105.3 48.6 13.6 8 32.7 5.3 42.9-9.8l17.8-26.7c8.8-13.2 7.6-34.6-10-45.1-11.9-7.1-29.7-17-51.1-27.4-28.1 46.1-99.4 17.8-87.7-35.1C409.3 217.2 365.1 208 320 208c-57 0-112.9 14.5-160 32.2-.2 40.2-47.6 63.3-79.2 36-11.2 6-21.3 11.6-28.7 16-17.6 10.5-18.8 31.8-10 45.1L59.8 364zM368 344c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-160 8c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm512 192H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z\"/></svg>",
9612
+ "viewBox": [
9613
+ "0",
9614
+ "0",
9615
+ "640",
9616
+ "512"
9617
+ ],
9618
+ "width": 640,
9619
+ "height": 512,
9620
+ "path": "M496 256c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm-176-80c48.5 0 88-39.5 88-88S368.5 0 320 0s-88 39.5-88 88 39.5 88 88 88zM59.8 364c10.2 15.3 29.3 17.8 42.9 9.8 16.2-9.6 56.2-31.7 105.3-48.6V416h224v-90.7c49.1 16.8 89.1 39 105.3 48.6 13.6 8 32.7 5.3 42.9-9.8l17.8-26.7c8.8-13.2 7.6-34.6-10-45.1-11.9-7.1-29.7-17-51.1-27.4-28.1 46.1-99.4 17.8-87.7-35.1C409.3 217.2 365.1 208 320 208c-57 0-112.9 14.5-160 32.2-.2 40.2-47.6 63.3-79.2 36-11.2 6-21.3 11.6-28.7 16-17.6 10.5-18.8 31.8-10 45.1L59.8 364zM368 344c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-160 8c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm512 192H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z"
9621
+ }
9622
+ }
9623
+ },
9624
+ "dice": {
9625
+ "changes": [
9626
+ "5.0.13"
9627
+ ],
9628
+ "ligatures": [],
9629
+ "search": {
9630
+ "terms": [
9631
+ "chance",
9632
+ "gambling",
9633
+ "game",
9634
+ "roll"
9635
+ ]
9636
+ },
9637
+ "styles": [
9638
+ "solid"
9639
+ ],
9640
+ "unicode": "f522",
9641
+ "label": "Dice",
9642
+ "svg": {
9643
+ "solid": {
9644
+ "last_modified": 1525967154567,
9645
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M592 192H473.26c12.69 29.59 7.12 65.2-17 89.32L320 417.58V464c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48V240c0-26.51-21.49-48-48-48zM480 376c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm-46.37-186.7L258.7 14.37c-19.16-19.16-50.23-19.16-69.39 0L14.37 189.3c-19.16 19.16-19.16 50.23 0 69.39L189.3 433.63c19.16 19.16 50.23 19.16 69.39 0L433.63 258.7c19.16-19.17 19.16-50.24 0-69.4zM96 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z\"/></svg>",
9646
+ "viewBox": [
9647
+ "0",
9648
+ "0",
9649
+ "640",
9650
+ "512"
9651
+ ],
9652
+ "width": 640,
9653
+ "height": 512,
9654
+ "path": "M592 192H473.26c12.69 29.59 7.12 65.2-17 89.32L320 417.58V464c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48V240c0-26.51-21.49-48-48-48zM480 376c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm-46.37-186.7L258.7 14.37c-19.16-19.16-50.23-19.16-69.39 0L14.37 189.3c-19.16 19.16-19.16 50.23 0 69.39L189.3 433.63c19.16 19.16 50.23 19.16 69.39 0L433.63 258.7c19.16-19.17 19.16-50.24 0-69.4zM96 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"
9655
+ }
9656
+ }
9657
+ },
9658
+ "dice-five": {
9659
+ "changes": [
9660
+ "5.0.13"
9661
+ ],
9662
+ "ligatures": [],
9663
+ "search": {
9664
+ "terms": [
9665
+ "chance",
9666
+ "gambling",
9667
+ "game",
9668
+ "roll"
9669
+ ]
9670
+ },
9671
+ "styles": [
9672
+ "solid"
9673
+ ],
9674
+ "unicode": "f523",
9675
+ "label": "Dice Five",
9676
+ "svg": {
9677
+ "solid": {
9678
+ "last_modified": 1525967154566,
9679
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"/></svg>",
9680
+ "viewBox": [
9681
+ "0",
9682
+ "0",
9683
+ "448",
9684
+ "512"
9685
+ ],
9686
+ "width": 448,
9687
+ "height": 512,
9688
+ "path": "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"
9689
+ }
9690
+ }
9691
+ },
9692
+ "dice-four": {
9693
+ "changes": [
9694
+ "5.0.13"
9695
+ ],
9696
+ "ligatures": [],
9697
+ "search": {
9698
+ "terms": [
9699
+ "chance",
9700
+ "gambling",
9701
+ "game",
9702
+ "roll"
9703
+ ]
9704
+ },
9705
+ "styles": [
9706
+ "solid"
9707
+ ],
9708
+ "unicode": "f524",
9709
+ "label": "Dice Four",
9710
+ "svg": {
9711
+ "solid": {
9712
+ "last_modified": 1525967154566,
9713
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"/></svg>",
9714
+ "viewBox": [
9715
+ "0",
9716
+ "0",
9717
+ "448",
9718
+ "512"
9719
+ ],
9720
+ "width": 448,
9721
+ "height": 512,
9722
+ "path": "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"
9723
+ }
9724
+ }
9725
+ },
9726
+ "dice-one": {
9727
+ "changes": [
9728
+ "5.0.13"
9729
+ ],
9730
+ "ligatures": [],
9731
+ "search": {
9732
+ "terms": [
9733
+ "chance",
9734
+ "gambling",
9735
+ "game",
9736
+ "roll"
9737
+ ]
9738
+ },
9739
+ "styles": [
9740
+ "solid"
9741
+ ],
9742
+ "unicode": "f525",
9743
+ "label": "Dice One",
9744
+ "svg": {
9745
+ "solid": {
9746
+ "last_modified": 1525967154566,
9747
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM224 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"/></svg>",
9748
+ "viewBox": [
9749
+ "0",
9750
+ "0",
9751
+ "448",
9752
+ "512"
9753
+ ],
9754
+ "width": 448,
9755
+ "height": 512,
9756
+ "path": "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM224 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"
9757
+ }
9758
+ }
9759
+ },
9760
+ "dice-six": {
9761
+ "changes": [
9762
+ "5.0.13"
9763
+ ],
9764
+ "ligatures": [],
9765
+ "search": {
9766
+ "terms": [
9767
+ "chance",
9768
+ "gambling",
9769
+ "game",
9770
+ "roll"
9771
+ ]
9772
+ },
9773
+ "styles": [
9774
+ "solid"
9775
+ ],
9776
+ "unicode": "f526",
9777
+ "label": "Dice Six",
9778
+ "svg": {
9779
+ "solid": {
9780
+ "last_modified": 1529520111654,
9781
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"/></svg>",
9782
+ "viewBox": [
9783
+ "0",
9784
+ "0",
9785
+ "448",
9786
+ "512"
9787
+ ],
9788
+ "width": 448,
9789
+ "height": 512,
9790
+ "path": "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"
9791
+ }
9792
+ }
9793
+ },
9794
+ "dice-three": {
9795
+ "changes": [
9796
+ "5.0.13"
9797
+ ],
9798
+ "ligatures": [],
9799
+ "search": {
9800
+ "terms": [
9801
+ "chance",
9802
+ "gambling",
9803
+ "game",
9804
+ "roll"
9805
+ ]
9806
+ },
9807
+ "styles": [
9808
+ "solid"
9809
+ ],
9810
+ "unicode": "f527",
9811
+ "label": "Dice Three",
9812
+ "svg": {
9813
+ "solid": {
9814
+ "last_modified": 1525967154567,
9815
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"/></svg>",
9816
+ "viewBox": [
9817
+ "0",
9818
+ "0",
9819
+ "448",
9820
+ "512"
9821
+ ],
9822
+ "width": 448,
9823
+ "height": 512,
9824
+ "path": "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"
9825
+ }
9826
+ }
9827
+ },
9828
+ "dice-two": {
9829
+ "changes": [
9830
+ "5.0.13"
9831
+ ],
9832
+ "ligatures": [],
9833
+ "search": {
9834
+ "terms": [
9835
+ "chance",
9836
+ "gambling",
9837
+ "game",
9838
+ "roll"
9839
+ ]
9840
+ },
9841
+ "styles": [
9842
+ "solid"
9843
+ ],
9844
+ "unicode": "f528",
9845
+ "label": "Dice Two",
9846
+ "svg": {
9847
+ "solid": {
9848
+ "last_modified": 1525967154567,
9849
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"/></svg>",
9850
+ "viewBox": [
9851
+ "0",
9852
+ "0",
9853
+ "448",
9854
+ "512"
9855
+ ],
9856
+ "width": 448,
9857
+ "height": 512,
9858
+ "path": "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"
9859
+ }
9860
+ }
9861
+ },
9862
+ "digg": {
9863
+ "changes": [
9864
+ "4.1",
9865
+ "5.0.0"
9866
+ ],
9867
+ "ligatures": [],
9868
+ "search": {
9869
+ "terms": []
9870
+ },
9871
+ "styles": [
9872
+ "brands"
9873
+ ],
9874
+ "unicode": "f1a6",
9875
+ "label": "Digg Logo",
9876
+ "svg": {
9877
+ "brands": {
9878
+ "last_modified": 1500927880000,
9879
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M81.7 172.3H0v174.4h132.7V96h-51v76.3zm0 133.4H50.9v-92.3h30.8v92.3zm297.2-133.4v174.4h81.8v28.5h-81.8V416H512V172.3H378.9zm81.8 133.4h-30.8v-92.3h30.8v92.3zm-235.6 41h82.1v28.5h-82.1V416h133.3V172.3H225.1v174.4zm51.2-133.3h30.8v92.3h-30.8v-92.3zM153.3 96h51.3v51h-51.3V96zm0 76.3h51.3v174.4h-51.3V172.3z\"/></svg>",
9880
+ "viewBox": [
9881
+ "0",
9882
+ "0",
9883
+ "512",
9884
+ "512"
9885
+ ],
9886
+ "width": 512,
9887
+ "height": 512,
9888
+ "path": "M81.7 172.3H0v174.4h132.7V96h-51v76.3zm0 133.4H50.9v-92.3h30.8v92.3zm297.2-133.4v174.4h81.8v28.5h-81.8V416H512V172.3H378.9zm81.8 133.4h-30.8v-92.3h30.8v92.3zm-235.6 41h82.1v28.5h-82.1V416h133.3V172.3H225.1v174.4zm51.2-133.3h30.8v92.3h-30.8v-92.3zM153.3 96h51.3v51h-51.3V96zm0 76.3h51.3v174.4h-51.3V172.3z"
9889
+ }
9890
+ }
9891
+ },
9892
+ "digital-ocean": {
9893
+ "changes": [
9894
+ "5.0.0"
9895
+ ],
9896
+ "ligatures": [],
9897
+ "search": {
9898
+ "terms": []
9899
+ },
9900
+ "styles": [
9901
+ "brands"
9902
+ ],
9903
+ "unicode": "f391",
9904
+ "label": "Digital Ocean",
9905
+ "svg": {
9906
+ "brands": {
9907
+ "last_modified": 1500927880000,
9908
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M256 504v-96.1c101.8 0 180.8-100.9 141.7-208-14.3-39.6-46.1-71.4-85.8-85.7-107.1-38.8-208.1 39.9-208.1 141.7H8C8 93.7 164.9-32.8 335 20.3c74.2 23.3 133.6 82.4 156.6 156.6C544.8 347.2 418.6 504 256 504zm.3-191.4h-95.6v95.6h95.6v-95.6zm-95.6 95.6H87v73.6h73.7v-73.6zM87 346.6H25.4v61.6H87v-61.6z\"/></svg>",
9909
+ "viewBox": [
9910
+ "0",
9911
+ "0",
9912
+ "512",
9913
+ "512"
9914
+ ],
9915
+ "width": 512,
9916
+ "height": 512,
9917
+ "path": "M256 504v-96.1c101.8 0 180.8-100.9 141.7-208-14.3-39.6-46.1-71.4-85.8-85.7-107.1-38.8-208.1 39.9-208.1 141.7H8C8 93.7 164.9-32.8 335 20.3c74.2 23.3 133.6 82.4 156.6 156.6C544.8 347.2 418.6 504 256 504zm.3-191.4h-95.6v95.6h95.6v-95.6zm-95.6 95.6H87v73.6h73.7v-73.6zM87 346.6H25.4v61.6H87v-61.6z"
9918
+ }
9919
+ }
9920
+ },
9921
+ "digital-tachograph": {
9922
+ "changes": [
9923
+ "5.1.0"
9924
+ ],
9925
+ "ligatures": [],
9926
+ "search": {
9927
+ "terms": []
9928
+ },
9929
+ "styles": [
9930
+ "solid"
9931
+ ],
9932
+ "unicode": "f566",
9933
+ "label": "Digital Tachograph",
9934
+ "svg": {
9935
+ "solid": {
9936
+ "last_modified": 1529520111655,
9937
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M608 96H32c-17.67 0-32 14.33-32 32v256c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128c0-17.67-14.33-32-32-32zM304 352c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8zM72 288v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H80c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm40-64c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-48c0-8.84 7.16-16 16-16h208c8.84 0 16 7.16 16 16v48zm272 128c0 4.42-3.58 8-8 8H344c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8z\"/></svg>",
9938
+ "viewBox": [
9939
+ "0",
9940
+ "0",
9941
+ "640",
9942
+ "512"
9943
+ ],
9944
+ "width": 640,
9945
+ "height": 512,
9946
+ "path": "M608 96H32c-17.67 0-32 14.33-32 32v256c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128c0-17.67-14.33-32-32-32zM304 352c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8zM72 288v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H80c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm40-64c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-48c0-8.84 7.16-16 16-16h208c8.84 0 16 7.16 16 16v48zm272 128c0 4.42-3.58 8-8 8H344c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8z"
9947
+ }
9948
+ }
9949
+ },
9950
+ "directions": {
9951
+ "changes": [
9952
+ "5.2.0"
9953
+ ],
9954
+ "ligatures": [],
9955
+ "search": {
9956
+ "terms": []
9957
+ },
9958
+ "styles": [
9959
+ "solid"
9960
+ ],
9961
+ "unicode": "f5eb",
9962
+ "label": "Directions",
9963
+ "svg": {
9964
+ "solid": {
9965
+ "last_modified": 1532362831524,
9966
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M502.61 233.32L278.68 9.39c-12.52-12.52-32.83-12.52-45.36 0L9.39 233.32c-12.52 12.53-12.52 32.83 0 45.36l223.93 223.93c12.52 12.53 32.83 12.53 45.36 0l223.93-223.93c12.52-12.53 12.52-32.83 0-45.36zm-100.98 12.56l-84.21 77.73c-5.12 4.73-13.43 1.1-13.43-5.88V264h-96v64c0 4.42-3.58 8-8 8h-32c-4.42 0-8-3.58-8-8v-80c0-17.67 14.33-32 32-32h112v-53.73c0-6.97 8.3-10.61 13.43-5.88l84.21 77.73c3.43 3.17 3.43 8.59 0 11.76z\"/></svg>",
9967
+ "viewBox": [
9968
+ "0",
9969
+ "0",
9970
+ "512",
9971
+ "512"
9972
+ ],
9973
+ "width": 512,
9974
+ "height": 512,
9975
+ "path": "M502.61 233.32L278.68 9.39c-12.52-12.52-32.83-12.52-45.36 0L9.39 233.32c-12.52 12.53-12.52 32.83 0 45.36l223.93 223.93c12.52 12.53 32.83 12.53 45.36 0l223.93-223.93c12.52-12.53 12.52-32.83 0-45.36zm-100.98 12.56l-84.21 77.73c-5.12 4.73-13.43 1.1-13.43-5.88V264h-96v64c0 4.42-3.58 8-8 8h-32c-4.42 0-8-3.58-8-8v-80c0-17.67 14.33-32 32-32h112v-53.73c0-6.97 8.3-10.61 13.43-5.88l84.21 77.73c3.43 3.17 3.43 8.59 0 11.76z"
9976
+ }
9977
+ }
9978
+ },
9979
+ "discord": {
9980
+ "changes": [
9981
+ "5.0.0"
9982
+ ],
9983
+ "ligatures": [],
9984
+ "search": {
9985
+ "terms": []
9986
+ },
9987
+ "styles": [
9988
+ "brands"
9989
+ ],
9990
+ "unicode": "f392",
9991
+ "label": "Discord",
9992
+ "svg": {
9993
+ "brands": {
9994
+ "last_modified": 1511282001102,
9995
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M297.216 243.2c0 15.616-11.52 28.416-26.112 28.416-14.336 0-26.112-12.8-26.112-28.416s11.52-28.416 26.112-28.416c14.592 0 26.112 12.8 26.112 28.416zm-119.552-28.416c-14.592 0-26.112 12.8-26.112 28.416s11.776 28.416 26.112 28.416c14.592 0 26.112-12.8 26.112-28.416.256-15.616-11.52-28.416-26.112-28.416zM448 52.736V512c-64.494-56.994-43.868-38.128-118.784-107.776l13.568 47.36H52.48C23.552 451.584 0 428.032 0 398.848V52.736C0 23.552 23.552 0 52.48 0h343.04C424.448 0 448 23.552 448 52.736zm-72.96 242.688c0-82.432-36.864-149.248-36.864-149.248-36.864-27.648-71.936-26.88-71.936-26.88l-3.584 4.096c43.52 13.312 63.744 32.512 63.744 32.512-60.811-33.329-132.244-33.335-191.232-7.424-9.472 4.352-15.104 7.424-15.104 7.424s21.248-20.224 67.328-33.536l-2.56-3.072s-35.072-.768-71.936 26.88c0 0-36.864 66.816-36.864 149.248 0 0 21.504 37.12 78.08 38.912 0 0 9.472-11.52 17.152-21.248-32.512-9.728-44.8-30.208-44.8-30.208 3.766 2.636 9.976 6.053 10.496 6.4 43.21 24.198 104.588 32.126 159.744 8.96 8.96-3.328 18.944-8.192 29.44-15.104 0 0-12.8 20.992-46.336 30.464 7.68 9.728 16.896 20.736 16.896 20.736 56.576-1.792 78.336-38.912 78.336-38.912z\"/></svg>",
9996
+ "viewBox": [
9997
+ "0",
9998
+ "0",
9999
+ "448",
10000
+ "512"
10001
+ ],
10002
+ "width": 448,
10003
+ "height": 512,
10004
+ "path": "M297.216 243.2c0 15.616-11.52 28.416-26.112 28.416-14.336 0-26.112-12.8-26.112-28.416s11.52-28.416 26.112-28.416c14.592 0 26.112 12.8 26.112 28.416zm-119.552-28.416c-14.592 0-26.112 12.8-26.112 28.416s11.776 28.416 26.112 28.416c14.592 0 26.112-12.8 26.112-28.416.256-15.616-11.52-28.416-26.112-28.416zM448 52.736V512c-64.494-56.994-43.868-38.128-118.784-107.776l13.568 47.36H52.48C23.552 451.584 0 428.032 0 398.848V52.736C0 23.552 23.552 0 52.48 0h343.04C424.448 0 448 23.552 448 52.736zm-72.96 242.688c0-82.432-36.864-149.248-36.864-149.248-36.864-27.648-71.936-26.88-71.936-26.88l-3.584 4.096c43.52 13.312 63.744 32.512 63.744 32.512-60.811-33.329-132.244-33.335-191.232-7.424-9.472 4.352-15.104 7.424-15.104 7.424s21.248-20.224 67.328-33.536l-2.56-3.072s-35.072-.768-71.936 26.88c0 0-36.864 66.816-36.864 149.248 0 0 21.504 37.12 78.08 38.912 0 0 9.472-11.52 17.152-21.248-32.512-9.728-44.8-30.208-44.8-30.208 3.766 2.636 9.976 6.053 10.496 6.4 43.21 24.198 104.588 32.126 159.744 8.96 8.96-3.328 18.944-8.192 29.44-15.104 0 0-12.8 20.992-46.336 30.464 7.68 9.728 16.896 20.736 16.896 20.736 56.576-1.792 78.336-38.912 78.336-38.912z"
10005
+ }
10006
+ }
10007
+ },
10008
+ "discourse": {
10009
+ "changes": [
10010
+ "5.0.0",
10011
+ "5.0.3"
10012
+ ],
10013
+ "ligatures": [],
10014
+ "search": {
10015
+ "terms": []
10016
+ },
10017
+ "styles": [
10018
+ "brands"
10019
+ ],
10020
+ "unicode": "f393",
10021
+ "label": "Discourse",
10022
+ "svg": {
10023
+ "brands": {
10024
+ "last_modified": 1521653821383,
10025
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M225.9 32C103.3 32 0 130.5 0 252.1 0 256 .1 480 .1 480l225.8-.2c122.7 0 222.1-102.3 222.1-223.9C448 134.3 348.6 32 225.9 32zM224 384c-19.4 0-37.9-4.3-54.4-12.1L88.5 392l22.9-75c-9.8-18.1-15.4-38.9-15.4-61 0-70.7 57.3-128 128-128s128 57.3 128 128-57.3 128-128 128z\"/></svg>",
10026
+ "viewBox": [
10027
+ "0",
10028
+ "0",
10029
+ "448",
10030
+ "512"
10031
+ ],
10032
+ "width": 448,
10033
+ "height": 512,
10034
+ "path": "M225.9 32C103.3 32 0 130.5 0 252.1 0 256 .1 480 .1 480l225.8-.2c122.7 0 222.1-102.3 222.1-223.9C448 134.3 348.6 32 225.9 32zM224 384c-19.4 0-37.9-4.3-54.4-12.1L88.5 392l22.9-75c-9.8-18.1-15.4-38.9-15.4-61 0-70.7 57.3-128 128-128s128 57.3 128 128-57.3 128-128 128z"
10035
+ }
10036
+ }
10037
+ },
10038
+ "divide": {
10039
+ "changes": [
10040
+ "5.0.13"
10041
+ ],
10042
+ "ligatures": [],
10043
+ "search": {
10044
+ "terms": []
10045
+ },
10046
+ "styles": [
10047
+ "solid"
10048
+ ],
10049
+ "unicode": "f529",
10050
+ "label": "Divide",
10051
+ "svg": {
10052
+ "solid": {
10053
+ "last_modified": 1525967154567,
10054
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M224 352c-35.35 0-64 28.65-64 64s28.65 64 64 64 64-28.65 64-64-28.65-64-64-64zm0-192c35.35 0 64-28.65 64-64s-28.65-64-64-64-64 28.65-64 64 28.65 64 64 64zm192 48H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"/></svg>",
10055
+ "viewBox": [
10056
+ "0",
10057
+ "0",
10058
+ "448",
10059
+ "512"
10060
+ ],
10061
+ "width": 448,
10062
+ "height": 512,
10063
+ "path": "M224 352c-35.35 0-64 28.65-64 64s28.65 64 64 64 64-28.65 64-64-28.65-64-64-64zm0-192c35.35 0 64-28.65 64-64s-28.65-64-64-64-64 28.65-64 64 28.65 64 64 64zm192 48H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"
10064
+ }
10065
+ }
10066
+ },
10067
+ "dizzy": {
10068
+ "changes": [
10069
+ "5.1.0"
10070
+ ],
10071
+ "ligatures": [],
10072
+ "search": {
10073
+ "terms": [
10074
+ "dazed",
10075
+ "disapprove",
10076
+ "emoticon",
10077
+ "face"
10078
+ ]
10079
+ },
10080
+ "styles": [
10081
+ "solid",
10082
+ "regular"
10083
+ ],
10084
+ "unicode": "f567",
10085
+ "label": "Dizzy Face",
10086
+ "svg": {
10087
+ "solid": {
10088
+ "last_modified": 1529520111656,
10089
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 496 512\"><path d=\"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-96 206.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L174.6 192l28.7 28.7c15.2 15.2-7.9 37.4-22.6 22.6L152 214.6zM248 416c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm147.3-195.3c15.2 15.2-7.9 37.4-22.6 22.6L344 214.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L366.6 192l28.7 28.7z\"/></svg>",
10090
+ "viewBox": [
10091
+ "0",
10092
+ "0",
10093
+ "496",
10094
+ "512"
10095
+ ],
10096
+ "width": 496,
10097
+ "height": 512,
10098
+ "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-96 206.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L174.6 192l28.7 28.7c15.2 15.2-7.9 37.4-22.6 22.6L152 214.6zM248 416c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm147.3-195.3c15.2 15.2-7.9 37.4-22.6 22.6L344 214.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L366.6 192l28.7 28.7z"
10099
+ },
10100
+ "regular": {
10101
+ "last_modified": 1529520111613,
10102
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 496 512\"><path d=\"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-33.8-217.9c7.8-7.8 7.8-20.5 0-28.3L196.3 192l17.9-17.9c7.8-7.8 7.8-20.5 0-28.3-7.8-7.8-20.5-7.8-28.3 0L168 163.7l-17.8-17.8c-7.8-7.8-20.5-7.8-28.3 0-7.8 7.8-7.8 20.5 0 28.3l17.9 17.9-17.9 17.9c-7.8 7.8-7.8 20.5 0 28.3 7.8 7.8 20.5 7.8 28.3 0l17.8-17.8 17.8 17.8c7.9 7.7 20.5 7.7 28.4-.2zm160-92.2c-7.8-7.8-20.5-7.8-28.3 0L328 163.7l-17.8-17.8c-7.8-7.8-20.5-7.8-28.3 0-7.8 7.8-7.8 20.5 0 28.3l17.9 17.9-17.9 17.9c-7.8 7.8-7.8 20.5 0 28.3 7.8 7.8 20.5 7.8 28.3 0l17.8-17.8 17.8 17.8c7.8 7.8 20.5 7.8 28.3 0 7.8-7.8 7.8-20.5 0-28.3l-17.8-18 17.9-17.9c7.7-7.8 7.7-20.4 0-28.2zM248 272c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64z\"/></svg>",
10103
+ "viewBox": [
10104
+ "0",
10105
+ "0",
10106
+ "496",
10107
+ "512"
10108
+ ],
10109
+ "width": 496,
10110
+ "height": 512,
10111
+ "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-33.8-217.9c7.8-7.8 7.8-20.5 0-28.3L196.3 192l17.9-17.9c7.8-7.8 7.8-20.5 0-28.3-7.8-7.8-20.5-7.8-28.3 0L168 163.7l-17.8-17.8c-7.8-7.8-20.5-7.8-28.3 0-7.8 7.8-7.8 20.5 0 28.3l17.9 17.9-17.9 17.9c-7.8 7.8-7.8 20.5 0 28.3 7.8 7.8 20.5 7.8 28.3 0l17.8-17.8 17.8 17.8c7.9 7.7 20.5 7.7 28.4-.2zm160-92.2c-7.8-7.8-20.5-7.8-28.3 0L328 163.7l-17.8-17.8c-7.8-7.8-20.5-7.8-28.3 0-7.8 7.8-7.8 20.5 0 28.3l17.9 17.9-17.9 17.9c-7.8 7.8-7.8 20.5 0 28.3 7.8 7.8 20.5 7.8 28.3 0l17.8-17.8 17.8 17.8c7.8 7.8 20.5 7.8 28.3 0 7.8-7.8 7.8-20.5 0-28.3l-17.8-18 17.9-17.9c7.7-7.8 7.7-20.4 0-28.2zM248 272c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64z"
10112
+ }
10113
+ }
10114
+ },
10115
+ "dna": {
10116
+ "changes": [
10117
+ "5.0.7",
10118
+ "5.0.10"
10119
+ ],
10120
+ "ligatures": [],
10121
+ "search": {
10122
+ "terms": [
10123
+ "double helix",
10124
+ "helix"
10125
+ ]
10126
+ },
10127
+ "styles": [
10128
+ "solid"
10129
+ ],
10130
+ "unicode": "f471",
10131
+ "label": "DNA",
10132
+ "svg": {
10133
+ "solid": {
10134
+ "last_modified": 1523653480526,
10135
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M.1 494.1c-1.1 9.5 6.3 17.8 15.9 17.8l32.3.1c8.1 0 14.9-5.9 16-13.9.7-4.9 1.8-11.1 3.4-18.1H380c1.6 6.9 2.9 13.2 3.5 18.1 1.1 8 7.9 14 16 13.9l32.3-.1c9.6 0 17.1-8.3 15.9-17.8-4.6-37.9-25.6-129-118.9-207.7-17.6 12.4-37.1 24.2-58.5 35.4 6.2 4.6 11.4 9.4 17 14.2H159.7c21.3-18.1 47-35.6 78.7-51.4C410.5 199.1 442.1 65.8 447.9 17.9 449 8.4 441.6.1 432 .1L399.6 0c-8.1 0-14.9 5.9-16 13.9-.7 4.9-1.8 11.1-3.4 18.1H67.8c-1.6-7-2.7-13.1-3.4-18.1-1.1-8-7.9-14-16-13.9L16.1.1C6.5.1-1 8.4.1 17.9 5.3 60.8 31.4 171.8 160 256 31.5 340.2 5.3 451.2.1 494.1zM224 219.6c-25.1-13.7-46.4-28.4-64.3-43.6h128.5c-17.8 15.2-39.1 30-64.2 43.6zM355.1 96c-5.8 10.4-12.8 21.1-21 32H114c-8.3-10.9-15.3-21.6-21-32h262.1zM92.9 416c5.8-10.4 12.8-21.1 21-32h219.4c8.3 10.9 15.4 21.6 21.2 32H92.9z\"/></svg>",
10136
+ "viewBox": [
10137
+ "0",
10138
+ "0",
10139
+ "448",
10140
+ "512"
10141
+ ],
10142
+ "width": 448,
10143
+ "height": 512,
10144
+ "path": "M.1 494.1c-1.1 9.5 6.3 17.8 15.9 17.8l32.3.1c8.1 0 14.9-5.9 16-13.9.7-4.9 1.8-11.1 3.4-18.1H380c1.6 6.9 2.9 13.2 3.5 18.1 1.1 8 7.9 14 16 13.9l32.3-.1c9.6 0 17.1-8.3 15.9-17.8-4.6-37.9-25.6-129-118.9-207.7-17.6 12.4-37.1 24.2-58.5 35.4 6.2 4.6 11.4 9.4 17 14.2H159.7c21.3-18.1 47-35.6 78.7-51.4C410.5 199.1 442.1 65.8 447.9 17.9 449 8.4 441.6.1 432 .1L399.6 0c-8.1 0-14.9 5.9-16 13.9-.7 4.9-1.8 11.1-3.4 18.1H67.8c-1.6-7-2.7-13.1-3.4-18.1-1.1-8-7.9-14-16-13.9L16.1.1C6.5.1-1 8.4.1 17.9 5.3 60.8 31.4 171.8 160 256 31.5 340.2 5.3 451.2.1 494.1zM224 219.6c-25.1-13.7-46.4-28.4-64.3-43.6h128.5c-17.8 15.2-39.1 30-64.2 43.6zM355.1 96c-5.8 10.4-12.8 21.1-21 32H114c-8.3-10.9-15.3-21.6-21-32h262.1zM92.9 416c5.8-10.4 12.8-21.1 21-32h219.4c8.3 10.9 15.4 21.6 21.2 32H92.9z"
10145
+ }
10146
+ }
10147
+ },
10148
+ "dochub": {
10149
+ "changes": [
10150
+ "5.0.0"
10151
+ ],
10152
+ "ligatures": [],
10153
+ "search": {
10154
+ "terms": []
10155
+ },
10156
+ "styles": [
10157
+ "brands"
10158
+ ],
10159
+ "unicode": "f394",
10160
+ "label": "DocHub",
10161
+ "svg": {
10162
+ "brands": {
10163
+ "last_modified": 1503937790000,
10164
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 416 512\"><path d=\"M397.9 160H256V19.6L397.9 160zM304 192v130c0 66.8-36.5 100.1-113.3 100.1H96V84.8h94.7c12 0 23.1.8 33.1 2.5v-84C212.9 1.1 201.4 0 189.2 0H0v512h189.2C329.7 512 400 447.4 400 318.1V192h-96z\"/></svg>",
10165
+ "viewBox": [
10166
+ "0",
10167
+ "0",
10168
+ "416",
10169
+ "512"
10170
+ ],
10171
+ "width": 416,
10172
+ "height": 512,
10173
+ "path": "M397.9 160H256V19.6L397.9 160zM304 192v130c0 66.8-36.5 100.1-113.3 100.1H96V84.8h94.7c12 0 23.1.8 33.1 2.5v-84C212.9 1.1 201.4 0 189.2 0H0v512h189.2C329.7 512 400 447.4 400 318.1V192h-96z"
10174
+ }
10175
+ }
10176
+ },
10177
+ "docker": {
10178
+ "changes": [
10179
+ "5.0.0"
10180
+ ],
10181
+ "ligatures": [],
10182
+ "search": {
10183
+ "terms": []
10184
+ },
10185
+ "styles": [
10186
+ "brands"
10187
+ ],
10188
+ "unicode": "f395",
10189
+ "label": "Docker",
10190
+ "svg": {
10191
+ "brands": {
10192
+ "last_modified": 1500927880000,
10193
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M349.9 236.3h-66.1v-59.4h66.1v59.4zm0-204.3h-66.1v60.7h66.1V32zm78.2 144.8H362v59.4h66.1v-59.4zm-156.3-72.1h-66.1v60.1h66.1v-60.1zm78.1 0h-66.1v60.1h66.1v-60.1zm276.8 100c-14.4-9.7-47.6-13.2-73.1-8.4-3.3-24-16.7-44.9-41.1-63.7l-14-9.3-9.3 14c-18.4 27.8-23.4 73.6-3.7 103.8-8.7 4.7-25.8 11.1-48.4 10.7H2.4c-8.7 50.8 5.8 116.8 44 162.1 37.1 43.9 92.7 66.2 165.4 66.2 157.4 0 273.9-72.5 328.4-204.2 21.4.4 67.6.1 91.3-45.2 1.5-2.5 6.6-13.2 8.5-17.1l-13.3-8.9zm-511.1-27.9h-66v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm-78.1-72.1h-66.1v60.1h66.1v-60.1z\"/></svg>",
10194
+ "viewBox": [
10195
+ "0",
10196
+ "0",
10197
+ "640",
10198
+ "512"
10199
+ ],
10200
+ "width": 640,
10201
+ "height": 512,
10202
+ "path": "M349.9 236.3h-66.1v-59.4h66.1v59.4zm0-204.3h-66.1v60.7h66.1V32zm78.2 144.8H362v59.4h66.1v-59.4zm-156.3-72.1h-66.1v60.1h66.1v-60.1zm78.1 0h-66.1v60.1h66.1v-60.1zm276.8 100c-14.4-9.7-47.6-13.2-73.1-8.4-3.3-24-16.7-44.9-41.1-63.7l-14-9.3-9.3 14c-18.4 27.8-23.4 73.6-3.7 103.8-8.7 4.7-25.8 11.1-48.4 10.7H2.4c-8.7 50.8 5.8 116.8 44 162.1 37.1 43.9 92.7 66.2 165.4 66.2 157.4 0 273.9-72.5 328.4-204.2 21.4.4 67.6.1 91.3-45.2 1.5-2.5 6.6-13.2 8.5-17.1l-13.3-8.9zm-511.1-27.9h-66v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm-78.1-72.1h-66.1v60.1h66.1v-60.1z"
10203
+ }
10204
+ }
10205
+ },
10206
+ "dollar-sign": {
10207
+ "changes": [
10208
+ "3.2",
10209
+ "5.0.0",
10210
+ "5.0.9"
10211
+ ],
10212
+ "ligatures": [],
10213
+ "search": {
10214
+ "terms": [
10215
+ "$",
10216
+ "dollar-sign",
10217
+ "money",
10218
+ "price",
10219
+ "usd"
10220
+ ]
10221
+ },
10222
+ "styles": [
10223
+ "solid"
10224
+ ],
10225
+ "unicode": "f155",
10226
+ "label": "Dollar Sign",
10227
+ "svg": {
10228
+ "solid": {
10229
+ "last_modified": 1522083406016,
10230
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 288 512\"><path d=\"M209.2 233.4l-108-31.6C88.7 198.2 80 186.5 80 173.5c0-16.3 13.2-29.5 29.5-29.5h66.3c12.2 0 24.2 3.7 34.2 10.5 6.1 4.1 14.3 3.1 19.5-2l34.8-34c7.1-6.9 6.1-18.4-1.8-24.5C238 74.8 207.4 64.1 176 64V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48h-2.5C45.8 64-5.4 118.7.5 183.6c4.2 46.1 39.4 83.6 83.8 96.6l102.5 30c12.5 3.7 21.2 15.3 21.2 28.3 0 16.3-13.2 29.5-29.5 29.5h-66.3C100 368 88 364.3 78 357.5c-6.1-4.1-14.3-3.1-19.5 2l-34.8 34c-7.1 6.9-6.1 18.4 1.8 24.5 24.5 19.2 55.1 29.9 86.5 30v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48.2c46.6-.9 90.3-28.6 105.7-72.7 21.5-61.6-14.6-124.8-72.5-141.7z\"/></svg>",
10231
+ "viewBox": [
10232
+ "0",
10233
+ "0",
10234
+ "288",
10235
+ "512"
10236
+ ],
10237
+ "width": 288,
10238
+ "height": 512,
10239
+ "path": "M209.2 233.4l-108-31.6C88.7 198.2 80 186.5 80 173.5c0-16.3 13.2-29.5 29.5-29.5h66.3c12.2 0 24.2 3.7 34.2 10.5 6.1 4.1 14.3 3.1 19.5-2l34.8-34c7.1-6.9 6.1-18.4-1.8-24.5C238 74.8 207.4 64.1 176 64V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48h-2.5C45.8 64-5.4 118.7.5 183.6c4.2 46.1 39.4 83.6 83.8 96.6l102.5 30c12.5 3.7 21.2 15.3 21.2 28.3 0 16.3-13.2 29.5-29.5 29.5h-66.3C100 368 88 364.3 78 357.5c-6.1-4.1-14.3-3.1-19.5 2l-34.8 34c-7.1 6.9-6.1 18.4 1.8 24.5 24.5 19.2 55.1 29.9 86.5 30v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48.2c46.6-.9 90.3-28.6 105.7-72.7 21.5-61.6-14.6-124.8-72.5-141.7z"
10240
+ }
10241
+ }
10242
+ },
10243
+ "dolly": {
10244
+ "changes": [
10245
+ "5.0.7"
10246
+ ],
10247
+ "ligatures": [],
10248
+ "search": {
10249
+ "terms": []
10250
+ },
10251
+ "styles": [
10252
+ "solid"
10253
+ ],
10254
+ "unicode": "f472",
10255
+ "label": "Dolly",
10256
+ "svg": {
10257
+ "solid": {
10258
+ "last_modified": 1521653821449,
10259
+ "raw": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M294.2 277.7c18 5 34.7 13.4 49.5 24.7l161.5-53.8c8.4-2.8 12.9-11.9 10.1-20.2L454.9 47.2c-2.8-8.4-11.9-12.9-20.2-10.1l-61.1 20.4 33.1 99.4L346 177l-33.1-99.4-61.6 20.5c-8.4 2.8-12.9 11.9-10.1 20.2l53 159.4zm281 48.7L565 296c-2.8-8.4-11.9-12.9-20.2-10.1l-213.5 71.2c-17.2-22-43.6-36.4-73.5-37L158.4 21.9C154 8.8 141.8 0 128 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h88.9l92.2 276.7c-26.1 20.4-41.7 53.6-36 90.5 6.1 39.4 37.9 72.3 77.3 79.2 60.2 10.7 112.3-34.8 113.4-92.6l213.3-71.2c8.3-2.8 12.9-11.8 10.1-20.2zM256 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z\"/></svg>",
10260
+ "viewBox": [
10261
+ "0",
10262
+ "0",
10263
+ "576",
10264
+ "512"
10265
+ ],
10266
+ "width": 576,
10267
+ "height": 512,
10268
+ "path": "M294.2 277.7c18 5 34.7 13.4 49.5 24.7l161.5-53.8c8.4-2.8 12.9-11.9 10.1-20.2L454.9 47.2c-2.8-8.4-11.9-12.9-20.2-10.1l-61.1 20.4 33.1 99.4L346 177l-33.1-99.4-61.6 20.5c-8.4 2.8-12.9 11.9-10.1 20.2l53 159.4zm281 48.7L565 296c-2.8-