Changeset 2047328
- Timestamp:
- 03/09/2019 10:21:26 PM (7 years ago)
- Location:
- cmb2-field-type-font-awesome/trunk
- Files:
-
- 4 edited
-
README.md (modified) (3 diffs)
-
iconselect.php (modified) (3 diffs)
-
predefined-array-fontawesome.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cmb2-field-type-font-awesome/trunk/README.md
r1909695 r2047328 7 7 You can use as field type in CMB2 function file. Add a new field, set type to `faiconselect` and add font awesome icons to options (look Usage for examples). Plugin uses [jQuery Font Picker](https://codeb.it/fonticonpicker/) for creating a icon selector. 8 8 9 Plugin uses Font Awesome 4.7.0 for icons and selector. 9 Plugin capable to use Font Awesome 4.7.0 or 5.7.2 (only Solid and Brands icons) for icons and selector. 10 11 ### WordPress Plugin 12 You can download this plugin also here : [CMB2 Field Type: Font Awesome](https://wordpress.org/plugins/cmb2-field-type-font-awesome/) 13 or you can search as `CMB2 Field Type: Font Awesome` on your plugin install page. 10 14 11 15 ### ScreenShot 12 16  17 [](https://app.fossa.io/projects/git%2Bgithub.com%2Fserkanalgur%2Fcmb2-field-faiconselect?ref=badge_shield) 13 18 14 19 ## Usage … … 33 38 ) ); 34 39 ``` 35 After that jQuery Font Picker plugin handle the select. 36 40 After that jQuery Font Picker plugin handle the select. 41 37 42 Aslo you can use predefined array for Font Awesome. I created a function with this addon to use in `options_cb`. Function called as `returnRayFaPre`. 38 43 39 44 ```php 40 45 $cmb->add_field( array( … … 45 50 'options_cb' => 'returnRayFaPre' 46 51 ) ); 52 ``` 53 54 ## Usage From Template Folder 55 56 Download and place folder into your theme folder. You need to create a function for fixing asset path issue. Fore example; 57 58 ```php 59 // Fix for $asset_path issue 60 function asset_path_faiconselect() { 61 return get_template_directory_uri() . '/path/to/folder'; //Change to correct path. 62 } 63 64 add_filter( 'sa_cmb2_field_faiconselect_asset_path', 'asset_path_faiconselect' ); 65 66 //Now call faiconselect 67 require get_template_directory() . '/path/to/folder/iconselect.php'; //Again Change to correct path. 68 ``` 69 70 This function solve assetpath issue for including javascript and css files. 71 72 ## Usage With Font Awesome 5 73 74 You need two different options for activate Font Awesome 5. You will need to add an attribute. Also there is a function for predefined list of font-awesome :smile: 75 76 #### Standart Way 77 78 ```php 79 $cmb->add_field( array( 80 'name' => __( 'Select Font Awesome Icon', 'cmb' ), 81 'id' => $prefix . 'iconselect', 82 'desc' => 'Select Font Awesome icon', 83 'type' => 'faiconselect', 84 'options' => array( 85 'fab fa-facebook' => 'fa fa-facebook', 86 'fab fa-500px' => 'fa fa-500px', 87 'fab fa-twitter' => 'fa fa-twitter', 88 'fas fa-address-book' => 'fas fa-address-book' 89 ), 90 'attributes' => array( 91 'faver' => 5 92 ) 93 ) ); 47 94 ``` 48 That's All for now :) Contributions are welcome 49 95 96 This attribute needed for selecting right style files. If you don't add these attribute, you can not see icons. 97 98 #### Predefined Way 99 100 ```php 101 $cmb->add_field( array( 102 'name' => __( 'Select Font Awesome Icon', 'cmb' ), 103 'id' => $prefix . 'iconselect', 104 'desc' => 'Select Font Awesome icon', 105 'type' => 'faiconselect', 106 'options_cb' => 'returnRayFapsa', 107 'attributes' => array( 108 'faver' => 5 109 ) 110 ) ); 111 ``` 112 113 As you can see we define an `options_cb` function named `returnRayFapsa`. This function create an array for options with `solid` and `brands` icons. Also you need `faver` attribute for Font Awesome 5. 114 115 That's All for now :smile: Contributions are welcome 116 117 ## License 118 [](https://app.fossa.io/projects/git%2Bgithub.com%2Fserkanalgur%2Fcmb2-field-faiconselect?ref=badge_large) -
cmb2-field-type-font-awesome/trunk/iconselect.php
r2023728 r2047328 1 1 <?php 2 2 3 /* 3 4 Plugin Name: CMB2 Field Type: Font Awesome … … 5 6 GitHub Plugin URI: https://github.com/serkanalgur/cmb2-field-faiconselect 6 7 Description: Font Awesome icon selector for CMB2 7 Version: 1. 28 Version: 1.3-beta 8 9 Author: Serkan Algur 9 10 Author URI: https://wpadami.com/ 10 License: GPLv 2+11 License: GPLv3 11 12 */ 12 13 13 14 /** 14 15 * Class IConSelectFA 15 */16 */ 16 17 17 class CMBS_SerkanA_Plugin_IConSelectFA 18 { 18 class CMBS_SerkanA_Plugin_IConSelectFA { 19 19 20 const VERSION = '1.2';21 20 22 public function __construct() 23 { 21 const VERSION = '1.3-beta'; 22 23 public function __construct() { 24 24 add_filter( 'cmb2_render_faiconselect', array( $this, 'render_faiconselect' ), 10, 5 ); 25 add_filter( 'style_loader_tag', array( $this, 'sa_add_font_awesome_5_cdn_attributes' ), 10, 2 ); 25 26 } 26 27 27 public function render_faiconselect( $field, $field_escaped_value, $field_object_id, $field_object_type, $field_type_object){28 $this->Sesetup_my_cssjs( );28 public function render_faiconselect( $field, $field_escaped_value, $field_object_id, $field_object_type, $field_type_object ) { 29 $this->Sesetup_my_cssjs( $field ); 29 30 30 31 if ( version_compare( CMB2_VERSION, '2.2.2', '>=' ) ) { … … 32 33 } 33 34 34 echo $field_type_object->select( array( 35 'class' => 'iconselectfa', 36 'desc' => $field_type_object->_desc( true ), 37 'options' => '<option></option>' . $field_type_object->concat_items(), 38 ) ); 35 echo $field_type_object->select( 36 array( 37 'class' => 'iconselectfa', 38 'desc' => $field_type_object->_desc( true ), 39 'options' => '<option></option>' . $field_type_object->concat_items(), 40 ) 41 ); 39 42 40 43 } 41 44 42 public function Sesetup_my_cssjs( ){43 $asset_path = apply_filters( 'sa_cmb2_field_faiconselect_asset_path', plugins_url( '', __FILE__ ) );45 public function Sesetup_my_cssjs( $field ) { 46 $asset_path = apply_filters( 'sa_cmb2_field_faiconselect_asset_path', plugins_url( '', __FILE__ ) ); 44 47 48 $font_args = $field->args( 'attributes', 'fatype' ); 49 $font_awesome_ver = $field->args( 'attributes', 'faver' ); 45 50 46 wp_enqueue_style( 'fontawesomeiselect', $asset_path.'/css/faws/css/font-awesome.min.css', array('jqueryfontselector'), self::VERSION ); 47 wp_enqueue_style( 'jqueryfontselectormain', $asset_path.'/css/css/base/jquery.fonticonpicker.min.css', array(), self::VERSION ); 48 wp_enqueue_style( 'jqueryfontselector', $asset_path.'/css/css/themes/grey-theme/jquery.fonticonpicker.grey.min.css', array(), self::VERSION ); 49 wp_enqueue_script('jqueryfontselector', $asset_path.'/js/jquery.fonticonpicker.min.js', array('jquery'), self::VERSION, true); 50 wp_enqueue_script('mainjsiselect', $asset_path.'/js/main.js', array('jqueryfontselector'), self::VERSION, true); 51 if ( $font_awesome_ver && $font_awesome_ver === 5 ) { 52 wp_enqueue_style( 'fontawesome5', 'https://use.fontawesome.com/releases/v5.7.2/css/fontawesome.css', array( 'jqueryfontselector' ), self::VERSION, 'all' ); 53 wp_add_inline_style( 'fontawesome5', '.fip-icons-container i.fas{font-family: "Font Awesome 5 Free" !important;} .selected-icon i.fas{font-family: "Font Awesome 5 Free" !important;}' ); 54 wp_enqueue_style( 'fontawesome5solid', 'https://use.fontawesome.com/releases/v5.7.2/css/solid.css', array( 'jqueryfontselector' ), self::VERSION, 'all' ); 55 wp_enqueue_style( 'fontawesome5brands', 'https://use.fontawesome.com/releases/v5.7.2/css/brands.css', array( 'jqueryfontselector' ), self::VERSION, 'all' ); 56 wp_add_inline_style( 'fontawesome5brands', '.fip-icons-container i.fab{font-family: "Font Awesome 5 Brands" !important;} .selected-icon i.fab{font-family: "Font Awesome 5 Brands" !important;}' ); 57 } else { 58 wp_enqueue_style( 'fontawesomeiselect', $asset_path . '/css/faws/css/font-awesome.min.css', array( 'jqueryfontselector' ), self::VERSION ); 59 } 60 wp_enqueue_style( 'jqueryfontselectormain', $asset_path . '/css/css/base/jquery.fonticonpicker.min.css', array(), self::VERSION ); 61 wp_enqueue_style( 'jqueryfontselector', $asset_path . '/css/css/themes/grey-theme/jquery.fonticonpicker.grey.min.css', array(), self::VERSION ); 62 wp_enqueue_script( 'jqueryfontselector', $asset_path . '/js/jquery.fonticonpicker.min.js', array( 'jquery' ), self::VERSION, true ); 63 wp_enqueue_script( 'mainjsiselect', $asset_path . '/js/main.js', array( 'jqueryfontselector' ), self::VERSION, true ); 64 } 65 66 public function sa_add_font_awesome_5_cdn_attributes( $html, $handle ) { 67 if ( 'fontawesome5' === $handle ) { 68 return str_replace( "media='all'", "media='all' integrity='sha384-4aon80D8rXCGx9ayDt85LbyUHeMWd3UiBaWliBlJ53yzm9hqN21A+o1pqoyK04h+' crossorigin='anonymous'", $html ); 69 } elseif ( 'fontawesome5solid' === $handle ) { 70 return str_replace( "media='all'", "media='all' integrity='sha384-r/k8YTFqmlOaqRkZuSiE9trsrDXkh07mRaoGBMoDcmA58OHILZPsk29i2BsFng1B' crossorigin='anonymous'", $html ); 71 } elseif ( 'fontawesome5brands' === $handle ) { 72 return str_replace( "media='all'", "media='all' integrity='sha384-BKw0P+CQz9xmby+uplDwp82Py8x1xtYPK3ORn/ZSoe6Dk3ETP59WCDnX+fI1XCKK' crossorigin='anonymous'", $html ); 73 } 74 75 return $html; 51 76 } 52 77 } 53 78 54 function returnRayFaPre(){55 include('predefined-array-fontawesome.php');56 return $fontAwesome;57 }79 function returnRayFaPre() { 80 include 'predefined-array-fontawesome.php'; 81 return $fontAwesome; 82 } 58 83 59 $iconSelectF = new CMBS_SerkanA_Plugin_IConSelectFA(); 84 function returnRayFapsa() { 85 include 'predefined-array-fontawesome.php'; 86 87 $fa5a = array_combine( $fa5all, $fa5all ); 88 89 return $fa5a; 90 } 91 92 93 new CMBS_SerkanA_Plugin_IConSelectFA(); -
cmb2-field-type-font-awesome/trunk/predefined-array-fontawesome.php
r1909695 r2047328 1 1 <?php 2 $fontAwesome = array (3 'fa fa-glass'=> 'fa fa-glass',4 'fa fa-music'=> 'fa fa-music',5 'fa fa-search'=> 'fa fa-search',6 'fa fa-envelope-o'=> 'fa fa-envelope-o',7 'fa fa-heart'=> 'fa fa-heart',8 'fa fa-star'=> 'fa fa-star',9 'fa fa-star-o'=> 'fa fa-star-o',10 'fa fa-user'=> 'fa fa-user',11 'fa fa-film'=> 'fa fa-film',12 'fa fa-th-large'=> 'fa fa-th-large',13 'fa fa-th'=> 'fa fa-th',14 'fa fa-th-list'=> 'fa fa-th-list',15 'fa fa-check'=> 'fa fa-check',16 'fa fa-times'=> 'fa fa-times',17 'fa fa-search-plus'=> 'fa fa-search-plus',18 'fa fa-search-minus'=> 'fa fa-search-minus',19 'fa fa-power-off'=> 'fa fa-power-off',20 'fa fa-signal'=> 'fa fa-signal',21 'fa fa-cog'=> 'fa fa-cog',22 'fa fa-trash-o'=> 'fa fa-trash-o',23 'fa fa-home'=> 'fa fa-home',24 'fa fa-file-o'=> 'fa fa-file-o',25 'fa fa-clock-o'=> 'fa fa-clock-o',26 'fa fa-road'=> 'fa fa-road',27 'fa fa-download'=> 'fa fa-download',28 'fa fa-arrow-circle-o-down'=> 'fa fa-arrow-circle-o-down',29 'fa fa-arrow-circle-o-up'=> 'fa fa-arrow-circle-o-up',30 'fa fa-inbox'=> 'fa fa-inbox',31 'fa fa-play-circle-o'=> 'fa fa-play-circle-o',32 'fa fa-repeat'=> 'fa fa-repeat',33 'fa fa-refresh'=> 'fa fa-refresh',34 'fa fa-list-alt'=> 'fa fa-list-alt',35 'fa fa-lock'=> 'fa fa-lock',36 'fa fa-flag'=> 'fa fa-flag',37 'fa fa-headphones'=> 'fa fa-headphones',38 'fa fa-volume-off'=> 'fa fa-volume-off',39 'fa fa-volume-down'=> 'fa fa-volume-down',40 'fa fa-volume-up'=> 'fa fa-volume-up',41 'fa fa-qrcode'=> 'fa fa-qrcode',42 'fa fa-barcode'=> 'fa fa-barcode',43 'fa fa-tag'=> 'fa fa-tag',44 'fa fa-tags'=> 'fa fa-tags',45 'fa fa-book'=> 'fa fa-book',46 'fa fa-bookmark'=> 'fa fa-bookmark',47 'fa fa-print'=> 'fa fa-print',48 'fa fa-camera'=> 'fa fa-camera',49 'fa fa-font'=> 'fa fa-font',50 'fa fa-bold'=> 'fa fa-bold',51 'fa fa-italic'=> 'fa fa-italic',52 'fa fa-text-height'=> 'fa fa-text-height',53 'fa fa-text-width'=> 'fa fa-text-width',54 'fa fa-align-left'=> 'fa fa-align-left',55 'fa fa-align-center'=> 'fa fa-align-center',56 'fa fa-align-right'=> 'fa fa-align-right',57 'fa fa-align-justify'=> 'fa fa-align-justify',58 'fa fa-list'=> 'fa fa-list',59 'fa fa-outdent'=> 'fa fa-outdent',60 'fa fa-indent'=> 'fa fa-indent',61 'fa fa-video-camera'=> 'fa fa-video-camera',62 'fa fa-picture-o'=> 'fa fa-picture-o',63 'fa fa-pencil'=> 'fa fa-pencil',64 'fa fa-map-marker'=> 'fa fa-map-marker',65 'fa fa-adjust'=> 'fa fa-adjust',66 'fa fa-tint'=> 'fa fa-tint',67 'fa fa-pencil-square-o'=> 'fa fa-pencil-square-o',68 'fa fa-share-square-o'=> 'fa fa-share-square-o',69 'fa fa-check-square-o'=> 'fa fa-check-square-o',70 'fa fa-arrows'=> 'fa fa-arrows',71 'fa fa-step-backward'=> 'fa fa-step-backward',72 'fa fa-fast-backward'=> 'fa fa-fast-backward',73 'fa fa-backward'=> 'fa fa-backward',74 'fa fa-play'=> 'fa fa-play',75 'fa fa-pause'=> 'fa fa-pause',76 'fa fa-stop'=> 'fa fa-stop',77 'fa fa-forward'=> 'fa fa-forward',78 'fa fa-fast-forward'=> 'fa fa-fast-forward',79 'fa fa-step-forward'=> 'fa fa-step-forward',80 'fa fa-eject'=> 'fa fa-eject',81 'fa fa-chevron-left'=> 'fa fa-chevron-left',82 'fa fa-chevron-right'=> 'fa fa-chevron-right',83 'fa fa-plus-circle'=> 'fa fa-plus-circle',84 'fa fa-minus-circle'=> 'fa fa-minus-circle',85 'fa fa-times-circle'=> 'fa fa-times-circle',86 'fa fa-check-circle'=> 'fa fa-check-circle',87 'fa fa-question-circle'=> 'fa fa-question-circle',88 'fa fa-info-circle'=> 'fa fa-info-circle',89 'fa fa-crosshairs'=> 'fa fa-crosshairs',90 'fa fa-times-circle-o'=> 'fa fa-times-circle-o',91 'fa fa-check-circle-o'=> 'fa fa-check-circle-o',92 'fa fa-ban'=> 'fa fa-ban',93 'fa fa-arrow-left'=> 'fa fa-arrow-left',94 'fa fa-arrow-right'=> 'fa fa-arrow-right',95 'fa fa-arrow-up'=> 'fa fa-arrow-up',96 'fa fa-arrow-down'=> 'fa fa-arrow-down',97 'fa fa-share'=> 'fa fa-share',98 'fa fa-expand'=> 'fa fa-expand',99 'fa fa-compress'=> 'fa fa-compress',100 'fa fa-plus'=> 'fa fa-plus',101 'fa fa-minus'=> 'fa fa-minus',102 'fa fa-asterisk'=> 'fa fa-asterisk',103 'fa fa-exclamation-circle'=> 'fa fa-exclamation-circle',104 'fa fa-gift'=> 'fa fa-gift',105 'fa fa-leaf'=> 'fa fa-leaf',106 'fa fa-fire'=> 'fa fa-fire',107 'fa fa-eye'=> 'fa fa-eye',108 'fa fa-eye-slash'=> 'fa fa-eye-slash',109 'fa fa-exclamation-triangle'=> 'fa fa-exclamation-triangle',110 'fa fa-plane'=> 'fa fa-plane',111 'fa fa-calendar'=> 'fa fa-calendar',112 'fa fa-random'=> 'fa fa-random',113 'fa fa-comment'=> 'fa fa-comment',114 'fa fa-magnet'=> 'fa fa-magnet',115 'fa fa-chevron-up'=> 'fa fa-chevron-up',116 'fa fa-chevron-down'=> 'fa fa-chevron-down',117 'fa fa-retweet'=> 'fa fa-retweet',118 'fa fa-shopping-cart'=> 'fa fa-shopping-cart',119 'fa fa-folder'=> 'fa fa-folder',120 'fa fa-folder-open'=> 'fa fa-folder-open',121 'fa fa-arrows-v'=> 'fa fa-arrows-v',122 'fa fa-arrows-h'=> 'fa fa-arrows-h',123 'fa fa-bar-chart'=> 'fa fa-bar-chart',124 'fa fa-twitter-square'=> 'fa fa-twitter-square',125 'fa fa-facebook-square'=> 'fa fa-facebook-square',126 'fa fa-camera-retro'=> 'fa fa-camera-retro',127 'fa fa-key'=> 'fa fa-key',128 'fa fa-cogs'=> 'fa fa-cogs',129 'fa fa-comments'=> 'fa fa-comments',130 'fa fa-thumbs-o-up'=> 'fa fa-thumbs-o-up',131 'fa fa-thumbs-o-down'=> 'fa fa-thumbs-o-down',132 'fa fa-star-half'=> 'fa fa-star-half',133 'fa fa-heart-o'=> 'fa fa-heart-o',134 'fa fa-sign-out'=> 'fa fa-sign-out',135 'fa fa-linkedin-square'=> 'fa fa-linkedin-square',136 'fa fa-thumb-tack'=> 'fa fa-thumb-tack',137 'fa fa-external-link'=> 'fa fa-external-link',138 'fa fa-sign-in'=> 'fa fa-sign-in',139 'fa fa-trophy'=> 'fa fa-trophy',140 'fa fa-github-square'=> 'fa fa-github-square',141 'fa fa-upload'=> 'fa fa-upload',142 'fa fa-lemon-o'=> 'fa fa-lemon-o',143 'fa fa-phone'=> 'fa fa-phone',144 'fa fa-square-o'=> 'fa fa-square-o',145 'fa fa-bookmark-o'=> 'fa fa-bookmark-o',146 'fa fa-phone-square'=> 'fa fa-phone-square',147 'fa fa-twitter'=> 'fa fa-twitter',148 'fa fa-facebook'=> 'fa fa-facebook',149 'fa fa-github'=> 'fa fa-github',150 'fa fa-unlock'=> 'fa fa-unlock',151 'fa fa-credit-card'=> 'fa fa-credit-card',152 'fa fa-rss'=> 'fa fa-rss',153 'fa fa-hdd-o'=> 'fa fa-hdd-o',154 'fa fa-bullhorn'=> 'fa fa-bullhorn',155 'fa fa-bell'=> 'fa fa-bell',156 'fa fa-certificate'=> 'fa fa-certificate',157 'fa fa-hand-o-right'=> 'fa fa-hand-o-right',158 'fa fa-hand-o-left'=> 'fa fa-hand-o-left',159 'fa fa-hand-o-up'=> 'fa fa-hand-o-up',160 'fa fa-hand-o-down'=> 'fa fa-hand-o-down',161 'fa fa-arrow-circle-left'=> 'fa fa-arrow-circle-left',162 'fa fa-arrow-circle-right'=> 'fa fa-arrow-circle-right',163 'fa fa-arrow-circle-up'=> 'fa fa-arrow-circle-up',164 'fa fa-arrow-circle-down'=> 'fa fa-arrow-circle-down',165 'fa fa-globe'=> 'fa fa-globe',166 'fa fa-wrench'=> 'fa fa-wrench',167 'fa fa-tasks'=> 'fa fa-tasks',168 'fa fa-filter'=> 'fa fa-filter',169 'fa fa-briefcase'=> 'fa fa-briefcase',170 'fa fa-arrows-alt'=> 'fa fa-arrows-alt',171 'fa fa-users'=> 'fa fa-users',172 'fa fa-link'=> 'fa fa-link',173 'fa fa-cloud'=> 'fa fa-cloud',174 'fa fa-flask'=> 'fa fa-flask',175 'fa fa-scissors'=> 'fa fa-scissors',176 'fa fa-files-o'=> 'fa fa-files-o',177 'fa fa-paperclip'=> 'fa fa-paperclip',178 'fa fa-floppy-o'=> 'fa fa-floppy-o',179 'fa fa-square'=> 'fa fa-square',180 'fa fa-bars'=> 'fa fa-bars',181 'fa fa-list-ul'=> 'fa fa-list-ul',182 'fa fa-list-ol'=> 'fa fa-list-ol',183 'fa fa-strikethrough'=> 'fa fa-strikethrough',184 'fa fa-underline'=> 'fa fa-underline',185 'fa fa-table'=> 'fa fa-table',186 'fa fa-magic'=> 'fa fa-magic',187 'fa fa-truck'=> 'fa fa-truck',188 'fa fa-pinterest'=> 'fa fa-pinterest',189 'fa fa-pinterest-square'=> 'fa fa-pinterest-square',190 'fa fa-google-plus-square'=> 'fa fa-google-plus-square',191 'fa fa-google-plus'=> 'fa fa-google-plus',192 'fa fa-money'=> 'fa fa-money',193 'fa fa-caret-down'=> 'fa fa-caret-down',194 'fa fa-caret-up'=> 'fa fa-caret-up',195 'fa fa-caret-left'=> 'fa fa-caret-left',196 'fa fa-caret-right'=> 'fa fa-caret-right',197 'fa fa-columns'=> 'fa fa-columns',198 'fa fa-sort'=> 'fa fa-sort',199 'fa fa-sort-desc'=> 'fa fa-sort-desc',200 'fa fa-sort-asc'=> 'fa fa-sort-asc',201 'fa fa-envelope'=> 'fa fa-envelope',202 'fa fa-linkedin'=> 'fa fa-linkedin',203 'fa fa-undo'=> 'fa fa-undo',204 'fa fa-gavel'=> 'fa fa-gavel',205 'fa fa-tachometer'=> 'fa fa-tachometer',206 'fa fa-comment-o'=> 'fa fa-comment-o',207 'fa fa-comments-o'=> 'fa fa-comments-o',208 'fa fa-bolt'=> 'fa fa-bolt',209 'fa fa-sitemap'=> 'fa fa-sitemap',210 'fa fa-umbrella'=> 'fa fa-umbrella',211 'fa fa-clipboard'=> 'fa fa-clipboard',212 'fa fa-lightbulb-o'=> 'fa fa-lightbulb-o',213 'fa fa-exchange'=> 'fa fa-exchange',214 'fa fa-cloud-download'=> 'fa fa-cloud-download',215 'fa fa-cloud-upload'=> 'fa fa-cloud-upload',216 'fa fa-user-md'=> 'fa fa-user-md',217 'fa fa-stethoscope'=> 'fa fa-stethoscope',218 'fa fa-suitcase'=> 'fa fa-suitcase',219 'fa fa-bell-o'=> 'fa fa-bell-o',220 'fa fa-coffee'=> 'fa fa-coffee',221 'fa fa-cutlery'=> 'fa fa-cutlery',222 'fa fa-file-text-o'=> 'fa fa-file-text-o',223 'fa fa-building-o'=> 'fa fa-building-o',224 'fa fa-hospital-o'=> 'fa fa-hospital-o',225 'fa fa-ambulance'=> 'fa fa-ambulance',226 'fa fa-medkit'=> 'fa fa-medkit',227 'fa fa-fighter-jet'=> 'fa fa-fighter-jet',228 'fa fa-beer'=> 'fa fa-beer',229 'fa fa-h-square'=> 'fa fa-h-square',230 'fa fa-plus-square'=> 'fa fa-plus-square',231 'fa fa-angle-double-left'=> 'fa fa-angle-double-left',232 'fa fa-angle-double-right'=> 'fa fa-angle-double-right',233 'fa fa-angle-double-up'=> 'fa fa-angle-double-up',234 'fa fa-angle-double-down'=> 'fa fa-angle-double-down',235 'fa fa-angle-left'=> 'fa fa-angle-left',236 'fa fa-angle-right'=> 'fa fa-angle-right',237 'fa fa-angle-up'=> 'fa fa-angle-up',238 'fa fa-angle-down'=> 'fa fa-angle-down',239 'fa fa-desktop'=> 'fa fa-desktop',240 'fa fa-laptop'=> 'fa fa-laptop',241 'fa fa-tablet'=> 'fa fa-tablet',242 'fa fa-mobile'=> 'fa fa-mobile',243 'fa fa-circle-o'=> 'fa fa-circle-o',244 'fa fa-quote-left'=> 'fa fa-quote-left',245 'fa fa-quote-right'=> 'fa fa-quote-right',246 'fa fa-spinner'=> 'fa fa-spinner',247 'fa fa-circle'=> 'fa fa-circle',248 'fa fa-reply'=> 'fa fa-reply',249 'fa fa-github-alt'=> 'fa fa-github-alt',250 'fa fa-folder-o'=> 'fa fa-folder-o',251 'fa fa-folder-open-o'=> 'fa fa-folder-open-o',252 'fa fa-smile-o'=> 'fa fa-smile-o',253 'fa fa-frown-o'=> 'fa fa-frown-o',254 'fa fa-meh-o'=> 'fa fa-meh-o',255 'fa fa-gamepad'=> 'fa fa-gamepad',256 'fa fa-keyboard-o'=> 'fa fa-keyboard-o',257 'fa fa-flag-o'=> 'fa fa-flag-o',258 'fa fa-flag-checkered'=> 'fa fa-flag-checkered',259 'fa fa-terminal'=> 'fa fa-terminal',260 'fa fa-code'=> 'fa fa-code',261 'fa fa-reply-all'=> 'fa fa-reply-all',262 'fa fa-star-half-o'=> 'fa fa-star-half-o',263 'fa fa-location-arrow'=> 'fa fa-location-arrow',264 'fa fa-crop'=> 'fa fa-crop',265 'fa fa-code-fork'=> 'fa fa-code-fork',266 'fa fa-chain-broken'=> 'fa fa-chain-broken',267 'fa fa-question'=> 'fa fa-question',268 'fa fa-info'=> 'fa fa-info',269 'fa fa-exclamation'=> 'fa fa-exclamation',270 'fa fa-superscript'=> 'fa fa-superscript',271 'fa fa-subscript'=> 'fa fa-subscript',272 'fa fa-eraser'=> 'fa fa-eraser',273 'fa fa-puzzle-piece'=> 'fa fa-puzzle-piece',274 'fa fa-microphone'=> 'fa fa-microphone',275 'fa fa-microphone-slash'=> 'fa fa-microphone-slash',276 'fa fa-shield'=> 'fa fa-shield',277 'fa fa-calendar-o'=> 'fa fa-calendar-o',278 'fa fa-fire-extinguisher'=> 'fa fa-fire-extinguisher',279 'fa fa-rocket'=> 'fa fa-rocket',280 'fa fa-maxcdn'=> 'fa fa-maxcdn',281 'fa fa-chevron-circle-left'=> 'fa fa-chevron-circle-left',282 'fa fa-chevron-circle-right'=> 'fa fa-chevron-circle-right',283 'fa fa-chevron-circle-up'=> 'fa fa-chevron-circle-up',284 'fa fa-chevron-circle-down'=> 'fa fa-chevron-circle-down',285 'fa fa-html5'=> 'fa fa-html5',286 'fa fa-css3'=> 'fa fa-css3',287 'fa fa-anchor'=> 'fa fa-anchor',288 'fa fa-unlock-alt'=> 'fa fa-unlock-alt',289 'fa fa-bullseye'=> 'fa fa-bullseye',290 'fa fa-ellipsis-h'=> 'fa fa-ellipsis-h',291 'fa fa-ellipsis-v'=> 'fa fa-ellipsis-v',292 'fa fa-rss-square'=> 'fa fa-rss-square',293 'fa fa-play-circle'=> 'fa fa-play-circle',294 'fa fa-ticket'=> 'fa fa-ticket',295 'fa fa-minus-square'=> 'fa fa-minus-square',296 'fa fa-minus-square-o'=> 'fa fa-minus-square-o',297 'fa fa-level-up'=> 'fa fa-level-up',298 'fa fa-level-down'=> 'fa fa-level-down',299 'fa fa-check-square'=> 'fa fa-check-square',300 'fa fa-pencil-square'=> 'fa fa-pencil-square',301 'fa fa-external-link-square'=> 'fa fa-external-link-square',302 'fa fa-share-square'=> 'fa fa-share-square',303 'fa fa-compass'=> 'fa fa-compass',304 'fa fa-caret-square-o-down'=> 'fa fa-caret-square-o-down',305 'fa fa-caret-square-o-up'=> 'fa fa-caret-square-o-up',306 'fa fa-caret-square-o-right'=> 'fa fa-caret-square-o-right',307 'fa fa-eur'=> 'fa fa-eur',308 'fa fa-gbp'=> 'fa fa-gbp',309 'fa fa-usd'=> 'fa fa-usd',310 'fa fa-inr'=> 'fa fa-inr',311 'fa fa-jpy'=> 'fa fa-jpy',312 'fa fa-rub'=> 'fa fa-rub',313 'fa fa-krw'=> 'fa fa-krw',314 'fa fa-btc'=> 'fa fa-btc',315 'fa fa-file'=> 'fa fa-file',316 'fa fa-file-text'=> 'fa fa-file-text',317 'fa fa-sort-alpha-asc'=> 'fa fa-sort-alpha-asc',318 'fa fa-sort-alpha-desc'=> 'fa fa-sort-alpha-desc',319 'fa fa-sort-amount-asc'=> 'fa fa-sort-amount-asc',320 'fa fa-sort-amount-desc'=> 'fa fa-sort-amount-desc',321 'fa fa-sort-numeric-asc'=> 'fa fa-sort-numeric-asc',322 'fa fa-sort-numeric-desc'=> 'fa fa-sort-numeric-desc',323 'fa fa-thumbs-up'=> 'fa fa-thumbs-up',324 'fa fa-thumbs-down'=> 'fa fa-thumbs-down',325 'fa fa-youtube-square'=> 'fa fa-youtube-square',326 'fa fa-youtube'=> 'fa fa-youtube',327 'fa fa-xing'=> 'fa fa-xing',328 'fa fa-xing-square'=> 'fa fa-xing-square',329 'fa fa-youtube-play'=> 'fa fa-youtube-play',330 'fa fa-dropbox'=> 'fa fa-dropbox',331 'fa fa-stack-overflow'=> 'fa fa-stack-overflow',332 'fa fa-instagram'=> 'fa fa-instagram',333 'fa fa-flickr'=> 'fa fa-flickr',334 'fa fa-adn'=> 'fa fa-adn',335 'fa fa-bitbucket'=> 'fa fa-bitbucket',336 'fa fa-bitbucket-square'=> 'fa fa-bitbucket-square',337 'fa fa-tumblr'=> 'fa fa-tumblr',338 'fa fa-tumblr-square'=> 'fa fa-tumblr-square',339 'fa fa-long-arrow-down'=> 'fa fa-long-arrow-down',340 'fa fa-long-arrow-up'=> 'fa fa-long-arrow-up',341 'fa fa-long-arrow-left'=> 'fa fa-long-arrow-left',342 'fa fa-long-arrow-right'=> 'fa fa-long-arrow-right',343 'fa fa-apple'=> 'fa fa-apple',344 'fa fa-windows'=> 'fa fa-windows',345 'fa fa-android'=> 'fa fa-android',346 'fa fa-linux'=> 'fa fa-linux',347 'fa fa-dribbble'=> 'fa fa-dribbble',348 'fa fa-skype'=> 'fa fa-skype',349 'fa fa-foursquare'=> 'fa fa-foursquare',350 'fa fa-trello'=> 'fa fa-trello',351 'fa fa-female'=> 'fa fa-female',352 'fa fa-male'=> 'fa fa-male',353 'fa fa-gratipay'=> 'fa fa-gratipay',354 'fa fa-sun-o'=> 'fa fa-sun-o',355 'fa fa-moon-o'=> 'fa fa-moon-o',356 'fa fa-archive'=> 'fa fa-archive',357 'fa fa-bug'=> 'fa fa-bug',358 'fa fa-vk'=> 'fa fa-vk',359 'fa fa-weibo'=> 'fa fa-weibo',360 'fa fa-renren'=> 'fa fa-renren',361 'fa fa-pagelines'=> 'fa fa-pagelines',362 'fa fa-stack-exchange'=> 'fa fa-stack-exchange',363 'fa fa-arrow-circle-o-right'=> 'fa fa-arrow-circle-o-right',364 'fa fa-arrow-circle-o-left'=> 'fa fa-arrow-circle-o-left',365 'fa fa-caret-square-o-left'=> 'fa fa-caret-square-o-left',366 'fa fa-dot-circle-o'=> 'fa fa-dot-circle-o',367 'fa fa-wheelchair'=> 'fa fa-wheelchair',368 'fa fa-vimeo-square'=> 'fa fa-vimeo-square',369 'fa fa-try'=> 'fa fa-try',370 'fa fa-plus-square-o'=> 'fa fa-plus-square-o',371 'fa fa-space-shuttle'=> 'fa fa-space-shuttle',372 'fa fa-slack'=> 'fa fa-slack',373 'fa fa-envelope-square'=> 'fa fa-envelope-square',374 'fa fa-wordpress'=> 'fa fa-wordpress',375 'fa fa-openid'=> 'fa fa-openid',376 'fa fa-university'=> 'fa fa-university',377 'fa fa-graduation-cap'=> 'fa fa-graduation-cap',378 'fa fa-yahoo'=> 'fa fa-yahoo',379 'fa fa-google'=> 'fa fa-google',380 'fa fa-reddit'=> 'fa fa-reddit',381 'fa fa-reddit-square'=> 'fa fa-reddit-square',382 'fa fa-stumbleupon-circle'=> 'fa fa-stumbleupon-circle',383 'fa fa-stumbleupon'=> 'fa fa-stumbleupon',384 'fa fa-delicious'=> 'fa fa-delicious',385 'fa fa-digg'=> 'fa fa-digg',386 'fa fa-pied-piper-pp'=> 'fa fa-pied-piper-pp',387 'fa fa-pied-piper-alt'=> 'fa fa-pied-piper-alt',388 'fa fa-drupal'=> 'fa fa-drupal',389 'fa fa-joomla'=> 'fa fa-joomla',390 'fa fa-language'=> 'fa fa-language',391 'fa fa-fax'=> 'fa fa-fax',392 'fa fa-building'=> 'fa fa-building',393 'fa fa-child'=> 'fa fa-child',394 'fa fa-paw'=> 'fa fa-paw',395 'fa fa-spoon'=> 'fa fa-spoon',396 'fa fa-cube'=> 'fa fa-cube',397 'fa fa-cubes'=> 'fa fa-cubes',398 'fa fa-behance'=> 'fa fa-behance',399 'fa fa-behance-square'=> 'fa fa-behance-square',400 'fa fa-steam'=> 'fa fa-steam',401 'fa fa-steam-square'=> 'fa fa-steam-square',402 'fa fa-recycle'=> 'fa fa-recycle',403 'fa fa-car'=> 'fa fa-car',404 'fa fa-taxi'=> 'fa fa-taxi',405 'fa fa-tree'=> 'fa fa-tree',406 'fa fa-spotify'=> 'fa fa-spotify',407 'fa fa-deviantart'=> 'fa fa-deviantart',408 'fa fa-soundcloud'=> 'fa fa-soundcloud',409 'fa fa-database'=> 'fa fa-database',410 'fa fa-file-pdf-o'=> 'fa fa-file-pdf-o',411 'fa fa-file-word-o'=> 'fa fa-file-word-o',412 'fa fa-file-excel-o'=> 'fa fa-file-excel-o',413 'fa fa-file-powerpoint-o'=> 'fa fa-file-powerpoint-o',414 'fa fa-file-image-o'=> 'fa fa-file-image-o',415 'fa fa-file-archive-o'=> 'fa fa-file-archive-o',416 'fa fa-file-audio-o'=> 'fa fa-file-audio-o',417 'fa fa-file-video-o'=> 'fa fa-file-video-o',418 'fa fa-file-code-o'=> 'fa fa-file-code-o',419 'fa fa-vine'=> 'fa fa-vine',420 'fa fa-codepen'=> 'fa fa-codepen',421 'fa fa-jsfiddle'=> 'fa fa-jsfiddle',422 'fa fa-life-ring'=> 'fa fa-life-ring',423 'fa fa-circle-o-notch'=> 'fa fa-circle-o-notch',424 'fa fa-rebel'=> 'fa fa-rebel',425 'fa fa-empire'=> 'fa fa-empire',426 'fa fa-git-square'=> 'fa fa-git-square',427 'fa fa-git'=> 'fa fa-git',428 'fa fa-hacker-news'=> 'fa fa-hacker-news',429 'fa fa-tencent-weibo'=> 'fa fa-tencent-weibo',430 'fa fa-qq'=> 'fa fa-qq',431 'fa fa-weixin'=> 'fa fa-weixin',432 'fa fa-paper-plane'=> 'fa fa-paper-plane',433 'fa fa-paper-plane-o'=> 'fa fa-paper-plane-o',434 'fa fa-history'=> 'fa fa-history',435 'fa fa-circle-thin'=> 'fa fa-circle-thin',436 'fa fa-header'=> 'fa fa-header',437 'fa fa-paragraph'=> 'fa fa-paragraph',438 'fa fa-sliders'=> 'fa fa-sliders',439 'fa fa-share-alt'=> 'fa fa-share-alt',440 'fa fa-share-alt-square'=> 'fa fa-share-alt-square',441 'fa fa-bomb'=> 'fa fa-bomb',442 'fa fa-futbol-o'=> 'fa fa-futbol-o',443 'fa fa-tty'=> 'fa fa-tty',444 'fa fa-binoculars'=> 'fa fa-binoculars',445 'fa fa-plug'=> 'fa fa-plug',446 'fa fa-slideshare'=> 'fa fa-slideshare',447 'fa fa-twitch'=> 'fa fa-twitch',448 'fa fa-yelp'=> 'fa fa-yelp',449 'fa fa-newspaper-o'=> 'fa fa-newspaper-o',450 'fa fa-wifi'=> 'fa fa-wifi',451 'fa fa-calculator'=> 'fa fa-calculator',452 'fa fa-paypal'=> 'fa fa-paypal',453 'fa fa-google-wallet'=> 'fa fa-google-wallet',454 'fa fa-cc-visa'=> 'fa fa-cc-visa',455 'fa fa-cc-mastercard'=> 'fa fa-cc-mastercard',456 'fa fa-cc-discover'=> 'fa fa-cc-discover',457 'fa fa-cc-amex'=> 'fa fa-cc-amex',458 'fa fa-cc-paypal'=> 'fa fa-cc-paypal',459 'fa fa-cc-stripe'=> 'fa fa-cc-stripe',460 'fa fa-bell-slash'=> 'fa fa-bell-slash',461 'fa fa-bell-slash-o'=> 'fa fa-bell-slash-o',462 'fa fa-trash'=> 'fa fa-trash',463 'fa fa-copyright'=> 'fa fa-copyright',464 'fa fa-at'=> 'fa fa-at',465 'fa fa-eyedropper'=> 'fa fa-eyedropper',466 'fa fa-paint-brush'=> 'fa fa-paint-brush',467 'fa fa-birthday-cake'=> 'fa fa-birthday-cake',468 'fa fa-area-chart'=> 'fa fa-area-chart',469 'fa fa-pie-chart'=> 'fa fa-pie-chart',470 'fa fa-line-chart'=> 'fa fa-line-chart',471 'fa fa-lastfm'=> 'fa fa-lastfm',472 'fa fa-lastfm-square'=> 'fa fa-lastfm-square',473 'fa fa-toggle-off'=> 'fa fa-toggle-off',474 'fa fa-toggle-on'=> 'fa fa-toggle-on',475 'fa fa-bicycle'=> 'fa fa-bicycle',476 'fa fa-bus'=> 'fa fa-bus',477 'fa fa-ioxhost'=> 'fa fa-ioxhost',478 'fa fa-angellist'=> 'fa fa-angellist',479 'fa fa-cc'=> 'fa fa-cc',480 'fa fa-ils'=> 'fa fa-ils',481 'fa fa-meanpath'=> 'fa fa-meanpath',482 'fa fa-buysellads'=> 'fa fa-buysellads',483 'fa fa-connectdevelop'=> 'fa fa-connectdevelop',484 'fa fa-dashcube'=> 'fa fa-dashcube',485 'fa fa-forumbee'=> 'fa fa-forumbee',486 'fa fa-leanpub'=> 'fa fa-leanpub',487 'fa fa-sellsy'=> 'fa fa-sellsy',488 'fa fa-shirtsinbulk'=> 'fa fa-shirtsinbulk',489 'fa fa-simplybuilt'=> 'fa fa-simplybuilt',490 'fa fa-skyatlas'=> 'fa fa-skyatlas',491 'fa fa-cart-plus'=> 'fa fa-cart-plus',492 'fa fa-cart-arrow-down'=> 'fa fa-cart-arrow-down',493 'fa fa-diamond'=> 'fa fa-diamond',494 'fa fa-ship'=> 'fa fa-ship',495 'fa fa-user-secret'=> 'fa fa-user-secret',496 'fa fa-motorcycle'=> 'fa fa-motorcycle',497 'fa fa-street-view'=> 'fa fa-street-view',498 'fa fa-heartbeat'=> 'fa fa-heartbeat',499 'fa fa-venus'=> 'fa fa-venus',500 'fa fa-mars'=> 'fa fa-mars',501 'fa fa-mercury'=> 'fa fa-mercury',502 'fa fa-transgender'=> 'fa fa-transgender',503 'fa fa-transgender-alt'=> 'fa fa-transgender-alt',504 'fa fa-venus-double'=> 'fa fa-venus-double',505 'fa fa-mars-double'=> 'fa fa-mars-double',506 'fa fa-venus-mars'=> 'fa fa-venus-mars',507 'fa fa-mars-stroke'=> 'fa fa-mars-stroke',508 'fa fa-mars-stroke-v'=> 'fa fa-mars-stroke-v',509 'fa fa-mars-stroke-h'=> 'fa fa-mars-stroke-h',510 'fa fa-neuter'=> 'fa fa-neuter',511 'fa fa-genderless'=> 'fa fa-genderless',512 'fa fa-facebook-official'=> 'fa fa-facebook-official',513 'fa fa-pinterest-p'=> 'fa fa-pinterest-p',514 'fa fa-whatsapp'=> 'fa fa-whatsapp',515 'fa fa-server'=> 'fa fa-server',516 'fa fa-user-plus'=> 'fa fa-user-plus',517 'fa fa-user-times'=> 'fa fa-user-times',518 'fa fa-bed'=> 'fa fa-bed',519 'fa fa-viacoin'=> 'fa fa-viacoin',520 'fa fa-train'=> 'fa fa-train',521 'fa fa-subway'=> 'fa fa-subway',522 'fa fa-medium'=> 'fa fa-medium',523 'fa fa-y-combinator'=> 'fa fa-y-combinator',524 'fa fa-optin-monster'=> 'fa fa-optin-monster',525 'fa fa-opencart'=> 'fa fa-opencart',526 'fa fa-expeditedssl'=> 'fa fa-expeditedssl',527 'fa fa-battery-full'=> 'fa fa-battery-full',528 'fa fa-battery-three-quarters'=> 'fa fa-battery-three-quarters',529 'fa fa-battery-half'=> 'fa fa-battery-half',530 'fa fa-battery-quarter'=> 'fa fa-battery-quarter',531 'fa fa-battery-empty'=> 'fa fa-battery-empty',532 'fa fa-mouse-pointer'=> 'fa fa-mouse-pointer',533 'fa fa-i-cursor'=> 'fa fa-i-cursor',534 'fa fa-object-group'=> 'fa fa-object-group',535 'fa fa-object-ungroup'=> 'fa fa-object-ungroup',536 'fa fa-sticky-note'=> 'fa fa-sticky-note',537 'fa fa-sticky-note-o'=> 'fa fa-sticky-note-o',538 'fa fa-cc-jcb'=> 'fa fa-cc-jcb',539 'fa fa-cc-diners-club'=> 'fa fa-cc-diners-club',540 'fa fa-clone'=> 'fa fa-clone',541 'fa fa-balance-scale'=> 'fa fa-balance-scale',542 'fa fa-hourglass-o'=> 'fa fa-hourglass-o',543 'fa fa-hourglass-start'=> 'fa fa-hourglass-start',544 'fa fa-hourglass-half'=> 'fa fa-hourglass-half',545 'fa fa-hourglass-end'=> 'fa fa-hourglass-end',546 'fa fa-hourglass'=> 'fa fa-hourglass',547 'fa fa-hand-rock-o'=> 'fa fa-hand-rock-o',548 'fa fa-hand-paper-o'=> 'fa fa-hand-paper-o',549 'fa fa-hand-scissors-o'=> 'fa fa-hand-scissors-o',550 'fa fa-hand-lizard-o'=> 'fa fa-hand-lizard-o',551 'fa fa-hand-spock-o'=> 'fa fa-hand-spock-o',552 'fa fa-hand-pointer-o'=> 'fa fa-hand-pointer-o',553 'fa fa-hand-peace-o'=> 'fa fa-hand-peace-o',554 'fa fa-trademark'=> 'fa fa-trademark',555 'fa fa-registered'=> 'fa fa-registered',556 'fa fa-creative-commons'=> 'fa fa-creative-commons',557 'fa fa-gg'=> 'fa fa-gg',558 'fa fa-gg-circle'=> 'fa fa-gg-circle',559 'fa fa-tripadvisor'=> 'fa fa-tripadvisor',560 'fa fa-odnoklassniki'=> 'fa fa-odnoklassniki',561 'fa fa-odnoklassniki-square'=> 'fa fa-odnoklassniki-square',562 'fa fa-get-pocket'=> 'fa fa-get-pocket',563 'fa fa-wikipedia-w'=> 'fa fa-wikipedia-w',564 'fa fa-safari'=> 'fa fa-safari',565 'fa fa-chrome'=> 'fa fa-chrome',566 'fa fa-firefox'=> 'fa fa-firefox',567 'fa fa-opera'=> 'fa fa-opera',568 'fa fa-internet-explorer'=> 'fa fa-internet-explorer',569 'fa fa-television'=> 'fa fa-television',570 'fa fa-contao'=> 'fa fa-contao',571 'fa fa-500px'=> 'fa fa-500px',572 'fa fa-amazon'=> 'fa fa-amazon',573 'fa fa-calendar-plus-o'=> 'fa fa-calendar-plus-o',574 'fa fa-calendar-minus-o'=> 'fa fa-calendar-minus-o',575 'fa fa-calendar-times-o'=> 'fa fa-calendar-times-o',576 'fa fa-calendar-check-o'=> 'fa fa-calendar-check-o',577 'fa fa-industry'=> 'fa fa-industry',578 'fa fa-map-pin'=> 'fa fa-map-pin',579 'fa fa-map-signs'=> 'fa fa-map-signs',580 'fa fa-map-o'=> 'fa fa-map-o',581 'fa fa-map'=> 'fa fa-map',582 'fa fa-commenting'=> 'fa fa-commenting',583 'fa fa-commenting-o'=> 'fa fa-commenting-o',584 'fa fa-houzz'=> 'fa fa-houzz',585 'fa fa-vimeo'=> 'fa fa-vimeo',586 'fa fa-black-tie'=> 'fa fa-black-tie',587 'fa fa-fonticons'=> 'fa fa-fonticons',588 'fa fa-reddit-alien'=> 'fa fa-reddit-alien',589 'fa fa-edge'=> 'fa fa-edge',590 'fa fa-credit-card-alt'=> 'fa fa-credit-card-alt',591 'fa fa-codiepie'=> 'fa fa-codiepie',592 'fa fa-modx'=> 'fa fa-modx',593 'fa fa-fort-awesome'=> 'fa fa-fort-awesome',594 'fa fa-usb'=> 'fa fa-usb',595 'fa fa-product-hunt'=> 'fa fa-product-hunt',596 'fa fa-mixcloud'=> 'fa fa-mixcloud',597 'fa fa-scribd'=> 'fa fa-scribd',598 'fa fa-pause-circle'=> 'fa fa-pause-circle',599 'fa fa-pause-circle-o'=> 'fa fa-pause-circle-o',600 'fa fa-stop-circle'=> 'fa fa-stop-circle',601 'fa fa-stop-circle-o'=> 'fa fa-stop-circle-o',602 'fa fa-shopping-bag'=> 'fa fa-shopping-bag',603 'fa fa-shopping-basket'=> 'fa fa-shopping-basket',604 'fa fa-hashtag'=> 'fa fa-hashtag',605 'fa fa-bluetooth'=> 'fa fa-bluetooth',606 'fa fa-bluetooth-b'=> 'fa fa-bluetooth-b',607 'fa fa-percent'=> 'fa fa-percent',608 'fa fa-gitlab'=> 'fa fa-gitlab',609 'fa fa-wpbeginner'=> 'fa fa-wpbeginner',610 'fa fa-wpforms'=> 'fa fa-wpforms',611 'fa fa-envira'=> 'fa fa-envira',612 'fa fa-universal-access'=> 'fa fa-universal-access',613 'fa fa-wheelchair-alt'=> 'fa fa-wheelchair-alt',614 'fa fa-question-circle-o'=> 'fa fa-question-circle-o',615 'fa fa-blind'=> 'fa fa-blind',616 'fa fa-audio-description'=> 'fa fa-audio-description',617 'fa fa-volume-control-phone'=> 'fa fa-volume-control-phone',618 'fa fa-braille'=> 'fa fa-braille',619 'fa fa-assistive-listening-systems'=> 'fa fa-assistive-listening-systems',620 'fa fa-american-sign-language-interpreting' => 'fa fa-american-sign-language-interpreting',621 'fa fa-deaf'=> 'fa fa-deaf',622 'fa fa-glide'=> 'fa fa-glide',623 'fa fa-glide-g'=> 'fa fa-glide-g',624 'fa fa-sign-language'=> 'fa fa-sign-language',625 'fa fa-low-vision'=> 'fa fa-low-vision',626 'fa fa-viadeo'=> 'fa fa-viadeo',627 'fa fa-viadeo-square'=> 'fa fa-viadeo-square',628 'fa fa-snapchat'=> 'fa fa-snapchat',629 'fa fa-snapchat-ghost'=> 'fa fa-snapchat-ghost',630 'fa fa-snapchat-square'=> 'fa fa-snapchat-square',631 'fa fa-pied-piper'=> 'fa fa-pied-piper',632 'fa fa-first-order'=> 'fa fa-first-order',633 'fa fa-yoast'=> 'fa fa-yoast',634 'fa fa-themeisle'=> 'fa fa-themeisle',635 'fa fa-google-plus-official'=> 'fa fa-google-plus-official',636 'fa fa-font-awesome'=> 'fa fa-font-awesome',637 'fa fa-handshake-o'=> 'fa fa-handshake-o',638 'fa fa-envelope-open'=> 'fa fa-envelope-open',639 'fa fa-envelope-open-o'=> 'fa fa-envelope-open-o',640 'fa fa-linode'=> 'fa fa-linode',641 'fa fa-address-book'=> 'fa fa-address-book',642 'fa fa-address-book-o'=> 'fa fa-address-book-o',643 'fa fa-address-card'=> 'fa fa-address-card',644 'fa fa-address-card-o'=> 'fa fa-address-card-o',645 'fa fa-user-circle'=> 'fa fa-user-circle',646 'fa fa-user-circle-o'=> 'fa fa-user-circle-o',647 'fa fa-user-o'=> 'fa fa-user-o',648 'fa fa-id-badge'=> 'fa fa-id-badge',649 'fa fa-id-card'=> 'fa fa-id-card',650 'fa fa-id-card-o'=> 'fa fa-id-card-o',651 'fa fa-quora'=> 'fa fa-quora',652 'fa fa-free-code-camp'=> 'fa fa-free-code-camp',653 'fa fa-telegram'=> 'fa fa-telegram',654 'fa fa-thermometer-full'=> 'fa fa-thermometer-full',655 'fa fa-thermometer-three-quarters'=> 'fa fa-thermometer-three-quarters',656 'fa fa-thermometer-half'=> 'fa fa-thermometer-half',657 'fa fa-thermometer-quarter'=> 'fa fa-thermometer-quarter',658 'fa fa-thermometer-empty'=> 'fa fa-thermometer-empty',659 'fa fa-shower'=> 'fa fa-shower',660 'fa fa-bath'=> 'fa fa-bath',661 'fa fa-podcast'=> 'fa fa-podcast',662 'fa fa-window-maximize'=> 'fa fa-window-maximize',663 'fa fa-window-minimize'=> 'fa fa-window-minimize',664 'fa fa-window-restore'=> 'fa fa-window-restore',665 'fa fa-window-close'=> 'fa fa-window-close',666 'fa fa-window-close-o'=> 'fa fa-window-close-o',667 'fa fa-bandcamp'=> 'fa fa-bandcamp',668 'fa fa-grav'=> 'fa fa-grav',669 'fa fa-etsy'=> 'fa fa-etsy',670 'fa fa-imdb'=> 'fa fa-imdb',671 'fa fa-ravelry'=> 'fa fa-ravelry',672 'fa fa-eercast'=> 'fa fa-eercast',673 'fa fa-microchip'=> 'fa fa-microchip',674 'fa fa-snowflake-o'=> 'fa fa-snowflake-o',675 'fa fa-superpowers'=> 'fa fa-superpowers',676 'fa fa-wpexplorer'=> 'fa fa-wpexplorer',677 'fa fa-meetup'=> 'fa fa-meetup',2 $fontAwesome = array( 3 'fa fa-glass' => 'fa fa-glass', 4 'fa fa-music' => 'fa fa-music', 5 'fa fa-search' => 'fa fa-search', 6 'fa fa-envelope-o' => 'fa fa-envelope-o', 7 'fa fa-heart' => 'fa fa-heart', 8 'fa fa-star' => 'fa fa-star', 9 'fa fa-star-o' => 'fa fa-star-o', 10 'fa fa-user' => 'fa fa-user', 11 'fa fa-film' => 'fa fa-film', 12 'fa fa-th-large' => 'fa fa-th-large', 13 'fa fa-th' => 'fa fa-th', 14 'fa fa-th-list' => 'fa fa-th-list', 15 'fa fa-check' => 'fa fa-check', 16 'fa fa-times' => 'fa fa-times', 17 'fa fa-search-plus' => 'fa fa-search-plus', 18 'fa fa-search-minus' => 'fa fa-search-minus', 19 'fa fa-power-off' => 'fa fa-power-off', 20 'fa fa-signal' => 'fa fa-signal', 21 'fa fa-cog' => 'fa fa-cog', 22 'fa fa-trash-o' => 'fa fa-trash-o', 23 'fa fa-home' => 'fa fa-home', 24 'fa fa-file-o' => 'fa fa-file-o', 25 'fa fa-clock-o' => 'fa fa-clock-o', 26 'fa fa-road' => 'fa fa-road', 27 'fa fa-download' => 'fa fa-download', 28 'fa fa-arrow-circle-o-down' => 'fa fa-arrow-circle-o-down', 29 'fa fa-arrow-circle-o-up' => 'fa fa-arrow-circle-o-up', 30 'fa fa-inbox' => 'fa fa-inbox', 31 'fa fa-play-circle-o' => 'fa fa-play-circle-o', 32 'fa fa-repeat' => 'fa fa-repeat', 33 'fa fa-refresh' => 'fa fa-refresh', 34 'fa fa-list-alt' => 'fa fa-list-alt', 35 'fa fa-lock' => 'fa fa-lock', 36 'fa fa-flag' => 'fa fa-flag', 37 'fa fa-headphones' => 'fa fa-headphones', 38 'fa fa-volume-off' => 'fa fa-volume-off', 39 'fa fa-volume-down' => 'fa fa-volume-down', 40 'fa fa-volume-up' => 'fa fa-volume-up', 41 'fa fa-qrcode' => 'fa fa-qrcode', 42 'fa fa-barcode' => 'fa fa-barcode', 43 'fa fa-tag' => 'fa fa-tag', 44 'fa fa-tags' => 'fa fa-tags', 45 'fa fa-book' => 'fa fa-book', 46 'fa fa-bookmark' => 'fa fa-bookmark', 47 'fa fa-print' => 'fa fa-print', 48 'fa fa-camera' => 'fa fa-camera', 49 'fa fa-font' => 'fa fa-font', 50 'fa fa-bold' => 'fa fa-bold', 51 'fa fa-italic' => 'fa fa-italic', 52 'fa fa-text-height' => 'fa fa-text-height', 53 'fa fa-text-width' => 'fa fa-text-width', 54 'fa fa-align-left' => 'fa fa-align-left', 55 'fa fa-align-center' => 'fa fa-align-center', 56 'fa fa-align-right' => 'fa fa-align-right', 57 'fa fa-align-justify' => 'fa fa-align-justify', 58 'fa fa-list' => 'fa fa-list', 59 'fa fa-outdent' => 'fa fa-outdent', 60 'fa fa-indent' => 'fa fa-indent', 61 'fa fa-video-camera' => 'fa fa-video-camera', 62 'fa fa-picture-o' => 'fa fa-picture-o', 63 'fa fa-pencil' => 'fa fa-pencil', 64 'fa fa-map-marker' => 'fa fa-map-marker', 65 'fa fa-adjust' => 'fa fa-adjust', 66 'fa fa-tint' => 'fa fa-tint', 67 'fa fa-pencil-square-o' => 'fa fa-pencil-square-o', 68 'fa fa-share-square-o' => 'fa fa-share-square-o', 69 'fa fa-check-square-o' => 'fa fa-check-square-o', 70 'fa fa-arrows' => 'fa fa-arrows', 71 'fa fa-step-backward' => 'fa fa-step-backward', 72 'fa fa-fast-backward' => 'fa fa-fast-backward', 73 'fa fa-backward' => 'fa fa-backward', 74 'fa fa-play' => 'fa fa-play', 75 'fa fa-pause' => 'fa fa-pause', 76 'fa fa-stop' => 'fa fa-stop', 77 'fa fa-forward' => 'fa fa-forward', 78 'fa fa-fast-forward' => 'fa fa-fast-forward', 79 'fa fa-step-forward' => 'fa fa-step-forward', 80 'fa fa-eject' => 'fa fa-eject', 81 'fa fa-chevron-left' => 'fa fa-chevron-left', 82 'fa fa-chevron-right' => 'fa fa-chevron-right', 83 'fa fa-plus-circle' => 'fa fa-plus-circle', 84 'fa fa-minus-circle' => 'fa fa-minus-circle', 85 'fa fa-times-circle' => 'fa fa-times-circle', 86 'fa fa-check-circle' => 'fa fa-check-circle', 87 'fa fa-question-circle' => 'fa fa-question-circle', 88 'fa fa-info-circle' => 'fa fa-info-circle', 89 'fa fa-crosshairs' => 'fa fa-crosshairs', 90 'fa fa-times-circle-o' => 'fa fa-times-circle-o', 91 'fa fa-check-circle-o' => 'fa fa-check-circle-o', 92 'fa fa-ban' => 'fa fa-ban', 93 'fa fa-arrow-left' => 'fa fa-arrow-left', 94 'fa fa-arrow-right' => 'fa fa-arrow-right', 95 'fa fa-arrow-up' => 'fa fa-arrow-up', 96 'fa fa-arrow-down' => 'fa fa-arrow-down', 97 'fa fa-share' => 'fa fa-share', 98 'fa fa-expand' => 'fa fa-expand', 99 'fa fa-compress' => 'fa fa-compress', 100 'fa fa-plus' => 'fa fa-plus', 101 'fa fa-minus' => 'fa fa-minus', 102 'fa fa-asterisk' => 'fa fa-asterisk', 103 'fa fa-exclamation-circle' => 'fa fa-exclamation-circle', 104 'fa fa-gift' => 'fa fa-gift', 105 'fa fa-leaf' => 'fa fa-leaf', 106 'fa fa-fire' => 'fa fa-fire', 107 'fa fa-eye' => 'fa fa-eye', 108 'fa fa-eye-slash' => 'fa fa-eye-slash', 109 'fa fa-exclamation-triangle' => 'fa fa-exclamation-triangle', 110 'fa fa-plane' => 'fa fa-plane', 111 'fa fa-calendar' => 'fa fa-calendar', 112 'fa fa-random' => 'fa fa-random', 113 'fa fa-comment' => 'fa fa-comment', 114 'fa fa-magnet' => 'fa fa-magnet', 115 'fa fa-chevron-up' => 'fa fa-chevron-up', 116 'fa fa-chevron-down' => 'fa fa-chevron-down', 117 'fa fa-retweet' => 'fa fa-retweet', 118 'fa fa-shopping-cart' => 'fa fa-shopping-cart', 119 'fa fa-folder' => 'fa fa-folder', 120 'fa fa-folder-open' => 'fa fa-folder-open', 121 'fa fa-arrows-v' => 'fa fa-arrows-v', 122 'fa fa-arrows-h' => 'fa fa-arrows-h', 123 'fa fa-bar-chart' => 'fa fa-bar-chart', 124 'fa fa-twitter-square' => 'fa fa-twitter-square', 125 'fa fa-facebook-square' => 'fa fa-facebook-square', 126 'fa fa-camera-retro' => 'fa fa-camera-retro', 127 'fa fa-key' => 'fa fa-key', 128 'fa fa-cogs' => 'fa fa-cogs', 129 'fa fa-comments' => 'fa fa-comments', 130 'fa fa-thumbs-o-up' => 'fa fa-thumbs-o-up', 131 'fa fa-thumbs-o-down' => 'fa fa-thumbs-o-down', 132 'fa fa-star-half' => 'fa fa-star-half', 133 'fa fa-heart-o' => 'fa fa-heart-o', 134 'fa fa-sign-out' => 'fa fa-sign-out', 135 'fa fa-linkedin-square' => 'fa fa-linkedin-square', 136 'fa fa-thumb-tack' => 'fa fa-thumb-tack', 137 'fa fa-external-link' => 'fa fa-external-link', 138 'fa fa-sign-in' => 'fa fa-sign-in', 139 'fa fa-trophy' => 'fa fa-trophy', 140 'fa fa-github-square' => 'fa fa-github-square', 141 'fa fa-upload' => 'fa fa-upload', 142 'fa fa-lemon-o' => 'fa fa-lemon-o', 143 'fa fa-phone' => 'fa fa-phone', 144 'fa fa-square-o' => 'fa fa-square-o', 145 'fa fa-bookmark-o' => 'fa fa-bookmark-o', 146 'fa fa-phone-square' => 'fa fa-phone-square', 147 'fa fa-twitter' => 'fa fa-twitter', 148 'fa fa-facebook' => 'fa fa-facebook', 149 'fa fa-github' => 'fa fa-github', 150 'fa fa-unlock' => 'fa fa-unlock', 151 'fa fa-credit-card' => 'fa fa-credit-card', 152 'fa fa-rss' => 'fa fa-rss', 153 'fa fa-hdd-o' => 'fa fa-hdd-o', 154 'fa fa-bullhorn' => 'fa fa-bullhorn', 155 'fa fa-bell' => 'fa fa-bell', 156 'fa fa-certificate' => 'fa fa-certificate', 157 'fa fa-hand-o-right' => 'fa fa-hand-o-right', 158 'fa fa-hand-o-left' => 'fa fa-hand-o-left', 159 'fa fa-hand-o-up' => 'fa fa-hand-o-up', 160 'fa fa-hand-o-down' => 'fa fa-hand-o-down', 161 'fa fa-arrow-circle-left' => 'fa fa-arrow-circle-left', 162 'fa fa-arrow-circle-right' => 'fa fa-arrow-circle-right', 163 'fa fa-arrow-circle-up' => 'fa fa-arrow-circle-up', 164 'fa fa-arrow-circle-down' => 'fa fa-arrow-circle-down', 165 'fa fa-globe' => 'fa fa-globe', 166 'fa fa-wrench' => 'fa fa-wrench', 167 'fa fa-tasks' => 'fa fa-tasks', 168 'fa fa-filter' => 'fa fa-filter', 169 'fa fa-briefcase' => 'fa fa-briefcase', 170 'fa fa-arrows-alt' => 'fa fa-arrows-alt', 171 'fa fa-users' => 'fa fa-users', 172 'fa fa-link' => 'fa fa-link', 173 'fa fa-cloud' => 'fa fa-cloud', 174 'fa fa-flask' => 'fa fa-flask', 175 'fa fa-scissors' => 'fa fa-scissors', 176 'fa fa-files-o' => 'fa fa-files-o', 177 'fa fa-paperclip' => 'fa fa-paperclip', 178 'fa fa-floppy-o' => 'fa fa-floppy-o', 179 'fa fa-square' => 'fa fa-square', 180 'fa fa-bars' => 'fa fa-bars', 181 'fa fa-list-ul' => 'fa fa-list-ul', 182 'fa fa-list-ol' => 'fa fa-list-ol', 183 'fa fa-strikethrough' => 'fa fa-strikethrough', 184 'fa fa-underline' => 'fa fa-underline', 185 'fa fa-table' => 'fa fa-table', 186 'fa fa-magic' => 'fa fa-magic', 187 'fa fa-truck' => 'fa fa-truck', 188 'fa fa-pinterest' => 'fa fa-pinterest', 189 'fa fa-pinterest-square' => 'fa fa-pinterest-square', 190 'fa fa-google-plus-square' => 'fa fa-google-plus-square', 191 'fa fa-google-plus' => 'fa fa-google-plus', 192 'fa fa-money' => 'fa fa-money', 193 'fa fa-caret-down' => 'fa fa-caret-down', 194 'fa fa-caret-up' => 'fa fa-caret-up', 195 'fa fa-caret-left' => 'fa fa-caret-left', 196 'fa fa-caret-right' => 'fa fa-caret-right', 197 'fa fa-columns' => 'fa fa-columns', 198 'fa fa-sort' => 'fa fa-sort', 199 'fa fa-sort-desc' => 'fa fa-sort-desc', 200 'fa fa-sort-asc' => 'fa fa-sort-asc', 201 'fa fa-envelope' => 'fa fa-envelope', 202 'fa fa-linkedin' => 'fa fa-linkedin', 203 'fa fa-undo' => 'fa fa-undo', 204 'fa fa-gavel' => 'fa fa-gavel', 205 'fa fa-tachometer' => 'fa fa-tachometer', 206 'fa fa-comment-o' => 'fa fa-comment-o', 207 'fa fa-comments-o' => 'fa fa-comments-o', 208 'fa fa-bolt' => 'fa fa-bolt', 209 'fa fa-sitemap' => 'fa fa-sitemap', 210 'fa fa-umbrella' => 'fa fa-umbrella', 211 'fa fa-clipboard' => 'fa fa-clipboard', 212 'fa fa-lightbulb-o' => 'fa fa-lightbulb-o', 213 'fa fa-exchange' => 'fa fa-exchange', 214 'fa fa-cloud-download' => 'fa fa-cloud-download', 215 'fa fa-cloud-upload' => 'fa fa-cloud-upload', 216 'fa fa-user-md' => 'fa fa-user-md', 217 'fa fa-stethoscope' => 'fa fa-stethoscope', 218 'fa fa-suitcase' => 'fa fa-suitcase', 219 'fa fa-bell-o' => 'fa fa-bell-o', 220 'fa fa-coffee' => 'fa fa-coffee', 221 'fa fa-cutlery' => 'fa fa-cutlery', 222 'fa fa-file-text-o' => 'fa fa-file-text-o', 223 'fa fa-building-o' => 'fa fa-building-o', 224 'fa fa-hospital-o' => 'fa fa-hospital-o', 225 'fa fa-ambulance' => 'fa fa-ambulance', 226 'fa fa-medkit' => 'fa fa-medkit', 227 'fa fa-fighter-jet' => 'fa fa-fighter-jet', 228 'fa fa-beer' => 'fa fa-beer', 229 'fa fa-h-square' => 'fa fa-h-square', 230 'fa fa-plus-square' => 'fa fa-plus-square', 231 'fa fa-angle-double-left' => 'fa fa-angle-double-left', 232 'fa fa-angle-double-right' => 'fa fa-angle-double-right', 233 'fa fa-angle-double-up' => 'fa fa-angle-double-up', 234 'fa fa-angle-double-down' => 'fa fa-angle-double-down', 235 'fa fa-angle-left' => 'fa fa-angle-left', 236 'fa fa-angle-right' => 'fa fa-angle-right', 237 'fa fa-angle-up' => 'fa fa-angle-up', 238 'fa fa-angle-down' => 'fa fa-angle-down', 239 'fa fa-desktop' => 'fa fa-desktop', 240 'fa fa-laptop' => 'fa fa-laptop', 241 'fa fa-tablet' => 'fa fa-tablet', 242 'fa fa-mobile' => 'fa fa-mobile', 243 'fa fa-circle-o' => 'fa fa-circle-o', 244 'fa fa-quote-left' => 'fa fa-quote-left', 245 'fa fa-quote-right' => 'fa fa-quote-right', 246 'fa fa-spinner' => 'fa fa-spinner', 247 'fa fa-circle' => 'fa fa-circle', 248 'fa fa-reply' => 'fa fa-reply', 249 'fa fa-github-alt' => 'fa fa-github-alt', 250 'fa fa-folder-o' => 'fa fa-folder-o', 251 'fa fa-folder-open-o' => 'fa fa-folder-open-o', 252 'fa fa-smile-o' => 'fa fa-smile-o', 253 'fa fa-frown-o' => 'fa fa-frown-o', 254 'fa fa-meh-o' => 'fa fa-meh-o', 255 'fa fa-gamepad' => 'fa fa-gamepad', 256 'fa fa-keyboard-o' => 'fa fa-keyboard-o', 257 'fa fa-flag-o' => 'fa fa-flag-o', 258 'fa fa-flag-checkered' => 'fa fa-flag-checkered', 259 'fa fa-terminal' => 'fa fa-terminal', 260 'fa fa-code' => 'fa fa-code', 261 'fa fa-reply-all' => 'fa fa-reply-all', 262 'fa fa-star-half-o' => 'fa fa-star-half-o', 263 'fa fa-location-arrow' => 'fa fa-location-arrow', 264 'fa fa-crop' => 'fa fa-crop', 265 'fa fa-code-fork' => 'fa fa-code-fork', 266 'fa fa-chain-broken' => 'fa fa-chain-broken', 267 'fa fa-question' => 'fa fa-question', 268 'fa fa-info' => 'fa fa-info', 269 'fa fa-exclamation' => 'fa fa-exclamation', 270 'fa fa-superscript' => 'fa fa-superscript', 271 'fa fa-subscript' => 'fa fa-subscript', 272 'fa fa-eraser' => 'fa fa-eraser', 273 'fa fa-puzzle-piece' => 'fa fa-puzzle-piece', 274 'fa fa-microphone' => 'fa fa-microphone', 275 'fa fa-microphone-slash' => 'fa fa-microphone-slash', 276 'fa fa-shield' => 'fa fa-shield', 277 'fa fa-calendar-o' => 'fa fa-calendar-o', 278 'fa fa-fire-extinguisher' => 'fa fa-fire-extinguisher', 279 'fa fa-rocket' => 'fa fa-rocket', 280 'fa fa-maxcdn' => 'fa fa-maxcdn', 281 'fa fa-chevron-circle-left' => 'fa fa-chevron-circle-left', 282 'fa fa-chevron-circle-right' => 'fa fa-chevron-circle-right', 283 'fa fa-chevron-circle-up' => 'fa fa-chevron-circle-up', 284 'fa fa-chevron-circle-down' => 'fa fa-chevron-circle-down', 285 'fa fa-html5' => 'fa fa-html5', 286 'fa fa-css3' => 'fa fa-css3', 287 'fa fa-anchor' => 'fa fa-anchor', 288 'fa fa-unlock-alt' => 'fa fa-unlock-alt', 289 'fa fa-bullseye' => 'fa fa-bullseye', 290 'fa fa-ellipsis-h' => 'fa fa-ellipsis-h', 291 'fa fa-ellipsis-v' => 'fa fa-ellipsis-v', 292 'fa fa-rss-square' => 'fa fa-rss-square', 293 'fa fa-play-circle' => 'fa fa-play-circle', 294 'fa fa-ticket' => 'fa fa-ticket', 295 'fa fa-minus-square' => 'fa fa-minus-square', 296 'fa fa-minus-square-o' => 'fa fa-minus-square-o', 297 'fa fa-level-up' => 'fa fa-level-up', 298 'fa fa-level-down' => 'fa fa-level-down', 299 'fa fa-check-square' => 'fa fa-check-square', 300 'fa fa-pencil-square' => 'fa fa-pencil-square', 301 'fa fa-external-link-square' => 'fa fa-external-link-square', 302 'fa fa-share-square' => 'fa fa-share-square', 303 'fa fa-compass' => 'fa fa-compass', 304 'fa fa-caret-square-o-down' => 'fa fa-caret-square-o-down', 305 'fa fa-caret-square-o-up' => 'fa fa-caret-square-o-up', 306 'fa fa-caret-square-o-right' => 'fa fa-caret-square-o-right', 307 'fa fa-eur' => 'fa fa-eur', 308 'fa fa-gbp' => 'fa fa-gbp', 309 'fa fa-usd' => 'fa fa-usd', 310 'fa fa-inr' => 'fa fa-inr', 311 'fa fa-jpy' => 'fa fa-jpy', 312 'fa fa-rub' => 'fa fa-rub', 313 'fa fa-krw' => 'fa fa-krw', 314 'fa fa-btc' => 'fa fa-btc', 315 'fa fa-file' => 'fa fa-file', 316 'fa fa-file-text' => 'fa fa-file-text', 317 'fa fa-sort-alpha-asc' => 'fa fa-sort-alpha-asc', 318 'fa fa-sort-alpha-desc' => 'fa fa-sort-alpha-desc', 319 'fa fa-sort-amount-asc' => 'fa fa-sort-amount-asc', 320 'fa fa-sort-amount-desc' => 'fa fa-sort-amount-desc', 321 'fa fa-sort-numeric-asc' => 'fa fa-sort-numeric-asc', 322 'fa fa-sort-numeric-desc' => 'fa fa-sort-numeric-desc', 323 'fa fa-thumbs-up' => 'fa fa-thumbs-up', 324 'fa fa-thumbs-down' => 'fa fa-thumbs-down', 325 'fa fa-youtube-square' => 'fa fa-youtube-square', 326 'fa fa-youtube' => 'fa fa-youtube', 327 'fa fa-xing' => 'fa fa-xing', 328 'fa fa-xing-square' => 'fa fa-xing-square', 329 'fa fa-youtube-play' => 'fa fa-youtube-play', 330 'fa fa-dropbox' => 'fa fa-dropbox', 331 'fa fa-stack-overflow' => 'fa fa-stack-overflow', 332 'fa fa-instagram' => 'fa fa-instagram', 333 'fa fa-flickr' => 'fa fa-flickr', 334 'fa fa-adn' => 'fa fa-adn', 335 'fa fa-bitbucket' => 'fa fa-bitbucket', 336 'fa fa-bitbucket-square' => 'fa fa-bitbucket-square', 337 'fa fa-tumblr' => 'fa fa-tumblr', 338 'fa fa-tumblr-square' => 'fa fa-tumblr-square', 339 'fa fa-long-arrow-down' => 'fa fa-long-arrow-down', 340 'fa fa-long-arrow-up' => 'fa fa-long-arrow-up', 341 'fa fa-long-arrow-left' => 'fa fa-long-arrow-left', 342 'fa fa-long-arrow-right' => 'fa fa-long-arrow-right', 343 'fa fa-apple' => 'fa fa-apple', 344 'fa fa-windows' => 'fa fa-windows', 345 'fa fa-android' => 'fa fa-android', 346 'fa fa-linux' => 'fa fa-linux', 347 'fa fa-dribbble' => 'fa fa-dribbble', 348 'fa fa-skype' => 'fa fa-skype', 349 'fa fa-foursquare' => 'fa fa-foursquare', 350 'fa fa-trello' => 'fa fa-trello', 351 'fa fa-female' => 'fa fa-female', 352 'fa fa-male' => 'fa fa-male', 353 'fa fa-gratipay' => 'fa fa-gratipay', 354 'fa fa-sun-o' => 'fa fa-sun-o', 355 'fa fa-moon-o' => 'fa fa-moon-o', 356 'fa fa-archive' => 'fa fa-archive', 357 'fa fa-bug' => 'fa fa-bug', 358 'fa fa-vk' => 'fa fa-vk', 359 'fa fa-weibo' => 'fa fa-weibo', 360 'fa fa-renren' => 'fa fa-renren', 361 'fa fa-pagelines' => 'fa fa-pagelines', 362 'fa fa-stack-exchange' => 'fa fa-stack-exchange', 363 'fa fa-arrow-circle-o-right' => 'fa fa-arrow-circle-o-right', 364 'fa fa-arrow-circle-o-left' => 'fa fa-arrow-circle-o-left', 365 'fa fa-caret-square-o-left' => 'fa fa-caret-square-o-left', 366 'fa fa-dot-circle-o' => 'fa fa-dot-circle-o', 367 'fa fa-wheelchair' => 'fa fa-wheelchair', 368 'fa fa-vimeo-square' => 'fa fa-vimeo-square', 369 'fa fa-try' => 'fa fa-try', 370 'fa fa-plus-square-o' => 'fa fa-plus-square-o', 371 'fa fa-space-shuttle' => 'fa fa-space-shuttle', 372 'fa fa-slack' => 'fa fa-slack', 373 'fa fa-envelope-square' => 'fa fa-envelope-square', 374 'fa fa-wordpress' => 'fa fa-wordpress', 375 'fa fa-openid' => 'fa fa-openid', 376 'fa fa-university' => 'fa fa-university', 377 'fa fa-graduation-cap' => 'fa fa-graduation-cap', 378 'fa fa-yahoo' => 'fa fa-yahoo', 379 'fa fa-google' => 'fa fa-google', 380 'fa fa-reddit' => 'fa fa-reddit', 381 'fa fa-reddit-square' => 'fa fa-reddit-square', 382 'fa fa-stumbleupon-circle' => 'fa fa-stumbleupon-circle', 383 'fa fa-stumbleupon' => 'fa fa-stumbleupon', 384 'fa fa-delicious' => 'fa fa-delicious', 385 'fa fa-digg' => 'fa fa-digg', 386 'fa fa-pied-piper-pp' => 'fa fa-pied-piper-pp', 387 'fa fa-pied-piper-alt' => 'fa fa-pied-piper-alt', 388 'fa fa-drupal' => 'fa fa-drupal', 389 'fa fa-joomla' => 'fa fa-joomla', 390 'fa fa-language' => 'fa fa-language', 391 'fa fa-fax' => 'fa fa-fax', 392 'fa fa-building' => 'fa fa-building', 393 'fa fa-child' => 'fa fa-child', 394 'fa fa-paw' => 'fa fa-paw', 395 'fa fa-spoon' => 'fa fa-spoon', 396 'fa fa-cube' => 'fa fa-cube', 397 'fa fa-cubes' => 'fa fa-cubes', 398 'fa fa-behance' => 'fa fa-behance', 399 'fa fa-behance-square' => 'fa fa-behance-square', 400 'fa fa-steam' => 'fa fa-steam', 401 'fa fa-steam-square' => 'fa fa-steam-square', 402 'fa fa-recycle' => 'fa fa-recycle', 403 'fa fa-car' => 'fa fa-car', 404 'fa fa-taxi' => 'fa fa-taxi', 405 'fa fa-tree' => 'fa fa-tree', 406 'fa fa-spotify' => 'fa fa-spotify', 407 'fa fa-deviantart' => 'fa fa-deviantart', 408 'fa fa-soundcloud' => 'fa fa-soundcloud', 409 'fa fa-database' => 'fa fa-database', 410 'fa fa-file-pdf-o' => 'fa fa-file-pdf-o', 411 'fa fa-file-word-o' => 'fa fa-file-word-o', 412 'fa fa-file-excel-o' => 'fa fa-file-excel-o', 413 'fa fa-file-powerpoint-o' => 'fa fa-file-powerpoint-o', 414 'fa fa-file-image-o' => 'fa fa-file-image-o', 415 'fa fa-file-archive-o' => 'fa fa-file-archive-o', 416 'fa fa-file-audio-o' => 'fa fa-file-audio-o', 417 'fa fa-file-video-o' => 'fa fa-file-video-o', 418 'fa fa-file-code-o' => 'fa fa-file-code-o', 419 'fa fa-vine' => 'fa fa-vine', 420 'fa fa-codepen' => 'fa fa-codepen', 421 'fa fa-jsfiddle' => 'fa fa-jsfiddle', 422 'fa fa-life-ring' => 'fa fa-life-ring', 423 'fa fa-circle-o-notch' => 'fa fa-circle-o-notch', 424 'fa fa-rebel' => 'fa fa-rebel', 425 'fa fa-empire' => 'fa fa-empire', 426 'fa fa-git-square' => 'fa fa-git-square', 427 'fa fa-git' => 'fa fa-git', 428 'fa fa-hacker-news' => 'fa fa-hacker-news', 429 'fa fa-tencent-weibo' => 'fa fa-tencent-weibo', 430 'fa fa-qq' => 'fa fa-qq', 431 'fa fa-weixin' => 'fa fa-weixin', 432 'fa fa-paper-plane' => 'fa fa-paper-plane', 433 'fa fa-paper-plane-o' => 'fa fa-paper-plane-o', 434 'fa fa-history' => 'fa fa-history', 435 'fa fa-circle-thin' => 'fa fa-circle-thin', 436 'fa fa-header' => 'fa fa-header', 437 'fa fa-paragraph' => 'fa fa-paragraph', 438 'fa fa-sliders' => 'fa fa-sliders', 439 'fa fa-share-alt' => 'fa fa-share-alt', 440 'fa fa-share-alt-square' => 'fa fa-share-alt-square', 441 'fa fa-bomb' => 'fa fa-bomb', 442 'fa fa-futbol-o' => 'fa fa-futbol-o', 443 'fa fa-tty' => 'fa fa-tty', 444 'fa fa-binoculars' => 'fa fa-binoculars', 445 'fa fa-plug' => 'fa fa-plug', 446 'fa fa-slideshare' => 'fa fa-slideshare', 447 'fa fa-twitch' => 'fa fa-twitch', 448 'fa fa-yelp' => 'fa fa-yelp', 449 'fa fa-newspaper-o' => 'fa fa-newspaper-o', 450 'fa fa-wifi' => 'fa fa-wifi', 451 'fa fa-calculator' => 'fa fa-calculator', 452 'fa fa-paypal' => 'fa fa-paypal', 453 'fa fa-google-wallet' => 'fa fa-google-wallet', 454 'fa fa-cc-visa' => 'fa fa-cc-visa', 455 'fa fa-cc-mastercard' => 'fa fa-cc-mastercard', 456 'fa fa-cc-discover' => 'fa fa-cc-discover', 457 'fa fa-cc-amex' => 'fa fa-cc-amex', 458 'fa fa-cc-paypal' => 'fa fa-cc-paypal', 459 'fa fa-cc-stripe' => 'fa fa-cc-stripe', 460 'fa fa-bell-slash' => 'fa fa-bell-slash', 461 'fa fa-bell-slash-o' => 'fa fa-bell-slash-o', 462 'fa fa-trash' => 'fa fa-trash', 463 'fa fa-copyright' => 'fa fa-copyright', 464 'fa fa-at' => 'fa fa-at', 465 'fa fa-eyedropper' => 'fa fa-eyedropper', 466 'fa fa-paint-brush' => 'fa fa-paint-brush', 467 'fa fa-birthday-cake' => 'fa fa-birthday-cake', 468 'fa fa-area-chart' => 'fa fa-area-chart', 469 'fa fa-pie-chart' => 'fa fa-pie-chart', 470 'fa fa-line-chart' => 'fa fa-line-chart', 471 'fa fa-lastfm' => 'fa fa-lastfm', 472 'fa fa-lastfm-square' => 'fa fa-lastfm-square', 473 'fa fa-toggle-off' => 'fa fa-toggle-off', 474 'fa fa-toggle-on' => 'fa fa-toggle-on', 475 'fa fa-bicycle' => 'fa fa-bicycle', 476 'fa fa-bus' => 'fa fa-bus', 477 'fa fa-ioxhost' => 'fa fa-ioxhost', 478 'fa fa-angellist' => 'fa fa-angellist', 479 'fa fa-cc' => 'fa fa-cc', 480 'fa fa-ils' => 'fa fa-ils', 481 'fa fa-meanpath' => 'fa fa-meanpath', 482 'fa fa-buysellads' => 'fa fa-buysellads', 483 'fa fa-connectdevelop' => 'fa fa-connectdevelop', 484 'fa fa-dashcube' => 'fa fa-dashcube', 485 'fa fa-forumbee' => 'fa fa-forumbee', 486 'fa fa-leanpub' => 'fa fa-leanpub', 487 'fa fa-sellsy' => 'fa fa-sellsy', 488 'fa fa-shirtsinbulk' => 'fa fa-shirtsinbulk', 489 'fa fa-simplybuilt' => 'fa fa-simplybuilt', 490 'fa fa-skyatlas' => 'fa fa-skyatlas', 491 'fa fa-cart-plus' => 'fa fa-cart-plus', 492 'fa fa-cart-arrow-down' => 'fa fa-cart-arrow-down', 493 'fa fa-diamond' => 'fa fa-diamond', 494 'fa fa-ship' => 'fa fa-ship', 495 'fa fa-user-secret' => 'fa fa-user-secret', 496 'fa fa-motorcycle' => 'fa fa-motorcycle', 497 'fa fa-street-view' => 'fa fa-street-view', 498 'fa fa-heartbeat' => 'fa fa-heartbeat', 499 'fa fa-venus' => 'fa fa-venus', 500 'fa fa-mars' => 'fa fa-mars', 501 'fa fa-mercury' => 'fa fa-mercury', 502 'fa fa-transgender' => 'fa fa-transgender', 503 'fa fa-transgender-alt' => 'fa fa-transgender-alt', 504 'fa fa-venus-double' => 'fa fa-venus-double', 505 'fa fa-mars-double' => 'fa fa-mars-double', 506 'fa fa-venus-mars' => 'fa fa-venus-mars', 507 'fa fa-mars-stroke' => 'fa fa-mars-stroke', 508 'fa fa-mars-stroke-v' => 'fa fa-mars-stroke-v', 509 'fa fa-mars-stroke-h' => 'fa fa-mars-stroke-h', 510 'fa fa-neuter' => 'fa fa-neuter', 511 'fa fa-genderless' => 'fa fa-genderless', 512 'fa fa-facebook-official' => 'fa fa-facebook-official', 513 'fa fa-pinterest-p' => 'fa fa-pinterest-p', 514 'fa fa-whatsapp' => 'fa fa-whatsapp', 515 'fa fa-server' => 'fa fa-server', 516 'fa fa-user-plus' => 'fa fa-user-plus', 517 'fa fa-user-times' => 'fa fa-user-times', 518 'fa fa-bed' => 'fa fa-bed', 519 'fa fa-viacoin' => 'fa fa-viacoin', 520 'fa fa-train' => 'fa fa-train', 521 'fa fa-subway' => 'fa fa-subway', 522 'fa fa-medium' => 'fa fa-medium', 523 'fa fa-y-combinator' => 'fa fa-y-combinator', 524 'fa fa-optin-monster' => 'fa fa-optin-monster', 525 'fa fa-opencart' => 'fa fa-opencart', 526 'fa fa-expeditedssl' => 'fa fa-expeditedssl', 527 'fa fa-battery-full' => 'fa fa-battery-full', 528 'fa fa-battery-three-quarters' => 'fa fa-battery-three-quarters', 529 'fa fa-battery-half' => 'fa fa-battery-half', 530 'fa fa-battery-quarter' => 'fa fa-battery-quarter', 531 'fa fa-battery-empty' => 'fa fa-battery-empty', 532 'fa fa-mouse-pointer' => 'fa fa-mouse-pointer', 533 'fa fa-i-cursor' => 'fa fa-i-cursor', 534 'fa fa-object-group' => 'fa fa-object-group', 535 'fa fa-object-ungroup' => 'fa fa-object-ungroup', 536 'fa fa-sticky-note' => 'fa fa-sticky-note', 537 'fa fa-sticky-note-o' => 'fa fa-sticky-note-o', 538 'fa fa-cc-jcb' => 'fa fa-cc-jcb', 539 'fa fa-cc-diners-club' => 'fa fa-cc-diners-club', 540 'fa fa-clone' => 'fa fa-clone', 541 'fa fa-balance-scale' => 'fa fa-balance-scale', 542 'fa fa-hourglass-o' => 'fa fa-hourglass-o', 543 'fa fa-hourglass-start' => 'fa fa-hourglass-start', 544 'fa fa-hourglass-half' => 'fa fa-hourglass-half', 545 'fa fa-hourglass-end' => 'fa fa-hourglass-end', 546 'fa fa-hourglass' => 'fa fa-hourglass', 547 'fa fa-hand-rock-o' => 'fa fa-hand-rock-o', 548 'fa fa-hand-paper-o' => 'fa fa-hand-paper-o', 549 'fa fa-hand-scissors-o' => 'fa fa-hand-scissors-o', 550 'fa fa-hand-lizard-o' => 'fa fa-hand-lizard-o', 551 'fa fa-hand-spock-o' => 'fa fa-hand-spock-o', 552 'fa fa-hand-pointer-o' => 'fa fa-hand-pointer-o', 553 'fa fa-hand-peace-o' => 'fa fa-hand-peace-o', 554 'fa fa-trademark' => 'fa fa-trademark', 555 'fa fa-registered' => 'fa fa-registered', 556 'fa fa-creative-commons' => 'fa fa-creative-commons', 557 'fa fa-gg' => 'fa fa-gg', 558 'fa fa-gg-circle' => 'fa fa-gg-circle', 559 'fa fa-tripadvisor' => 'fa fa-tripadvisor', 560 'fa fa-odnoklassniki' => 'fa fa-odnoklassniki', 561 'fa fa-odnoklassniki-square' => 'fa fa-odnoklassniki-square', 562 'fa fa-get-pocket' => 'fa fa-get-pocket', 563 'fa fa-wikipedia-w' => 'fa fa-wikipedia-w', 564 'fa fa-safari' => 'fa fa-safari', 565 'fa fa-chrome' => 'fa fa-chrome', 566 'fa fa-firefox' => 'fa fa-firefox', 567 'fa fa-opera' => 'fa fa-opera', 568 'fa fa-internet-explorer' => 'fa fa-internet-explorer', 569 'fa fa-television' => 'fa fa-television', 570 'fa fa-contao' => 'fa fa-contao', 571 'fa fa-500px' => 'fa fa-500px', 572 'fa fa-amazon' => 'fa fa-amazon', 573 'fa fa-calendar-plus-o' => 'fa fa-calendar-plus-o', 574 'fa fa-calendar-minus-o' => 'fa fa-calendar-minus-o', 575 'fa fa-calendar-times-o' => 'fa fa-calendar-times-o', 576 'fa fa-calendar-check-o' => 'fa fa-calendar-check-o', 577 'fa fa-industry' => 'fa fa-industry', 578 'fa fa-map-pin' => 'fa fa-map-pin', 579 'fa fa-map-signs' => 'fa fa-map-signs', 580 'fa fa-map-o' => 'fa fa-map-o', 581 'fa fa-map' => 'fa fa-map', 582 'fa fa-commenting' => 'fa fa-commenting', 583 'fa fa-commenting-o' => 'fa fa-commenting-o', 584 'fa fa-houzz' => 'fa fa-houzz', 585 'fa fa-vimeo' => 'fa fa-vimeo', 586 'fa fa-black-tie' => 'fa fa-black-tie', 587 'fa fa-fonticons' => 'fa fa-fonticons', 588 'fa fa-reddit-alien' => 'fa fa-reddit-alien', 589 'fa fa-edge' => 'fa fa-edge', 590 'fa fa-credit-card-alt' => 'fa fa-credit-card-alt', 591 'fa fa-codiepie' => 'fa fa-codiepie', 592 'fa fa-modx' => 'fa fa-modx', 593 'fa fa-fort-awesome' => 'fa fa-fort-awesome', 594 'fa fa-usb' => 'fa fa-usb', 595 'fa fa-product-hunt' => 'fa fa-product-hunt', 596 'fa fa-mixcloud' => 'fa fa-mixcloud', 597 'fa fa-scribd' => 'fa fa-scribd', 598 'fa fa-pause-circle' => 'fa fa-pause-circle', 599 'fa fa-pause-circle-o' => 'fa fa-pause-circle-o', 600 'fa fa-stop-circle' => 'fa fa-stop-circle', 601 'fa fa-stop-circle-o' => 'fa fa-stop-circle-o', 602 'fa fa-shopping-bag' => 'fa fa-shopping-bag', 603 'fa fa-shopping-basket' => 'fa fa-shopping-basket', 604 'fa fa-hashtag' => 'fa fa-hashtag', 605 'fa fa-bluetooth' => 'fa fa-bluetooth', 606 'fa fa-bluetooth-b' => 'fa fa-bluetooth-b', 607 'fa fa-percent' => 'fa fa-percent', 608 'fa fa-gitlab' => 'fa fa-gitlab', 609 'fa fa-wpbeginner' => 'fa fa-wpbeginner', 610 'fa fa-wpforms' => 'fa fa-wpforms', 611 'fa fa-envira' => 'fa fa-envira', 612 'fa fa-universal-access' => 'fa fa-universal-access', 613 'fa fa-wheelchair-alt' => 'fa fa-wheelchair-alt', 614 'fa fa-question-circle-o' => 'fa fa-question-circle-o', 615 'fa fa-blind' => 'fa fa-blind', 616 'fa fa-audio-description' => 'fa fa-audio-description', 617 'fa fa-volume-control-phone' => 'fa fa-volume-control-phone', 618 'fa fa-braille' => 'fa fa-braille', 619 'fa fa-assistive-listening-systems' => 'fa fa-assistive-listening-systems', 620 'fa fa-american-sign-language-interpreting' => 'fa fa-american-sign-language-interpreting', 621 'fa fa-deaf' => 'fa fa-deaf', 622 'fa fa-glide' => 'fa fa-glide', 623 'fa fa-glide-g' => 'fa fa-glide-g', 624 'fa fa-sign-language' => 'fa fa-sign-language', 625 'fa fa-low-vision' => 'fa fa-low-vision', 626 'fa fa-viadeo' => 'fa fa-viadeo', 627 'fa fa-viadeo-square' => 'fa fa-viadeo-square', 628 'fa fa-snapchat' => 'fa fa-snapchat', 629 'fa fa-snapchat-ghost' => 'fa fa-snapchat-ghost', 630 'fa fa-snapchat-square' => 'fa fa-snapchat-square', 631 'fa fa-pied-piper' => 'fa fa-pied-piper', 632 'fa fa-first-order' => 'fa fa-first-order', 633 'fa fa-yoast' => 'fa fa-yoast', 634 'fa fa-themeisle' => 'fa fa-themeisle', 635 'fa fa-google-plus-official' => 'fa fa-google-plus-official', 636 'fa fa-font-awesome' => 'fa fa-font-awesome', 637 'fa fa-handshake-o' => 'fa fa-handshake-o', 638 'fa fa-envelope-open' => 'fa fa-envelope-open', 639 'fa fa-envelope-open-o' => 'fa fa-envelope-open-o', 640 'fa fa-linode' => 'fa fa-linode', 641 'fa fa-address-book' => 'fa fa-address-book', 642 'fa fa-address-book-o' => 'fa fa-address-book-o', 643 'fa fa-address-card' => 'fa fa-address-card', 644 'fa fa-address-card-o' => 'fa fa-address-card-o', 645 'fa fa-user-circle' => 'fa fa-user-circle', 646 'fa fa-user-circle-o' => 'fa fa-user-circle-o', 647 'fa fa-user-o' => 'fa fa-user-o', 648 'fa fa-id-badge' => 'fa fa-id-badge', 649 'fa fa-id-card' => 'fa fa-id-card', 650 'fa fa-id-card-o' => 'fa fa-id-card-o', 651 'fa fa-quora' => 'fa fa-quora', 652 'fa fa-free-code-camp' => 'fa fa-free-code-camp', 653 'fa fa-telegram' => 'fa fa-telegram', 654 'fa fa-thermometer-full' => 'fa fa-thermometer-full', 655 'fa fa-thermometer-three-quarters' => 'fa fa-thermometer-three-quarters', 656 'fa fa-thermometer-half' => 'fa fa-thermometer-half', 657 'fa fa-thermometer-quarter' => 'fa fa-thermometer-quarter', 658 'fa fa-thermometer-empty' => 'fa fa-thermometer-empty', 659 'fa fa-shower' => 'fa fa-shower', 660 'fa fa-bath' => 'fa fa-bath', 661 'fa fa-podcast' => 'fa fa-podcast', 662 'fa fa-window-maximize' => 'fa fa-window-maximize', 663 'fa fa-window-minimize' => 'fa fa-window-minimize', 664 'fa fa-window-restore' => 'fa fa-window-restore', 665 'fa fa-window-close' => 'fa fa-window-close', 666 'fa fa-window-close-o' => 'fa fa-window-close-o', 667 'fa fa-bandcamp' => 'fa fa-bandcamp', 668 'fa fa-grav' => 'fa fa-grav', 669 'fa fa-etsy' => 'fa fa-etsy', 670 'fa fa-imdb' => 'fa fa-imdb', 671 'fa fa-ravelry' => 'fa fa-ravelry', 672 'fa fa-eercast' => 'fa fa-eercast', 673 'fa fa-microchip' => 'fa fa-microchip', 674 'fa fa-snowflake-o' => 'fa fa-snowflake-o', 675 'fa fa-superpowers' => 'fa fa-superpowers', 676 'fa fa-wpexplorer' => 'fa fa-wpexplorer', 677 'fa fa-meetup' => 'fa fa-meetup', 678 678 ); 679 680 681 $fa5all = array( 682 'fas fa-ad', 683 'fas fa-address-book', 684 'fas fa-address-card', 685 'fas fa-adjust', 686 'fas fa-air-freshener', 687 'fas fa-align-center', 688 'fas fa-align-justify', 689 'fas fa-align-left', 690 'fas fa-align-right', 691 'fas fa-allergies', 692 'fas fa-ambulance', 693 'fas fa-american-sign-language-interpreting', 694 'fas fa-anchor', 695 'fas fa-angle-double-down', 696 'fas fa-angle-double-left', 697 'fas fa-angle-double-right', 698 'fas fa-angle-double-up', 699 'fas fa-angle-down', 700 'fas fa-angle-left', 701 'fas fa-angle-right', 702 'fas fa-angle-up', 703 'fas fa-angry', 704 'fas fa-ankh', 705 'fas fa-apple-alt', 706 'fas fa-archive', 707 'fas fa-archway', 708 'fas fa-arrow-alt-circle-down', 709 'fas fa-arrow-alt-circle-left', 710 'fas fa-arrow-alt-circle-right', 711 'fas fa-arrow-alt-circle-up', 712 'fas fa-arrow-circle-down', 713 'fas fa-arrow-circle-left', 714 'fas fa-arrow-circle-right', 715 'fas fa-arrow-circle-up', 716 'fas fa-arrow-down', 717 'fas fa-arrow-left', 718 'fas fa-arrow-right', 719 'fas fa-arrow-up', 720 'fas fa-arrows-alt', 721 'fas fa-arrows-alt-h', 722 'fas fa-arrows-alt-v', 723 'fas fa-assistive-listening-systems', 724 'fas fa-asterisk', 725 'fas fa-at', 726 'fas fa-atlas', 727 'fas fa-atom', 728 'fas fa-audio-description', 729 'fas fa-award', 730 'fas fa-baby', 731 'fas fa-baby-carriage', 732 'fas fa-backspace', 733 'fas fa-backward', 734 'fas fa-bacon', 735 'fas fa-balance-scale', 736 'fas fa-ban', 737 'fas fa-band-aid', 738 'fas fa-barcode', 739 'fas fa-bars', 740 'fas fa-baseball-ball', 741 'fas fa-basketball-ball', 742 'fas fa-bath', 743 'fas fa-battery-empty', 744 'fas fa-battery-full', 745 'fas fa-battery-half', 746 'fas fa-battery-quarter', 747 'fas fa-battery-three-quarters', 748 'fas fa-bed', 749 'fas fa-beer', 750 'fas fa-bell', 751 'fas fa-bell-slash', 752 'fas fa-bezier-curve', 753 'fas fa-bible', 754 'fas fa-bicycle', 755 'fas fa-binoculars', 756 'fas fa-biohazard', 757 'fas fa-birthday-cake', 758 'fas fa-blender', 759 'fas fa-blender-phone', 760 'fas fa-blind', 761 'fas fa-blog', 762 'fas fa-bold', 763 'fas fa-bolt', 764 'fas fa-bomb', 765 'fas fa-bone', 766 'fas fa-bong', 767 'fas fa-book', 768 'fas fa-book-dead', 769 'fas fa-book-medical', 770 'fas fa-book-open', 771 'fas fa-book-reader', 772 'fas fa-bookmark', 773 'fas fa-bowling-ball', 774 'fas fa-box', 775 'fas fa-box-open', 776 'fas fa-boxes', 777 'fas fa-braille', 778 'fas fa-brain', 779 'fas fa-bread-slice', 780 'fas fa-briefcase', 781 'fas fa-briefcase-medical', 782 'fas fa-broadcast-tower', 783 'fas fa-broom', 784 'fas fa-brush', 785 'fas fa-bug', 786 'fas fa-building', 787 'fas fa-bullhorn', 788 'fas fa-bullseye', 789 'fas fa-burn', 790 'fas fa-bus', 791 'fas fa-bus-alt', 792 'fas fa-business-time', 793 'fas fa-calculator', 794 'fas fa-calendar', 795 'fas fa-calendar-alt', 796 'fas fa-calendar-check', 797 'fas fa-calendar-day', 798 'fas fa-calendar-minus', 799 'fas fa-calendar-plus', 800 'fas fa-calendar-times', 801 'fas fa-calendar-week', 802 'fas fa-camera', 803 'fas fa-camera-retro', 804 'fas fa-campground', 805 'fas fa-candy-cane', 806 'fas fa-cannabis', 807 'fas fa-capsules', 808 'fas fa-car', 809 'fas fa-car-alt', 810 'fas fa-car-battery', 811 'fas fa-car-crash', 812 'fas fa-car-side', 813 'fas fa-caret-down', 814 'fas fa-caret-left', 815 'fas fa-caret-right', 816 'fas fa-caret-square-down', 817 'fas fa-caret-square-left', 818 'fas fa-caret-square-right', 819 'fas fa-caret-square-up', 820 'fas fa-caret-up', 821 'fas fa-carrot', 822 'fas fa-cart-arrow-down', 823 'fas fa-cart-plus', 824 'fas fa-cash-register', 825 'fas fa-cat', 826 'fas fa-certificate', 827 'fas fa-chair', 828 'fas fa-chalkboard', 829 'fas fa-chalkboard-teacher', 830 'fas fa-charging-station', 831 'fas fa-chart-area', 832 'fas fa-chart-bar', 833 'fas fa-chart-line', 834 'fas fa-chart-pie', 835 'fas fa-check', 836 'fas fa-check-circle', 837 'fas fa-check-double', 838 'fas fa-check-square', 839 'fas fa-cheese', 840 'fas fa-chess', 841 'fas fa-chess-bishop', 842 'fas fa-chess-board', 843 'fas fa-chess-king', 844 'fas fa-chess-knight', 845 'fas fa-chess-pawn', 846 'fas fa-chess-queen', 847 'fas fa-chess-rook', 848 'fas fa-chevron-circle-down', 849 'fas fa-chevron-circle-left', 850 'fas fa-chevron-circle-right', 851 'fas fa-chevron-circle-up', 852 'fas fa-chevron-down', 853 'fas fa-chevron-left', 854 'fas fa-chevron-right', 855 'fas fa-chevron-up', 856 'fas fa-child', 857 'fas fa-church', 858 'fas fa-circle', 859 'fas fa-circle-notch', 860 'fas fa-city', 861 'fas fa-clinic-medical', 862 'fas fa-clipboard', 863 'fas fa-clipboard-check', 864 'fas fa-clipboard-list', 865 'fas fa-clock', 866 'fas fa-clone', 867 'fas fa-closed-captioning', 868 'fas fa-cloud', 869 'fas fa-cloud-download-alt', 870 'fas fa-cloud-meatball', 871 'fas fa-cloud-moon', 872 'fas fa-cloud-moon-rain', 873 'fas fa-cloud-rain', 874 'fas fa-cloud-showers-heavy', 875 'fas fa-cloud-sun', 876 'fas fa-cloud-sun-rain', 877 'fas fa-cloud-upload-alt', 878 'fas fa-cocktail', 879 'fas fa-code', 880 'fas fa-code-branch', 881 'fas fa-coffee', 882 'fas fa-cog', 883 'fas fa-cogs', 884 'fas fa-coins', 885 'fas fa-columns', 886 'fas fa-comment', 887 'fas fa-comment-alt', 888 'fas fa-comment-dollar', 889 'fas fa-comment-dots', 890 'fas fa-comment-medical', 891 'fas fa-comment-slash', 892 'fas fa-comments', 893 'fas fa-comments-dollar', 894 'fas fa-compact-disc', 895 'fas fa-compass', 896 'fas fa-compress', 897 'fas fa-compress-arrows-alt', 898 'fas fa-concierge-bell', 899 'fas fa-cookie', 900 'fas fa-cookie-bite', 901 'fas fa-copy', 902 'fas fa-copyright', 903 'fas fa-couch', 904 'fas fa-credit-card', 905 'fas fa-crop', 906 'fas fa-crop-alt', 907 'fas fa-cross', 908 'fas fa-crosshairs', 909 'fas fa-crow', 910 'fas fa-crown', 911 'fas fa-crutch', 912 'fas fa-cube', 913 'fas fa-cubes', 914 'fas fa-cut', 915 'fas fa-database', 916 'fas fa-deaf', 917 'fas fa-democrat', 918 'fas fa-desktop', 919 'fas fa-dharmachakra', 920 'fas fa-diagnoses', 921 'fas fa-dice', 922 'fas fa-dice-d20', 923 'fas fa-dice-d6', 924 'fas fa-dice-five', 925 'fas fa-dice-four', 926 'fas fa-dice-one', 927 'fas fa-dice-six', 928 'fas fa-dice-three', 929 'fas fa-dice-two', 930 'fas fa-digital-tachograph', 931 'fas fa-directions', 932 'fas fa-divide', 933 'fas fa-dizzy', 934 'fas fa-dna', 935 'fas fa-dog', 936 'fas fa-dollar-sign', 937 'fas fa-dolly', 938 'fas fa-dolly-flatbed', 939 'fas fa-donate', 940 'fas fa-door-closed', 941 'fas fa-door-open', 942 'fas fa-dot-circle', 943 'fas fa-dove', 944 'fas fa-download', 945 'fas fa-drafting-compass', 946 'fas fa-dragon', 947 'fas fa-draw-polygon', 948 'fas fa-drum', 949 'fas fa-drum-steelpan', 950 'fas fa-drumstick-bite', 951 'fas fa-dumbbell', 952 'fas fa-dumpster', 953 'fas fa-dumpster-fire', 954 'fas fa-dungeon', 955 'fas fa-edit', 956 'fas fa-egg', 957 'fas fa-eject', 958 'fas fa-ellipsis-h', 959 'fas fa-ellipsis-v', 960 'fas fa-envelope', 961 'fas fa-envelope-open', 962 'fas fa-envelope-open-text', 963 'fas fa-envelope-square', 964 'fas fa-equals', 965 'fas fa-eraser', 966 'fas fa-ethernet', 967 'fas fa-euro-sign', 968 'fas fa-exchange-alt', 969 'fas fa-exclamation', 970 'fas fa-exclamation-circle', 971 'fas fa-exclamation-triangle', 972 'fas fa-expand', 973 'fas fa-expand-arrows-alt', 974 'fas fa-external-link-alt', 975 'fas fa-external-link-square-alt', 976 'fas fa-eye', 977 'fas fa-eye-dropper', 978 'fas fa-eye-slash', 979 'fas fa-fast-backward', 980 'fas fa-fast-forward', 981 'fas fa-fax', 982 'fas fa-feather', 983 'fas fa-feather-alt', 984 'fas fa-female', 985 'fas fa-fighter-jet', 986 'fas fa-file', 987 'fas fa-file-alt', 988 'fas fa-file-archive', 989 'fas fa-file-audio', 990 'fas fa-file-code', 991 'fas fa-file-contract', 992 'fas fa-file-csv', 993 'fas fa-file-download', 994 'fas fa-file-excel', 995 'fas fa-file-export', 996 'fas fa-file-image', 997 'fas fa-file-import', 998 'fas fa-file-invoice', 999 'fas fa-file-invoice-dollar', 1000 'fas fa-file-medical', 1001 'fas fa-file-medical-alt', 1002 'fas fa-file-pdf', 1003 'fas fa-file-powerpoint', 1004 'fas fa-file-prescription', 1005 'fas fa-file-signature', 1006 'fas fa-file-upload', 1007 'fas fa-file-video', 1008 'fas fa-file-word', 1009 'fas fa-fill', 1010 'fas fa-fill-drip', 1011 'fas fa-film', 1012 'fas fa-filter', 1013 'fas fa-fingerprint', 1014 'fas fa-fire', 1015 'fas fa-fire-alt', 1016 'fas fa-fire-extinguisher', 1017 'fas fa-first-aid', 1018 'fas fa-fish', 1019 'fas fa-fist-raised', 1020 'fas fa-flag', 1021 'fas fa-flag-checkered', 1022 'fas fa-flag-usa', 1023 'fas fa-flask', 1024 'fas fa-flushed', 1025 'fas fa-folder', 1026 'fas fa-folder-minus', 1027 'fas fa-folder-open', 1028 'fas fa-folder-plus', 1029 'fas fa-font', 1030 'fas fa-football-ball', 1031 'fas fa-forward', 1032 'fas fa-frog', 1033 'fas fa-frown', 1034 'fas fa-frown-open', 1035 'fas fa-funnel-dollar', 1036 'fas fa-futbol', 1037 'fas fa-gamepad', 1038 'fas fa-gas-pump', 1039 'fas fa-gavel', 1040 'fas fa-gem', 1041 'fas fa-genderless', 1042 'fas fa-ghost', 1043 'fas fa-gift', 1044 'fas fa-gifts', 1045 'fas fa-glass-cheers', 1046 'fas fa-glass-martini', 1047 'fas fa-glass-martini-alt', 1048 'fas fa-glass-whiskey', 1049 'fas fa-glasses', 1050 'fas fa-globe', 1051 'fas fa-globe-africa', 1052 'fas fa-globe-americas', 1053 'fas fa-globe-asia', 1054 'fas fa-globe-europe', 1055 'fas fa-golf-ball', 1056 'fas fa-gopuram', 1057 'fas fa-graduation-cap', 1058 'fas fa-greater-than', 1059 'fas fa-greater-than-equal', 1060 'fas fa-grimace', 1061 'fas fa-grin', 1062 'fas fa-grin-alt', 1063 'fas fa-grin-beam', 1064 'fas fa-grin-beam-sweat', 1065 'fas fa-grin-hearts', 1066 'fas fa-grin-squint', 1067 'fas fa-grin-squint-tears', 1068 'fas fa-grin-stars', 1069 'fas fa-grin-tears', 1070 'fas fa-grin-tongue', 1071 'fas fa-grin-tongue-squint', 1072 'fas fa-grin-tongue-wink', 1073 'fas fa-grin-wink', 1074 'fas fa-grip-horizontal', 1075 'fas fa-grip-lines', 1076 'fas fa-grip-lines-vertical', 1077 'fas fa-grip-vertical', 1078 'fas fa-guitar', 1079 'fas fa-h-square', 1080 'fas fa-hamburger', 1081 'fas fa-hammer', 1082 'fas fa-hamsa', 1083 'fas fa-hand-holding', 1084 'fas fa-hand-holding-heart', 1085 'fas fa-hand-holding-usd', 1086 'fas fa-hand-lizard', 1087 'fas fa-hand-middle-finger', 1088 'fas fa-hand-paper', 1089 'fas fa-hand-peace', 1090 'fas fa-hand-point-down', 1091 'fas fa-hand-point-left', 1092 'fas fa-hand-point-right', 1093 'fas fa-hand-point-up', 1094 'fas fa-hand-pointer', 1095 'fas fa-hand-rock', 1096 'fas fa-hand-scissors', 1097 'fas fa-hand-spock', 1098 'fas fa-hands', 1099 'fas fa-hands-helping', 1100 'fas fa-handshake', 1101 'fas fa-hanukiah', 1102 'fas fa-hard-hat', 1103 'fas fa-hashtag', 1104 'fas fa-hat-wizard', 1105 'fas fa-haykal', 1106 'fas fa-hdd', 1107 'fas fa-heading', 1108 'fas fa-headphones', 1109 'fas fa-headphones-alt', 1110 'fas fa-headset', 1111 'fas fa-heart', 1112 'fas fa-heart-broken', 1113 'fas fa-heartbeat', 1114 'fas fa-helicopter', 1115 'fas fa-highlighter', 1116 'fas fa-hiking', 1117 'fas fa-hippo', 1118 'fas fa-history', 1119 'fas fa-hockey-puck', 1120 'fas fa-holly-berry', 1121 'fas fa-home', 1122 'fas fa-horse', 1123 'fas fa-horse-head', 1124 'fas fa-hospital', 1125 'fas fa-hospital-alt', 1126 'fas fa-hospital-symbol', 1127 'fas fa-hot-tub', 1128 'fas fa-hotdog', 1129 'fas fa-hotel', 1130 'fas fa-hourglass', 1131 'fas fa-hourglass-end', 1132 'fas fa-hourglass-half', 1133 'fas fa-hourglass-start', 1134 'fas fa-house-damage', 1135 'fas fa-hryvnia', 1136 'fas fa-i-cursor', 1137 'fas fa-ice-cream', 1138 'fas fa-icicles', 1139 'fas fa-id-badge', 1140 'fas fa-id-card', 1141 'fas fa-id-card-alt', 1142 'fas fa-igloo', 1143 'fas fa-image', 1144 'fas fa-images', 1145 'fas fa-inbox', 1146 'fas fa-indent', 1147 'fas fa-industry', 1148 'fas fa-infinity', 1149 'fas fa-info', 1150 'fas fa-info-circle', 1151 'fas fa-italic', 1152 'fas fa-jedi', 1153 'fas fa-joint', 1154 'fas fa-journal-whills', 1155 'fas fa-kaaba', 1156 'fas fa-key', 1157 'fas fa-keyboard', 1158 'fas fa-khanda', 1159 'fas fa-kiss', 1160 'fas fa-kiss-beam', 1161 'fas fa-kiss-wink-heart', 1162 'fas fa-kiwi-bird', 1163 'fas fa-landmark', 1164 'fas fa-language', 1165 'fas fa-laptop', 1166 'fas fa-laptop-code', 1167 'fas fa-laptop-medical', 1168 'fas fa-laugh', 1169 'fas fa-laugh-beam', 1170 'fas fa-laugh-squint', 1171 'fas fa-laugh-wink', 1172 'fas fa-layer-group', 1173 'fas fa-leaf', 1174 'fas fa-lemon', 1175 'fas fa-less-than', 1176 'fas fa-less-than-equal', 1177 'fas fa-level-down-alt', 1178 'fas fa-level-up-alt', 1179 'fas fa-life-ring', 1180 'fas fa-lightbulb', 1181 'fas fa-link', 1182 'fas fa-lira-sign', 1183 'fas fa-list', 1184 'fas fa-list-alt', 1185 'fas fa-list-ol', 1186 'fas fa-list-ul', 1187 'fas fa-location-arrow', 1188 'fas fa-lock', 1189 'fas fa-lock-open', 1190 'fas fa-long-arrow-alt-down', 1191 'fas fa-long-arrow-alt-left', 1192 'fas fa-long-arrow-alt-right', 1193 'fas fa-long-arrow-alt-up', 1194 'fas fa-low-vision', 1195 'fas fa-luggage-cart', 1196 'fas fa-magic', 1197 'fas fa-magnet', 1198 'fas fa-mail-bulk', 1199 'fas fa-male', 1200 'fas fa-map', 1201 'fas fa-map-marked', 1202 'fas fa-map-marked-alt', 1203 'fas fa-map-marker', 1204 'fas fa-map-marker-alt', 1205 'fas fa-map-pin', 1206 'fas fa-map-signs', 1207 'fas fa-marker', 1208 'fas fa-mars', 1209 'fas fa-mars-double', 1210 'fas fa-mars-stroke', 1211 'fas fa-mars-stroke-h', 1212 'fas fa-mars-stroke-v', 1213 'fas fa-mask', 1214 'fas fa-medal', 1215 'fas fa-medkit', 1216 'fas fa-meh', 1217 'fas fa-meh-blank', 1218 'fas fa-meh-rolling-eyes', 1219 'fas fa-memory', 1220 'fas fa-menorah', 1221 'fas fa-mercury', 1222 'fas fa-meteor', 1223 'fas fa-microchip', 1224 'fas fa-microphone', 1225 'fas fa-microphone-alt', 1226 'fas fa-microphone-alt-slash', 1227 'fas fa-microphone-slash', 1228 'fas fa-microscope', 1229 'fas fa-minus', 1230 'fas fa-minus-circle', 1231 'fas fa-minus-square', 1232 'fas fa-mitten', 1233 'fas fa-mobile', 1234 'fas fa-mobile-alt', 1235 'fas fa-money-bill', 1236 'fas fa-money-bill-alt', 1237 'fas fa-money-bill-wave', 1238 'fas fa-money-bill-wave-alt', 1239 'fas fa-money-check', 1240 'fas fa-money-check-alt', 1241 'fas fa-monument', 1242 'fas fa-moon', 1243 'fas fa-mortar-pestle', 1244 'fas fa-mosque', 1245 'fas fa-motorcycle', 1246 'fas fa-mountain', 1247 'fas fa-mouse-pointer', 1248 'fas fa-mug-hot', 1249 'fas fa-music', 1250 'fas fa-network-wired', 1251 'fas fa-neuter', 1252 'fas fa-newspaper', 1253 'fas fa-not-equal', 1254 'fas fa-notes-medical', 1255 'fas fa-object-group', 1256 'fas fa-object-ungroup', 1257 'fas fa-oil-can', 1258 'fas fa-om', 1259 'fas fa-otter', 1260 'fas fa-outdent', 1261 'fas fa-pager', 1262 'fas fa-paint-brush', 1263 'fas fa-paint-roller', 1264 'fas fa-palette', 1265 'fas fa-pallet', 1266 'fas fa-paper-plane', 1267 'fas fa-paperclip', 1268 'fas fa-parachute-box', 1269 'fas fa-paragraph', 1270 'fas fa-parking', 1271 'fas fa-passport', 1272 'fas fa-pastafarianism', 1273 'fas fa-paste', 1274 'fas fa-pause', 1275 'fas fa-pause-circle', 1276 'fas fa-paw', 1277 'fas fa-peace', 1278 'fas fa-pen', 1279 'fas fa-pen-alt', 1280 'fas fa-pen-fancy', 1281 'fas fa-pen-nib', 1282 'fas fa-pen-square', 1283 'fas fa-pencil-alt', 1284 'fas fa-pencil-ruler', 1285 'fas fa-people-carry', 1286 'fas fa-pepper-hot', 1287 'fas fa-percent', 1288 'fas fa-percentage', 1289 'fas fa-person-booth', 1290 'fas fa-phone', 1291 'fas fa-phone-slash', 1292 'fas fa-phone-square', 1293 'fas fa-phone-volume', 1294 'fas fa-piggy-bank', 1295 'fas fa-pills', 1296 'fas fa-pizza-slice', 1297 'fas fa-place-of-worship', 1298 'fas fa-plane', 1299 'fas fa-plane-arrival', 1300 'fas fa-plane-departure', 1301 'fas fa-play', 1302 'fas fa-play-circle', 1303 'fas fa-plug', 1304 'fas fa-plus', 1305 'fas fa-plus-circle', 1306 'fas fa-plus-square', 1307 'fas fa-podcast', 1308 'fas fa-poll', 1309 'fas fa-poll-h', 1310 'fas fa-poo', 1311 'fas fa-poo-storm', 1312 'fas fa-poop', 1313 'fas fa-portrait', 1314 'fas fa-pound-sign', 1315 'fas fa-power-off', 1316 'fas fa-pray', 1317 'fas fa-praying-hands', 1318 'fas fa-prescription', 1319 'fas fa-prescription-bottle', 1320 'fas fa-prescription-bottle-alt', 1321 'fas fa-print', 1322 'fas fa-procedures', 1323 'fas fa-project-diagram', 1324 'fas fa-puzzle-piece', 1325 'fas fa-qrcode', 1326 'fas fa-question', 1327 'fas fa-question-circle', 1328 'fas fa-quidditch', 1329 'fas fa-quote-left', 1330 'fas fa-quote-right', 1331 'fas fa-quran', 1332 'fas fa-radiation', 1333 'fas fa-radiation-alt', 1334 'fas fa-rainbow', 1335 'fas fa-random', 1336 'fas fa-receipt', 1337 'fas fa-recycle', 1338 'fas fa-redo', 1339 'fas fa-redo-alt', 1340 'fas fa-registered', 1341 'fas fa-reply', 1342 'fas fa-reply-all', 1343 'fas fa-republican', 1344 'fas fa-restroom', 1345 'fas fa-retweet', 1346 'fas fa-ribbon', 1347 'fas fa-ring', 1348 'fas fa-road', 1349 'fas fa-robot', 1350 'fas fa-rocket', 1351 'fas fa-route', 1352 'fas fa-rss', 1353 'fas fa-rss-square', 1354 'fas fa-ruble-sign', 1355 'fas fa-ruler', 1356 'fas fa-ruler-combined', 1357 'fas fa-ruler-horizontal', 1358 'fas fa-ruler-vertical', 1359 'fas fa-running', 1360 'fas fa-rupee-sign', 1361 'fas fa-sad-cry', 1362 'fas fa-sad-tear', 1363 'fas fa-satellite', 1364 'fas fa-satellite-dish', 1365 'fas fa-save', 1366 'fas fa-school', 1367 'fas fa-screwdriver', 1368 'fas fa-scroll', 1369 'fas fa-sd-card', 1370 'fas fa-search', 1371 'fas fa-search-dollar', 1372 'fas fa-search-location', 1373 'fas fa-search-minus', 1374 'fas fa-search-plus', 1375 'fas fa-seedling', 1376 'fas fa-server', 1377 'fas fa-shapes', 1378 'fas fa-share', 1379 'fas fa-share-alt', 1380 'fas fa-share-alt-square', 1381 'fas fa-share-square', 1382 'fas fa-shekel-sign', 1383 'fas fa-shield-alt', 1384 'fas fa-ship', 1385 'fas fa-shipping-fast', 1386 'fas fa-shoe-prints', 1387 'fas fa-shopping-bag', 1388 'fas fa-shopping-basket', 1389 'fas fa-shopping-cart', 1390 'fas fa-shower', 1391 'fas fa-shuttle-van', 1392 'fas fa-sign', 1393 'fas fa-sign-in-alt', 1394 'fas fa-sign-language', 1395 'fas fa-sign-out-alt', 1396 'fas fa-signal', 1397 'fas fa-signature', 1398 'fas fa-sim-card', 1399 'fas fa-sitemap', 1400 'fas fa-skating', 1401 'fas fa-skiing', 1402 'fas fa-skiing-nordic', 1403 'fas fa-skull', 1404 'fas fa-skull-crossbones', 1405 'fas fa-slash', 1406 'fas fa-sleigh', 1407 'fas fa-sliders-h', 1408 'fas fa-smile', 1409 'fas fa-smile-beam', 1410 'fas fa-smile-wink', 1411 'fas fa-smog', 1412 'fas fa-smoking', 1413 'fas fa-smoking-ban', 1414 'fas fa-sms', 1415 'fas fa-snowboarding', 1416 'fas fa-snowflake', 1417 'fas fa-snowman', 1418 'fas fa-snowplow', 1419 'fas fa-socks', 1420 'fas fa-solar-panel', 1421 'fas fa-sort', 1422 'fas fa-sort-alpha-down', 1423 'fas fa-sort-alpha-up', 1424 'fas fa-sort-amount-down', 1425 'fas fa-sort-amount-up', 1426 'fas fa-sort-down', 1427 'fas fa-sort-numeric-down', 1428 'fas fa-sort-numeric-up', 1429 'fas fa-sort-up', 1430 'fas fa-spa', 1431 'fas fa-space-shuttle', 1432 'fas fa-spider', 1433 'fas fa-spinner', 1434 'fas fa-splotch', 1435 'fas fa-spray-can', 1436 'fas fa-square', 1437 'fas fa-square-full', 1438 'fas fa-square-root-alt', 1439 'fas fa-stamp', 1440 'fas fa-star', 1441 'fas fa-star-and-crescent', 1442 'fas fa-star-half', 1443 'fas fa-star-half-alt', 1444 'fas fa-star-of-david', 1445 'fas fa-star-of-life', 1446 'fas fa-step-backward', 1447 'fas fa-step-forward', 1448 'fas fa-stethoscope', 1449 'fas fa-sticky-note', 1450 'fas fa-stop', 1451 'fas fa-stop-circle', 1452 'fas fa-stopwatch', 1453 'fas fa-store', 1454 'fas fa-store-alt', 1455 'fas fa-stream', 1456 'fas fa-street-view', 1457 'fas fa-strikethrough', 1458 'fas fa-stroopwafel', 1459 'fas fa-subscript', 1460 'fas fa-subway', 1461 'fas fa-suitcase', 1462 'fas fa-suitcase-rolling', 1463 'fas fa-sun', 1464 'fas fa-superscript', 1465 'fas fa-surprise', 1466 'fas fa-swatchbook', 1467 'fas fa-swimmer', 1468 'fas fa-swimming-pool', 1469 'fas fa-synagogue', 1470 'fas fa-sync', 1471 'fas fa-sync-alt', 1472 'fas fa-syringe', 1473 'fas fa-table', 1474 'fas fa-table-tennis', 1475 'fas fa-tablet', 1476 'fas fa-tablet-alt', 1477 'fas fa-tablets', 1478 'fas fa-tachometer-alt', 1479 'fas fa-tag', 1480 'fas fa-tags', 1481 'fas fa-tape', 1482 'fas fa-tasks', 1483 'fas fa-taxi', 1484 'fas fa-teeth', 1485 'fas fa-teeth-open', 1486 'fas fa-temperature-high', 1487 'fas fa-temperature-low', 1488 'fas fa-tenge', 1489 'fas fa-terminal', 1490 'fas fa-text-height', 1491 'fas fa-text-width', 1492 'fas fa-th', 1493 'fas fa-th-large', 1494 'fas fa-th-list', 1495 'fas fa-theater-masks', 1496 'fas fa-thermometer', 1497 'fas fa-thermometer-empty', 1498 'fas fa-thermometer-full', 1499 'fas fa-thermometer-half', 1500 'fas fa-thermometer-quarter', 1501 'fas fa-thermometer-three-quarters', 1502 'fas fa-thumbs-down', 1503 'fas fa-thumbs-up', 1504 'fas fa-thumbtack', 1505 'fas fa-ticket-alt', 1506 'fas fa-times', 1507 'fas fa-times-circle', 1508 'fas fa-tint', 1509 'fas fa-tint-slash', 1510 'fas fa-tired', 1511 'fas fa-toggle-off', 1512 'fas fa-toggle-on', 1513 'fas fa-toilet', 1514 'fas fa-toilet-paper', 1515 'fas fa-toolbox', 1516 'fas fa-tools', 1517 'fas fa-tooth', 1518 'fas fa-torah', 1519 'fas fa-torii-gate', 1520 'fas fa-tractor', 1521 'fas fa-trademark', 1522 'fas fa-traffic-light', 1523 'fas fa-train', 1524 'fas fa-tram', 1525 'fas fa-transgender', 1526 'fas fa-transgender-alt', 1527 'fas fa-trash', 1528 'fas fa-trash-alt', 1529 'fas fa-trash-restore', 1530 'fas fa-trash-restore-alt', 1531 'fas fa-tree', 1532 'fas fa-trophy', 1533 'fas fa-truck', 1534 'fas fa-truck-loading', 1535 'fas fa-truck-monster', 1536 'fas fa-truck-moving', 1537 'fas fa-truck-pickup', 1538 'fas fa-tshirt', 1539 'fas fa-tty', 1540 'fas fa-tv', 1541 'fas fa-umbrella', 1542 'fas fa-umbrella-beach', 1543 'fas fa-underline', 1544 'fas fa-undo', 1545 'fas fa-undo-alt', 1546 'fas fa-universal-access', 1547 'fas fa-university', 1548 'fas fa-unlink', 1549 'fas fa-unlock', 1550 'fas fa-unlock-alt', 1551 'fas fa-upload', 1552 'fas fa-user', 1553 'fas fa-user-alt', 1554 'fas fa-user-alt-slash', 1555 'fas fa-user-astronaut', 1556 'fas fa-user-check', 1557 'fas fa-user-circle', 1558 'fas fa-user-clock', 1559 'fas fa-user-cog', 1560 'fas fa-user-edit', 1561 'fas fa-user-friends', 1562 'fas fa-user-graduate', 1563 'fas fa-user-injured', 1564 'fas fa-user-lock', 1565 'fas fa-user-md', 1566 'fas fa-user-minus', 1567 'fas fa-user-ninja', 1568 'fas fa-user-nurse', 1569 'fas fa-user-plus', 1570 'fas fa-user-secret', 1571 'fas fa-user-shield', 1572 'fas fa-user-slash', 1573 'fas fa-user-tag', 1574 'fas fa-user-tie', 1575 'fas fa-user-times', 1576 'fas fa-users', 1577 'fas fa-users-cog', 1578 'fas fa-utensil-spoon', 1579 'fas fa-utensils', 1580 'fas fa-vector-square', 1581 'fas fa-venus', 1582 'fas fa-venus-double', 1583 'fas fa-venus-mars', 1584 'fas fa-vial', 1585 'fas fa-vials', 1586 'fas fa-video', 1587 'fas fa-video-slash', 1588 'fas fa-vihara', 1589 'fas fa-volleyball-ball', 1590 'fas fa-volume-down', 1591 'fas fa-volume-mute', 1592 'fas fa-volume-off', 1593 'fas fa-volume-up', 1594 'fas fa-vote-yea', 1595 'fas fa-vr-cardboard', 1596 'fas fa-walking', 1597 'fas fa-wallet', 1598 'fas fa-warehouse', 1599 'fas fa-water', 1600 'fas fa-weight', 1601 'fas fa-weight-hanging', 1602 'fas fa-wheelchair', 1603 'fas fa-wifi', 1604 'fas fa-wind', 1605 'fas fa-window-close', 1606 'fas fa-window-maximize', 1607 'fas fa-window-minimize', 1608 'fas fa-window-restore', 1609 'fas fa-wine-bottle', 1610 'fas fa-wine-glass', 1611 'fas fa-wine-glass-alt', 1612 'fas fa-won-sign', 1613 'fas fa-wrench', 1614 'fas fa-x-ray', 1615 'fas fa-yen-sign', 1616 'fas fa-yin-yang', 1617 'fab fa-500px', 1618 'fab fa-accessible-icon', 1619 'fab fa-accusoft', 1620 'fab fa-acquisitions-incorporated', 1621 'fab fa-adn', 1622 'fab fa-adobe', 1623 'fab fa-adversal', 1624 'fab fa-affiliatetheme', 1625 'fab fa-algolia', 1626 'fab fa-alipay', 1627 'fab fa-amazon', 1628 'fab fa-amazon-pay', 1629 'fab fa-amilia', 1630 'fab fa-android', 1631 'fab fa-angellist', 1632 'fab fa-angrycreative', 1633 'fab fa-angular', 1634 'fab fa-app-store', 1635 'fab fa-app-store-ios', 1636 'fab fa-apper', 1637 'fab fa-apple', 1638 'fab fa-apple-pay', 1639 'fab fa-artstation', 1640 'fab fa-asymmetrik', 1641 'fab fa-atlassian', 1642 'fab fa-audible', 1643 'fab fa-autoprefixer', 1644 'fab fa-avianex', 1645 'fab fa-aviato', 1646 'fab fa-aws', 1647 'fab fa-bandcamp', 1648 'fab fa-behance', 1649 'fab fa-behance-square', 1650 'fab fa-bimobject', 1651 'fab fa-bitbucket', 1652 'fab fa-bitcoin', 1653 'fab fa-bity', 1654 'fab fa-black-tie', 1655 'fab fa-blackberry', 1656 'fab fa-blogger', 1657 'fab fa-blogger-b', 1658 'fab fa-bluetooth', 1659 'fab fa-bluetooth-b', 1660 'fab fa-btc', 1661 'fab fa-buromobelexperte', 1662 'fab fa-buysellads', 1663 'fab fa-canadian-maple-leaf', 1664 'fab fa-cc-amazon-pay', 1665 'fab fa-cc-amex', 1666 'fab fa-cc-apple-pay', 1667 'fab fa-cc-diners-club', 1668 'fab fa-cc-discover', 1669 'fab fa-cc-jcb', 1670 'fab fa-cc-mastercard', 1671 'fab fa-cc-paypal', 1672 'fab fa-cc-stripe', 1673 'fab fa-cc-visa', 1674 'fab fa-centercode', 1675 'fab fa-centos', 1676 'fab fa-chrome', 1677 'fab fa-cloudscale', 1678 'fab fa-cloudsmith', 1679 'fab fa-cloudversify', 1680 'fab fa-codepen', 1681 'fab fa-codiepie', 1682 'fab fa-confluence', 1683 'fab fa-connectdevelop', 1684 'fab fa-contao', 1685 'fab fa-cpanel', 1686 'fab fa-creative-commons', 1687 'fab fa-creative-commons-by', 1688 'fab fa-creative-commons-nc', 1689 'fab fa-creative-commons-nc-eu', 1690 'fab fa-creative-commons-nc-jp', 1691 'fab fa-creative-commons-nd', 1692 'fab fa-creative-commons-pd', 1693 'fab fa-creative-commons-pd-alt', 1694 'fab fa-creative-commons-remix', 1695 'fab fa-creative-commons-sa', 1696 'fab fa-creative-commons-sampling', 1697 'fab fa-creative-commons-sampling-plus', 1698 'fab fa-creative-commons-share', 1699 'fab fa-creative-commons-zero', 1700 'fab fa-critical-role', 1701 'fab fa-css3', 1702 'fab fa-css3-alt', 1703 'fab fa-cuttlefish', 1704 'fab fa-d-and-d', 1705 'fab fa-d-and-d-beyond', 1706 'fab fa-dashcube', 1707 'fab fa-delicious', 1708 'fab fa-deploydog', 1709 'fab fa-deskpro', 1710 'fab fa-dev', 1711 'fab fa-deviantart', 1712 'fab fa-dhl', 1713 'fab fa-diaspora', 1714 'fab fa-digg', 1715 'fab fa-digital-ocean', 1716 'fab fa-discord', 1717 'fab fa-discourse', 1718 'fab fa-dochub', 1719 'fab fa-docker', 1720 'fab fa-draft2digital', 1721 'fab fa-dribbble', 1722 'fab fa-dribbble-square', 1723 'fab fa-dropbox', 1724 'fab fa-drupal', 1725 'fab fa-dyalog', 1726 'fab fa-earlybirds', 1727 'fab fa-ebay', 1728 'fab fa-edge', 1729 'fab fa-elementor', 1730 'fab fa-ello', 1731 'fab fa-ember', 1732 'fab fa-empire', 1733 'fab fa-envira', 1734 'fab fa-erlang', 1735 'fab fa-ethereum', 1736 'fab fa-etsy', 1737 'fab fa-expeditedssl', 1738 'fab fa-facebook', 1739 'fab fa-facebook-f', 1740 'fab fa-facebook-messenger', 1741 'fab fa-facebook-square', 1742 'fab fa-fantasy-flight-games', 1743 'fab fa-fedex', 1744 'fab fa-fedora', 1745 'fab fa-figma', 1746 'fab fa-firefox', 1747 'fab fa-first-order', 1748 'fab fa-first-order-alt', 1749 'fab fa-firstdraft', 1750 'fab fa-flickr', 1751 'fab fa-flipboard', 1752 'fab fa-fly', 1753 'fab fa-font-awesome', 1754 'fab fa-font-awesome-alt', 1755 'fab fa-font-awesome-flag', 1756 'fab fa-fonticons', 1757 'fab fa-fonticons-fi', 1758 'fab fa-fort-awesome', 1759 'fab fa-fort-awesome-alt', 1760 'fab fa-forumbee', 1761 'fab fa-foursquare', 1762 'fab fa-free-code-camp', 1763 'fab fa-freebsd', 1764 'fab fa-fulcrum', 1765 'fab fa-galactic-republic', 1766 'fab fa-galactic-senate', 1767 'fab fa-get-pocket', 1768 'fab fa-gg', 1769 'fab fa-gg-circle', 1770 'fab fa-git', 1771 'fab fa-git-square', 1772 'fab fa-github', 1773 'fab fa-github-alt', 1774 'fab fa-github-square', 1775 'fab fa-gitkraken', 1776 'fab fa-gitlab', 1777 'fab fa-gitter', 1778 'fab fa-glide', 1779 'fab fa-glide-g', 1780 'fab fa-gofore', 1781 'fab fa-goodreads', 1782 'fab fa-goodreads-g', 1783 'fab fa-google', 1784 'fab fa-google-drive', 1785 'fab fa-google-play', 1786 'fab fa-google-plus', 1787 'fab fa-google-plus-g', 1788 'fab fa-google-plus-square', 1789 'fab fa-google-wallet', 1790 'fab fa-gratipay', 1791 'fab fa-grav', 1792 'fab fa-gripfire', 1793 'fab fa-grunt', 1794 'fab fa-gulp', 1795 'fab fa-hacker-news', 1796 'fab fa-hacker-news-square', 1797 'fab fa-hackerrank', 1798 'fab fa-hips', 1799 'fab fa-hire-a-helper', 1800 'fab fa-hooli', 1801 'fab fa-hornbill', 1802 'fab fa-hotjar', 1803 'fab fa-houzz', 1804 'fab fa-html5', 1805 'fab fa-hubspot', 1806 'fab fa-imdb', 1807 'fab fa-instagram', 1808 'fab fa-intercom', 1809 'fab fa-internet-explorer', 1810 'fab fa-invision', 1811 'fab fa-ioxhost', 1812 'fab fa-itunes', 1813 'fab fa-itunes-note', 1814 'fab fa-java', 1815 'fab fa-jedi-order', 1816 'fab fa-jenkins', 1817 'fab fa-jira', 1818 'fab fa-joget', 1819 'fab fa-joomla', 1820 'fab fa-js', 1821 'fab fa-js-square', 1822 'fab fa-jsfiddle', 1823 'fab fa-kaggle', 1824 'fab fa-keybase', 1825 'fab fa-keycdn', 1826 'fab fa-kickstarter', 1827 'fab fa-kickstarter-k', 1828 'fab fa-korvue', 1829 'fab fa-laravel', 1830 'fab fa-lastfm', 1831 'fab fa-lastfm-square', 1832 'fab fa-leanpub', 1833 'fab fa-less', 1834 'fab fa-line', 1835 'fab fa-linkedin', 1836 'fab fa-linkedin-in', 1837 'fab fa-linode', 1838 'fab fa-linux', 1839 'fab fa-lyft', 1840 'fab fa-magento', 1841 'fab fa-mailchimp', 1842 'fab fa-mandalorian', 1843 'fab fa-markdown', 1844 'fab fa-mastodon', 1845 'fab fa-maxcdn', 1846 'fab fa-medapps', 1847 'fab fa-medium', 1848 'fab fa-medium-m', 1849 'fab fa-medrt', 1850 'fab fa-meetup', 1851 'fab fa-megaport', 1852 'fab fa-mendeley', 1853 'fab fa-microsoft', 1854 'fab fa-mix', 1855 'fab fa-mixcloud', 1856 'fab fa-mizuni', 1857 'fab fa-modx', 1858 'fab fa-monero', 1859 'fab fa-napster', 1860 'fab fa-neos', 1861 'fab fa-nimblr', 1862 'fab fa-nintendo-switch', 1863 'fab fa-node', 1864 'fab fa-node-js', 1865 'fab fa-npm', 1866 'fab fa-ns8', 1867 'fab fa-nutritionix', 1868 'fab fa-odnoklassniki', 1869 'fab fa-odnoklassniki-square', 1870 'fab fa-old-republic', 1871 'fab fa-opencart', 1872 'fab fa-openid', 1873 'fab fa-opera', 1874 'fab fa-optin-monster', 1875 'fab fa-osi', 1876 'fab fa-page4', 1877 'fab fa-pagelines', 1878 'fab fa-palfed', 1879 'fab fa-patreon', 1880 'fab fa-paypal', 1881 'fab fa-penny-arcade', 1882 'fab fa-periscope', 1883 'fab fa-phabricator', 1884 'fab fa-phoenix-framework', 1885 'fab fa-phoenix-squadron', 1886 'fab fa-php', 1887 'fab fa-pied-piper', 1888 'fab fa-pied-piper-alt', 1889 'fab fa-pied-piper-hat', 1890 'fab fa-pied-piper-pp', 1891 'fab fa-pinterest', 1892 'fab fa-pinterest-p', 1893 'fab fa-pinterest-square', 1894 'fab fa-playstation', 1895 'fab fa-product-hunt', 1896 'fab fa-pushed', 1897 'fab fa-python', 1898 'fab fa-qq', 1899 'fab fa-quinscape', 1900 'fab fa-quora', 1901 'fab fa-r-project', 1902 'fab fa-raspberry-pi', 1903 'fab fa-ravelry', 1904 'fab fa-react', 1905 'fab fa-reacteurope', 1906 'fab fa-readme', 1907 'fab fa-rebel', 1908 'fab fa-red-river', 1909 'fab fa-reddit', 1910 'fab fa-reddit-alien', 1911 'fab fa-reddit-square', 1912 'fab fa-redhat', 1913 'fab fa-renren', 1914 'fab fa-replyd', 1915 'fab fa-researchgate', 1916 'fab fa-resolving', 1917 'fab fa-rev', 1918 'fab fa-rocketchat', 1919 'fab fa-rockrms', 1920 'fab fa-safari', 1921 'fab fa-sass', 1922 'fab fa-schlix', 1923 'fab fa-scribd', 1924 'fab fa-searchengin', 1925 'fab fa-sellcast', 1926 'fab fa-sellsy', 1927 'fab fa-servicestack', 1928 'fab fa-shirtsinbulk', 1929 'fab fa-shopware', 1930 'fab fa-simplybuilt', 1931 'fab fa-sistrix', 1932 'fab fa-sith', 1933 'fab fa-sketch', 1934 'fab fa-skyatlas', 1935 'fab fa-skype', 1936 'fab fa-slack', 1937 'fab fa-slack-hash', 1938 'fab fa-slideshare', 1939 'fab fa-snapchat', 1940 'fab fa-snapchat-ghost', 1941 'fab fa-snapchat-square', 1942 'fab fa-soundcloud', 1943 'fab fa-sourcetree', 1944 'fab fa-speakap', 1945 'fab fa-spotify', 1946 'fab fa-squarespace', 1947 'fab fa-stack-exchange', 1948 'fab fa-stack-overflow', 1949 'fab fa-staylinked', 1950 'fab fa-steam', 1951 'fab fa-steam-square', 1952 'fab fa-steam-symbol', 1953 'fab fa-sticker-mule', 1954 'fab fa-strava', 1955 'fab fa-stripe', 1956 'fab fa-stripe-s', 1957 'fab fa-studiovinari', 1958 'fab fa-stumbleupon', 1959 'fab fa-stumbleupon-circle', 1960 'fab fa-superpowers', 1961 'fab fa-supple', 1962 'fab fa-suse', 1963 'fab fa-teamspeak', 1964 'fab fa-telegram', 1965 'fab fa-telegram-plane', 1966 'fab fa-tencent-weibo', 1967 'fab fa-the-red-yeti', 1968 'fab fa-themeco', 1969 'fab fa-themeisle', 1970 'fab fa-think-peaks', 1971 'fab fa-trade-federation', 1972 'fab fa-trello', 1973 'fab fa-tripadvisor', 1974 'fab fa-tumblr', 1975 'fab fa-tumblr-square', 1976 'fab fa-twitch', 1977 'fab fa-twitter', 1978 'fab fa-twitter-square', 1979 'fab fa-typo3', 1980 'fab fa-uber', 1981 'fab fa-ubuntu', 1982 'fab fa-uikit', 1983 'fab fa-uniregistry', 1984 'fab fa-untappd', 1985 'fab fa-ups', 1986 'fab fa-usb', 1987 'fab fa-usps', 1988 'fab fa-ussunnah', 1989 'fab fa-vaadin', 1990 'fab fa-viacoin', 1991 'fab fa-viadeo', 1992 'fab fa-viadeo-square', 1993 'fab fa-viber', 1994 'fab fa-vimeo', 1995 'fab fa-vimeo-square', 1996 'fab fa-vimeo-v', 1997 'fab fa-vine', 1998 'fab fa-vk', 1999 'fab fa-vnv', 2000 'fab fa-vuejs', 2001 'fab fa-weebly', 2002 'fab fa-weibo', 2003 'fab fa-weixin', 2004 'fab fa-whatsapp', 2005 'fab fa-whatsapp-square', 2006 'fab fa-whmcs', 2007 'fab fa-wikipedia-w', 2008 'fab fa-windows', 2009 'fab fa-wix', 2010 'fab fa-wizards-of-the-coast', 2011 'fab fa-wolf-pack-battalion', 2012 'fab fa-wordpress', 2013 'fab fa-wordpress-simple', 2014 'fab fa-wpbeginner', 2015 'fab fa-wpexplorer', 2016 'fab fa-wpforms', 2017 'fab fa-wpressr', 2018 'fab fa-xbox', 2019 'fab fa-xing', 2020 'fab fa-xing-square', 2021 'fab fa-y-combinator', 2022 'fab fa-yahoo', 2023 'fab fa-yandex', 2024 'fab fa-yandex-international', 2025 'fab fa-yarn', 2026 'fab fa-yelp', 2027 'fab fa-yoast', 2028 'fab fa-youtube', 2029 'fab fa-youtube-square', 2030 'fab fa-zhihu', 2031 ); -
cmb2-field-type-font-awesome/trunk/readme.txt
r2023729 r2047328 2 2 Contributors: kaisercrazy 3 3 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=HFYQEQFUBJ2RE&lc=TR&item_name=Auto%20Attachments%20Donation¤cy_code=TRY&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted 4 Tags: font-awesome,cmb2,plugins,font awesome 4 Tags: font-awesome,cmb2,plugins,font awesome,font awesome 5,cmb2 fields 5 5 License: GPLv2 or later 6 6 License URI: http://www.gnu.org/licenses/gpl-2.0.html 7 7 Requires at least: 3.6 8 Tested up to: 5. 0.38 Tested up to: 5.1 9 9 Stable tag: trunk 10 10 … … 34 34 ` 35 35 36 == Sample Usage With Font Awesome 5 == 37 38 ` 39 $cmb->add_field( array( 40 'name' => __( 'Select Font Awesome Icon', 'cmb' ), 41 'id' => $prefix . 'iconselect', 42 'desc' => 'Select Font Awesome icon', 43 'type' => 'faiconselect', 44 'options' => array( 45 'fab fa-facebook' => 'fa fa-facebook', 46 'fab fa-500px' => 'fa fa-500px', 47 'fab fa-twitter' => 'fa fa-twitter', 48 'fas fa-address-book' => 'fas fa-address-book' 49 ), 50 'attributes' => array( 51 'faver' => 5 52 ) 53 ) ); 54 ` 55 36 56 == Installation == 37 57 … … 44 64 45 65 == Changelog == 66 = Version 1.3-beta = 67 * Test for Gutenberg 68 * Font Awesome 5 support added 69 * Code Fixes 70 46 71 = Version 1.2 = 47 72 * Version corrections and tests
Note: See TracChangeset
for help on using the changeset viewer.