소스 검색

Added new icon and image selector on new tab and edit tab

causefx 8 년 전
부모
커밋
437a9ba6c3

+ 12 - 0
api/functions/organizr-functions.php

@@ -1172,6 +1172,18 @@ function getImages()
 	return $allIcons;
 }
 
+function imageSelect($form)
+{
+	$i = 1;
+	$images = getImages();
+	$return = '<select class="form-control tabIconImageList" id="' . $form . '-chooseImage" name="chooseImage"><option lang="en">Select or type Icon</option>';
+	foreach ($images as $image) {
+		$i++;
+		$return .= '<option value="' . $image . '">' . basename($image) . '</option>';
+	}
+	return $return . '</select>';
+}
+
 function editImages()
 {
 	$array = array();

+ 32 - 0
api/pages/settings-tab-editor-tabs.php

@@ -12,6 +12,18 @@ $( \'#tabEditorTable\' ).sortable({
         submitTabOrder();
     }
 });
+$(".tabIconImageList").select2({
+	templateResult: formatImage,
+	templateSelection: formatImage,
+});
+allIcons().success(function(data) {
+    $(".tabIconIconList").select2({
+		data: data,
+		templateResult: formatIcon,
+		templateSelection: formatIcon,
+	});
+});
+
 </script>
 <div class="panel bg-org panel-info">
     <div class="panel-heading">
@@ -64,6 +76,16 @@ $( \'#tabEditorTable\' ).sortable({
             <label class="control-label" for="new-tab-form-inputPingURLNew" lang="en">Ping URL</label>
             <input type="text" class="form-control" id="new-tab-form-inputPingURLNew" name="pingURL"  placeholde="host/ip:port" rrequired="">
         </div>
+        <div class="row">
+	        <div class="form-group col-lg-6">
+	            <label class="control-label" for="new-tab-form-chooseImage" lang="en">Choose Image</label>
+	            ' . imageSelect("new-tab-form") . '
+	        </div>
+	        <div class="form-group col-lg-6">
+	            <label class="control-label" for="new-tab-form-chooseIcon" lang="en">Choose Icon</label>
+				<select class="form-control tabIconIconList" id="new-tab-form-chooseIcon" name="chooseIcon"><option lang="en">Select or type Icon</option></select>
+	        </div>
+	    </div>
         <div class="form-group">
             <label class="control-label" for="new-tab-form-inputImageNew" lang="en">Tab Image</label>
             <input type="text" class="form-control" id="new-tab-form-inputImageNew" name="tabImage"  required="">
@@ -97,6 +119,16 @@ $( \'#tabEditorTable\' ).sortable({
             <label class="control-label" for="edit-tab-form-pingURL" lang="en">Ping URL</label>
             <input type="text" class="form-control" id="edit-tab-form-pingURL" name="pingURL" placeholde="host/ip:port" required="">
         </div>
+        <div class="row">
+	        <div class="form-group col-lg-6">
+	            <label class="control-label" for="edit-tab-form-chooseImage" lang="en">Choose Image</label>
+	            ' . imageSelect("edit-tab-form") . '
+	        </div>
+	        <div class="form-group col-lg-6">
+	            <label class="control-label" for="edit-tab-form-chooseIcon" lang="en">Choose Icon</label>
+				<select class="form-control tabIconIconList" id="edit-tab-form-chooseIcon" name="chooseIcon"><option lang="en">Select or type Icon</option></select>
+	        </div>
+	    </div>
         <div class="form-group">
             <label class="control-label" for="edit-tab-form-inputImage" lang="en">Tab Image</label>
             <input type="text" class="form-control" id="edit-tab-form-inputImage" name="tabImage"  required="">

+ 1 - 0
api/plugins/invites.php

@@ -217,6 +217,7 @@ function invitesGetSettings()
 			),
 			array(
 				'type' => 'select2',
+				'class' => 'select2-multiple invite-select',
 				'name' => 'INVITES-plexLibraries',
 				'label' => 'Libraries',
 				'value' => $GLOBALS['INVITES-plexLibraries'],

+ 1 - 1
api/plugins/js/invites.js

@@ -440,7 +440,7 @@ $(document).on('click', '#INVITES-settings-button', function() {
     organizrAPI('POST','api/?v1/plugin',post).success(function(data) {
         var response = JSON.parse(data);
         $('#INVITES-settings-items').html(buildFormGroup(response.data));
-        $(".select2").select2();
+        $(".invite-select").select2();
         $('.selectpicker').selectpicker();
     }).fail(function(xhr) {
         console.error("Organizr Function: API Connection Failed");

+ 0 - 2
api/plugins/js/speedTest.js

@@ -185,8 +185,6 @@ $(document).on('click', '#SPEEDTEST-settings-button', function() {
     organizrAPI('POST','api/?v1/plugin',post).success(function(data) {
         var response = JSON.parse(data);
         $('#SPEEDTEST-settings-items').html(buildFormGroup(response.data));
-        $(".select2").select2();
-        $('.selectpicker').selectpicker();
     }).fail(function(xhr) {
         console.error("Organizr Function: API Connection Failed");
     });

+ 39 - 1
css/organizr.css

@@ -1093,4 +1093,42 @@ img.dark-logo {
 img.dark-logo-side {
     max-width: 160px;
     max-height: 35px;
-}
+}
+.select2-container {
+    box-sizing: border-box;
+    display: inline-block;
+    margin: 0;
+    position: relative;
+    vertical-align: middle;
+    width: 100% !important;
+}
+span.select2-selection.select2-selection--single,
+span.select2-selection.select2-selection--multiple{
+    background: inherit;
+    height: 38px;
+}
+img.img-chooser {
+    width: 20px;
+}
+.select2-container--default .select2-selection--single .select2-selection__rendered {
+    color: inherit;
+    line-height: 38px;
+}
+.select2-container--default .select2-selection--single .select2-selection__arrow {
+    height: 38px;
+    position: absolute;
+    top: 1px;
+    right: 1px;
+    width: 20px;
+}
+.select2-dropdown {
+    background-color: inherit;
+    border: 1px solid #aaa;
+    border-radius: 4px;
+    box-sizing: border-box;
+    display: block;
+    position: absolute;
+    left: -100000px;
+    width: 100%;
+    z-index: 1051;
+}

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
css/organizr.min.css


+ 6 - 0
css/themes/Organizr.css

@@ -354,4 +354,10 @@ a.mytooltip {
     border-color: #ffffff;
     color: #232323;
     border-radius: 10px 10px 0 0;
+}
+span.select2-results {
+    background: #0e0e0e;
+}
+.select2-container--default .select2-results__option[aria-selected=true] {
+    background-color: #232323;
 }

+ 25 - 1
js/custom.js

@@ -1686,4 +1686,28 @@ Mousetrap.bind('r r', function() { reloadCurrentTab() });
 Mousetrap.bind("c c", function() { closeCurrentTab() });
 Mousetrap.bind("s s", function() { openSettings() });
 Mousetrap.bind("h h", function() { openHomepage() });
-Mousetrap.bind("f f", function() { toggleFullScreen() });
+Mousetrap.bind("f f", function() { toggleFullScreen() });
+$(document).on('change', "#new-tab-form-chooseImage", function (e) {
+    var newIcon = $('#new-tab-form-chooseImage').val()
+    if(newIcon !== 'Select or type Icon'){
+        $('#new-tab-form-inputImageNew').val(newIcon);
+    }
+});
+$(document).on('change', "#edit-tab-form-chooseImage", function (e) {
+    var newIcon = $('#edit-tab-form-chooseImage').val()
+    if(newIcon !== 'Select or type Icon'){
+        $('#edit-tab-form-inputImage').val(newIcon);
+    }
+});
+$(document).on('change', "#new-tab-form-chooseIcon", function (e) {
+    var newIcon = $('#new-tab-form-chooseIcon').val()
+    if(newIcon !== 'Select or type Icon'){
+        $('#new-tab-form-inputImageNew').val(newIcon);
+    }
+});
+$(document).on('change', "#edit-tab-form-chooseIcon", function (e) {
+    var newIcon = $('#edit-tab-form-chooseIcon').val()
+    if(newIcon !== 'Select or type Icon'){
+        $('#edit-tab-form-inputImage').val(newIcon);
+    }
+});

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
js/custom.min.js


+ 25 - 1
js/functions.js

@@ -208,6 +208,25 @@ function noTabs(arrayItems){
 		$('.show-login').trigger('click');
 	}
 }
+function formatImage (icon) {
+    if (!icon.id || icon.text == 'Select or type Icon') {
+        return icon.text;
+    }
+    var baseUrl = "/user/pages/images/flags";
+    var $icon = $(
+        '<span><img src="' + icon.element.value + '" class="img-chooser" /> ' + icon.text + '</span>'
+    );
+    return $icon;
+}
+function formatIcon (icon) {
+    if (!icon.id || icon.text == 'Select or type Icon') {
+        return icon.text;
+    }
+    var $icon = $(
+        '<span>'+iconPrefix(icon.id)+ icon.text + '</span>'
+    );
+    return $icon;
+}
 function logout(){
 	message('',' Goodbye!',activeInfo.settings.notifications.position,'#FFF','success','10000');
 	organizrAPI('GET','api/?v1/logout').success(function(data) {
@@ -605,7 +624,7 @@ function buildFormItem(item){
 			return smallLabel+'<select class="form-control'+extraClass+'"'+placeholder+value+id+name+disabled+type+attr+'>'+selectOptions(item.options, item.value)+'</select>';
 			break;
 		case 'select2':
-			return smallLabel+'<select class="select2 m-b-10 select2-multiple'+extraClass+'"'+placeholder+value+id+name+disabled+type+attr+' multiple="multiple" data-placeholder="Choose">'+selectOptions(item.options, item.value)+'</select>';
+			return smallLabel+'<select class="m-b-10 '+extraClass+'"'+placeholder+value+id+name+disabled+type+attr+' multiple="multiple" data-placeholder="Choose">'+selectOptions(item.options, item.value)+'</select>';
 			break;
 		case 'switch':
 		case 'checkbox':
@@ -1818,6 +1837,11 @@ function githubVersions() {
 		url: "https://raw.githubusercontent.com/causefx/Organizr/"+activeInfo.branch+"/js/version.json",
 	});
 }
+function allIcons() {
+    return $.ajax({
+        url: "/js/icons.json",
+    });
+}
 function organizrConnect(path){
 	return $.ajax({
 		url: path,

+ 13154 - 0
js/icons.json

@@ -0,0 +1,13154 @@
+[
+  {
+    "id": "themify::arrow-up",
+    "text": "Arrow Up"
+  },
+  {
+    "id": "themify::arrow-right",
+    "text": "Arrow Right"
+  },
+  {
+    "id": "themify::arrow-left",
+    "text": "Arrow Left"
+  },
+  {
+    "id": "themify::arrow-down",
+    "text": "Arrow Down"
+  },
+  {
+    "id": "themify::arrows-vertical",
+    "text": "Arrows Vertical"
+  },
+  {
+    "id": "themify::arrows-horizontal",
+    "text": "Arrows Horizontal"
+  },
+  {
+    "id": "themify::angle-up",
+    "text": "Angle Up"
+  },
+  {
+    "id": "themify::angle-right",
+    "text": "Angle Right"
+  },
+  {
+    "id": "themify::angle-left",
+    "text": "Angle Left"
+  },
+  {
+    "id": "themify::angle-down",
+    "text": "Angle Down"
+  },
+  {
+    "id": "themify::angle-double-up",
+    "text": "Angle Double Up"
+  },
+  {
+    "id": "themify::angle-double-right",
+    "text": "Angle Double Right"
+  },
+  {
+    "id": "themify::angle-double-left",
+    "text": "Angle Double Left"
+  },
+  {
+    "id": "themify::angle-double-down",
+    "text": "Angle Double Down"
+  },
+  {
+    "id": "themify::move",
+    "text": "Move"
+  },
+  {
+    "id": "themify::fullscreen",
+    "text": "Fullscreen"
+  },
+  {
+    "id": "themify::arrow-top-right",
+    "text": "Arrow Top Right"
+  },
+  {
+    "id": "themify::arrow-top-left",
+    "text": "Arrow Top Left"
+  },
+  {
+    "id": "themify::arrow-circle-up",
+    "text": "Arrow Circle Up"
+  },
+  {
+    "id": "themify::arrow-circle-right",
+    "text": "Arrow Circle Right"
+  },
+  {
+    "id": "themify::arrow-circle-left",
+    "text": "Arrow Circle Left"
+  },
+  {
+    "id": "themify::arrow-circle-down",
+    "text": "Arrow Circle Down"
+  },
+  {
+    "id": "themify::arrows-corner",
+    "text": "Arrows Corner"
+  },
+  {
+    "id": "themify::split-v",
+    "text": "Split V"
+  },
+  {
+    "id": "themify::split-v-alt",
+    "text": "Split V Alt"
+  },
+  {
+    "id": "themify::split-h",
+    "text": "Split H"
+  },
+  {
+    "id": "themify::hand-point-up",
+    "text": "Hand Point Up"
+  },
+  {
+    "id": "themify::hand-point-right",
+    "text": "Hand Point Right"
+  },
+  {
+    "id": "themify::hand-point-left",
+    "text": "Hand Point Left"
+  },
+  {
+    "id": "themify::hand-point-down",
+    "text": "Hand Point Down"
+  },
+  {
+    "id": "themify::back-right",
+    "text": "Back Right"
+  },
+  {
+    "id": "themify::back-left",
+    "text": "Back Left"
+  },
+  {
+    "id": "themify::exchange-vertical",
+    "text": "Exchange Vertical"
+  },
+  {
+    "id": "themify::wand",
+    "text": "Wand"
+  },
+  {
+    "id": "themify::save",
+    "text": "Save"
+  },
+  {
+    "id": "themify::save-alt",
+    "text": "Save Alt"
+  },
+  {
+    "id": "themify::direction",
+    "text": "Direction"
+  },
+  {
+    "id": "themify::direction-alt",
+    "text": "Direction Alt"
+  },
+  {
+    "id": "themify::user",
+    "text": "User"
+  },
+  {
+    "id": "themify::link",
+    "text": "Link"
+  },
+  {
+    "id": "themify::unlink",
+    "text": "Unlink"
+  },
+  {
+    "id": "themify::trash",
+    "text": "Trash"
+  },
+  {
+    "id": "themify::target",
+    "text": "Target"
+  },
+  {
+    "id": "themify::tag",
+    "text": "Tag"
+  },
+  {
+    "id": "themify::desktop",
+    "text": "Desktop"
+  },
+  {
+    "id": "themify::tablet",
+    "text": "Tablet"
+  },
+  {
+    "id": "themify::mobile",
+    "text": "Mobile"
+  },
+  {
+    "id": "themify::email",
+    "text": "Email"
+  },
+  {
+    "id": "themify::star",
+    "text": "Star"
+  },
+  {
+    "id": "themify::spray",
+    "text": "Spray"
+  },
+  {
+    "id": "themify::signal",
+    "text": "Signal"
+  },
+  {
+    "id": "themify::shopping-cart",
+    "text": "Shopping Cart"
+  },
+  {
+    "id": "themify::shopping-cart-full",
+    "text": "Shopping Cart Full"
+  },
+  {
+    "id": "themify::settings",
+    "text": "Settings"
+  },
+  {
+    "id": "themify::search",
+    "text": "Search"
+  },
+  {
+    "id": "themify::zoom-in",
+    "text": "Zoom In"
+  },
+  {
+    "id": "themify::zoom-out",
+    "text": "Zoom Out"
+  },
+  {
+    "id": "themify::cut",
+    "text": "Cut"
+  },
+  {
+    "id": "themify::ruler",
+    "text": "Ruler"
+  },
+  {
+    "id": "themify::ruler-alt-2",
+    "text": "Ruler Alt 2"
+  },
+  {
+    "id": "themify::ruler-pencil",
+    "text": "Ruler Pencil"
+  },
+  {
+    "id": "themify::ruler-alt",
+    "text": "Ruler Alt"
+  },
+  {
+    "id": "themify::bookmark",
+    "text": "Bookmark"
+  },
+  {
+    "id": "themify::bookmark-alt",
+    "text": "Bookmark Alt"
+  },
+  {
+    "id": "themify::reload",
+    "text": "Reload"
+  },
+  {
+    "id": "themify::plus",
+    "text": "Plus"
+  },
+  {
+    "id": "themify::minus",
+    "text": "Minus"
+  },
+  {
+    "id": "themify::close",
+    "text": "Close"
+  },
+  {
+    "id": "themify::pin",
+    "text": "Pin"
+  },
+  {
+    "id": "themify::pencil",
+    "text": "Pencil"
+  },
+  {
+    "id": "themify::pencil-alt",
+    "text": "Pencil Alt"
+  },
+  {
+    "id": "themify::paint-roller",
+    "text": "Paint Roller"
+  },
+  {
+    "id": "themify::paint-bucket",
+    "text": "Paint Bucket"
+  },
+  {
+    "id": "themify::na",
+    "text": "Na"
+  },
+  {
+    "id": "themify::medall",
+    "text": "Medall"
+  },
+  {
+    "id": "themify::medall-alt",
+    "text": "Medall Alt"
+  },
+  {
+    "id": "themify::marker",
+    "text": "Marker"
+  },
+  {
+    "id": "themify::marker-alt",
+    "text": "Marker Alt"
+  },
+  {
+    "id": "themify::lock",
+    "text": "Lock"
+  },
+  {
+    "id": "themify::unlock",
+    "text": "Unlock"
+  },
+  {
+    "id": "themify::location-arrow",
+    "text": "Location Arrow"
+  },
+  {
+    "id": "themify::layout",
+    "text": "Layout"
+  },
+  {
+    "id": "themify::layers",
+    "text": "Layers"
+  },
+  {
+    "id": "themify::layers-alt",
+    "text": "Layers Alt"
+  },
+  {
+    "id": "themify::key",
+    "text": "Key"
+  },
+  {
+    "id": "themify::image",
+    "text": "Image"
+  },
+  {
+    "id": "themify::heart",
+    "text": "Heart"
+  },
+  {
+    "id": "themify::heart-broken",
+    "text": "Heart Broken"
+  },
+  {
+    "id": "themify::hand-stop",
+    "text": "Hand Stop"
+  },
+  {
+    "id": "themify::hand-open",
+    "text": "Hand Open"
+  },
+  {
+    "id": "themify::hand-drag",
+    "text": "Hand Drag"
+  },
+  {
+    "id": "themify::flag",
+    "text": "Flag"
+  },
+  {
+    "id": "themify::flag-alt",
+    "text": "Flag Alt"
+  },
+  {
+    "id": "themify::flag-alt-2",
+    "text": "Flag Alt 2"
+  },
+  {
+    "id": "themify::eye",
+    "text": "Eye"
+  },
+  {
+    "id": "themify::import",
+    "text": "Import"
+  },
+  {
+    "id": "themify::export",
+    "text": "Export"
+  },
+  {
+    "id": "themify::cup",
+    "text": "Cup"
+  },
+  {
+    "id": "themify::crown",
+    "text": "Crown"
+  },
+  {
+    "id": "themify::comments",
+    "text": "Comments"
+  },
+  {
+    "id": "themify::comment",
+    "text": "Comment"
+  },
+  {
+    "id": "themify::comment-alt",
+    "text": "Comment Alt"
+  },
+  {
+    "id": "themify::thought",
+    "text": "Thought"
+  },
+  {
+    "id": "themify::clip",
+    "text": "Clip"
+  },
+  {
+    "id": "themify::check",
+    "text": "Check"
+  },
+  {
+    "id": "themify::check-box",
+    "text": "Check Box"
+  },
+  {
+    "id": "themify::camera",
+    "text": "Camera"
+  },
+  {
+    "id": "themify::announcement",
+    "text": "Announcement"
+  },
+  {
+    "id": "themify::brush",
+    "text": "Brush"
+  },
+  {
+    "id": "themify::brush-alt",
+    "text": "Brush Alt"
+  },
+  {
+    "id": "themify::palette",
+    "text": "Palette"
+  },
+  {
+    "id": "themify::briefcase",
+    "text": "Briefcase"
+  },
+  {
+    "id": "themify::bolt",
+    "text": "Bolt"
+  },
+  {
+    "id": "themify::bolt-alt",
+    "text": "Bolt Alt"
+  },
+  {
+    "id": "themify::blackboard",
+    "text": "Blackboard"
+  },
+  {
+    "id": "themify::bag",
+    "text": "Bag"
+  },
+  {
+    "id": "themify::world",
+    "text": "World"
+  },
+  {
+    "id": "themify::wheelchair",
+    "text": "Wheelchair"
+  },
+  {
+    "id": "themify::car",
+    "text": "Car"
+  },
+  {
+    "id": "themify::truck",
+    "text": "Truck"
+  },
+  {
+    "id": "themify::timer",
+    "text": "Timer"
+  },
+  {
+    "id": "themify::ticket",
+    "text": "Ticket"
+  },
+  {
+    "id": "themify::thumb-up",
+    "text": "Thumb Up"
+  },
+  {
+    "id": "themify::thumb-down",
+    "text": "Thumb Down"
+  },
+  {
+    "id": "themify::stats-up",
+    "text": "Stats Up"
+  },
+  {
+    "id": "themify::stats-down",
+    "text": "Stats Down"
+  },
+  {
+    "id": "themify::shine",
+    "text": "Shine"
+  },
+  {
+    "id": "themify::shift-right",
+    "text": "Shift Right"
+  },
+  {
+    "id": "themify::shift-left",
+    "text": "Shift Left"
+  },
+  {
+    "id": "themify::shift-right-alt",
+    "text": "Shift Right Alt"
+  },
+  {
+    "id": "themify::shift-left-alt",
+    "text": "Shift Left Alt"
+  },
+  {
+    "id": "themify::shield",
+    "text": "Shield"
+  },
+  {
+    "id": "themify::notepad",
+    "text": "Notepad"
+  },
+  {
+    "id": "themify::server",
+    "text": "Server"
+  },
+  {
+    "id": "themify::pulse",
+    "text": "Pulse"
+  },
+  {
+    "id": "themify::printer",
+    "text": "Printer"
+  },
+  {
+    "id": "themify::power-off",
+    "text": "Power Off"
+  },
+  {
+    "id": "themify::plug",
+    "text": "Plug"
+  },
+  {
+    "id": "themify::pie-chart",
+    "text": "Pie Chart"
+  },
+  {
+    "id": "themify::panel",
+    "text": "Panel"
+  },
+  {
+    "id": "themify::package",
+    "text": "Package"
+  },
+  {
+    "id": "themify::music",
+    "text": "Music"
+  },
+  {
+    "id": "themify::music-alt",
+    "text": "Music Alt"
+  },
+  {
+    "id": "themify::mouse",
+    "text": "Mouse"
+  },
+  {
+    "id": "themify::mouse-alt",
+    "text": "Mouse Alt"
+  },
+  {
+    "id": "themify::money",
+    "text": "Money"
+  },
+  {
+    "id": "themify::microphone",
+    "text": "Microphone"
+  },
+  {
+    "id": "themify::menu",
+    "text": "Menu"
+  },
+  {
+    "id": "themify::menu-alt",
+    "text": "Menu Alt"
+  },
+  {
+    "id": "themify::map",
+    "text": "Map"
+  },
+  {
+    "id": "themify::map-alt",
+    "text": "Map Alt"
+  },
+  {
+    "id": "themify::location-pin",
+    "text": "Location Pin"
+  },
+  {
+    "id": "themify::light-bulb",
+    "text": "Light Bulb"
+  },
+  {
+    "id": "themify::info",
+    "text": "Info"
+  },
+  {
+    "id": "themify::infinite",
+    "text": "Infinite"
+  },
+  {
+    "id": "themify::id-badge",
+    "text": "Id Badge"
+  },
+  {
+    "id": "themify::hummer",
+    "text": "Hummer"
+  },
+  {
+    "id": "themify::home",
+    "text": "Home"
+  },
+  {
+    "id": "themify::help",
+    "text": "Help"
+  },
+  {
+    "id": "themify::headphone",
+    "text": "Headphone"
+  },
+  {
+    "id": "themify::harddrives",
+    "text": "Harddrives"
+  },
+  {
+    "id": "themify::harddrive",
+    "text": "Harddrive"
+  },
+  {
+    "id": "themify::gift",
+    "text": "Gift"
+  },
+  {
+    "id": "themify::game",
+    "text": "Game"
+  },
+  {
+    "id": "themify::filter",
+    "text": "Filter"
+  },
+  {
+    "id": "themify::files",
+    "text": "Files"
+  },
+  {
+    "id": "themify::file",
+    "text": "File"
+  },
+  {
+    "id": "themify::zip",
+    "text": "Zip"
+  },
+  {
+    "id": "themify::folder",
+    "text": "Folder"
+  },
+  {
+    "id": "themify::envelope",
+    "text": "Envelope"
+  },
+  {
+    "id": "themify::dashboard",
+    "text": "Dashboard"
+  },
+  {
+    "id": "themify::cloud",
+    "text": "Cloud"
+  },
+  {
+    "id": "themify::cloud-up",
+    "text": "Cloud Up"
+  },
+  {
+    "id": "themify::cloud-down",
+    "text": "Cloud Down"
+  },
+  {
+    "id": "themify::clipboard",
+    "text": "Clipboard"
+  },
+  {
+    "id": "themify::calendar",
+    "text": "Calendar"
+  },
+  {
+    "id": "themify::book",
+    "text": "Book"
+  },
+  {
+    "id": "themify::bell",
+    "text": "Bell"
+  },
+  {
+    "id": "themify::basketball",
+    "text": "Basketball"
+  },
+  {
+    "id": "themify::bar-chart",
+    "text": "Bar Chart"
+  },
+  {
+    "id": "themify::bar-chart-alt",
+    "text": "Bar Chart Alt"
+  },
+  {
+    "id": "themify::archive",
+    "text": "Archive"
+  },
+  {
+    "id": "themify::anchor",
+    "text": "Anchor"
+  },
+  {
+    "id": "themify::alert",
+    "text": "Alert"
+  },
+  {
+    "id": "themify::alarm-clock",
+    "text": "Alarm Clock"
+  },
+  {
+    "id": "themify::agenda",
+    "text": "Agenda"
+  },
+  {
+    "id": "themify::write",
+    "text": "Write"
+  },
+  {
+    "id": "themify::wallet",
+    "text": "Wallet"
+  },
+  {
+    "id": "themify::video-clapper",
+    "text": "Video Clapper"
+  },
+  {
+    "id": "themify::video-camera",
+    "text": "Video Camera"
+  },
+  {
+    "id": "themify::vector",
+    "text": "Vector"
+  },
+  {
+    "id": "themify::support",
+    "text": "Support"
+  },
+  {
+    "id": "themify::stamp",
+    "text": "Stamp"
+  },
+  {
+    "id": "themify::slice",
+    "text": "Slice"
+  },
+  {
+    "id": "themify::shortcode",
+    "text": "Shortcode"
+  },
+  {
+    "id": "themify::receipt",
+    "text": "Receipt"
+  },
+  {
+    "id": "themify::pin2",
+    "text": "Pin2"
+  },
+  {
+    "id": "themify::pin-alt",
+    "text": "Pin Alt"
+  },
+  {
+    "id": "themify::pencil-alt2",
+    "text": "Pencil Alt2"
+  },
+  {
+    "id": "themify::eraser",
+    "text": "Eraser"
+  },
+  {
+    "id": "themify::more",
+    "text": "More"
+  },
+  {
+    "id": "themify::more-alt",
+    "text": "More Alt"
+  },
+  {
+    "id": "themify::microphone-alt",
+    "text": "Microphone Alt"
+  },
+  {
+    "id": "themify::magnet",
+    "text": "Magnet"
+  },
+  {
+    "id": "themify::line-double",
+    "text": "Line Double"
+  },
+  {
+    "id": "themify::line-dotted",
+    "text": "Line Dotted"
+  },
+  {
+    "id": "themify::line-dashed",
+    "text": "Line Dashed"
+  },
+  {
+    "id": "themify::ink-pen",
+    "text": "Ink Pen"
+  },
+  {
+    "id": "themify::info-alt",
+    "text": "Info Alt"
+  },
+  {
+    "id": "themify::help-alt",
+    "text": "Help Alt"
+  },
+  {
+    "id": "themify::headphone-alt",
+    "text": "Headphone Alt"
+  },
+  {
+    "id": "themify::gallery",
+    "text": "Gallery"
+  },
+  {
+    "id": "themify::face-smile",
+    "text": "Face Smile"
+  },
+  {
+    "id": "themify::face-sad",
+    "text": "Face Sad"
+  },
+  {
+    "id": "themify::credit-card",
+    "text": "Credit Card"
+  },
+  {
+    "id": "themify::comments-smiley",
+    "text": "Comments Smiley"
+  },
+  {
+    "id": "themify::time",
+    "text": "Time"
+  },
+  {
+    "id": "themify::share",
+    "text": "Share"
+  },
+  {
+    "id": "themify::share-alt",
+    "text": "Share Alt"
+  },
+  {
+    "id": "themify::rocket",
+    "text": "Rocket"
+  },
+  {
+    "id": "themify::new-window",
+    "text": "New Window"
+  },
+  {
+    "id": "themify::rss",
+    "text": "Rss"
+  },
+  {
+    "id": "themify::rss-alt",
+    "text": "Rss Alt"
+  },
+  {
+    "id": "themify::control-stop",
+    "text": "Control Stop"
+  },
+  {
+    "id": "themify::control-shuffle",
+    "text": "Control Shuffle"
+  },
+  {
+    "id": "themify::control-play",
+    "text": "Control Play"
+  },
+  {
+    "id": "themify::control-pause",
+    "text": "Control Pause"
+  },
+  {
+    "id": "themify::control-forward",
+    "text": "Control Forward"
+  },
+  {
+    "id": "themify::control-backward",
+    "text": "Control Backward"
+  },
+  {
+    "id": "themify::volume",
+    "text": "Volume"
+  },
+  {
+    "id": "themify::control-skip-forward",
+    "text": "Control Skip Forward"
+  },
+  {
+    "id": "themify::control-skip-backward",
+    "text": "Control Skip Backward"
+  },
+  {
+    "id": "themify::control-record",
+    "text": "Control Record"
+  },
+  {
+    "id": "themify::control-eject",
+    "text": "Control Eject"
+  },
+  {
+    "id": "themify::paragraph",
+    "text": "Paragraph"
+  },
+  {
+    "id": "themify::uppercase",
+    "text": "Uppercase"
+  },
+  {
+    "id": "themify::underline",
+    "text": "Underline"
+  },
+  {
+    "id": "themify::text",
+    "text": "Text"
+  },
+  {
+    "id": "themify::Italic",
+    "text": "Italic"
+  },
+  {
+    "id": "themify::smallcap",
+    "text": "Smallcap"
+  },
+  {
+    "id": "themify::list",
+    "text": "List"
+  },
+  {
+    "id": "themify::list-ol",
+    "text": "List Ol"
+  },
+  {
+    "id": "themify::align-right",
+    "text": "Align Right"
+  },
+  {
+    "id": "themify::align-left",
+    "text": "Align Left"
+  },
+  {
+    "id": "themify::align-justify",
+    "text": "Align Justify"
+  },
+  {
+    "id": "themify::align-center",
+    "text": "Align Center"
+  },
+  {
+    "id": "themify::quote-right",
+    "text": "Quote Right"
+  },
+  {
+    "id": "themify::quote-left",
+    "text": "Quote Left"
+  },
+  {
+    "id": "themify::layout-width-full",
+    "text": "Layout Width Full"
+  },
+  {
+    "id": "themify::layout-width-default",
+    "text": "Layout Width Default"
+  },
+  {
+    "id": "themify::layout-width-default-alt",
+    "text": "Layout Width Default Alt"
+  },
+  {
+    "id": "themify::layout-tab",
+    "text": "Layout Tab"
+  },
+  {
+    "id": "themify::layout-tab-window",
+    "text": "Layout Tab Window"
+  },
+  {
+    "id": "themify::layout-tab-v",
+    "text": "Layout Tab V"
+  },
+  {
+    "id": "themify::layout-tab-min",
+    "text": "Layout Tab Min"
+  },
+  {
+    "id": "themify::layout-slider",
+    "text": "Layout Slider"
+  },
+  {
+    "id": "themify::layout-slider-alt",
+    "text": "Layout Slider Alt"
+  },
+  {
+    "id": "themify::layout-sidebar-right",
+    "text": "Layout Sidebar Right"
+  },
+  {
+    "id": "themify::layout-sidebar-none",
+    "text": "Layout Sidebar None"
+  },
+  {
+    "id": "themify::layout-sidebar-left",
+    "text": "Layout Sidebar Left"
+  },
+  {
+    "id": "themify::layout-placeholder",
+    "text": "Layout Placeholder"
+  },
+  {
+    "id": "themify::layout-menu",
+    "text": "Layout Menu"
+  },
+  {
+    "id": "themify::layout-menu-v",
+    "text": "Layout Menu V"
+  },
+  {
+    "id": "themify::layout-menu-separated",
+    "text": "Layout Menu Separated"
+  },
+  {
+    "id": "themify::layout-menu-full",
+    "text": "Layout Menu Full"
+  },
+  {
+    "id": "themify::layout-media-right",
+    "text": "Layout Media Right"
+  },
+  {
+    "id": "themify::layout-media-right-alt",
+    "text": "Layout Media Right Alt"
+  },
+  {
+    "id": "themify::layout-media-overlay",
+    "text": "Layout Media Overlay"
+  },
+  {
+    "id": "themify::layout-media-overlay-alt",
+    "text": "Layout Media Overlay Alt"
+  },
+  {
+    "id": "themify::layout-media-overlay-alt-2",
+    "text": "Layout Media Overlay Alt 2"
+  },
+  {
+    "id": "themify::layout-media-left",
+    "text": "Layout Media Left"
+  },
+  {
+    "id": "themify::layout-media-left-alt",
+    "text": "Layout Media Left Alt"
+  },
+  {
+    "id": "themify::layout-media-center",
+    "text": "Layout Media Center"
+  },
+  {
+    "id": "themify::layout-media-center-alt",
+    "text": "Layout Media Center Alt"
+  },
+  {
+    "id": "themify::layout-list-thumb",
+    "text": "Layout List Thumb"
+  },
+  {
+    "id": "themify::layout-list-thumb-alt",
+    "text": "Layout List Thumb Alt"
+  },
+  {
+    "id": "themify::layout-list-post",
+    "text": "Layout List Post"
+  },
+  {
+    "id": "themify::layout-list-large-image",
+    "text": "Layout List Large Image"
+  },
+  {
+    "id": "themify::layout-line-solid",
+    "text": "Layout Line Solid"
+  },
+  {
+    "id": "themify::layout-grid4",
+    "text": "Layout Grid4"
+  },
+  {
+    "id": "themify::layout-grid3",
+    "text": "Layout Grid3"
+  },
+  {
+    "id": "themify::layout-grid2",
+    "text": "Layout Grid2"
+  },
+  {
+    "id": "themify::layout-grid2-thumb",
+    "text": "Layout Grid2 Thumb"
+  },
+  {
+    "id": "themify::layout-cta-right",
+    "text": "Layout Cta Right"
+  },
+  {
+    "id": "themify::layout-cta-left",
+    "text": "Layout Cta Left"
+  },
+  {
+    "id": "themify::layout-cta-center",
+    "text": "Layout Cta Center"
+  },
+  {
+    "id": "themify::layout-cta-btn-right",
+    "text": "Layout Cta Btn Right"
+  },
+  {
+    "id": "themify::layout-cta-btn-left",
+    "text": "Layout Cta Btn Left"
+  },
+  {
+    "id": "themify::layout-column4",
+    "text": "Layout Column4"
+  },
+  {
+    "id": "themify::layout-column3",
+    "text": "Layout Column3"
+  },
+  {
+    "id": "themify::layout-column2",
+    "text": "Layout Column2"
+  },
+  {
+    "id": "themify::layout-accordion-separated",
+    "text": "Layout Accordion Separated"
+  },
+  {
+    "id": "themify::layout-accordion-merged",
+    "text": "Layout Accordion Merged"
+  },
+  {
+    "id": "themify::layout-accordion-list",
+    "text": "Layout Accordion List"
+  },
+  {
+    "id": "themify::widgetized",
+    "text": "Widgetized"
+  },
+  {
+    "id": "themify::widget",
+    "text": "Widget"
+  },
+  {
+    "id": "themify::widget-alt",
+    "text": "Widget Alt"
+  },
+  {
+    "id": "themify::view-list",
+    "text": "View List"
+  },
+  {
+    "id": "themify::view-list-alt",
+    "text": "View List Alt"
+  },
+  {
+    "id": "themify::view-grid",
+    "text": "View Grid"
+  },
+  {
+    "id": "themify::upload",
+    "text": "Upload"
+  },
+  {
+    "id": "themify::download",
+    "text": "Download"
+  },
+  {
+    "id": "themify::loop",
+    "text": "Loop"
+  },
+  {
+    "id": "themify::layout-sidebar-2",
+    "text": "Layout Sidebar 2"
+  },
+  {
+    "id": "themify::layout-grid4-alt",
+    "text": "Layout Grid4 Alt"
+  },
+  {
+    "id": "themify::layout-grid3-alt",
+    "text": "Layout Grid3 Alt"
+  },
+  {
+    "id": "themify::layout-grid2-alt",
+    "text": "Layout Grid2 Alt"
+  },
+  {
+    "id": "themify::layout-column4-alt",
+    "text": "Layout Column4 Alt"
+  },
+  {
+    "id": "themify::layout-column3-alt",
+    "text": "Layout Column3 Alt"
+  },
+  {
+    "id": "themify::layout-column2-alt",
+    "text": "Layout Column2 Alt"
+  },
+  {
+    "id": "themify::flickr",
+    "text": "Flickr"
+  },
+  {
+    "id": "themify::flickr-alt",
+    "text": "Flickr Alt"
+  },
+  {
+    "id": "themify::instagram",
+    "text": "Instagram"
+  },
+  {
+    "id": "themify::google",
+    "text": "Google"
+  },
+  {
+    "id": "themify::github",
+    "text": "Github"
+  },
+  {
+    "id": "themify::facebook",
+    "text": "Facebook"
+  },
+  {
+    "id": "themify::dropbox",
+    "text": "Dropbox"
+  },
+  {
+    "id": "themify::dropbox-alt",
+    "text": "Dropbox Alt"
+  },
+  {
+    "id": "themify::dribbble",
+    "text": "Dribbble"
+  },
+  {
+    "id": "themify::apple",
+    "text": "Apple"
+  },
+  {
+    "id": "themify::android",
+    "text": "Android"
+  },
+  {
+    "id": "themify::yahoo",
+    "text": "Yahoo"
+  },
+  {
+    "id": "themify::trello",
+    "text": "Trello"
+  },
+  {
+    "id": "themify::stack-overflow",
+    "text": "Stack Overflow"
+  },
+  {
+    "id": "themify::soundcloud",
+    "text": "Soundcloud"
+  },
+  {
+    "id": "themify::sharethis",
+    "text": "Sharethis"
+  },
+  {
+    "id": "themify::sharethis-alt",
+    "text": "Sharethis Alt"
+  },
+  {
+    "id": "themify::reddit",
+    "text": "Reddit"
+  },
+  {
+    "id": "themify::microsoft",
+    "text": "Microsoft"
+  },
+  {
+    "id": "themify::microsoft-alt",
+    "text": "Microsoft Alt"
+  },
+  {
+    "id": "themify::linux",
+    "text": "Linux"
+  },
+  {
+    "id": "themify::jsfiddle",
+    "text": "Jsfiddle"
+  },
+  {
+    "id": "themify::joomla",
+    "text": "Joomla"
+  },
+  {
+    "id": "themify::html5",
+    "text": "Html5"
+  },
+  {
+    "id": "themify::css3",
+    "text": "Css3"
+  },
+  {
+    "id": "themify::drupal",
+    "text": "Drupal"
+  },
+  {
+    "id": "themify::wordpress",
+    "text": "Wordpress"
+  },
+  {
+    "id": "themify::tumblr",
+    "text": "Tumblr"
+  },
+  {
+    "id": "themify::tumblr-alt",
+    "text": "Tumblr Alt"
+  },
+  {
+    "id": "themify::skype",
+    "text": "Skype"
+  },
+  {
+    "id": "themify::youtube",
+    "text": "Youtube"
+  },
+  {
+    "id": "themify::vimeo",
+    "text": "Vimeo"
+  },
+  {
+    "id": "themify::vimeo-alt",
+    "text": "Vimeo Alt"
+  },
+  {
+    "id": "themify::twitter",
+    "text": "Twitter"
+  },
+  {
+    "id": "themify::twitter-alt",
+    "text": "Twitter Alt"
+  },
+  {
+    "id": "themify::linkedin",
+    "text": "Linkedin"
+  },
+  {
+    "id": "themify::pinterest",
+    "text": "Pinterest"
+  },
+  {
+    "id": "themify::pinterest-alt",
+    "text": "Pinterest Alt"
+  },
+  {
+    "id": "themify::themify-logo",
+    "text": "Themify Logo"
+  },
+  {
+    "id": "themify::themify-favicon",
+    "text": "Themify Favicon"
+  },
+  {
+    "id": "themify::themify-favicon-alt",
+    "text": "Themify Favicon Alt"
+  },
+  {
+    "id": "simpleline::emify-favicon-alt",
+    "text": "Emify Favicon Alt"
+  },
+  {
+    "id": "fontawesome::glass",
+    "text": "Glass"
+  },
+  {
+    "id": "fontawesome::music",
+    "text": "Music"
+  },
+  {
+    "id": "fontawesome::search",
+    "text": "Search"
+  },
+  {
+    "id": "fontawesome::envelope-o",
+    "text": "Envelope O"
+  },
+  {
+    "id": "fontawesome::heart",
+    "text": "Heart"
+  },
+  {
+    "id": "fontawesome::star",
+    "text": "Star"
+  },
+  {
+    "id": "fontawesome::star-o",
+    "text": "Star O"
+  },
+  {
+    "id": "fontawesome::user",
+    "text": "User"
+  },
+  {
+    "id": "fontawesome::film",
+    "text": "Film"
+  },
+  {
+    "id": "fontawesome::th-large",
+    "text": "Th Large"
+  },
+  {
+    "id": "fontawesome::th",
+    "text": "Th"
+  },
+  {
+    "id": "fontawesome::th-list",
+    "text": "Th List"
+  },
+  {
+    "id": "fontawesome::check",
+    "text": "Check"
+  },
+  {
+    "id": "fontawesome::times",
+    "text": "Times"
+  },
+  {
+    "id": "fontawesome::search-plus",
+    "text": "Search Plus"
+  },
+  {
+    "id": "fontawesome::search-minus",
+    "text": "Search Minus"
+  },
+  {
+    "id": "fontawesome::power-off",
+    "text": "Power Off"
+  },
+  {
+    "id": "fontawesome::signal",
+    "text": "Signal"
+  },
+  {
+    "id": "fontawesome::cog",
+    "text": "Cog"
+  },
+  {
+    "id": "fontawesome::trash-o",
+    "text": "Trash O"
+  },
+  {
+    "id": "fontawesome::home",
+    "text": "Home"
+  },
+  {
+    "id": "fontawesome::file-o",
+    "text": "File O"
+  },
+  {
+    "id": "fontawesome::clock-o",
+    "text": "Clock O"
+  },
+  {
+    "id": "fontawesome::road",
+    "text": "Road"
+  },
+  {
+    "id": "fontawesome::download",
+    "text": "Download"
+  },
+  {
+    "id": "fontawesome::arrow-circle-o-down",
+    "text": "Arrow Circle O Down"
+  },
+  {
+    "id": "fontawesome::arrow-circle-o-up",
+    "text": "Arrow Circle O Up"
+  },
+  {
+    "id": "fontawesome::inbox",
+    "text": "Inbox"
+  },
+  {
+    "id": "fontawesome::play-circle-o",
+    "text": "Play Circle O"
+  },
+  {
+    "id": "fontawesome::repeat",
+    "text": "Repeat"
+  },
+  {
+    "id": "fontawesome::refresh",
+    "text": "Refresh"
+  },
+  {
+    "id": "fontawesome::list-alt",
+    "text": "List Alt"
+  },
+  {
+    "id": "fontawesome::lock",
+    "text": "Lock"
+  },
+  {
+    "id": "fontawesome::flag",
+    "text": "Flag"
+  },
+  {
+    "id": "fontawesome::headphones",
+    "text": "Headphones"
+  },
+  {
+    "id": "fontawesome::volume-off",
+    "text": "Volume Off"
+  },
+  {
+    "id": "fontawesome::volume-down",
+    "text": "Volume Down"
+  },
+  {
+    "id": "fontawesome::volume-up",
+    "text": "Volume Up"
+  },
+  {
+    "id": "fontawesome::qrcode",
+    "text": "Qrcode"
+  },
+  {
+    "id": "fontawesome::barcode",
+    "text": "Barcode"
+  },
+  {
+    "id": "fontawesome::tag",
+    "text": "Tag"
+  },
+  {
+    "id": "fontawesome::tags",
+    "text": "Tags"
+  },
+  {
+    "id": "fontawesome::book",
+    "text": "Book"
+  },
+  {
+    "id": "fontawesome::bookmark",
+    "text": "Bookmark"
+  },
+  {
+    "id": "fontawesome::print",
+    "text": "Print"
+  },
+  {
+    "id": "fontawesome::camera",
+    "text": "Camera"
+  },
+  {
+    "id": "fontawesome::font",
+    "text": "Font"
+  },
+  {
+    "id": "fontawesome::bold",
+    "text": "Bold"
+  },
+  {
+    "id": "fontawesome::italic",
+    "text": "Italic"
+  },
+  {
+    "id": "fontawesome::text-height",
+    "text": "Text Height"
+  },
+  {
+    "id": "fontawesome::text-width",
+    "text": "Text Width"
+  },
+  {
+    "id": "fontawesome::align-left",
+    "text": "Align Left"
+  },
+  {
+    "id": "fontawesome::align-center",
+    "text": "Align Center"
+  },
+  {
+    "id": "fontawesome::align-right",
+    "text": "Align Right"
+  },
+  {
+    "id": "fontawesome::align-justify",
+    "text": "Align Justify"
+  },
+  {
+    "id": "fontawesome::list",
+    "text": "List"
+  },
+  {
+    "id": "fontawesome::outdent",
+    "text": "Outdent"
+  },
+  {
+    "id": "fontawesome::indent",
+    "text": "Indent"
+  },
+  {
+    "id": "fontawesome::video-camera",
+    "text": "Video Camera"
+  },
+  {
+    "id": "fontawesome::picture-o",
+    "text": "Picture O"
+  },
+  {
+    "id": "fontawesome::pencil",
+    "text": "Pencil"
+  },
+  {
+    "id": "fontawesome::map-marker",
+    "text": "Map Marker"
+  },
+  {
+    "id": "fontawesome::adjust",
+    "text": "Adjust"
+  },
+  {
+    "id": "fontawesome::tint",
+    "text": "Tint"
+  },
+  {
+    "id": "fontawesome::pencil-square-o",
+    "text": "Pencil Square O"
+  },
+  {
+    "id": "fontawesome::share-square-o",
+    "text": "Share Square O"
+  },
+  {
+    "id": "fontawesome::check-square-o",
+    "text": "Check Square O"
+  },
+  {
+    "id": "fontawesome::arrows",
+    "text": "Arrows"
+  },
+  {
+    "id": "fontawesome::step-backward",
+    "text": "Step Backward"
+  },
+  {
+    "id": "fontawesome::fast-backward",
+    "text": "Fast Backward"
+  },
+  {
+    "id": "fontawesome::backward",
+    "text": "Backward"
+  },
+  {
+    "id": "fontawesome::play",
+    "text": "Play"
+  },
+  {
+    "id": "fontawesome::pause",
+    "text": "Pause"
+  },
+  {
+    "id": "fontawesome::stop",
+    "text": "Stop"
+  },
+  {
+    "id": "fontawesome::forward",
+    "text": "Forward"
+  },
+  {
+    "id": "fontawesome::fast-forward",
+    "text": "Fast Forward"
+  },
+  {
+    "id": "fontawesome::step-forward",
+    "text": "Step Forward"
+  },
+  {
+    "id": "fontawesome::eject",
+    "text": "Eject"
+  },
+  {
+    "id": "fontawesome::chevron-left",
+    "text": "Chevron Left"
+  },
+  {
+    "id": "fontawesome::chevron-right",
+    "text": "Chevron Right"
+  },
+  {
+    "id": "fontawesome::plus-circle",
+    "text": "Plus Circle"
+  },
+  {
+    "id": "fontawesome::minus-circle",
+    "text": "Minus Circle"
+  },
+  {
+    "id": "fontawesome::times-circle",
+    "text": "Times Circle"
+  },
+  {
+    "id": "fontawesome::check-circle",
+    "text": "Check Circle"
+  },
+  {
+    "id": "fontawesome::question-circle",
+    "text": "Question Circle"
+  },
+  {
+    "id": "fontawesome::info-circle",
+    "text": "Info Circle"
+  },
+  {
+    "id": "fontawesome::crosshairs",
+    "text": "Crosshairs"
+  },
+  {
+    "id": "fontawesome::times-circle-o",
+    "text": "Times Circle O"
+  },
+  {
+    "id": "fontawesome::check-circle-o",
+    "text": "Check Circle O"
+  },
+  {
+    "id": "fontawesome::ban",
+    "text": "Ban"
+  },
+  {
+    "id": "fontawesome::arrow-left",
+    "text": "Arrow Left"
+  },
+  {
+    "id": "fontawesome::arrow-right",
+    "text": "Arrow Right"
+  },
+  {
+    "id": "fontawesome::arrow-up",
+    "text": "Arrow Up"
+  },
+  {
+    "id": "fontawesome::arrow-down",
+    "text": "Arrow Down"
+  },
+  {
+    "id": "fontawesome::share",
+    "text": "Share"
+  },
+  {
+    "id": "fontawesome::expand",
+    "text": "Expand"
+  },
+  {
+    "id": "fontawesome::compress",
+    "text": "Compress"
+  },
+  {
+    "id": "fontawesome::plus",
+    "text": "Plus"
+  },
+  {
+    "id": "fontawesome::minus",
+    "text": "Minus"
+  },
+  {
+    "id": "fontawesome::asterisk",
+    "text": "Asterisk"
+  },
+  {
+    "id": "fontawesome::exclamation-circle",
+    "text": "Exclamation Circle"
+  },
+  {
+    "id": "fontawesome::gift",
+    "text": "Gift"
+  },
+  {
+    "id": "fontawesome::leaf",
+    "text": "Leaf"
+  },
+  {
+    "id": "fontawesome::fire",
+    "text": "Fire"
+  },
+  {
+    "id": "fontawesome::eye",
+    "text": "Eye"
+  },
+  {
+    "id": "fontawesome::eye-slash",
+    "text": "Eye Slash"
+  },
+  {
+    "id": "fontawesome::exclamation-triangle",
+    "text": "Exclamation Triangle"
+  },
+  {
+    "id": "fontawesome::plane",
+    "text": "Plane"
+  },
+  {
+    "id": "fontawesome::calendar",
+    "text": "Calendar"
+  },
+  {
+    "id": "fontawesome::random",
+    "text": "Random"
+  },
+  {
+    "id": "fontawesome::comment",
+    "text": "Comment"
+  },
+  {
+    "id": "fontawesome::magnet",
+    "text": "Magnet"
+  },
+  {
+    "id": "fontawesome::chevron-up",
+    "text": "Chevron Up"
+  },
+  {
+    "id": "fontawesome::chevron-down",
+    "text": "Chevron Down"
+  },
+  {
+    "id": "fontawesome::retweet",
+    "text": "Retweet"
+  },
+  {
+    "id": "fontawesome::shopping-cart",
+    "text": "Shopping Cart"
+  },
+  {
+    "id": "fontawesome::folder",
+    "text": "Folder"
+  },
+  {
+    "id": "fontawesome::folder-open",
+    "text": "Folder Open"
+  },
+  {
+    "id": "fontawesome::arrows-v",
+    "text": "Arrows V"
+  },
+  {
+    "id": "fontawesome::arrows-h",
+    "text": "Arrows H"
+  },
+  {
+    "id": "fontawesome::bar-chart",
+    "text": "Bar Chart"
+  },
+  {
+    "id": "fontawesome::twitter-square",
+    "text": "Twitter Square"
+  },
+  {
+    "id": "fontawesome::facebook-square",
+    "text": "Facebook Square"
+  },
+  {
+    "id": "fontawesome::camera-retro",
+    "text": "Camera Retro"
+  },
+  {
+    "id": "fontawesome::key",
+    "text": "Key"
+  },
+  {
+    "id": "fontawesome::cogs",
+    "text": "Cogs"
+  },
+  {
+    "id": "fontawesome::comments",
+    "text": "Comments"
+  },
+  {
+    "id": "fontawesome::thumbs-o-up",
+    "text": "Thumbs O Up"
+  },
+  {
+    "id": "fontawesome::thumbs-o-down",
+    "text": "Thumbs O Down"
+  },
+  {
+    "id": "fontawesome::star-half",
+    "text": "Star Half"
+  },
+  {
+    "id": "fontawesome::heart-o",
+    "text": "Heart O"
+  },
+  {
+    "id": "fontawesome::sign-out",
+    "text": "Sign Out"
+  },
+  {
+    "id": "fontawesome::linkedin-square",
+    "text": "Linkedin Square"
+  },
+  {
+    "id": "fontawesome::thumb-tack",
+    "text": "Thumb Tack"
+  },
+  {
+    "id": "fontawesome::external-link",
+    "text": "External Link"
+  },
+  {
+    "id": "fontawesome::sign-in",
+    "text": "Sign In"
+  },
+  {
+    "id": "fontawesome::trophy",
+    "text": "Trophy"
+  },
+  {
+    "id": "fontawesome::github-square",
+    "text": "Github Square"
+  },
+  {
+    "id": "fontawesome::upload",
+    "text": "Upload"
+  },
+  {
+    "id": "fontawesome::lemon-o",
+    "text": "Lemon O"
+  },
+  {
+    "id": "fontawesome::phone",
+    "text": "Phone"
+  },
+  {
+    "id": "fontawesome::square-o",
+    "text": "Square O"
+  },
+  {
+    "id": "fontawesome::bookmark-o",
+    "text": "Bookmark O"
+  },
+  {
+    "id": "fontawesome::phone-square",
+    "text": "Phone Square"
+  },
+  {
+    "id": "fontawesome::twitter",
+    "text": "Twitter"
+  },
+  {
+    "id": "fontawesome::facebook",
+    "text": "Facebook"
+  },
+  {
+    "id": "fontawesome::github",
+    "text": "Github"
+  },
+  {
+    "id": "fontawesome::unlock",
+    "text": "Unlock"
+  },
+  {
+    "id": "fontawesome::credit-card",
+    "text": "Credit Card"
+  },
+  {
+    "id": "fontawesome::rss",
+    "text": "Rss"
+  },
+  {
+    "id": "fontawesome::hdd-o",
+    "text": "Hdd O"
+  },
+  {
+    "id": "fontawesome::bullhorn",
+    "text": "Bullhorn"
+  },
+  {
+    "id": "fontawesome::bell",
+    "text": "Bell"
+  },
+  {
+    "id": "fontawesome::certificate",
+    "text": "Certificate"
+  },
+  {
+    "id": "fontawesome::hand-o-right",
+    "text": "Hand O Right"
+  },
+  {
+    "id": "fontawesome::hand-o-left",
+    "text": "Hand O Left"
+  },
+  {
+    "id": "fontawesome::hand-o-up",
+    "text": "Hand O Up"
+  },
+  {
+    "id": "fontawesome::hand-o-down",
+    "text": "Hand O Down"
+  },
+  {
+    "id": "fontawesome::arrow-circle-left",
+    "text": "Arrow Circle Left"
+  },
+  {
+    "id": "fontawesome::arrow-circle-right",
+    "text": "Arrow Circle Right"
+  },
+  {
+    "id": "fontawesome::arrow-circle-up",
+    "text": "Arrow Circle Up"
+  },
+  {
+    "id": "fontawesome::arrow-circle-down",
+    "text": "Arrow Circle Down"
+  },
+  {
+    "id": "fontawesome::globe",
+    "text": "Globe"
+  },
+  {
+    "id": "fontawesome::wrench",
+    "text": "Wrench"
+  },
+  {
+    "id": "fontawesome::tasks",
+    "text": "Tasks"
+  },
+  {
+    "id": "fontawesome::filter",
+    "text": "Filter"
+  },
+  {
+    "id": "fontawesome::briefcase",
+    "text": "Briefcase"
+  },
+  {
+    "id": "fontawesome::arrows-alt",
+    "text": "Arrows Alt"
+  },
+  {
+    "id": "fontawesome::users",
+    "text": "Users"
+  },
+  {
+    "id": "fontawesome::link",
+    "text": "Link"
+  },
+  {
+    "id": "fontawesome::cloud",
+    "text": "Cloud"
+  },
+  {
+    "id": "fontawesome::flask",
+    "text": "Flask"
+  },
+  {
+    "id": "fontawesome::scissors",
+    "text": "Scissors"
+  },
+  {
+    "id": "fontawesome::files-o",
+    "text": "Files O"
+  },
+  {
+    "id": "fontawesome::paperclip",
+    "text": "Paperclip"
+  },
+  {
+    "id": "fontawesome::floppy-o",
+    "text": "Floppy O"
+  },
+  {
+    "id": "fontawesome::square",
+    "text": "Square"
+  },
+  {
+    "id": "fontawesome::bars",
+    "text": "Bars"
+  },
+  {
+    "id": "fontawesome::list-ul",
+    "text": "List Ul"
+  },
+  {
+    "id": "fontawesome::list-ol",
+    "text": "List Ol"
+  },
+  {
+    "id": "fontawesome::strikethrough",
+    "text": "Strikethrough"
+  },
+  {
+    "id": "fontawesome::underline",
+    "text": "Underline"
+  },
+  {
+    "id": "fontawesome::table",
+    "text": "Table"
+  },
+  {
+    "id": "fontawesome::magic",
+    "text": "Magic"
+  },
+  {
+    "id": "fontawesome::truck",
+    "text": "Truck"
+  },
+  {
+    "id": "fontawesome::pinterest",
+    "text": "Pinterest"
+  },
+  {
+    "id": "fontawesome::pinterest-square",
+    "text": "Pinterest Square"
+  },
+  {
+    "id": "fontawesome::google-plus-square",
+    "text": "Google Plus Square"
+  },
+  {
+    "id": "fontawesome::google-plus",
+    "text": "Google Plus"
+  },
+  {
+    "id": "fontawesome::money",
+    "text": "Money"
+  },
+  {
+    "id": "fontawesome::caret-down",
+    "text": "Caret Down"
+  },
+  {
+    "id": "fontawesome::caret-up",
+    "text": "Caret Up"
+  },
+  {
+    "id": "fontawesome::caret-left",
+    "text": "Caret Left"
+  },
+  {
+    "id": "fontawesome::caret-right",
+    "text": "Caret Right"
+  },
+  {
+    "id": "fontawesome::columns",
+    "text": "Columns"
+  },
+  {
+    "id": "fontawesome::sort",
+    "text": "Sort"
+  },
+  {
+    "id": "fontawesome::sort-desc",
+    "text": "Sort Desc"
+  },
+  {
+    "id": "fontawesome::sort-asc",
+    "text": "Sort Asc"
+  },
+  {
+    "id": "fontawesome::envelope",
+    "text": "Envelope"
+  },
+  {
+    "id": "fontawesome::linkedin",
+    "text": "Linkedin"
+  },
+  {
+    "id": "fontawesome::undo",
+    "text": "Undo"
+  },
+  {
+    "id": "fontawesome::gavel",
+    "text": "Gavel"
+  },
+  {
+    "id": "fontawesome::tachometer",
+    "text": "Tachometer"
+  },
+  {
+    "id": "fontawesome::comment-o",
+    "text": "Comment O"
+  },
+  {
+    "id": "fontawesome::comments-o",
+    "text": "Comments O"
+  },
+  {
+    "id": "fontawesome::bolt",
+    "text": "Bolt"
+  },
+  {
+    "id": "fontawesome::sitemap",
+    "text": "Sitemap"
+  },
+  {
+    "id": "fontawesome::umbrella",
+    "text": "Umbrella"
+  },
+  {
+    "id": "fontawesome::clipboard",
+    "text": "Clipboard"
+  },
+  {
+    "id": "fontawesome::lightbulb-o",
+    "text": "Lightbulb O"
+  },
+  {
+    "id": "fontawesome::exchange",
+    "text": "Exchange"
+  },
+  {
+    "id": "fontawesome::cloud-download",
+    "text": "Cloud Download"
+  },
+  {
+    "id": "fontawesome::cloud-upload",
+    "text": "Cloud Upload"
+  },
+  {
+    "id": "fontawesome::user-md",
+    "text": "User Md"
+  },
+  {
+    "id": "fontawesome::stethoscope",
+    "text": "Stethoscope"
+  },
+  {
+    "id": "fontawesome::suitcase",
+    "text": "Suitcase"
+  },
+  {
+    "id": "fontawesome::bell-o",
+    "text": "Bell O"
+  },
+  {
+    "id": "fontawesome::coffee",
+    "text": "Coffee"
+  },
+  {
+    "id": "fontawesome::cutlery",
+    "text": "Cutlery"
+  },
+  {
+    "id": "fontawesome::file-text-o",
+    "text": "File Text O"
+  },
+  {
+    "id": "fontawesome::building-o",
+    "text": "Building O"
+  },
+  {
+    "id": "fontawesome::hospital-o",
+    "text": "Hospital O"
+  },
+  {
+    "id": "fontawesome::ambulance",
+    "text": "Ambulance"
+  },
+  {
+    "id": "fontawesome::medkit",
+    "text": "Medkit"
+  },
+  {
+    "id": "fontawesome::fighter-jet",
+    "text": "Fighter Jet"
+  },
+  {
+    "id": "fontawesome::beer",
+    "text": "Beer"
+  },
+  {
+    "id": "fontawesome::h-square",
+    "text": "H Square"
+  },
+  {
+    "id": "fontawesome::plus-square",
+    "text": "Plus Square"
+  },
+  {
+    "id": "fontawesome::angle-double-left",
+    "text": "Angle Double Left"
+  },
+  {
+    "id": "fontawesome::angle-double-right",
+    "text": "Angle Double Right"
+  },
+  {
+    "id": "fontawesome::angle-double-up",
+    "text": "Angle Double Up"
+  },
+  {
+    "id": "fontawesome::angle-double-down",
+    "text": "Angle Double Down"
+  },
+  {
+    "id": "fontawesome::angle-left",
+    "text": "Angle Left"
+  },
+  {
+    "id": "fontawesome::angle-right",
+    "text": "Angle Right"
+  },
+  {
+    "id": "fontawesome::angle-up",
+    "text": "Angle Up"
+  },
+  {
+    "id": "fontawesome::angle-down",
+    "text": "Angle Down"
+  },
+  {
+    "id": "fontawesome::desktop",
+    "text": "Desktop"
+  },
+  {
+    "id": "fontawesome::laptop",
+    "text": "Laptop"
+  },
+  {
+    "id": "fontawesome::tablet",
+    "text": "Tablet"
+  },
+  {
+    "id": "fontawesome::mobile",
+    "text": "Mobile"
+  },
+  {
+    "id": "fontawesome::circle-o",
+    "text": "Circle O"
+  },
+  {
+    "id": "fontawesome::quote-left",
+    "text": "Quote Left"
+  },
+  {
+    "id": "fontawesome::quote-right",
+    "text": "Quote Right"
+  },
+  {
+    "id": "fontawesome::spinner",
+    "text": "Spinner"
+  },
+  {
+    "id": "fontawesome::circle",
+    "text": "Circle"
+  },
+  {
+    "id": "fontawesome::reply",
+    "text": "Reply"
+  },
+  {
+    "id": "fontawesome::github-alt",
+    "text": "Github Alt"
+  },
+  {
+    "id": "fontawesome::folder-o",
+    "text": "Folder O"
+  },
+  {
+    "id": "fontawesome::folder-open-o",
+    "text": "Folder Open O"
+  },
+  {
+    "id": "fontawesome::smile-o",
+    "text": "Smile O"
+  },
+  {
+    "id": "fontawesome::frown-o",
+    "text": "Frown O"
+  },
+  {
+    "id": "fontawesome::meh-o",
+    "text": "Meh O"
+  },
+  {
+    "id": "fontawesome::gamepad",
+    "text": "Gamepad"
+  },
+  {
+    "id": "fontawesome::keyboard-o",
+    "text": "Keyboard O"
+  },
+  {
+    "id": "fontawesome::flag-o",
+    "text": "Flag O"
+  },
+  {
+    "id": "fontawesome::flag-checkered",
+    "text": "Flag Checkered"
+  },
+  {
+    "id": "fontawesome::terminal",
+    "text": "Terminal"
+  },
+  {
+    "id": "fontawesome::code",
+    "text": "Code"
+  },
+  {
+    "id": "fontawesome::reply-all",
+    "text": "Reply All"
+  },
+  {
+    "id": "fontawesome::star-half-o",
+    "text": "Star Half O"
+  },
+  {
+    "id": "fontawesome::location-arrow",
+    "text": "Location Arrow"
+  },
+  {
+    "id": "fontawesome::crop",
+    "text": "Crop"
+  },
+  {
+    "id": "fontawesome::code-fork",
+    "text": "Code Fork"
+  },
+  {
+    "id": "fontawesome::chain-broken",
+    "text": "Chain Broken"
+  },
+  {
+    "id": "fontawesome::question",
+    "text": "Question"
+  },
+  {
+    "id": "fontawesome::info",
+    "text": "Info"
+  },
+  {
+    "id": "fontawesome::exclamation",
+    "text": "Exclamation"
+  },
+  {
+    "id": "fontawesome::superscript",
+    "text": "Superscript"
+  },
+  {
+    "id": "fontawesome::subscript",
+    "text": "Subscript"
+  },
+  {
+    "id": "fontawesome::eraser",
+    "text": "Eraser"
+  },
+  {
+    "id": "fontawesome::puzzle-piece",
+    "text": "Puzzle Piece"
+  },
+  {
+    "id": "fontawesome::microphone",
+    "text": "Microphone"
+  },
+  {
+    "id": "fontawesome::microphone-slash",
+    "text": "Microphone Slash"
+  },
+  {
+    "id": "fontawesome::shield",
+    "text": "Shield"
+  },
+  {
+    "id": "fontawesome::calendar-o",
+    "text": "Calendar O"
+  },
+  {
+    "id": "fontawesome::fire-extinguisher",
+    "text": "Fire Extinguisher"
+  },
+  {
+    "id": "fontawesome::rocket",
+    "text": "Rocket"
+  },
+  {
+    "id": "fontawesome::maxcdn",
+    "text": "Maxcdn"
+  },
+  {
+    "id": "fontawesome::chevron-circle-left",
+    "text": "Chevron Circle Left"
+  },
+  {
+    "id": "fontawesome::chevron-circle-right",
+    "text": "Chevron Circle Right"
+  },
+  {
+    "id": "fontawesome::chevron-circle-up",
+    "text": "Chevron Circle Up"
+  },
+  {
+    "id": "fontawesome::chevron-circle-down",
+    "text": "Chevron Circle Down"
+  },
+  {
+    "id": "fontawesome::html5",
+    "text": "Html5"
+  },
+  {
+    "id": "fontawesome::css3",
+    "text": "Css3"
+  },
+  {
+    "id": "fontawesome::anchor",
+    "text": "Anchor"
+  },
+  {
+    "id": "fontawesome::unlock-alt",
+    "text": "Unlock Alt"
+  },
+  {
+    "id": "fontawesome::bullseye",
+    "text": "Bullseye"
+  },
+  {
+    "id": "fontawesome::ellipsis-h",
+    "text": "Ellipsis H"
+  },
+  {
+    "id": "fontawesome::ellipsis-v",
+    "text": "Ellipsis V"
+  },
+  {
+    "id": "fontawesome::rss-square",
+    "text": "Rss Square"
+  },
+  {
+    "id": "fontawesome::play-circle",
+    "text": "Play Circle"
+  },
+  {
+    "id": "fontawesome::ticket",
+    "text": "Ticket"
+  },
+  {
+    "id": "fontawesome::minus-square",
+    "text": "Minus Square"
+  },
+  {
+    "id": "fontawesome::minus-square-o",
+    "text": "Minus Square O"
+  },
+  {
+    "id": "fontawesome::level-up",
+    "text": "Level Up"
+  },
+  {
+    "id": "fontawesome::level-down",
+    "text": "Level Down"
+  },
+  {
+    "id": "fontawesome::check-square",
+    "text": "Check Square"
+  },
+  {
+    "id": "fontawesome::pencil-square",
+    "text": "Pencil Square"
+  },
+  {
+    "id": "fontawesome::external-link-square",
+    "text": "External Link Square"
+  },
+  {
+    "id": "fontawesome::share-square",
+    "text": "Share Square"
+  },
+  {
+    "id": "fontawesome::compass",
+    "text": "Compass"
+  },
+  {
+    "id": "fontawesome::caret-square-o-down",
+    "text": "Caret Square O Down"
+  },
+  {
+    "id": "fontawesome::caret-square-o-up",
+    "text": "Caret Square O Up"
+  },
+  {
+    "id": "fontawesome::caret-square-o-right",
+    "text": "Caret Square O Right"
+  },
+  {
+    "id": "fontawesome::eur",
+    "text": "Eur"
+  },
+  {
+    "id": "fontawesome::gbp",
+    "text": "Gbp"
+  },
+  {
+    "id": "fontawesome::usd",
+    "text": "Usd"
+  },
+  {
+    "id": "fontawesome::inr",
+    "text": "Inr"
+  },
+  {
+    "id": "fontawesome::jpy",
+    "text": "Jpy"
+  },
+  {
+    "id": "fontawesome::rub",
+    "text": "Rub"
+  },
+  {
+    "id": "fontawesome::krw",
+    "text": "Krw"
+  },
+  {
+    "id": "fontawesome::btc",
+    "text": "Btc"
+  },
+  {
+    "id": "fontawesome::file",
+    "text": "File"
+  },
+  {
+    "id": "fontawesome::file-text",
+    "text": "File Text"
+  },
+  {
+    "id": "fontawesome::sort-alpha-asc",
+    "text": "Sort Alpha Asc"
+  },
+  {
+    "id": "fontawesome::sort-alpha-desc",
+    "text": "Sort Alpha Desc"
+  },
+  {
+    "id": "fontawesome::sort-amount-asc",
+    "text": "Sort Amount Asc"
+  },
+  {
+    "id": "fontawesome::sort-amount-desc",
+    "text": "Sort Amount Desc"
+  },
+  {
+    "id": "fontawesome::sort-numeric-asc",
+    "text": "Sort Numeric Asc"
+  },
+  {
+    "id": "fontawesome::sort-numeric-desc",
+    "text": "Sort Numeric Desc"
+  },
+  {
+    "id": "fontawesome::thumbs-up",
+    "text": "Thumbs Up"
+  },
+  {
+    "id": "fontawesome::thumbs-down",
+    "text": "Thumbs Down"
+  },
+  {
+    "id": "fontawesome::youtube-square",
+    "text": "Youtube Square"
+  },
+  {
+    "id": "fontawesome::youtube",
+    "text": "Youtube"
+  },
+  {
+    "id": "fontawesome::xing",
+    "text": "Xing"
+  },
+  {
+    "id": "fontawesome::xing-square",
+    "text": "Xing Square"
+  },
+  {
+    "id": "fontawesome::youtube-play",
+    "text": "Youtube Play"
+  },
+  {
+    "id": "fontawesome::dropbox",
+    "text": "Dropbox"
+  },
+  {
+    "id": "fontawesome::stack-overflow",
+    "text": "Stack Overflow"
+  },
+  {
+    "id": "fontawesome::instagram",
+    "text": "Instagram"
+  },
+  {
+    "id": "fontawesome::flickr",
+    "text": "Flickr"
+  },
+  {
+    "id": "fontawesome::adn",
+    "text": "Adn"
+  },
+  {
+    "id": "fontawesome::bitbucket",
+    "text": "Bitbucket"
+  },
+  {
+    "id": "fontawesome::bitbucket-square",
+    "text": "Bitbucket Square"
+  },
+  {
+    "id": "fontawesome::tumblr",
+    "text": "Tumblr"
+  },
+  {
+    "id": "fontawesome::tumblr-square",
+    "text": "Tumblr Square"
+  },
+  {
+    "id": "fontawesome::long-arrow-down",
+    "text": "Long Arrow Down"
+  },
+  {
+    "id": "fontawesome::long-arrow-up",
+    "text": "Long Arrow Up"
+  },
+  {
+    "id": "fontawesome::long-arrow-left",
+    "text": "Long Arrow Left"
+  },
+  {
+    "id": "fontawesome::long-arrow-right",
+    "text": "Long Arrow Right"
+  },
+  {
+    "id": "fontawesome::apple",
+    "text": "Apple"
+  },
+  {
+    "id": "fontawesome::windows",
+    "text": "Windows"
+  },
+  {
+    "id": "fontawesome::android",
+    "text": "Android"
+  },
+  {
+    "id": "fontawesome::linux",
+    "text": "Linux"
+  },
+  {
+    "id": "fontawesome::dribbble",
+    "text": "Dribbble"
+  },
+  {
+    "id": "fontawesome::skype",
+    "text": "Skype"
+  },
+  {
+    "id": "fontawesome::foursquare",
+    "text": "Foursquare"
+  },
+  {
+    "id": "fontawesome::trello",
+    "text": "Trello"
+  },
+  {
+    "id": "fontawesome::female",
+    "text": "Female"
+  },
+  {
+    "id": "fontawesome::male",
+    "text": "Male"
+  },
+  {
+    "id": "fontawesome::gratipay",
+    "text": "Gratipay"
+  },
+  {
+    "id": "fontawesome::sun-o",
+    "text": "Sun O"
+  },
+  {
+    "id": "fontawesome::moon-o",
+    "text": "Moon O"
+  },
+  {
+    "id": "fontawesome::archive",
+    "text": "Archive"
+  },
+  {
+    "id": "fontawesome::bug",
+    "text": "Bug"
+  },
+  {
+    "id": "fontawesome::vk",
+    "text": "Vk"
+  },
+  {
+    "id": "fontawesome::weibo",
+    "text": "Weibo"
+  },
+  {
+    "id": "fontawesome::renren",
+    "text": "Renren"
+  },
+  {
+    "id": "fontawesome::pagelines",
+    "text": "Pagelines"
+  },
+  {
+    "id": "fontawesome::stack-exchange",
+    "text": "Stack Exchange"
+  },
+  {
+    "id": "fontawesome::arrow-circle-o-right",
+    "text": "Arrow Circle O Right"
+  },
+  {
+    "id": "fontawesome::arrow-circle-o-left",
+    "text": "Arrow Circle O Left"
+  },
+  {
+    "id": "fontawesome::caret-square-o-left",
+    "text": "Caret Square O Left"
+  },
+  {
+    "id": "fontawesome::dot-circle-o",
+    "text": "Dot Circle O"
+  },
+  {
+    "id": "fontawesome::wheelchair",
+    "text": "Wheelchair"
+  },
+  {
+    "id": "fontawesome::vimeo-square",
+    "text": "Vimeo Square"
+  },
+  {
+    "id": "fontawesome::try",
+    "text": "Try"
+  },
+  {
+    "id": "fontawesome::plus-square-o",
+    "text": "Plus Square O"
+  },
+  {
+    "id": "fontawesome::space-shuttle",
+    "text": "Space Shuttle"
+  },
+  {
+    "id": "fontawesome::slack",
+    "text": "Slack"
+  },
+  {
+    "id": "fontawesome::envelope-square",
+    "text": "Envelope Square"
+  },
+  {
+    "id": "fontawesome::wordpress",
+    "text": "Wordpress"
+  },
+  {
+    "id": "fontawesome::openid",
+    "text": "Openid"
+  },
+  {
+    "id": "fontawesome::university",
+    "text": "University"
+  },
+  {
+    "id": "fontawesome::graduation-cap",
+    "text": "Graduation Cap"
+  },
+  {
+    "id": "fontawesome::yahoo",
+    "text": "Yahoo"
+  },
+  {
+    "id": "fontawesome::google",
+    "text": "Google"
+  },
+  {
+    "id": "fontawesome::reddit",
+    "text": "Reddit"
+  },
+  {
+    "id": "fontawesome::reddit-square",
+    "text": "Reddit Square"
+  },
+  {
+    "id": "fontawesome::stumbleupon-circle",
+    "text": "Stumbleupon Circle"
+  },
+  {
+    "id": "fontawesome::stumbleupon",
+    "text": "Stumbleupon"
+  },
+  {
+    "id": "fontawesome::delicious",
+    "text": "Delicious"
+  },
+  {
+    "id": "fontawesome::digg",
+    "text": "Digg"
+  },
+  {
+    "id": "fontawesome::pied-piper-pp",
+    "text": "Pied Piper Pp"
+  },
+  {
+    "id": "fontawesome::pied-piper-alt",
+    "text": "Pied Piper Alt"
+  },
+  {
+    "id": "fontawesome::drupal",
+    "text": "Drupal"
+  },
+  {
+    "id": "fontawesome::joomla",
+    "text": "Joomla"
+  },
+  {
+    "id": "fontawesome::language",
+    "text": "Language"
+  },
+  {
+    "id": "fontawesome::fax",
+    "text": "Fax"
+  },
+  {
+    "id": "fontawesome::building",
+    "text": "Building"
+  },
+  {
+    "id": "fontawesome::child",
+    "text": "Child"
+  },
+  {
+    "id": "fontawesome::paw",
+    "text": "Paw"
+  },
+  {
+    "id": "fontawesome::spoon",
+    "text": "Spoon"
+  },
+  {
+    "id": "fontawesome::cube",
+    "text": "Cube"
+  },
+  {
+    "id": "fontawesome::cubes",
+    "text": "Cubes"
+  },
+  {
+    "id": "fontawesome::behance",
+    "text": "Behance"
+  },
+  {
+    "id": "fontawesome::behance-square",
+    "text": "Behance Square"
+  },
+  {
+    "id": "fontawesome::steam",
+    "text": "Steam"
+  },
+  {
+    "id": "fontawesome::steam-square",
+    "text": "Steam Square"
+  },
+  {
+    "id": "fontawesome::recycle",
+    "text": "Recycle"
+  },
+  {
+    "id": "fontawesome::car",
+    "text": "Car"
+  },
+  {
+    "id": "fontawesome::taxi",
+    "text": "Taxi"
+  },
+  {
+    "id": "fontawesome::tree",
+    "text": "Tree"
+  },
+  {
+    "id": "fontawesome::spotify",
+    "text": "Spotify"
+  },
+  {
+    "id": "fontawesome::deviantart",
+    "text": "Deviantart"
+  },
+  {
+    "id": "fontawesome::soundcloud",
+    "text": "Soundcloud"
+  },
+  {
+    "id": "fontawesome::database",
+    "text": "Database"
+  },
+  {
+    "id": "fontawesome::file-pdf-o",
+    "text": "File Pdf O"
+  },
+  {
+    "id": "fontawesome::file-word-o",
+    "text": "File Word O"
+  },
+  {
+    "id": "fontawesome::file-excel-o",
+    "text": "File Excel O"
+  },
+  {
+    "id": "fontawesome::file-powerpoint-o",
+    "text": "File Powerpoint O"
+  },
+  {
+    "id": "fontawesome::file-image-o",
+    "text": "File Image O"
+  },
+  {
+    "id": "fontawesome::file-archive-o",
+    "text": "File Archive O"
+  },
+  {
+    "id": "fontawesome::file-audio-o",
+    "text": "File Audio O"
+  },
+  {
+    "id": "fontawesome::file-video-o",
+    "text": "File Video O"
+  },
+  {
+    "id": "fontawesome::file-code-o",
+    "text": "File Code O"
+  },
+  {
+    "id": "fontawesome::vine",
+    "text": "Vine"
+  },
+  {
+    "id": "fontawesome::codepen",
+    "text": "Codepen"
+  },
+  {
+    "id": "fontawesome::jsfiddle",
+    "text": "Jsfiddle"
+  },
+  {
+    "id": "fontawesome::life-ring",
+    "text": "Life Ring"
+  },
+  {
+    "id": "fontawesome::circle-o-notch",
+    "text": "Circle O Notch"
+  },
+  {
+    "id": "fontawesome::rebel",
+    "text": "Rebel"
+  },
+  {
+    "id": "fontawesome::empire",
+    "text": "Empire"
+  },
+  {
+    "id": "fontawesome::git-square",
+    "text": "Git Square"
+  },
+  {
+    "id": "fontawesome::git",
+    "text": "Git"
+  },
+  {
+    "id": "fontawesome::hacker-news",
+    "text": "Hacker News"
+  },
+  {
+    "id": "fontawesome::tencent-weibo",
+    "text": "Tencent Weibo"
+  },
+  {
+    "id": "fontawesome::qq",
+    "text": "Qq"
+  },
+  {
+    "id": "fontawesome::weixin",
+    "text": "Weixin"
+  },
+  {
+    "id": "fontawesome::paper-plane",
+    "text": "Paper Plane"
+  },
+  {
+    "id": "fontawesome::paper-plane-o",
+    "text": "Paper Plane O"
+  },
+  {
+    "id": "fontawesome::history",
+    "text": "History"
+  },
+  {
+    "id": "fontawesome::circle-thin",
+    "text": "Circle Thin"
+  },
+  {
+    "id": "fontawesome::header",
+    "text": "Header"
+  },
+  {
+    "id": "fontawesome::paragraph",
+    "text": "Paragraph"
+  },
+  {
+    "id": "fontawesome::sliders",
+    "text": "Sliders"
+  },
+  {
+    "id": "fontawesome::share-alt",
+    "text": "Share Alt"
+  },
+  {
+    "id": "fontawesome::share-alt-square",
+    "text": "Share Alt Square"
+  },
+  {
+    "id": "fontawesome::bomb",
+    "text": "Bomb"
+  },
+  {
+    "id": "fontawesome::futbol-o",
+    "text": "Futbol O"
+  },
+  {
+    "id": "fontawesome::tty",
+    "text": "Tty"
+  },
+  {
+    "id": "fontawesome::binoculars",
+    "text": "Binoculars"
+  },
+  {
+    "id": "fontawesome::plug",
+    "text": "Plug"
+  },
+  {
+    "id": "fontawesome::slideshare",
+    "text": "Slideshare"
+  },
+  {
+    "id": "fontawesome::twitch",
+    "text": "Twitch"
+  },
+  {
+    "id": "fontawesome::yelp",
+    "text": "Yelp"
+  },
+  {
+    "id": "fontawesome::newspaper-o",
+    "text": "Newspaper O"
+  },
+  {
+    "id": "fontawesome::wifi",
+    "text": "Wifi"
+  },
+  {
+    "id": "fontawesome::calculator",
+    "text": "Calculator"
+  },
+  {
+    "id": "fontawesome::paypal",
+    "text": "Paypal"
+  },
+  {
+    "id": "fontawesome::google-wallet",
+    "text": "Google Wallet"
+  },
+  {
+    "id": "fontawesome::cc-visa",
+    "text": "Cc Visa"
+  },
+  {
+    "id": "fontawesome::cc-mastercard",
+    "text": "Cc Mastercard"
+  },
+  {
+    "id": "fontawesome::cc-discover",
+    "text": "Cc Discover"
+  },
+  {
+    "id": "fontawesome::cc-amex",
+    "text": "Cc Amex"
+  },
+  {
+    "id": "fontawesome::cc-paypal",
+    "text": "Cc Paypal"
+  },
+  {
+    "id": "fontawesome::cc-stripe",
+    "text": "Cc Stripe"
+  },
+  {
+    "id": "fontawesome::bell-slash",
+    "text": "Bell Slash"
+  },
+  {
+    "id": "fontawesome::bell-slash-o",
+    "text": "Bell Slash O"
+  },
+  {
+    "id": "fontawesome::trash",
+    "text": "Trash"
+  },
+  {
+    "id": "fontawesome::copyright",
+    "text": "Copyright"
+  },
+  {
+    "id": "fontawesome::at",
+    "text": "At"
+  },
+  {
+    "id": "fontawesome::eyedropper",
+    "text": "Eyedropper"
+  },
+  {
+    "id": "fontawesome::paint-brush",
+    "text": "Paint Brush"
+  },
+  {
+    "id": "fontawesome::birthday-cake",
+    "text": "Birthday Cake"
+  },
+  {
+    "id": "fontawesome::area-chart",
+    "text": "Area Chart"
+  },
+  {
+    "id": "fontawesome::pie-chart",
+    "text": "Pie Chart"
+  },
+  {
+    "id": "fontawesome::line-chart",
+    "text": "Line Chart"
+  },
+  {
+    "id": "fontawesome::lastfm",
+    "text": "Lastfm"
+  },
+  {
+    "id": "fontawesome::lastfm-square",
+    "text": "Lastfm Square"
+  },
+  {
+    "id": "fontawesome::toggle-off",
+    "text": "Toggle Off"
+  },
+  {
+    "id": "fontawesome::toggle-on",
+    "text": "Toggle On"
+  },
+  {
+    "id": "fontawesome::bicycle",
+    "text": "Bicycle"
+  },
+  {
+    "id": "fontawesome::bus",
+    "text": "Bus"
+  },
+  {
+    "id": "fontawesome::ioxhost",
+    "text": "Ioxhost"
+  },
+  {
+    "id": "fontawesome::angellist",
+    "text": "Angellist"
+  },
+  {
+    "id": "fontawesome::cc",
+    "text": "Cc"
+  },
+  {
+    "id": "fontawesome::ils",
+    "text": "Ils"
+  },
+  {
+    "id": "fontawesome::meanpath",
+    "text": "Meanpath"
+  },
+  {
+    "id": "fontawesome::buysellads",
+    "text": "Buysellads"
+  },
+  {
+    "id": "fontawesome::connectdevelop",
+    "text": "Connectdevelop"
+  },
+  {
+    "id": "fontawesome::dashcube",
+    "text": "Dashcube"
+  },
+  {
+    "id": "fontawesome::forumbee",
+    "text": "Forumbee"
+  },
+  {
+    "id": "fontawesome::leanpub",
+    "text": "Leanpub"
+  },
+  {
+    "id": "fontawesome::sellsy",
+    "text": "Sellsy"
+  },
+  {
+    "id": "fontawesome::shirtsinbulk",
+    "text": "Shirtsinbulk"
+  },
+  {
+    "id": "fontawesome::simplybuilt",
+    "text": "Simplybuilt"
+  },
+  {
+    "id": "fontawesome::skyatlas",
+    "text": "Skyatlas"
+  },
+  {
+    "id": "fontawesome::cart-plus",
+    "text": "Cart Plus"
+  },
+  {
+    "id": "fontawesome::cart-arrow-down",
+    "text": "Cart Arrow Down"
+  },
+  {
+    "id": "fontawesome::diamond",
+    "text": "Diamond"
+  },
+  {
+    "id": "fontawesome::ship",
+    "text": "Ship"
+  },
+  {
+    "id": "fontawesome::user-secret",
+    "text": "User Secret"
+  },
+  {
+    "id": "fontawesome::motorcycle",
+    "text": "Motorcycle"
+  },
+  {
+    "id": "fontawesome::street-view",
+    "text": "Street View"
+  },
+  {
+    "id": "fontawesome::heartbeat",
+    "text": "Heartbeat"
+  },
+  {
+    "id": "fontawesome::venus",
+    "text": "Venus"
+  },
+  {
+    "id": "fontawesome::mars",
+    "text": "Mars"
+  },
+  {
+    "id": "fontawesome::mercury",
+    "text": "Mercury"
+  },
+  {
+    "id": "fontawesome::transgender",
+    "text": "Transgender"
+  },
+  {
+    "id": "fontawesome::transgender-alt",
+    "text": "Transgender Alt"
+  },
+  {
+    "id": "fontawesome::venus-double",
+    "text": "Venus Double"
+  },
+  {
+    "id": "fontawesome::mars-double",
+    "text": "Mars Double"
+  },
+  {
+    "id": "fontawesome::venus-mars",
+    "text": "Venus Mars"
+  },
+  {
+    "id": "fontawesome::mars-stroke",
+    "text": "Mars Stroke"
+  },
+  {
+    "id": "fontawesome::mars-stroke-v",
+    "text": "Mars Stroke V"
+  },
+  {
+    "id": "fontawesome::mars-stroke-h",
+    "text": "Mars Stroke H"
+  },
+  {
+    "id": "fontawesome::neuter",
+    "text": "Neuter"
+  },
+  {
+    "id": "fontawesome::genderless",
+    "text": "Genderless"
+  },
+  {
+    "id": "fontawesome::facebook-official",
+    "text": "Facebook Official"
+  },
+  {
+    "id": "fontawesome::pinterest-p",
+    "text": "Pinterest P"
+  },
+  {
+    "id": "fontawesome::whatsapp",
+    "text": "Whatsapp"
+  },
+  {
+    "id": "fontawesome::server",
+    "text": "Server"
+  },
+  {
+    "id": "fontawesome::user-plus",
+    "text": "User Plus"
+  },
+  {
+    "id": "fontawesome::user-times",
+    "text": "User Times"
+  },
+  {
+    "id": "fontawesome::bed",
+    "text": "Bed"
+  },
+  {
+    "id": "fontawesome::viacoin",
+    "text": "Viacoin"
+  },
+  {
+    "id": "fontawesome::train",
+    "text": "Train"
+  },
+  {
+    "id": "fontawesome::subway",
+    "text": "Subway"
+  },
+  {
+    "id": "fontawesome::medium",
+    "text": "Medium"
+  },
+  {
+    "id": "fontawesome::y-combinator",
+    "text": "Y Combinator"
+  },
+  {
+    "id": "fontawesome::optin-monster",
+    "text": "Optin Monster"
+  },
+  {
+    "id": "fontawesome::opencart",
+    "text": "Opencart"
+  },
+  {
+    "id": "fontawesome::expeditedssl",
+    "text": "Expeditedssl"
+  },
+  {
+    "id": "fontawesome::battery-full",
+    "text": "Battery Full"
+  },
+  {
+    "id": "fontawesome::battery-three-quarters",
+    "text": "Battery Three Quarters"
+  },
+  {
+    "id": "fontawesome::battery-half",
+    "text": "Battery Half"
+  },
+  {
+    "id": "fontawesome::battery-quarter",
+    "text": "Battery Quarter"
+  },
+  {
+    "id": "fontawesome::battery-empty",
+    "text": "Battery Empty"
+  },
+  {
+    "id": "fontawesome::mouse-pointer",
+    "text": "Mouse Pointer"
+  },
+  {
+    "id": "fontawesome::i-cursor",
+    "text": "I Cursor"
+  },
+  {
+    "id": "fontawesome::object-group",
+    "text": "Object Group"
+  },
+  {
+    "id": "fontawesome::object-ungroup",
+    "text": "Object Ungroup"
+  },
+  {
+    "id": "fontawesome::sticky-note",
+    "text": "Sticky Note"
+  },
+  {
+    "id": "fontawesome::sticky-note-o",
+    "text": "Sticky Note O"
+  },
+  {
+    "id": "fontawesome::cc-jcb",
+    "text": "Cc Jcb"
+  },
+  {
+    "id": "fontawesome::cc-diners-club",
+    "text": "Cc Diners Club"
+  },
+  {
+    "id": "fontawesome::clone",
+    "text": "Clone"
+  },
+  {
+    "id": "fontawesome::balance-scale",
+    "text": "Balance Scale"
+  },
+  {
+    "id": "fontawesome::hourglass-o",
+    "text": "Hourglass O"
+  },
+  {
+    "id": "fontawesome::hourglass-start",
+    "text": "Hourglass Start"
+  },
+  {
+    "id": "fontawesome::hourglass-half",
+    "text": "Hourglass Half"
+  },
+  {
+    "id": "fontawesome::hourglass-end",
+    "text": "Hourglass End"
+  },
+  {
+    "id": "fontawesome::hourglass",
+    "text": "Hourglass"
+  },
+  {
+    "id": "fontawesome::hand-rock-o",
+    "text": "Hand Rock O"
+  },
+  {
+    "id": "fontawesome::hand-paper-o",
+    "text": "Hand Paper O"
+  },
+  {
+    "id": "fontawesome::hand-scissors-o",
+    "text": "Hand Scissors O"
+  },
+  {
+    "id": "fontawesome::hand-lizard-o",
+    "text": "Hand Lizard O"
+  },
+  {
+    "id": "fontawesome::hand-spock-o",
+    "text": "Hand Spock O"
+  },
+  {
+    "id": "fontawesome::hand-pointer-o",
+    "text": "Hand Pointer O"
+  },
+  {
+    "id": "fontawesome::hand-peace-o",
+    "text": "Hand Peace O"
+  },
+  {
+    "id": "fontawesome::trademark",
+    "text": "Trademark"
+  },
+  {
+    "id": "fontawesome::registered",
+    "text": "Registered"
+  },
+  {
+    "id": "fontawesome::creative-commons",
+    "text": "Creative Commons"
+  },
+  {
+    "id": "fontawesome::gg",
+    "text": "Gg"
+  },
+  {
+    "id": "fontawesome::gg-circle",
+    "text": "Gg Circle"
+  },
+  {
+    "id": "fontawesome::tripadvisor",
+    "text": "Tripadvisor"
+  },
+  {
+    "id": "fontawesome::odnoklassniki",
+    "text": "Odnoklassniki"
+  },
+  {
+    "id": "fontawesome::odnoklassniki-square",
+    "text": "Odnoklassniki Square"
+  },
+  {
+    "id": "fontawesome::get-pocket",
+    "text": "Get Pocket"
+  },
+  {
+    "id": "fontawesome::wikipedia-w",
+    "text": "Wikipedia W"
+  },
+  {
+    "id": "fontawesome::safari",
+    "text": "Safari"
+  },
+  {
+    "id": "fontawesome::chrome",
+    "text": "Chrome"
+  },
+  {
+    "id": "fontawesome::firefox",
+    "text": "Firefox"
+  },
+  {
+    "id": "fontawesome::opera",
+    "text": "Opera"
+  },
+  {
+    "id": "fontawesome::internet-explorer",
+    "text": "Internet Explorer"
+  },
+  {
+    "id": "fontawesome::television",
+    "text": "Television"
+  },
+  {
+    "id": "fontawesome::contao",
+    "text": "Contao"
+  },
+  {
+    "id": "fontawesome::500px",
+    "text": "500px"
+  },
+  {
+    "id": "fontawesome::amazon",
+    "text": "Amazon"
+  },
+  {
+    "id": "fontawesome::calendar-plus-o",
+    "text": "Calendar Plus O"
+  },
+  {
+    "id": "fontawesome::calendar-minus-o",
+    "text": "Calendar Minus O"
+  },
+  {
+    "id": "fontawesome::calendar-times-o",
+    "text": "Calendar Times O"
+  },
+  {
+    "id": "fontawesome::calendar-check-o",
+    "text": "Calendar Check O"
+  },
+  {
+    "id": "fontawesome::industry",
+    "text": "Industry"
+  },
+  {
+    "id": "fontawesome::map-pin",
+    "text": "Map Pin"
+  },
+  {
+    "id": "fontawesome::map-signs",
+    "text": "Map Signs"
+  },
+  {
+    "id": "fontawesome::map-o",
+    "text": "Map O"
+  },
+  {
+    "id": "fontawesome::map",
+    "text": "Map"
+  },
+  {
+    "id": "fontawesome::commenting",
+    "text": "Commenting"
+  },
+  {
+    "id": "fontawesome::commenting-o",
+    "text": "Commenting O"
+  },
+  {
+    "id": "fontawesome::houzz",
+    "text": "Houzz"
+  },
+  {
+    "id": "fontawesome::vimeo",
+    "text": "Vimeo"
+  },
+  {
+    "id": "fontawesome::black-tie",
+    "text": "Black Tie"
+  },
+  {
+    "id": "fontawesome::fonticons",
+    "text": "Fonticons"
+  },
+  {
+    "id": "fontawesome::reddit-alien",
+    "text": "Reddit Alien"
+  },
+  {
+    "id": "fontawesome::edge",
+    "text": "Edge"
+  },
+  {
+    "id": "fontawesome::credit-card-alt",
+    "text": "Credit Card Alt"
+  },
+  {
+    "id": "fontawesome::codiepie",
+    "text": "Codiepie"
+  },
+  {
+    "id": "fontawesome::modx",
+    "text": "Modx"
+  },
+  {
+    "id": "fontawesome::fort-awesome",
+    "text": "Fort Awesome"
+  },
+  {
+    "id": "fontawesome::usb",
+    "text": "Usb"
+  },
+  {
+    "id": "fontawesome::product-hunt",
+    "text": "Product Hunt"
+  },
+  {
+    "id": "fontawesome::mixcloud",
+    "text": "Mixcloud"
+  },
+  {
+    "id": "fontawesome::scribd",
+    "text": "Scribd"
+  },
+  {
+    "id": "fontawesome::pause-circle",
+    "text": "Pause Circle"
+  },
+  {
+    "id": "fontawesome::pause-circle-o",
+    "text": "Pause Circle O"
+  },
+  {
+    "id": "fontawesome::stop-circle",
+    "text": "Stop Circle"
+  },
+  {
+    "id": "fontawesome::stop-circle-o",
+    "text": "Stop Circle O"
+  },
+  {
+    "id": "fontawesome::shopping-bag",
+    "text": "Shopping Bag"
+  },
+  {
+    "id": "fontawesome::shopping-basket",
+    "text": "Shopping Basket"
+  },
+  {
+    "id": "fontawesome::hashtag",
+    "text": "Hashtag"
+  },
+  {
+    "id": "fontawesome::bluetooth",
+    "text": "Bluetooth"
+  },
+  {
+    "id": "fontawesome::bluetooth-b",
+    "text": "Bluetooth B"
+  },
+  {
+    "id": "fontawesome::percent",
+    "text": "Percent"
+  },
+  {
+    "id": "fontawesome::gitlab",
+    "text": "Gitlab"
+  },
+  {
+    "id": "fontawesome::wpbeginner",
+    "text": "Wpbeginner"
+  },
+  {
+    "id": "fontawesome::wpforms",
+    "text": "Wpforms"
+  },
+  {
+    "id": "fontawesome::envira",
+    "text": "Envira"
+  },
+  {
+    "id": "fontawesome::universal-access",
+    "text": "Universal Access"
+  },
+  {
+    "id": "fontawesome::wheelchair-alt",
+    "text": "Wheelchair Alt"
+  },
+  {
+    "id": "fontawesome::question-circle-o",
+    "text": "Question Circle O"
+  },
+  {
+    "id": "fontawesome::blind",
+    "text": "Blind"
+  },
+  {
+    "id": "fontawesome::audio-description",
+    "text": "Audio Description"
+  },
+  {
+    "id": "fontawesome::volume-control-phone",
+    "text": "Volume Control Phone"
+  },
+  {
+    "id": "fontawesome::braille",
+    "text": "Braille"
+  },
+  {
+    "id": "fontawesome::assistive-listening-systems",
+    "text": "Assistive Listening Systems"
+  },
+  {
+    "id": "fontawesome::american-sign-language-interpreting",
+    "text": "American Sign Language Interpreting"
+  },
+  {
+    "id": "fontawesome::deaf",
+    "text": "Deaf"
+  },
+  {
+    "id": "fontawesome::glide",
+    "text": "Glide"
+  },
+  {
+    "id": "fontawesome::glide-g",
+    "text": "Glide G"
+  },
+  {
+    "id": "fontawesome::sign-language",
+    "text": "Sign Language"
+  },
+  {
+    "id": "fontawesome::low-vision",
+    "text": "Low Vision"
+  },
+  {
+    "id": "fontawesome::viadeo",
+    "text": "Viadeo"
+  },
+  {
+    "id": "fontawesome::viadeo-square",
+    "text": "Viadeo Square"
+  },
+  {
+    "id": "fontawesome::snapchat",
+    "text": "Snapchat"
+  },
+  {
+    "id": "fontawesome::snapchat-ghost",
+    "text": "Snapchat Ghost"
+  },
+  {
+    "id": "fontawesome::snapchat-square",
+    "text": "Snapchat Square"
+  },
+  {
+    "id": "fontawesome::pied-piper",
+    "text": "Pied Piper"
+  },
+  {
+    "id": "fontawesome::first-order",
+    "text": "First Order"
+  },
+  {
+    "id": "fontawesome::yoast",
+    "text": "Yoast"
+  },
+  {
+    "id": "fontawesome::themeisle",
+    "text": "Themeisle"
+  },
+  {
+    "id": "fontawesome::google-plus-official",
+    "text": "Google Plus Official"
+  },
+  {
+    "id": "fontawesome::font-awesome",
+    "text": "Font Awesome"
+  },
+  {
+    "id": "fontawesome::handshake-o",
+    "text": "Handshake O"
+  },
+  {
+    "id": "fontawesome::envelope-open",
+    "text": "Envelope Open"
+  },
+  {
+    "id": "fontawesome::envelope-open-o",
+    "text": "Envelope Open O"
+  },
+  {
+    "id": "fontawesome::linode",
+    "text": "Linode"
+  },
+  {
+    "id": "fontawesome::address-book",
+    "text": "Address Book"
+  },
+  {
+    "id": "fontawesome::address-book-o",
+    "text": "Address Book O"
+  },
+  {
+    "id": "fontawesome::address-card",
+    "text": "Address Card"
+  },
+  {
+    "id": "fontawesome::address-card-o",
+    "text": "Address Card O"
+  },
+  {
+    "id": "fontawesome::user-circle",
+    "text": "User Circle"
+  },
+  {
+    "id": "fontawesome::user-circle-o",
+    "text": "User Circle O"
+  },
+  {
+    "id": "fontawesome::user-o",
+    "text": "User O"
+  },
+  {
+    "id": "fontawesome::id-badge",
+    "text": "Id Badge"
+  },
+  {
+    "id": "fontawesome::id-card",
+    "text": "Id Card"
+  },
+  {
+    "id": "fontawesome::id-card-o",
+    "text": "Id Card O"
+  },
+  {
+    "id": "fontawesome::quora",
+    "text": "Quora"
+  },
+  {
+    "id": "fontawesome::free-code-camp",
+    "text": "Free Code Camp"
+  },
+  {
+    "id": "fontawesome::telegram",
+    "text": "Telegram"
+  },
+  {
+    "id": "fontawesome::thermometer-full",
+    "text": "Thermometer Full"
+  },
+  {
+    "id": "fontawesome::thermometer-three-quarters",
+    "text": "Thermometer Three Quarters"
+  },
+  {
+    "id": "fontawesome::thermometer-half",
+    "text": "Thermometer Half"
+  },
+  {
+    "id": "fontawesome::thermometer-quarter",
+    "text": "Thermometer Quarter"
+  },
+  {
+    "id": "fontawesome::thermometer-empty",
+    "text": "Thermometer Empty"
+  },
+  {
+    "id": "fontawesome::shower",
+    "text": "Shower"
+  },
+  {
+    "id": "fontawesome::bath",
+    "text": "Bath"
+  },
+  {
+    "id": "fontawesome::podcast",
+    "text": "Podcast"
+  },
+  {
+    "id": "fontawesome::window-maximize",
+    "text": "Window Maximize"
+  },
+  {
+    "id": "fontawesome::window-minimize",
+    "text": "Window Minimize"
+  },
+  {
+    "id": "fontawesome::window-restore",
+    "text": "Window Restore"
+  },
+  {
+    "id": "fontawesome::window-close",
+    "text": "Window Close"
+  },
+  {
+    "id": "fontawesome::window-close-o",
+    "text": "Window Close O"
+  },
+  {
+    "id": "fontawesome::bandcamp",
+    "text": "Bandcamp"
+  },
+  {
+    "id": "fontawesome::grav",
+    "text": "Grav"
+  },
+  {
+    "id": "fontawesome::etsy",
+    "text": "Etsy"
+  },
+  {
+    "id": "fontawesome::imdb",
+    "text": "Imdb"
+  },
+  {
+    "id": "fontawesome::ravelry",
+    "text": "Ravelry"
+  },
+  {
+    "id": "fontawesome::eercast",
+    "text": "Eercast"
+  },
+  {
+    "id": "fontawesome::microchip",
+    "text": "Microchip"
+  },
+  {
+    "id": "fontawesome::snowflake-o",
+    "text": "Snowflake O"
+  },
+  {
+    "id": "fontawesome::superpowers",
+    "text": "Superpowers"
+  },
+  {
+    "id": "fontawesome::wpexplorer",
+    "text": "Wpexplorer"
+  },
+  {
+    "id": "fontawesome::meetup",
+    "text": "Meetup"
+  },
+  {
+    "id": "simpleline::user",
+    "text": "User"
+  },
+  {
+    "id": "simpleline::people",
+    "text": "People"
+  },
+  {
+    "id": "simpleline::user-female",
+    "text": "User Female"
+  },
+  {
+    "id": "simpleline::user-follow",
+    "text": "User Follow"
+  },
+  {
+    "id": "simpleline::user-following",
+    "text": "User Following"
+  },
+  {
+    "id": "simpleline::user-unfollow",
+    "text": "User Unfollow"
+  },
+  {
+    "id": "simpleline::login",
+    "text": "Login"
+  },
+  {
+    "id": "simpleline::logout",
+    "text": "Logout"
+  },
+  {
+    "id": "simpleline::emotsmile",
+    "text": "Emotsmile"
+  },
+  {
+    "id": "simpleline::phone",
+    "text": "Phone"
+  },
+  {
+    "id": "simpleline::call-end",
+    "text": "Call End"
+  },
+  {
+    "id": "simpleline::call-in",
+    "text": "Call In"
+  },
+  {
+    "id": "simpleline::call-out",
+    "text": "Call Out"
+  },
+  {
+    "id": "simpleline::map",
+    "text": "Map"
+  },
+  {
+    "id": "simpleline::location-pin",
+    "text": "Location Pin"
+  },
+  {
+    "id": "simpleline::direction",
+    "text": "Direction"
+  },
+  {
+    "id": "simpleline::directions",
+    "text": "Directions"
+  },
+  {
+    "id": "simpleline::compass",
+    "text": "Compass"
+  },
+  {
+    "id": "simpleline::layers",
+    "text": "Layers"
+  },
+  {
+    "id": "simpleline::menu",
+    "text": "Menu"
+  },
+  {
+    "id": "simpleline::list",
+    "text": "List"
+  },
+  {
+    "id": "simpleline::options-vertical",
+    "text": "Options Vertical"
+  },
+  {
+    "id": "simpleline::options",
+    "text": "Options"
+  },
+  {
+    "id": "simpleline::arrow-down",
+    "text": "Arrow Down"
+  },
+  {
+    "id": "simpleline::arrow-left",
+    "text": "Arrow Left"
+  },
+  {
+    "id": "simpleline::arrow-right",
+    "text": "Arrow Right"
+  },
+  {
+    "id": "simpleline::arrow-up",
+    "text": "Arrow Up"
+  },
+  {
+    "id": "simpleline::arrow-up-circle",
+    "text": "Arrow Up Circle"
+  },
+  {
+    "id": "simpleline::arrow-left-circle",
+    "text": "Arrow Left Circle"
+  },
+  {
+    "id": "simpleline::arrow-right-circle",
+    "text": "Arrow Right Circle"
+  },
+  {
+    "id": "simpleline::arrow-down-circle",
+    "text": "Arrow Down Circle"
+  },
+  {
+    "id": "simpleline::check",
+    "text": "Check"
+  },
+  {
+    "id": "simpleline::clock",
+    "text": "Clock"
+  },
+  {
+    "id": "simpleline::plus",
+    "text": "Plus"
+  },
+  {
+    "id": "simpleline::close",
+    "text": "Close"
+  },
+  {
+    "id": "simpleline::trophy",
+    "text": "Trophy"
+  },
+  {
+    "id": "simpleline::screen-smartphone",
+    "text": "Screen Smartphone"
+  },
+  {
+    "id": "simpleline::screen-desktop",
+    "text": "Screen Desktop"
+  },
+  {
+    "id": "simpleline::plane",
+    "text": "Plane"
+  },
+  {
+    "id": "simpleline::notebook",
+    "text": "Notebook"
+  },
+  {
+    "id": "simpleline::mustache",
+    "text": "Mustache"
+  },
+  {
+    "id": "simpleline::mouse",
+    "text": "Mouse"
+  },
+  {
+    "id": "simpleline::magnet",
+    "text": "Magnet"
+  },
+  {
+    "id": "simpleline::energy",
+    "text": "Energy"
+  },
+  {
+    "id": "simpleline::disc",
+    "text": "Disc"
+  },
+  {
+    "id": "simpleline::cursor",
+    "text": "Cursor"
+  },
+  {
+    "id": "simpleline::cursor-move",
+    "text": "Cursor Move"
+  },
+  {
+    "id": "simpleline::crop",
+    "text": "Crop"
+  },
+  {
+    "id": "simpleline::chemistry",
+    "text": "Chemistry"
+  },
+  {
+    "id": "simpleline::speedometer",
+    "text": "Speedometer"
+  },
+  {
+    "id": "simpleline::shield",
+    "text": "Shield"
+  },
+  {
+    "id": "simpleline::screen-tablet",
+    "text": "Screen Tablet"
+  },
+  {
+    "id": "simpleline::magic-wand",
+    "text": "Magic Wand"
+  },
+  {
+    "id": "simpleline::hourglass",
+    "text": "Hourglass"
+  },
+  {
+    "id": "simpleline::graduation",
+    "text": "Graduation"
+  },
+  {
+    "id": "simpleline::ghost",
+    "text": "Ghost"
+  },
+  {
+    "id": "simpleline::game-controller",
+    "text": "Game Controller"
+  },
+  {
+    "id": "simpleline::fire",
+    "text": "Fire"
+  },
+  {
+    "id": "simpleline::eyeglass",
+    "text": "Eyeglass"
+  },
+  {
+    "id": "simpleline::envelope-open",
+    "text": "Envelope Open"
+  },
+  {
+    "id": "simpleline::envolope-letter",
+    "text": "Envolope Letter"
+  },
+  {
+    "id": "simpleline::bell",
+    "text": "Bell"
+  },
+  {
+    "id": "simpleline::badge",
+    "text": "Badge"
+  },
+  {
+    "id": "simpleline::anchor",
+    "text": "Anchor"
+  },
+  {
+    "id": "simpleline::wallet",
+    "text": "Wallet"
+  },
+  {
+    "id": "simpleline::vector",
+    "text": "Vector"
+  },
+  {
+    "id": "simpleline::speech",
+    "text": "Speech"
+  },
+  {
+    "id": "simpleline::puzzle",
+    "text": "Puzzle"
+  },
+  {
+    "id": "simpleline::printer",
+    "text": "Printer"
+  },
+  {
+    "id": "simpleline::present",
+    "text": "Present"
+  },
+  {
+    "id": "simpleline::playlist",
+    "text": "Playlist"
+  },
+  {
+    "id": "simpleline::pin",
+    "text": "Pin"
+  },
+  {
+    "id": "simpleline::picture",
+    "text": "Picture"
+  },
+  {
+    "id": "simpleline::handbag",
+    "text": "Handbag"
+  },
+  {
+    "id": "simpleline::globe-alt",
+    "text": "Globe Alt"
+  },
+  {
+    "id": "simpleline::globe",
+    "text": "Globe"
+  },
+  {
+    "id": "simpleline::folder-alt",
+    "text": "Folder Alt"
+  },
+  {
+    "id": "simpleline::folder",
+    "text": "Folder"
+  },
+  {
+    "id": "simpleline::film",
+    "text": "Film"
+  },
+  {
+    "id": "simpleline::feed",
+    "text": "Feed"
+  },
+  {
+    "id": "simpleline::drop",
+    "text": "Drop"
+  },
+  {
+    "id": "simpleline::drawar",
+    "text": "Drawar"
+  },
+  {
+    "id": "simpleline::docs",
+    "text": "Docs"
+  },
+  {
+    "id": "simpleline::doc",
+    "text": "Doc"
+  },
+  {
+    "id": "simpleline::diamond",
+    "text": "Diamond"
+  },
+  {
+    "id": "simpleline::cup",
+    "text": "Cup"
+  },
+  {
+    "id": "simpleline::calculator",
+    "text": "Calculator"
+  },
+  {
+    "id": "simpleline::bubbles",
+    "text": "Bubbles"
+  },
+  {
+    "id": "simpleline::briefcase",
+    "text": "Briefcase"
+  },
+  {
+    "id": "simpleline::book-open",
+    "text": "Book Open"
+  },
+  {
+    "id": "simpleline::basket-loaded",
+    "text": "Basket Loaded"
+  },
+  {
+    "id": "simpleline::basket",
+    "text": "Basket"
+  },
+  {
+    "id": "simpleline::bag",
+    "text": "Bag"
+  },
+  {
+    "id": "simpleline::action-undo",
+    "text": "Action Undo"
+  },
+  {
+    "id": "simpleline::action-redo",
+    "text": "Action Redo"
+  },
+  {
+    "id": "simpleline::wrench",
+    "text": "Wrench"
+  },
+  {
+    "id": "simpleline::umbrella",
+    "text": "Umbrella"
+  },
+  {
+    "id": "simpleline::trash",
+    "text": "Trash"
+  },
+  {
+    "id": "simpleline::tag",
+    "text": "Tag"
+  },
+  {
+    "id": "simpleline::support",
+    "text": "Support"
+  },
+  {
+    "id": "simpleline::frame",
+    "text": "Frame"
+  },
+  {
+    "id": "simpleline::size-fullscreen",
+    "text": "Size Fullscreen"
+  },
+  {
+    "id": "simpleline::size-actual",
+    "text": "Size Actual"
+  },
+  {
+    "id": "simpleline::shuffle",
+    "text": "Shuffle"
+  },
+  {
+    "id": "simpleline::share-alt",
+    "text": "Share Alt"
+  },
+  {
+    "id": "simpleline::share",
+    "text": "Share"
+  },
+  {
+    "id": "simpleline::rocket",
+    "text": "Rocket"
+  },
+  {
+    "id": "simpleline::question",
+    "text": "Question"
+  },
+  {
+    "id": "simpleline::pie-chart",
+    "text": "Pie Chart"
+  },
+  {
+    "id": "simpleline::pencil",
+    "text": "Pencil"
+  },
+  {
+    "id": "simpleline::note",
+    "text": "Note"
+  },
+  {
+    "id": "simpleline::loop",
+    "text": "Loop"
+  },
+  {
+    "id": "simpleline::home",
+    "text": "Home"
+  },
+  {
+    "id": "simpleline::grid",
+    "text": "Grid"
+  },
+  {
+    "id": "simpleline::graph",
+    "text": "Graph"
+  },
+  {
+    "id": "simpleline::microphone",
+    "text": "Microphone"
+  },
+  {
+    "id": "simpleline::music-tone-alt",
+    "text": "Music Tone Alt"
+  },
+  {
+    "id": "simpleline::music-tone",
+    "text": "Music Tone"
+  },
+  {
+    "id": "simpleline::earphones-alt",
+    "text": "Earphones Alt"
+  },
+  {
+    "id": "simpleline::earphones",
+    "text": "Earphones"
+  },
+  {
+    "id": "simpleline::equalizer",
+    "text": "Equalizer"
+  },
+  {
+    "id": "simpleline::like",
+    "text": "Like"
+  },
+  {
+    "id": "simpleline::dislike",
+    "text": "Dislike"
+  },
+  {
+    "id": "simpleline::control-start",
+    "text": "Control Start"
+  },
+  {
+    "id": "simpleline::control-rewind",
+    "text": "Control Rewind"
+  },
+  {
+    "id": "simpleline::control-play",
+    "text": "Control Play"
+  },
+  {
+    "id": "simpleline::control-pause",
+    "text": "Control Pause"
+  },
+  {
+    "id": "simpleline::control-forward",
+    "text": "Control Forward"
+  },
+  {
+    "id": "simpleline::control-end",
+    "text": "Control End"
+  },
+  {
+    "id": "simpleline::volume-1",
+    "text": "Volume 1"
+  },
+  {
+    "id": "simpleline::volume-2",
+    "text": "Volume 2"
+  },
+  {
+    "id": "simpleline::volume-off",
+    "text": "Volume Off"
+  },
+  {
+    "id": "simpleline::calender",
+    "text": "Calender"
+  },
+  {
+    "id": "simpleline::bulb",
+    "text": "Bulb"
+  },
+  {
+    "id": "simpleline::chart",
+    "text": "Chart"
+  },
+  {
+    "id": "simpleline::ban",
+    "text": "Ban"
+  },
+  {
+    "id": "simpleline::bubble",
+    "text": "Bubble"
+  },
+  {
+    "id": "simpleline::camrecorder",
+    "text": "Camrecorder"
+  },
+  {
+    "id": "simpleline::camera",
+    "text": "Camera"
+  },
+  {
+    "id": "simpleline::cloud-download",
+    "text": "Cloud Download"
+  },
+  {
+    "id": "simpleline::cloud-upload",
+    "text": "Cloud Upload"
+  },
+  {
+    "id": "simpleline::eye",
+    "text": "Eye"
+  },
+  {
+    "id": "simpleline::flag",
+    "text": "Flag"
+  },
+  {
+    "id": "simpleline::heart",
+    "text": "Heart"
+  },
+  {
+    "id": "simpleline::info",
+    "text": "Info"
+  },
+  {
+    "id": "simpleline::key",
+    "text": "Key"
+  },
+  {
+    "id": "simpleline::link",
+    "text": "Link"
+  },
+  {
+    "id": "simpleline::lock",
+    "text": "Lock"
+  },
+  {
+    "id": "simpleline::lock-open",
+    "text": "Lock Open"
+  },
+  {
+    "id": "simpleline::magnifier",
+    "text": "Magnifier"
+  },
+  {
+    "id": "simpleline::magnifier-add",
+    "text": "Magnifier Add"
+  },
+  {
+    "id": "simpleline::magnifier-remove",
+    "text": "Magnifier Remove"
+  },
+  {
+    "id": "simpleline::paper-clip",
+    "text": "Paper Clip"
+  },
+  {
+    "id": "simpleline::paper-plane",
+    "text": "Paper Plane"
+  },
+  {
+    "id": "simpleline::power",
+    "text": "Power"
+  },
+  {
+    "id": "simpleline::refresh",
+    "text": "Refresh"
+  },
+  {
+    "id": "simpleline::reload",
+    "text": "Reload"
+  },
+  {
+    "id": "simpleline::settings",
+    "text": "Settings"
+  },
+  {
+    "id": "simpleline::star",
+    "text": "Star"
+  },
+  {
+    "id": "simpleline::symble-female",
+    "text": "Symble Female"
+  },
+  {
+    "id": "simpleline::symbol-male",
+    "text": "Symbol Male"
+  },
+  {
+    "id": "simpleline::target",
+    "text": "Target"
+  },
+  {
+    "id": "simpleline::credit-card",
+    "text": "Credit Card"
+  },
+  {
+    "id": "simpleline::paypal",
+    "text": "Paypal"
+  },
+  {
+    "id": "simpleline::social-tumblr",
+    "text": "Social Tumblr"
+  },
+  {
+    "id": "simpleline::social-twitter",
+    "text": "Social Twitter"
+  },
+  {
+    "id": "simpleline::social-facebook",
+    "text": "Social Facebook"
+  },
+  {
+    "id": "simpleline::social-instagram",
+    "text": "Social Instagram"
+  },
+  {
+    "id": "simpleline::social-linkedin",
+    "text": "Social Linkedin"
+  },
+  {
+    "id": "simpleline::social-pintarest",
+    "text": "Social Pintarest"
+  },
+  {
+    "id": "simpleline::social-github",
+    "text": "Social Github"
+  },
+  {
+    "id": "simpleline::social-gplus",
+    "text": "Social Gplus"
+  },
+  {
+    "id": "simpleline::social-reddit",
+    "text": "Social Reddit"
+  },
+  {
+    "id": "simpleline::social-skype",
+    "text": "Social Skype"
+  },
+  {
+    "id": "simpleline::social-dribbble",
+    "text": "Social Dribbble"
+  },
+  {
+    "id": "simpleline::social-behance",
+    "text": "Social Behance"
+  },
+  {
+    "id": "simpleline::social-foursqare",
+    "text": "Social Foursqare"
+  },
+  {
+    "id": "simpleline::social-soundcloud",
+    "text": "Social Soundcloud"
+  },
+  {
+    "id": "simpleline::social-spotify",
+    "text": "Social Spotify"
+  },
+  {
+    "id": "simpleline::social-stumbleupon",
+    "text": "Social Stumbleupon"
+  },
+  {
+    "id": "simpleline::social-youtube",
+    "text": "Social Youtube"
+  },
+  {
+    "id": "simpleline::social-dropbox",
+    "text": "Social Dropbox"
+  },
+  {
+    "id": "weathericon::day-cloudy-high",
+    "text": "Day Cloudy High"
+  },
+  {
+    "id": "weathericon::moonrise",
+    "text": "Moonrise"
+  },
+  {
+    "id": "weathericon::volcano",
+    "text": "Volcano"
+  },
+  {
+    "id": "weathericon::day-light-wind",
+    "text": "Day Light Wind"
+  },
+  {
+    "id": "weathericon::moonset",
+    "text": "Moonset"
+  },
+  {
+    "id": "weathericon::flood",
+    "text": "Flood"
+  },
+  {
+    "id": "weathericon::train",
+    "text": "Train"
+  },
+  {
+    "id": "weathericon::day-sleet",
+    "text": "Day Sleet"
+  },
+  {
+    "id": "weathericon::night-sleet",
+    "text": "Night Sleet"
+  },
+  {
+    "id": "weathericon::sandstorm",
+    "text": "Sandstorm"
+  },
+  {
+    "id": "weathericon::small-craft-advisory",
+    "text": "Small Craft Advisory"
+  },
+  {
+    "id": "weathericon::day-haze",
+    "text": "Day Haze"
+  },
+  {
+    "id": "weathericon::night-alt-sleet",
+    "text": "Night Alt Sleet"
+  },
+  {
+    "id": "weathericon::tsunami",
+    "text": "Tsunami"
+  },
+  {
+    "id": "weathericon::gale-warning",
+    "text": "Gale Warning"
+  },
+  {
+    "id": "weathericon::night-cloudy-high",
+    "text": "Night Cloudy High"
+  },
+  {
+    "id": "weathericon::raindrop",
+    "text": "Raindrop"
+  },
+  {
+    "id": "weathericon::earthquake",
+    "text": "Earthquake"
+  },
+  {
+    "id": "weathericon::storm-warning",
+    "text": "Storm Warning"
+  },
+  {
+    "id": "weathericon::night-alt-partly-cloudy",
+    "text": "Night Alt Partly Cloudy"
+  },
+  {
+    "id": "weathericon::barometer",
+    "text": "Barometer"
+  },
+  {
+    "id": "weathericon::fire",
+    "text": "Fire"
+  },
+  {
+    "id": "weathericon::hurricane-warning",
+    "text": "Hurricane Warning"
+  },
+  {
+    "id": "weathericon::sleet",
+    "text": "Sleet"
+  },
+  {
+    "id": "weathericon::humidity",
+    "text": "Humidity"
+  },
+  {
+    "id": "materialize::access-point",
+    "text": "Access Point"
+  },
+  {
+    "id": "materialize::access-point-network",
+    "text": "Access Point Network"
+  },
+  {
+    "id": "materialize::account",
+    "text": "Account"
+  },
+  {
+    "id": "materialize::account-alert",
+    "text": "Account Alert"
+  },
+  {
+    "id": "materialize::account-box",
+    "text": "Account Box"
+  },
+  {
+    "id": "materialize::account-box-outline",
+    "text": "Account Box Outline"
+  },
+  {
+    "id": "materialize::account-card-details",
+    "text": "Account Card Details"
+  },
+  {
+    "id": "materialize::account-check",
+    "text": "Account Check"
+  },
+  {
+    "id": "materialize::account-circle",
+    "text": "Account Circle"
+  },
+  {
+    "id": "materialize::account-convert",
+    "text": "Account Convert"
+  },
+  {
+    "id": "materialize::account-edit",
+    "text": "Account Edit"
+  },
+  {
+    "id": "materialize::account-key",
+    "text": "Account Key"
+  },
+  {
+    "id": "materialize::account-location",
+    "text": "Account Location"
+  },
+  {
+    "id": "materialize::account-minus",
+    "text": "Account Minus"
+  },
+  {
+    "id": "materialize::account-multiple",
+    "text": "Account Multiple"
+  },
+  {
+    "id": "materialize::account-multiple-minus",
+    "text": "Account Multiple Minus"
+  },
+  {
+    "id": "materialize::account-multiple-outline",
+    "text": "Account Multiple Outline"
+  },
+  {
+    "id": "materialize::account-multiple-plus",
+    "text": "Account Multiple Plus"
+  },
+  {
+    "id": "materialize::account-network",
+    "text": "Account Network"
+  },
+  {
+    "id": "materialize::account-off",
+    "text": "Account Off"
+  },
+  {
+    "id": "materialize::account-outline",
+    "text": "Account Outline"
+  },
+  {
+    "id": "materialize::account-plus",
+    "text": "Account Plus"
+  },
+  {
+    "id": "materialize::account-remove",
+    "text": "Account Remove"
+  },
+  {
+    "id": "materialize::account-search",
+    "text": "Account Search"
+  },
+  {
+    "id": "materialize::account-settings",
+    "text": "Account Settings"
+  },
+  {
+    "id": "materialize::account-settings-variant",
+    "text": "Account Settings Variant"
+  },
+  {
+    "id": "materialize::account-star",
+    "text": "Account Star"
+  },
+  {
+    "id": "materialize::account-star-variant",
+    "text": "Account Star Variant"
+  },
+  {
+    "id": "materialize::account-switch",
+    "text": "Account Switch"
+  },
+  {
+    "id": "materialize::adjust",
+    "text": "Adjust"
+  },
+  {
+    "id": "materialize::air-conditioner",
+    "text": "Air Conditioner"
+  },
+  {
+    "id": "materialize::airballoon",
+    "text": "Airballoon"
+  },
+  {
+    "id": "materialize::airplane",
+    "text": "Airplane"
+  },
+  {
+    "id": "materialize::airplane-landing",
+    "text": "Airplane Landing"
+  },
+  {
+    "id": "materialize::airplane-off",
+    "text": "Airplane Off"
+  },
+  {
+    "id": "materialize::airplane-takeoff",
+    "text": "Airplane Takeoff"
+  },
+  {
+    "id": "materialize::airplay",
+    "text": "Airplay"
+  },
+  {
+    "id": "materialize::alarm",
+    "text": "Alarm"
+  },
+  {
+    "id": "materialize::alarm-check",
+    "text": "Alarm Check"
+  },
+  {
+    "id": "materialize::alarm-multiple",
+    "text": "Alarm Multiple"
+  },
+  {
+    "id": "materialize::alarm-off",
+    "text": "Alarm Off"
+  },
+  {
+    "id": "materialize::alarm-plus",
+    "text": "Alarm Plus"
+  },
+  {
+    "id": "materialize::alarm-snooze",
+    "text": "Alarm Snooze"
+  },
+  {
+    "id": "materialize::album",
+    "text": "Album"
+  },
+  {
+    "id": "materialize::alert",
+    "text": "Alert"
+  },
+  {
+    "id": "materialize::alert-box",
+    "text": "Alert Box"
+  },
+  {
+    "id": "materialize::alert-circle",
+    "text": "Alert Circle"
+  },
+  {
+    "id": "materialize::alert-circle-outline",
+    "text": "Alert Circle Outline"
+  },
+  {
+    "id": "materialize::alert-octagon",
+    "text": "Alert Octagon"
+  },
+  {
+    "id": "materialize::alert-octagram",
+    "text": "Alert Octagram"
+  },
+  {
+    "id": "materialize::alert-outline",
+    "text": "Alert Outline"
+  },
+  {
+    "id": "materialize::all-inclusive",
+    "text": "All Inclusive"
+  },
+  {
+    "id": "materialize::alpha",
+    "text": "Alpha"
+  },
+  {
+    "id": "materialize::alphabetical",
+    "text": "Alphabetical"
+  },
+  {
+    "id": "materialize::altimeter",
+    "text": "Altimeter"
+  },
+  {
+    "id": "materialize::amazon",
+    "text": "Amazon"
+  },
+  {
+    "id": "materialize::amazon-clouddrive",
+    "text": "Amazon Clouddrive"
+  },
+  {
+    "id": "materialize::ambulance",
+    "text": "Ambulance"
+  },
+  {
+    "id": "materialize::amplifier",
+    "text": "Amplifier"
+  },
+  {
+    "id": "materialize::anchor",
+    "text": "Anchor"
+  },
+  {
+    "id": "materialize::android",
+    "text": "Android"
+  },
+  {
+    "id": "materialize::android-debug-bridge",
+    "text": "Android Debug Bridge"
+  },
+  {
+    "id": "materialize::android-studio",
+    "text": "Android Studio"
+  },
+  {
+    "id": "materialize::angular",
+    "text": "Angular"
+  },
+  {
+    "id": "materialize::angularjs",
+    "text": "Angularjs"
+  },
+  {
+    "id": "materialize::animation",
+    "text": "Animation"
+  },
+  {
+    "id": "materialize::apple",
+    "text": "Apple"
+  },
+  {
+    "id": "materialize::apple-finder",
+    "text": "Apple Finder"
+  },
+  {
+    "id": "materialize::apple-ios",
+    "text": "Apple Ios"
+  },
+  {
+    "id": "materialize::apple-keyboard-caps",
+    "text": "Apple Keyboard Caps"
+  },
+  {
+    "id": "materialize::apple-keyboard-command",
+    "text": "Apple Keyboard Command"
+  },
+  {
+    "id": "materialize::apple-keyboard-control",
+    "text": "Apple Keyboard Control"
+  },
+  {
+    "id": "materialize::apple-keyboard-option",
+    "text": "Apple Keyboard Option"
+  },
+  {
+    "id": "materialize::apple-keyboard-shift",
+    "text": "Apple Keyboard Shift"
+  },
+  {
+    "id": "materialize::apple-mobileme",
+    "text": "Apple Mobileme"
+  },
+  {
+    "id": "materialize::apple-safari",
+    "text": "Apple Safari"
+  },
+  {
+    "id": "materialize::application",
+    "text": "Application"
+  },
+  {
+    "id": "materialize::apps",
+    "text": "Apps"
+  },
+  {
+    "id": "materialize::archive",
+    "text": "Archive"
+  },
+  {
+    "id": "materialize::arrange-bring-forward",
+    "text": "Arrange Bring Forward"
+  },
+  {
+    "id": "materialize::arrange-bring-to-front",
+    "text": "Arrange Bring To Front"
+  },
+  {
+    "id": "materialize::arrange-send-backward",
+    "text": "Arrange Send Backward"
+  },
+  {
+    "id": "materialize::arrange-send-to-back",
+    "text": "Arrange Send To Back"
+  },
+  {
+    "id": "materialize::arrow-all",
+    "text": "Arrow All"
+  },
+  {
+    "id": "materialize::arrow-bottom-left",
+    "text": "Arrow Bottom Left"
+  },
+  {
+    "id": "materialize::arrow-bottom-right",
+    "text": "Arrow Bottom Right"
+  },
+  {
+    "id": "materialize::arrow-compress",
+    "text": "Arrow Compress"
+  },
+  {
+    "id": "materialize::arrow-compress-all",
+    "text": "Arrow Compress All"
+  },
+  {
+    "id": "materialize::arrow-down",
+    "text": "Arrow Down"
+  },
+  {
+    "id": "materialize::arrow-down-bold",
+    "text": "Arrow Down Bold"
+  },
+  {
+    "id": "materialize::arrow-down-bold-circle",
+    "text": "Arrow Down Bold Circle"
+  },
+  {
+    "id": "materialize::arrow-down-bold-circle-outline",
+    "text": "Arrow Down Bold Circle Outline"
+  },
+  {
+    "id": "materialize::arrow-down-bold-hexagon-outline",
+    "text": "Arrow Down Bold Hexagon Outline"
+  },
+  {
+    "id": "materialize::arrow-down-box",
+    "text": "Arrow Down Box"
+  },
+  {
+    "id": "materialize::arrow-down-drop-circle",
+    "text": "Arrow Down Drop Circle"
+  },
+  {
+    "id": "materialize::arrow-down-drop-circle-outline",
+    "text": "Arrow Down Drop Circle Outline"
+  },
+  {
+    "id": "materialize::arrow-expand",
+    "text": "Arrow Expand"
+  },
+  {
+    "id": "materialize::arrow-expand-all",
+    "text": "Arrow Expand All"
+  },
+  {
+    "id": "materialize::arrow-left",
+    "text": "Arrow Left"
+  },
+  {
+    "id": "materialize::arrow-left-bold",
+    "text": "Arrow Left Bold"
+  },
+  {
+    "id": "materialize::arrow-left-bold-circle",
+    "text": "Arrow Left Bold Circle"
+  },
+  {
+    "id": "materialize::arrow-left-bold-circle-outline",
+    "text": "Arrow Left Bold Circle Outline"
+  },
+  {
+    "id": "materialize::arrow-left-bold-hexagon-outline",
+    "text": "Arrow Left Bold Hexagon Outline"
+  },
+  {
+    "id": "materialize::arrow-left-box",
+    "text": "Arrow Left Box"
+  },
+  {
+    "id": "materialize::arrow-left-drop-circle",
+    "text": "Arrow Left Drop Circle"
+  },
+  {
+    "id": "materialize::arrow-left-drop-circle-outline",
+    "text": "Arrow Left Drop Circle Outline"
+  },
+  {
+    "id": "materialize::arrow-right",
+    "text": "Arrow Right"
+  },
+  {
+    "id": "materialize::arrow-right-bold",
+    "text": "Arrow Right Bold"
+  },
+  {
+    "id": "materialize::arrow-right-bold-circle",
+    "text": "Arrow Right Bold Circle"
+  },
+  {
+    "id": "materialize::arrow-right-bold-circle-outline",
+    "text": "Arrow Right Bold Circle Outline"
+  },
+  {
+    "id": "materialize::arrow-right-bold-hexagon-outline",
+    "text": "Arrow Right Bold Hexagon Outline"
+  },
+  {
+    "id": "materialize::arrow-right-box",
+    "text": "Arrow Right Box"
+  },
+  {
+    "id": "materialize::arrow-right-drop-circle",
+    "text": "Arrow Right Drop Circle"
+  },
+  {
+    "id": "materialize::arrow-right-drop-circle-outline",
+    "text": "Arrow Right Drop Circle Outline"
+  },
+  {
+    "id": "materialize::arrow-top-left",
+    "text": "Arrow Top Left"
+  },
+  {
+    "id": "materialize::arrow-top-right",
+    "text": "Arrow Top Right"
+  },
+  {
+    "id": "materialize::arrow-up",
+    "text": "Arrow Up"
+  },
+  {
+    "id": "materialize::arrow-up-bold",
+    "text": "Arrow Up Bold"
+  },
+  {
+    "id": "materialize::arrow-up-bold-circle",
+    "text": "Arrow Up Bold Circle"
+  },
+  {
+    "id": "materialize::arrow-up-bold-circle-outline",
+    "text": "Arrow Up Bold Circle Outline"
+  },
+  {
+    "id": "materialize::arrow-up-bold-hexagon-outline",
+    "text": "Arrow Up Bold Hexagon Outline"
+  },
+  {
+    "id": "materialize::arrow-up-box",
+    "text": "Arrow Up Box"
+  },
+  {
+    "id": "materialize::arrow-up-drop-circle",
+    "text": "Arrow Up Drop Circle"
+  },
+  {
+    "id": "materialize::arrow-up-drop-circle-outline",
+    "text": "Arrow Up Drop Circle Outline"
+  },
+  {
+    "id": "materialize::assistant",
+    "text": "Assistant"
+  },
+  {
+    "id": "materialize::asterisk",
+    "text": "Asterisk"
+  },
+  {
+    "id": "materialize::at",
+    "text": "At"
+  },
+  {
+    "id": "materialize::attachment",
+    "text": "Attachment"
+  },
+  {
+    "id": "materialize::audiobook",
+    "text": "Audiobook"
+  },
+  {
+    "id": "materialize::auto-fix",
+    "text": "Auto Fix"
+  },
+  {
+    "id": "materialize::auto-upload",
+    "text": "Auto Upload"
+  },
+  {
+    "id": "materialize::autorenew",
+    "text": "Autorenew"
+  },
+  {
+    "id": "materialize::av-timer",
+    "text": "Av Timer"
+  },
+  {
+    "id": "materialize::baby",
+    "text": "Baby"
+  },
+  {
+    "id": "materialize::baby-buggy",
+    "text": "Baby Buggy"
+  },
+  {
+    "id": "materialize::backburger",
+    "text": "Backburger"
+  },
+  {
+    "id": "materialize::backspace",
+    "text": "Backspace"
+  },
+  {
+    "id": "materialize::backup-restore",
+    "text": "Backup Restore"
+  },
+  {
+    "id": "materialize::bandcamp",
+    "text": "Bandcamp"
+  },
+  {
+    "id": "materialize::bank",
+    "text": "Bank"
+  },
+  {
+    "id": "materialize::barcode",
+    "text": "Barcode"
+  },
+  {
+    "id": "materialize::barcode-scan",
+    "text": "Barcode Scan"
+  },
+  {
+    "id": "materialize::barley",
+    "text": "Barley"
+  },
+  {
+    "id": "materialize::barrel",
+    "text": "Barrel"
+  },
+  {
+    "id": "materialize::basecamp",
+    "text": "Basecamp"
+  },
+  {
+    "id": "materialize::basket",
+    "text": "Basket"
+  },
+  {
+    "id": "materialize::basket-fill",
+    "text": "Basket Fill"
+  },
+  {
+    "id": "materialize::basket-unfill",
+    "text": "Basket Unfill"
+  },
+  {
+    "id": "materialize::battery",
+    "text": "Battery"
+  },
+  {
+    "id": "materialize::battery-10",
+    "text": "Battery 10"
+  },
+  {
+    "id": "materialize::battery-20",
+    "text": "Battery 20"
+  },
+  {
+    "id": "materialize::battery-30",
+    "text": "Battery 30"
+  },
+  {
+    "id": "materialize::battery-40",
+    "text": "Battery 40"
+  },
+  {
+    "id": "materialize::battery-50",
+    "text": "Battery 50"
+  },
+  {
+    "id": "materialize::battery-60",
+    "text": "Battery 60"
+  },
+  {
+    "id": "materialize::battery-70",
+    "text": "Battery 70"
+  },
+  {
+    "id": "materialize::battery-80",
+    "text": "Battery 80"
+  },
+  {
+    "id": "materialize::battery-90",
+    "text": "Battery 90"
+  },
+  {
+    "id": "materialize::battery-alert",
+    "text": "Battery Alert"
+  },
+  {
+    "id": "materialize::battery-charging",
+    "text": "Battery Charging"
+  },
+  {
+    "id": "materialize::battery-charging-100",
+    "text": "Battery Charging 100"
+  },
+  {
+    "id": "materialize::battery-charging-20",
+    "text": "Battery Charging 20"
+  },
+  {
+    "id": "materialize::battery-charging-30",
+    "text": "Battery Charging 30"
+  },
+  {
+    "id": "materialize::battery-charging-40",
+    "text": "Battery Charging 40"
+  },
+  {
+    "id": "materialize::battery-charging-60",
+    "text": "Battery Charging 60"
+  },
+  {
+    "id": "materialize::battery-charging-80",
+    "text": "Battery Charging 80"
+  },
+  {
+    "id": "materialize::battery-charging-90",
+    "text": "Battery Charging 90"
+  },
+  {
+    "id": "materialize::battery-minus",
+    "text": "Battery Minus"
+  },
+  {
+    "id": "materialize::battery-negative",
+    "text": "Battery Negative"
+  },
+  {
+    "id": "materialize::battery-outline",
+    "text": "Battery Outline"
+  },
+  {
+    "id": "materialize::battery-plus",
+    "text": "Battery Plus"
+  },
+  {
+    "id": "materialize::battery-positive",
+    "text": "Battery Positive"
+  },
+  {
+    "id": "materialize::battery-unknown",
+    "text": "Battery Unknown"
+  },
+  {
+    "id": "materialize::beach",
+    "text": "Beach"
+  },
+  {
+    "id": "materialize::beaker",
+    "text": "Beaker"
+  },
+  {
+    "id": "materialize::beats",
+    "text": "Beats"
+  },
+  {
+    "id": "materialize::beer",
+    "text": "Beer"
+  },
+  {
+    "id": "materialize::behance",
+    "text": "Behance"
+  },
+  {
+    "id": "materialize::bell",
+    "text": "Bell"
+  },
+  {
+    "id": "materialize::bell-off",
+    "text": "Bell Off"
+  },
+  {
+    "id": "materialize::bell-outline",
+    "text": "Bell Outline"
+  },
+  {
+    "id": "materialize::bell-plus",
+    "text": "Bell Plus"
+  },
+  {
+    "id": "materialize::bell-ring",
+    "text": "Bell Ring"
+  },
+  {
+    "id": "materialize::bell-ring-outline",
+    "text": "Bell Ring Outline"
+  },
+  {
+    "id": "materialize::bell-sleep",
+    "text": "Bell Sleep"
+  },
+  {
+    "id": "materialize::beta",
+    "text": "Beta"
+  },
+  {
+    "id": "materialize::bible",
+    "text": "Bible"
+  },
+  {
+    "id": "materialize::bike",
+    "text": "Bike"
+  },
+  {
+    "id": "materialize::bing",
+    "text": "Bing"
+  },
+  {
+    "id": "materialize::binoculars",
+    "text": "Binoculars"
+  },
+  {
+    "id": "materialize::bio",
+    "text": "Bio"
+  },
+  {
+    "id": "materialize::biohazard",
+    "text": "Biohazard"
+  },
+  {
+    "id": "materialize::bitbucket",
+    "text": "Bitbucket"
+  },
+  {
+    "id": "materialize::black-mesa",
+    "text": "Black Mesa"
+  },
+  {
+    "id": "materialize::blackberry",
+    "text": "Blackberry"
+  },
+  {
+    "id": "materialize::blender",
+    "text": "Blender"
+  },
+  {
+    "id": "materialize::blinds",
+    "text": "Blinds"
+  },
+  {
+    "id": "materialize::block-helper",
+    "text": "Block Helper"
+  },
+  {
+    "id": "materialize::blogger",
+    "text": "Blogger"
+  },
+  {
+    "id": "materialize::bluetooth",
+    "text": "Bluetooth"
+  },
+  {
+    "id": "materialize::bluetooth-audio",
+    "text": "Bluetooth Audio"
+  },
+  {
+    "id": "materialize::bluetooth-connect",
+    "text": "Bluetooth Connect"
+  },
+  {
+    "id": "materialize::bluetooth-off",
+    "text": "Bluetooth Off"
+  },
+  {
+    "id": "materialize::bluetooth-settings",
+    "text": "Bluetooth Settings"
+  },
+  {
+    "id": "materialize::bluetooth-transfer",
+    "text": "Bluetooth Transfer"
+  },
+  {
+    "id": "materialize::blur",
+    "text": "Blur"
+  },
+  {
+    "id": "materialize::blur-linear",
+    "text": "Blur Linear"
+  },
+  {
+    "id": "materialize::blur-off",
+    "text": "Blur Off"
+  },
+  {
+    "id": "materialize::blur-radial",
+    "text": "Blur Radial"
+  },
+  {
+    "id": "materialize::bomb",
+    "text": "Bomb"
+  },
+  {
+    "id": "materialize::bomb-off",
+    "text": "Bomb Off"
+  },
+  {
+    "id": "materialize::bone",
+    "text": "Bone"
+  },
+  {
+    "id": "materialize::book",
+    "text": "Book"
+  },
+  {
+    "id": "materialize::book-minus",
+    "text": "Book Minus"
+  },
+  {
+    "id": "materialize::book-multiple",
+    "text": "Book Multiple"
+  },
+  {
+    "id": "materialize::book-multiple-variant",
+    "text": "Book Multiple Variant"
+  },
+  {
+    "id": "materialize::book-open",
+    "text": "Book Open"
+  },
+  {
+    "id": "materialize::book-open-page-variant",
+    "text": "Book Open Page Variant"
+  },
+  {
+    "id": "materialize::book-open-variant",
+    "text": "Book Open Variant"
+  },
+  {
+    "id": "materialize::book-plus",
+    "text": "Book Plus"
+  },
+  {
+    "id": "materialize::book-variant",
+    "text": "Book Variant"
+  },
+  {
+    "id": "materialize::bookmark",
+    "text": "Bookmark"
+  },
+  {
+    "id": "materialize::bookmark-check",
+    "text": "Bookmark Check"
+  },
+  {
+    "id": "materialize::bookmark-music",
+    "text": "Bookmark Music"
+  },
+  {
+    "id": "materialize::bookmark-outline",
+    "text": "Bookmark Outline"
+  },
+  {
+    "id": "materialize::bookmark-plus",
+    "text": "Bookmark Plus"
+  },
+  {
+    "id": "materialize::bookmark-plus-outline",
+    "text": "Bookmark Plus Outline"
+  },
+  {
+    "id": "materialize::bookmark-remove",
+    "text": "Bookmark Remove"
+  },
+  {
+    "id": "materialize::boombox",
+    "text": "Boombox"
+  },
+  {
+    "id": "materialize::bootstrap",
+    "text": "Bootstrap"
+  },
+  {
+    "id": "materialize::border-all",
+    "text": "Border All"
+  },
+  {
+    "id": "materialize::border-bottom",
+    "text": "Border Bottom"
+  },
+  {
+    "id": "materialize::border-color",
+    "text": "Border Color"
+  },
+  {
+    "id": "materialize::border-horizontal",
+    "text": "Border Horizontal"
+  },
+  {
+    "id": "materialize::border-inside",
+    "text": "Border Inside"
+  },
+  {
+    "id": "materialize::border-left",
+    "text": "Border Left"
+  },
+  {
+    "id": "materialize::border-none",
+    "text": "Border None"
+  },
+  {
+    "id": "materialize::border-outside",
+    "text": "Border Outside"
+  },
+  {
+    "id": "materialize::border-right",
+    "text": "Border Right"
+  },
+  {
+    "id": "materialize::border-style",
+    "text": "Border Style"
+  },
+  {
+    "id": "materialize::border-top",
+    "text": "Border Top"
+  },
+  {
+    "id": "materialize::border-vertical",
+    "text": "Border Vertical"
+  },
+  {
+    "id": "materialize::bow-tie",
+    "text": "Bow Tie"
+  },
+  {
+    "id": "materialize::bowl",
+    "text": "Bowl"
+  },
+  {
+    "id": "materialize::bowling",
+    "text": "Bowling"
+  },
+  {
+    "id": "materialize::box",
+    "text": "Box"
+  },
+  {
+    "id": "materialize::box-cutter",
+    "text": "Box Cutter"
+  },
+  {
+    "id": "materialize::box-shadow",
+    "text": "Box Shadow"
+  },
+  {
+    "id": "materialize::bridge",
+    "text": "Bridge"
+  },
+  {
+    "id": "materialize::briefcase",
+    "text": "Briefcase"
+  },
+  {
+    "id": "materialize::briefcase-check",
+    "text": "Briefcase Check"
+  },
+  {
+    "id": "materialize::briefcase-download",
+    "text": "Briefcase Download"
+  },
+  {
+    "id": "materialize::briefcase-upload",
+    "text": "Briefcase Upload"
+  },
+  {
+    "id": "materialize::brightness-1",
+    "text": "Brightness 1"
+  },
+  {
+    "id": "materialize::brightness-2",
+    "text": "Brightness 2"
+  },
+  {
+    "id": "materialize::brightness-3",
+    "text": "Brightness 3"
+  },
+  {
+    "id": "materialize::brightness-4",
+    "text": "Brightness 4"
+  },
+  {
+    "id": "materialize::brightness-5",
+    "text": "Brightness 5"
+  },
+  {
+    "id": "materialize::brightness-6",
+    "text": "Brightness 6"
+  },
+  {
+    "id": "materialize::brightness-7",
+    "text": "Brightness 7"
+  },
+  {
+    "id": "materialize::brightness-auto",
+    "text": "Brightness Auto"
+  },
+  {
+    "id": "materialize::broom",
+    "text": "Broom"
+  },
+  {
+    "id": "materialize::brush",
+    "text": "Brush"
+  },
+  {
+    "id": "materialize::buffer",
+    "text": "Buffer"
+  },
+  {
+    "id": "materialize::bug",
+    "text": "Bug"
+  },
+  {
+    "id": "materialize::bulletin-board",
+    "text": "Bulletin Board"
+  },
+  {
+    "id": "materialize::bullhorn",
+    "text": "Bullhorn"
+  },
+  {
+    "id": "materialize::bullseye",
+    "text": "Bullseye"
+  },
+  {
+    "id": "materialize::burst-mode",
+    "text": "Burst Mode"
+  },
+  {
+    "id": "materialize::bus",
+    "text": "Bus"
+  },
+  {
+    "id": "materialize::cached",
+    "text": "Cached"
+  },
+  {
+    "id": "materialize::cake",
+    "text": "Cake"
+  },
+  {
+    "id": "materialize::cake-layered",
+    "text": "Cake Layered"
+  },
+  {
+    "id": "materialize::cake-variant",
+    "text": "Cake Variant"
+  },
+  {
+    "id": "materialize::calculator",
+    "text": "Calculator"
+  },
+  {
+    "id": "materialize::calendar",
+    "text": "Calendar"
+  },
+  {
+    "id": "materialize::calendar-blank",
+    "text": "Calendar Blank"
+  },
+  {
+    "id": "materialize::calendar-check",
+    "text": "Calendar Check"
+  },
+  {
+    "id": "materialize::calendar-clock",
+    "text": "Calendar Clock"
+  },
+  {
+    "id": "materialize::calendar-multiple",
+    "text": "Calendar Multiple"
+  },
+  {
+    "id": "materialize::calendar-multiple-check",
+    "text": "Calendar Multiple Check"
+  },
+  {
+    "id": "materialize::calendar-plus",
+    "text": "Calendar Plus"
+  },
+  {
+    "id": "materialize::calendar-question",
+    "text": "Calendar Question"
+  },
+  {
+    "id": "materialize::calendar-range",
+    "text": "Calendar Range"
+  },
+  {
+    "id": "materialize::calendar-remove",
+    "text": "Calendar Remove"
+  },
+  {
+    "id": "materialize::calendar-text",
+    "text": "Calendar Text"
+  },
+  {
+    "id": "materialize::calendar-today",
+    "text": "Calendar Today"
+  },
+  {
+    "id": "materialize::call-made",
+    "text": "Call Made"
+  },
+  {
+    "id": "materialize::call-merge",
+    "text": "Call Merge"
+  },
+  {
+    "id": "materialize::call-missed",
+    "text": "Call Missed"
+  },
+  {
+    "id": "materialize::call-received",
+    "text": "Call Received"
+  },
+  {
+    "id": "materialize::call-split",
+    "text": "Call Split"
+  },
+  {
+    "id": "materialize::camcorder",
+    "text": "Camcorder"
+  },
+  {
+    "id": "materialize::camcorder-box",
+    "text": "Camcorder Box"
+  },
+  {
+    "id": "materialize::camcorder-box-off",
+    "text": "Camcorder Box Off"
+  },
+  {
+    "id": "materialize::camcorder-off",
+    "text": "Camcorder Off"
+  },
+  {
+    "id": "materialize::camera",
+    "text": "Camera"
+  },
+  {
+    "id": "materialize::camera-burst",
+    "text": "Camera Burst"
+  },
+  {
+    "id": "materialize::camera-enhance",
+    "text": "Camera Enhance"
+  },
+  {
+    "id": "materialize::camera-front",
+    "text": "Camera Front"
+  },
+  {
+    "id": "materialize::camera-front-variant",
+    "text": "Camera Front Variant"
+  },
+  {
+    "id": "materialize::camera-iris",
+    "text": "Camera Iris"
+  },
+  {
+    "id": "materialize::camera-off",
+    "text": "Camera Off"
+  },
+  {
+    "id": "materialize::camera-party-mode",
+    "text": "Camera Party Mode"
+  },
+  {
+    "id": "materialize::camera-rear",
+    "text": "Camera Rear"
+  },
+  {
+    "id": "materialize::camera-rear-variant",
+    "text": "Camera Rear Variant"
+  },
+  {
+    "id": "materialize::camera-switch",
+    "text": "Camera Switch"
+  },
+  {
+    "id": "materialize::camera-timer",
+    "text": "Camera Timer"
+  },
+  {
+    "id": "materialize::candle",
+    "text": "Candle"
+  },
+  {
+    "id": "materialize::candycane",
+    "text": "Candycane"
+  },
+  {
+    "id": "materialize::car",
+    "text": "Car"
+  },
+  {
+    "id": "materialize::car-battery",
+    "text": "Car Battery"
+  },
+  {
+    "id": "materialize::car-connected",
+    "text": "Car Connected"
+  },
+  {
+    "id": "materialize::car-wash",
+    "text": "Car Wash"
+  },
+  {
+    "id": "materialize::cards",
+    "text": "Cards"
+  },
+  {
+    "id": "materialize::cards-outline",
+    "text": "Cards Outline"
+  },
+  {
+    "id": "materialize::cards-playing-outline",
+    "text": "Cards Playing Outline"
+  },
+  {
+    "id": "materialize::cards-variant",
+    "text": "Cards Variant"
+  },
+  {
+    "id": "materialize::carrot",
+    "text": "Carrot"
+  },
+  {
+    "id": "materialize::cart",
+    "text": "Cart"
+  },
+  {
+    "id": "materialize::cart-off",
+    "text": "Cart Off"
+  },
+  {
+    "id": "materialize::cart-outline",
+    "text": "Cart Outline"
+  },
+  {
+    "id": "materialize::cart-plus",
+    "text": "Cart Plus"
+  },
+  {
+    "id": "materialize::case-sensitive-alt",
+    "text": "Case Sensitive Alt"
+  },
+  {
+    "id": "materialize::cash",
+    "text": "Cash"
+  },
+  {
+    "id": "materialize::cash-100",
+    "text": "Cash 100"
+  },
+  {
+    "id": "materialize::cash-multiple",
+    "text": "Cash Multiple"
+  },
+  {
+    "id": "materialize::cash-usd",
+    "text": "Cash Usd"
+  },
+  {
+    "id": "materialize::cast",
+    "text": "Cast"
+  },
+  {
+    "id": "materialize::cast-connected",
+    "text": "Cast Connected"
+  },
+  {
+    "id": "materialize::castle",
+    "text": "Castle"
+  },
+  {
+    "id": "materialize::cat",
+    "text": "Cat"
+  },
+  {
+    "id": "materialize::cellphone",
+    "text": "Cellphone"
+  },
+  {
+    "id": "materialize::cellphone-android",
+    "text": "Cellphone Android"
+  },
+  {
+    "id": "materialize::cellphone-basic",
+    "text": "Cellphone Basic"
+  },
+  {
+    "id": "materialize::cellphone-dock",
+    "text": "Cellphone Dock"
+  },
+  {
+    "id": "materialize::cellphone-iphone",
+    "text": "Cellphone Iphone"
+  },
+  {
+    "id": "materialize::cellphone-link",
+    "text": "Cellphone Link"
+  },
+  {
+    "id": "materialize::cellphone-link-off",
+    "text": "Cellphone Link Off"
+  },
+  {
+    "id": "materialize::cellphone-settings",
+    "text": "Cellphone Settings"
+  },
+  {
+    "id": "materialize::certificate",
+    "text": "Certificate"
+  },
+  {
+    "id": "materialize::chair-school",
+    "text": "Chair School"
+  },
+  {
+    "id": "materialize::chart-arc",
+    "text": "Chart Arc"
+  },
+  {
+    "id": "materialize::chart-areaspline",
+    "text": "Chart Areaspline"
+  },
+  {
+    "id": "materialize::chart-bar",
+    "text": "Chart Bar"
+  },
+  {
+    "id": "materialize::chart-bubble",
+    "text": "Chart Bubble"
+  },
+  {
+    "id": "materialize::chart-gantt",
+    "text": "Chart Gantt"
+  },
+  {
+    "id": "materialize::chart-histogram",
+    "text": "Chart Histogram"
+  },
+  {
+    "id": "materialize::chart-line",
+    "text": "Chart Line"
+  },
+  {
+    "id": "materialize::chart-pie",
+    "text": "Chart Pie"
+  },
+  {
+    "id": "materialize::chart-scatterplot-hexbin",
+    "text": "Chart Scatterplot Hexbin"
+  },
+  {
+    "id": "materialize::chart-timeline",
+    "text": "Chart Timeline"
+  },
+  {
+    "id": "materialize::check",
+    "text": "Check"
+  },
+  {
+    "id": "materialize::check-all",
+    "text": "Check All"
+  },
+  {
+    "id": "materialize::check-circle",
+    "text": "Check Circle"
+  },
+  {
+    "id": "materialize::check-circle-outline",
+    "text": "Check Circle Outline"
+  },
+  {
+    "id": "materialize::checkbox-blank",
+    "text": "Checkbox Blank"
+  },
+  {
+    "id": "materialize::checkbox-blank-circle",
+    "text": "Checkbox Blank Circle"
+  },
+  {
+    "id": "materialize::checkbox-blank-circle-outline",
+    "text": "Checkbox Blank Circle Outline"
+  },
+  {
+    "id": "materialize::checkbox-blank-outline",
+    "text": "Checkbox Blank Outline"
+  },
+  {
+    "id": "materialize::checkbox-marked",
+    "text": "Checkbox Marked"
+  },
+  {
+    "id": "materialize::checkbox-marked-circle",
+    "text": "Checkbox Marked Circle"
+  },
+  {
+    "id": "materialize::checkbox-marked-circle-outline",
+    "text": "Checkbox Marked Circle Outline"
+  },
+  {
+    "id": "materialize::checkbox-marked-outline",
+    "text": "Checkbox Marked Outline"
+  },
+  {
+    "id": "materialize::checkbox-multiple-blank",
+    "text": "Checkbox Multiple Blank"
+  },
+  {
+    "id": "materialize::checkbox-multiple-blank-circle",
+    "text": "Checkbox Multiple Blank Circle"
+  },
+  {
+    "id": "materialize::checkbox-multiple-blank-circle-outline",
+    "text": "Checkbox Multiple Blank Circle Outline"
+  },
+  {
+    "id": "materialize::checkbox-multiple-blank-outline",
+    "text": "Checkbox Multiple Blank Outline"
+  },
+  {
+    "id": "materialize::checkbox-multiple-marked",
+    "text": "Checkbox Multiple Marked"
+  },
+  {
+    "id": "materialize::checkbox-multiple-marked-circle",
+    "text": "Checkbox Multiple Marked Circle"
+  },
+  {
+    "id": "materialize::checkbox-multiple-marked-circle-outline",
+    "text": "Checkbox Multiple Marked Circle Outline"
+  },
+  {
+    "id": "materialize::checkbox-multiple-marked-outline",
+    "text": "Checkbox Multiple Marked Outline"
+  },
+  {
+    "id": "materialize::checkerboard",
+    "text": "Checkerboard"
+  },
+  {
+    "id": "materialize::chemical-weapon",
+    "text": "Chemical Weapon"
+  },
+  {
+    "id": "materialize::chevron-double-down",
+    "text": "Chevron Double Down"
+  },
+  {
+    "id": "materialize::chevron-double-left",
+    "text": "Chevron Double Left"
+  },
+  {
+    "id": "materialize::chevron-double-right",
+    "text": "Chevron Double Right"
+  },
+  {
+    "id": "materialize::chevron-double-up",
+    "text": "Chevron Double Up"
+  },
+  {
+    "id": "materialize::chevron-down",
+    "text": "Chevron Down"
+  },
+  {
+    "id": "materialize::chevron-left",
+    "text": "Chevron Left"
+  },
+  {
+    "id": "materialize::chevron-right",
+    "text": "Chevron Right"
+  },
+  {
+    "id": "materialize::chevron-up",
+    "text": "Chevron Up"
+  },
+  {
+    "id": "materialize::chip",
+    "text": "Chip"
+  },
+  {
+    "id": "materialize::church",
+    "text": "Church"
+  },
+  {
+    "id": "materialize::cisco-webex",
+    "text": "Cisco Webex"
+  },
+  {
+    "id": "materialize::city",
+    "text": "City"
+  },
+  {
+    "id": "materialize::clipboard",
+    "text": "Clipboard"
+  },
+  {
+    "id": "materialize::clipboard-account",
+    "text": "Clipboard Account"
+  },
+  {
+    "id": "materialize::clipboard-alert",
+    "text": "Clipboard Alert"
+  },
+  {
+    "id": "materialize::clipboard-arrow-down",
+    "text": "Clipboard Arrow Down"
+  },
+  {
+    "id": "materialize::clipboard-arrow-left",
+    "text": "Clipboard Arrow Left"
+  },
+  {
+    "id": "materialize::clipboard-check",
+    "text": "Clipboard Check"
+  },
+  {
+    "id": "materialize::clipboard-flow",
+    "text": "Clipboard Flow"
+  },
+  {
+    "id": "materialize::clipboard-outline",
+    "text": "Clipboard Outline"
+  },
+  {
+    "id": "materialize::clipboard-text",
+    "text": "Clipboard Text"
+  },
+  {
+    "id": "materialize::clippy",
+    "text": "Clippy"
+  },
+  {
+    "id": "materialize::clock",
+    "text": "Clock"
+  },
+  {
+    "id": "materialize::clock-alert",
+    "text": "Clock Alert"
+  },
+  {
+    "id": "materialize::clock-end",
+    "text": "Clock End"
+  },
+  {
+    "id": "materialize::clock-fast",
+    "text": "Clock Fast"
+  },
+  {
+    "id": "materialize::clock-in",
+    "text": "Clock In"
+  },
+  {
+    "id": "materialize::clock-out",
+    "text": "Clock Out"
+  },
+  {
+    "id": "materialize::clock-start",
+    "text": "Clock Start"
+  },
+  {
+    "id": "materialize::close",
+    "text": "Close"
+  },
+  {
+    "id": "materialize::close-box",
+    "text": "Close Box"
+  },
+  {
+    "id": "materialize::close-box-outline",
+    "text": "Close Box Outline"
+  },
+  {
+    "id": "materialize::close-circle",
+    "text": "Close Circle"
+  },
+  {
+    "id": "materialize::close-circle-outline",
+    "text": "Close Circle Outline"
+  },
+  {
+    "id": "materialize::close-network",
+    "text": "Close Network"
+  },
+  {
+    "id": "materialize::close-octagon",
+    "text": "Close Octagon"
+  },
+  {
+    "id": "materialize::close-octagon-outline",
+    "text": "Close Octagon Outline"
+  },
+  {
+    "id": "materialize::close-outline",
+    "text": "Close Outline"
+  },
+  {
+    "id": "materialize::closed-caption",
+    "text": "Closed Caption"
+  },
+  {
+    "id": "materialize::cloud",
+    "text": "Cloud"
+  },
+  {
+    "id": "materialize::cloud-check",
+    "text": "Cloud Check"
+  },
+  {
+    "id": "materialize::cloud-circle",
+    "text": "Cloud Circle"
+  },
+  {
+    "id": "materialize::cloud-download",
+    "text": "Cloud Download"
+  },
+  {
+    "id": "materialize::cloud-outline",
+    "text": "Cloud Outline"
+  },
+  {
+    "id": "materialize::cloud-outline-off",
+    "text": "Cloud Outline Off"
+  },
+  {
+    "id": "materialize::cloud-print",
+    "text": "Cloud Print"
+  },
+  {
+    "id": "materialize::cloud-print-outline",
+    "text": "Cloud Print Outline"
+  },
+  {
+    "id": "materialize::cloud-sync",
+    "text": "Cloud Sync"
+  },
+  {
+    "id": "materialize::cloud-upload",
+    "text": "Cloud Upload"
+  },
+  {
+    "id": "materialize::code-array",
+    "text": "Code Array"
+  },
+  {
+    "id": "materialize::code-braces",
+    "text": "Code Braces"
+  },
+  {
+    "id": "materialize::code-brackets",
+    "text": "Code Brackets"
+  },
+  {
+    "id": "materialize::code-equal",
+    "text": "Code Equal"
+  },
+  {
+    "id": "materialize::code-greater-than",
+    "text": "Code Greater Than"
+  },
+  {
+    "id": "materialize::code-greater-than-or-equal",
+    "text": "Code Greater Than Or Equal"
+  },
+  {
+    "id": "materialize::code-less-than",
+    "text": "Code Less Than"
+  },
+  {
+    "id": "materialize::code-less-than-or-equal",
+    "text": "Code Less Than Or Equal"
+  },
+  {
+    "id": "materialize::code-not-equal",
+    "text": "Code Not Equal"
+  },
+  {
+    "id": "materialize::code-not-equal-variant",
+    "text": "Code Not Equal Variant"
+  },
+  {
+    "id": "materialize::code-parentheses",
+    "text": "Code Parentheses"
+  },
+  {
+    "id": "materialize::code-string",
+    "text": "Code String"
+  },
+  {
+    "id": "materialize::code-tags",
+    "text": "Code Tags"
+  },
+  {
+    "id": "materialize::code-tags-check",
+    "text": "Code Tags Check"
+  },
+  {
+    "id": "materialize::codepen",
+    "text": "Codepen"
+  },
+  {
+    "id": "materialize::coffee",
+    "text": "Coffee"
+  },
+  {
+    "id": "materialize::coffee-outline",
+    "text": "Coffee Outline"
+  },
+  {
+    "id": "materialize::coffee-to-go",
+    "text": "Coffee To Go"
+  },
+  {
+    "id": "materialize::coin",
+    "text": "Coin"
+  },
+  {
+    "id": "materialize::coins",
+    "text": "Coins"
+  },
+  {
+    "id": "materialize::collage",
+    "text": "Collage"
+  },
+  {
+    "id": "materialize::color-helper",
+    "text": "Color Helper"
+  },
+  {
+    "id": "materialize::comment",
+    "text": "Comment"
+  },
+  {
+    "id": "materialize::comment-account",
+    "text": "Comment Account"
+  },
+  {
+    "id": "materialize::comment-account-outline",
+    "text": "Comment Account Outline"
+  },
+  {
+    "id": "materialize::comment-alert",
+    "text": "Comment Alert"
+  },
+  {
+    "id": "materialize::comment-alert-outline",
+    "text": "Comment Alert Outline"
+  },
+  {
+    "id": "materialize::comment-check",
+    "text": "Comment Check"
+  },
+  {
+    "id": "materialize::comment-check-outline",
+    "text": "Comment Check Outline"
+  },
+  {
+    "id": "materialize::comment-multiple-outline",
+    "text": "Comment Multiple Outline"
+  },
+  {
+    "id": "materialize::comment-outline",
+    "text": "Comment Outline"
+  },
+  {
+    "id": "materialize::comment-plus-outline",
+    "text": "Comment Plus Outline"
+  },
+  {
+    "id": "materialize::comment-processing",
+    "text": "Comment Processing"
+  },
+  {
+    "id": "materialize::comment-processing-outline",
+    "text": "Comment Processing Outline"
+  },
+  {
+    "id": "materialize::comment-question-outline",
+    "text": "Comment Question Outline"
+  },
+  {
+    "id": "materialize::comment-remove-outline",
+    "text": "Comment Remove Outline"
+  },
+  {
+    "id": "materialize::comment-text",
+    "text": "Comment Text"
+  },
+  {
+    "id": "materialize::comment-text-outline",
+    "text": "Comment Text Outline"
+  },
+  {
+    "id": "materialize::compare",
+    "text": "Compare"
+  },
+  {
+    "id": "materialize::compass",
+    "text": "Compass"
+  },
+  {
+    "id": "materialize::compass-outline",
+    "text": "Compass Outline"
+  },
+  {
+    "id": "materialize::console",
+    "text": "Console"
+  },
+  {
+    "id": "materialize::contact-mail",
+    "text": "Contact Mail"
+  },
+  {
+    "id": "materialize::contacts",
+    "text": "Contacts"
+  },
+  {
+    "id": "materialize::content-copy",
+    "text": "Content Copy"
+  },
+  {
+    "id": "materialize::content-cut",
+    "text": "Content Cut"
+  },
+  {
+    "id": "materialize::content-duplicate",
+    "text": "Content Duplicate"
+  },
+  {
+    "id": "materialize::content-paste",
+    "text": "Content Paste"
+  },
+  {
+    "id": "materialize::content-save",
+    "text": "Content Save"
+  },
+  {
+    "id": "materialize::content-save-all",
+    "text": "Content Save All"
+  },
+  {
+    "id": "materialize::content-save-settings",
+    "text": "Content Save Settings"
+  },
+  {
+    "id": "materialize::contrast",
+    "text": "Contrast"
+  },
+  {
+    "id": "materialize::contrast-box",
+    "text": "Contrast Box"
+  },
+  {
+    "id": "materialize::contrast-circle",
+    "text": "Contrast Circle"
+  },
+  {
+    "id": "materialize::cookie",
+    "text": "Cookie"
+  },
+  {
+    "id": "materialize::copyright",
+    "text": "Copyright"
+  },
+  {
+    "id": "materialize::counter",
+    "text": "Counter"
+  },
+  {
+    "id": "materialize::cow",
+    "text": "Cow"
+  },
+  {
+    "id": "materialize::creation",
+    "text": "Creation"
+  },
+  {
+    "id": "materialize::credit-card",
+    "text": "Credit Card"
+  },
+  {
+    "id": "materialize::credit-card-multiple",
+    "text": "Credit Card Multiple"
+  },
+  {
+    "id": "materialize::credit-card-off",
+    "text": "Credit Card Off"
+  },
+  {
+    "id": "materialize::credit-card-plus",
+    "text": "Credit Card Plus"
+  },
+  {
+    "id": "materialize::credit-card-scan",
+    "text": "Credit Card Scan"
+  },
+  {
+    "id": "materialize::crop",
+    "text": "Crop"
+  },
+  {
+    "id": "materialize::crop-free",
+    "text": "Crop Free"
+  },
+  {
+    "id": "materialize::crop-landscape",
+    "text": "Crop Landscape"
+  },
+  {
+    "id": "materialize::crop-portrait",
+    "text": "Crop Portrait"
+  },
+  {
+    "id": "materialize::crop-rotate",
+    "text": "Crop Rotate"
+  },
+  {
+    "id": "materialize::crop-square",
+    "text": "Crop Square"
+  },
+  {
+    "id": "materialize::crosshairs",
+    "text": "Crosshairs"
+  },
+  {
+    "id": "materialize::crosshairs-gps",
+    "text": "Crosshairs Gps"
+  },
+  {
+    "id": "materialize::crown",
+    "text": "Crown"
+  },
+  {
+    "id": "materialize::cube",
+    "text": "Cube"
+  },
+  {
+    "id": "materialize::cube-outline",
+    "text": "Cube Outline"
+  },
+  {
+    "id": "materialize::cube-send",
+    "text": "Cube Send"
+  },
+  {
+    "id": "materialize::cube-unfolded",
+    "text": "Cube Unfolded"
+  },
+  {
+    "id": "materialize::cup",
+    "text": "Cup"
+  },
+  {
+    "id": "materialize::cup-off",
+    "text": "Cup Off"
+  },
+  {
+    "id": "materialize::cup-water",
+    "text": "Cup Water"
+  },
+  {
+    "id": "materialize::currency-btc",
+    "text": "Currency Btc"
+  },
+  {
+    "id": "materialize::currency-eur",
+    "text": "Currency Eur"
+  },
+  {
+    "id": "materialize::currency-gbp",
+    "text": "Currency Gbp"
+  },
+  {
+    "id": "materialize::currency-inr",
+    "text": "Currency Inr"
+  },
+  {
+    "id": "materialize::currency-ngn",
+    "text": "Currency Ngn"
+  },
+  {
+    "id": "materialize::currency-rub",
+    "text": "Currency Rub"
+  },
+  {
+    "id": "materialize::currency-try",
+    "text": "Currency Try"
+  },
+  {
+    "id": "materialize::currency-usd",
+    "text": "Currency Usd"
+  },
+  {
+    "id": "materialize::currency-usd-off",
+    "text": "Currency Usd Off"
+  },
+  {
+    "id": "materialize::cursor-default",
+    "text": "Cursor Default"
+  },
+  {
+    "id": "materialize::cursor-default-outline",
+    "text": "Cursor Default Outline"
+  },
+  {
+    "id": "materialize::cursor-move",
+    "text": "Cursor Move"
+  },
+  {
+    "id": "materialize::cursor-pointer",
+    "text": "Cursor Pointer"
+  },
+  {
+    "id": "materialize::cursor-text",
+    "text": "Cursor Text"
+  },
+  {
+    "id": "materialize::database",
+    "text": "Database"
+  },
+  {
+    "id": "materialize::database-minus",
+    "text": "Database Minus"
+  },
+  {
+    "id": "materialize::database-plus",
+    "text": "Database Plus"
+  },
+  {
+    "id": "materialize::debug-step-into",
+    "text": "Debug Step Into"
+  },
+  {
+    "id": "materialize::debug-step-out",
+    "text": "Debug Step Out"
+  },
+  {
+    "id": "materialize::debug-step-over",
+    "text": "Debug Step Over"
+  },
+  {
+    "id": "materialize::decimal-decrease",
+    "text": "Decimal Decrease"
+  },
+  {
+    "id": "materialize::decimal-increase",
+    "text": "Decimal Increase"
+  },
+  {
+    "id": "materialize::delete",
+    "text": "Delete"
+  },
+  {
+    "id": "materialize::delete-circle",
+    "text": "Delete Circle"
+  },
+  {
+    "id": "materialize::delete-empty",
+    "text": "Delete Empty"
+  },
+  {
+    "id": "materialize::delete-forever",
+    "text": "Delete Forever"
+  },
+  {
+    "id": "materialize::delete-sweep",
+    "text": "Delete Sweep"
+  },
+  {
+    "id": "materialize::delete-variant",
+    "text": "Delete Variant"
+  },
+  {
+    "id": "materialize::delta",
+    "text": "Delta"
+  },
+  {
+    "id": "materialize::deskphone",
+    "text": "Deskphone"
+  },
+  {
+    "id": "materialize::desktop-mac",
+    "text": "Desktop Mac"
+  },
+  {
+    "id": "materialize::desktop-tower",
+    "text": "Desktop Tower"
+  },
+  {
+    "id": "materialize::details",
+    "text": "Details"
+  },
+  {
+    "id": "materialize::developer-board",
+    "text": "Developer Board"
+  },
+  {
+    "id": "materialize::deviantart",
+    "text": "Deviantart"
+  },
+  {
+    "id": "materialize::dialpad",
+    "text": "Dialpad"
+  },
+  {
+    "id": "materialize::diamond",
+    "text": "Diamond"
+  },
+  {
+    "id": "materialize::dice-1",
+    "text": "Dice 1"
+  },
+  {
+    "id": "materialize::dice-2",
+    "text": "Dice 2"
+  },
+  {
+    "id": "materialize::dice-3",
+    "text": "Dice 3"
+  },
+  {
+    "id": "materialize::dice-4",
+    "text": "Dice 4"
+  },
+  {
+    "id": "materialize::dice-5",
+    "text": "Dice 5"
+  },
+  {
+    "id": "materialize::dice-6",
+    "text": "Dice 6"
+  },
+  {
+    "id": "materialize::dice-d20",
+    "text": "Dice D20"
+  },
+  {
+    "id": "materialize::dice-d4",
+    "text": "Dice D4"
+  },
+  {
+    "id": "materialize::dice-d6",
+    "text": "Dice D6"
+  },
+  {
+    "id": "materialize::dice-d8",
+    "text": "Dice D8"
+  },
+  {
+    "id": "materialize::dictionary",
+    "text": "Dictionary"
+  },
+  {
+    "id": "materialize::directions",
+    "text": "Directions"
+  },
+  {
+    "id": "materialize::directions-fork",
+    "text": "Directions Fork"
+  },
+  {
+    "id": "materialize::discord",
+    "text": "Discord"
+  },
+  {
+    "id": "materialize::disk",
+    "text": "Disk"
+  },
+  {
+    "id": "materialize::disk-alert",
+    "text": "Disk Alert"
+  },
+  {
+    "id": "materialize::disqus",
+    "text": "Disqus"
+  },
+  {
+    "id": "materialize::disqus-outline",
+    "text": "Disqus Outline"
+  },
+  {
+    "id": "materialize::division",
+    "text": "Division"
+  },
+  {
+    "id": "materialize::division-box",
+    "text": "Division Box"
+  },
+  {
+    "id": "materialize::dna",
+    "text": "Dna"
+  },
+  {
+    "id": "materialize::dns",
+    "text": "Dns"
+  },
+  {
+    "id": "materialize::do-not-disturb",
+    "text": "Do Not Disturb"
+  },
+  {
+    "id": "materialize::do-not-disturb-off",
+    "text": "Do Not Disturb Off"
+  },
+  {
+    "id": "materialize::dolby",
+    "text": "Dolby"
+  },
+  {
+    "id": "materialize::domain",
+    "text": "Domain"
+  },
+  {
+    "id": "materialize::dots-horizontal",
+    "text": "Dots Horizontal"
+  },
+  {
+    "id": "materialize::dots-vertical",
+    "text": "Dots Vertical"
+  },
+  {
+    "id": "materialize::douban",
+    "text": "Douban"
+  },
+  {
+    "id": "materialize::download",
+    "text": "Download"
+  },
+  {
+    "id": "materialize::drag",
+    "text": "Drag"
+  },
+  {
+    "id": "materialize::drag-horizontal",
+    "text": "Drag Horizontal"
+  },
+  {
+    "id": "materialize::drag-vertical",
+    "text": "Drag Vertical"
+  },
+  {
+    "id": "materialize::drawing",
+    "text": "Drawing"
+  },
+  {
+    "id": "materialize::drawing-box",
+    "text": "Drawing Box"
+  },
+  {
+    "id": "materialize::dribbble",
+    "text": "Dribbble"
+  },
+  {
+    "id": "materialize::dribbble-box",
+    "text": "Dribbble Box"
+  },
+  {
+    "id": "materialize::drone",
+    "text": "Drone"
+  },
+  {
+    "id": "materialize::dropbox",
+    "text": "Dropbox"
+  },
+  {
+    "id": "materialize::drupal",
+    "text": "Drupal"
+  },
+  {
+    "id": "materialize::duck",
+    "text": "Duck"
+  },
+  {
+    "id": "materialize::dumbbell",
+    "text": "Dumbbell"
+  },
+  {
+    "id": "materialize::earth",
+    "text": "Earth"
+  },
+  {
+    "id": "materialize::earth-box",
+    "text": "Earth Box"
+  },
+  {
+    "id": "materialize::earth-box-off",
+    "text": "Earth Box Off"
+  },
+  {
+    "id": "materialize::earth-off",
+    "text": "Earth Off"
+  },
+  {
+    "id": "materialize::edge",
+    "text": "Edge"
+  },
+  {
+    "id": "materialize::eject",
+    "text": "Eject"
+  },
+  {
+    "id": "materialize::elevation-decline",
+    "text": "Elevation Decline"
+  },
+  {
+    "id": "materialize::elevation-rise",
+    "text": "Elevation Rise"
+  },
+  {
+    "id": "materialize::elevator",
+    "text": "Elevator"
+  },
+  {
+    "id": "materialize::email",
+    "text": "Email"
+  },
+  {
+    "id": "materialize::email-alert",
+    "text": "Email Alert"
+  },
+  {
+    "id": "materialize::email-open",
+    "text": "Email Open"
+  },
+  {
+    "id": "materialize::email-open-outline",
+    "text": "Email Open Outline"
+  },
+  {
+    "id": "materialize::email-outline",
+    "text": "Email Outline"
+  },
+  {
+    "id": "materialize::email-secure",
+    "text": "Email Secure"
+  },
+  {
+    "id": "materialize::email-variant",
+    "text": "Email Variant"
+  },
+  {
+    "id": "materialize::emby",
+    "text": "Emby"
+  },
+  {
+    "id": "materialize::emoticon",
+    "text": "Emoticon"
+  },
+  {
+    "id": "materialize::emoticon-cool",
+    "text": "Emoticon Cool"
+  },
+  {
+    "id": "simpleline::di-emoticon-cool",
+    "text": "Di Emoticon Cool"
+  },
+  {
+    "id": "materialize::emoticon-dead",
+    "text": "Emoticon Dead"
+  },
+  {
+    "id": "simpleline::di-emoticon-dead",
+    "text": "Di Emoticon Dead"
+  },
+  {
+    "id": "materialize::emoticon-devil",
+    "text": "Emoticon Devil"
+  },
+  {
+    "id": "simpleline::di-emoticon-devil",
+    "text": "Di Emoticon Devil"
+  },
+  {
+    "id": "materialize::emoticon-excited",
+    "text": "Emoticon Excited"
+  },
+  {
+    "id": "simpleline::di-emoticon-excited",
+    "text": "Di Emoticon Excited"
+  },
+  {
+    "id": "materialize::emoticon-happy",
+    "text": "Emoticon Happy"
+  },
+  {
+    "id": "simpleline::di-emoticon-happy",
+    "text": "Di Emoticon Happy"
+  },
+  {
+    "id": "materialize::emoticon-neutral",
+    "text": "Emoticon Neutral"
+  },
+  {
+    "id": "simpleline::di-emoticon-neutral",
+    "text": "Di Emoticon Neutral"
+  },
+  {
+    "id": "materialize::emoticon-poop",
+    "text": "Emoticon Poop"
+  },
+  {
+    "id": "simpleline::di-emoticon-poop",
+    "text": "Di Emoticon Poop"
+  },
+  {
+    "id": "materialize::emoticon-sad",
+    "text": "Emoticon Sad"
+  },
+  {
+    "id": "simpleline::di-emoticon-sad",
+    "text": "Di Emoticon Sad"
+  },
+  {
+    "id": "materialize::emoticon-tongue",
+    "text": "Emoticon Tongue"
+  },
+  {
+    "id": "simpleline::di-emoticon-tongue",
+    "text": "Di Emoticon Tongue"
+  },
+  {
+    "id": "materialize::engine",
+    "text": "Engine"
+  },
+  {
+    "id": "materialize::engine-outline",
+    "text": "Engine Outline"
+  },
+  {
+    "id": "materialize::equal",
+    "text": "Equal"
+  },
+  {
+    "id": "materialize::equal-box",
+    "text": "Equal Box"
+  },
+  {
+    "id": "materialize::eraser",
+    "text": "Eraser"
+  },
+  {
+    "id": "materialize::eraser-variant",
+    "text": "Eraser Variant"
+  },
+  {
+    "id": "materialize::escalator",
+    "text": "Escalator"
+  },
+  {
+    "id": "materialize::ethernet",
+    "text": "Ethernet"
+  },
+  {
+    "id": "materialize::ethernet-cable",
+    "text": "Ethernet Cable"
+  },
+  {
+    "id": "materialize::ethernet-cable-off",
+    "text": "Ethernet Cable Off"
+  },
+  {
+    "id": "materialize::etsy",
+    "text": "Etsy"
+  },
+  {
+    "id": "materialize::ev-station",
+    "text": "Ev Station"
+  },
+  {
+    "id": "materialize::evernote",
+    "text": "Evernote"
+  },
+  {
+    "id": "materialize::exclamation",
+    "text": "Exclamation"
+  },
+  {
+    "id": "materialize::exit-to-app",
+    "text": "Exit To App"
+  },
+  {
+    "id": "materialize::export",
+    "text": "Export"
+  },
+  {
+    "id": "materialize::eye",
+    "text": "Eye"
+  },
+  {
+    "id": "materialize::eye-off",
+    "text": "Eye Off"
+  },
+  {
+    "id": "materialize::eye-outline",
+    "text": "Eye Outline"
+  },
+  {
+    "id": "materialize::eye-outline-off",
+    "text": "Eye Outline Off"
+  },
+  {
+    "id": "materialize::eyedropper",
+    "text": "Eyedropper"
+  },
+  {
+    "id": "materialize::eyedropper-variant",
+    "text": "Eyedropper Variant"
+  },
+  {
+    "id": "materialize::face",
+    "text": "Face"
+  },
+  {
+    "id": "materialize::face-profile",
+    "text": "Face Profile"
+  },
+  {
+    "id": "materialize::facebook",
+    "text": "Facebook"
+  },
+  {
+    "id": "materialize::facebook-box",
+    "text": "Facebook Box"
+  },
+  {
+    "id": "materialize::facebook-messenger",
+    "text": "Facebook Messenger"
+  },
+  {
+    "id": "materialize::factory",
+    "text": "Factory"
+  },
+  {
+    "id": "materialize::fan",
+    "text": "Fan"
+  },
+  {
+    "id": "materialize::fast-forward",
+    "text": "Fast Forward"
+  },
+  {
+    "id": "materialize::fast-forward-outline",
+    "text": "Fast Forward Outline"
+  },
+  {
+    "id": "materialize::fax",
+    "text": "Fax"
+  },
+  {
+    "id": "materialize::feather",
+    "text": "Feather"
+  },
+  {
+    "id": "materialize::ferry",
+    "text": "Ferry"
+  },
+  {
+    "id": "materialize::file",
+    "text": "File"
+  },
+  {
+    "id": "materialize::file-chart",
+    "text": "File Chart"
+  },
+  {
+    "id": "materialize::file-check",
+    "text": "File Check"
+  },
+  {
+    "id": "materialize::file-cloud",
+    "text": "File Cloud"
+  },
+  {
+    "id": "materialize::file-delimited",
+    "text": "File Delimited"
+  },
+  {
+    "id": "materialize::file-document",
+    "text": "File Document"
+  },
+  {
+    "id": "materialize::file-document-box",
+    "text": "File Document Box"
+  },
+  {
+    "id": "materialize::file-excel",
+    "text": "File Excel"
+  },
+  {
+    "id": "materialize::file-excel-box",
+    "text": "File Excel Box"
+  },
+  {
+    "id": "materialize::file-export",
+    "text": "File Export"
+  },
+  {
+    "id": "materialize::file-find",
+    "text": "File Find"
+  },
+  {
+    "id": "materialize::file-hidden",
+    "text": "File Hidden"
+  },
+  {
+    "id": "materialize::file-image",
+    "text": "File Image"
+  },
+  {
+    "id": "materialize::file-import",
+    "text": "File Import"
+  },
+  {
+    "id": "materialize::file-lock",
+    "text": "File Lock"
+  },
+  {
+    "id": "materialize::file-multiple",
+    "text": "File Multiple"
+  },
+  {
+    "id": "materialize::file-music",
+    "text": "File Music"
+  },
+  {
+    "id": "materialize::file-outline",
+    "text": "File Outline"
+  },
+  {
+    "id": "materialize::file-pdf",
+    "text": "File Pdf"
+  },
+  {
+    "id": "materialize::file-pdf-box",
+    "text": "File Pdf Box"
+  },
+  {
+    "id": "materialize::file-powerpoint",
+    "text": "File Powerpoint"
+  },
+  {
+    "id": "materialize::file-powerpoint-box",
+    "text": "File Powerpoint Box"
+  },
+  {
+    "id": "materialize::file-presentation-box",
+    "text": "File Presentation Box"
+  },
+  {
+    "id": "materialize::file-restore",
+    "text": "File Restore"
+  },
+  {
+    "id": "materialize::file-send",
+    "text": "File Send"
+  },
+  {
+    "id": "materialize::file-tree",
+    "text": "File Tree"
+  },
+  {
+    "id": "materialize::file-video",
+    "text": "File Video"
+  },
+  {
+    "id": "materialize::file-word",
+    "text": "File Word"
+  },
+  {
+    "id": "materialize::file-word-box",
+    "text": "File Word Box"
+  },
+  {
+    "id": "materialize::file-xml",
+    "text": "File Xml"
+  },
+  {
+    "id": "materialize::film",
+    "text": "Film"
+  },
+  {
+    "id": "materialize::filmstrip",
+    "text": "Filmstrip"
+  },
+  {
+    "id": "materialize::filmstrip-off",
+    "text": "Filmstrip Off"
+  },
+  {
+    "id": "materialize::filter",
+    "text": "Filter"
+  },
+  {
+    "id": "materialize::filter-outline",
+    "text": "Filter Outline"
+  },
+  {
+    "id": "materialize::filter-remove",
+    "text": "Filter Remove"
+  },
+  {
+    "id": "materialize::filter-remove-outline",
+    "text": "Filter Remove Outline"
+  },
+  {
+    "id": "materialize::filter-variant",
+    "text": "Filter Variant"
+  },
+  {
+    "id": "materialize::find-replace",
+    "text": "Find Replace"
+  },
+  {
+    "id": "materialize::fingerprint",
+    "text": "Fingerprint"
+  },
+  {
+    "id": "materialize::fire",
+    "text": "Fire"
+  },
+  {
+    "id": "materialize::firefox",
+    "text": "Firefox"
+  },
+  {
+    "id": "materialize::fish",
+    "text": "Fish"
+  },
+  {
+    "id": "materialize::flag",
+    "text": "Flag"
+  },
+  {
+    "id": "materialize::flag-checkered",
+    "text": "Flag Checkered"
+  },
+  {
+    "id": "materialize::flag-outline",
+    "text": "Flag Outline"
+  },
+  {
+    "id": "materialize::flag-outline-variant",
+    "text": "Flag Outline Variant"
+  },
+  {
+    "id": "materialize::flag-triangle",
+    "text": "Flag Triangle"
+  },
+  {
+    "id": "materialize::flag-variant",
+    "text": "Flag Variant"
+  },
+  {
+    "id": "materialize::flash",
+    "text": "Flash"
+  },
+  {
+    "id": "materialize::flash-auto",
+    "text": "Flash Auto"
+  },
+  {
+    "id": "materialize::flash-off",
+    "text": "Flash Off"
+  },
+  {
+    "id": "materialize::flash-outline",
+    "text": "Flash Outline"
+  },
+  {
+    "id": "materialize::flash-red-eye",
+    "text": "Flash Red Eye"
+  },
+  {
+    "id": "materialize::flashlight",
+    "text": "Flashlight"
+  },
+  {
+    "id": "materialize::flashlight-off",
+    "text": "Flashlight Off"
+  },
+  {
+    "id": "materialize::flask",
+    "text": "Flask"
+  },
+  {
+    "id": "materialize::flask-empty",
+    "text": "Flask Empty"
+  },
+  {
+    "id": "materialize::flask-empty-outline",
+    "text": "Flask Empty Outline"
+  },
+  {
+    "id": "materialize::flask-outline",
+    "text": "Flask Outline"
+  },
+  {
+    "id": "materialize::flattr",
+    "text": "Flattr"
+  },
+  {
+    "id": "materialize::flip-to-back",
+    "text": "Flip To Back"
+  },
+  {
+    "id": "materialize::flip-to-front",
+    "text": "Flip To Front"
+  },
+  {
+    "id": "materialize::floppy",
+    "text": "Floppy"
+  },
+  {
+    "id": "materialize::flower",
+    "text": "Flower"
+  },
+  {
+    "id": "materialize::folder",
+    "text": "Folder"
+  },
+  {
+    "id": "materialize::folder-account",
+    "text": "Folder Account"
+  },
+  {
+    "id": "materialize::folder-download",
+    "text": "Folder Download"
+  },
+  {
+    "id": "materialize::folder-google-drive",
+    "text": "Folder Google Drive"
+  },
+  {
+    "id": "materialize::folder-image",
+    "text": "Folder Image"
+  },
+  {
+    "id": "materialize::folder-lock",
+    "text": "Folder Lock"
+  },
+  {
+    "id": "materialize::folder-lock-open",
+    "text": "Folder Lock Open"
+  },
+  {
+    "id": "materialize::folder-move",
+    "text": "Folder Move"
+  },
+  {
+    "id": "materialize::folder-multiple",
+    "text": "Folder Multiple"
+  },
+  {
+    "id": "materialize::folder-multiple-image",
+    "text": "Folder Multiple Image"
+  },
+  {
+    "id": "materialize::folder-multiple-outline",
+    "text": "Folder Multiple Outline"
+  },
+  {
+    "id": "materialize::folder-outline",
+    "text": "Folder Outline"
+  },
+  {
+    "id": "materialize::folder-plus",
+    "text": "Folder Plus"
+  },
+  {
+    "id": "materialize::folder-remove",
+    "text": "Folder Remove"
+  },
+  {
+    "id": "materialize::folder-star",
+    "text": "Folder Star"
+  },
+  {
+    "id": "materialize::folder-upload",
+    "text": "Folder Upload"
+  },
+  {
+    "id": "materialize::font-awesome",
+    "text": "Font Awesome"
+  },
+  {
+    "id": "materialize::food",
+    "text": "Food"
+  },
+  {
+    "id": "materialize::food-apple",
+    "text": "Food Apple"
+  },
+  {
+    "id": "materialize::food-fork-drink",
+    "text": "Food Fork Drink"
+  },
+  {
+    "id": "materialize::food-off",
+    "text": "Food Off"
+  },
+  {
+    "id": "materialize::food-variant",
+    "text": "Food Variant"
+  },
+  {
+    "id": "materialize::football",
+    "text": "Football"
+  },
+  {
+    "id": "materialize::football-australian",
+    "text": "Football Australian"
+  },
+  {
+    "id": "materialize::football-helmet",
+    "text": "Football Helmet"
+  },
+  {
+    "id": "materialize::format-align-center",
+    "text": "Format Align Center"
+  },
+  {
+    "id": "materialize::format-align-justify",
+    "text": "Format Align Justify"
+  },
+  {
+    "id": "materialize::format-align-left",
+    "text": "Format Align Left"
+  },
+  {
+    "id": "materialize::format-align-right",
+    "text": "Format Align Right"
+  },
+  {
+    "id": "materialize::format-annotation-plus",
+    "text": "Format Annotation Plus"
+  },
+  {
+    "id": "materialize::format-bold",
+    "text": "Format Bold"
+  },
+  {
+    "id": "materialize::format-clear",
+    "text": "Format Clear"
+  },
+  {
+    "id": "materialize::format-color-fill",
+    "text": "Format Color Fill"
+  },
+  {
+    "id": "materialize::format-color-text",
+    "text": "Format Color Text"
+  },
+  {
+    "id": "materialize::format-float-center",
+    "text": "Format Float Center"
+  },
+  {
+    "id": "materialize::format-float-left",
+    "text": "Format Float Left"
+  },
+  {
+    "id": "materialize::format-float-none",
+    "text": "Format Float None"
+  },
+  {
+    "id": "materialize::format-float-right",
+    "text": "Format Float Right"
+  },
+  {
+    "id": "materialize::format-font",
+    "text": "Format Font"
+  },
+  {
+    "id": "materialize::format-header-1",
+    "text": "Format Header 1"
+  },
+  {
+    "id": "materialize::format-header-2",
+    "text": "Format Header 2"
+  },
+  {
+    "id": "materialize::format-header-3",
+    "text": "Format Header 3"
+  },
+  {
+    "id": "materialize::format-header-4",
+    "text": "Format Header 4"
+  },
+  {
+    "id": "materialize::format-header-5",
+    "text": "Format Header 5"
+  },
+  {
+    "id": "materialize::format-header-6",
+    "text": "Format Header 6"
+  },
+  {
+    "id": "materialize::format-header-decrease",
+    "text": "Format Header Decrease"
+  },
+  {
+    "id": "materialize::format-header-equal",
+    "text": "Format Header Equal"
+  },
+  {
+    "id": "materialize::format-header-increase",
+    "text": "Format Header Increase"
+  },
+  {
+    "id": "materialize::format-header-pound",
+    "text": "Format Header Pound"
+  },
+  {
+    "id": "materialize::format-horizontal-align-center",
+    "text": "Format Horizontal Align Center"
+  },
+  {
+    "id": "materialize::format-horizontal-align-left",
+    "text": "Format Horizontal Align Left"
+  },
+  {
+    "id": "materialize::format-horizontal-align-right",
+    "text": "Format Horizontal Align Right"
+  },
+  {
+    "id": "materialize::format-indent-decrease",
+    "text": "Format Indent Decrease"
+  },
+  {
+    "id": "materialize::format-indent-increase",
+    "text": "Format Indent Increase"
+  },
+  {
+    "id": "materialize::format-italic",
+    "text": "Format Italic"
+  },
+  {
+    "id": "materialize::format-line-spacing",
+    "text": "Format Line Spacing"
+  },
+  {
+    "id": "materialize::format-line-style",
+    "text": "Format Line Style"
+  },
+  {
+    "id": "materialize::format-line-weight",
+    "text": "Format Line Weight"
+  },
+  {
+    "id": "materialize::format-list-bulleted",
+    "text": "Format List Bulleted"
+  },
+  {
+    "id": "materialize::format-list-bulleted-type",
+    "text": "Format List Bulleted Type"
+  },
+  {
+    "id": "materialize::format-list-numbers",
+    "text": "Format List Numbers"
+  },
+  {
+    "id": "materialize::format-page-break",
+    "text": "Format Page Break"
+  },
+  {
+    "id": "materialize::format-paint",
+    "text": "Format Paint"
+  },
+  {
+    "id": "materialize::format-paragraph",
+    "text": "Format Paragraph"
+  },
+  {
+    "id": "materialize::format-pilcrow",
+    "text": "Format Pilcrow"
+  },
+  {
+    "id": "materialize::format-quote",
+    "text": "Format Quote"
+  },
+  {
+    "id": "materialize::format-rotate-90",
+    "text": "Format Rotate 90"
+  },
+  {
+    "id": "materialize::format-section",
+    "text": "Format Section"
+  },
+  {
+    "id": "materialize::format-size",
+    "text": "Format Size"
+  },
+  {
+    "id": "materialize::format-strikethrough",
+    "text": "Format Strikethrough"
+  },
+  {
+    "id": "materialize::format-strikethrough-variant",
+    "text": "Format Strikethrough Variant"
+  },
+  {
+    "id": "materialize::format-subscript",
+    "text": "Format Subscript"
+  },
+  {
+    "id": "materialize::format-superscript",
+    "text": "Format Superscript"
+  },
+  {
+    "id": "materialize::format-text",
+    "text": "Format Text"
+  },
+  {
+    "id": "materialize::format-textdirection-l-to-r",
+    "text": "Format Textdirection L To R"
+  },
+  {
+    "id": "materialize::format-textdirection-r-to-l",
+    "text": "Format Textdirection R To L"
+  },
+  {
+    "id": "materialize::format-title",
+    "text": "Format Title"
+  },
+  {
+    "id": "materialize::format-underline",
+    "text": "Format Underline"
+  },
+  {
+    "id": "materialize::format-vertical-align-bottom",
+    "text": "Format Vertical Align Bottom"
+  },
+  {
+    "id": "materialize::format-vertical-align-center",
+    "text": "Format Vertical Align Center"
+  },
+  {
+    "id": "materialize::format-vertical-align-top",
+    "text": "Format Vertical Align Top"
+  },
+  {
+    "id": "materialize::format-wrap-inline",
+    "text": "Format Wrap Inline"
+  },
+  {
+    "id": "materialize::format-wrap-square",
+    "text": "Format Wrap Square"
+  },
+  {
+    "id": "materialize::format-wrap-tight",
+    "text": "Format Wrap Tight"
+  },
+  {
+    "id": "materialize::format-wrap-top-bottom",
+    "text": "Format Wrap Top Bottom"
+  },
+  {
+    "id": "materialize::forum",
+    "text": "Forum"
+  },
+  {
+    "id": "materialize::forward",
+    "text": "Forward"
+  },
+  {
+    "id": "materialize::foursquare",
+    "text": "Foursquare"
+  },
+  {
+    "id": "materialize::fridge",
+    "text": "Fridge"
+  },
+  {
+    "id": "materialize::fridge-filled",
+    "text": "Fridge Filled"
+  },
+  {
+    "id": "materialize::fridge-filled-bottom",
+    "text": "Fridge Filled Bottom"
+  },
+  {
+    "id": "materialize::fridge-filled-top",
+    "text": "Fridge Filled Top"
+  },
+  {
+    "id": "materialize::fullscreen",
+    "text": "Fullscreen"
+  },
+  {
+    "id": "materialize::fullscreen-exit",
+    "text": "Fullscreen Exit"
+  },
+  {
+    "id": "materialize::function",
+    "text": "Function"
+  },
+  {
+    "id": "materialize::gamepad",
+    "text": "Gamepad"
+  },
+  {
+    "id": "materialize::gamepad-variant",
+    "text": "Gamepad Variant"
+  },
+  {
+    "id": "materialize::garage",
+    "text": "Garage"
+  },
+  {
+    "id": "materialize::garage-open",
+    "text": "Garage Open"
+  },
+  {
+    "id": "materialize::gas-cylinder",
+    "text": "Gas Cylinder"
+  },
+  {
+    "id": "materialize::gas-station",
+    "text": "Gas Station"
+  },
+  {
+    "id": "materialize::gate",
+    "text": "Gate"
+  },
+  {
+    "id": "materialize::gauge",
+    "text": "Gauge"
+  },
+  {
+    "id": "materialize::gavel",
+    "text": "Gavel"
+  },
+  {
+    "id": "materialize::gender-female",
+    "text": "Gender Female"
+  },
+  {
+    "id": "materialize::gender-male",
+    "text": "Gender Male"
+  },
+  {
+    "id": "materialize::gender-male-female",
+    "text": "Gender Male Female"
+  },
+  {
+    "id": "materialize::gender-transgender",
+    "text": "Gender Transgender"
+  },
+  {
+    "id": "materialize::ghost",
+    "text": "Ghost"
+  },
+  {
+    "id": "materialize::gift",
+    "text": "Gift"
+  },
+  {
+    "id": "materialize::git",
+    "text": "Git"
+  },
+  {
+    "id": "materialize::github-box",
+    "text": "Github Box"
+  },
+  {
+    "id": "materialize::github-circle",
+    "text": "Github Circle"
+  },
+  {
+    "id": "materialize::github-face",
+    "text": "Github Face"
+  },
+  {
+    "id": "materialize::glass-flute",
+    "text": "Glass Flute"
+  },
+  {
+    "id": "materialize::glass-mug",
+    "text": "Glass Mug"
+  },
+  {
+    "id": "materialize::glass-stange",
+    "text": "Glass Stange"
+  },
+  {
+    "id": "materialize::glass-tulip",
+    "text": "Glass Tulip"
+  },
+  {
+    "id": "materialize::glassdoor",
+    "text": "Glassdoor"
+  },
+  {
+    "id": "materialize::glasses",
+    "text": "Glasses"
+  },
+  {
+    "id": "materialize::gmail",
+    "text": "Gmail"
+  },
+  {
+    "id": "materialize::gnome",
+    "text": "Gnome"
+  },
+  {
+    "id": "materialize::gondola",
+    "text": "Gondola"
+  },
+  {
+    "id": "materialize::google",
+    "text": "Google"
+  },
+  {
+    "id": "materialize::google-cardboard",
+    "text": "Google Cardboard"
+  },
+  {
+    "id": "materialize::google-chrome",
+    "text": "Google Chrome"
+  },
+  {
+    "id": "materialize::google-circles",
+    "text": "Google Circles"
+  },
+  {
+    "id": "materialize::google-circles-communities",
+    "text": "Google Circles Communities"
+  },
+  {
+    "id": "materialize::google-circles-extended",
+    "text": "Google Circles Extended"
+  },
+  {
+    "id": "materialize::google-circles-group",
+    "text": "Google Circles Group"
+  },
+  {
+    "id": "materialize::google-controller",
+    "text": "Google Controller"
+  },
+  {
+    "id": "materialize::google-controller-off",
+    "text": "Google Controller Off"
+  },
+  {
+    "id": "materialize::google-drive",
+    "text": "Google Drive"
+  },
+  {
+    "id": "materialize::google-earth",
+    "text": "Google Earth"
+  },
+  {
+    "id": "materialize::google-glass",
+    "text": "Google Glass"
+  },
+  {
+    "id": "materialize::google-keep",
+    "text": "Google Keep"
+  },
+  {
+    "id": "materialize::google-maps",
+    "text": "Google Maps"
+  },
+  {
+    "id": "materialize::google-nearby",
+    "text": "Google Nearby"
+  },
+  {
+    "id": "materialize::google-pages",
+    "text": "Google Pages"
+  },
+  {
+    "id": "materialize::google-photos",
+    "text": "Google Photos"
+  },
+  {
+    "id": "materialize::google-physical-web",
+    "text": "Google Physical Web"
+  },
+  {
+    "id": "materialize::google-play",
+    "text": "Google Play"
+  },
+  {
+    "id": "materialize::google-plus",
+    "text": "Google Plus"
+  },
+  {
+    "id": "materialize::google-plus-box",
+    "text": "Google Plus Box"
+  },
+  {
+    "id": "materialize::google-translate",
+    "text": "Google Translate"
+  },
+  {
+    "id": "materialize::google-wallet",
+    "text": "Google Wallet"
+  },
+  {
+    "id": "materialize::gradient",
+    "text": "Gradient"
+  },
+  {
+    "id": "materialize::grease-pencil",
+    "text": "Grease Pencil"
+  },
+  {
+    "id": "materialize::grid",
+    "text": "Grid"
+  },
+  {
+    "id": "materialize::grid-off",
+    "text": "Grid Off"
+  },
+  {
+    "id": "materialize::group",
+    "text": "Group"
+  },
+  {
+    "id": "materialize::guitar-electric",
+    "text": "Guitar Electric"
+  },
+  {
+    "id": "materialize::guitar-pick",
+    "text": "Guitar Pick"
+  },
+  {
+    "id": "materialize::guitar-pick-outline",
+    "text": "Guitar Pick Outline"
+  },
+  {
+    "id": "materialize::hackernews",
+    "text": "Hackernews"
+  },
+  {
+    "id": "materialize::hamburger",
+    "text": "Hamburger"
+  },
+  {
+    "id": "materialize::hand-pointing-right",
+    "text": "Hand Pointing Right"
+  },
+  {
+    "id": "materialize::hanger",
+    "text": "Hanger"
+  },
+  {
+    "id": "materialize::hangouts",
+    "text": "Hangouts"
+  },
+  {
+    "id": "materialize::harddisk",
+    "text": "Harddisk"
+  },
+  {
+    "id": "materialize::headphones",
+    "text": "Headphones"
+  },
+  {
+    "id": "materialize::headphones-box",
+    "text": "Headphones Box"
+  },
+  {
+    "id": "materialize::headphones-settings",
+    "text": "Headphones Settings"
+  },
+  {
+    "id": "materialize::headset",
+    "text": "Headset"
+  },
+  {
+    "id": "materialize::headset-dock",
+    "text": "Headset Dock"
+  },
+  {
+    "id": "materialize::headset-off",
+    "text": "Headset Off"
+  },
+  {
+    "id": "materialize::heart",
+    "text": "Heart"
+  },
+  {
+    "id": "materialize::heart-box",
+    "text": "Heart Box"
+  },
+  {
+    "id": "materialize::heart-box-outline",
+    "text": "Heart Box Outline"
+  },
+  {
+    "id": "materialize::heart-broken",
+    "text": "Heart Broken"
+  },
+  {
+    "id": "materialize::heart-half-outline",
+    "text": "Heart Half Outline"
+  },
+  {
+    "id": "materialize::heart-half-part",
+    "text": "Heart Half Part"
+  },
+  {
+    "id": "materialize::heart-half-part-outline",
+    "text": "Heart Half Part Outline"
+  },
+  {
+    "id": "materialize::heart-outline",
+    "text": "Heart Outline"
+  },
+  {
+    "id": "materialize::heart-pulse",
+    "text": "Heart Pulse"
+  },
+  {
+    "id": "materialize::help",
+    "text": "Help"
+  },
+  {
+    "id": "materialize::help-circle",
+    "text": "Help Circle"
+  },
+  {
+    "id": "materialize::help-circle-outline",
+    "text": "Help Circle Outline"
+  },
+  {
+    "id": "materialize::hexagon",
+    "text": "Hexagon"
+  },
+  {
+    "id": "materialize::hexagon-multiple",
+    "text": "Hexagon Multiple"
+  },
+  {
+    "id": "materialize::hexagon-outline",
+    "text": "Hexagon Outline"
+  },
+  {
+    "id": "materialize::highway",
+    "text": "Highway"
+  },
+  {
+    "id": "materialize::history",
+    "text": "History"
+  },
+  {
+    "id": "materialize::hololens",
+    "text": "Hololens"
+  },
+  {
+    "id": "materialize::home",
+    "text": "Home"
+  },
+  {
+    "id": "materialize::home-map-marker",
+    "text": "Home Map Marker"
+  },
+  {
+    "id": "materialize::home-modern",
+    "text": "Home Modern"
+  },
+  {
+    "id": "materialize::home-outline",
+    "text": "Home Outline"
+  },
+  {
+    "id": "materialize::home-variant",
+    "text": "Home Variant"
+  },
+  {
+    "id": "materialize::hook",
+    "text": "Hook"
+  },
+  {
+    "id": "materialize::hook-off",
+    "text": "Hook Off"
+  },
+  {
+    "id": "materialize::hops",
+    "text": "Hops"
+  },
+  {
+    "id": "materialize::hospital",
+    "text": "Hospital"
+  },
+  {
+    "id": "materialize::hospital-building",
+    "text": "Hospital Building"
+  },
+  {
+    "id": "materialize::hospital-marker",
+    "text": "Hospital Marker"
+  },
+  {
+    "id": "materialize::hotel",
+    "text": "Hotel"
+  },
+  {
+    "id": "materialize::houzz",
+    "text": "Houzz"
+  },
+  {
+    "id": "materialize::houzz-box",
+    "text": "Houzz Box"
+  },
+  {
+    "id": "materialize::human",
+    "text": "Human"
+  },
+  {
+    "id": "materialize::human-child",
+    "text": "Human Child"
+  },
+  {
+    "id": "materialize::human-female",
+    "text": "Human Female"
+  },
+  {
+    "id": "materialize::human-greeting",
+    "text": "Human Greeting"
+  },
+  {
+    "id": "materialize::human-handsdown",
+    "text": "Human Handsdown"
+  },
+  {
+    "id": "materialize::human-handsup",
+    "text": "Human Handsup"
+  },
+  {
+    "id": "materialize::human-male",
+    "text": "Human Male"
+  },
+  {
+    "id": "materialize::human-male-female",
+    "text": "Human Male Female"
+  },
+  {
+    "id": "materialize::human-pregnant",
+    "text": "Human Pregnant"
+  },
+  {
+    "id": "materialize::image",
+    "text": "Image"
+  },
+  {
+    "id": "materialize::image-album",
+    "text": "Image Album"
+  },
+  {
+    "id": "materialize::image-area",
+    "text": "Image Area"
+  },
+  {
+    "id": "materialize::image-area-close",
+    "text": "Image Area Close"
+  },
+  {
+    "id": "materialize::image-broken",
+    "text": "Image Broken"
+  },
+  {
+    "id": "materialize::image-broken-variant",
+    "text": "Image Broken Variant"
+  },
+  {
+    "id": "materialize::image-filter",
+    "text": "Image Filter"
+  },
+  {
+    "id": "materialize::image-filter-black-white",
+    "text": "Image Filter Black White"
+  },
+  {
+    "id": "materialize::image-filter-center-focus",
+    "text": "Image Filter Center Focus"
+  },
+  {
+    "id": "materialize::image-filter-center-focus-weak",
+    "text": "Image Filter Center Focus Weak"
+  },
+  {
+    "id": "materialize::image-filter-drama",
+    "text": "Image Filter Drama"
+  },
+  {
+    "id": "materialize::image-filter-frames",
+    "text": "Image Filter Frames"
+  },
+  {
+    "id": "materialize::image-filter-hdr",
+    "text": "Image Filter Hdr"
+  },
+  {
+    "id": "materialize::image-filter-none",
+    "text": "Image Filter None"
+  },
+  {
+    "id": "materialize::image-filter-tilt-shift",
+    "text": "Image Filter Tilt Shift"
+  },
+  {
+    "id": "materialize::image-filter-vintage",
+    "text": "Image Filter Vintage"
+  },
+  {
+    "id": "materialize::image-multiple",
+    "text": "Image Multiple"
+  },
+  {
+    "id": "materialize::import",
+    "text": "Import"
+  },
+  {
+    "id": "materialize::inbox",
+    "text": "Inbox"
+  },
+  {
+    "id": "materialize::inbox-arrow-down",
+    "text": "Inbox Arrow Down"
+  },
+  {
+    "id": "materialize::inbox-arrow-up",
+    "text": "Inbox Arrow Up"
+  },
+  {
+    "id": "materialize::incognito",
+    "text": "Incognito"
+  },
+  {
+    "id": "materialize::infinity",
+    "text": "Infinity"
+  },
+  {
+    "id": "materialize::information",
+    "text": "Information"
+  },
+  {
+    "id": "materialize::information-outline",
+    "text": "Information Outline"
+  },
+  {
+    "id": "materialize::information-variant",
+    "text": "Information Variant"
+  },
+  {
+    "id": "materialize::instagram",
+    "text": "Instagram"
+  },
+  {
+    "id": "materialize::instapaper",
+    "text": "Instapaper"
+  },
+  {
+    "id": "materialize::internet-explorer",
+    "text": "Internet Explorer"
+  },
+  {
+    "id": "materialize::invert-colors",
+    "text": "Invert Colors"
+  },
+  {
+    "id": "materialize::itunes",
+    "text": "Itunes"
+  },
+  {
+    "id": "materialize::jeepney",
+    "text": "Jeepney"
+  },
+  {
+    "id": "materialize::jira",
+    "text": "Jira"
+  },
+  {
+    "id": "materialize::jsfiddle",
+    "text": "Jsfiddle"
+  },
+  {
+    "id": "materialize::json",
+    "text": "Json"
+  },
+  {
+    "id": "materialize::keg",
+    "text": "Keg"
+  },
+  {
+    "id": "materialize::kettle",
+    "text": "Kettle"
+  },
+  {
+    "id": "materialize::key",
+    "text": "Key"
+  },
+  {
+    "id": "materialize::key-change",
+    "text": "Key Change"
+  },
+  {
+    "id": "materialize::key-minus",
+    "text": "Key Minus"
+  },
+  {
+    "id": "materialize::key-plus",
+    "text": "Key Plus"
+  },
+  {
+    "id": "materialize::key-remove",
+    "text": "Key Remove"
+  },
+  {
+    "id": "materialize::key-variant",
+    "text": "Key Variant"
+  },
+  {
+    "id": "materialize::keyboard",
+    "text": "Keyboard"
+  },
+  {
+    "id": "materialize::keyboard-backspace",
+    "text": "Keyboard Backspace"
+  },
+  {
+    "id": "materialize::keyboard-caps",
+    "text": "Keyboard Caps"
+  },
+  {
+    "id": "materialize::keyboard-close",
+    "text": "Keyboard Close"
+  },
+  {
+    "id": "materialize::keyboard-off",
+    "text": "Keyboard Off"
+  },
+  {
+    "id": "materialize::keyboard-return",
+    "text": "Keyboard Return"
+  },
+  {
+    "id": "materialize::keyboard-tab",
+    "text": "Keyboard Tab"
+  },
+  {
+    "id": "materialize::keyboard-variant",
+    "text": "Keyboard Variant"
+  },
+  {
+    "id": "materialize::kodi",
+    "text": "Kodi"
+  },
+  {
+    "id": "materialize::label",
+    "text": "Label"
+  },
+  {
+    "id": "materialize::label-outline",
+    "text": "Label Outline"
+  },
+  {
+    "id": "materialize::lambda",
+    "text": "Lambda"
+  },
+  {
+    "id": "materialize::lamp",
+    "text": "Lamp"
+  },
+  {
+    "id": "materialize::lan",
+    "text": "Lan"
+  },
+  {
+    "id": "materialize::lan-connect",
+    "text": "Lan Connect"
+  },
+  {
+    "id": "materialize::lan-disconnect",
+    "text": "Lan Disconnect"
+  },
+  {
+    "id": "materialize::lan-pending",
+    "text": "Lan Pending"
+  },
+  {
+    "id": "materialize::language-c",
+    "text": "Language C"
+  },
+  {
+    "id": "materialize::language-cpp",
+    "text": "Language Cpp"
+  },
+  {
+    "id": "materialize::language-csharp",
+    "text": "Language Csharp"
+  },
+  {
+    "id": "materialize::language-css3",
+    "text": "Language Css3"
+  },
+  {
+    "id": "materialize::language-html5",
+    "text": "Language Html5"
+  },
+  {
+    "id": "materialize::language-javascript",
+    "text": "Language Javascript"
+  },
+  {
+    "id": "materialize::language-php",
+    "text": "Language Php"
+  },
+  {
+    "id": "materialize::language-python",
+    "text": "Language Python"
+  },
+  {
+    "id": "materialize::language-python-text",
+    "text": "Language Python Text"
+  },
+  {
+    "id": "materialize::language-swift",
+    "text": "Language Swift"
+  },
+  {
+    "id": "materialize::language-typescript",
+    "text": "Language Typescript"
+  },
+  {
+    "id": "materialize::laptop",
+    "text": "Laptop"
+  },
+  {
+    "id": "materialize::laptop-chromebook",
+    "text": "Laptop Chromebook"
+  },
+  {
+    "id": "materialize::laptop-mac",
+    "text": "Laptop Mac"
+  },
+  {
+    "id": "materialize::laptop-off",
+    "text": "Laptop Off"
+  },
+  {
+    "id": "materialize::laptop-windows",
+    "text": "Laptop Windows"
+  },
+  {
+    "id": "materialize::lastfm",
+    "text": "Lastfm"
+  },
+  {
+    "id": "materialize::launch",
+    "text": "Launch"
+  },
+  {
+    "id": "materialize::layers",
+    "text": "Layers"
+  },
+  {
+    "id": "materialize::layers-off",
+    "text": "Layers Off"
+  },
+  {
+    "id": "materialize::lead-pencil",
+    "text": "Lead Pencil"
+  },
+  {
+    "id": "materialize::leaf",
+    "text": "Leaf"
+  },
+  {
+    "id": "materialize::led-off",
+    "text": "Led Off"
+  },
+  {
+    "id": "materialize::led-on",
+    "text": "Led On"
+  },
+  {
+    "id": "materialize::led-outline",
+    "text": "Led Outline"
+  },
+  {
+    "id": "materialize::led-variant-off",
+    "text": "Led Variant Off"
+  },
+  {
+    "id": "materialize::led-variant-on",
+    "text": "Led Variant On"
+  },
+  {
+    "id": "materialize::led-variant-outline",
+    "text": "Led Variant Outline"
+  },
+  {
+    "id": "materialize::library",
+    "text": "Library"
+  },
+  {
+    "id": "materialize::library-books",
+    "text": "Library Books"
+  },
+  {
+    "id": "materialize::library-music",
+    "text": "Library Music"
+  },
+  {
+    "id": "materialize::library-plus",
+    "text": "Library Plus"
+  },
+  {
+    "id": "materialize::lightbulb",
+    "text": "Lightbulb"
+  },
+  {
+    "id": "materialize::lightbulb-on",
+    "text": "Lightbulb On"
+  },
+  {
+    "id": "materialize::lightbulb-on-outline",
+    "text": "Lightbulb On Outline"
+  },
+  {
+    "id": "materialize::lightbulb-outline",
+    "text": "Lightbulb Outline"
+  },
+  {
+    "id": "materialize::link",
+    "text": "Link"
+  },
+  {
+    "id": "materialize::link-off",
+    "text": "Link Off"
+  },
+  {
+    "id": "materialize::link-variant",
+    "text": "Link Variant"
+  },
+  {
+    "id": "materialize::link-variant-off",
+    "text": "Link Variant Off"
+  },
+  {
+    "id": "materialize::linkedin",
+    "text": "Linkedin"
+  },
+  {
+    "id": "materialize::linkedin-box",
+    "text": "Linkedin Box"
+  },
+  {
+    "id": "materialize::linux",
+    "text": "Linux"
+  },
+  {
+    "id": "materialize::lock",
+    "text": "Lock"
+  },
+  {
+    "id": "materialize::lock-open",
+    "text": "Lock Open"
+  },
+  {
+    "id": "materialize::lock-open-outline",
+    "text": "Lock Open Outline"
+  },
+  {
+    "id": "materialize::lock-outline",
+    "text": "Lock Outline"
+  },
+  {
+    "id": "materialize::lock-pattern",
+    "text": "Lock Pattern"
+  },
+  {
+    "id": "materialize::lock-plus",
+    "text": "Lock Plus"
+  },
+  {
+    "id": "materialize::login",
+    "text": "Login"
+  },
+  {
+    "id": "materialize::login-variant",
+    "text": "Login Variant"
+  },
+  {
+    "id": "materialize::logout",
+    "text": "Logout"
+  },
+  {
+    "id": "materialize::logout-variant",
+    "text": "Logout Variant"
+  },
+  {
+    "id": "materialize::looks",
+    "text": "Looks"
+  },
+  {
+    "id": "materialize::loop",
+    "text": "Loop"
+  },
+  {
+    "id": "materialize::loupe",
+    "text": "Loupe"
+  },
+  {
+    "id": "materialize::lumx",
+    "text": "Lumx"
+  },
+  {
+    "id": "materialize::magnet",
+    "text": "Magnet"
+  },
+  {
+    "id": "materialize::magnet-on",
+    "text": "Magnet On"
+  },
+  {
+    "id": "materialize::magnify",
+    "text": "Magnify"
+  },
+  {
+    "id": "materialize::magnify-minus",
+    "text": "Magnify Minus"
+  },
+  {
+    "id": "materialize::magnify-minus-outline",
+    "text": "Magnify Minus Outline"
+  },
+  {
+    "id": "materialize::magnify-plus",
+    "text": "Magnify Plus"
+  },
+  {
+    "id": "materialize::magnify-plus-outline",
+    "text": "Magnify Plus Outline"
+  },
+  {
+    "id": "materialize::mail-ru",
+    "text": "Mail Ru"
+  },
+  {
+    "id": "materialize::mailbox",
+    "text": "Mailbox"
+  },
+  {
+    "id": "materialize::map",
+    "text": "Map"
+  },
+  {
+    "id": "materialize::map-marker",
+    "text": "Map Marker"
+  },
+  {
+    "id": "materialize::map-marker-circle",
+    "text": "Map Marker Circle"
+  },
+  {
+    "id": "materialize::map-marker-minus",
+    "text": "Map Marker Minus"
+  },
+  {
+    "id": "materialize::map-marker-multiple",
+    "text": "Map Marker Multiple"
+  },
+  {
+    "id": "materialize::map-marker-off",
+    "text": "Map Marker Off"
+  },
+  {
+    "id": "materialize::map-marker-plus",
+    "text": "Map Marker Plus"
+  },
+  {
+    "id": "materialize::map-marker-radius",
+    "text": "Map Marker Radius"
+  },
+  {
+    "id": "materialize::margin",
+    "text": "Margin"
+  },
+  {
+    "id": "materialize::markdown",
+    "text": "Markdown"
+  },
+  {
+    "id": "materialize::marker",
+    "text": "Marker"
+  },
+  {
+    "id": "materialize::marker-check",
+    "text": "Marker Check"
+  },
+  {
+    "id": "materialize::martini",
+    "text": "Martini"
+  },
+  {
+    "id": "materialize::material-ui",
+    "text": "Material Ui"
+  },
+  {
+    "id": "materialize::math-compass",
+    "text": "Math Compass"
+  },
+  {
+    "id": "materialize::matrix",
+    "text": "Matrix"
+  },
+  {
+    "id": "materialize::maxcdn",
+    "text": "Maxcdn"
+  },
+  {
+    "id": "materialize::medical-bag",
+    "text": "Medical Bag"
+  },
+  {
+    "id": "materialize::medium",
+    "text": "Medium"
+  },
+  {
+    "id": "materialize::memory",
+    "text": "Memory"
+  },
+  {
+    "id": "materialize::menu",
+    "text": "Menu"
+  },
+  {
+    "id": "materialize::menu-down",
+    "text": "Menu Down"
+  },
+  {
+    "id": "materialize::menu-down-outline",
+    "text": "Menu Down Outline"
+  },
+  {
+    "id": "materialize::menu-left",
+    "text": "Menu Left"
+  },
+  {
+    "id": "materialize::menu-right",
+    "text": "Menu Right"
+  },
+  {
+    "id": "materialize::menu-up",
+    "text": "Menu Up"
+  },
+  {
+    "id": "materialize::menu-up-outline",
+    "text": "Menu Up Outline"
+  },
+  {
+    "id": "materialize::message",
+    "text": "Message"
+  },
+  {
+    "id": "materialize::message-alert",
+    "text": "Message Alert"
+  },
+  {
+    "id": "materialize::message-bulleted",
+    "text": "Message Bulleted"
+  },
+  {
+    "id": "materialize::message-bulleted-off",
+    "text": "Message Bulleted Off"
+  },
+  {
+    "id": "materialize::message-draw",
+    "text": "Message Draw"
+  },
+  {
+    "id": "materialize::message-image",
+    "text": "Message Image"
+  },
+  {
+    "id": "materialize::message-outline",
+    "text": "Message Outline"
+  },
+  {
+    "id": "materialize::message-plus",
+    "text": "Message Plus"
+  },
+  {
+    "id": "materialize::message-processing",
+    "text": "Message Processing"
+  },
+  {
+    "id": "materialize::message-reply",
+    "text": "Message Reply"
+  },
+  {
+    "id": "materialize::message-reply-text",
+    "text": "Message Reply Text"
+  },
+  {
+    "id": "materialize::message-settings",
+    "text": "Message Settings"
+  },
+  {
+    "id": "materialize::message-settings-variant",
+    "text": "Message Settings Variant"
+  },
+  {
+    "id": "materialize::message-text",
+    "text": "Message Text"
+  },
+  {
+    "id": "materialize::message-text-outline",
+    "text": "Message Text Outline"
+  },
+  {
+    "id": "materialize::message-video",
+    "text": "Message Video"
+  },
+  {
+    "id": "materialize::meteor",
+    "text": "Meteor"
+  },
+  {
+    "id": "materialize::microphone",
+    "text": "Microphone"
+  },
+  {
+    "id": "materialize::microphone-off",
+    "text": "Microphone Off"
+  },
+  {
+    "id": "materialize::microphone-outline",
+    "text": "Microphone Outline"
+  },
+  {
+    "id": "materialize::microphone-settings",
+    "text": "Microphone Settings"
+  },
+  {
+    "id": "materialize::microphone-variant",
+    "text": "Microphone Variant"
+  },
+  {
+    "id": "materialize::microphone-variant-off",
+    "text": "Microphone Variant Off"
+  },
+  {
+    "id": "materialize::microscope",
+    "text": "Microscope"
+  },
+  {
+    "id": "materialize::microsoft",
+    "text": "Microsoft"
+  },
+  {
+    "id": "materialize::minecraft",
+    "text": "Minecraft"
+  },
+  {
+    "id": "materialize::minus",
+    "text": "Minus"
+  },
+  {
+    "id": "materialize::minus-box",
+    "text": "Minus Box"
+  },
+  {
+    "id": "materialize::minus-box-outline",
+    "text": "Minus Box Outline"
+  },
+  {
+    "id": "materialize::minus-circle",
+    "text": "Minus Circle"
+  },
+  {
+    "id": "materialize::minus-circle-outline",
+    "text": "Minus Circle Outline"
+  },
+  {
+    "id": "materialize::minus-network",
+    "text": "Minus Network"
+  },
+  {
+    "id": "materialize::mixcloud",
+    "text": "Mixcloud"
+  },
+  {
+    "id": "materialize::monitor",
+    "text": "Monitor"
+  },
+  {
+    "id": "materialize::monitor-multiple",
+    "text": "Monitor Multiple"
+  },
+  {
+    "id": "materialize::more",
+    "text": "More"
+  },
+  {
+    "id": "materialize::motorbike",
+    "text": "Motorbike"
+  },
+  {
+    "id": "materialize::mouse",
+    "text": "Mouse"
+  },
+  {
+    "id": "materialize::mouse-off",
+    "text": "Mouse Off"
+  },
+  {
+    "id": "materialize::mouse-variant",
+    "text": "Mouse Variant"
+  },
+  {
+    "id": "materialize::mouse-variant-off",
+    "text": "Mouse Variant Off"
+  },
+  {
+    "id": "materialize::move-resize",
+    "text": "Move Resize"
+  },
+  {
+    "id": "materialize::move-resize-variant",
+    "text": "Move Resize Variant"
+  },
+  {
+    "id": "materialize::movie",
+    "text": "Movie"
+  },
+  {
+    "id": "materialize::multiplication",
+    "text": "Multiplication"
+  },
+  {
+    "id": "materialize::multiplication-box",
+    "text": "Multiplication Box"
+  },
+  {
+    "id": "materialize::music-box",
+    "text": "Music Box"
+  },
+  {
+    "id": "materialize::music-box-outline",
+    "text": "Music Box Outline"
+  },
+  {
+    "id": "materialize::music-circle",
+    "text": "Music Circle"
+  },
+  {
+    "id": "materialize::music-note",
+    "text": "Music Note"
+  },
+  {
+    "id": "materialize::music-note-bluetooth",
+    "text": "Music Note Bluetooth"
+  },
+  {
+    "id": "materialize::music-note-bluetooth-off",
+    "text": "Music Note Bluetooth Off"
+  },
+  {
+    "id": "materialize::music-note-eighth",
+    "text": "Music Note Eighth"
+  },
+  {
+    "id": "materialize::music-note-half",
+    "text": "Music Note Half"
+  },
+  {
+    "id": "materialize::music-note-off",
+    "text": "Music Note Off"
+  },
+  {
+    "id": "materialize::music-note-quarter",
+    "text": "Music Note Quarter"
+  },
+  {
+    "id": "materialize::music-note-sixteenth",
+    "text": "Music Note Sixteenth"
+  },
+  {
+    "id": "materialize::music-note-whole",
+    "text": "Music Note Whole"
+  },
+  {
+    "id": "materialize::nature",
+    "text": "Nature"
+  },
+  {
+    "id": "materialize::nature-people",
+    "text": "Nature People"
+  },
+  {
+    "id": "materialize::navigation",
+    "text": "Navigation"
+  },
+  {
+    "id": "materialize::near-me",
+    "text": "Near Me"
+  },
+  {
+    "id": "materialize::needle",
+    "text": "Needle"
+  },
+  {
+    "id": "materialize::nest-protect",
+    "text": "Nest Protect"
+  },
+  {
+    "id": "materialize::nest-thermostat",
+    "text": "Nest Thermostat"
+  },
+  {
+    "id": "materialize::network",
+    "text": "Network"
+  },
+  {
+    "id": "materialize::network-download",
+    "text": "Network Download"
+  },
+  {
+    "id": "materialize::network-question",
+    "text": "Network Question"
+  },
+  {
+    "id": "materialize::network-upload",
+    "text": "Network Upload"
+  },
+  {
+    "id": "materialize::new-box",
+    "text": "New Box"
+  },
+  {
+    "id": "materialize::newspaper",
+    "text": "Newspaper"
+  },
+  {
+    "id": "materialize::nfc",
+    "text": "Nfc"
+  },
+  {
+    "id": "materialize::nfc-tap",
+    "text": "Nfc Tap"
+  },
+  {
+    "id": "materialize::nfc-variant",
+    "text": "Nfc Variant"
+  },
+  {
+    "id": "materialize::nodejs",
+    "text": "Nodejs"
+  },
+  {
+    "id": "materialize::note",
+    "text": "Note"
+  },
+  {
+    "id": "materialize::note-multiple",
+    "text": "Note Multiple"
+  },
+  {
+    "id": "materialize::note-multiple-outline",
+    "text": "Note Multiple Outline"
+  },
+  {
+    "id": "materialize::note-outline",
+    "text": "Note Outline"
+  },
+  {
+    "id": "materialize::note-plus",
+    "text": "Note Plus"
+  },
+  {
+    "id": "materialize::note-plus-outline",
+    "text": "Note Plus Outline"
+  },
+  {
+    "id": "materialize::note-text",
+    "text": "Note Text"
+  },
+  {
+    "id": "materialize::notification-clear-all",
+    "text": "Notification Clear All"
+  },
+  {
+    "id": "materialize::npm",
+    "text": "Npm"
+  },
+  {
+    "id": "materialize::nuke",
+    "text": "Nuke"
+  },
+  {
+    "id": "materialize::numeric",
+    "text": "Numeric"
+  },
+  {
+    "id": "materialize::numeric-0-box",
+    "text": "Numeric 0 Box"
+  },
+  {
+    "id": "materialize::numeric-0-box-multiple-outline",
+    "text": "Numeric 0 Box Multiple Outline"
+  },
+  {
+    "id": "materialize::numeric-0-box-outline",
+    "text": "Numeric 0 Box Outline"
+  },
+  {
+    "id": "materialize::numeric-1-box",
+    "text": "Numeric 1 Box"
+  },
+  {
+    "id": "materialize::numeric-1-box-multiple-outline",
+    "text": "Numeric 1 Box Multiple Outline"
+  },
+  {
+    "id": "materialize::numeric-1-box-outline",
+    "text": "Numeric 1 Box Outline"
+  },
+  {
+    "id": "materialize::numeric-2-box",
+    "text": "Numeric 2 Box"
+  },
+  {
+    "id": "materialize::numeric-2-box-multiple-outline",
+    "text": "Numeric 2 Box Multiple Outline"
+  },
+  {
+    "id": "materialize::numeric-2-box-outline",
+    "text": "Numeric 2 Box Outline"
+  },
+  {
+    "id": "materialize::numeric-3-box",
+    "text": "Numeric 3 Box"
+  },
+  {
+    "id": "materialize::numeric-3-box-multiple-outline",
+    "text": "Numeric 3 Box Multiple Outline"
+  },
+  {
+    "id": "materialize::numeric-3-box-outline",
+    "text": "Numeric 3 Box Outline"
+  },
+  {
+    "id": "materialize::numeric-4-box",
+    "text": "Numeric 4 Box"
+  },
+  {
+    "id": "materialize::numeric-4-box-multiple-outline",
+    "text": "Numeric 4 Box Multiple Outline"
+  },
+  {
+    "id": "materialize::numeric-4-box-outline",
+    "text": "Numeric 4 Box Outline"
+  },
+  {
+    "id": "materialize::numeric-5-box",
+    "text": "Numeric 5 Box"
+  },
+  {
+    "id": "materialize::numeric-5-box-multiple-outline",
+    "text": "Numeric 5 Box Multiple Outline"
+  },
+  {
+    "id": "materialize::numeric-5-box-outline",
+    "text": "Numeric 5 Box Outline"
+  },
+  {
+    "id": "materialize::numeric-6-box",
+    "text": "Numeric 6 Box"
+  },
+  {
+    "id": "materialize::numeric-6-box-multiple-outline",
+    "text": "Numeric 6 Box Multiple Outline"
+  },
+  {
+    "id": "materialize::numeric-6-box-outline",
+    "text": "Numeric 6 Box Outline"
+  },
+  {
+    "id": "materialize::numeric-7-box",
+    "text": "Numeric 7 Box"
+  },
+  {
+    "id": "materialize::numeric-7-box-multiple-outline",
+    "text": "Numeric 7 Box Multiple Outline"
+  },
+  {
+    "id": "materialize::numeric-7-box-outline",
+    "text": "Numeric 7 Box Outline"
+  },
+  {
+    "id": "materialize::numeric-8-box",
+    "text": "Numeric 8 Box"
+  },
+  {
+    "id": "materialize::numeric-8-box-multiple-outline",
+    "text": "Numeric 8 Box Multiple Outline"
+  },
+  {
+    "id": "materialize::numeric-8-box-outline",
+    "text": "Numeric 8 Box Outline"
+  },
+  {
+    "id": "materialize::numeric-9-box",
+    "text": "Numeric 9 Box"
+  },
+  {
+    "id": "materialize::numeric-9-box-multiple-outline",
+    "text": "Numeric 9 Box Multiple Outline"
+  },
+  {
+    "id": "materialize::numeric-9-box-outline",
+    "text": "Numeric 9 Box Outline"
+  },
+  {
+    "id": "materialize::numeric-9-plus-box",
+    "text": "Numeric 9 Plus Box"
+  },
+  {
+    "id": "materialize::numeric-9-plus-box-multiple-outline",
+    "text": "Numeric 9 Plus Box Multiple Outline"
+  },
+  {
+    "id": "materialize::numeric-9-plus-box-outline",
+    "text": "Numeric 9 Plus Box Outline"
+  },
+  {
+    "id": "materialize::nut",
+    "text": "Nut"
+  },
+  {
+    "id": "materialize::nutrition",
+    "text": "Nutrition"
+  },
+  {
+    "id": "materialize::oar",
+    "text": "Oar"
+  },
+  {
+    "id": "materialize::octagon",
+    "text": "Octagon"
+  },
+  {
+    "id": "materialize::octagon-outline",
+    "text": "Octagon Outline"
+  },
+  {
+    "id": "materialize::octagram",
+    "text": "Octagram"
+  },
+  {
+    "id": "materialize::odnoklassniki",
+    "text": "Odnoklassniki"
+  },
+  {
+    "id": "materialize::office",
+    "text": "Office"
+  },
+  {
+    "id": "materialize::oil",
+    "text": "Oil"
+  },
+  {
+    "id": "materialize::oil-temperature",
+    "text": "Oil Temperature"
+  },
+  {
+    "id": "materialize::omega",
+    "text": "Omega"
+  },
+  {
+    "id": "materialize::onedrive",
+    "text": "Onedrive"
+  },
+  {
+    "id": "materialize::opacity",
+    "text": "Opacity"
+  },
+  {
+    "id": "materialize::open-in-app",
+    "text": "Open In App"
+  },
+  {
+    "id": "materialize::open-in-new",
+    "text": "Open In New"
+  },
+  {
+    "id": "materialize::openid",
+    "text": "Openid"
+  },
+  {
+    "id": "materialize::opera",
+    "text": "Opera"
+  },
+  {
+    "id": "materialize::ornament",
+    "text": "Ornament"
+  },
+  {
+    "id": "materialize::ornament-variant",
+    "text": "Ornament Variant"
+  },
+  {
+    "id": "materialize::owl",
+    "text": "Owl"
+  },
+  {
+    "id": "materialize::package",
+    "text": "Package"
+  },
+  {
+    "id": "materialize::package-down",
+    "text": "Package Down"
+  },
+  {
+    "id": "materialize::package-up",
+    "text": "Package Up"
+  },
+  {
+    "id": "materialize::package-variant",
+    "text": "Package Variant"
+  },
+  {
+    "id": "materialize::package-variant-closed",
+    "text": "Package Variant Closed"
+  },
+  {
+    "id": "materialize::page-first",
+    "text": "Page First"
+  },
+  {
+    "id": "materialize::page-last",
+    "text": "Page Last"
+  },
+  {
+    "id": "materialize::page-layout-body",
+    "text": "Page Layout Body"
+  },
+  {
+    "id": "materialize::page-layout-footer",
+    "text": "Page Layout Footer"
+  },
+  {
+    "id": "materialize::page-layout-header",
+    "text": "Page Layout Header"
+  },
+  {
+    "id": "materialize::page-layout-sidebar-left",
+    "text": "Page Layout Sidebar Left"
+  },
+  {
+    "id": "materialize::page-layout-sidebar-right",
+    "text": "Page Layout Sidebar Right"
+  },
+  {
+    "id": "materialize::palette",
+    "text": "Palette"
+  },
+  {
+    "id": "materialize::palette-advanced",
+    "text": "Palette Advanced"
+  },
+  {
+    "id": "materialize::panda",
+    "text": "Panda"
+  },
+  {
+    "id": "materialize::pandora",
+    "text": "Pandora"
+  },
+  {
+    "id": "materialize::panorama",
+    "text": "Panorama"
+  },
+  {
+    "id": "materialize::panorama-fisheye",
+    "text": "Panorama Fisheye"
+  },
+  {
+    "id": "materialize::panorama-horizontal",
+    "text": "Panorama Horizontal"
+  },
+  {
+    "id": "materialize::panorama-vertical",
+    "text": "Panorama Vertical"
+  },
+  {
+    "id": "materialize::panorama-wide-angle",
+    "text": "Panorama Wide Angle"
+  },
+  {
+    "id": "materialize::paper-cut-vertical",
+    "text": "Paper Cut Vertical"
+  },
+  {
+    "id": "materialize::paperclip",
+    "text": "Paperclip"
+  },
+  {
+    "id": "materialize::parking",
+    "text": "Parking"
+  },
+  {
+    "id": "materialize::pause",
+    "text": "Pause"
+  },
+  {
+    "id": "materialize::pause-circle",
+    "text": "Pause Circle"
+  },
+  {
+    "id": "materialize::pause-circle-outline",
+    "text": "Pause Circle Outline"
+  },
+  {
+    "id": "materialize::pause-octagon",
+    "text": "Pause Octagon"
+  },
+  {
+    "id": "materialize::pause-octagon-outline",
+    "text": "Pause Octagon Outline"
+  },
+  {
+    "id": "materialize::paw",
+    "text": "Paw"
+  },
+  {
+    "id": "materialize::paw-off",
+    "text": "Paw Off"
+  },
+  {
+    "id": "materialize::pen",
+    "text": "Pen"
+  },
+  {
+    "id": "materialize::pencil",
+    "text": "Pencil"
+  },
+  {
+    "id": "materialize::pencil-box",
+    "text": "Pencil Box"
+  },
+  {
+    "id": "materialize::pencil-box-outline",
+    "text": "Pencil Box Outline"
+  },
+  {
+    "id": "materialize::pencil-circle",
+    "text": "Pencil Circle"
+  },
+  {
+    "id": "materialize::pencil-lock",
+    "text": "Pencil Lock"
+  },
+  {
+    "id": "materialize::pencil-off",
+    "text": "Pencil Off"
+  },
+  {
+    "id": "materialize::pentagon",
+    "text": "Pentagon"
+  },
+  {
+    "id": "materialize::pentagon-outline",
+    "text": "Pentagon Outline"
+  },
+  {
+    "id": "materialize::percent",
+    "text": "Percent"
+  },
+  {
+    "id": "materialize::pharmacy",
+    "text": "Pharmacy"
+  },
+  {
+    "id": "materialize::phone",
+    "text": "Phone"
+  },
+  {
+    "id": "materialize::phone-bluetooth",
+    "text": "Phone Bluetooth"
+  },
+  {
+    "id": "materialize::phone-classic",
+    "text": "Phone Classic"
+  },
+  {
+    "id": "materialize::phone-forward",
+    "text": "Phone Forward"
+  },
+  {
+    "id": "materialize::phone-hangup",
+    "text": "Phone Hangup"
+  },
+  {
+    "id": "materialize::phone-in-talk",
+    "text": "Phone In Talk"
+  },
+  {
+    "id": "materialize::phone-incoming",
+    "text": "Phone Incoming"
+  },
+  {
+    "id": "materialize::phone-locked",
+    "text": "Phone Locked"
+  },
+  {
+    "id": "materialize::phone-log",
+    "text": "Phone Log"
+  },
+  {
+    "id": "materialize::phone-minus",
+    "text": "Phone Minus"
+  },
+  {
+    "id": "materialize::phone-missed",
+    "text": "Phone Missed"
+  },
+  {
+    "id": "materialize::phone-outgoing",
+    "text": "Phone Outgoing"
+  },
+  {
+    "id": "materialize::phone-paused",
+    "text": "Phone Paused"
+  },
+  {
+    "id": "materialize::phone-plus",
+    "text": "Phone Plus"
+  },
+  {
+    "id": "materialize::phone-settings",
+    "text": "Phone Settings"
+  },
+  {
+    "id": "materialize::phone-voip",
+    "text": "Phone Voip"
+  },
+  {
+    "id": "materialize::pi",
+    "text": "Pi"
+  },
+  {
+    "id": "materialize::pi-box",
+    "text": "Pi Box"
+  },
+  {
+    "id": "materialize::piano",
+    "text": "Piano"
+  },
+  {
+    "id": "materialize::pig",
+    "text": "Pig"
+  },
+  {
+    "id": "materialize::pill",
+    "text": "Pill"
+  },
+  {
+    "id": "materialize::pillar",
+    "text": "Pillar"
+  },
+  {
+    "id": "materialize::pin",
+    "text": "Pin"
+  },
+  {
+    "id": "materialize::pin-off",
+    "text": "Pin Off"
+  },
+  {
+    "id": "materialize::pine-tree",
+    "text": "Pine Tree"
+  },
+  {
+    "id": "materialize::pine-tree-box",
+    "text": "Pine Tree Box"
+  },
+  {
+    "id": "materialize::pinterest",
+    "text": "Pinterest"
+  },
+  {
+    "id": "materialize::pinterest-box",
+    "text": "Pinterest Box"
+  },
+  {
+    "id": "materialize::pistol",
+    "text": "Pistol"
+  },
+  {
+    "id": "materialize::pizza",
+    "text": "Pizza"
+  },
+  {
+    "id": "materialize::plane-shield",
+    "text": "Plane Shield"
+  },
+  {
+    "id": "materialize::play",
+    "text": "Play"
+  },
+  {
+    "id": "materialize::play-box-outline",
+    "text": "Play Box Outline"
+  },
+  {
+    "id": "materialize::play-circle",
+    "text": "Play Circle"
+  },
+  {
+    "id": "materialize::play-circle-outline",
+    "text": "Play Circle Outline"
+  },
+  {
+    "id": "materialize::play-pause",
+    "text": "Play Pause"
+  },
+  {
+    "id": "materialize::play-protected-content",
+    "text": "Play Protected Content"
+  },
+  {
+    "id": "materialize::playlist-check",
+    "text": "Playlist Check"
+  },
+  {
+    "id": "materialize::playlist-minus",
+    "text": "Playlist Minus"
+  },
+  {
+    "id": "materialize::playlist-play",
+    "text": "Playlist Play"
+  },
+  {
+    "id": "materialize::playlist-plus",
+    "text": "Playlist Plus"
+  },
+  {
+    "id": "materialize::playlist-remove",
+    "text": "Playlist Remove"
+  },
+  {
+    "id": "materialize::playstation",
+    "text": "Playstation"
+  },
+  {
+    "id": "materialize::plex",
+    "text": "Plex"
+  },
+  {
+    "id": "materialize::plus",
+    "text": "Plus"
+  },
+  {
+    "id": "materialize::plus-box",
+    "text": "Plus Box"
+  },
+  {
+    "id": "materialize::plus-box-outline",
+    "text": "Plus Box Outline"
+  },
+  {
+    "id": "materialize::plus-circle",
+    "text": "Plus Circle"
+  },
+  {
+    "id": "materialize::plus-circle-multiple-outline",
+    "text": "Plus Circle Multiple Outline"
+  },
+  {
+    "id": "materialize::plus-circle-outline",
+    "text": "Plus Circle Outline"
+  },
+  {
+    "id": "materialize::plus-network",
+    "text": "Plus Network"
+  },
+  {
+    "id": "materialize::plus-one",
+    "text": "Plus One"
+  },
+  {
+    "id": "materialize::plus-outline",
+    "text": "Plus Outline"
+  },
+  {
+    "id": "materialize::pocket",
+    "text": "Pocket"
+  },
+  {
+    "id": "materialize::pokeball",
+    "text": "Pokeball"
+  },
+  {
+    "id": "materialize::polaroid",
+    "text": "Polaroid"
+  },
+  {
+    "id": "materialize::poll",
+    "text": "Poll"
+  },
+  {
+    "id": "materialize::poll-box",
+    "text": "Poll Box"
+  },
+  {
+    "id": "materialize::polymer",
+    "text": "Polymer"
+  },
+  {
+    "id": "materialize::pool",
+    "text": "Pool"
+  },
+  {
+    "id": "materialize::popcorn",
+    "text": "Popcorn"
+  },
+  {
+    "id": "materialize::pot",
+    "text": "Pot"
+  },
+  {
+    "id": "materialize::pot-mix",
+    "text": "Pot Mix"
+  },
+  {
+    "id": "materialize::pound",
+    "text": "Pound"
+  },
+  {
+    "id": "materialize::pound-box",
+    "text": "Pound Box"
+  },
+  {
+    "id": "materialize::power",
+    "text": "Power"
+  },
+  {
+    "id": "materialize::power-plug",
+    "text": "Power Plug"
+  },
+  {
+    "id": "materialize::power-plug-off",
+    "text": "Power Plug Off"
+  },
+  {
+    "id": "materialize::power-settings",
+    "text": "Power Settings"
+  },
+  {
+    "id": "materialize::power-socket",
+    "text": "Power Socket"
+  },
+  {
+    "id": "materialize::prescription",
+    "text": "Prescription"
+  },
+  {
+    "id": "materialize::presentation",
+    "text": "Presentation"
+  },
+  {
+    "id": "materialize::presentation-play",
+    "text": "Presentation Play"
+  },
+  {
+    "id": "materialize::printer",
+    "text": "Printer"
+  },
+  {
+    "id": "materialize::printer-3d",
+    "text": "Printer 3d"
+  },
+  {
+    "id": "materialize::printer-alert",
+    "text": "Printer Alert"
+  },
+  {
+    "id": "materialize::printer-settings",
+    "text": "Printer Settings"
+  },
+  {
+    "id": "materialize::priority-high",
+    "text": "Priority High"
+  },
+  {
+    "id": "materialize::priority-low",
+    "text": "Priority Low"
+  },
+  {
+    "id": "materialize::professional-hexagon",
+    "text": "Professional Hexagon"
+  },
+  {
+    "id": "materialize::projector",
+    "text": "Projector"
+  },
+  {
+    "id": "materialize::projector-screen",
+    "text": "Projector Screen"
+  },
+  {
+    "id": "materialize::publish",
+    "text": "Publish"
+  },
+  {
+    "id": "materialize::pulse",
+    "text": "Pulse"
+  },
+  {
+    "id": "materialize::puzzle",
+    "text": "Puzzle"
+  },
+  {
+    "id": "materialize::qqchat",
+    "text": "Qqchat"
+  },
+  {
+    "id": "materialize::qrcode",
+    "text": "Qrcode"
+  },
+  {
+    "id": "materialize::qrcode-scan",
+    "text": "Qrcode Scan"
+  },
+  {
+    "id": "materialize::quadcopter",
+    "text": "Quadcopter"
+  },
+  {
+    "id": "materialize::quality-high",
+    "text": "Quality High"
+  },
+  {
+    "id": "materialize::quicktime",
+    "text": "Quicktime"
+  },
+  {
+    "id": "materialize::radar",
+    "text": "Radar"
+  },
+  {
+    "id": "materialize::radiator",
+    "text": "Radiator"
+  },
+  {
+    "id": "materialize::radio",
+    "text": "Radio"
+  },
+  {
+    "id": "materialize::radio-handheld",
+    "text": "Radio Handheld"
+  },
+  {
+    "id": "materialize::radio-tower",
+    "text": "Radio Tower"
+  },
+  {
+    "id": "materialize::radioactive",
+    "text": "Radioactive"
+  },
+  {
+    "id": "materialize::radiobox-blank",
+    "text": "Radiobox Blank"
+  },
+  {
+    "id": "materialize::radiobox-marked",
+    "text": "Radiobox Marked"
+  },
+  {
+    "id": "materialize::raspberrypi",
+    "text": "Raspberrypi"
+  },
+  {
+    "id": "materialize::ray-end",
+    "text": "Ray End"
+  },
+  {
+    "id": "materialize::ray-end-arrow",
+    "text": "Ray End Arrow"
+  },
+  {
+    "id": "materialize::ray-start",
+    "text": "Ray Start"
+  },
+  {
+    "id": "materialize::ray-start-arrow",
+    "text": "Ray Start Arrow"
+  },
+  {
+    "id": "materialize::ray-start-end",
+    "text": "Ray Start End"
+  },
+  {
+    "id": "materialize::ray-vertex",
+    "text": "Ray Vertex"
+  },
+  {
+    "id": "materialize::rdio",
+    "text": "Rdio"
+  },
+  {
+    "id": "materialize::react",
+    "text": "React"
+  },
+  {
+    "id": "materialize::read",
+    "text": "Read"
+  },
+  {
+    "id": "materialize::readability",
+    "text": "Readability"
+  },
+  {
+    "id": "materialize::receipt",
+    "text": "Receipt"
+  },
+  {
+    "id": "materialize::record",
+    "text": "Record"
+  },
+  {
+    "id": "materialize::record-rec",
+    "text": "Record Rec"
+  },
+  {
+    "id": "materialize::recycle",
+    "text": "Recycle"
+  },
+  {
+    "id": "materialize::reddit",
+    "text": "Reddit"
+  },
+  {
+    "id": "materialize::redo",
+    "text": "Redo"
+  },
+  {
+    "id": "materialize::redo-variant",
+    "text": "Redo Variant"
+  },
+  {
+    "id": "materialize::refresh",
+    "text": "Refresh"
+  },
+  {
+    "id": "materialize::regex",
+    "text": "Regex"
+  },
+  {
+    "id": "materialize::relative-scale",
+    "text": "Relative Scale"
+  },
+  {
+    "id": "materialize::reload",
+    "text": "Reload"
+  },
+  {
+    "id": "materialize::remote",
+    "text": "Remote"
+  },
+  {
+    "id": "materialize::rename-box",
+    "text": "Rename Box"
+  },
+  {
+    "id": "materialize::reorder-horizontal",
+    "text": "Reorder Horizontal"
+  },
+  {
+    "id": "materialize::reorder-vertical",
+    "text": "Reorder Vertical"
+  },
+  {
+    "id": "materialize::repeat",
+    "text": "Repeat"
+  },
+  {
+    "id": "materialize::repeat-off",
+    "text": "Repeat Off"
+  },
+  {
+    "id": "materialize::repeat-once",
+    "text": "Repeat Once"
+  },
+  {
+    "id": "materialize::replay",
+    "text": "Replay"
+  },
+  {
+    "id": "materialize::reply",
+    "text": "Reply"
+  },
+  {
+    "id": "materialize::reply-all",
+    "text": "Reply All"
+  },
+  {
+    "id": "materialize::reproduction",
+    "text": "Reproduction"
+  },
+  {
+    "id": "materialize::resize-bottom-right",
+    "text": "Resize Bottom Right"
+  },
+  {
+    "id": "materialize::responsive",
+    "text": "Responsive"
+  },
+  {
+    "id": "materialize::restart",
+    "text": "Restart"
+  },
+  {
+    "id": "materialize::restore",
+    "text": "Restore"
+  },
+  {
+    "id": "materialize::rewind",
+    "text": "Rewind"
+  },
+  {
+    "id": "materialize::rewind-outline",
+    "text": "Rewind Outline"
+  },
+  {
+    "id": "materialize::rhombus",
+    "text": "Rhombus"
+  },
+  {
+    "id": "materialize::rhombus-outline",
+    "text": "Rhombus Outline"
+  },
+  {
+    "id": "materialize::ribbon",
+    "text": "Ribbon"
+  },
+  {
+    "id": "materialize::road",
+    "text": "Road"
+  },
+  {
+    "id": "materialize::road-variant",
+    "text": "Road Variant"
+  },
+  {
+    "id": "materialize::robot",
+    "text": "Robot"
+  },
+  {
+    "id": "materialize::rocket",
+    "text": "Rocket"
+  },
+  {
+    "id": "materialize::roomba",
+    "text": "Roomba"
+  },
+  {
+    "id": "materialize::rotate-3d",
+    "text": "Rotate 3d"
+  },
+  {
+    "id": "materialize::rotate-left",
+    "text": "Rotate Left"
+  },
+  {
+    "id": "materialize::rotate-left-variant",
+    "text": "Rotate Left Variant"
+  },
+  {
+    "id": "materialize::rotate-right",
+    "text": "Rotate Right"
+  },
+  {
+    "id": "materialize::rotate-right-variant",
+    "text": "Rotate Right Variant"
+  },
+  {
+    "id": "materialize::rounded-corner",
+    "text": "Rounded Corner"
+  },
+  {
+    "id": "materialize::router-wireless",
+    "text": "Router Wireless"
+  },
+  {
+    "id": "materialize::routes",
+    "text": "Routes"
+  },
+  {
+    "id": "materialize::rowing",
+    "text": "Rowing"
+  },
+  {
+    "id": "materialize::rss",
+    "text": "Rss"
+  },
+  {
+    "id": "materialize::rss-box",
+    "text": "Rss Box"
+  },
+  {
+    "id": "materialize::ruler",
+    "text": "Ruler"
+  },
+  {
+    "id": "materialize::run",
+    "text": "Run"
+  },
+  {
+    "id": "materialize::run-fast",
+    "text": "Run Fast"
+  },
+  {
+    "id": "materialize::sale",
+    "text": "Sale"
+  },
+  {
+    "id": "materialize::satellite",
+    "text": "Satellite"
+  },
+  {
+    "id": "materialize::satellite-variant",
+    "text": "Satellite Variant"
+  },
+  {
+    "id": "materialize::saxophone",
+    "text": "Saxophone"
+  },
+  {
+    "id": "materialize::scale",
+    "text": "Scale"
+  },
+  {
+    "id": "materialize::scale-balance",
+    "text": "Scale Balance"
+  },
+  {
+    "id": "materialize::scale-bathroom",
+    "text": "Scale Bathroom"
+  },
+  {
+    "id": "materialize::scanner",
+    "text": "Scanner"
+  },
+  {
+    "id": "materialize::school",
+    "text": "School"
+  },
+  {
+    "id": "materialize::screen-rotation",
+    "text": "Screen Rotation"
+  },
+  {
+    "id": "materialize::screen-rotation-lock",
+    "text": "Screen Rotation Lock"
+  },
+  {
+    "id": "materialize::screwdriver",
+    "text": "Screwdriver"
+  },
+  {
+    "id": "materialize::script",
+    "text": "Script"
+  },
+  {
+    "id": "materialize::sd",
+    "text": "Sd"
+  },
+  {
+    "id": "materialize::seal",
+    "text": "Seal"
+  },
+  {
+    "id": "materialize::search-web",
+    "text": "Search Web"
+  },
+  {
+    "id": "materialize::seat-flat",
+    "text": "Seat Flat"
+  },
+  {
+    "id": "materialize::seat-flat-angled",
+    "text": "Seat Flat Angled"
+  },
+  {
+    "id": "materialize::seat-individual-suite",
+    "text": "Seat Individual Suite"
+  },
+  {
+    "id": "materialize::seat-legroom-extra",
+    "text": "Seat Legroom Extra"
+  },
+  {
+    "id": "materialize::seat-legroom-normal",
+    "text": "Seat Legroom Normal"
+  },
+  {
+    "id": "materialize::seat-legroom-reduced",
+    "text": "Seat Legroom Reduced"
+  },
+  {
+    "id": "materialize::seat-recline-extra",
+    "text": "Seat Recline Extra"
+  },
+  {
+    "id": "materialize::seat-recline-normal",
+    "text": "Seat Recline Normal"
+  },
+  {
+    "id": "materialize::security",
+    "text": "Security"
+  },
+  {
+    "id": "materialize::security-home",
+    "text": "Security Home"
+  },
+  {
+    "id": "materialize::security-network",
+    "text": "Security Network"
+  },
+  {
+    "id": "materialize::select",
+    "text": "Select"
+  },
+  {
+    "id": "materialize::select-all",
+    "text": "Select All"
+  },
+  {
+    "id": "materialize::select-inverse",
+    "text": "Select Inverse"
+  },
+  {
+    "id": "materialize::select-off",
+    "text": "Select Off"
+  },
+  {
+    "id": "materialize::selection",
+    "text": "Selection"
+  },
+  {
+    "id": "materialize::send",
+    "text": "Send"
+  },
+  {
+    "id": "materialize::serial-port",
+    "text": "Serial Port"
+  },
+  {
+    "id": "materialize::server",
+    "text": "Server"
+  },
+  {
+    "id": "materialize::server-minus",
+    "text": "Server Minus"
+  },
+  {
+    "id": "materialize::server-network",
+    "text": "Server Network"
+  },
+  {
+    "id": "materialize::server-network-off",
+    "text": "Server Network Off"
+  },
+  {
+    "id": "materialize::server-off",
+    "text": "Server Off"
+  },
+  {
+    "id": "materialize::server-plus",
+    "text": "Server Plus"
+  },
+  {
+    "id": "materialize::server-remove",
+    "text": "Server Remove"
+  },
+  {
+    "id": "materialize::server-security",
+    "text": "Server Security"
+  },
+  {
+    "id": "materialize::settings",
+    "text": "Settings"
+  },
+  {
+    "id": "materialize::settings-box",
+    "text": "Settings Box"
+  },
+  {
+    "id": "materialize::shape-circle-plus",
+    "text": "Shape Circle Plus"
+  },
+  {
+    "id": "materialize::shape-plus",
+    "text": "Shape Plus"
+  },
+  {
+    "id": "materialize::shape-polygon-plus",
+    "text": "Shape Polygon Plus"
+  },
+  {
+    "id": "materialize::shape-rectangle-plus",
+    "text": "Shape Rectangle Plus"
+  },
+  {
+    "id": "materialize::shape-square-plus",
+    "text": "Shape Square Plus"
+  },
+  {
+    "id": "materialize::share",
+    "text": "Share"
+  },
+  {
+    "id": "materialize::share-variant",
+    "text": "Share Variant"
+  },
+  {
+    "id": "materialize::shield",
+    "text": "Shield"
+  },
+  {
+    "id": "materialize::shield-outline",
+    "text": "Shield Outline"
+  },
+  {
+    "id": "materialize::shopping",
+    "text": "Shopping"
+  },
+  {
+    "id": "materialize::shopping-music",
+    "text": "Shopping Music"
+  },
+  {
+    "id": "materialize::shovel",
+    "text": "Shovel"
+  },
+  {
+    "id": "materialize::shovel-off",
+    "text": "Shovel Off"
+  },
+  {
+    "id": "materialize::shredder",
+    "text": "Shredder"
+  },
+  {
+    "id": "materialize::shuffle",
+    "text": "Shuffle"
+  },
+  {
+    "id": "materialize::shuffle-disabled",
+    "text": "Shuffle Disabled"
+  },
+  {
+    "id": "materialize::shuffle-variant",
+    "text": "Shuffle Variant"
+  },
+  {
+    "id": "materialize::sigma",
+    "text": "Sigma"
+  },
+  {
+    "id": "materialize::sigma-lower",
+    "text": "Sigma Lower"
+  },
+  {
+    "id": "materialize::sign-caution",
+    "text": "Sign Caution"
+  },
+  {
+    "id": "materialize::signal",
+    "text": "Signal"
+  },
+  {
+    "id": "materialize::signal-2g",
+    "text": "Signal 2g"
+  },
+  {
+    "id": "materialize::signal-3g",
+    "text": "Signal 3g"
+  },
+  {
+    "id": "materialize::signal-4g",
+    "text": "Signal 4g"
+  },
+  {
+    "id": "materialize::signal-hspa",
+    "text": "Signal Hspa"
+  },
+  {
+    "id": "materialize::signal-hspa-plus",
+    "text": "Signal Hspa Plus"
+  },
+  {
+    "id": "materialize::signal-variant",
+    "text": "Signal Variant"
+  },
+  {
+    "id": "materialize::silverware",
+    "text": "Silverware"
+  },
+  {
+    "id": "materialize::silverware-fork",
+    "text": "Silverware Fork"
+  },
+  {
+    "id": "materialize::silverware-spoon",
+    "text": "Silverware Spoon"
+  },
+  {
+    "id": "materialize::silverware-variant",
+    "text": "Silverware Variant"
+  },
+  {
+    "id": "materialize::sim",
+    "text": "Sim"
+  },
+  {
+    "id": "materialize::sim-alert",
+    "text": "Sim Alert"
+  },
+  {
+    "id": "materialize::sim-off",
+    "text": "Sim Off"
+  },
+  {
+    "id": "materialize::sitemap",
+    "text": "Sitemap"
+  },
+  {
+    "id": "materialize::skip-backward",
+    "text": "Skip Backward"
+  },
+  {
+    "id": "materialize::skip-forward",
+    "text": "Skip Forward"
+  },
+  {
+    "id": "materialize::skip-next",
+    "text": "Skip Next"
+  },
+  {
+    "id": "materialize::skip-next-circle",
+    "text": "Skip Next Circle"
+  },
+  {
+    "id": "materialize::skip-next-circle-outline",
+    "text": "Skip Next Circle Outline"
+  },
+  {
+    "id": "materialize::skip-previous",
+    "text": "Skip Previous"
+  },
+  {
+    "id": "materialize::skip-previous-circle",
+    "text": "Skip Previous Circle"
+  },
+  {
+    "id": "materialize::skip-previous-circle-outline",
+    "text": "Skip Previous Circle Outline"
+  },
+  {
+    "id": "materialize::skull",
+    "text": "Skull"
+  },
+  {
+    "id": "materialize::skype",
+    "text": "Skype"
+  },
+  {
+    "id": "materialize::skype-business",
+    "text": "Skype Business"
+  },
+  {
+    "id": "materialize::slack",
+    "text": "Slack"
+  },
+  {
+    "id": "materialize::sleep",
+    "text": "Sleep"
+  },
+  {
+    "id": "materialize::sleep-off",
+    "text": "Sleep Off"
+  },
+  {
+    "id": "materialize::smoking",
+    "text": "Smoking"
+  },
+  {
+    "id": "materialize::smoking-off",
+    "text": "Smoking Off"
+  },
+  {
+    "id": "materialize::snapchat",
+    "text": "Snapchat"
+  },
+  {
+    "id": "materialize::snowflake",
+    "text": "Snowflake"
+  },
+  {
+    "id": "materialize::snowman",
+    "text": "Snowman"
+  },
+  {
+    "id": "materialize::soccer",
+    "text": "Soccer"
+  },
+  {
+    "id": "materialize::sofa",
+    "text": "Sofa"
+  },
+  {
+    "id": "materialize::solid",
+    "text": "Solid"
+  },
+  {
+    "id": "materialize::sort",
+    "text": "Sort"
+  },
+  {
+    "id": "materialize::sort-alphabetical",
+    "text": "Sort Alphabetical"
+  },
+  {
+    "id": "materialize::sort-ascending",
+    "text": "Sort Ascending"
+  },
+  {
+    "id": "materialize::sort-descending",
+    "text": "Sort Descending"
+  },
+  {
+    "id": "materialize::sort-numeric",
+    "text": "Sort Numeric"
+  },
+  {
+    "id": "materialize::sort-variant",
+    "text": "Sort Variant"
+  },
+  {
+    "id": "materialize::soundcloud",
+    "text": "Soundcloud"
+  },
+  {
+    "id": "materialize::source-branch",
+    "text": "Source Branch"
+  },
+  {
+    "id": "materialize::source-commit",
+    "text": "Source Commit"
+  },
+  {
+    "id": "materialize::source-commit-end",
+    "text": "Source Commit End"
+  },
+  {
+    "id": "materialize::source-commit-end-local",
+    "text": "Source Commit End Local"
+  },
+  {
+    "id": "materialize::source-commit-local",
+    "text": "Source Commit Local"
+  },
+  {
+    "id": "materialize::source-commit-next-local",
+    "text": "Source Commit Next Local"
+  },
+  {
+    "id": "materialize::source-commit-start",
+    "text": "Source Commit Start"
+  },
+  {
+    "id": "materialize::source-commit-start-next-local",
+    "text": "Source Commit Start Next Local"
+  },
+  {
+    "id": "materialize::source-fork",
+    "text": "Source Fork"
+  },
+  {
+    "id": "materialize::source-merge",
+    "text": "Source Merge"
+  },
+  {
+    "id": "materialize::source-pull",
+    "text": "Source Pull"
+  },
+  {
+    "id": "materialize::speaker",
+    "text": "Speaker"
+  },
+  {
+    "id": "materialize::speaker-off",
+    "text": "Speaker Off"
+  },
+  {
+    "id": "materialize::speaker-wireless",
+    "text": "Speaker Wireless"
+  },
+  {
+    "id": "materialize::speedometer",
+    "text": "Speedometer"
+  },
+  {
+    "id": "materialize::spellcheck",
+    "text": "Spellcheck"
+  },
+  {
+    "id": "materialize::spotify",
+    "text": "Spotify"
+  },
+  {
+    "id": "materialize::spotlight",
+    "text": "Spotlight"
+  },
+  {
+    "id": "materialize::spotlight-beam",
+    "text": "Spotlight Beam"
+  },
+  {
+    "id": "materialize::spray",
+    "text": "Spray"
+  },
+  {
+    "id": "materialize::square-inc",
+    "text": "Square Inc"
+  },
+  {
+    "id": "materialize::square-inc-cash",
+    "text": "Square Inc Cash"
+  },
+  {
+    "id": "materialize::stackexchange",
+    "text": "Stackexchange"
+  },
+  {
+    "id": "materialize::stackoverflow",
+    "text": "Stackoverflow"
+  },
+  {
+    "id": "materialize::stadium",
+    "text": "Stadium"
+  },
+  {
+    "id": "materialize::stairs",
+    "text": "Stairs"
+  },
+  {
+    "id": "materialize::star",
+    "text": "Star"
+  },
+  {
+    "id": "materialize::star-circle",
+    "text": "Star Circle"
+  },
+  {
+    "id": "materialize::star-half",
+    "text": "Star Half"
+  },
+  {
+    "id": "materialize::star-off",
+    "text": "Star Off"
+  },
+  {
+    "id": "materialize::star-outline",
+    "text": "Star Outline"
+  },
+  {
+    "id": "materialize::steam",
+    "text": "Steam"
+  },
+  {
+    "id": "materialize::steering",
+    "text": "Steering"
+  },
+  {
+    "id": "materialize::step-backward",
+    "text": "Step Backward"
+  },
+  {
+    "id": "materialize::step-backward-2",
+    "text": "Step Backward 2"
+  },
+  {
+    "id": "materialize::step-forward",
+    "text": "Step Forward"
+  },
+  {
+    "id": "materialize::step-forward-2",
+    "text": "Step Forward 2"
+  },
+  {
+    "id": "materialize::stethoscope",
+    "text": "Stethoscope"
+  },
+  {
+    "id": "materialize::sticker",
+    "text": "Sticker"
+  },
+  {
+    "id": "materialize::stocking",
+    "text": "Stocking"
+  },
+  {
+    "id": "materialize::stop",
+    "text": "Stop"
+  },
+  {
+    "id": "materialize::stop-circle",
+    "text": "Stop Circle"
+  },
+  {
+    "id": "materialize::stop-circle-outline",
+    "text": "Stop Circle Outline"
+  },
+  {
+    "id": "materialize::store",
+    "text": "Store"
+  },
+  {
+    "id": "materialize::store-24-hour",
+    "text": "Store 24 Hour"
+  },
+  {
+    "id": "materialize::stove",
+    "text": "Stove"
+  },
+  {
+    "id": "materialize::subdirectory-arrow-left",
+    "text": "Subdirectory Arrow Left"
+  },
+  {
+    "id": "materialize::subdirectory-arrow-right",
+    "text": "Subdirectory Arrow Right"
+  },
+  {
+    "id": "materialize::subway",
+    "text": "Subway"
+  },
+  {
+    "id": "materialize::subway-variant",
+    "text": "Subway Variant"
+  },
+  {
+    "id": "materialize::sunglasses",
+    "text": "Sunglasses"
+  },
+  {
+    "id": "materialize::surround-sound",
+    "text": "Surround Sound"
+  },
+  {
+    "id": "materialize::svg",
+    "text": "Svg"
+  },
+  {
+    "id": "materialize::swap-horizontal",
+    "text": "Swap Horizontal"
+  },
+  {
+    "id": "materialize::swap-vertical",
+    "text": "Swap Vertical"
+  },
+  {
+    "id": "materialize::swim",
+    "text": "Swim"
+  },
+  {
+    "id": "materialize::switch",
+    "text": "Switch"
+  },
+  {
+    "id": "materialize::sword",
+    "text": "Sword"
+  },
+  {
+    "id": "materialize::sync",
+    "text": "Sync"
+  },
+  {
+    "id": "materialize::sync-alert",
+    "text": "Sync Alert"
+  },
+  {
+    "id": "materialize::sync-off",
+    "text": "Sync Off"
+  },
+  {
+    "id": "materialize::tab",
+    "text": "Tab"
+  },
+  {
+    "id": "materialize::tab-unselected",
+    "text": "Tab Unselected"
+  },
+  {
+    "id": "materialize::table",
+    "text": "Table"
+  },
+  {
+    "id": "materialize::table-column-plus-after",
+    "text": "Table Column Plus After"
+  },
+  {
+    "id": "materialize::table-column-plus-before",
+    "text": "Table Column Plus Before"
+  },
+  {
+    "id": "materialize::table-column-remove",
+    "text": "Table Column Remove"
+  },
+  {
+    "id": "materialize::table-column-width",
+    "text": "Table Column Width"
+  },
+  {
+    "id": "materialize::table-edit",
+    "text": "Table Edit"
+  },
+  {
+    "id": "materialize::table-large",
+    "text": "Table Large"
+  },
+  {
+    "id": "materialize::table-row-height",
+    "text": "Table Row Height"
+  },
+  {
+    "id": "materialize::table-row-plus-after",
+    "text": "Table Row Plus After"
+  },
+  {
+    "id": "materialize::table-row-plus-before",
+    "text": "Table Row Plus Before"
+  },
+  {
+    "id": "materialize::table-row-remove",
+    "text": "Table Row Remove"
+  },
+  {
+    "id": "materialize::tablet",
+    "text": "Tablet"
+  },
+  {
+    "id": "materialize::tablet-android",
+    "text": "Tablet Android"
+  },
+  {
+    "id": "materialize::tablet-ipad",
+    "text": "Tablet Ipad"
+  },
+  {
+    "id": "materialize::tag",
+    "text": "Tag"
+  },
+  {
+    "id": "materialize::tag-faces",
+    "text": "Tag Faces"
+  },
+  {
+    "id": "materialize::tag-heart",
+    "text": "Tag Heart"
+  },
+  {
+    "id": "materialize::tag-multiple",
+    "text": "Tag Multiple"
+  },
+  {
+    "id": "materialize::tag-outline",
+    "text": "Tag Outline"
+  },
+  {
+    "id": "materialize::tag-plus",
+    "text": "Tag Plus"
+  },
+  {
+    "id": "materialize::tag-remove",
+    "text": "Tag Remove"
+  },
+  {
+    "id": "materialize::tag-text-outline",
+    "text": "Tag Text Outline"
+  },
+  {
+    "id": "materialize::target",
+    "text": "Target"
+  },
+  {
+    "id": "materialize::taxi",
+    "text": "Taxi"
+  },
+  {
+    "id": "materialize::teamviewer",
+    "text": "Teamviewer"
+  },
+  {
+    "id": "materialize::telegram",
+    "text": "Telegram"
+  },
+  {
+    "id": "materialize::television",
+    "text": "Television"
+  },
+  {
+    "id": "materialize::television-guide",
+    "text": "Television Guide"
+  },
+  {
+    "id": "materialize::temperature-celsius",
+    "text": "Temperature Celsius"
+  },
+  {
+    "id": "materialize::temperature-fahrenheit",
+    "text": "Temperature Fahrenheit"
+  },
+  {
+    "id": "materialize::temperature-kelvin",
+    "text": "Temperature Kelvin"
+  },
+  {
+    "id": "materialize::tennis",
+    "text": "Tennis"
+  },
+  {
+    "id": "materialize::tent",
+    "text": "Tent"
+  },
+  {
+    "id": "materialize::terrain",
+    "text": "Terrain"
+  },
+  {
+    "id": "materialize::test-tube",
+    "text": "Test Tube"
+  },
+  {
+    "id": "materialize::text-shadow",
+    "text": "Text Shadow"
+  },
+  {
+    "id": "materialize::text-to-speech",
+    "text": "Text To Speech"
+  },
+  {
+    "id": "materialize::text-to-speech-off",
+    "text": "Text To Speech Off"
+  },
+  {
+    "id": "materialize::textbox",
+    "text": "Textbox"
+  },
+  {
+    "id": "materialize::texture",
+    "text": "Texture"
+  },
+  {
+    "id": "materialize::theater",
+    "text": "Theater"
+  },
+  {
+    "id": "materialize::theme-light-dark",
+    "text": "Theme Light Dark"
+  },
+  {
+    "id": "materialize::thermometer",
+    "text": "Thermometer"
+  },
+  {
+    "id": "materialize::thermometer-lines",
+    "text": "Thermometer Lines"
+  },
+  {
+    "id": "materialize::thumb-down",
+    "text": "Thumb Down"
+  },
+  {
+    "id": "materialize::thumb-down-outline",
+    "text": "Thumb Down Outline"
+  },
+  {
+    "id": "materialize::thumb-up",
+    "text": "Thumb Up"
+  },
+  {
+    "id": "materialize::thumb-up-outline",
+    "text": "Thumb Up Outline"
+  },
+  {
+    "id": "materialize::thumbs-up-down",
+    "text": "Thumbs Up Down"
+  },
+  {
+    "id": "materialize::ticket",
+    "text": "Ticket"
+  },
+  {
+    "id": "materialize::ticket-account",
+    "text": "Ticket Account"
+  },
+  {
+    "id": "materialize::ticket-confirmation",
+    "text": "Ticket Confirmation"
+  },
+  {
+    "id": "materialize::ticket-percent",
+    "text": "Ticket Percent"
+  },
+  {
+    "id": "materialize::tie",
+    "text": "Tie"
+  },
+  {
+    "id": "materialize::tilde",
+    "text": "Tilde"
+  },
+  {
+    "id": "materialize::timelapse",
+    "text": "Timelapse"
+  },
+  {
+    "id": "materialize::timer",
+    "text": "Timer"
+  },
+  {
+    "id": "materialize::timer-10",
+    "text": "Timer 10"
+  },
+  {
+    "id": "materialize::timer-3",
+    "text": "Timer 3"
+  },
+  {
+    "id": "materialize::timer-off",
+    "text": "Timer Off"
+  },
+  {
+    "id": "materialize::timer-sand",
+    "text": "Timer Sand"
+  },
+  {
+    "id": "materialize::timer-sand-empty",
+    "text": "Timer Sand Empty"
+  },
+  {
+    "id": "materialize::timetable",
+    "text": "Timetable"
+  },
+  {
+    "id": "materialize::toggle-switch",
+    "text": "Toggle Switch"
+  },
+  {
+    "id": "materialize::toggle-switch-off",
+    "text": "Toggle Switch Off"
+  },
+  {
+    "id": "materialize::tooltip",
+    "text": "Tooltip"
+  },
+  {
+    "id": "materialize::tooltip-edit",
+    "text": "Tooltip Edit"
+  },
+  {
+    "id": "materialize::tooltip-image",
+    "text": "Tooltip Image"
+  },
+  {
+    "id": "materialize::tooltip-outline",
+    "text": "Tooltip Outline"
+  },
+  {
+    "id": "materialize::tooltip-outline-plus",
+    "text": "Tooltip Outline Plus"
+  },
+  {
+    "id": "materialize::tooltip-text",
+    "text": "Tooltip Text"
+  },
+  {
+    "id": "materialize::tooth",
+    "text": "Tooth"
+  },
+  {
+    "id": "materialize::tor",
+    "text": "Tor"
+  },
+  {
+    "id": "materialize::tower-beach",
+    "text": "Tower Beach"
+  },
+  {
+    "id": "materialize::tower-fire",
+    "text": "Tower Fire"
+  },
+  {
+    "id": "materialize::traffic-light",
+    "text": "Traffic Light"
+  },
+  {
+    "id": "materialize::train",
+    "text": "Train"
+  },
+  {
+    "id": "materialize::tram",
+    "text": "Tram"
+  },
+  {
+    "id": "materialize::transcribe",
+    "text": "Transcribe"
+  },
+  {
+    "id": "materialize::transcribe-close",
+    "text": "Transcribe Close"
+  },
+  {
+    "id": "materialize::transfer",
+    "text": "Transfer"
+  },
+  {
+    "id": "materialize::transit-transfer",
+    "text": "Transit Transfer"
+  },
+  {
+    "id": "materialize::translate",
+    "text": "Translate"
+  },
+  {
+    "id": "materialize::treasure-chest",
+    "text": "Treasure Chest"
+  },
+  {
+    "id": "materialize::tree",
+    "text": "Tree"
+  },
+  {
+    "id": "materialize::trello",
+    "text": "Trello"
+  },
+  {
+    "id": "materialize::trending-down",
+    "text": "Trending Down"
+  },
+  {
+    "id": "materialize::trending-neutral",
+    "text": "Trending Neutral"
+  },
+  {
+    "id": "materialize::trending-up",
+    "text": "Trending Up"
+  },
+  {
+    "id": "materialize::triangle",
+    "text": "Triangle"
+  },
+  {
+    "id": "materialize::triangle-outline",
+    "text": "Triangle Outline"
+  },
+  {
+    "id": "materialize::trophy",
+    "text": "Trophy"
+  },
+  {
+    "id": "materialize::trophy-award",
+    "text": "Trophy Award"
+  },
+  {
+    "id": "materialize::trophy-outline",
+    "text": "Trophy Outline"
+  },
+  {
+    "id": "materialize::trophy-variant",
+    "text": "Trophy Variant"
+  },
+  {
+    "id": "materialize::trophy-variant-outline",
+    "text": "Trophy Variant Outline"
+  },
+  {
+    "id": "materialize::truck",
+    "text": "Truck"
+  },
+  {
+    "id": "materialize::truck-delivery",
+    "text": "Truck Delivery"
+  },
+  {
+    "id": "materialize::truck-trailer",
+    "text": "Truck Trailer"
+  },
+  {
+    "id": "materialize::tshirt-crew",
+    "text": "Tshirt Crew"
+  },
+  {
+    "id": "materialize::tshirt-v",
+    "text": "Tshirt V"
+  },
+  {
+    "id": "materialize::tumblr",
+    "text": "Tumblr"
+  },
+  {
+    "id": "materialize::tumblr-reblog",
+    "text": "Tumblr Reblog"
+  },
+  {
+    "id": "materialize::tune",
+    "text": "Tune"
+  },
+  {
+    "id": "materialize::tune-vertical",
+    "text": "Tune Vertical"
+  },
+  {
+    "id": "materialize::twitch",
+    "text": "Twitch"
+  },
+  {
+    "id": "materialize::twitter",
+    "text": "Twitter"
+  },
+  {
+    "id": "materialize::twitter-box",
+    "text": "Twitter Box"
+  },
+  {
+    "id": "materialize::twitter-circle",
+    "text": "Twitter Circle"
+  },
+  {
+    "id": "materialize::twitter-retweet",
+    "text": "Twitter Retweet"
+  },
+  {
+    "id": "materialize::ubuntu",
+    "text": "Ubuntu"
+  },
+  {
+    "id": "materialize::umbraco",
+    "text": "Umbraco"
+  },
+  {
+    "id": "materialize::umbrella",
+    "text": "Umbrella"
+  },
+  {
+    "id": "materialize::umbrella-outline",
+    "text": "Umbrella Outline"
+  },
+  {
+    "id": "materialize::undo",
+    "text": "Undo"
+  },
+  {
+    "id": "materialize::undo-variant",
+    "text": "Undo Variant"
+  },
+  {
+    "id": "materialize::unfold-less",
+    "text": "Unfold Less"
+  },
+  {
+    "id": "materialize::unfold-more",
+    "text": "Unfold More"
+  },
+  {
+    "id": "materialize::ungroup",
+    "text": "Ungroup"
+  },
+  {
+    "id": "materialize::unity",
+    "text": "Unity"
+  },
+  {
+    "id": "materialize::untappd",
+    "text": "Untappd"
+  },
+  {
+    "id": "materialize::update",
+    "text": "Update"
+  },
+  {
+    "id": "materialize::upload",
+    "text": "Upload"
+  },
+  {
+    "id": "materialize::usb",
+    "text": "Usb"
+  },
+  {
+    "id": "materialize::vector-arrange-above",
+    "text": "Vector Arrange Above"
+  },
+  {
+    "id": "materialize::vector-arrange-below",
+    "text": "Vector Arrange Below"
+  },
+  {
+    "id": "materialize::vector-circle",
+    "text": "Vector Circle"
+  },
+  {
+    "id": "materialize::vector-circle-variant",
+    "text": "Vector Circle Variant"
+  },
+  {
+    "id": "materialize::vector-combine",
+    "text": "Vector Combine"
+  },
+  {
+    "id": "materialize::vector-curve",
+    "text": "Vector Curve"
+  },
+  {
+    "id": "materialize::vector-difference",
+    "text": "Vector Difference"
+  },
+  {
+    "id": "materialize::vector-difference-ab",
+    "text": "Vector Difference Ab"
+  },
+  {
+    "id": "materialize::vector-difference-ba",
+    "text": "Vector Difference Ba"
+  },
+  {
+    "id": "materialize::vector-intersection",
+    "text": "Vector Intersection"
+  },
+  {
+    "id": "materialize::vector-line",
+    "text": "Vector Line"
+  },
+  {
+    "id": "materialize::vector-point",
+    "text": "Vector Point"
+  },
+  {
+    "id": "materialize::vector-polygon",
+    "text": "Vector Polygon"
+  },
+  {
+    "id": "materialize::vector-polyline",
+    "text": "Vector Polyline"
+  },
+  {
+    "id": "materialize::vector-rectangle",
+    "text": "Vector Rectangle"
+  },
+  {
+    "id": "materialize::vector-selection",
+    "text": "Vector Selection"
+  },
+  {
+    "id": "materialize::vector-square",
+    "text": "Vector Square"
+  },
+  {
+    "id": "materialize::vector-triangle",
+    "text": "Vector Triangle"
+  },
+  {
+    "id": "materialize::vector-union",
+    "text": "Vector Union"
+  },
+  {
+    "id": "materialize::verified",
+    "text": "Verified"
+  },
+  {
+    "id": "materialize::vibrate",
+    "text": "Vibrate"
+  },
+  {
+    "id": "materialize::video",
+    "text": "Video"
+  },
+  {
+    "id": "materialize::video-off",
+    "text": "Video Off"
+  },
+  {
+    "id": "materialize::video-switch",
+    "text": "Video Switch"
+  },
+  {
+    "id": "materialize::view-agenda",
+    "text": "View Agenda"
+  },
+  {
+    "id": "materialize::view-array",
+    "text": "View Array"
+  },
+  {
+    "id": "materialize::view-carousel",
+    "text": "View Carousel"
+  },
+  {
+    "id": "materialize::view-column",
+    "text": "View Column"
+  },
+  {
+    "id": "materialize::view-dashboard",
+    "text": "View Dashboard"
+  },
+  {
+    "id": "materialize::view-day",
+    "text": "View Day"
+  },
+  {
+    "id": "materialize::view-grid",
+    "text": "View Grid"
+  },
+  {
+    "id": "materialize::view-headline",
+    "text": "View Headline"
+  },
+  {
+    "id": "materialize::view-list",
+    "text": "View List"
+  },
+  {
+    "id": "materialize::view-module",
+    "text": "View Module"
+  },
+  {
+    "id": "materialize::view-parallel",
+    "text": "View Parallel"
+  },
+  {
+    "id": "materialize::view-quilt",
+    "text": "View Quilt"
+  },
+  {
+    "id": "materialize::view-sequential",
+    "text": "View Sequential"
+  },
+  {
+    "id": "materialize::view-stream",
+    "text": "View Stream"
+  },
+  {
+    "id": "materialize::view-week",
+    "text": "View Week"
+  },
+  {
+    "id": "materialize::vimeo",
+    "text": "Vimeo"
+  },
+  {
+    "id": "materialize::vine",
+    "text": "Vine"
+  },
+  {
+    "id": "materialize::violin",
+    "text": "Violin"
+  },
+  {
+    "id": "materialize::visualstudio",
+    "text": "Visualstudio"
+  },
+  {
+    "id": "materialize::vk",
+    "text": "Vk"
+  },
+  {
+    "id": "materialize::vk-box",
+    "text": "Vk Box"
+  },
+  {
+    "id": "materialize::vk-circle",
+    "text": "Vk Circle"
+  },
+  {
+    "id": "materialize::vlc",
+    "text": "Vlc"
+  },
+  {
+    "id": "materialize::voice",
+    "text": "Voice"
+  },
+  {
+    "id": "materialize::voicemail",
+    "text": "Voicemail"
+  },
+  {
+    "id": "materialize::volume-high",
+    "text": "Volume High"
+  },
+  {
+    "id": "materialize::volume-low",
+    "text": "Volume Low"
+  },
+  {
+    "id": "materialize::volume-medium",
+    "text": "Volume Medium"
+  },
+  {
+    "id": "materialize::volume-off",
+    "text": "Volume Off"
+  },
+  {
+    "id": "materialize::vpn",
+    "text": "Vpn"
+  },
+  {
+    "id": "materialize::walk",
+    "text": "Walk"
+  },
+  {
+    "id": "materialize::wallet",
+    "text": "Wallet"
+  },
+  {
+    "id": "materialize::wallet-giftcard",
+    "text": "Wallet Giftcard"
+  },
+  {
+    "id": "materialize::wallet-membership",
+    "text": "Wallet Membership"
+  },
+  {
+    "id": "materialize::wallet-travel",
+    "text": "Wallet Travel"
+  },
+  {
+    "id": "materialize::wan",
+    "text": "Wan"
+  },
+  {
+    "id": "materialize::washing-machine",
+    "text": "Washing Machine"
+  },
+  {
+    "id": "materialize::watch",
+    "text": "Watch"
+  },
+  {
+    "id": "materialize::watch-export",
+    "text": "Watch Export"
+  },
+  {
+    "id": "materialize::watch-import",
+    "text": "Watch Import"
+  },
+  {
+    "id": "materialize::watch-vibrate",
+    "text": "Watch Vibrate"
+  },
+  {
+    "id": "materialize::water",
+    "text": "Water"
+  },
+  {
+    "id": "materialize::water-off",
+    "text": "Water Off"
+  },
+  {
+    "id": "materialize::water-percent",
+    "text": "Water Percent"
+  },
+  {
+    "id": "materialize::water-pump",
+    "text": "Water Pump"
+  },
+  {
+    "id": "materialize::watermark",
+    "text": "Watermark"
+  },
+  {
+    "id": "materialize::weather-cloudy",
+    "text": "Weather Cloudy"
+  },
+  {
+    "id": "materialize::weather-fog",
+    "text": "Weather Fog"
+  },
+  {
+    "id": "materialize::weather-hail",
+    "text": "Weather Hail"
+  },
+  {
+    "id": "materialize::weather-lightning",
+    "text": "Weather Lightning"
+  },
+  {
+    "id": "materialize::weather-lightning-rainy",
+    "text": "Weather Lightning Rainy"
+  },
+  {
+    "id": "materialize::weather-night",
+    "text": "Weather Night"
+  },
+  {
+    "id": "materialize::weather-partlycloudy",
+    "text": "Weather Partlycloudy"
+  },
+  {
+    "id": "materialize::weather-pouring",
+    "text": "Weather Pouring"
+  },
+  {
+    "id": "materialize::weather-rainy",
+    "text": "Weather Rainy"
+  },
+  {
+    "id": "materialize::weather-snowy",
+    "text": "Weather Snowy"
+  },
+  {
+    "id": "materialize::weather-snowy-rainy",
+    "text": "Weather Snowy Rainy"
+  },
+  {
+    "id": "materialize::weather-sunny",
+    "text": "Weather Sunny"
+  },
+  {
+    "id": "materialize::weather-sunset",
+    "text": "Weather Sunset"
+  },
+  {
+    "id": "materialize::weather-sunset-down",
+    "text": "Weather Sunset Down"
+  },
+  {
+    "id": "materialize::weather-sunset-up",
+    "text": "Weather Sunset Up"
+  },
+  {
+    "id": "materialize::weather-windy",
+    "text": "Weather Windy"
+  },
+  {
+    "id": "materialize::weather-windy-variant",
+    "text": "Weather Windy Variant"
+  },
+  {
+    "id": "materialize::web",
+    "text": "Web"
+  },
+  {
+    "id": "materialize::webcam",
+    "text": "Webcam"
+  },
+  {
+    "id": "materialize::webhook",
+    "text": "Webhook"
+  },
+  {
+    "id": "materialize::webpack",
+    "text": "Webpack"
+  },
+  {
+    "id": "materialize::wechat",
+    "text": "Wechat"
+  },
+  {
+    "id": "materialize::weight",
+    "text": "Weight"
+  },
+  {
+    "id": "materialize::weight-kilogram",
+    "text": "Weight Kilogram"
+  },
+  {
+    "id": "materialize::whatsapp",
+    "text": "Whatsapp"
+  },
+  {
+    "id": "materialize::wheelchair-accessibility",
+    "text": "Wheelchair Accessibility"
+  },
+  {
+    "id": "materialize::white-balance-auto",
+    "text": "White Balance Auto"
+  },
+  {
+    "id": "materialize::white-balance-incandescent",
+    "text": "White Balance Incandescent"
+  },
+  {
+    "id": "materialize::white-balance-iridescent",
+    "text": "White Balance Iridescent"
+  },
+  {
+    "id": "materialize::white-balance-sunny",
+    "text": "White Balance Sunny"
+  },
+  {
+    "id": "materialize::widgets",
+    "text": "Widgets"
+  },
+  {
+    "id": "materialize::wifi",
+    "text": "Wifi"
+  },
+  {
+    "id": "materialize::wifi-off",
+    "text": "Wifi Off"
+  },
+  {
+    "id": "materialize::wii",
+    "text": "Wii"
+  },
+  {
+    "id": "materialize::wiiu",
+    "text": "Wiiu"
+  },
+  {
+    "id": "materialize::wikipedia",
+    "text": "Wikipedia"
+  },
+  {
+    "id": "materialize::window-close",
+    "text": "Window Close"
+  },
+  {
+    "id": "materialize::window-closed",
+    "text": "Window Closed"
+  },
+  {
+    "id": "materialize::window-maximize",
+    "text": "Window Maximize"
+  },
+  {
+    "id": "materialize::window-minimize",
+    "text": "Window Minimize"
+  },
+  {
+    "id": "materialize::window-open",
+    "text": "Window Open"
+  },
+  {
+    "id": "materialize::window-restore",
+    "text": "Window Restore"
+  },
+  {
+    "id": "materialize::windows",
+    "text": "Windows"
+  },
+  {
+    "id": "materialize::wordpress",
+    "text": "Wordpress"
+  },
+  {
+    "id": "materialize::worker",
+    "text": "Worker"
+  },
+  {
+    "id": "materialize::wrap",
+    "text": "Wrap"
+  },
+  {
+    "id": "materialize::wrench",
+    "text": "Wrench"
+  },
+  {
+    "id": "materialize::wunderlist",
+    "text": "Wunderlist"
+  },
+  {
+    "id": "materialize::xaml",
+    "text": "Xaml"
+  },
+  {
+    "id": "materialize::xbox",
+    "text": "Xbox"
+  },
+  {
+    "id": "materialize::xbox-controller",
+    "text": "Xbox Controller"
+  },
+  {
+    "id": "materialize::xbox-controller-off",
+    "text": "Xbox Controller Off"
+  },
+  {
+    "id": "materialize::xda",
+    "text": "Xda"
+  },
+  {
+    "id": "materialize::xing",
+    "text": "Xing"
+  },
+  {
+    "id": "materialize::xing-box",
+    "text": "Xing Box"
+  },
+  {
+    "id": "materialize::xing-circle",
+    "text": "Xing Circle"
+  },
+  {
+    "id": "materialize::xml",
+    "text": "Xml"
+  },
+  {
+    "id": "materialize::yeast",
+    "text": "Yeast"
+  },
+  {
+    "id": "materialize::yelp",
+    "text": "Yelp"
+  },
+  {
+    "id": "materialize::yin-yang",
+    "text": "Yin Yang"
+  },
+  {
+    "id": "materialize::youtube-play",
+    "text": "Youtube Play"
+  },
+  {
+    "id": "materialize::zip-box",
+    "text": "Zip Box"
+  },
+  {
+    "id": "weathericon::day-sunny",
+    "text": "Day Sunny"
+  },
+  {
+    "id": "weathericon::day-cloudy",
+    "text": "Day Cloudy"
+  },
+  {
+    "id": "weathericon::day-cloudy-gusts",
+    "text": "Day Cloudy Gusts"
+  },
+  {
+    "id": "weathericon::day-cloudy-windy",
+    "text": "Day Cloudy Windy"
+  },
+  {
+    "id": "weathericon::day-fog",
+    "text": "Day Fog"
+  },
+  {
+    "id": "weathericon::day-hail",
+    "text": "Day Hail"
+  },
+  {
+    "id": "weathericon::day-haze",
+    "text": "Day Haze"
+  },
+  {
+    "id": "weathericon::day-lightning",
+    "text": "Day Lightning"
+  },
+  {
+    "id": "weathericon::day-rain",
+    "text": "Day Rain"
+  },
+  {
+    "id": "weathericon::day-rain-mix",
+    "text": "Day Rain Mix"
+  },
+  {
+    "id": "weathericon::day-rain-wind",
+    "text": "Day Rain Wind"
+  },
+  {
+    "id": "weathericon::day-showers",
+    "text": "Day Showers"
+  },
+  {
+    "id": "weathericon::day-sleet",
+    "text": "Day Sleet"
+  },
+  {
+    "id": "weathericon::day-sleet-storm",
+    "text": "Day Sleet Storm"
+  },
+  {
+    "id": "weathericon::day-snow",
+    "text": "Day Snow"
+  },
+  {
+    "id": "weathericon::day-snow-thunderstorm",
+    "text": "Day Snow Thunderstorm"
+  },
+  {
+    "id": "weathericon::day-snow-wind",
+    "text": "Day Snow Wind"
+  },
+  {
+    "id": "weathericon::day-sprinkle",
+    "text": "Day Sprinkle"
+  },
+  {
+    "id": "weathericon::day-storm-showers",
+    "text": "Day Storm Showers"
+  },
+  {
+    "id": "weathericon::day-sunny-overcast",
+    "text": "Day Sunny Overcast"
+  },
+  {
+    "id": "weathericon::day-thunderstorm",
+    "text": "Day Thunderstorm"
+  },
+  {
+    "id": "weathericon::day-windy",
+    "text": "Day Windy"
+  },
+  {
+    "id": "weathericon::solar-eclipse",
+    "text": "Solar Eclipse"
+  },
+  {
+    "id": "weathericon::hot",
+    "text": "Hot"
+  },
+  {
+    "id": "weathericon::day-cloudy-high",
+    "text": "Day Cloudy High"
+  },
+  {
+    "id": "weathericon::day-light-wind",
+    "text": "Day Light Wind"
+  },
+  {
+    "id": "weathericon::night-clear",
+    "text": "Night Clear"
+  },
+  {
+    "id": "weathericon::night-alt-cloudy",
+    "text": "Night Alt Cloudy"
+  },
+  {
+    "id": "weathericon::night-alt-cloudy-gusts",
+    "text": "Night Alt Cloudy Gusts"
+  },
+  {
+    "id": "weathericon::night-alt-cloudy-windy",
+    "text": "Night Alt Cloudy Windy"
+  },
+  {
+    "id": "weathericon::night-alt-hail",
+    "text": "Night Alt Hail"
+  },
+  {
+    "id": "weathericon::night-alt-lightning",
+    "text": "Night Alt Lightning"
+  },
+  {
+    "id": "weathericon::night-alt-rain",
+    "text": "Night Alt Rain"
+  },
+  {
+    "id": "weathericon::night-alt-rain-mix",
+    "text": "Night Alt Rain Mix"
+  },
+  {
+    "id": "weathericon::night-alt-rain-wind",
+    "text": "Night Alt Rain Wind"
+  },
+  {
+    "id": "weathericon::night-alt-showers",
+    "text": "Night Alt Showers"
+  },
+  {
+    "id": "weathericon::night-alt-sleet",
+    "text": "Night Alt Sleet"
+  },
+  {
+    "id": "weathericon::night-alt-sleet-storm",
+    "text": "Night Alt Sleet Storm"
+  },
+  {
+    "id": "weathericon::night-alt-snow",
+    "text": "Night Alt Snow"
+  },
+  {
+    "id": "weathericon::night-alt-snow-thunderstorm",
+    "text": "Night Alt Snow Thunderstorm"
+  },
+  {
+    "id": "weathericon::night-alt-snow-wind",
+    "text": "Night Alt Snow Wind"
+  },
+  {
+    "id": "weathericon::night-alt-sprinkle",
+    "text": "Night Alt Sprinkle"
+  },
+  {
+    "id": "weathericon::night-alt-storm-showers",
+    "text": "Night Alt Storm Showers"
+  },
+  {
+    "id": "weathericon::night-alt-thunderstorm",
+    "text": "Night Alt Thunderstorm"
+  },
+  {
+    "id": "weathericon::night-cloudy",
+    "text": "Night Cloudy"
+  },
+  {
+    "id": "weathericon::night-cloudy-gusts",
+    "text": "Night Cloudy Gusts"
+  },
+  {
+    "id": "weathericon::night-cloudy-windy",
+    "text": "Night Cloudy Windy"
+  },
+  {
+    "id": "weathericon::night-fog",
+    "text": "Night Fog"
+  },
+  {
+    "id": "weathericon::night-hail",
+    "text": "Night Hail"
+  },
+  {
+    "id": "weathericon::night-lightning",
+    "text": "Night Lightning"
+  },
+  {
+    "id": "weathericon::night-partly-cloudy",
+    "text": "Night Partly Cloudy"
+  },
+  {
+    "id": "weathericon::night-rain",
+    "text": "Night Rain"
+  },
+  {
+    "id": "weathericon::night-rain-mix",
+    "text": "Night Rain Mix"
+  },
+  {
+    "id": "weathericon::night-rain-wind",
+    "text": "Night Rain Wind"
+  },
+  {
+    "id": "weathericon::night-showers",
+    "text": "Night Showers"
+  },
+  {
+    "id": "weathericon::night-sleet",
+    "text": "Night Sleet"
+  },
+  {
+    "id": "weathericon::night-sleet-storm",
+    "text": "Night Sleet Storm"
+  },
+  {
+    "id": "weathericon::night-snow",
+    "text": "Night Snow"
+  },
+  {
+    "id": "weathericon::night-snow-thunderstorm",
+    "text": "Night Snow Thunderstorm"
+  },
+  {
+    "id": "weathericon::night-snow-wind",
+    "text": "Night Snow Wind"
+  },
+  {
+    "id": "weathericon::night-sprinkle",
+    "text": "Night Sprinkle"
+  },
+  {
+    "id": "weathericon::night-storm-showers",
+    "text": "Night Storm Showers"
+  },
+  {
+    "id": "weathericon::night-thunderstorm",
+    "text": "Night Thunderstorm"
+  },
+  {
+    "id": "weathericon::lunar-eclipse",
+    "text": "Lunar Eclipse"
+  },
+  {
+    "id": "weathericon::stars",
+    "text": "Stars"
+  },
+  {
+    "id": "weathericon::storm-showers",
+    "text": "Storm Showers"
+  },
+  {
+    "id": "weathericon::thunderstorm",
+    "text": "Thunderstorm"
+  },
+  {
+    "id": "weathericon::night-alt-cloudy-high",
+    "text": "Night Alt Cloudy High"
+  },
+  {
+    "id": "weathericon::night-cloudy-high",
+    "text": "Night Cloudy High"
+  },
+  {
+    "id": "weathericon::night-alt-partly-cloudy",
+    "text": "Night Alt Partly Cloudy"
+  },
+  {
+    "id": "weathericon::cloud",
+    "text": "Cloud"
+  },
+  {
+    "id": "weathericon::cloudy",
+    "text": "Cloudy"
+  },
+  {
+    "id": "weathericon::cloudy-gusts",
+    "text": "Cloudy Gusts"
+  },
+  {
+    "id": "weathericon::cloudy-windy",
+    "text": "Cloudy Windy"
+  },
+  {
+    "id": "weathericon::fog",
+    "text": "Fog"
+  },
+  {
+    "id": "weathericon::hail",
+    "text": "Hail"
+  },
+  {
+    "id": "weathericon::rain",
+    "text": "Rain"
+  },
+  {
+    "id": "weathericon::rain-mix",
+    "text": "Rain Mix"
+  },
+  {
+    "id": "weathericon::rain-wind",
+    "text": "Rain Wind"
+  },
+  {
+    "id": "weathericon::showers",
+    "text": "Showers"
+  },
+  {
+    "id": "weathericon::sleet",
+    "text": "Sleet"
+  },
+  {
+    "id": "weathericon::snow",
+    "text": "Snow"
+  },
+  {
+    "id": "weathericon::sprinkle",
+    "text": "Sprinkle"
+  },
+  {
+    "id": "weathericon::storm-showers",
+    "text": "Storm Showers"
+  },
+  {
+    "id": "weathericon::thunderstorm",
+    "text": "Thunderstorm"
+  },
+  {
+    "id": "weathericon::snow-wind",
+    "text": "Snow Wind"
+  },
+  {
+    "id": "weathericon::snow",
+    "text": "Snow"
+  },
+  {
+    "id": "weathericon::smog",
+    "text": "Smog"
+  },
+  {
+    "id": "weathericon::smoke",
+    "text": "Smoke"
+  },
+  {
+    "id": "weathericon::lightning",
+    "text": "Lightning"
+  },
+  {
+    "id": "weathericon::raindrops",
+    "text": "Raindrops"
+  },
+  {
+    "id": "weathericon::raindrop",
+    "text": "Raindrop"
+  },
+  {
+    "id": "weathericon::dust",
+    "text": "Dust"
+  },
+  {
+    "id": "weathericon::snowflake-cold",
+    "text": "Snowflake Cold"
+  },
+  {
+    "id": "weathericon::windy",
+    "text": "Windy"
+  },
+  {
+    "id": "weathericon::strong-wind",
+    "text": "Strong Wind"
+  },
+  {
+    "id": "weathericon::sandstorm",
+    "text": "Sandstorm"
+  },
+  {
+    "id": "weathericon::earthquake",
+    "text": "Earthquake"
+  },
+  {
+    "id": "weathericon::fire",
+    "text": "Fire"
+  },
+  {
+    "id": "weathericon::flood",
+    "text": "Flood"
+  },
+  {
+    "id": "weathericon::meteor",
+    "text": "Meteor"
+  },
+  {
+    "id": "weathericon::tsunami",
+    "text": "Tsunami"
+  },
+  {
+    "id": "weathericon::volcano",
+    "text": "Volcano"
+  },
+  {
+    "id": "weathericon::hurricane",
+    "text": "Hurricane"
+  },
+  {
+    "id": "weathericon::tornado",
+    "text": "Tornado"
+  },
+  {
+    "id": "weathericon::small-craft-advisory",
+    "text": "Small Craft Advisory"
+  },
+  {
+    "id": "weathericon::gale-warning",
+    "text": "Gale Warning"
+  },
+  {
+    "id": "weathericon::storm-warning",
+    "text": "Storm Warning"
+  },
+  {
+    "id": "weathericon::hurricane-warning",
+    "text": "Hurricane Warning"
+  },
+  {
+    "id": "weathericon::wind-direction",
+    "text": "Wind Direction"
+  },
+  {
+    "id": "weathericon::moon-new",
+    "text": "Moon New"
+  },
+  {
+    "id": "weathericon::moon-waxing-cresent-1",
+    "text": "Moon Waxing Cresent 1"
+  },
+  {
+    "id": "weathericon::moon-waxing-cresent-2",
+    "text": "Moon Waxing Cresent 2"
+  },
+  {
+    "id": "weathericon::moon-waxing-cresent-3",
+    "text": "Moon Waxing Cresent 3"
+  },
+  {
+    "id": "weathericon::moon-waxing-cresent-4",
+    "text": "Moon Waxing Cresent 4"
+  },
+  {
+    "id": "weathericon::moon-waxing-cresent-5",
+    "text": "Moon Waxing Cresent 5"
+  },
+  {
+    "id": "weathericon::moon-waxing-cresent-6",
+    "text": "Moon Waxing Cresent 6"
+  },
+  {
+    "id": "weathericon::moon-first-quarter",
+    "text": "Moon First Quarter"
+  },
+  {
+    "id": "weathericon::moon-waxing-gibbous-1",
+    "text": "Moon Waxing Gibbous 1"
+  },
+  {
+    "id": "weathericon::moon-waxing-gibbous-2",
+    "text": "Moon Waxing Gibbous 2"
+  },
+  {
+    "id": "weathericon::moon-waxing-gibbous-3",
+    "text": "Moon Waxing Gibbous 3"
+  },
+  {
+    "id": "weathericon::moon-waxing-gibbous-4",
+    "text": "Moon Waxing Gibbous 4"
+  },
+  {
+    "id": "weathericon::moon-waxing-gibbous-5",
+    "text": "Moon Waxing Gibbous 5"
+  },
+  {
+    "id": "weathericon::moon-waxing-gibbous-6",
+    "text": "Moon Waxing Gibbous 6"
+  },
+  {
+    "id": "weathericon::moon-full",
+    "text": "Moon Full"
+  },
+  {
+    "id": "weathericon::moon-waning-gibbous-1",
+    "text": "Moon Waning Gibbous 1"
+  },
+  {
+    "id": "weathericon::moon-waning-gibbous-2",
+    "text": "Moon Waning Gibbous 2"
+  },
+  {
+    "id": "weathericon::moon-waning-gibbous-3",
+    "text": "Moon Waning Gibbous 3"
+  },
+  {
+    "id": "weathericon::moon-waning-gibbous-4",
+    "text": "Moon Waning Gibbous 4"
+  },
+  {
+    "id": "weathericon::moon-waning-gibbous-5",
+    "text": "Moon Waning Gibbous 5"
+  },
+  {
+    "id": "weathericon::moon-waning-gibbous-6",
+    "text": "Moon Waning Gibbous 6"
+  },
+  {
+    "id": "weathericon::moon-third-quarter",
+    "text": "Moon Third Quarter"
+  },
+  {
+    "id": "weathericon::moon-waning-crescent-1",
+    "text": "Moon Waning Crescent 1"
+  },
+  {
+    "id": "weathericon::moon-waning-crescent-2",
+    "text": "Moon Waning Crescent 2"
+  },
+  {
+    "id": "weathericon::moon-waning-crescent-3",
+    "text": "Moon Waning Crescent 3"
+  },
+  {
+    "id": "weathericon::moon-waning-crescent-4",
+    "text": "Moon Waning Crescent 4"
+  },
+  {
+    "id": "weathericon::moon-waning-crescent-5",
+    "text": "Moon Waning Crescent 5"
+  },
+  {
+    "id": "weathericon::moon-waning-crescent-6",
+    "text": "Moon Waning Crescent 6"
+  },
+  {
+    "id": "weathericon::moon-alt-new",
+    "text": "Moon Alt New"
+  },
+  {
+    "id": "weathericon::moon-alt-waxing-cresent-1",
+    "text": "Moon Alt Waxing Cresent 1"
+  },
+  {
+    "id": "weathericon::moon-alt-waxing-cresent-2",
+    "text": "Moon Alt Waxing Cresent 2"
+  },
+  {
+    "id": "weathericon::moon-alt-waxing-cresent-3",
+    "text": "Moon Alt Waxing Cresent 3"
+  },
+  {
+    "id": "weathericon::moon-alt-waxing-cresent-4",
+    "text": "Moon Alt Waxing Cresent 4"
+  },
+  {
+    "id": "weathericon::moon-alt-waxing-cresent-5",
+    "text": "Moon Alt Waxing Cresent 5"
+  },
+  {
+    "id": "weathericon::moon-alt-waxing-cresent-6",
+    "text": "Moon Alt Waxing Cresent 6"
+  },
+  {
+    "id": "weathericon::moon-alt-first-quarter",
+    "text": "Moon Alt First Quarter"
+  },
+  {
+    "id": "weathericon::moon-alt-waxing-gibbous-1",
+    "text": "Moon Alt Waxing Gibbous 1"
+  },
+  {
+    "id": "weathericon::moon-alt-waxing-gibbous-2",
+    "text": "Moon Alt Waxing Gibbous 2"
+  },
+  {
+    "id": "weathericon::moon-alt-waxing-gibbous-3",
+    "text": "Moon Alt Waxing Gibbous 3"
+  },
+  {
+    "id": "weathericon::moon-alt-waxing-gibbous-4",
+    "text": "Moon Alt Waxing Gibbous 4"
+  },
+  {
+    "id": "weathericon::moon-alt-waxing-gibbous-5",
+    "text": "Moon Alt Waxing Gibbous 5"
+  },
+  {
+    "id": "weathericon::moon-alt-waxing-gibbous-6",
+    "text": "Moon Alt Waxing Gibbous 6"
+  },
+  {
+    "id": "weathericon::moon-alt-full",
+    "text": "Moon Alt Full"
+  },
+  {
+    "id": "weathericon::moon-alt-waning-gibbous-1",
+    "text": "Moon Alt Waning Gibbous 1"
+  },
+  {
+    "id": "weathericon::moon-alt-waning-gibbous-2",
+    "text": "Moon Alt Waning Gibbous 2"
+  },
+  {
+    "id": "weathericon::moon-alt-waning-gibbous-3",
+    "text": "Moon Alt Waning Gibbous 3"
+  },
+  {
+    "id": "weathericon::moon-alt-waning-gibbous-4",
+    "text": "Moon Alt Waning Gibbous 4"
+  },
+  {
+    "id": "weathericon::moon-alt-waning-gibbous-5",
+    "text": "Moon Alt Waning Gibbous 5"
+  },
+  {
+    "id": "weathericon::moon-alt-waning-gibbous-6",
+    "text": "Moon Alt Waning Gibbous 6"
+  },
+  {
+    "id": "weathericon::moon-alt-third-quarter",
+    "text": "Moon Alt Third Quarter"
+  },
+  {
+    "id": "weathericon::moon-alt-waning-crescent-1",
+    "text": "Moon Alt Waning Crescent 1"
+  },
+  {
+    "id": "weathericon::moon-alt-waning-crescent-2",
+    "text": "Moon Alt Waning Crescent 2"
+  },
+  {
+    "id": "weathericon::moon-alt-waning-crescent-3",
+    "text": "Moon Alt Waning Crescent 3"
+  },
+  {
+    "id": "weathericon::moon-alt-waning-crescent-4",
+    "text": "Moon Alt Waning Crescent 4"
+  },
+  {
+    "id": "weathericon::moon-alt-waning-crescent-5",
+    "text": "Moon Alt Waning Crescent 5"
+  },
+  {
+    "id": "weathericon::moon-alt-waning-crescent-6",
+    "text": "Moon Alt Waning Crescent 6"
+  },
+  {
+    "id": "weathericon::alien",
+    "text": "Alien"
+  },
+  {
+    "id": "weathericon::celsius",
+    "text": "Celsius"
+  },
+  {
+    "id": "weathericon::fahrenheit",
+    "text": "Fahrenheit"
+  },
+  {
+    "id": "weathericon::degrees",
+    "text": "Degrees"
+  },
+  {
+    "id": "weathericon::thermometer",
+    "text": "Thermometer"
+  },
+  {
+    "id": "weathericon::thermometer-exterior",
+    "text": "Thermometer Exterior"
+  },
+  {
+    "id": "weathericon::thermometer-internal",
+    "text": "Thermometer Internal"
+  },
+  {
+    "id": "weathericon::cloud-down",
+    "text": "Cloud Down"
+  },
+  {
+    "id": "weathericon::cloud-up",
+    "text": "Cloud Up"
+  },
+  {
+    "id": "weathericon::cloud-refresh",
+    "text": "Cloud Refresh"
+  },
+  {
+    "id": "weathericon::horizon",
+    "text": "Horizon"
+  },
+  {
+    "id": "weathericon::horizon-alt",
+    "text": "Horizon Alt"
+  },
+  {
+    "id": "weathericon::sunrise",
+    "text": "Sunrise"
+  },
+  {
+    "id": "weathericon::sunset",
+    "text": "Sunset"
+  },
+  {
+    "id": "weathericon::moonrise",
+    "text": "Moonrise"
+  },
+  {
+    "id": "weathericon::moonset",
+    "text": "Moonset"
+  },
+  {
+    "id": "weathericon::refresh",
+    "text": "Refresh"
+  },
+  {
+    "id": "weathericon::refresh-alt",
+    "text": "Refresh Alt"
+  },
+  {
+    "id": "weathericon::umbrella",
+    "text": "Umbrella"
+  },
+  {
+    "id": "weathericon::barometer",
+    "text": "Barometer"
+  },
+  {
+    "id": "weathericon::humidity",
+    "text": "Humidity"
+  },
+  {
+    "id": "weathericon::na",
+    "text": "Na"
+  },
+  {
+    "id": "weathericon::train",
+    "text": "Train"
+  },
+  {
+    "id": "weathericon::time-1",
+    "text": "Time 1"
+  },
+  {
+    "id": "weathericon::time-2",
+    "text": "Time 2"
+  },
+  {
+    "id": "weathericon::time-3",
+    "text": "Time 3"
+  },
+  {
+    "id": "weathericon::time-4",
+    "text": "Time 4"
+  },
+  {
+    "id": "weathericon::time-5",
+    "text": "Time 5"
+  },
+  {
+    "id": "weathericon::time-6",
+    "text": "Time 6"
+  },
+  {
+    "id": "weathericon::time-7",
+    "text": "Time 7"
+  },
+  {
+    "id": "weathericon::time-8",
+    "text": "Time 8"
+  },
+  {
+    "id": "weathericon::time-9",
+    "text": "Time 9"
+  },
+  {
+    "id": "weathericon::time-10",
+    "text": "Time 10"
+  },
+  {
+    "id": "weathericon::time-11",
+    "text": "Time 11"
+  },
+  {
+    "id": "weathericon::time-12",
+    "text": "Time 12"
+  },
+  {
+    "id": "weathericon::direction-up",
+    "text": "Direction Up"
+  },
+  {
+    "id": "weathericon::direction-up-right",
+    "text": "Direction Up Right"
+  },
+  {
+    "id": "weathericon::direction-right",
+    "text": "Direction Right"
+  },
+  {
+    "id": "weathericon::direction-down-right",
+    "text": "Direction Down Right"
+  },
+  {
+    "id": "weathericon::direction-down",
+    "text": "Direction Down"
+  },
+  {
+    "id": "weathericon::direction-down-left",
+    "text": "Direction Down Left"
+  },
+  {
+    "id": "weathericon::direction-left",
+    "text": "Direction Left"
+  },
+  {
+    "id": "weathericon::direction-up-left",
+    "text": "Direction Up Left"
+  }
+]

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 707
plugins/bower_components/custom-select/custom-select.css


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 20
plugins/bower_components/custom-select/custom-select.min.js


이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.