lanes 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +19 -0
- data/.jshintrc +3 -0
- data/Gemfile +9 -0
- data/Guardfile +15 -0
- data/LICENSE-MIT.txt +21 -0
- data/README.md +15 -0
- data/Rakefile +74 -0
- data/bin/lanes +5 -0
- data/client/images/ajax-loader.gif +0 -0
- data/client/images/dataTables/Sorting icons.psd +0 -0
- data/client/images/dataTables/back_disabled.png +0 -0
- data/client/images/dataTables/back_enabled.png +0 -0
- data/client/images/dataTables/back_enabled_hover.png +0 -0
- data/client/images/dataTables/favicon.ico +0 -0
- data/client/images/dataTables/forward_disabled.png +0 -0
- data/client/images/dataTables/forward_enabled.png +0 -0
- data/client/images/dataTables/forward_enabled_hover.png +0 -0
- data/client/images/dataTables/loading-background.png +0 -0
- data/client/images/dataTables/sort_asc.png +0 -0
- data/client/images/dataTables/sort_asc_disabled.png +0 -0
- data/client/images/dataTables/sort_both.png +0 -0
- data/client/images/dataTables/sort_desc.png +0 -0
- data/client/images/dataTables/sort_desc_disabled.png +0 -0
- data/client/images/logo-sm.png +0 -0
- data/client/javascripts/component/Base.coffee +39 -0
- data/client/javascripts/component/ChoicesInput.coffee +47 -0
- data/client/javascripts/component/Grid.coffee +199 -0
- data/client/javascripts/component/ModalDialog.coffee +44 -0
- data/client/javascripts/component/PopOver.coffee +52 -0
- data/client/javascripts/component/RadioGroup.coffee +59 -0
- data/client/javascripts/component/RecordFinder.coffee +143 -0
- data/client/javascripts/component/SelectField.coffee +43 -0
- data/client/javascripts/component/TaggedField.coffee +27 -0
- data/client/javascripts/component/grid/Editor.coffee +65 -0
- data/client/javascripts/component/grid/PopOverEditor.coffee +29 -0
- data/client/javascripts/component/grid/RowEditor.coffee +31 -0
- data/client/javascripts/component/grid/popover-editor.html +18 -0
- data/client/javascripts/component/grid/row-editor.html +16 -0
- data/client/javascripts/component/grid.html +4 -0
- data/client/javascripts/component/index.js +5 -0
- data/client/javascripts/component/modal.html +17 -0
- data/client/javascripts/component/popover.html +5 -0
- data/client/javascripts/component/record-finder/clause.skr +35 -0
- data/client/javascripts/component/record-finder/dialog.skr +4 -0
- data/client/javascripts/component/record-finder/field.skr +8 -0
- data/client/javascripts/data/Bootstrap.coffee +8 -0
- data/client/javascripts/data/ChangeSet.coffee +50 -0
- data/client/javascripts/data/Collection.coffee +111 -0
- data/client/javascripts/data/Config.coffee +15 -0
- data/client/javascripts/data/Model.coffee +269 -0
- data/client/javascripts/data/PubSub.coffee +68 -0
- data/client/javascripts/data/Query.coffee +184 -0
- data/client/javascripts/data/Roles.coffee +91 -0
- data/client/javascripts/data/Screens.coffee +157 -0
- data/client/javascripts/data/Sync.coffee +62 -0
- data/client/javascripts/data/User.coffee +70 -0
- data/client/javascripts/data/index.js +7 -0
- data/client/javascripts/data/mixins/HasCodeField.coffee +13 -0
- data/client/javascripts/extension/Base.coffee +9 -0
- data/client/javascripts/extension/Extensions.coffee +17 -0
- data/client/javascripts/extension/GlAccounts.coffee +9 -0
- data/client/javascripts/extension/index.js +6 -0
- data/client/javascripts/extension/load.js.erb +3 -0
- data/client/javascripts/lanes-complete.js +3 -0
- data/client/javascripts/lanes-workspace.js +1 -0
- data/client/javascripts/lib/MakeBaseClass.coffee +55 -0
- data/client/javascripts/lib/ModuleSupport.coffee +22 -0
- data/client/javascripts/lib/Templates.coffee +47 -0
- data/client/javascripts/lib/create-namespace.js +0 -0
- data/client/javascripts/lib/debounce.coffee +15 -0
- data/client/javascripts/lib/defer.coffee +7 -0
- data/client/javascripts/lib/el.js +115 -0
- data/client/javascripts/lib/index.js +9 -0
- data/client/javascripts/lib/loader.coffee +95 -0
- data/client/javascripts/lib/namespace.coffee +9 -0
- data/client/javascripts/lib/noConflict.coffee +14 -0
- data/client/javascripts/lib/promise_helpers.coffee +4 -0
- data/client/javascripts/lib/results.coffee +15 -0
- data/client/javascripts/lib/underscore.inflection.js +210 -0
- data/client/javascripts/lib/utilFunctions.coffee +51 -0
- data/client/javascripts/plugins/ResizeSensor.js +144 -0
- data/client/javascripts/plugins/index.js +4 -0
- data/client/javascripts/plugins/overlay.coffee +41 -0
- data/client/javascripts/plugins/trigger.coffee +15 -0
- data/client/javascripts/vendor/bootstrap/affix.js +142 -0
- data/client/javascripts/vendor/bootstrap/alert.js +92 -0
- data/client/javascripts/vendor/bootstrap/button.js +110 -0
- data/client/javascripts/vendor/bootstrap/carousel.js +223 -0
- data/client/javascripts/vendor/bootstrap/collapse.js +170 -0
- data/client/javascripts/vendor/bootstrap/dropdown.js +151 -0
- data/client/javascripts/vendor/bootstrap/modal.js +280 -0
- data/client/javascripts/vendor/bootstrap/popover.js +113 -0
- data/client/javascripts/vendor/bootstrap/scrollspy.js +170 -0
- data/client/javascripts/vendor/bootstrap/tab.js +128 -0
- data/client/javascripts/vendor/bootstrap/tooltip.js +457 -0
- data/client/javascripts/vendor/bootstrap/transition.js +59 -0
- data/client/javascripts/vendor/dataTables/dataTables.bootstrap.js +156 -0
- data/client/javascripts/vendor/dataTables/dataTables.scroller.js +1185 -0
- data/client/javascripts/vendor/dataTables/datatables.responsive.js +666 -0
- data/client/javascripts/vendor/dataTables/index.js +2 -0
- data/client/javascripts/vendor/dataTables/jquery.dataTables.js +14380 -0
- data/client/javascripts/vendor/jquery-2.js +9190 -0
- data/client/javascripts/vendor/jquery.tap.js +401 -0
- data/client/javascripts/vendor/magicsuggest.js +1565 -0
- data/client/javascripts/vendor/message-bus.js +285 -0
- data/client/javascripts/vendor/modern-stack.js +14 -0
- data/client/javascripts/vendor/packaged.js +13769 -0
- data/client/javascripts/view/Assets.coffee +9 -0
- data/client/javascripts/view/Base.coffee +231 -0
- data/client/javascripts/view/FormBindings.coffee +98 -0
- data/client/javascripts/view/Functions.coffee +13 -0
- data/client/javascripts/view/Helpers.coffee +77 -0
- data/client/javascripts/view/InterfaceState.coffee +88 -0
- data/client/javascripts/view/Keys.coffee +59 -0
- data/client/javascripts/view/ModelObserver.coffee +31 -0
- data/client/javascripts/view/ModelUpdate.coffee +8 -0
- data/client/javascripts/view/PubSub.coffee +29 -0
- data/client/javascripts/view/RenderContext.coffee +32 -0
- data/client/javascripts/view/SaveNotify.coffee +30 -0
- data/client/javascripts/view/Screen.coffee +30 -0
- data/client/javascripts/view/TimedHighlight.coffee +38 -0
- data/client/javascripts/view/TimedMask.coffee +65 -0
- data/client/javascripts/view/_button.html +3 -0
- data/client/javascripts/view/_toolbar.html +27 -0
- data/client/javascripts/view/index.js +10 -0
- data/client/javascripts/view/mixins/ScreenChangeListener.coffee +43 -0
- data/client/javascripts/view/model-update.html +13 -0
- data/client/javascripts/view/screen-definitions.js.erb +7 -0
- data/client/javascripts/workspace/ActiveScreensSwitcher.coffee +117 -0
- data/client/javascripts/workspace/Instance.es6 +60 -0
- data/client/javascripts/workspace/Layout.coffee +18 -0
- data/client/javascripts/workspace/LoginDialog.coffee +33 -0
- data/client/javascripts/workspace/Navbar.coffee +44 -0
- data/client/javascripts/workspace/Pages.coffee +46 -0
- data/client/javascripts/workspace/ScreensMenu.coffee +126 -0
- data/client/javascripts/workspace/index.js +12 -0
- data/client/javascripts/workspace/layout.html +4 -0
- data/client/javascripts/workspace/login-dialog.html +16 -0
- data/client/javascripts/workspace/menu.html +356 -0
- data/client/javascripts/workspace/menu_toggle.html +9 -0
- data/client/javascripts/workspace/navbar.html +19 -0
- data/client/javascripts/workspace/pages.html +6 -0
- data/client/javascripts/workspace/screens-menu.html +11 -0
- data/client/javascripts/workspace/screens-switcher.html +7 -0
- data/client/javascripts/workspace/tab.html +0 -0
- data/client/screens/user-management/UserEditScreen.coffee +21 -0
- data/client/screens/user-management/UserManagement.coffee +24 -0
- data/client/screens/user-management/grid-popover-editor.html +33 -0
- data/client/screens/user-management/index.css +4 -0
- data/client/screens/user-management/index.js +2 -0
- data/client/screens/user-management/user-management-styles.scss +7 -0
- data/client/screens/user-management/user-management.html +8 -0
- data/client/stylesheets/compoonents/all.scss +6 -0
- data/client/stylesheets/compoonents/changes-notification.scss +44 -0
- data/client/stylesheets/compoonents/grid-editors.scss +65 -0
- data/client/stylesheets/compoonents/grid.scss +301 -0
- data/client/stylesheets/compoonents/modal-dialog.scss +23 -0
- data/client/stylesheets/compoonents/record-finder.scss +71 -0
- data/client/stylesheets/compoonents/suggest.scss +266 -0
- data/client/stylesheets/fonts/icomoon.eot +0 -0
- data/client/stylesheets/fonts/icomoon.svg +160 -0
- data/client/stylesheets/fonts/icomoon.ttf +0 -0
- data/client/stylesheets/fonts/icomoon.woff +0 -0
- data/client/stylesheets/fonts/selection.json +3565 -0
- data/client/stylesheets/fonts/style.css +451 -0
- data/client/stylesheets/fonts.scss +38 -0
- data/client/stylesheets/forms.scss +75 -0
- data/client/stylesheets/index.css +4 -0
- data/client/stylesheets/keybindings.scss +6 -0
- data/client/stylesheets/lanes-workspace.scss +17 -0
- data/client/stylesheets/layout.scss +272 -0
- data/client/stylesheets/plugins/all.scss +2 -0
- data/client/stylesheets/plugins/overlay.scss +63 -0
- data/client/stylesheets/plugins/resize-sensor.scss +24 -0
- data/client/stylesheets/screens.scss +66 -0
- data/client/stylesheets/tabs.scss +148 -0
- data/client/stylesheets/vendor/bootstrap/_alerts.scss +68 -0
- data/client/stylesheets/vendor/bootstrap/_badges.scss +57 -0
- data/client/stylesheets/vendor/bootstrap/_breadcrumbs.scss +26 -0
- data/client/stylesheets/vendor/bootstrap/_button-groups.scss +240 -0
- data/client/stylesheets/vendor/bootstrap/_buttons.scss +157 -0
- data/client/stylesheets/vendor/bootstrap/_carousel.scss +243 -0
- data/client/stylesheets/vendor/bootstrap/_close.scss +35 -0
- data/client/stylesheets/vendor/bootstrap/_code.scss +68 -0
- data/client/stylesheets/vendor/bootstrap/_component-animations.scss +35 -0
- data/client/stylesheets/vendor/bootstrap/_dropdowns.scss +215 -0
- data/client/stylesheets/vendor/bootstrap/_forms.scss +538 -0
- data/client/stylesheets/vendor/bootstrap/_glyphicons.scss +237 -0
- data/client/stylesheets/vendor/bootstrap/_grid.scss +84 -0
- data/client/stylesheets/vendor/bootstrap/_input-groups.scss +166 -0
- data/client/stylesheets/vendor/bootstrap/_jumbotron.scss +48 -0
- data/client/stylesheets/vendor/bootstrap/_labels.scss +66 -0
- data/client/stylesheets/vendor/bootstrap/_list-group.scss +132 -0
- data/client/stylesheets/vendor/bootstrap/_media.scss +56 -0
- data/client/stylesheets/vendor/bootstrap/_mixins.scss +39 -0
- data/client/stylesheets/vendor/bootstrap/_modals.scss +150 -0
- data/client/stylesheets/vendor/bootstrap/_navbar.scss +659 -0
- data/client/stylesheets/vendor/bootstrap/_navs.scss +242 -0
- data/client/stylesheets/vendor/bootstrap/_normalize.scss +425 -0
- data/client/stylesheets/vendor/bootstrap/_pager.scss +55 -0
- data/client/stylesheets/vendor/bootstrap/_pagination.scss +88 -0
- data/client/stylesheets/vendor/bootstrap/_panels.scss +243 -0
- data/client/stylesheets/vendor/bootstrap/_popovers.scss +133 -0
- data/client/stylesheets/vendor/bootstrap/_print.scss +101 -0
- data/client/stylesheets/vendor/bootstrap/_progress-bars.scss +105 -0
- data/client/stylesheets/vendor/bootstrap/_responsive-embed.scss +34 -0
- data/client/stylesheets/vendor/bootstrap/_responsive-utilities.scss +174 -0
- data/client/stylesheets/vendor/bootstrap/_scaffolding.scss +150 -0
- data/client/stylesheets/vendor/bootstrap/_tables.scss +233 -0
- data/client/stylesheets/vendor/bootstrap/_theme.scss +258 -0
- data/client/stylesheets/vendor/bootstrap/_thumbnails.scss +38 -0
- data/client/stylesheets/vendor/bootstrap/_tooltip.scss +95 -0
- data/client/stylesheets/vendor/bootstrap/_type.scss +304 -0
- data/client/stylesheets/vendor/bootstrap/_utilities.scss +57 -0
- data/client/stylesheets/vendor/bootstrap/_variables.scss +850 -0
- data/client/stylesheets/vendor/bootstrap/_wells.scss +29 -0
- data/client/stylesheets/vendor/bootstrap/bootstrap.scss +50 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_alerts.scss +14 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_background-variant.scss +11 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_border-radius.scss +18 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_buttons.scss +50 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_center-block.scss +7 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_clearfix.scss +22 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_forms.scss +84 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_gradients.scss +58 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_grid-framework.scss +81 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_grid.scss +122 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_hide-text.scss +21 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_image.scss +34 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_labels.scss +12 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_list-group.scss +31 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_nav-divider.scss +10 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_nav-vertical-align.scss +9 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_opacity.scss +8 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_pagination.scss +23 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_panels.scss +24 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_progress-bar.scss +10 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_reset-filter.scss +8 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_resize.scss +6 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_responsive-visibility.scss +21 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_size.scss +10 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_tab-focus.scss +9 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_table-row.scss +28 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_text-emphasis.scss +11 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_text-overflow.scss +8 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_vendor-prefixes.scss +219 -0
- data/client/stylesheets/vendor/bootstrap-custom-grid.scss +85 -0
- data/client/stylesheets/vendor/bootstrap-custom-modals.scss +150 -0
- data/client/stylesheets/vendor/bootstrap.scss +69 -0
- data/client/stylesheets/vendor/dataTables.scss +4 -0
- data/config/database.yml +9 -0
- data/config/puma.rb +7 -0
- data/config.ru +4 -0
- data/db/migrate/20140615031600_create_hip_users.rb +17 -0
- data/db/seed.rb +37 -0
- data/foo/Gemfile +5 -0
- data/foo/Guardfile +13 -0
- data/foo/foo/Gemfile +5 -0
- data/foo/foo/lib/foo.rb +7 -0
- data/foo/lib/foo/version.rb +3 -0
- data/foo/lib/foo.rb +8 -0
- data/lanes.gemspec +54 -0
- data/lib/generators/lanes/migrations/install_generator.rb +42 -0
- data/lib/lanes/access/locked_fields.rb +43 -0
- data/lib/lanes/access/role.rb +58 -0
- data/lib/lanes/access/role_collection.rb +75 -0
- data/lib/lanes/access/roles/administrator.rb +25 -0
- data/lib/lanes/access/roles/support.rb +13 -0
- data/lib/lanes/access/user_maint_screen.rb +32 -0
- data/lib/lanes/access.rb +50 -0
- data/lib/lanes/api/asset_pipeline.rb +59 -0
- data/lib/lanes/api/authentication_helper.rb +21 -0
- data/lib/lanes/api/authentication_provider.rb +45 -0
- data/lib/lanes/api/controller.rb +290 -0
- data/lib/lanes/api/default_routes.rb +35 -0
- data/lib/lanes/api/eco.js +516 -0
- data/lib/lanes/api/error_formatter.rb +37 -0
- data/lib/lanes/api/helper_methods.rb +32 -0
- data/lib/lanes/api/javascript_processor.rb +116 -0
- data/lib/lanes/api/pub_sub.rb +33 -0
- data/lib/lanes/api/request_wrapper.rb +42 -0
- data/lib/lanes/api/root.rb +103 -0
- data/lib/lanes/api/skr_templates.rb +60 -0
- data/lib/lanes/api/test_specs.rb +59 -0
- data/lib/lanes/api/updates.rb +38 -0
- data/lib/lanes/api.rb +27 -0
- data/lib/lanes/cli.rb +13 -0
- data/lib/lanes/concerns/all.rb +16 -0
- data/lib/lanes/concerns/api_path.rb +21 -0
- data/lib/lanes/concerns/association_extensions.rb +85 -0
- data/lib/lanes/concerns/attr_accessor_with_default.rb +62 -0
- data/lib/lanes/concerns/code_identifier.rb +43 -0
- data/lib/lanes/concerns/export_associations.rb +52 -0
- data/lib/lanes/concerns/export_join_tables.rb +39 -0
- data/lib/lanes/concerns/export_methods.rb +104 -0
- data/lib/lanes/concerns/export_scope.rb +66 -0
- data/lib/lanes/concerns/exported_limit_evaluator.rb +17 -0
- data/lib/lanes/concerns/immutable_model.rb +32 -0
- data/lib/lanes/concerns/locked_fields.rb +84 -0
- data/lib/lanes/concerns/pub_sub.rb +105 -0
- data/lib/lanes/concerns/queries.rb +20 -0
- data/lib/lanes/concerns/random_hash_code.rb +40 -0
- data/lib/lanes/concerns/sanitize_api_data.rb +15 -0
- data/lib/lanes/concerns/set_attribute_data.rb +154 -0
- data/lib/lanes/concerns/track_modifications.rb +51 -0
- data/lib/lanes/concerns/visible_id_identifier.rb +53 -0
- data/lib/lanes/configuration.rb +85 -0
- data/lib/lanes/db/migration_helpers.rb +178 -0
- data/lib/lanes/db/migrations.rb +13 -0
- data/lib/lanes/db/seed.rb +27 -0
- data/lib/lanes/db.rb +86 -0
- data/lib/lanes/environment.rb +19 -0
- data/lib/lanes/extension.rb +72 -0
- data/lib/lanes/generators/app/Gemfile +5 -0
- data/lib/lanes/generators/app/Guardfile +13 -0
- data/lib/lanes/generators/app/Rakefile +9 -0
- data/lib/lanes/generators/app/config/database.yml +9 -0
- data/lib/lanes/generators/app/config.ru +4 -0
- data/lib/lanes/generators/app/lib/main_class/version.rb +3 -0
- data/lib/lanes/generators/app/lib/main_class.rb +8 -0
- data/lib/lanes/generators/app.rb +36 -0
- data/lib/lanes/guard_tasks.rb +44 -0
- data/lib/lanes/logger.rb +37 -0
- data/lib/lanes/model.rb +26 -0
- data/lib/lanes/numbers.rb +72 -0
- data/lib/lanes/rails_engine.rb +5 -0
- data/lib/lanes/screens.rb +126 -0
- data/lib/lanes/spec_asset_expander.rb +43 -0
- data/lib/lanes/strings.rb +56 -0
- data/lib/lanes/user.rb +127 -0
- data/lib/lanes/validators/all.rb +2 -0
- data/lib/lanes/validators/email.rb +17 -0
- data/lib/lanes/validators/set.rb +18 -0
- data/lib/lanes/version.rb +5 -0
- data/lib/lanes.rb +22 -0
- data/npm-build/README +1 -0
- data/npm-build/compile.coffee +15 -0
- data/npm-build/package.json +59 -0
- data/npm-build/shims/underscore.js +1416 -0
- data/npm-build/template.js +33 -0
- data/public/javascripts/jasmine_examples/Player.js +22 -0
- data/public/javascripts/jasmine_examples/Song.js +7 -0
- data/spec/api/javascript_processor_spec.rb +107 -0
- data/spec/api/user_spec.rb +52 -0
- data/spec/client/component/ChoicesInputSpec.coffee +12 -0
- data/spec/client/component/foo_spec.coffee +4 -0
- data/spec/client/foo_spec.js +0 -0
- data/spec/client/jasmine_examples/PlayerSpec.js +0 -0
- data/spec/client/support/jasmine.yml +128 -0
- data/spec/client/support/jasmine_helper.rb +15 -0
- data/spec/concerns/api_path_spec.rb +14 -0
- data/spec/concerns/association_extensions_spec.rb +30 -0
- data/spec/concerns/attr_accessor_with_default_spec.rb +57 -0
- data/spec/concerns/code_identifier_spec.rb +45 -0
- data/spec/concerns/export_associations_spec.rb +7 -0
- data/spec/concerns/export_methods_spec.rb +43 -0
- data/spec/concerns/export_scope_spec.rb +15 -0
- data/spec/concerns/exported_limits_spec.rb +47 -0
- data/spec/concerns/pub_sub_spec.rb +83 -0
- data/spec/concerns/set_attribute_data_spec.rb +66 -0
- data/spec/configuration_spec.rb +26 -0
- data/spec/fixtures/lanes/users.yml +13 -0
- data/spec/helpers/.gitkeep +0 -0
- data/spec/helpers/SpecHelper.js +18 -0
- data/spec/locked_fields_spec.rb +27 -0
- data/spec/numbers_spec.rb +26 -0
- data/spec/role_collection_spec.rb +19 -0
- data/spec/spec_helper.rb +163 -0
- data/spec/strings_spec.rb +41 -0
- data/spec/testing_models.rb +54 -0
- data/spec/user_role_spec.rb +7 -0
- data/spec/user_spec.rb +53 -0
- data/tasks/migrations.rake +22 -0
- data/tasks/publish.rake +8 -0
- data/views/index.erb +29 -0
- data/views/specs.erb +25 -0
- data/yard_ext/all.rb +9 -0
- data/yard_ext/code_identifier_handler.rb +33 -0
- data/yard_ext/concern_meta_methods.rb +60 -0
- data/yard_ext/config_options.rb +27 -0
- data/yard_ext/exported_scope.rb +4 -0
- data/yard_ext/immutable_handler.rb +17 -0
- data/yard_ext/json_attr_accessor.rb +22 -0
- data/yard_ext/locked_fields_handler.rb +21 -0
- data/yard_ext/templates/default/layout/html/layout.erb +20 -0
- data/yard_ext/templates/default/method_details/html/github_link.erb +1 -0
- data/yard_ext/templates/default/method_details/setup.rb +3 -0
- data/yard_ext/validators.rb +1 -0
- data/yard_ext/visible_id_handler.rb +38 -0
- metadata +772 -0
@@ -0,0 +1,3565 @@
|
|
1
|
+
{
|
2
|
+
"IcoMoonType": "selection",
|
3
|
+
"icons": [
|
4
|
+
{
|
5
|
+
"icon": {
|
6
|
+
"paths": [
|
7
|
+
"M829.248 420.576c-13.984-146.016-135.552-260.576-285.248-260.576-115.808 0-214.944 68.736-260.672 167.36-13.76-4.352-28.096-7.36-43.296-7.36-79.52 0-144 64.512-144 144 0 15.808 3.168 30.752 7.872 44.928-61.856 36.064-103.872 102.24-103.872 179.008 0 114.88 93.12 208 208 208v0.064l575.968-0.064c132.576 0 240-107.424 240-240 0-116.992-83.872-214.176-194.752-235.36zM784 831.936v0.064h-575.968c-79.392-0.064-144-64.64-144-144.064 0-51.2 26.976-97.44 72.128-123.744 43.872-25.184 46.88-30.176 28.48-75.424-3.104-9.312-4.608-17.408-4.608-24.736 0-44.128 35.872-80 80-80 0 0 20.992-1.504 43.296 7.36 36.704 14.624 40.704 0.64 58.048-37.088 36.704-79.136 116.224-130.304 202.624-130.304 115.2 0 210.432 87.136 221.568 202.688 3.936 45.824 3.936 45.824 51.68 56.736 82.752 15.808 142.752 88.384 142.752 172.512 0 97.056-78.944 176-176 176z"
|
8
|
+
],
|
9
|
+
"attrs": [
|
10
|
+
{
|
11
|
+
"opacity": 1,
|
12
|
+
"visibility": false
|
13
|
+
}
|
14
|
+
],
|
15
|
+
"grid": 32,
|
16
|
+
"tags": [
|
17
|
+
"cloud"
|
18
|
+
]
|
19
|
+
},
|
20
|
+
"attrs": [
|
21
|
+
{
|
22
|
+
"opacity": 1,
|
23
|
+
"visibility": false
|
24
|
+
}
|
25
|
+
],
|
26
|
+
"properties": {
|
27
|
+
"order": 142,
|
28
|
+
"id": 0,
|
29
|
+
"prevSize": 32,
|
30
|
+
"code": 58953,
|
31
|
+
"name": "cloud",
|
32
|
+
"ligatures": ""
|
33
|
+
},
|
34
|
+
"setIdx": 0,
|
35
|
+
"iconIdx": 0
|
36
|
+
},
|
37
|
+
{
|
38
|
+
"icon": {
|
39
|
+
"paths": [
|
40
|
+
"M891.004 360.060c-3.242-128.698-108.458-232.060-237.862-232.060-75.792 0-143.266 35.494-186.854 90.732-24.442-31.598-62.69-51.96-105.708-51.96-73.81 0-133.642 59.874-133.642 133.722 0 6.436 0.48 12.76 1.364 18.954-11.222-2.024-22.766-3.138-34.57-3.138-106.998-0.002-193.732 86.786-193.732 193.842 0 107.062 86.734 193.848 193.73 193.848h99.76l218.51 218.51 218.51-218.51 119.482-0.012c96.138-0.184 174.008-78.212 174.008-174.446 0-82.090-56.678-150.9-132.996-169.482zM512 832l-192-192h128v-192h128v192h128l-192 192z"
|
41
|
+
],
|
42
|
+
"tags": [
|
43
|
+
"cloud-download",
|
44
|
+
"download",
|
45
|
+
"store",
|
46
|
+
"save"
|
47
|
+
],
|
48
|
+
"grid": 16
|
49
|
+
},
|
50
|
+
"properties": {
|
51
|
+
"id": 187,
|
52
|
+
"order": 141,
|
53
|
+
"prevSize": 32,
|
54
|
+
"code": 58954,
|
55
|
+
"name": "cloud-download",
|
56
|
+
"ligatures": ""
|
57
|
+
},
|
58
|
+
"setIdx": 1,
|
59
|
+
"iconIdx": 187
|
60
|
+
},
|
61
|
+
{
|
62
|
+
"icon": {
|
63
|
+
"paths": [
|
64
|
+
"M384 512h-320v-128h320v-128l192 192-192 192zM1024 0v832l-384 192v-192h-384v-256h64v192h320v-576l256-128h-576v256h-64v-320z"
|
65
|
+
],
|
66
|
+
"tags": [
|
67
|
+
"enter",
|
68
|
+
"sign in",
|
69
|
+
"log in",
|
70
|
+
"login"
|
71
|
+
],
|
72
|
+
"grid": 16
|
73
|
+
},
|
74
|
+
"properties": {
|
75
|
+
"id": 259,
|
76
|
+
"order": 140,
|
77
|
+
"prevSize": 32,
|
78
|
+
"code": 58955,
|
79
|
+
"name": "enter",
|
80
|
+
"ligatures": ""
|
81
|
+
},
|
82
|
+
"setIdx": 1,
|
83
|
+
"iconIdx": 259
|
84
|
+
},
|
85
|
+
{
|
86
|
+
"icon": {
|
87
|
+
"paths": [
|
88
|
+
"M768 640v-128h-320v-128h320v-128l192 192zM704 576v256h-320v192l-384-192v-832h704v320h-64v-256h-512l256 128v576h256v-192z"
|
89
|
+
],
|
90
|
+
"tags": [
|
91
|
+
"exit",
|
92
|
+
"sign out",
|
93
|
+
"log out",
|
94
|
+
"quit",
|
95
|
+
"close",
|
96
|
+
"logout"
|
97
|
+
],
|
98
|
+
"grid": 16
|
99
|
+
},
|
100
|
+
"properties": {
|
101
|
+
"id": 260,
|
102
|
+
"order": 139,
|
103
|
+
"prevSize": 32,
|
104
|
+
"code": 58956,
|
105
|
+
"name": "exit",
|
106
|
+
"ligatures": ""
|
107
|
+
},
|
108
|
+
"setIdx": 1,
|
109
|
+
"iconIdx": 260
|
110
|
+
},
|
111
|
+
{
|
112
|
+
"icon": {
|
113
|
+
"paths": [
|
114
|
+
"M512.002 0l-512.002 512h320v511.998l384 0.002v-512h320z"
|
115
|
+
],
|
116
|
+
"tags": [
|
117
|
+
"arrow-up",
|
118
|
+
"upload",
|
119
|
+
"top"
|
120
|
+
],
|
121
|
+
"grid": 16
|
122
|
+
},
|
123
|
+
"properties": {
|
124
|
+
"id": 288,
|
125
|
+
"order": 146,
|
126
|
+
"prevSize": 32,
|
127
|
+
"code": 58957,
|
128
|
+
"name": "arrow-up",
|
129
|
+
"ligatures": ""
|
130
|
+
},
|
131
|
+
"setIdx": 1,
|
132
|
+
"iconIdx": 288
|
133
|
+
},
|
134
|
+
{
|
135
|
+
"icon": {
|
136
|
+
"paths": [
|
137
|
+
"M256 0l256.002 256-512.002 512 256 256 512-512 256 255.998v-767.998z"
|
138
|
+
],
|
139
|
+
"tags": [
|
140
|
+
"arrow-up-right",
|
141
|
+
"up",
|
142
|
+
"right",
|
143
|
+
"arrow",
|
144
|
+
"top right",
|
145
|
+
"up right"
|
146
|
+
],
|
147
|
+
"grid": 16
|
148
|
+
},
|
149
|
+
"properties": {
|
150
|
+
"id": 289,
|
151
|
+
"order": 147,
|
152
|
+
"prevSize": 32,
|
153
|
+
"code": 58958,
|
154
|
+
"name": "arrow-up-right",
|
155
|
+
"ligatures": ""
|
156
|
+
},
|
157
|
+
"setIdx": 1,
|
158
|
+
"iconIdx": 289
|
159
|
+
},
|
160
|
+
{
|
161
|
+
"icon": {
|
162
|
+
"paths": [
|
163
|
+
"M512 1024l512-512h-320v-511.998l-384-0.002v512h-320z"
|
164
|
+
],
|
165
|
+
"tags": [
|
166
|
+
"arrow-down",
|
167
|
+
"download",
|
168
|
+
"bottom"
|
169
|
+
],
|
170
|
+
"grid": 16
|
171
|
+
},
|
172
|
+
"properties": {
|
173
|
+
"id": 292,
|
174
|
+
"order": 144,
|
175
|
+
"prevSize": 32,
|
176
|
+
"code": 58959,
|
177
|
+
"name": "arrow-down",
|
178
|
+
"ligatures": ""
|
179
|
+
},
|
180
|
+
"setIdx": 1,
|
181
|
+
"iconIdx": 292
|
182
|
+
},
|
183
|
+
{
|
184
|
+
"icon": {
|
185
|
+
"paths": [
|
186
|
+
"M0 512l512 512v-320h511.998l0.002-384h-512v-320z"
|
187
|
+
],
|
188
|
+
"tags": [
|
189
|
+
"arrow-left",
|
190
|
+
"left",
|
191
|
+
"previous"
|
192
|
+
],
|
193
|
+
"grid": 16
|
194
|
+
},
|
195
|
+
"properties": {
|
196
|
+
"id": 294,
|
197
|
+
"order": 143,
|
198
|
+
"prevSize": 32,
|
199
|
+
"code": 58960,
|
200
|
+
"name": "arrow-left",
|
201
|
+
"ligatures": ""
|
202
|
+
},
|
203
|
+
"setIdx": 1,
|
204
|
+
"iconIdx": 294
|
205
|
+
},
|
206
|
+
{
|
207
|
+
"icon": {
|
208
|
+
"paths": [
|
209
|
+
"M1024 512c0 282.77-229.23 512-512 512s-512-229.23-512-512 229.23-512 512-512 512 229.23 512 512zM96 512c0 229.75 186.25 416 416 416s416-186.25 416-416-186.25-416-416-416-416 186.25-416 416zM557.254 210.744l256 256.002c24.994 24.992 24.994 65.514 0 90.508s-65.516 24.994-90.51 0l-146.744-146.744v357.49c0 35.346-28.654 64-64 64s-64-28.654-64-64v-357.49l-146.744 146.746c-24.994 24.994-65.518 24.994-90.512 0-12.496-12.498-18.744-28.878-18.744-45.256s6.248-32.758 18.744-45.254l256-256.002c24.994-24.992 65.518-24.992 90.51 0z"
|
210
|
+
],
|
211
|
+
"tags": [
|
212
|
+
"arrow-up",
|
213
|
+
"upload",
|
214
|
+
"top"
|
215
|
+
],
|
216
|
+
"grid": 16
|
217
|
+
},
|
218
|
+
"properties": {
|
219
|
+
"id": 304,
|
220
|
+
"order": 152,
|
221
|
+
"prevSize": 32,
|
222
|
+
"code": 58961,
|
223
|
+
"name": "arrow-up2",
|
224
|
+
"ligatures": ""
|
225
|
+
},
|
226
|
+
"setIdx": 1,
|
227
|
+
"iconIdx": 304
|
228
|
+
},
|
229
|
+
{
|
230
|
+
"icon": {
|
231
|
+
"paths": [
|
232
|
+
"M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM512 928c-229.75 0-416-186.25-416-416s186.25-416 416-416 416 186.25 416 416-186.25 416-416 416zM813.256 466.746l-256.002-256c-24.992-24.994-65.514-24.994-90.508 0s-24.994 65.516 0 90.51l146.744 146.744h-357.49c-35.346 0-64 28.654-64 64s28.654 64 64 64h357.49l-146.746 146.744c-24.994 24.994-24.994 65.518 0 90.512 12.498 12.496 28.878 18.744 45.256 18.744s32.758-6.248 45.254-18.744l256.002-256c24.992-24.994 24.992-65.518-0-90.51z"
|
233
|
+
],
|
234
|
+
"tags": [
|
235
|
+
"arrow-right",
|
236
|
+
"right",
|
237
|
+
"next"
|
238
|
+
],
|
239
|
+
"grid": 16
|
240
|
+
},
|
241
|
+
"properties": {
|
242
|
+
"id": 306,
|
243
|
+
"order": 148,
|
244
|
+
"prevSize": 32,
|
245
|
+
"code": 58962,
|
246
|
+
"name": "arrow-right",
|
247
|
+
"ligatures": ""
|
248
|
+
},
|
249
|
+
"setIdx": 1,
|
250
|
+
"iconIdx": 306
|
251
|
+
},
|
252
|
+
{
|
253
|
+
"icon": {
|
254
|
+
"paths": [
|
255
|
+
"M1024 512c0-282.77-229.23-512-512-512s-512 229.23-512 512 229.23 512 512 512 512-229.23 512-512zM96 512c0-229.75 186.25-416 416-416s416 186.25 416 416-186.25 416-416 416-416-186.25-416-416zM557.254 813.256l256-256.002c24.994-24.992 24.994-65.514 0-90.508s-65.516-24.994-90.51 0l-146.744 146.744v-357.49c0-35.346-28.654-64-64-64s-64 28.654-64 64v357.49l-146.744-146.746c-24.994-24.994-65.518-24.994-90.512 0-12.496 12.498-18.744 28.878-18.744 45.256s6.248 32.758 18.744 45.254l256 256.002c24.994 24.992 65.518 24.992 90.51-0z"
|
256
|
+
],
|
257
|
+
"tags": [
|
258
|
+
"arrow-down",
|
259
|
+
"download",
|
260
|
+
"bottom"
|
261
|
+
],
|
262
|
+
"grid": 16
|
263
|
+
},
|
264
|
+
"properties": {
|
265
|
+
"id": 308,
|
266
|
+
"order": 150,
|
267
|
+
"prevSize": 32,
|
268
|
+
"code": 58963,
|
269
|
+
"name": "arrow-down2",
|
270
|
+
"ligatures": ""
|
271
|
+
},
|
272
|
+
"setIdx": 1,
|
273
|
+
"iconIdx": 308
|
274
|
+
},
|
275
|
+
{
|
276
|
+
"icon": {
|
277
|
+
"paths": [
|
278
|
+
"M512 0c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 928c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM210.744 466.746l256.002-256c24.992-24.994 65.514-24.994 90.508 0s24.994 65.516 0 90.51l-146.744 146.744h357.49c35.346 0 64 28.654 64 64s-28.654 64-64 64h-357.49l146.746 146.744c24.994 24.994 24.994 65.518 0 90.512-12.498 12.496-28.878 18.744-45.256 18.744s-32.758-6.248-45.254-18.744l-256.002-256c-24.992-24.994-24.992-65.518 0-90.51z"
|
279
|
+
],
|
280
|
+
"tags": [
|
281
|
+
"arrow-left",
|
282
|
+
"left",
|
283
|
+
"previous"
|
284
|
+
],
|
285
|
+
"grid": 16
|
286
|
+
},
|
287
|
+
"properties": {
|
288
|
+
"id": 310,
|
289
|
+
"order": 151,
|
290
|
+
"prevSize": 32,
|
291
|
+
"code": 58964,
|
292
|
+
"name": "arrow-left2",
|
293
|
+
"ligatures": ""
|
294
|
+
},
|
295
|
+
"setIdx": 1,
|
296
|
+
"iconIdx": 310
|
297
|
+
},
|
298
|
+
{
|
299
|
+
"icon": {
|
300
|
+
"paths": [
|
301
|
+
"M576.234 289.27l242.712-81.432 203.584 606.784-242.712 81.432zM0 896h256v-704h-256v704zM64 320h128v64h-128v-64zM320 896h256v-704h-256v704zM384 320h128v64h-128v-64z"
|
302
|
+
],
|
303
|
+
"tags": [
|
304
|
+
"books",
|
305
|
+
"library",
|
306
|
+
"archive"
|
307
|
+
],
|
308
|
+
"grid": 16
|
309
|
+
},
|
310
|
+
"properties": {
|
311
|
+
"id": 32,
|
312
|
+
"order": 7,
|
313
|
+
"prevSize": 32,
|
314
|
+
"code": 58881,
|
315
|
+
"name": "books",
|
316
|
+
"ligatures": ""
|
317
|
+
},
|
318
|
+
"setIdx": 2,
|
319
|
+
"iconIdx": 65
|
320
|
+
},
|
321
|
+
{
|
322
|
+
"icon": {
|
323
|
+
"paths": [
|
324
|
+
"M512 0l-512 320h1024l-512-320zM800 384l32 64v384h128v-384l32-64h-192zM544 384l32 64v384h128v-384l32-64h-192zM288 384l32 64v384h128v-384l32-64h-192zM32 384l32 64v384h128v-384l32-64h-192zM32 896l-32 128h1024l-32-128h-960zM576 192c0 35.346-28.654 64-64 64s-64-28.654-64-64 28.654-64 64-64c35.346 0 64 28.654 64 64z"
|
325
|
+
],
|
326
|
+
"tags": [
|
327
|
+
"library",
|
328
|
+
"reading",
|
329
|
+
"building"
|
330
|
+
],
|
331
|
+
"grid": 16
|
332
|
+
},
|
333
|
+
"properties": {
|
334
|
+
"id": 33,
|
335
|
+
"order": 14,
|
336
|
+
"prevSize": 32,
|
337
|
+
"code": 58882,
|
338
|
+
"name": "library",
|
339
|
+
"ligatures": ""
|
340
|
+
},
|
341
|
+
"setIdx": 2,
|
342
|
+
"iconIdx": 66
|
343
|
+
},
|
344
|
+
{
|
345
|
+
"icon": {
|
346
|
+
"paths": [
|
347
|
+
"M977.582 194.462c-33.984-9.708-69.41 9.97-79.12 43.956l-5.022 17.582h-596.942l-8.992-71.938c-4.004-32.028-31.23-56.062-63.506-56.062h-160c-35.346 0-64 28.654-64 64s28.654 64 64 64h103.502l56.992 455.938c4.004 32.026 31.23 56.062 63.506 56.062h544c28.574 0 53.688-18.944 61.538-46.418l128-448c9.71-33.986-9.97-69.41-43.956-79.12zM512 512v-64h127.996v64h-127.996zM639.996 576v64h-127.996v-64h127.996zM512 384v-64h127.996v64h-127.996zM304.498 320h143.502v64h-135.502l-8-64zM320.498 448h127.502v64h-119.502l-8-64zM336.498 576h111.502v64h-103.502l-8-64zM783.724 640h-79.728v-64h98.014l-18.286 64zM820.296 512h-116.3v-64h134.586l-18.286 64zM856.868 384h-152.872v-64h171.158l-18.286 64zM256 928c0-53.019 42.981-96 96-96s96 42.981 96 96c0 53.019-42.981 96-96 96-53.019 0-96-42.981-96-96zM640 928c0-53.019 42.981-96 96-96s96 42.981 96 96c0 53.019-42.981 96-96 96-53.019 0-96-42.981-96-96z"
|
348
|
+
],
|
349
|
+
"tags": [
|
350
|
+
"cart",
|
351
|
+
"ecommerce",
|
352
|
+
"shopping",
|
353
|
+
"products",
|
354
|
+
"purchase",
|
355
|
+
"buy",
|
356
|
+
"store"
|
357
|
+
],
|
358
|
+
"grid": 16
|
359
|
+
},
|
360
|
+
"properties": {
|
361
|
+
"id": 55,
|
362
|
+
"order": 15,
|
363
|
+
"prevSize": 32,
|
364
|
+
"code": 58883,
|
365
|
+
"name": "cart",
|
366
|
+
"ligatures": ""
|
367
|
+
},
|
368
|
+
"setIdx": 2,
|
369
|
+
"iconIdx": 67
|
370
|
+
},
|
371
|
+
{
|
372
|
+
"icon": {
|
373
|
+
"paths": [
|
374
|
+
"M480 64c-265.096 0-480 214.904-480 480 0 265.098 214.904 480 480 480 265.098 0 480-214.902 480-480 0-265.096-214.902-480-480-480zM480 928c-212.078 0-384-171.922-384-384s171.922-384 384-384c212.078 0 384 171.922 384 384 0 212.078-171.922 384-384 384zM512 512v-128h128v-64h-128v-64h-64v64h-128v256h128v128h-128v64h128v64h64v-64h128.002l-0.002-256h-128zM448 512h-64v-128h64v128zM576.002 704h-64.002v-128h64.002v128z"
|
375
|
+
],
|
376
|
+
"tags": [
|
377
|
+
"coin",
|
378
|
+
"money",
|
379
|
+
"cash"
|
380
|
+
],
|
381
|
+
"grid": 16
|
382
|
+
},
|
383
|
+
"properties": {
|
384
|
+
"id": 56,
|
385
|
+
"order": 16,
|
386
|
+
"prevSize": 32,
|
387
|
+
"code": 58884,
|
388
|
+
"name": "coin",
|
389
|
+
"ligatures": ""
|
390
|
+
},
|
391
|
+
"setIdx": 2,
|
392
|
+
"iconIdx": 68
|
393
|
+
},
|
394
|
+
{
|
395
|
+
"icon": {
|
396
|
+
"paths": [
|
397
|
+
"M928 128h-832c-52.8 0-96 43.2-96 96v640c0 52.8 43.2 96 96 96h832c52.8 0 96-43.2 96-96v-640c0-52.8-43.2-96-96-96zM398.74 550.372l-270.74 210.892v-501.642l270.74 290.75zM176.38 256h671.24l-335.62 252-335.62-252zM409.288 561.698l102.712 110.302 102.71-110.302 210.554 270.302h-626.528l210.552-270.302zM625.26 550.372l270.74-290.75v501.642l-270.74-210.892z"
|
398
|
+
],
|
399
|
+
"tags": [
|
400
|
+
"envelope",
|
401
|
+
"mail",
|
402
|
+
"email",
|
403
|
+
"contact",
|
404
|
+
"letter"
|
405
|
+
],
|
406
|
+
"grid": 16
|
407
|
+
},
|
408
|
+
"properties": {
|
409
|
+
"id": 64,
|
410
|
+
"order": 17,
|
411
|
+
"prevSize": 32,
|
412
|
+
"code": 58885,
|
413
|
+
"name": "envelope",
|
414
|
+
"ligatures": ""
|
415
|
+
},
|
416
|
+
"setIdx": 2,
|
417
|
+
"iconIdx": 69
|
418
|
+
},
|
419
|
+
{
|
420
|
+
"icon": {
|
421
|
+
"paths": [
|
422
|
+
"M0 192l320-128v768l-320 128zM704 192v768l-320-106.666v-768zM1024 64v768l-256 102.4v-768z"
|
423
|
+
],
|
424
|
+
"tags": [
|
425
|
+
"map",
|
426
|
+
"location",
|
427
|
+
"guide"
|
428
|
+
],
|
429
|
+
"grid": 16
|
430
|
+
},
|
431
|
+
"properties": {
|
432
|
+
"id": 69,
|
433
|
+
"order": 40,
|
434
|
+
"prevSize": 32,
|
435
|
+
"code": 58886,
|
436
|
+
"name": "map",
|
437
|
+
"ligatures": ""
|
438
|
+
},
|
439
|
+
"setIdx": 2,
|
440
|
+
"iconIdx": 70
|
441
|
+
},
|
442
|
+
{
|
443
|
+
"icon": {
|
444
|
+
"paths": [
|
445
|
+
"M658.744 749.256l-210.744-210.746v-282.51h128v229.49l173.256 173.254zM512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM512 896c-212.078 0-384-171.922-384-384s171.922-384 384-384c212.078 0 384 171.922 384 384 0 212.078-171.922 384-384 384z"
|
446
|
+
],
|
447
|
+
"tags": [
|
448
|
+
"clock",
|
449
|
+
"time",
|
450
|
+
"schedule"
|
451
|
+
],
|
452
|
+
"grid": 16
|
453
|
+
},
|
454
|
+
"properties": {
|
455
|
+
"id": 72,
|
456
|
+
"order": 116,
|
457
|
+
"prevSize": 32,
|
458
|
+
"code": 58927,
|
459
|
+
"name": "clock",
|
460
|
+
"ligatures": ""
|
461
|
+
},
|
462
|
+
"setIdx": 2,
|
463
|
+
"iconIdx": 71
|
464
|
+
},
|
465
|
+
{
|
466
|
+
"icon": {
|
467
|
+
"paths": [
|
468
|
+
"M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM658.744 749.256l-210.744-210.746v-282.51h128v229.49l173.256 173.254-90.512 90.512z"
|
469
|
+
],
|
470
|
+
"tags": [
|
471
|
+
"clock",
|
472
|
+
"time",
|
473
|
+
"schedule"
|
474
|
+
],
|
475
|
+
"grid": 16
|
476
|
+
},
|
477
|
+
"properties": {
|
478
|
+
"id": 73,
|
479
|
+
"order": 117,
|
480
|
+
"prevSize": 32,
|
481
|
+
"code": 58928,
|
482
|
+
"name": "clock2",
|
483
|
+
"ligatures": ""
|
484
|
+
},
|
485
|
+
"setIdx": 2,
|
486
|
+
"iconIdx": 72
|
487
|
+
},
|
488
|
+
{
|
489
|
+
"icon": {
|
490
|
+
"paths": [
|
491
|
+
"M512 128c-247.424 0-448 200.576-448 448s200.576 448 448 448 448-200.576 448-448-200.576-448-448-448zM512 936c-198.824 0-360-161.178-360-360 0-198.824 161.176-360 360-360 198.822 0 360 161.176 360 360 0 198.822-161.178 360-360 360zM934.784 287.174c16.042-28.052 25.216-60.542 25.216-95.174 0-106.040-85.96-192-192-192-61.818 0-116.802 29.222-151.92 74.596 131.884 27.236 245.206 105.198 318.704 212.578zM407.92 74.596c-35.116-45.374-90.102-74.596-151.92-74.596-106.040 0-192 85.96-192 192 0 34.632 9.174 67.122 25.216 95.174 73.5-107.38 186.822-185.342 318.704-212.578zM448 320h64v320h-64v-320zM512 576h192v64h-192v-64z"
|
492
|
+
],
|
493
|
+
"tags": [
|
494
|
+
"alarm",
|
495
|
+
"clock",
|
496
|
+
"time"
|
497
|
+
],
|
498
|
+
"grid": 16
|
499
|
+
},
|
500
|
+
"properties": {
|
501
|
+
"id": 75,
|
502
|
+
"order": 18,
|
503
|
+
"prevSize": 32,
|
504
|
+
"code": 58887,
|
505
|
+
"name": "alarm",
|
506
|
+
"ligatures": ""
|
507
|
+
},
|
508
|
+
"setIdx": 2,
|
509
|
+
"iconIdx": 73
|
510
|
+
},
|
511
|
+
{
|
512
|
+
"icon": {
|
513
|
+
"paths": [
|
514
|
+
"M1025.5 800c0-288-256-224-256-448 0-18.56-1.788-34.42-5.048-47.928-16.83-113.018-92.156-203.72-189.772-231.36 0.866-3.948 1.32-8.032 1.32-12.21-0-33.278-28.8-60.502-64-60.502-35.2 0-64 27.224-64 60.5 0 4.18 0.456 8.264 1.32 12.21-109.47 30.998-190.914 141.298-193.254 273.442-0.040 1.92-0.066 3.864-0.066 5.846-0 224.002-256 160.002-256 448.002 0 76.226 170.59 139.996 398.97 156.080 21.524 40.404 64.056 67.92 113.030 67.92s91.508-27.516 113.030-67.92c228.38-16.084 398.97-79.854 398.97-156.080 0-0.228-0.026-0.456-0.028-0.682l1.528 0.682zM826.246 854.096c-54.23 14.47-118.158 24.876-186.768 30.648-5.704-65.418-60.582-116.744-127.478-116.744s-121.774 51.326-127.478 116.744c-68.608-5.772-132.538-16.178-186.768-30.648-74.63-19.914-110.31-42.19-123.368-54.096 13.058-11.906 48.738-34.182 123.368-54.096 86.772-23.152 198.372-35.904 314.246-35.904s227.474 12.752 314.246 35.904c74.63 19.914 110.31 42.19 123.368 54.096-13.058 11.906-48.738 34.182-123.368 54.096z"
|
515
|
+
],
|
516
|
+
"tags": [
|
517
|
+
"bell",
|
518
|
+
"alarm",
|
519
|
+
"notification"
|
520
|
+
],
|
521
|
+
"grid": 16
|
522
|
+
},
|
523
|
+
"properties": {
|
524
|
+
"id": 76,
|
525
|
+
"order": 106,
|
526
|
+
"prevSize": 32,
|
527
|
+
"code": 58922,
|
528
|
+
"name": "bell",
|
529
|
+
"ligatures": ""
|
530
|
+
},
|
531
|
+
"setIdx": 2,
|
532
|
+
"iconIdx": 74
|
533
|
+
},
|
534
|
+
{
|
535
|
+
"icon": {
|
536
|
+
"paths": [
|
537
|
+
"M512.002 193.212v-65.212h128v-64c0-35.346-28.654-64-64.002-64h-191.998c-35.346 0-64 28.654-64 64v64h128v65.212c-214.798 16.338-384 195.802-384 414.788 0 229.75 186.25 416 416 416 229.75 0 416-186.25 416-416 0-218.984-169.202-398.448-384-414.788zM706.276 834.274c-60.442 60.44-140.798 93.726-226.274 93.726s-165.834-33.286-226.274-93.726c-60.44-60.44-93.726-140.8-93.726-226.274s33.286-165.834 93.726-226.274c58.040-58.038 134.448-91.018 216.114-93.548l-21.678 314.020c-1.86 26.29 12.464 37.802 31.836 37.802s33.698-11.512 31.836-37.802l-21.676-314.022c81.666 2.532 158.076 35.512 216.116 93.55 60.44 60.44 93.726 140.8 93.726 226.274s-33.286 165.834-93.726 226.274z"
|
538
|
+
],
|
539
|
+
"tags": [
|
540
|
+
"stopwatch",
|
541
|
+
"time",
|
542
|
+
"speed",
|
543
|
+
"meter",
|
544
|
+
"chronometer"
|
545
|
+
],
|
546
|
+
"grid": 16
|
547
|
+
},
|
548
|
+
"properties": {
|
549
|
+
"id": 77,
|
550
|
+
"order": 115,
|
551
|
+
"prevSize": 32,
|
552
|
+
"code": 58929,
|
553
|
+
"name": "stopwatch",
|
554
|
+
"ligatures": ""
|
555
|
+
},
|
556
|
+
"setIdx": 2,
|
557
|
+
"iconIdx": 75
|
558
|
+
},
|
559
|
+
{
|
560
|
+
"icon": {
|
561
|
+
"paths": [
|
562
|
+
"M704 0h-384l-192 128v256h768v-256l-192-128zM640 320h-64v-42.666c0-11.734-9.6-21.334-21.334-21.334h-85.332c-11.732 0-21.334 9.6-21.334 21.334l-0 42.666h-64v-106.666c0-11.734 9.602-21.334 21.334-21.334h213.33c11.734 0 21.336 9.6 21.336 21.334v106.666zM128 704.002h768v-256.002h-768v256.002zM384 533.332c0-11.734 9.602-21.332 21.334-21.332h213.33c11.734 0 21.336 9.598 21.336 21.332v106.668h-64v-42.668c0-11.734-9.6-21.332-21.334-21.332h-85.332c-11.732 0-21.334 9.598-21.334 21.332l-0 42.668h-64v-106.668zM128 1024h768v-255.998h-768v255.998zM384 853.332c0-11.734 9.602-21.332 21.334-21.332h213.33c11.734 0 21.336 9.598 21.336 21.332v106.668h-64v-42.668c0-11.734-9.6-21.332-21.334-21.332h-85.332c-11.732 0-21.334 9.598-21.334 21.332l-0 42.668h-64v-106.668z"
|
563
|
+
],
|
564
|
+
"tags": [
|
565
|
+
"cabinet",
|
566
|
+
"storage",
|
567
|
+
"drawer",
|
568
|
+
"archive",
|
569
|
+
"office"
|
570
|
+
],
|
571
|
+
"grid": 16
|
572
|
+
},
|
573
|
+
"properties": {
|
574
|
+
"id": 88,
|
575
|
+
"order": 19,
|
576
|
+
"prevSize": 32,
|
577
|
+
"code": 58888,
|
578
|
+
"name": "cabinet",
|
579
|
+
"ligatures": ""
|
580
|
+
},
|
581
|
+
"setIdx": 2,
|
582
|
+
"iconIdx": 76
|
583
|
+
},
|
584
|
+
{
|
585
|
+
"icon": {
|
586
|
+
"paths": [
|
587
|
+
"M704 192h-384l-320 384v160 96c0 35.346 28.654 64 64 64h896c35.348 0 64-28.654 64-64v-96-160l-320-384zM768 576l-128 128h-256l-128-128h-172.69l266.666-320h324.048l266.666 320h-172.69z"
|
588
|
+
],
|
589
|
+
"tags": [
|
590
|
+
"drawer",
|
591
|
+
"inbox",
|
592
|
+
"box",
|
593
|
+
"archive",
|
594
|
+
"storage",
|
595
|
+
"category"
|
596
|
+
],
|
597
|
+
"grid": 16
|
598
|
+
},
|
599
|
+
"properties": {
|
600
|
+
"id": 89,
|
601
|
+
"order": 20,
|
602
|
+
"prevSize": 32,
|
603
|
+
"code": 58889,
|
604
|
+
"name": "drawer",
|
605
|
+
"ligatures": ""
|
606
|
+
},
|
607
|
+
"setIdx": 2,
|
608
|
+
"iconIdx": 77
|
609
|
+
},
|
610
|
+
{
|
611
|
+
"icon": {
|
612
|
+
"paths": [
|
613
|
+
"M704 192h-384l-320 384v256c0 35.346 28.654 64 64 64h896c35.348 0 64-28.654 64-64v-256l-320-384zM640 704h-256l-64-64h384l-64 64zM83.31 576l266.666-320h324.048l266.666 320h-857.38zM284.964 384h454.072l-53.334-64h-347.406zM178.298 512h667.406l-53.334-64h-560.74z"
|
614
|
+
],
|
615
|
+
"tags": [
|
616
|
+
"drawer",
|
617
|
+
"inbox",
|
618
|
+
"box",
|
619
|
+
"archive",
|
620
|
+
"storage",
|
621
|
+
"category"
|
622
|
+
],
|
623
|
+
"grid": 16
|
624
|
+
},
|
625
|
+
"properties": {
|
626
|
+
"id": 90,
|
627
|
+
"order": 8,
|
628
|
+
"prevSize": 32,
|
629
|
+
"code": 58890,
|
630
|
+
"name": "drawer2",
|
631
|
+
"ligatures": ""
|
632
|
+
},
|
633
|
+
"setIdx": 2,
|
634
|
+
"iconIdx": 78
|
635
|
+
},
|
636
|
+
{
|
637
|
+
"icon": {
|
638
|
+
"paths": [
|
639
|
+
"M832 64h-640l-192 192v672c0 17.674 14.326 32 32 32h960c17.672 0 32-14.326 32-32v-672l-192-192zM640 640v192h-256v-192h-192l320-256 320 256h-192zM154.51 192l64-64h586.976l64 64h-714.976z"
|
640
|
+
],
|
641
|
+
"tags": [
|
642
|
+
"box-remove",
|
643
|
+
"storage",
|
644
|
+
"inbox",
|
645
|
+
"archive",
|
646
|
+
"upload"
|
647
|
+
],
|
648
|
+
"grid": 16
|
649
|
+
},
|
650
|
+
"properties": {
|
651
|
+
"id": 93,
|
652
|
+
"order": 50,
|
653
|
+
"prevSize": 32,
|
654
|
+
"code": 58915,
|
655
|
+
"name": "box-remove",
|
656
|
+
"ligatures": ""
|
657
|
+
},
|
658
|
+
"setIdx": 2,
|
659
|
+
"iconIdx": 79
|
660
|
+
},
|
661
|
+
{
|
662
|
+
"icon": {
|
663
|
+
"paths": [
|
664
|
+
"M512 576l256-256h-192v-256h-128v256h-192zM744.726 471.272l-71.74 71.742 260.080 96.986-421.066 157.018-421.066-157.018 260.080-96.986-71.742-71.742-279.272 104.728v256l512 192 512-192v-256z"
|
665
|
+
],
|
666
|
+
"tags": [
|
667
|
+
"download",
|
668
|
+
"store",
|
669
|
+
"save",
|
670
|
+
"arrow"
|
671
|
+
],
|
672
|
+
"grid": 16
|
673
|
+
},
|
674
|
+
"properties": {
|
675
|
+
"id": 94,
|
676
|
+
"order": 21,
|
677
|
+
"prevSize": 32,
|
678
|
+
"code": 58891,
|
679
|
+
"name": "download",
|
680
|
+
"ligatures": ""
|
681
|
+
},
|
682
|
+
"setIdx": 2,
|
683
|
+
"iconIdx": 80
|
684
|
+
},
|
685
|
+
{
|
686
|
+
"icon": {
|
687
|
+
"paths": [
|
688
|
+
"M448 576h128v-256h192l-256-256-256 256h192zM640 432v98.712l293.066 109.288-421.066 157.018-421.066-157.018 293.066-109.288v-98.712l-384 144v256l512 192 512-192v-256z"
|
689
|
+
],
|
690
|
+
"tags": [
|
691
|
+
"upload",
|
692
|
+
"load",
|
693
|
+
"arrow"
|
694
|
+
],
|
695
|
+
"grid": 16
|
696
|
+
},
|
697
|
+
"properties": {
|
698
|
+
"id": 95,
|
699
|
+
"order": 22,
|
700
|
+
"prevSize": 32,
|
701
|
+
"code": 58892,
|
702
|
+
"name": "upload",
|
703
|
+
"ligatures": ""
|
704
|
+
},
|
705
|
+
"setIdx": 2,
|
706
|
+
"iconIdx": 81
|
707
|
+
},
|
708
|
+
{
|
709
|
+
"icon": {
|
710
|
+
"paths": [
|
711
|
+
"M896 0h-896v1024h1024v-896l-128-128zM512 128h128v256h-128v-256zM896 896h-768v-768h64v320h576v-320h74.978l53.022 53.018v714.982z"
|
712
|
+
],
|
713
|
+
"tags": [
|
714
|
+
"disk",
|
715
|
+
"save",
|
716
|
+
"floppy"
|
717
|
+
],
|
718
|
+
"grid": 16
|
719
|
+
},
|
720
|
+
"properties": {
|
721
|
+
"id": 96,
|
722
|
+
"order": 91,
|
723
|
+
"prevSize": 32,
|
724
|
+
"code": 58920,
|
725
|
+
"name": "disk",
|
726
|
+
"ligatures": ""
|
727
|
+
},
|
728
|
+
"setIdx": 2,
|
729
|
+
"iconIdx": 82
|
730
|
+
},
|
731
|
+
{
|
732
|
+
"icon": {
|
733
|
+
"paths": [
|
734
|
+
"M480 0v0c265.096 0 480 173.914 480 388.448s-214.904 388.448-480 388.448c-25.458 0-50.446-1.62-74.834-4.71-103.106 102.694-222.172 121.108-341.166 123.814v-25.134c64.252-31.354 116-88.466 116-153.734 0-9.106-0.712-18.048-2.030-26.794-108.558-71.214-177.97-179.988-177.97-301.89 0-214.534 214.904-388.448 480-388.448zM996 870.686c0 55.942 36.314 104.898 92 131.772v21.542c-103.126-2.318-197.786-18.102-287.142-106.126-21.14 2.65-42.794 4.040-64.858 4.040-95.47 0-183.408-25.758-253.614-69.040 144.674-0.506 281.26-46.854 384.834-130.672 52.208-42.252 93.394-91.826 122.414-147.348 30.766-58.866 46.366-121.582 46.366-186.406 0-10.448-0.45-20.836-1.258-31.168 72.57 59.934 117.258 141.622 117.258 231.676 0 104.488-60.158 197.722-154.24 258.764-1.142 7.496-1.76 15.16-1.76 22.966z"
|
735
|
+
],
|
736
|
+
"width": 1152,
|
737
|
+
"tags": [
|
738
|
+
"bubbles",
|
739
|
+
"comments",
|
740
|
+
"chat",
|
741
|
+
"talk"
|
742
|
+
],
|
743
|
+
"grid": 16
|
744
|
+
},
|
745
|
+
"properties": {
|
746
|
+
"id": 108,
|
747
|
+
"order": 107,
|
748
|
+
"prevSize": 32,
|
749
|
+
"code": 58923,
|
750
|
+
"name": "bubbles",
|
751
|
+
"ligatures": ""
|
752
|
+
},
|
753
|
+
"setIdx": 2,
|
754
|
+
"iconIdx": 83
|
755
|
+
},
|
756
|
+
{
|
757
|
+
"icon": {
|
758
|
+
"paths": [
|
759
|
+
"M1088 901.166c0 45.5 26.028 84.908 64 104.184v15.938c-10.626 1.454-21.472 2.224-32.5 2.224-68.008 0-129.348-28.528-172.722-74.264-26.222 6.982-54.002 10.752-82.778 10.752-159.058 0-288-114.616-288-256 0-141.384 128.942-256 288-256 159.058 0 288 114.616 288 256 0 55.348-19.764 106.592-53.356 148.466-6.824 14.824-10.644 31.312-10.644 48.7zM230.678 221.186c-66.214 53.798-102.678 122.984-102.678 194.814 0 40.298 11.188 79.378 33.252 116.15 22.752 37.92 56.982 72.586 98.988 100.252 30.356 19.992 50.78 51.948 56.176 87.894 1.8 11.984 2.928 24.088 3.37 36.124 7.47-6.194 14.75-12.846 21.88-19.976 24.154-24.152 56.78-37.49 90.502-37.49 5.368 0 10.762 0.336 16.156 1.024 20.948 2.662 42.344 4.016 63.594 4.020v128c-27.128-0.002-53.754-1.738-79.742-5.042-109.978 109.978-241.25 129.7-368.176 132.596v-26.916c68.536-33.578 128-94.74 128-164.636 0-9.754-0.758-19.33-2.164-28.696-115.796-76.264-189.836-192.754-189.836-323.304 0-229.75 229.23-416 512-416 278.458 0 504.992 180.614 511.836 405.52-41.096-18.316-85.84-29.422-132.262-32.578-11.53-56.068-45.402-108.816-98.252-151.756-35.322-28.698-76.916-51.39-123.628-67.444-49.706-17.080-102.76-25.742-157.694-25.742-54.932 0-107.988 8.662-157.694 25.742-46.712 16.054-88.306 38.744-123.628 67.444z"
|
760
|
+
],
|
761
|
+
"width": 1152,
|
762
|
+
"tags": [
|
763
|
+
"bubbles",
|
764
|
+
"comments",
|
765
|
+
"chat",
|
766
|
+
"talk"
|
767
|
+
],
|
768
|
+
"grid": 16
|
769
|
+
},
|
770
|
+
"properties": {
|
771
|
+
"id": 110,
|
772
|
+
"order": 108,
|
773
|
+
"prevSize": 32,
|
774
|
+
"code": 58924,
|
775
|
+
"name": "bubbles2",
|
776
|
+
"ligatures": ""
|
777
|
+
},
|
778
|
+
"setIdx": 2,
|
779
|
+
"iconIdx": 84
|
780
|
+
},
|
781
|
+
{
|
782
|
+
"icon": {
|
783
|
+
"paths": [
|
784
|
+
"M734.994 805.374c-18.952-2.988-19.384-54.654-19.384-54.654s55.688-54.656 67.824-128.152c32.652 0 52.814-78.138 20.164-105.628 1.362-28.94 41.968-227.176-163.598-227.176-205.564 0-164.958 198.236-163.598 227.176-32.654 27.49-12.488 105.628 20.162 105.628 12.134 73.496 67.826 128.152 67.826 128.152s-0.432 51.666-19.384 54.654c-61.048 9.632-289.006 109.316-289.006 218.626h768c0-109.31-227.958-208.994-289.006-218.626zM344.054 822.81c44.094-27.15 97.626-52.308 141.538-67.424-15.752-22.432-33.294-52.936-44.33-89.062-15.406-12.566-27.944-30.532-35.998-52.602-8.066-22.104-11.122-46.852-8.608-69.684 1.804-16.392 6.478-31.666 13.65-45.088-4.35-46.586-7.414-138.034 52.448-204.732 23.214-25.866 52.556-44.46 87.7-55.686-6.274-64.76-39.16-140.77-166.454-140.77-205.564 0-164.958 198.236-163.598 227.176-32.654 27.49-12.488 105.628 20.162 105.628 12.134 73.496 67.826 128.152 67.826 128.152s-0.432 51.666-19.384 54.654c-61.048 9.634-289.006 109.318-289.006 218.628h329.596c4.71-3.074 9.506-6.14 14.458-9.19z"
|
785
|
+
],
|
786
|
+
"tags": [
|
787
|
+
"users",
|
788
|
+
"people",
|
789
|
+
"group",
|
790
|
+
"team",
|
791
|
+
"members",
|
792
|
+
"community"
|
793
|
+
],
|
794
|
+
"grid": 16
|
795
|
+
},
|
796
|
+
"properties": {
|
797
|
+
"id": 113,
|
798
|
+
"order": 110,
|
799
|
+
"prevSize": 32,
|
800
|
+
"code": 58925,
|
801
|
+
"name": "users",
|
802
|
+
"ligatures": ""
|
803
|
+
},
|
804
|
+
"setIdx": 2,
|
805
|
+
"iconIdx": 85
|
806
|
+
},
|
807
|
+
{
|
808
|
+
"icon": {
|
809
|
+
"paths": [
|
810
|
+
"M976 1024h-672c-26.51 0-48-21.49-48-48 0-68.862 29.068-152.204 77.758-222.942 40.692-59.118 90.684-103.62 144.678-129.61-23.798-21.644-44.294-48.026-60.508-78.122-26-48.262-39.746-104.048-39.746-161.328 0-79.606 26.204-154.822 73.786-211.79 49.664-59.46 116.442-92.208 188.032-92.208s138.368 32.748 188.034 92.21c47.58 56.968 73.786 132.182 73.786 211.79 0 57.28-13.744 113.066-39.744 161.328-16.214 30.096-36.71 56.478-60.51 78.122 53.994 25.99 103.986 70.492 144.678 129.61 48.688 70.736 77.756 154.078 77.756 222.94 0 26.51-21.49 48-48 48zM358.074 928h563.852c-9.226-39.34-28.52-82.384-54.762-120.51-41.454-60.226-93.176-99.622-145.638-110.926-22.106-4.764-37.888-24.31-37.888-46.924v-34.292c0-17.26 9.266-33.19 24.27-41.722 59.478-33.832 97.912-108.266 97.912-189.626 0-114.692-74.384-208-165.818-208s-165.818 93.308-165.818 208c0 81.36 38.434 155.792 97.914 189.626 15.002 8.534 24.268 24.462 24.268 41.722v34.292c0 22.614-15.784 42.16-37.888 46.924-52.462 11.304-104.184 50.7-145.64 110.926-26.246 38.126-45.536 81.17-54.764 120.51zM197.114 864h-95.040c9.228-39.34 28.518-82.384 54.76-120.51 41.456-60.226 93.178-99.622 145.64-110.926 22.106-4.764 37.888-24.31 37.888-46.924v-34.292c0-17.26-9.266-33.19-24.268-41.722-59.48-33.834-97.914-108.266-97.914-189.626 0-114.692 74.384-208 165.818-208 6.254 0 12.426 0.452 18.502 1.302 26.358-29.334 56.234-53.174 88.642-71.004-33.192-17.232-69.5-26.298-107.142-26.298-71.59 0-138.368 32.748-188.034 92.21-47.58 56.968-73.784 132.184-73.784 211.79 0 57.28 13.744 113.066 39.746 161.328 16.214 30.096 36.71 56.476 60.508 78.122-53.994 25.99-103.986 70.492-144.678 129.61-48.69 70.736-77.758 154.078-77.758 222.94 0 26.51 21.49 48 48 48h132.386c1.476-31.026 7.198-63.412 16.728-96z"
|
811
|
+
],
|
812
|
+
"tags": [
|
813
|
+
"users",
|
814
|
+
"people",
|
815
|
+
"group",
|
816
|
+
"team",
|
817
|
+
"members",
|
818
|
+
"community"
|
819
|
+
],
|
820
|
+
"grid": 16
|
821
|
+
},
|
822
|
+
"properties": {
|
823
|
+
"id": 115,
|
824
|
+
"order": 109,
|
825
|
+
"prevSize": 32,
|
826
|
+
"code": 58926,
|
827
|
+
"name": "users2",
|
828
|
+
"ligatures": ""
|
829
|
+
},
|
830
|
+
"setIdx": 2,
|
831
|
+
"iconIdx": 86
|
832
|
+
},
|
833
|
+
{
|
834
|
+
"icon": {
|
835
|
+
"paths": [
|
836
|
+
"M320 192c0-106.039 85.961-192 192-192 106.039 0 192 85.961 192 192 0 106.039-85.961 192-192 192-106.039 0-192-85.961-192-192zM768.078 448h-35.424l-199.104 404.244 74.45-372.244-96-96-96 96 74.45 372.244-199.102-404.244h-35.424c-127.924 0-127.924 85.986-127.924 192v320h768v-320c0-106.014 0-192-127.922-192z"
|
837
|
+
],
|
838
|
+
"tags": [
|
839
|
+
"user",
|
840
|
+
"profile",
|
841
|
+
"avatar",
|
842
|
+
"person",
|
843
|
+
"talk",
|
844
|
+
"member",
|
845
|
+
"employee",
|
846
|
+
"job",
|
847
|
+
"official"
|
848
|
+
],
|
849
|
+
"grid": 16
|
850
|
+
},
|
851
|
+
"properties": {
|
852
|
+
"id": 117,
|
853
|
+
"order": 4,
|
854
|
+
"prevSize": 32,
|
855
|
+
"code": 58880,
|
856
|
+
"name": "user",
|
857
|
+
"ligatures": ""
|
858
|
+
},
|
859
|
+
"setIdx": 2,
|
860
|
+
"iconIdx": 87
|
861
|
+
},
|
862
|
+
{
|
863
|
+
"icon": {
|
864
|
+
"paths": [
|
865
|
+
"M728.992 512c137.754-87.334 231.008-255.208 231.008-448 0-21.676-1.192-43.034-3.478-64h-889.042c-2.29 20.968-3.48 42.326-3.48 64 0 192.792 93.254 360.666 231.006 448-137.752 87.334-231.006 255.208-231.006 448 0 21.676 1.19 43.034 3.478 64h889.042c2.288-20.966 3.478-42.324 3.478-64 0.002-192.792-93.252-360.666-231.006-448zM160 960c0-186.912 80.162-345.414 224-397.708v-100.586 0c-143.838-52.29-224-210.792-224-397.706v0h704c0 186.914-80.162 345.416-224 397.706v100.586c143.838 52.294 224 210.796 224 397.708h-704zM619.626 669.594c-71.654-40.644-75.608-93.368-75.626-125.366v-64.228c0-31.994 3.804-84.914 75.744-125.664 38.504-22.364 71.808-56.348 97.048-98.336h-409.582c25.266 42.032 58.612 76.042 97.166 98.406 71.654 40.644 75.606 93.366 75.626 125.366l0 64.228c0 31.992-3.804 84.914-75.744 125.664-72.622 42.18-126.738 125.684-143.090 226.336h501.67c-16.364-100.708-70.53-184.248-143.212-226.406z"
|
866
|
+
],
|
867
|
+
"tags": [
|
868
|
+
"busy",
|
869
|
+
"wait",
|
870
|
+
"loading",
|
871
|
+
"hour glass"
|
872
|
+
],
|
873
|
+
"grid": 16
|
874
|
+
},
|
875
|
+
"properties": {
|
876
|
+
"id": 119,
|
877
|
+
"order": 36,
|
878
|
+
"prevSize": 32,
|
879
|
+
"code": 58893,
|
880
|
+
"name": "busy",
|
881
|
+
"ligatures": ""
|
882
|
+
},
|
883
|
+
"setIdx": 2,
|
884
|
+
"iconIdx": 88
|
885
|
+
},
|
886
|
+
{
|
887
|
+
"icon": {
|
888
|
+
"paths": [
|
889
|
+
"M64 0h384v64h-384zM576 0h384v64h-384zM952 320h-56v-256h-256v256h-256v-256h-256v256h-56c-39.6 0-72 32.4-72 72v560c0 39.6 32.4 72 72 72h304c39.6 0 72-32.4 72-72v-376h128v376c0 39.6 32.4 72 72 72h304c39.6 0 72-32.4 72-72v-560c0-39.6-32.4-72-72-72zM348 960h-248c-19.8 0-36-14.4-36-32s16.2-32 36-32h248c19.8 0 36 14.4 36 32s-16.2 32-36 32zM544 512h-64c-17.6 0-32-14.4-32-32s14.4-32 32-32h64c17.6 0 32 14.4 32 32s-14.4 32-32 32zM924 960h-248c-19.8 0-36-14.4-36-32s16.2-32 36-32h248c19.8 0 36 14.4 36 32s-16.2 32-36 32z"
|
890
|
+
],
|
891
|
+
"tags": [
|
892
|
+
"binoculars",
|
893
|
+
"lookup",
|
894
|
+
"search",
|
895
|
+
"find"
|
896
|
+
],
|
897
|
+
"grid": 16
|
898
|
+
},
|
899
|
+
"properties": {
|
900
|
+
"id": 126,
|
901
|
+
"order": 37,
|
902
|
+
"prevSize": 32,
|
903
|
+
"code": 58894,
|
904
|
+
"name": "binoculars",
|
905
|
+
"ligatures": ""
|
906
|
+
},
|
907
|
+
"setIdx": 2,
|
908
|
+
"iconIdx": 89
|
909
|
+
},
|
910
|
+
{
|
911
|
+
"icon": {
|
912
|
+
"paths": [
|
913
|
+
"M992.262 871.396l-242.552-206.294c-25.074-22.566-51.89-32.926-73.552-31.926 57.256-67.068 91.842-154.078 91.842-249.176 0-212.078-171.922-384-384-384-212.076 0-384 171.922-384 384 0 212.078 171.922 384 384 384 95.098 0 182.108-34.586 249.176-91.844-1 21.662 9.36 48.478 31.926 73.552l206.294 242.552c35.322 39.246 93.022 42.554 128.22 7.356s31.892-92.898-7.354-128.22zM384 640c-141.384 0-256-114.616-256-256s114.616-256 256-256 256 114.616 256 256-114.614 256-256 256z"
|
914
|
+
],
|
915
|
+
"tags": [
|
916
|
+
"search",
|
917
|
+
"magnifier",
|
918
|
+
"lookup",
|
919
|
+
"find"
|
920
|
+
],
|
921
|
+
"grid": 16
|
922
|
+
},
|
923
|
+
"properties": {
|
924
|
+
"id": 127,
|
925
|
+
"order": 88,
|
926
|
+
"prevSize": 32,
|
927
|
+
"code": 58895,
|
928
|
+
"name": "search",
|
929
|
+
"ligatures": ""
|
930
|
+
},
|
931
|
+
"setIdx": 2,
|
932
|
+
"iconIdx": 90
|
933
|
+
},
|
934
|
+
{
|
935
|
+
"icon": {
|
936
|
+
"paths": [
|
937
|
+
"M992.262 871.396l-242.552-206.294c-25.074-22.566-51.89-32.926-73.552-31.926 57.256-67.068 91.842-154.078 91.842-249.176 0-212.078-171.922-384-384-384-212.076 0-384 171.922-384 384 0 212.078 171.922 384 384 384 95.098 0 182.108-34.586 249.176-91.844-1 21.662 9.36 48.478 31.926 73.552l206.294 242.552c35.322 39.246 93.022 42.554 128.22 7.356s31.892-92.898-7.354-128.22zM384 640c-141.384 0-256-114.616-256-256s114.616-256 256-256 256 114.616 256 256-114.614 256-256 256zM448 192h-128v128h-128v128h128v128h128v-128h128v-128h-128z"
|
938
|
+
],
|
939
|
+
"tags": [
|
940
|
+
"zoom in",
|
941
|
+
"enlarge",
|
942
|
+
"scale"
|
943
|
+
],
|
944
|
+
"grid": 16
|
945
|
+
},
|
946
|
+
"properties": {
|
947
|
+
"id": 128,
|
948
|
+
"order": 38,
|
949
|
+
"prevSize": 32,
|
950
|
+
"code": 58896,
|
951
|
+
"name": "zoomin",
|
952
|
+
"ligatures": ""
|
953
|
+
},
|
954
|
+
"setIdx": 2,
|
955
|
+
"iconIdx": 91
|
956
|
+
},
|
957
|
+
{
|
958
|
+
"icon": {
|
959
|
+
"paths": [
|
960
|
+
"M992.262 871.396l-242.552-206.294c-25.074-22.566-51.89-32.926-73.552-31.926 57.256-67.068 91.842-154.078 91.842-249.176 0-212.078-171.922-384-384-384-212.076 0-384 171.922-384 384 0 212.078 171.922 384 384 384 95.098 0 182.108-34.586 249.176-91.844-1 21.662 9.36 48.478 31.926 73.552l206.294 242.552c35.322 39.246 93.022 42.554 128.22 7.356s31.892-92.898-7.354-128.22zM384 640c-141.384 0-256-114.616-256-256s114.616-256 256-256 256 114.616 256 256-114.614 256-256 256zM192 320h384v128h-384z"
|
961
|
+
],
|
962
|
+
"tags": [
|
963
|
+
"zoom out",
|
964
|
+
"smaller",
|
965
|
+
"scale",
|
966
|
+
"reduce"
|
967
|
+
],
|
968
|
+
"grid": 16
|
969
|
+
},
|
970
|
+
"properties": {
|
971
|
+
"id": 129,
|
972
|
+
"order": 39,
|
973
|
+
"prevSize": 32,
|
974
|
+
"code": 58897,
|
975
|
+
"name": "zoomout",
|
976
|
+
"ligatures": ""
|
977
|
+
},
|
978
|
+
"setIdx": 2,
|
979
|
+
"iconIdx": 92
|
980
|
+
},
|
981
|
+
{
|
982
|
+
"icon": {
|
983
|
+
"paths": [
|
984
|
+
"M1002.934 817.876l-460.552-394.76c21.448-40.298 33.618-86.282 33.618-135.116 0-159.058-128.942-288-288-288-29.094 0-57.172 4.332-83.646 12.354l166.39 166.39c24.89 24.89 24.89 65.62 0 90.51l-101.49 101.49c-24.89 24.89-65.62 24.89-90.51 0l-166.39-166.39c-8.022 26.474-12.354 54.552-12.354 83.646 0 159.058 128.942 288 288 288 48.834 0 94.818-12.17 135.116-33.62l394.76 460.552c22.908 26.724 62.016 28.226 86.904 3.338l101.492-101.492c24.888-24.888 23.386-63.994-3.338-86.902z"
|
985
|
+
],
|
986
|
+
"tags": [
|
987
|
+
"wrench",
|
988
|
+
"settings",
|
989
|
+
"control",
|
990
|
+
"tool",
|
991
|
+
"options",
|
992
|
+
"preferences",
|
993
|
+
"fix"
|
994
|
+
],
|
995
|
+
"grid": 16
|
996
|
+
},
|
997
|
+
"properties": {
|
998
|
+
"id": 139,
|
999
|
+
"order": 35,
|
1000
|
+
"prevSize": 32,
|
1001
|
+
"code": 58898,
|
1002
|
+
"name": "wrench2",
|
1003
|
+
"ligatures": ""
|
1004
|
+
},
|
1005
|
+
"setIdx": 2,
|
1006
|
+
"iconIdx": 93
|
1007
|
+
},
|
1008
|
+
{
|
1009
|
+
"icon": {
|
1010
|
+
"paths": [
|
1011
|
+
"M448 128v-16c0-26.4-21.6-48-48-48h-160c-26.4 0-48 21.6-48 48v16h-192v128h192v16c0 26.4 21.6 48 48 48h160c26.4 0 48-21.6 48-48v-16h576v-128h-576zM256 256v-128h128v128h-128zM832 432c0-26.4-21.6-48-48-48h-160c-26.4 0-48 21.6-48 48v16h-576v128h576v16c0 26.4 21.6 48 48 48h160c26.4 0 48-21.6 48-48v-16h192v-128h-192v-16zM640 576v-128h128v128h-128zM448 752c0-26.4-21.6-48-48-48h-160c-26.4 0-48 21.6-48 48v16h-192v128h192v16c0 26.4 21.6 48 48 48h160c26.4 0 48-21.6 48-48v-16h576v-128h-576v-16zM256 896v-128h128v128h-128z"
|
1012
|
+
],
|
1013
|
+
"tags": [
|
1014
|
+
"settings",
|
1015
|
+
"preferences",
|
1016
|
+
"options"
|
1017
|
+
],
|
1018
|
+
"grid": 16
|
1019
|
+
},
|
1020
|
+
"properties": {
|
1021
|
+
"id": 140,
|
1022
|
+
"order": 34,
|
1023
|
+
"prevSize": 32,
|
1024
|
+
"code": 58899,
|
1025
|
+
"name": "settings",
|
1026
|
+
"ligatures": ""
|
1027
|
+
},
|
1028
|
+
"setIdx": 2,
|
1029
|
+
"iconIdx": 94
|
1030
|
+
},
|
1031
|
+
{
|
1032
|
+
"icon": {
|
1033
|
+
"paths": [
|
1034
|
+
"M1024 608.094v-192.188l-146.774-24.462c-5.958-18.132-13.222-35.668-21.694-52.5l86.454-121.034-135.896-135.898-120.826 86.304c-16.91-8.554-34.538-15.888-52.768-21.902l-24.402-146.414h-192.188l-24.402 146.416c-18.23 6.014-35.858 13.348-52.766 21.902l-120.828-86.304-135.898 135.898 86.454 121.036c-8.47 16.83-15.734 34.366-21.692 52.498l-146.774 24.46v192.188l147.118 24.52c5.96 17.968 13.21 35.348 21.642 52.030l-86.748 121.448 135.898 135.896 121.654-86.894c16.602 8.35 33.89 15.528 51.764 21.434l24.578 147.472h192.188l24.578-147.474c17.874-5.906 35.162-13.084 51.766-21.432l121.652 86.892 135.896-135.896-86.744-121.446c8.432-16.682 15.678-34.062 21.64-52.032l147.118-24.518zM512 640c-70.692 0-128-57.306-128-128 0-70.692 57.308-128 128-128 70.694 0 128 57.308 128 128 0 70.694-57.306 128-128 128z"
|
1035
|
+
],
|
1036
|
+
"tags": [
|
1037
|
+
"cog",
|
1038
|
+
"preferences",
|
1039
|
+
"settings",
|
1040
|
+
"gear",
|
1041
|
+
"generate",
|
1042
|
+
"control",
|
1043
|
+
"options"
|
1044
|
+
],
|
1045
|
+
"grid": 16
|
1046
|
+
},
|
1047
|
+
"properties": {
|
1048
|
+
"id": 144,
|
1049
|
+
"order": 31,
|
1050
|
+
"prevSize": 32,
|
1051
|
+
"code": 58900,
|
1052
|
+
"name": "cog",
|
1053
|
+
"ligatures": ""
|
1054
|
+
},
|
1055
|
+
"setIdx": 2,
|
1056
|
+
"iconIdx": 95
|
1057
|
+
},
|
1058
|
+
{
|
1059
|
+
"icon": {
|
1060
|
+
"paths": [
|
1061
|
+
"M1009.996 828.976l-301.544-301.544c-18.668-18.668-49.214-18.668-67.882 0l-22.626 22.626-184-184 302.056-302.058h-320l-142.058 142.058-14.060-14.058h-67.882v67.882l14.058 14.058-206.058 206.060 160 160 206.058-206.058 184 184-22.626 22.626c-18.668 18.668-18.668 49.214 0 67.882l301.544 301.544c18.668 18.668 49.214 18.668 67.882 0l113.136-113.136c18.67-18.666 18.67-49.214 0.002-67.882z"
|
1062
|
+
],
|
1063
|
+
"tags": [
|
1064
|
+
"hammer",
|
1065
|
+
"tool",
|
1066
|
+
"fix",
|
1067
|
+
"make",
|
1068
|
+
"generate",
|
1069
|
+
"work",
|
1070
|
+
"build"
|
1071
|
+
],
|
1072
|
+
"grid": 16
|
1073
|
+
},
|
1074
|
+
"properties": {
|
1075
|
+
"id": 145,
|
1076
|
+
"order": 30,
|
1077
|
+
"prevSize": 32,
|
1078
|
+
"code": 58901,
|
1079
|
+
"name": "hammer",
|
1080
|
+
"ligatures": ""
|
1081
|
+
},
|
1082
|
+
"setIdx": 2,
|
1083
|
+
"iconIdx": 96
|
1084
|
+
},
|
1085
|
+
{
|
1086
|
+
"icon": {
|
1087
|
+
"paths": [
|
1088
|
+
"M256 192l-128-128h-64v64l128 128zM320 0h64v128h-64zM576 320h128v64h-128zM640 128v-64h-64l-128 128 64 64zM0 320h128v64h-128zM320 576h64v128h-64zM64 576v64h64l128-128-64-64zM1010 882l-636.118-636.118c-18.668-18.668-49.214-18.668-67.882 0l-60.118 60.118c-18.668 18.668-18.668 49.214 0 67.882l636.118 636.118c18.668 18.668 49.214 18.668 67.882 0l60.118-60.118c18.668-18.668 18.668-49.214 0-67.882zM480 544l-192-192 64-64 192 192-64 64z"
|
1089
|
+
],
|
1090
|
+
"tags": [
|
1091
|
+
"wand",
|
1092
|
+
"magic",
|
1093
|
+
"wizard"
|
1094
|
+
],
|
1095
|
+
"grid": 16
|
1096
|
+
},
|
1097
|
+
"properties": {
|
1098
|
+
"id": 146,
|
1099
|
+
"order": 29,
|
1100
|
+
"prevSize": 32,
|
1101
|
+
"code": 58902,
|
1102
|
+
"name": "wand",
|
1103
|
+
"ligatures": ""
|
1104
|
+
},
|
1105
|
+
"setIdx": 2,
|
1106
|
+
"iconIdx": 97
|
1107
|
+
},
|
1108
|
+
{
|
1109
|
+
"icon": {
|
1110
|
+
"paths": [
|
1111
|
+
"M1024 576v-64h-193.29c-5.862-72.686-31.786-139.026-71.67-192.25h161.944l70.060-280.24-62.090-15.522-57.94 231.76h-174.68c-0.892-0.694-1.796-1.374-2.698-2.056 6.71-19.502 10.362-40.422 10.362-62.194 0.002-105.76-85.958-191.498-191.998-191.498s-192 85.738-192 191.5c0 21.772 3.65 42.692 10.362 62.194-0.9 0.684-1.804 1.362-2.698 2.056h-174.68l-57.94-231.76-62.090 15.522 70.060 280.24h161.944c-39.884 53.222-65.806 119.562-71.668 192.248h-193.29v64h193.37c3.802 45.664 15.508 88.812 33.638 127.75h-123.992l-70.060 280.238 62.090 15.524 57.94-231.762h112.354c58.692 78.032 147.396 127.75 246.66 127.75s187.966-49.718 246.662-127.75h112.354l57.94 231.762 62.090-15.524-70.060-280.238h-123.992c18.13-38.938 29.836-82.086 33.636-127.75h193.37z"
|
1112
|
+
],
|
1113
|
+
"tags": [
|
1114
|
+
"bug",
|
1115
|
+
"virus",
|
1116
|
+
"error"
|
1117
|
+
],
|
1118
|
+
"grid": 16
|
1119
|
+
},
|
1120
|
+
"properties": {
|
1121
|
+
"id": 148,
|
1122
|
+
"order": 32,
|
1123
|
+
"prevSize": 32,
|
1124
|
+
"code": 58903,
|
1125
|
+
"name": "bug",
|
1126
|
+
"ligatures": ""
|
1127
|
+
},
|
1128
|
+
"setIdx": 2,
|
1129
|
+
"iconIdx": 98
|
1130
|
+
},
|
1131
|
+
{
|
1132
|
+
"icon": {
|
1133
|
+
"paths": [
|
1134
|
+
"M448 576v-448c-247.424 0-448 200.576-448 448s200.576 448 448 448 448-200.576 448-448c0-72.034-17.028-140.084-47.236-200.382l-400.764 200.382zM912.764 247.618c-73.552-146.816-225.374-247.618-400.764-247.618v448l400.764-200.382z"
|
1135
|
+
],
|
1136
|
+
"tags": [
|
1137
|
+
"pie",
|
1138
|
+
"statistics",
|
1139
|
+
"stats",
|
1140
|
+
"chart",
|
1141
|
+
"graph"
|
1142
|
+
],
|
1143
|
+
"grid": 16
|
1144
|
+
},
|
1145
|
+
"properties": {
|
1146
|
+
"id": 149,
|
1147
|
+
"order": 33,
|
1148
|
+
"prevSize": 32,
|
1149
|
+
"code": 58904,
|
1150
|
+
"name": "pie",
|
1151
|
+
"ligatures": ""
|
1152
|
+
},
|
1153
|
+
"setIdx": 2,
|
1154
|
+
"iconIdx": 99
|
1155
|
+
},
|
1156
|
+
{
|
1157
|
+
"icon": {
|
1158
|
+
"paths": [
|
1159
|
+
"M128 896h896v128h-1024v-1024h128zM288 832c-53.020 0-96-42.98-96-96s42.98-96 96-96c2.828 0 5.622 0.148 8.388 0.386l103.192-171.986c-9.84-15.070-15.58-33.062-15.58-52.402 0-53.020 42.98-96 96-96 53.020 0 96 42.98 96 96 0 19.342-5.74 37.332-15.58 52.402l103.192 171.986c2.766-0.238 5.56-0.386 8.388-0.386 2.136 0 4.248 0.094 6.35 0.23l170.356-298.122c-10.536-15.408-16.706-34.036-16.706-54.11 0-53.020 42.98-96 96-96 53.020 0 96 42.98 96 96 0 53.020-42.98 96-96 96-2.14 0-4.248-0.094-6.35-0.232l-170.356 298.124c10.536 15.406 16.706 34.036 16.706 54.11 0 53.020-42.98 96-96 96-53.020 0-96-42.98-96-96 0-19.34 5.74-37.332 15.578-52.402l-103.19-171.984c-2.766 0.238-5.56 0.386-8.388 0.386s-5.622-0.146-8.388-0.386l-103.192 171.986c9.84 15.068 15.58 33.060 15.58 52.4 0 53.020-42.98 96-96 96z"
|
1160
|
+
],
|
1161
|
+
"tags": [
|
1162
|
+
"stats",
|
1163
|
+
"graph",
|
1164
|
+
"plot",
|
1165
|
+
"statistics",
|
1166
|
+
"chart"
|
1167
|
+
],
|
1168
|
+
"grid": 16
|
1169
|
+
},
|
1170
|
+
"properties": {
|
1171
|
+
"id": 150,
|
1172
|
+
"order": 23,
|
1173
|
+
"prevSize": 32,
|
1174
|
+
"code": 58905,
|
1175
|
+
"name": "stats",
|
1176
|
+
"ligatures": ""
|
1177
|
+
},
|
1178
|
+
"setIdx": 2,
|
1179
|
+
"iconIdx": 100
|
1180
|
+
},
|
1181
|
+
{
|
1182
|
+
"icon": {
|
1183
|
+
"paths": [
|
1184
|
+
"M0 832h1024v128h-1024zM128 576h128v192h-128zM320 320h128v448h-128zM512 512h128v256h-128zM704 128h128v640h-128z"
|
1185
|
+
],
|
1186
|
+
"tags": [
|
1187
|
+
"bars",
|
1188
|
+
"statistics",
|
1189
|
+
"stats",
|
1190
|
+
"chart",
|
1191
|
+
"graph"
|
1192
|
+
],
|
1193
|
+
"grid": 16
|
1194
|
+
},
|
1195
|
+
"properties": {
|
1196
|
+
"id": 151,
|
1197
|
+
"order": 24,
|
1198
|
+
"prevSize": 32,
|
1199
|
+
"code": 58906,
|
1200
|
+
"name": "bars",
|
1201
|
+
"ligatures": ""
|
1202
|
+
},
|
1203
|
+
"setIdx": 2,
|
1204
|
+
"iconIdx": 101
|
1205
|
+
},
|
1206
|
+
{
|
1207
|
+
"icon": {
|
1208
|
+
"paths": [
|
1209
|
+
"M771.516 320c18.126-12.88 35.512-27.216 51.444-43.148 33.402-33.402 55.746-74.5 62.912-115.722 7.858-45.186-3.672-87.14-31.63-115.1-22.3-22.298-52.51-34.086-87.364-34.086-49.632 0-101.922 23.824-143.46 65.362-66.476 66.476-105.226 158.238-126.076 223.722-15.44-65.802-46.206-154.644-106.018-214.458-32.094-32.092-73.114-48.57-111.846-48.57-31.654 0-61.78 11.004-84.26 33.486-49.986 49.988-43.232 137.786 15.086 196.104 20.792 20.792 45.098 38.062 70.72 52.412l-217.024-0v256h64v448h768v-448.002h64v-256h-188.484zM674.326 128.218c27.724-27.724 62.322-44.274 92.55-44.274 10.7 0 25.708 2.254 36.45 12.998 26.030 26.028 11.412 86.308-31.28 128.998-43.946 43.946-103.060 74.168-154.432 94.060h-50.672c18.568-57.548 52.058-136.456 107.384-191.782zM233.934 160.89c-0.702-9.12-0.050-26.248 12.196-38.494 10.244-10.244 23.788-12.396 33.348-12.396v0c21.258 0 43.468 10.016 60.932 27.48 33.872 33.872 61.766 87.772 80.668 155.876 0.51 1.84 1.008 3.67 1.496 5.486-1.816-0.486-3.646-0.984-5.486-1.496-68.104-18.904-122.002-46.798-155.874-80.67-15.828-15.826-25.77-36.16-27.28-55.786zM448 960h-256v-416h256v416zM448 512h-320v-128h320v128zM832 960h-256v-416h256v416zM896 512h-320v-128h320v128z"
|
1210
|
+
],
|
1211
|
+
"tags": [
|
1212
|
+
"gift",
|
1213
|
+
"box",
|
1214
|
+
"present"
|
1215
|
+
],
|
1216
|
+
"grid": 16
|
1217
|
+
},
|
1218
|
+
"properties": {
|
1219
|
+
"id": 153,
|
1220
|
+
"order": 9,
|
1221
|
+
"prevSize": 32,
|
1222
|
+
"code": 58907,
|
1223
|
+
"name": "gift",
|
1224
|
+
"ligatures": ""
|
1225
|
+
},
|
1226
|
+
"setIdx": 2,
|
1227
|
+
"iconIdx": 102
|
1228
|
+
},
|
1229
|
+
{
|
1230
|
+
"icon": {
|
1231
|
+
"paths": [
|
1232
|
+
"M512 64c282.77 0 512 229.23 512 512 0 192.792-106.576 360.666-264.008 448h-495.984c-157.432-87.334-264.008-255.208-264.008-448 0-282.77 229.23-512 512-512zM801.914 865.914c77.438-77.44 120.086-180.398 120.086-289.914h-90v-64h85.038c-7.014-44.998-21.39-88.146-42.564-128h-106.474v-64h64.284c-9.438-11.762-19.552-23.096-30.37-33.914-46.222-46.22-101.54-80.038-161.914-99.798v69.712h-64v-85.040c-20.982-3.268-42.36-4.96-64-4.96s-43.018 1.69-64 4.96v85.040h-64v-69.712c-60.372 19.76-115.692 53.576-161.914 99.798-10.818 10.818-20.932 22.152-30.37 33.914h64.284v64h-106.476c-21.174 39.854-35.552 83.002-42.564 128h85.040v64h-90c0 109.516 42.648 212.474 120.086 289.914 10.71 10.71 21.924 20.728 33.56 30.086h192.354l36.572-512h54.856l36.572 512h192.354c11.636-9.358 22.852-19.378 33.56-30.086z"
|
1233
|
+
],
|
1234
|
+
"tags": [
|
1235
|
+
"meter"
|
1236
|
+
],
|
1237
|
+
"grid": 16
|
1238
|
+
},
|
1239
|
+
"properties": {
|
1240
|
+
"id": 160,
|
1241
|
+
"order": 120,
|
1242
|
+
"prevSize": 32,
|
1243
|
+
"code": 58930,
|
1244
|
+
"name": "meter",
|
1245
|
+
"ligatures": ""
|
1246
|
+
},
|
1247
|
+
"setIdx": 2,
|
1248
|
+
"iconIdx": 103
|
1249
|
+
},
|
1250
|
+
{
|
1251
|
+
"icon": {
|
1252
|
+
"paths": [
|
1253
|
+
"M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM302.836 834.152c11.106-30.632 17.164-63.688 17.164-98.152 0-124.35-78.81-230.292-189.208-270.606 10.21-84.924 48.254-163.498 109.678-224.924 72.53-72.526 168.96-112.47 271.53-112.47s199 39.944 271.53 112.47c61.428 61.426 99.468 140 109.682 224.924-110.402 40.314-189.212 146.256-189.212 270.606 0 34.468 6.060 67.52 17.166 98.15-61.706 40.242-133.77 61.85-209.166 61.85-75.394 0-147.458-21.608-209.164-61.848zM551.754 640.996c13.878 3.494 24.246 16.080 24.246 31.004v64c0 17.6-14.4 32-32 32h-64c-17.6 0-32-14.4-32-32v-64c0-14.924 10.368-27.51 24.246-31.004l23.754-448.996h32l23.754 448.996z"
|
1254
|
+
],
|
1255
|
+
"tags": [
|
1256
|
+
"meter2"
|
1257
|
+
],
|
1258
|
+
"grid": 16
|
1259
|
+
},
|
1260
|
+
"properties": {
|
1261
|
+
"id": 161,
|
1262
|
+
"order": 119,
|
1263
|
+
"prevSize": 32,
|
1264
|
+
"code": 58931,
|
1265
|
+
"name": "meter2",
|
1266
|
+
"ligatures": ""
|
1267
|
+
},
|
1268
|
+
"setIdx": 2,
|
1269
|
+
"iconIdx": 104
|
1270
|
+
},
|
1271
|
+
{
|
1272
|
+
"icon": {
|
1273
|
+
"paths": [
|
1274
|
+
"M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM512 896c-212.078 0-384-171.922-384-384s171.922-384 384-384c212.078 0 384 171.922 384 384 0 212.078-171.922 384-384 384zM448 256c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64zM640 320c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64zM256 320c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64zM448 704v64h128v-64l-64-320z"
|
1275
|
+
],
|
1276
|
+
"tags": [
|
1277
|
+
"dashboard",
|
1278
|
+
"control panel"
|
1279
|
+
],
|
1280
|
+
"grid": 16
|
1281
|
+
},
|
1282
|
+
"properties": {
|
1283
|
+
"id": 162,
|
1284
|
+
"order": 121,
|
1285
|
+
"prevSize": 32,
|
1286
|
+
"code": 58932,
|
1287
|
+
"name": "dashboard2",
|
1288
|
+
"ligatures": ""
|
1289
|
+
},
|
1290
|
+
"setIdx": 2,
|
1291
|
+
"iconIdx": 105
|
1292
|
+
},
|
1293
|
+
{
|
1294
|
+
"icon": {
|
1295
|
+
"paths": [
|
1296
|
+
"M321.008 1024c-68.246-142.008-31.902-223.378 20.55-300.044 57.44-83.956 72.244-167.066 72.244-167.066 0 0 45.154 58.7 27.092 150.508 79.772-88.8 94.824-230.28 82.782-284.464 180.314 126.012 257.376 398.856 153.522 601.066 552.372-312.532 137.398-780.172 65.154-832.85 24.082 52.676 28.648 141.85-20 185.126-82.352-312.276-285.972-376.276-285.972-376.276 24.082 161.044-87.296 337.144-194.696 468.73-3.774-64.216-7.782-108.528-41.55-169.98-7.58 116.656-96.732 211.748-120.874 328.628-32.702 158.286 24.496 274.18 241.748 396.622z"
|
1297
|
+
],
|
1298
|
+
"tags": [
|
1299
|
+
"fire",
|
1300
|
+
"flame",
|
1301
|
+
"hot",
|
1302
|
+
"popular"
|
1303
|
+
],
|
1304
|
+
"grid": 16
|
1305
|
+
},
|
1306
|
+
"properties": {
|
1307
|
+
"id": 164,
|
1308
|
+
"order": 118,
|
1309
|
+
"prevSize": 32,
|
1310
|
+
"code": 58933,
|
1311
|
+
"name": "fire",
|
1312
|
+
"ligatures": ""
|
1313
|
+
},
|
1314
|
+
"setIdx": 2,
|
1315
|
+
"iconIdx": 106
|
1316
|
+
},
|
1317
|
+
{
|
1318
|
+
"icon": {
|
1319
|
+
"paths": [
|
1320
|
+
"M192 1024h640l64-704h-768zM640 128v-128h-256v128h-320v192l64-64h768l64 64v-192h-320zM576 128h-128v-64h128v64z"
|
1321
|
+
],
|
1322
|
+
"tags": [
|
1323
|
+
"remove",
|
1324
|
+
"delete",
|
1325
|
+
"trashcan",
|
1326
|
+
"recycle bin",
|
1327
|
+
"bin",
|
1328
|
+
"dispose"
|
1329
|
+
],
|
1330
|
+
"grid": 16
|
1331
|
+
},
|
1332
|
+
"properties": {
|
1333
|
+
"id": 167,
|
1334
|
+
"order": 52,
|
1335
|
+
"prevSize": 32,
|
1336
|
+
"code": 58916,
|
1337
|
+
"name": "remove",
|
1338
|
+
"ligatures": ""
|
1339
|
+
},
|
1340
|
+
"setIdx": 2,
|
1341
|
+
"iconIdx": 107
|
1342
|
+
},
|
1343
|
+
{
|
1344
|
+
"icon": {
|
1345
|
+
"paths": [
|
1346
|
+
"M800 128h-576c-53.020 0-96 42.98-96 96v32h768v-32c0-53.020-42.98-96-96-96zM632.32 64l14.116 101h-268.872l14.114-101h240.642M640 0h-256c-26.4 0-50.99 21.392-54.642 47.538l-18.714 133.924c-3.654 26.146 14.956 47.538 41.356 47.538h320c26.4 0 45.010-21.392 41.358-47.538l-18.714-133.924c-3.654-26.146-28.244-47.538-54.644-47.538v0zM816 320h-608c-35.2 0-61.392 28.682-58.206 63.738l52.412 576.526c3.186 35.054 34.594 63.736 69.794 63.736h480c35.2 0 66.608-28.682 69.794-63.736l52.41-576.526c3.188-35.056-23.004-63.738-58.204-63.738zM384 896h-96l-32-448h128v448zM576 896h-128v-448h128v448zM736 896h-96v-448h128l-32 448z"
|
1347
|
+
],
|
1348
|
+
"tags": [
|
1349
|
+
"remove",
|
1350
|
+
"delete",
|
1351
|
+
"trashcan",
|
1352
|
+
"recycle bin",
|
1353
|
+
"bin",
|
1354
|
+
"dispose"
|
1355
|
+
],
|
1356
|
+
"grid": 16
|
1357
|
+
},
|
1358
|
+
"properties": {
|
1359
|
+
"id": 168,
|
1360
|
+
"order": 49,
|
1361
|
+
"prevSize": 32,
|
1362
|
+
"code": 58917,
|
1363
|
+
"name": "remove2",
|
1364
|
+
"ligatures": ""
|
1365
|
+
},
|
1366
|
+
"setIdx": 2,
|
1367
|
+
"iconIdx": 108
|
1368
|
+
},
|
1369
|
+
{
|
1370
|
+
"icon": {
|
1371
|
+
"paths": [
|
1372
|
+
"M960 256h-256v-64c0-35.2-28.8-64-64-64h-256c-35.204 0-64 28.8-64 64v64h-256c-35.2 0-64 28.8-64 64v576c0 35.202 28.796 64 64 64h896c35.2 0 64-28.798 64-64v-576c0-35.2-28.8-64-64-64zM384 192.116c0.034-0.040 0.074-0.082 0.114-0.116h255.772c0.042 0.034 0.082 0.076 0.118 0.116v63.884h-256.004v-63.884zM960 512h-128v96c0 17.602-14.4 32-32 32h-64c-17.604 0-32-14.398-32-32v-96h-384v96c0 17.602-14.4 32-32 32h-64c-17.602 0-32-14.398-32-32v-96h-128v-64h896v64z"
|
1373
|
+
],
|
1374
|
+
"tags": [
|
1375
|
+
"briefcase",
|
1376
|
+
"portfolio",
|
1377
|
+
"suitcase",
|
1378
|
+
"work",
|
1379
|
+
"job",
|
1380
|
+
"employee"
|
1381
|
+
],
|
1382
|
+
"grid": 16
|
1383
|
+
},
|
1384
|
+
"properties": {
|
1385
|
+
"id": 169,
|
1386
|
+
"order": 122,
|
1387
|
+
"prevSize": 32,
|
1388
|
+
"code": 58934,
|
1389
|
+
"name": "briefcase2",
|
1390
|
+
"ligatures": ""
|
1391
|
+
},
|
1392
|
+
"setIdx": 2,
|
1393
|
+
"iconIdx": 109
|
1394
|
+
},
|
1395
|
+
{
|
1396
|
+
"icon": {
|
1397
|
+
"paths": [
|
1398
|
+
"M640 146.588v135.958c36.206 15.804 69.5 38.408 98.274 67.18 60.442 60.44 93.726 140.8 93.726 226.274s-33.286 165.834-93.726 226.274c-60.44 60.44-140.798 93.726-226.274 93.726s-165.834-33.286-226.274-93.726c-60.44-60.44-93.726-140.8-93.726-226.274s33.286-165.834 93.726-226.274c28.774-28.774 62.068-51.378 98.274-67.182v-135.956c-185.048 55.080-320 226.472-320 429.412 0 247.424 200.578 448 448 448 247.424 0 448-200.576 448-448 0-202.94-134.95-374.332-320-429.412zM448 0h128v512h-128z"
|
1399
|
+
],
|
1400
|
+
"tags": [
|
1401
|
+
"switch",
|
1402
|
+
"power",
|
1403
|
+
"turn off",
|
1404
|
+
"off",
|
1405
|
+
"shutdown"
|
1406
|
+
],
|
1407
|
+
"grid": 16
|
1408
|
+
},
|
1409
|
+
"properties": {
|
1410
|
+
"id": 177,
|
1411
|
+
"order": 123,
|
1412
|
+
"prevSize": 32,
|
1413
|
+
"code": 58935,
|
1414
|
+
"name": "switch",
|
1415
|
+
"ligatures": ""
|
1416
|
+
},
|
1417
|
+
"setIdx": 2,
|
1418
|
+
"iconIdx": 110
|
1419
|
+
},
|
1420
|
+
{
|
1421
|
+
"icon": {
|
1422
|
+
"paths": [
|
1423
|
+
"M1024 282.5l-90.506-90.5-178.746 178.752-101.5-101.502 178.75-178.75-90.5-90.5-178.75 178.75-114.748-114.75-86.626 86.624 512.002 512.002 86.624-86.624-114.752-114.752zM274.748 749.254c165.768 165.762 385.194 36.362 519.292-75.464l-443.824-443.824c-111.824 134.096-241.228 353.522-75.468 519.288zM191.998 704.004l127.994 127.996-191.992 191.992-127.996-127.994z"
|
1424
|
+
],
|
1425
|
+
"tags": [
|
1426
|
+
"power cord",
|
1427
|
+
"cord",
|
1428
|
+
"plugin",
|
1429
|
+
"extension"
|
1430
|
+
],
|
1431
|
+
"grid": 16
|
1432
|
+
},
|
1433
|
+
"properties": {
|
1434
|
+
"id": 178,
|
1435
|
+
"order": 124,
|
1436
|
+
"prevSize": 32,
|
1437
|
+
"code": 58936,
|
1438
|
+
"name": "powercord",
|
1439
|
+
"ligatures": ""
|
1440
|
+
},
|
1441
|
+
"setIdx": 2,
|
1442
|
+
"iconIdx": 111
|
1443
|
+
},
|
1444
|
+
{
|
1445
|
+
"icon": {
|
1446
|
+
"paths": [
|
1447
|
+
"M896 512h-160l-224 224-224-224h-160l-128 256v64h1024v-64l-128-256zM0 896h1024v64h-1024v-64zM576 320v-256h-128v256h-224l288 288 288-288h-224z"
|
1448
|
+
],
|
1449
|
+
"tags": [
|
1450
|
+
"download",
|
1451
|
+
"store",
|
1452
|
+
"save"
|
1453
|
+
],
|
1454
|
+
"grid": 16
|
1455
|
+
},
|
1456
|
+
"properties": {
|
1457
|
+
"id": 189,
|
1458
|
+
"order": 89,
|
1459
|
+
"prevSize": 32,
|
1460
|
+
"code": 58921,
|
1461
|
+
"name": "download2",
|
1462
|
+
"ligatures": ""
|
1463
|
+
},
|
1464
|
+
"setIdx": 2,
|
1465
|
+
"iconIdx": 112
|
1466
|
+
},
|
1467
|
+
{
|
1468
|
+
"icon": {
|
1469
|
+
"paths": [
|
1470
|
+
"M480 64c-265.096 0-480 214.904-480 480 0 265.098 214.904 480 480 480 265.098 0 480-214.902 480-480 0-265.096-214.902-480-480-480zM751.59 704c8.58-40.454 13.996-83.392 15.758-128h127.446c-3.336 44.196-13.624 87.114-30.68 128h-112.524zM208.41 384c-8.58 40.454-13.996 83.392-15.758 128h-127.444c3.336-44.194 13.622-87.114 30.678-128h112.524zM686.036 384c9.614 40.962 15.398 83.854 17.28 128h-191.316v-128h174.036zM512 320v-187.338c14.59 4.246 29.044 11.37 43.228 21.37 26.582 18.74 52.012 47.608 73.54 83.486 14.882 24.802 27.752 52.416 38.496 82.484l-155.264-0zM331.232 237.516c21.528-35.878 46.956-64.748 73.54-83.486 14.182-10 28.638-17.124 43.228-21.37l-0 187.34h-155.264c10.746-30.066 23.616-57.68 38.496-82.484zM448 384v128h-191.314c1.88-44.146 7.666-87.038 17.278-128h174.036zM95.888 704c-17.056-40.886-27.342-83.804-30.678-128h127.444c1.762 44.608 7.178 87.546 15.758 128h-112.524zM256.686 576h191.314v128h-174.036c-9.612-40.96-15.398-83.854-17.278-128zM448 768v187.34c-14.588-4.246-29.044-11.372-43.228-21.37-26.584-18.74-52.014-47.61-73.54-83.486-14.882-24.804-27.75-52.418-38.498-82.484h155.266zM628.768 850.484c-21.528 35.876-46.958 64.746-73.54 83.486-14.184 9.998-28.638 17.124-43.228 21.37l-0-187.34h155.266c-10.746 30.066-23.616 57.68-38.498 82.484zM512 704v-128h191.314c-1.88 44.146-7.666 87.040-17.28 128h-174.034zM767.348 512c-1.762-44.608-7.178-87.546-15.758-128h112.524c17.056 40.886 27.344 83.806 30.68 128h-127.446zM830.658 320h-95.9c-18.638-58.762-44.376-110.294-75.316-151.428 42.536 20.34 81.058 47.616 114.714 81.272 21.48 21.478 40.362 44.938 56.502 70.156zM185.844 249.844c33.658-33.658 72.18-60.932 114.714-81.272-30.942 41.134-56.676 92.666-75.316 151.428h-95.898c16.138-25.218 35.022-48.678 56.5-70.156zM129.344 768h95.898c18.64 58.762 44.376 110.294 75.318 151.43-42.536-20.34-81.058-47.616-114.714-81.274-21.48-21.478-40.364-44.938-56.502-70.156zM774.156 838.156c-33.656 33.658-72.18 60.934-114.714 81.274 30.942-41.134 56.678-92.668 75.316-151.43h95.9c-16.14 25.218-35.022 48.678-56.502 70.156z"
|
1471
|
+
],
|
1472
|
+
"tags": [
|
1473
|
+
"globe",
|
1474
|
+
"web",
|
1475
|
+
"internet",
|
1476
|
+
"network",
|
1477
|
+
"sphere"
|
1478
|
+
],
|
1479
|
+
"grid": 16
|
1480
|
+
},
|
1481
|
+
"properties": {
|
1482
|
+
"id": 193,
|
1483
|
+
"order": 126,
|
1484
|
+
"prevSize": 32,
|
1485
|
+
"code": 58937,
|
1486
|
+
"name": "globe2",
|
1487
|
+
"ligatures": ""
|
1488
|
+
},
|
1489
|
+
"setIdx": 2,
|
1490
|
+
"iconIdx": 113
|
1491
|
+
},
|
1492
|
+
{
|
1493
|
+
"icon": {
|
1494
|
+
"paths": [
|
1495
|
+
"M953.396 74.642l-4.028-4.042c-94.148-94.134-248.194-94.134-342.326 0l-218.106 218.136c-94.134 94.132-94.134 248.176 0 342.31l4.026 4.026c7.832 7.848 16.146 14.924 24.736 21.458l79.848-79.85c-9.302-5.494-18.126-12.072-26.116-20.060l-4.042-4.042c-51.114-51.098-51.114-134.272 0-185.39l218.128-218.112c51.116-51.118 134.274-51.118 185.386 0l4.042 4.024c51.1 51.116 51.1 134.292 0 185.39l-98.686 98.686c17.132 42.308 25.248 87.4 24.538 132.386l152.604-152.604c94.134-94.136 94.134-248.178-0.004-342.316zM631.042 388.934c-7.832-7.832-16.146-14.922-24.736-21.44l-79.848 79.832c9.304 5.496 18.126 12.074 26.116 20.062l4.042 4.040c51.116 51.116 51.116 134.272 0 185.388l-218.13 218.134c-51.118 51.102-134.276 51.102-185.388 0l-4.042-4.042c-51.098-51.12-51.098-134.276 0-185.388l98.688-98.686c-17.134-42.306-25.246-87.402-24.538-132.386l-152.602 152.598c-94.136 94.132-94.136 248.178 0 342.324l4.026 4.032c94.152 94.128 248.192 94.128 342.328 0l218.11-218.118c94.134-94.132 94.134-248.194 0-342.326l-4.026-4.024z"
|
1496
|
+
],
|
1497
|
+
"tags": [
|
1498
|
+
"link",
|
1499
|
+
"chain",
|
1500
|
+
"url",
|
1501
|
+
"uri",
|
1502
|
+
"anchor"
|
1503
|
+
],
|
1504
|
+
"grid": 16
|
1505
|
+
},
|
1506
|
+
"properties": {
|
1507
|
+
"id": 195,
|
1508
|
+
"order": 125,
|
1509
|
+
"prevSize": 32,
|
1510
|
+
"code": 58938,
|
1511
|
+
"name": "link",
|
1512
|
+
"ligatures": ""
|
1513
|
+
},
|
1514
|
+
"setIdx": 2,
|
1515
|
+
"iconIdx": 114
|
1516
|
+
},
|
1517
|
+
{
|
1518
|
+
"icon": {
|
1519
|
+
"paths": [
|
1520
|
+
"M928 576c73 0 32 192-32 192 32 0 0 160-64 160 0 64-64 96-128 96-270.352 0-175.264-67.65-448-96v-512c240.922-72.268 480-253.424 480-416 53 0 192 64 0 384 0 0 160 0 192 0 96 0 64 192 0 192zM192 416v512h64v32h-128c-35.2 0-64-43.2-64-96v-384c0-52.8 28.8-96 64-96h128v32h-64z"
|
1521
|
+
],
|
1522
|
+
"tags": [
|
1523
|
+
"thumbs-up",
|
1524
|
+
"up",
|
1525
|
+
"like",
|
1526
|
+
"rate",
|
1527
|
+
"vote up"
|
1528
|
+
],
|
1529
|
+
"grid": 16
|
1530
|
+
},
|
1531
|
+
"properties": {
|
1532
|
+
"id": 212,
|
1533
|
+
"order": 112,
|
1534
|
+
"prevSize": 32,
|
1535
|
+
"code": 58939,
|
1536
|
+
"name": "thumbs-up",
|
1537
|
+
"ligatures": ""
|
1538
|
+
},
|
1539
|
+
"setIdx": 2,
|
1540
|
+
"iconIdx": 115
|
1541
|
+
},
|
1542
|
+
{
|
1543
|
+
"icon": {
|
1544
|
+
"paths": [
|
1545
|
+
"M96 448c-73 0-32-192 32-192-32 0 0-160 64-160 0-64 64-96 128-96 270.352 0 175.264 67.65 448 96v512c-240.922 72.268-480 253.424-480 416-53 0-192-64 0-384 0 0-160 0-192 0-96 0-64-192 0-192zM832 608v-512h-64v-32h128c35.2 0 64 43.2 64 96v384c0 52.8-28.8 96-64 96h-128v-32h64z"
|
1546
|
+
],
|
1547
|
+
"tags": [
|
1548
|
+
"thumbs-up",
|
1549
|
+
"up",
|
1550
|
+
"like",
|
1551
|
+
"rate",
|
1552
|
+
"vote down"
|
1553
|
+
],
|
1554
|
+
"grid": 16
|
1555
|
+
},
|
1556
|
+
"properties": {
|
1557
|
+
"id": 213,
|
1558
|
+
"order": 111,
|
1559
|
+
"prevSize": 32,
|
1560
|
+
"code": 58940,
|
1561
|
+
"name": "thumbs-up2",
|
1562
|
+
"ligatures": ""
|
1563
|
+
},
|
1564
|
+
"setIdx": 2,
|
1565
|
+
"iconIdx": 116
|
1566
|
+
},
|
1567
|
+
{
|
1568
|
+
"icon": {
|
1569
|
+
"paths": [
|
1570
|
+
"M320 128v347.808c-80.91-22.456-100.592-33.808-186-33.808-73.888 0-134 60.112-134 134 0 73.886 60.112 134 134 134 103.972 0 151.95 38.722 205.71 115.090 1.596 2.268 3.162 4.578 4.71 6.91h-88.42v192h640v-192h-57.004c4.302-63.662 22.192-81.12 44.084-102.446 16.89-16.452 37.912-36.928 53.276-74.030 16.13-38.954 23.644-89.646 23.644-159.524v-48-16.98c0-61.938-51.268-112.326-114.286-112.326-10.47 0-20.876 1.424-30.9 4.19-20.996-19.71-49.002-30.964-78.814-30.964-10.468 0-20.876 1.424-30.898 4.19-20.998-19.71-49.006-30.964-78.816-30.964-18.036 0-35.1 4.142-50.286 11.488v-148.634c0-70.694-57.306-128-128-128-70.692 0-128 57.306-128 128zM832 928c0 17.672-14.326 32-32 32s-32-14.328-32-32 14.326-32 32-32 32 14.328 32 32zM512 134v249.468 6.532h64v-6.532c0-26.646 22.558-48.326 50.286-48.326 17.37 0 33.29 8.468 42.586 22.654l16.244 24.788 25.958-14.298c7.562-4.166 16.182-6.368 24.926-6.368 17.37 0 33.288 8.468 42.582 22.652l16.244 24.79 25.96-14.298c7.562-4.166 16.182-6.368 24.928-6.368 27.726 0 50.286 21.68 50.286 48.326l-0 16.98v48c0 126.562-38.206 152.088-65.95 179.112-28.32 27.588-59.984 58.49-66.728 150.888h-334.374c-8.264-15.756-17.264-30.7-27.090-44.658-67.858-96.392-139.546-147.342-267.858-147.342-31.982 0-58-30.020-58-62s26.018-60 58-60c85.66 0 105.412 12.414 186 36.96 22.742 6.124 45.27 11.922 63.334 15.876l0.666-436.836c0-35.29 28.71-64 64-64s64 28.71 64 64z"
|
1571
|
+
],
|
1572
|
+
"tags": [
|
1573
|
+
"point-up",
|
1574
|
+
"finger",
|
1575
|
+
"direction",
|
1576
|
+
"hand",
|
1577
|
+
"up"
|
1578
|
+
],
|
1579
|
+
"grid": 16
|
1580
|
+
},
|
1581
|
+
"properties": {
|
1582
|
+
"id": 240,
|
1583
|
+
"order": 132,
|
1584
|
+
"prevSize": 32,
|
1585
|
+
"code": 58941,
|
1586
|
+
"name": "point-up",
|
1587
|
+
"ligatures": ""
|
1588
|
+
},
|
1589
|
+
"setIdx": 2,
|
1590
|
+
"iconIdx": 117
|
1591
|
+
},
|
1592
|
+
{
|
1593
|
+
"icon": {
|
1594
|
+
"paths": [
|
1595
|
+
"M896 384h-347.808c22.456-80.91 33.808-100.592 33.808-186 0-73.888-60.112-134-134-134-73.886 0-134 60.112-134 134 0 103.972-38.722 151.95-115.090 205.71-2.268 1.596-4.578 3.162-6.91 4.71v-88.42h-192v640h192v-57.004c63.662 4.302 81.12 22.192 102.446 44.084 16.452 16.89 36.928 37.912 74.030 53.276 38.954 16.13 89.646 23.644 159.524 23.644h48 16.98c61.938 0 112.326-51.268 112.326-114.286 0-10.47-1.424-20.876-4.19-30.9 19.71-20.996 30.964-49.002 30.964-78.814 0-10.468-1.424-20.876-4.19-30.898 19.71-20.998 30.964-49.006 30.964-78.816 0-18.036-4.142-35.1-11.488-50.286h148.634c70.694 0 128-57.306 128-128 0-70.692-57.306-128-128-128zM96 896c-17.672 0-32-14.326-32-32s14.328-32 32-32 32 14.326 32 32-14.328 32-32 32zM890 576h-256v64h6.532c26.646 0 48.326 22.558 48.326 50.286 0 17.37-8.468 33.29-22.654 42.586l-24.788 16.244 14.298 25.958c4.166 7.562 6.368 16.182 6.368 24.926 0 17.37-8.468 33.288-22.652 42.582l-24.79 16.244 14.298 25.96c4.166 7.562 6.368 16.182 6.368 24.928 0 27.726-21.68 50.286-48.326 50.286h-16.98-48c-126.562 0-152.088-38.206-179.112-65.95-27.588-28.32-58.49-59.984-150.888-66.728l-0-334.374c15.756-8.264 30.7-17.264 44.658-27.090 96.392-67.858 147.342-139.546 147.342-267.858 0-31.982 30.020-58 62-58s60 26.018 60 58c0 85.66-12.414 105.412-36.96 186-6.124 22.742-11.922 45.27-15.876 63.334l436.836 0.666c35.29 0 64 28.71 64 64s-28.71 64-64 64z"
|
1596
|
+
],
|
1597
|
+
"tags": [
|
1598
|
+
"point-right",
|
1599
|
+
"finger",
|
1600
|
+
"direction",
|
1601
|
+
"hand",
|
1602
|
+
"right"
|
1603
|
+
],
|
1604
|
+
"grid": 16
|
1605
|
+
},
|
1606
|
+
"properties": {
|
1607
|
+
"id": 241,
|
1608
|
+
"order": 127,
|
1609
|
+
"prevSize": 32,
|
1610
|
+
"code": 58942,
|
1611
|
+
"name": "point-right",
|
1612
|
+
"ligatures": ""
|
1613
|
+
},
|
1614
|
+
"setIdx": 2,
|
1615
|
+
"iconIdx": 118
|
1616
|
+
},
|
1617
|
+
{
|
1618
|
+
"icon": {
|
1619
|
+
"paths": [
|
1620
|
+
"M320 896v-347.808c-80.91 22.456-100.592 33.808-186 33.808-73.888 0-134-60.112-134-134 0-73.886 60.112-134 134-134 103.972 0 151.95-38.722 205.71-115.090 1.596-2.268 3.162-4.578 4.71-6.91h-88.42v-192h640v192h-57.004c4.302 63.662 22.192 81.12 44.084 102.446 16.89 16.452 37.912 36.928 53.276 74.030 16.13 38.954 23.644 89.646 23.644 159.524v48 16.98c0 61.938-51.268 112.326-114.286 112.326-10.47 0-20.876-1.424-30.9-4.19-20.996 19.71-49.002 30.964-78.814 30.964-10.468 0-20.876-1.424-30.898-4.19-20.998 19.71-49.006 30.964-78.816 30.964-18.036 0-35.1-4.142-50.286-11.488v148.634c0 70.694-57.306 128-128 128-70.692 0-128-57.306-128-128zM832 96c0-17.672-14.326-32-32-32s-32 14.328-32 32 14.326 32 32 32 32-14.328 32-32zM512 890v-249.468-6.532h64v6.532c0 26.646 22.558 48.326 50.286 48.326 17.37 0 33.29-8.468 42.586-22.654l16.244-24.788 25.958 14.298c7.562 4.166 16.182 6.368 24.926 6.368 17.37 0 33.288-8.468 42.582-22.652l16.244-24.79 25.96 14.298c7.562 4.166 16.182 6.368 24.928 6.368 27.726 0 50.286-21.68 50.286-48.326l-0-16.98v-48c0-126.562-38.206-152.088-65.95-179.112-28.32-27.588-59.984-58.49-66.728-150.888h-334.374c-8.264 15.756-17.264 30.7-27.090 44.658-67.858 96.392-139.546 147.342-267.858 147.342-31.982 0-58 30.020-58 62s26.018 60 58 60c85.66 0 105.412-12.414 186-36.96 22.742-6.124 45.27-11.922 63.334-15.876l0.666 436.836c0 35.29 28.71 64 64 64s64-28.71 64-64z"
|
1621
|
+
],
|
1622
|
+
"tags": [
|
1623
|
+
"point-down",
|
1624
|
+
"finger",
|
1625
|
+
"direction",
|
1626
|
+
"hand",
|
1627
|
+
"down"
|
1628
|
+
],
|
1629
|
+
"grid": 16
|
1630
|
+
},
|
1631
|
+
"properties": {
|
1632
|
+
"id": 242,
|
1633
|
+
"order": 134,
|
1634
|
+
"prevSize": 32,
|
1635
|
+
"code": 58943,
|
1636
|
+
"name": "point-down",
|
1637
|
+
"ligatures": ""
|
1638
|
+
},
|
1639
|
+
"setIdx": 2,
|
1640
|
+
"iconIdx": 119
|
1641
|
+
},
|
1642
|
+
{
|
1643
|
+
"icon": {
|
1644
|
+
"paths": [
|
1645
|
+
"M128 384h347.808c-22.456-80.91-33.808-100.592-33.808-186 0-73.888 60.112-134 134-134 73.886 0 134 60.112 134 134 0 103.972 38.722 151.95 115.090 205.71 2.268 1.596 4.578 3.162 6.91 4.71v-88.42h192v640h-192v-57.004c-63.662 4.302-81.12 22.192-102.446 44.084-16.452 16.89-36.928 37.912-74.030 53.276-38.954 16.13-89.646 23.644-159.524 23.644h-48-16.98c-61.938 0-112.326-51.268-112.326-114.286 0-10.47 1.424-20.876 4.19-30.9-19.71-20.996-30.964-49.002-30.964-78.814 0-10.468 1.424-20.876 4.19-30.898-19.71-20.998-30.964-49.006-30.964-78.816 0-18.036 4.142-35.1 11.488-50.286h-148.634c-70.694 0-128-57.306-128-128 0-70.692 57.306-128 128-128zM928 896c17.672 0 32-14.326 32-32s-14.328-32-32-32-32 14.326-32 32 14.328 32 32 32zM134 576h256v64h-6.532c-26.646 0-48.326 22.558-48.326 50.286 0 17.37 8.468 33.29 22.654 42.586l24.788 16.244-14.298 25.958c-4.166 7.562-6.368 16.182-6.368 24.926 0 17.37 8.468 33.288 22.652 42.582l24.79 16.244-14.298 25.96c-4.166 7.562-6.368 16.182-6.368 24.928 0 27.726 21.68 50.286 48.326 50.286h16.98 48c126.562 0 152.088-38.206 179.112-65.95 27.588-28.32 58.49-59.984 150.888-66.728v-334.374c-15.756-8.264-30.7-17.264-44.658-27.090-96.392-67.858-147.342-139.546-147.342-267.858 0-31.982-30.020-58-62-58s-60 26.018-60 58c0 85.66 12.414 105.412 36.96 186 6.124 22.742 11.922 45.27 15.876 63.334l-436.836 0.666c-35.29 0-64 28.71-64 64s28.71 64 64 64z"
|
1646
|
+
],
|
1647
|
+
"tags": [
|
1648
|
+
"point-left",
|
1649
|
+
"finger",
|
1650
|
+
"direction",
|
1651
|
+
"hand",
|
1652
|
+
"left"
|
1653
|
+
],
|
1654
|
+
"grid": 16
|
1655
|
+
},
|
1656
|
+
"properties": {
|
1657
|
+
"id": 243,
|
1658
|
+
"order": 133,
|
1659
|
+
"prevSize": 32,
|
1660
|
+
"code": 58944,
|
1661
|
+
"name": "point-left",
|
1662
|
+
"ligatures": ""
|
1663
|
+
},
|
1664
|
+
"setIdx": 2,
|
1665
|
+
"iconIdx": 120
|
1666
|
+
},
|
1667
|
+
{
|
1668
|
+
"icon": {
|
1669
|
+
"paths": [
|
1670
|
+
"M512 158.724l-344.834 737.276h689.668l-344.834-737.276zM512 0v0c22.070 0 44.14 14.882 60.884 44.648l437.072 871.112c33.49 59.532 5 108.24-63.302 108.24h-869.308c-68.304 0-96.79-48.708-63.304-108.24l437.074-871.112c16.744-29.766 38.814-44.648 60.884-44.648zM448 768c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64zM512 384c35.346 0 64 28.654 64 64l-20 192h-88l-20-192c0-35.346 28.654-64 64-64z"
|
1671
|
+
],
|
1672
|
+
"tags": [
|
1673
|
+
"warning",
|
1674
|
+
"sign"
|
1675
|
+
],
|
1676
|
+
"grid": 16
|
1677
|
+
},
|
1678
|
+
"properties": {
|
1679
|
+
"id": 244,
|
1680
|
+
"order": 135,
|
1681
|
+
"prevSize": 32,
|
1682
|
+
"code": 58945,
|
1683
|
+
"name": "warning2",
|
1684
|
+
"ligatures": ""
|
1685
|
+
},
|
1686
|
+
"setIdx": 2,
|
1687
|
+
"iconIdx": 121
|
1688
|
+
},
|
1689
|
+
{
|
1690
|
+
"icon": {
|
1691
|
+
"paths": [
|
1692
|
+
"M512 96c-111.118 0-215.584 43.272-294.156 121.844s-121.844 183.038-121.844 294.156c0 111.118 43.272 215.584 121.844 294.156 78.572 78.572 183.038 121.844 294.156 121.844 111.118 0 215.584-43.272 294.156-121.844 78.572-78.572 121.844-183.038 121.844-294.156 0-111.118-43.272-215.584-121.844-294.156-78.572-78.572-183.038-121.844-294.156-121.844zM512 0v0c282.77 0 512 229.23 512 512s-229.23 512-512 512c-282.77 0-512-229.23-512-512 0-282.77 229.23-512 512-512zM448 704h128v128h-128zM448 192h128v384h-128z"
|
1693
|
+
],
|
1694
|
+
"tags": [
|
1695
|
+
"notification",
|
1696
|
+
"warning",
|
1697
|
+
"notice",
|
1698
|
+
"note",
|
1699
|
+
"exclamation"
|
1700
|
+
],
|
1701
|
+
"grid": 16
|
1702
|
+
},
|
1703
|
+
"properties": {
|
1704
|
+
"id": 245,
|
1705
|
+
"order": 131,
|
1706
|
+
"prevSize": 32,
|
1707
|
+
"code": 58946,
|
1708
|
+
"name": "notification",
|
1709
|
+
"ligatures": ""
|
1710
|
+
},
|
1711
|
+
"setIdx": 2,
|
1712
|
+
"iconIdx": 122
|
1713
|
+
},
|
1714
|
+
{
|
1715
|
+
"icon": {
|
1716
|
+
"paths": [
|
1717
|
+
"M448 704h128v128h-128zM704 256c35.346 0 64 28.654 64 64v192l-192 128h-128v-64l192-128v-64h-320v-128h384zM512 96c-111.118 0-215.584 43.272-294.156 121.844s-121.844 183.038-121.844 294.156c0 111.118 43.272 215.584 121.844 294.156 78.572 78.572 183.038 121.844 294.156 121.844 111.118 0 215.584-43.272 294.156-121.844 78.572-78.572 121.844-183.038 121.844-294.156 0-111.118-43.272-215.584-121.844-294.156-78.572-78.572-183.038-121.844-294.156-121.844zM512 0v0c282.77 0 512 229.23 512 512s-229.23 512-512 512c-282.77 0-512-229.23-512-512 0-282.77 229.23-512 512-512z"
|
1718
|
+
],
|
1719
|
+
"tags": [
|
1720
|
+
"question",
|
1721
|
+
"help",
|
1722
|
+
"support"
|
1723
|
+
],
|
1724
|
+
"grid": 16
|
1725
|
+
},
|
1726
|
+
"properties": {
|
1727
|
+
"id": 246,
|
1728
|
+
"order": 130,
|
1729
|
+
"prevSize": 32,
|
1730
|
+
"code": 58947,
|
1731
|
+
"name": "question",
|
1732
|
+
"ligatures": ""
|
1733
|
+
},
|
1734
|
+
"setIdx": 2,
|
1735
|
+
"iconIdx": 123
|
1736
|
+
},
|
1737
|
+
{
|
1738
|
+
"icon": {
|
1739
|
+
"paths": [
|
1740
|
+
"M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM512 928c-229.75 0-416-186.25-416-416s186.25-416 416-416 416 186.25 416 416-186.25 416-416 416zM448 256h128v128h-128zM640 768h-256v-64h64v-192h-64v-64h192v256h64z"
|
1741
|
+
],
|
1742
|
+
"tags": [
|
1743
|
+
"info",
|
1744
|
+
"information"
|
1745
|
+
],
|
1746
|
+
"grid": 16
|
1747
|
+
},
|
1748
|
+
"properties": {
|
1749
|
+
"id": 247,
|
1750
|
+
"order": 129,
|
1751
|
+
"prevSize": 32,
|
1752
|
+
"code": 58948,
|
1753
|
+
"name": "info",
|
1754
|
+
"ligatures": ""
|
1755
|
+
},
|
1756
|
+
"setIdx": 2,
|
1757
|
+
"iconIdx": 124
|
1758
|
+
},
|
1759
|
+
{
|
1760
|
+
"icon": {
|
1761
|
+
"paths": [
|
1762
|
+
"M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM448 192h128v128h-128v-128zM640 832h-256v-64h64v-256h-64v-64h192v320h64v64z"
|
1763
|
+
],
|
1764
|
+
"tags": [
|
1765
|
+
"info",
|
1766
|
+
"information"
|
1767
|
+
],
|
1768
|
+
"grid": 16
|
1769
|
+
},
|
1770
|
+
"properties": {
|
1771
|
+
"id": 248,
|
1772
|
+
"order": 128,
|
1773
|
+
"prevSize": 32,
|
1774
|
+
"code": 58949,
|
1775
|
+
"name": "info2",
|
1776
|
+
"ligatures": ""
|
1777
|
+
},
|
1778
|
+
"setIdx": 2,
|
1779
|
+
"iconIdx": 125
|
1780
|
+
},
|
1781
|
+
{
|
1782
|
+
"icon": {
|
1783
|
+
"paths": [
|
1784
|
+
"M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM768 346.51l-165.488 165.49 165.488 165.488v90.512h-90.512l-165.488-165.488-165.49 165.488h-90.51v-90.512l165.49-165.488-165.49-165.49v-90.51h90.51l165.49 165.49 165.488-165.49h90.512v90.51z"
|
1785
|
+
],
|
1786
|
+
"tags": [
|
1787
|
+
"cancel-circle",
|
1788
|
+
"close",
|
1789
|
+
"remove",
|
1790
|
+
"delete"
|
1791
|
+
],
|
1792
|
+
"grid": 16
|
1793
|
+
},
|
1794
|
+
"properties": {
|
1795
|
+
"id": 250,
|
1796
|
+
"order": 51,
|
1797
|
+
"prevSize": 32,
|
1798
|
+
"code": 58918,
|
1799
|
+
"name": "cancel-circle",
|
1800
|
+
"ligatures": ""
|
1801
|
+
},
|
1802
|
+
"setIdx": 2,
|
1803
|
+
"iconIdx": 126
|
1804
|
+
},
|
1805
|
+
{
|
1806
|
+
"icon": {
|
1807
|
+
"paths": [
|
1808
|
+
"M1014.662 822.66c-0.004-0.004-0.008-0.008-0.012-0.010l-310.644-310.65 310.644-310.65c0.004-0.004 0.008-0.006 0.012-0.010 3.344-3.346 5.762-7.254 7.312-11.416 4.246-11.376 1.824-24.682-7.324-33.83l-146.746-146.746c-9.148-9.146-22.45-11.566-33.828-7.32-4.16 1.55-8.070 3.968-11.418 7.31 0 0.004-0.004 0.006-0.008 0.010l-310.648 310.652-310.648-310.65c-0.004-0.004-0.006-0.006-0.010-0.010-3.346-3.342-7.254-5.76-11.414-7.31-11.38-4.248-24.682-1.826-33.83 7.32l-146.748 146.748c-9.148 9.148-11.568 22.452-7.322 33.828 1.552 4.16 3.97 8.072 7.312 11.416 0.004 0.002 0.006 0.006 0.010 0.010l310.65 310.648-310.65 310.652c-0.002 0.004-0.006 0.006-0.008 0.010-3.342 3.346-5.76 7.254-7.314 11.414-4.248 11.376-1.826 24.682 7.322 33.83l146.748 146.746c9.15 9.148 22.452 11.568 33.83 7.322 4.16-1.552 8.070-3.97 11.416-7.312 0.002-0.004 0.006-0.006 0.010-0.010l310.648-310.65 310.648 310.65c0.004 0.002 0.008 0.006 0.012 0.008 3.348 3.344 7.254 5.762 11.414 7.314 11.378 4.246 24.684 1.826 33.828-7.322l146.746-146.748c9.148-9.148 11.57-22.454 7.324-33.83-1.552-4.16-3.97-8.068-7.314-11.414z"
|
1809
|
+
],
|
1810
|
+
"tags": [
|
1811
|
+
"close",
|
1812
|
+
"cancel",
|
1813
|
+
"quit",
|
1814
|
+
"remove",
|
1815
|
+
"cross"
|
1816
|
+
],
|
1817
|
+
"grid": 16
|
1818
|
+
},
|
1819
|
+
"properties": {
|
1820
|
+
"id": 253,
|
1821
|
+
"order": 48,
|
1822
|
+
"prevSize": 32,
|
1823
|
+
"code": 58919,
|
1824
|
+
"name": "close",
|
1825
|
+
"ligatures": ""
|
1826
|
+
},
|
1827
|
+
"setIdx": 2,
|
1828
|
+
"iconIdx": 127
|
1829
|
+
},
|
1830
|
+
{
|
1831
|
+
"icon": {
|
1832
|
+
"paths": [
|
1833
|
+
"M320 640v-192h192l-256-256-256 256h192v320h384l-128-128zM832 576v-320h-384l128 128h128v192h-192l256 256 256-256z"
|
1834
|
+
],
|
1835
|
+
"tags": [
|
1836
|
+
"loop",
|
1837
|
+
"repeat",
|
1838
|
+
"reload",
|
1839
|
+
"refresh",
|
1840
|
+
"update",
|
1841
|
+
"upgrade",
|
1842
|
+
"synchronize",
|
1843
|
+
"media control",
|
1844
|
+
"arrows"
|
1845
|
+
],
|
1846
|
+
"grid": 16
|
1847
|
+
},
|
1848
|
+
"properties": {
|
1849
|
+
"id": 285,
|
1850
|
+
"order": 26,
|
1851
|
+
"prevSize": 32,
|
1852
|
+
"code": 58908,
|
1853
|
+
"name": "loop",
|
1854
|
+
"ligatures": ""
|
1855
|
+
},
|
1856
|
+
"setIdx": 2,
|
1857
|
+
"iconIdx": 128
|
1858
|
+
},
|
1859
|
+
{
|
1860
|
+
"icon": {
|
1861
|
+
"paths": [
|
1862
|
+
"M1024 256l-256-256v192c-130.772 0-230.752 31.208-305.65 95.408-5.25 4.5-10.284 9.1-15.162 13.774 27.52 38.164 48.716 77.516 67.772 115.090 48.322-58.402 118.054-96.272 253.040-96.272v192 0 192c-216.446 0-265.126-97.36-326.756-220.622-34.306-68.612-69.78-139.56-135.592-195.97-74.9-64.2-174.88-95.408-305.652-95.408v128c216.446 0 265.126 97.36 326.756 220.622 34.306 68.612 69.78 139.56 135.592 195.97 74.9 64.2 174.882 95.408 305.652 95.408v192l256-256-256-256 256-256zM0 704v128c130.772 0 230.75-31.208 305.65-95.408 5.25-4.498 10.284-9.1 15.162-13.776-27.52-38.162-48.718-77.516-67.772-115.090-48.32 58.402-118.052 96.274-253.040 96.274z"
|
1863
|
+
],
|
1864
|
+
"tags": [
|
1865
|
+
"shuffle",
|
1866
|
+
"media control",
|
1867
|
+
"random"
|
1868
|
+
],
|
1869
|
+
"grid": 16
|
1870
|
+
},
|
1871
|
+
"properties": {
|
1872
|
+
"id": 286,
|
1873
|
+
"order": 25,
|
1874
|
+
"prevSize": 32,
|
1875
|
+
"code": 58909,
|
1876
|
+
"name": "shuffle",
|
1877
|
+
"ligatures": ""
|
1878
|
+
},
|
1879
|
+
"setIdx": 2,
|
1880
|
+
"iconIdx": 129
|
1881
|
+
},
|
1882
|
+
{
|
1883
|
+
"icon": {
|
1884
|
+
"paths": [
|
1885
|
+
"M704 192h-704v128h704v192l256-256-256-256zM960 0v256 256h64v-512zM320 512l-256 256 256 256v-192h704v-128h-704zM0 512v512h64v-256-256z"
|
1886
|
+
],
|
1887
|
+
"tags": [
|
1888
|
+
"tab",
|
1889
|
+
"arrows"
|
1890
|
+
],
|
1891
|
+
"grid": 16
|
1892
|
+
},
|
1893
|
+
"properties": {
|
1894
|
+
"id": 311,
|
1895
|
+
"order": 43,
|
1896
|
+
"prevSize": 32,
|
1897
|
+
"code": 58910,
|
1898
|
+
"name": "tab",
|
1899
|
+
"ligatures": ""
|
1900
|
+
},
|
1901
|
+
"setIdx": 2,
|
1902
|
+
"iconIdx": 130
|
1903
|
+
},
|
1904
|
+
{
|
1905
|
+
"icon": {
|
1906
|
+
"paths": [
|
1907
|
+
"M0 192v704h1024v-704h-1024zM384 640v-128h256v128h-256zM640 704v128h-256v-128h256zM640 320v128h-256v-128h256zM320 320v128h-256v-128h256zM64 512h256v128h-256v-128zM704 512h256v128h-256v-128zM704 448v-128h256v128h-256zM64 704h256v128h-256v-128zM704 832v-128h256v128h-256z"
|
1908
|
+
],
|
1909
|
+
"tags": [
|
1910
|
+
"table",
|
1911
|
+
"wysiwyg"
|
1912
|
+
],
|
1913
|
+
"grid": 16
|
1914
|
+
},
|
1915
|
+
"properties": {
|
1916
|
+
"id": 330,
|
1917
|
+
"order": 138,
|
1918
|
+
"prevSize": 32,
|
1919
|
+
"code": 58950,
|
1920
|
+
"name": "table",
|
1921
|
+
"ligatures": ""
|
1922
|
+
},
|
1923
|
+
"setIdx": 2,
|
1924
|
+
"iconIdx": 131
|
1925
|
+
},
|
1926
|
+
{
|
1927
|
+
"icon": {
|
1928
|
+
"paths": [
|
1929
|
+
"M0 64v896h1024v-896h-1024zM384 640v-192h256v192h-256zM640 704v192h-256v-192h256zM640 192v192h-256v-192h256zM320 192v192h-256v-192h256zM64 448h256v192h-256v-192zM704 448h256v192h-256v-192zM704 384v-192h256v192h-256zM64 704h256v192h-256v-192zM704 896v-192h256v192h-256z"
|
1930
|
+
],
|
1931
|
+
"tags": [
|
1932
|
+
"table",
|
1933
|
+
"wysiwyg"
|
1934
|
+
],
|
1935
|
+
"grid": 16
|
1936
|
+
},
|
1937
|
+
"properties": {
|
1938
|
+
"id": 331,
|
1939
|
+
"order": 137,
|
1940
|
+
"prevSize": 32,
|
1941
|
+
"code": 58951,
|
1942
|
+
"name": "table2",
|
1943
|
+
"ligatures": ""
|
1944
|
+
},
|
1945
|
+
"setIdx": 2,
|
1946
|
+
"iconIdx": 132
|
1947
|
+
},
|
1948
|
+
{
|
1949
|
+
"icon": {
|
1950
|
+
"paths": [
|
1951
|
+
"M384 192h128v64h-128zM576 192h128v64h-128zM896 192v256h-192v-64h128v-128h-64v-64zM320 384h128v64h-128zM512 384h128v64h-128zM192 256v128h64v64h-128v-256h192v64zM384 576h128v64h-128zM576 576h128v64h-128zM896 576v256h-192v-64h128v-128h-64v-64zM320 768h128v64h-128zM512 768h128v64h-128zM192 640v128h64v64h-128v-256h192v64zM960 64h-896v896h896v-896zM1024 0v0 1024h-1024v-1024h1024z"
|
1952
|
+
],
|
1953
|
+
"tags": [
|
1954
|
+
"insert-template",
|
1955
|
+
"wysiwyg"
|
1956
|
+
],
|
1957
|
+
"grid": 16
|
1958
|
+
},
|
1959
|
+
"properties": {
|
1960
|
+
"id": 332,
|
1961
|
+
"order": 136,
|
1962
|
+
"prevSize": 32,
|
1963
|
+
"code": 58952,
|
1964
|
+
"name": "insert-template",
|
1965
|
+
"ligatures": ""
|
1966
|
+
},
|
1967
|
+
"setIdx": 2,
|
1968
|
+
"iconIdx": 133
|
1969
|
+
},
|
1970
|
+
{
|
1971
|
+
"icon": {
|
1972
|
+
"paths": [
|
1973
|
+
"M0 64h1024v128h-1024zM0 256h1024v128h-1024zM0 448h1024v128h-1024zM0 640h1024v128h-1024zM0 832h1024v128h-1024z"
|
1974
|
+
],
|
1975
|
+
"tags": [
|
1976
|
+
"paragraph-justify",
|
1977
|
+
"wysiwyg",
|
1978
|
+
"justify"
|
1979
|
+
],
|
1980
|
+
"grid": 16
|
1981
|
+
},
|
1982
|
+
"properties": {
|
1983
|
+
"id": 343,
|
1984
|
+
"order": 45,
|
1985
|
+
"prevSize": 32,
|
1986
|
+
"code": 58911,
|
1987
|
+
"name": "paragraph-justify",
|
1988
|
+
"ligatures": ""
|
1989
|
+
},
|
1990
|
+
"setIdx": 2,
|
1991
|
+
"iconIdx": 134
|
1992
|
+
},
|
1993
|
+
{
|
1994
|
+
"icon": {
|
1995
|
+
"paths": [
|
1996
|
+
"M192 64v768h768v-768h-768zM896 768h-640v-640h640v640zM128 896v-640l-64-64v768h768l-64-64zM429.254 685.254l192-192 146.746 146.746v-384h-384l146.746 146.746-192 192z"
|
1997
|
+
],
|
1998
|
+
"tags": [
|
1999
|
+
"new tab",
|
2000
|
+
"external",
|
2001
|
+
"outside",
|
2002
|
+
"popout",
|
2003
|
+
"link",
|
2004
|
+
"blank"
|
2005
|
+
],
|
2006
|
+
"grid": 16
|
2007
|
+
},
|
2008
|
+
"properties": {
|
2009
|
+
"id": 346,
|
2010
|
+
"order": 44,
|
2011
|
+
"prevSize": 32,
|
2012
|
+
"code": 58912,
|
2013
|
+
"name": "newtab",
|
2014
|
+
"ligatures": ""
|
2015
|
+
},
|
2016
|
+
"setIdx": 2,
|
2017
|
+
"iconIdx": 135
|
2018
|
+
},
|
2019
|
+
{
|
2020
|
+
"icon": {
|
2021
|
+
"paths": [
|
2022
|
+
"M842.012 589.48c-13.648-13.446-43.914-20.566-89.972-21.172-31.178-0.344-68.702 2.402-108.17 7.928-17.674-10.198-35.892-21.294-50.188-34.658-38.462-35.916-70.568-85.772-90.576-140.594 1.304-5.12 2.414-9.62 3.448-14.212 0 0 21.666-123.060 15.93-164.666-0.79-5.706-1.274-7.362-2.808-11.796l-1.882-4.834c-5.896-13.592-17.448-27.994-35.566-27.208l-10.624-0.338-0.292-0.006c-20.2 0-36.664 10.332-40.986 25.774-13.138 48.434 0.418 120.892 24.982 214.738l-6.288 15.286c-17.588 42.876-39.63 86.060-59.078 124.158l-2.528 4.952c-20.46 40.038-39.024 74.026-55.854 102.822l-17.376 9.188c-1.264 0.668-31.044 16.418-38.028 20.644-59.256 35.382-98.522 75.54-105.036 107.416-2.072 10.17-0.53 23.186 10.014 29.214l16.806 8.458c7.29 3.652 14.978 5.502 22.854 5.502 42.204 0 91.2-52.572 158.696-170.366 77.93-25.368 166.654-46.456 244.414-58.090 59.258 33.368 132.142 56.546 178.142 56.546 8.168 0 15.212-0.778 20.932-2.296 8.822-2.336 16.258-7.366 20.792-14.192 8.926-13.432 10.734-31.932 8.312-50.876-0.722-5.624-5.212-12.576-10.070-17.322zM211.646 814.048c7.696-21.042 38.16-62.644 83.204-99.556 2.832-2.296 9.808-8.832 16.194-14.902-47.102 75.124-78.646 105.066-99.398 114.458zM478.434 199.686c13.566 0 21.284 34.194 21.924 66.254 0.64 32.060-6.858 54.56-16.158 71.208-7.702-24.648-11.426-63.5-11.426-88.904 0 0-0.566-48.558 5.66-48.558zM398.852 637.494c9.45-16.916 19.282-34.756 29.33-53.678 24.492-46.316 39.958-82.556 51.478-112.346 22.91 41.684 51.444 77.12 84.986 105.512 4.184 3.542 8.618 7.102 13.274 10.65-68.21 13.496-127.164 29.91-179.068 49.862zM828.904 633.652c-4.154 2.598-16.054 4.1-23.708 4.1-24.706 0-55.272-11.294-98.126-29.666 16.468-1.218 31.562-1.838 45.1-1.838 24.782 0 32.12-0.108 56.35 6.072s24.538 18.734 20.384 21.332zM903.432 199.43l-142.864-142.862c-31.112-31.112-92.568-56.568-136.568-56.568h-480c-44 0-80 36-80 80v864c0 44 36 80 80 80h736c44 0 80-36 80-80v-608c0-44-25.456-105.458-56.568-136.57zM858.178 244.686c3.13 3.13 6.25 6.974 9.28 11.314h-163.458v-163.456c4.34 3.030 8.184 6.15 11.314 9.28l142.864 142.862zM896 944c0 8.672-7.328 16-16 16h-736c-8.672 0-16-7.328-16-16v-864c0-8.672 7.328-16 16-16h480c4.832 0 10.254 0.61 16 1.704v254.296h254.296c1.094 5.746 1.704 11.166 1.704 16v608z"
|
2023
|
+
],
|
2024
|
+
"tags": [
|
2025
|
+
"file-pdf",
|
2026
|
+
"file",
|
2027
|
+
"format",
|
2028
|
+
"pdf"
|
2029
|
+
],
|
2030
|
+
"grid": 16
|
2031
|
+
},
|
2032
|
+
"properties": {
|
2033
|
+
"id": 434,
|
2034
|
+
"order": 28,
|
2035
|
+
"prevSize": 32,
|
2036
|
+
"code": 58913,
|
2037
|
+
"name": "file-pdf",
|
2038
|
+
"ligatures": ""
|
2039
|
+
},
|
2040
|
+
"setIdx": 2,
|
2041
|
+
"iconIdx": 136
|
2042
|
+
},
|
2043
|
+
{
|
2044
|
+
"icon": {
|
2045
|
+
"paths": [
|
2046
|
+
"M192 512h192v64h-192v-64zM192 640h192v64h-192v-64zM192 768h192v64h-192v-64zM903.432 199.43l-142.864-142.862c-31.112-31.112-92.568-56.568-136.568-56.568h-480c-44 0-80 36-80 80v864c0 44 36 80 80 80h736c44 0 80-36 80-80v-608c0-44-25.456-105.458-56.568-136.57zM858.178 244.686c3.13 3.13 6.25 6.974 9.28 11.314h-163.458v-163.456c4.34 3.030 8.184 6.15 11.314 9.28l142.864 142.862zM896 944c0 8.672-7.328 16-16 16h-736c-8.672 0-16-7.328-16-16v-864c0-8.672 7.328-16 16-16h480c4.832 0 10.254 0.61 16 1.704v254.296h254.296c1.094 5.746 1.704 11.166 1.704 16v608zM576 704h188.792c-14.826 73.032-79.386 128-156.792 128-88.366 0-160-71.634-160-160 0-77.406 54.97-141.966 128-156.792v188.792zM672 448c88.366 0 160 71.634 160 160 0 10.958-1.108 21.66-3.208 32h-188.792v-188.792c10.34-2.1 21.042-3.208 32-3.208z"
|
2047
|
+
],
|
2048
|
+
"tags": [
|
2049
|
+
"file-powerpoint"
|
2050
|
+
],
|
2051
|
+
"grid": 16
|
2052
|
+
},
|
2053
|
+
"properties": {
|
2054
|
+
"id": 439,
|
2055
|
+
"order": 27,
|
2056
|
+
"prevSize": 32,
|
2057
|
+
"code": 58914,
|
2058
|
+
"name": "file-powerpoint",
|
2059
|
+
"ligatures": ""
|
2060
|
+
},
|
2061
|
+
"setIdx": 2,
|
2062
|
+
"iconIdx": 137
|
2063
|
+
},
|
2064
|
+
{
|
2065
|
+
"icon": {
|
2066
|
+
"paths": [
|
2067
|
+
"M512 950.857q-14.857 0-25.143-10.286l-356.571-344q-5.714-4.571-15.714-14.857t-31.714-37.429-38.857-55.714-30.571-69.143-13.429-78.857q0-125.714 72.571-196.571t200.571-70.857q35.429 0 72.286 12.286t68.571 33.143 54.571 39.143 43.429 38.857q20.571-20.571 43.429-38.857t54.571-39.143 68.571-33.143 72.286-12.286q128 0 200.571 70.857t72.571 196.571q0 126.286-130.857 257.143l-356 342.857q-10.286 10.286-25.143 10.286z"
|
2068
|
+
],
|
2069
|
+
"tags": [
|
2070
|
+
"heart"
|
2071
|
+
],
|
2072
|
+
"defaultCode": 61444,
|
2073
|
+
"grid": 14
|
2074
|
+
},
|
2075
|
+
"properties": {
|
2076
|
+
"id": 4,
|
2077
|
+
"order": 98,
|
2078
|
+
"prevSize": 28,
|
2079
|
+
"code": 61444,
|
2080
|
+
"name": "heart",
|
2081
|
+
"ligatures": ""
|
2082
|
+
},
|
2083
|
+
"setIdx": 2,
|
2084
|
+
"iconIdx": 0
|
2085
|
+
},
|
2086
|
+
{
|
2087
|
+
"icon": {
|
2088
|
+
"paths": [
|
2089
|
+
"M950.857 369.714q0 12.571-14.857 27.429l-207.429 202.286 49.143 285.714q0.571 4 0.571 11.429 0 12-6 20.286t-17.429 8.286q-10.857 0-22.857-6.857l-256.571-134.857-256.571 134.857q-12.571 6.857-22.857 6.857-12 0-18-8.286t-6-20.286q0-3.429 1.143-11.429l49.143-285.714-208-202.286q-14.286-15.429-14.286-27.429 0-21.143 32-26.286l286.857-41.714 128.571-260q10.857-23.429 28-23.429t28 23.429l128.571 260 286.857 41.714q32 5.143 32 26.286z"
|
2090
|
+
],
|
2091
|
+
"width": 951,
|
2092
|
+
"tags": [
|
2093
|
+
"star"
|
2094
|
+
],
|
2095
|
+
"defaultCode": 61445,
|
2096
|
+
"grid": 14
|
2097
|
+
},
|
2098
|
+
"properties": {
|
2099
|
+
"id": 5,
|
2100
|
+
"order": 99,
|
2101
|
+
"prevSize": 28,
|
2102
|
+
"code": 61445,
|
2103
|
+
"name": "star",
|
2104
|
+
"ligatures": ""
|
2105
|
+
},
|
2106
|
+
"setIdx": 2,
|
2107
|
+
"iconIdx": 1
|
2108
|
+
},
|
2109
|
+
{
|
2110
|
+
"icon": {
|
2111
|
+
"paths": [
|
2112
|
+
"M649.714 573.714l174.857-169.714-241.143-35.429-108-218.286-108 218.286-241.143 35.429 174.857 169.714-41.714 240.571 216-113.714 215.429 113.714zM950.857 369.714q0 12.571-14.857 27.429l-207.429 202.286 49.143 285.714q0.571 4 0.571 11.429 0 28.571-23.429 28.571-10.857 0-22.857-6.857l-256.571-134.857-256.571 134.857q-12.571 6.857-22.857 6.857-12 0-18-8.286t-6-20.286q0-3.429 1.143-11.429l49.143-285.714-208-202.286q-14.286-15.429-14.286-27.429 0-21.143 32-26.286l286.857-41.714 128.571-260q10.857-23.429 28-23.429t28 23.429l128.571 260 286.857 41.714q32 5.143 32 26.286z"
|
2113
|
+
],
|
2114
|
+
"width": 951,
|
2115
|
+
"tags": [
|
2116
|
+
"star-o"
|
2117
|
+
],
|
2118
|
+
"defaultCode": 61446,
|
2119
|
+
"grid": 14
|
2120
|
+
},
|
2121
|
+
"properties": {
|
2122
|
+
"id": 6,
|
2123
|
+
"order": 100,
|
2124
|
+
"prevSize": 28,
|
2125
|
+
"code": 61446,
|
2126
|
+
"name": "star-o",
|
2127
|
+
"ligatures": ""
|
2128
|
+
},
|
2129
|
+
"setIdx": 2,
|
2130
|
+
"iconIdx": 2
|
2131
|
+
},
|
2132
|
+
{
|
2133
|
+
"icon": {
|
2134
|
+
"paths": [
|
2135
|
+
"M954.857 323.429q0 22.857-16 38.857l-491.429 491.429q-16 16-38.857 16t-38.857-16l-284.571-284.571q-16-16-16-38.857t16-38.857l77.714-77.714q16-16 38.857-16t38.857 16l168 168.571 374.857-375.429q16-16 38.857-16t38.857 16l77.714 77.714q16 16 16 38.857z"
|
2136
|
+
],
|
2137
|
+
"tags": [
|
2138
|
+
"check"
|
2139
|
+
],
|
2140
|
+
"defaultCode": 61452,
|
2141
|
+
"grid": 14
|
2142
|
+
},
|
2143
|
+
"properties": {
|
2144
|
+
"id": 12,
|
2145
|
+
"order": 101,
|
2146
|
+
"prevSize": 28,
|
2147
|
+
"code": 61452,
|
2148
|
+
"name": "check",
|
2149
|
+
"ligatures": ""
|
2150
|
+
},
|
2151
|
+
"setIdx": 2,
|
2152
|
+
"iconIdx": 3
|
2153
|
+
},
|
2154
|
+
{
|
2155
|
+
"icon": {
|
2156
|
+
"paths": [
|
2157
|
+
"M741.714 755.429q0 22.857-16 38.857l-77.714 77.714q-16 16-38.857 16t-38.857-16l-168-168-168 168q-16 16-38.857 16t-38.857-16l-77.714-77.714q-16-16-16-38.857t16-38.857l168-168-168-168q-16-16-16-38.857t16-38.857l77.714-77.714q16-16 38.857-16t38.857 16l168 168 168-168q16-16 38.857-16t38.857 16l77.714 77.714q16 16 16 38.857t-16 38.857l-168 168 168 168q16 16 16 38.857z"
|
2158
|
+
],
|
2159
|
+
"width": 805,
|
2160
|
+
"tags": [
|
2161
|
+
"times"
|
2162
|
+
],
|
2163
|
+
"defaultCode": 61453,
|
2164
|
+
"grid": 14
|
2165
|
+
},
|
2166
|
+
"properties": {
|
2167
|
+
"id": 13,
|
2168
|
+
"order": 102,
|
2169
|
+
"prevSize": 28,
|
2170
|
+
"code": 61453,
|
2171
|
+
"name": "times",
|
2172
|
+
"ligatures": ""
|
2173
|
+
},
|
2174
|
+
"setIdx": 2,
|
2175
|
+
"iconIdx": 4
|
2176
|
+
},
|
2177
|
+
{
|
2178
|
+
"icon": {
|
2179
|
+
"paths": [
|
2180
|
+
"M585.143 457.143v36.571q0 7.429-5.429 12.857t-12.857 5.429h-128v128q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-128h-128q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h128v-128q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v128h128q7.429 0 12.857 5.429t5.429 12.857zM658.286 475.429q0-105.714-75.143-180.857t-180.857-75.143-180.857 75.143-75.143 180.857 75.143 180.857 180.857 75.143 180.857-75.143 75.143-180.857zM950.857 950.857q0 30.286-21.429 51.714t-51.714 21.429q-30.857 0-51.429-21.714l-196-195.429q-102.286 70.857-228 70.857-81.714 0-156.286-31.714t-128.571-85.714-85.714-128.571-31.714-156.286 31.714-156.286 85.714-128.571 128.571-85.714 156.286-31.714 156.286 31.714 128.571 85.714 85.714 128.571 31.714 156.286q0 125.714-70.857 228l196 196q21.143 21.143 21.143 51.429z"
|
2181
|
+
],
|
2182
|
+
"width": 951,
|
2183
|
+
"tags": [
|
2184
|
+
"search-plus"
|
2185
|
+
],
|
2186
|
+
"defaultCode": 61454,
|
2187
|
+
"grid": 14
|
2188
|
+
},
|
2189
|
+
"properties": {
|
2190
|
+
"id": 14,
|
2191
|
+
"order": 86,
|
2192
|
+
"prevSize": 28,
|
2193
|
+
"code": 61454,
|
2194
|
+
"name": "search-plus",
|
2195
|
+
"ligatures": ""
|
2196
|
+
},
|
2197
|
+
"setIdx": 2,
|
2198
|
+
"iconIdx": 5
|
2199
|
+
},
|
2200
|
+
{
|
2201
|
+
"icon": {
|
2202
|
+
"paths": [
|
2203
|
+
"M585.143 457.143v36.571q0 7.429-5.429 12.857t-12.857 5.429h-329.143q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h329.143q7.429 0 12.857 5.429t5.429 12.857zM658.286 475.429q0-105.714-75.143-180.857t-180.857-75.143-180.857 75.143-75.143 180.857 75.143 180.857 180.857 75.143 180.857-75.143 75.143-180.857zM950.857 950.857q0 30.286-21.429 51.714t-51.714 21.429q-30.857 0-51.429-21.714l-196-195.429q-102.286 70.857-228 70.857-81.714 0-156.286-31.714t-128.571-85.714-85.714-128.571-31.714-156.286 31.714-156.286 85.714-128.571 128.571-85.714 156.286-31.714 156.286 31.714 128.571 85.714 85.714 128.571 31.714 156.286q0 125.714-70.857 228l196 196q21.143 21.143 21.143 51.429z"
|
2204
|
+
],
|
2205
|
+
"width": 951,
|
2206
|
+
"tags": [
|
2207
|
+
"search-minus"
|
2208
|
+
],
|
2209
|
+
"defaultCode": 61456,
|
2210
|
+
"grid": 14
|
2211
|
+
},
|
2212
|
+
"properties": {
|
2213
|
+
"id": 15,
|
2214
|
+
"order": 87,
|
2215
|
+
"prevSize": 28,
|
2216
|
+
"code": 61456,
|
2217
|
+
"name": "search-minus",
|
2218
|
+
"ligatures": ""
|
2219
|
+
},
|
2220
|
+
"setIdx": 2,
|
2221
|
+
"iconIdx": 6
|
2222
|
+
},
|
2223
|
+
{
|
2224
|
+
"icon": {
|
2225
|
+
"paths": [
|
2226
|
+
"M585.143 512q0-60.571-42.857-103.429t-103.429-42.857-103.429 42.857-42.857 103.429 42.857 103.429 103.429 42.857 103.429-42.857 42.857-103.429zM877.714 449.714v126.857q0 6.857-4.571 13.143t-11.429 7.429l-105.714 16q-10.857 30.857-22.286 52 20 28.571 61.143 78.857 5.714 6.857 5.714 14.286t-5.143 13.143q-15.429 21.143-56.571 61.714t-53.714 40.571q-6.857 0-14.857-5.143l-78.857-61.714q-25.143 13.143-52 21.714-9.143 77.714-16.571 106.286-4 16-20.571 16h-126.857q-8 0-14-4.857t-6.571-12.286l-16-105.143q-28-9.143-51.429-21.143l-80.571 61.143q-5.714 5.143-14.286 5.143-8 0-14.286-6.286-72-65.143-94.286-96-4-5.714-4-13.143 0-6.857 4.571-13.143 8.571-12 29.143-38t30.857-40.286q-15.429-28.571-23.429-56.571l-104.571-15.429q-7.429-1.143-12-7.143t-4.571-13.429v-126.857q0-6.857 4.571-13.143t10.857-7.429l106.286-16q8-26.286 22.286-52.571-22.857-32.571-61.143-78.857-5.714-6.857-5.714-13.714 0-5.714 5.143-13.143 14.857-20.571 56.286-61.429t54-40.857q7.429 0 14.857 5.714l78.857 61.143q25.143-13.143 52-21.714 9.143-77.714 16.571-106.286 4-16 20.571-16h126.857q8 0 14 4.857t6.571 12.286l16 105.143q28 9.143 51.429 21.143l81.143-61.143q5.143-5.143 13.714-5.143 7.429 0 14.286 5.714 73.714 68 94.286 97.143 4 4.571 4 12.571 0 6.857-4.571 13.143-8.571 12-29.143 38t-30.857 40.286q14.857 28.571 23.429 56l104.571 16q7.429 1.143 12 7.143t4.571 13.429z"
|
2227
|
+
],
|
2228
|
+
"tags": [
|
2229
|
+
"gear",
|
2230
|
+
" cog"
|
2231
|
+
],
|
2232
|
+
"defaultCode": 61459,
|
2233
|
+
"grid": 14
|
2234
|
+
},
|
2235
|
+
"properties": {
|
2236
|
+
"id": 18,
|
2237
|
+
"order": 12,
|
2238
|
+
"prevSize": 28,
|
2239
|
+
"code": 61459,
|
2240
|
+
"name": "gear",
|
2241
|
+
"ligatures": ""
|
2242
|
+
},
|
2243
|
+
"setIdx": 2,
|
2244
|
+
"iconIdx": 7
|
2245
|
+
},
|
2246
|
+
{
|
2247
|
+
"icon": {
|
2248
|
+
"paths": [
|
2249
|
+
"M292.571 420.571v329.143q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143v-329.143q0-8 5.143-13.143t13.143-5.143h36.571q8 0 13.143 5.143t5.143 13.143zM438.857 420.571v329.143q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143v-329.143q0-8 5.143-13.143t13.143-5.143h36.571q8 0 13.143 5.143t5.143 13.143zM585.143 420.571v329.143q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143v-329.143q0-8 5.143-13.143t13.143-5.143h36.571q8 0 13.143 5.143t5.143 13.143zM658.286 834.286v-541.714h-512v541.714q0 12.571 4 23.143t8.286 15.429 6 4.857h475.429q1.714 0 6-4.857t8.286-15.429 4-23.143zM274.286 219.429h256l-27.429-66.857q-4-5.143-9.714-6.286h-181.143q-5.714 1.143-9.714 6.286zM804.571 237.714v36.571q0 8-5.143 13.143t-13.143 5.143h-54.857v541.714q0 47.429-26.857 82t-64.571 34.571h-475.429q-37.714 0-64.571-33.429t-26.857-80.857v-544h-54.857q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h176.571l40-95.429q8.571-21.143 30.857-36t45.143-14.857h182.857q22.857 0 45.143 14.857t30.857 36l40 95.429h176.571q8 0 13.143 5.143t5.143 13.143z"
|
2250
|
+
],
|
2251
|
+
"width": 805,
|
2252
|
+
"tags": [
|
2253
|
+
"trash-o"
|
2254
|
+
],
|
2255
|
+
"defaultCode": 61460,
|
2256
|
+
"grid": 14
|
2257
|
+
},
|
2258
|
+
"properties": {
|
2259
|
+
"id": 19,
|
2260
|
+
"order": 47,
|
2261
|
+
"prevSize": 28,
|
2262
|
+
"code": 61460,
|
2263
|
+
"name": "trash-o",
|
2264
|
+
"ligatures": ""
|
2265
|
+
},
|
2266
|
+
"setIdx": 2,
|
2267
|
+
"iconIdx": 8
|
2268
|
+
},
|
2269
|
+
{
|
2270
|
+
"icon": {
|
2271
|
+
"paths": [
|
2272
|
+
"M863.429 603.429q0 2.857-0.571 4-36.571 153.143-153.143 248.286t-273.143 95.143q-83.429 0-161.429-31.429t-139.143-89.714l-73.714 73.714q-10.857 10.857-25.714 10.857t-25.714-10.857-10.857-25.714v-256q0-14.857 10.857-25.714t25.714-10.857h256q14.857 0 25.714 10.857t10.857 25.714-10.857 25.714l-78.286 78.286q40.571 37.714 92 58.286t106.857 20.571q76.571 0 142.857-37.143t106.286-102.286q6.286-9.714 30.286-66.857 4.571-13.143 17.143-13.143h109.714q7.429 0 12.857 5.429t5.429 12.857zM877.714 146.286v256q0 14.857-10.857 25.714t-25.714 10.857h-256q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714l78.857-78.857q-84.571-78.286-199.429-78.286-76.571 0-142.857 37.143t-106.286 102.286q-6.286 9.714-30.286 66.857-4.571 13.143-17.143 13.143h-113.714q-7.429 0-12.857-5.429t-5.429-12.857v-4q37.143-153.143 154.286-248.286t274.286-95.143q83.429 0 162.286 31.714t140 89.429l74.286-73.714q10.857-10.857 25.714-10.857t25.714 10.857 10.857 25.714z"
|
2273
|
+
],
|
2274
|
+
"tags": [
|
2275
|
+
"refresh"
|
2276
|
+
],
|
2277
|
+
"defaultCode": 61473,
|
2278
|
+
"grid": 14
|
2279
|
+
},
|
2280
|
+
"properties": {
|
2281
|
+
"id": 30,
|
2282
|
+
"order": 93,
|
2283
|
+
"prevSize": 28,
|
2284
|
+
"code": 61473,
|
2285
|
+
"name": "refresh",
|
2286
|
+
"ligatures": ""
|
2287
|
+
},
|
2288
|
+
"setIdx": 2,
|
2289
|
+
"iconIdx": 9
|
2290
|
+
},
|
2291
|
+
{
|
2292
|
+
"icon": {
|
2293
|
+
"paths": [
|
2294
|
+
"M36 877.714h-36v-804.571h36v804.571zM72 877.143h-18.286v-804h18.286v804zM125.714 877.143h-17.714v-804h17.714v804zM215.429 877.143h-17.714v-804h17.714v804zM305.143 877.143h-35.429v-804h35.429v804zM377.143 877.143h-17.714v-804h17.714v804zM413.143 877.143h-17.714v-804h17.714v804zM449.143 877.143h-17.714v-804h17.714v804zM538.857 877.143h-36v-804h36v804zM628.571 877.143h-36v-804h36v804zM700.571 877.143h-36v-804h36v804zM772.571 877.143h-36v-804h36v804zM826.286 877.143h-36v-804h36v804zM934.286 877.143h-53.714v-804h53.714v804zM970.286 877.143h-18.286v-804h18.286v804zM1024 877.714h-36v-804.571h36v804.571z"
|
2295
|
+
],
|
2296
|
+
"tags": [
|
2297
|
+
"barcode"
|
2298
|
+
],
|
2299
|
+
"defaultCode": 61482,
|
2300
|
+
"grid": 14
|
2301
|
+
},
|
2302
|
+
"properties": {
|
2303
|
+
"id": 39,
|
2304
|
+
"order": 46,
|
2305
|
+
"prevSize": 28,
|
2306
|
+
"code": 61482,
|
2307
|
+
"name": "barcode",
|
2308
|
+
"ligatures": ""
|
2309
|
+
},
|
2310
|
+
"setIdx": 2,
|
2311
|
+
"iconIdx": 10
|
2312
|
+
},
|
2313
|
+
{
|
2314
|
+
"icon": {
|
2315
|
+
"paths": [
|
2316
|
+
"M365.714 329.143q0 45.714-32 77.714t-77.714 32-77.714-32-32-77.714 32-77.714 77.714-32 77.714 32 32 77.714zM950.857 548.571v256h-804.571v-109.714l182.857-182.857 91.429 91.429 292.571-292.571zM1005.714 146.286h-914.286q-7.429 0-12.857 5.429t-5.429 12.857v694.857q0 7.429 5.429 12.857t12.857 5.429h914.286q7.429 0 12.857-5.429t5.429-12.857v-694.857q0-7.429-5.429-12.857t-12.857-5.429zM1097.143 164.571v694.857q0 37.714-26.857 64.571t-64.571 26.857h-914.286q-37.714 0-64.571-26.857t-26.857-64.571v-694.857q0-37.714 26.857-64.571t64.571-26.857h914.286q37.714 0 64.571 26.857t26.857 64.571z"
|
2317
|
+
],
|
2318
|
+
"width": 1097,
|
2319
|
+
"tags": [
|
2320
|
+
"picture-o"
|
2321
|
+
],
|
2322
|
+
"defaultCode": 61502,
|
2323
|
+
"grid": 14
|
2324
|
+
},
|
2325
|
+
"properties": {
|
2326
|
+
"id": 59,
|
2327
|
+
"order": 114,
|
2328
|
+
"prevSize": 28,
|
2329
|
+
"code": 61502,
|
2330
|
+
"name": "picture-o",
|
2331
|
+
"ligatures": ""
|
2332
|
+
},
|
2333
|
+
"setIdx": 2,
|
2334
|
+
"iconIdx": 11
|
2335
|
+
},
|
2336
|
+
{
|
2337
|
+
"icon": {
|
2338
|
+
"paths": [
|
2339
|
+
"M207.429 877.714l52-52-134.286-134.286-52 52v61.143h73.143v73.143h61.143zM506.286 347.429q0-12.571-12.571-12.571-5.714 0-9.714 4l-309.714 309.714q-4 4-4 9.714 0 12.571 12.571 12.571 5.714 0 9.714-4l309.714-309.714q4-4 4-9.714zM475.429 237.714l237.714 237.714-475.429 475.429h-237.714v-237.714zM865.714 292.571q0 30.286-21.143 51.429l-94.857 94.857-237.714-237.714 94.857-94.286q20.571-21.714 51.429-21.714 30.286 0 52 21.714l134.286 133.714q21.143 22.286 21.143 52z"
|
2340
|
+
],
|
2341
|
+
"tags": [
|
2342
|
+
"pencil"
|
2343
|
+
],
|
2344
|
+
"defaultCode": 61504,
|
2345
|
+
"grid": 14
|
2346
|
+
},
|
2347
|
+
"properties": {
|
2348
|
+
"id": 60,
|
2349
|
+
"order": 113,
|
2350
|
+
"prevSize": 28,
|
2351
|
+
"code": 61504,
|
2352
|
+
"name": "pencil",
|
2353
|
+
"ligatures": ""
|
2354
|
+
},
|
2355
|
+
"setIdx": 2,
|
2356
|
+
"iconIdx": 12
|
2357
|
+
},
|
2358
|
+
{
|
2359
|
+
"icon": {
|
2360
|
+
"paths": [
|
2361
|
+
"M507.429 676.571l66.286-66.286-86.857-86.857-66.286 66.286v32h54.857v54.857h32zM758.857 265.143q-9.143-9.143-18.857 0.571l-200 200q-9.714 9.714-0.571 18.857t18.857-0.571l200-200q9.714-9.714 0.571-18.857zM804.571 604.571v108.571q0 68-48.286 116.286t-116.286 48.286h-475.429q-68 0-116.286-48.286t-48.286-116.286v-475.429q0-68 48.286-116.286t116.286-48.286h475.429q36 0 66.857 14.286 8.571 4 10.286 13.143 1.714 9.714-5.143 16.571l-28 28q-8 8-18.286 4.571-13.143-3.429-25.714-3.429h-475.429q-37.714 0-64.571 26.857t-26.857 64.571v475.429q0 37.714 26.857 64.571t64.571 26.857h475.429q37.714 0 64.571-26.857t26.857-64.571v-72q0-7.429 5.143-12.571l36.571-36.571q8.571-8.571 20-4t11.429 16.571zM749.714 182.857l164.571 164.571-384 384h-164.571v-164.571zM1003.429 258.286l-52.571 52.571-164.571-164.571 52.571-52.571q16-16 38.857-16t38.857 16l86.857 86.857q16 16 16 38.857t-16 38.857z"
|
2362
|
+
],
|
2363
|
+
"tags": [
|
2364
|
+
"edit",
|
2365
|
+
" pencil-square-o"
|
2366
|
+
],
|
2367
|
+
"defaultCode": 61508,
|
2368
|
+
"grid": 14
|
2369
|
+
},
|
2370
|
+
"properties": {
|
2371
|
+
"id": 64,
|
2372
|
+
"order": 78,
|
2373
|
+
"prevSize": 28,
|
2374
|
+
"code": 61508,
|
2375
|
+
"name": "edit",
|
2376
|
+
"ligatures": ""
|
2377
|
+
},
|
2378
|
+
"setIdx": 2,
|
2379
|
+
"iconIdx": 13
|
2380
|
+
},
|
2381
|
+
{
|
2382
|
+
"icon": {
|
2383
|
+
"paths": [
|
2384
|
+
"M804.571 531.429v181.714q0 68-48.286 116.286t-116.286 48.286h-475.429q-68 0-116.286-48.286t-48.286-116.286v-475.429q0-68 48.286-116.286t116.286-48.286h475.429q36 0 66.857 14.286 8.571 4 10.286 13.143 1.714 9.714-5.143 16.571l-28 28q-5.714 5.714-13.143 5.714-1.714 0-5.143-1.143-13.143-3.429-25.714-3.429h-475.429q-37.714 0-64.571 26.857t-26.857 64.571v475.429q0 37.714 26.857 64.571t64.571 26.857h475.429q37.714 0 64.571-26.857t26.857-64.571v-145.143q0-7.429 5.143-12.571l36.571-36.571q5.714-5.714 13.143-5.714 3.429 0 6.857 1.714 11.429 4.571 11.429 16.571zM936.571 252l-465.143 465.143q-13.714 13.714-32.571 13.714t-32.571-13.714l-245.714-245.714q-13.714-13.714-13.714-32.571t13.714-32.571l62.857-62.857q13.714-13.714 32.571-13.714t32.571 13.714l150.286 150.286 369.714-369.714q13.714-13.714 32.571-13.714t32.571 13.714l62.857 62.857q13.714 13.714 13.714 32.571t-13.714 32.571z"
|
2385
|
+
],
|
2386
|
+
"width": 951,
|
2387
|
+
"tags": [
|
2388
|
+
"check-square-o"
|
2389
|
+
],
|
2390
|
+
"defaultCode": 61510,
|
2391
|
+
"grid": 14
|
2392
|
+
},
|
2393
|
+
"properties": {
|
2394
|
+
"id": 66,
|
2395
|
+
"order": 79,
|
2396
|
+
"prevSize": 28,
|
2397
|
+
"code": 61510,
|
2398
|
+
"name": "check-square-o",
|
2399
|
+
"ligatures": ""
|
2400
|
+
},
|
2401
|
+
"setIdx": 2,
|
2402
|
+
"iconIdx": 14
|
2403
|
+
},
|
2404
|
+
{
|
2405
|
+
"icon": {
|
2406
|
+
"paths": [
|
2407
|
+
"M694.857 548.571v-73.143q0-14.857-10.857-25.714t-25.714-10.857h-146.286v-146.286q0-14.857-10.857-25.714t-25.714-10.857h-73.143q-14.857 0-25.714 10.857t-10.857 25.714v146.286h-146.286q-14.857 0-25.714 10.857t-10.857 25.714v73.143q0 14.857 10.857 25.714t25.714 10.857h146.286v146.286q0 14.857 10.857 25.714t25.714 10.857h73.143q14.857 0 25.714-10.857t10.857-25.714v-146.286h146.286q14.857 0 25.714-10.857t10.857-25.714zM877.714 512q0 119.429-58.857 220.286t-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286 58.857-220.286 159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286z"
|
2408
|
+
],
|
2409
|
+
"tags": [
|
2410
|
+
"plus-circle"
|
2411
|
+
],
|
2412
|
+
"defaultCode": 61525,
|
2413
|
+
"grid": 14
|
2414
|
+
},
|
2415
|
+
"properties": {
|
2416
|
+
"id": 80,
|
2417
|
+
"order": 61,
|
2418
|
+
"prevSize": 28,
|
2419
|
+
"code": 61525,
|
2420
|
+
"name": "plus-circle",
|
2421
|
+
"ligatures": ""
|
2422
|
+
},
|
2423
|
+
"setIdx": 2,
|
2424
|
+
"iconIdx": 15
|
2425
|
+
},
|
2426
|
+
{
|
2427
|
+
"icon": {
|
2428
|
+
"paths": [
|
2429
|
+
"M694.857 548.571v-73.143q0-14.857-10.857-25.714t-25.714-10.857h-438.857q-14.857 0-25.714 10.857t-10.857 25.714v73.143q0 14.857 10.857 25.714t25.714 10.857h438.857q14.857 0 25.714-10.857t10.857-25.714zM877.714 512q0 119.429-58.857 220.286t-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286 58.857-220.286 159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286z"
|
2430
|
+
],
|
2431
|
+
"tags": [
|
2432
|
+
"minus-circle"
|
2433
|
+
],
|
2434
|
+
"defaultCode": 61526,
|
2435
|
+
"grid": 14
|
2436
|
+
},
|
2437
|
+
"properties": {
|
2438
|
+
"id": 81,
|
2439
|
+
"order": 60,
|
2440
|
+
"prevSize": 28,
|
2441
|
+
"code": 61526,
|
2442
|
+
"name": "minus-circle",
|
2443
|
+
"ligatures": ""
|
2444
|
+
},
|
2445
|
+
"setIdx": 2,
|
2446
|
+
"iconIdx": 16
|
2447
|
+
},
|
2448
|
+
{
|
2449
|
+
"icon": {
|
2450
|
+
"paths": [
|
2451
|
+
"M656.571 641.143q0-14.857-10.857-25.714l-103.429-103.429 103.429-103.429q10.857-10.857 10.857-25.714 0-15.429-10.857-26.286l-51.429-51.429q-10.857-10.857-26.286-10.857-14.857 0-25.714 10.857l-103.429 103.429-103.429-103.429q-10.857-10.857-25.714-10.857-15.429 0-26.286 10.857l-51.429 51.429q-10.857 10.857-10.857 26.286 0 14.857 10.857 25.714l103.429 103.429-103.429 103.429q-10.857 10.857-10.857 25.714 0 15.429 10.857 26.286l51.429 51.429q10.857 10.857 26.286 10.857 14.857 0 25.714-10.857l103.429-103.429 103.429 103.429q10.857 10.857 25.714 10.857 15.429 0 26.286-10.857l51.429-51.429q10.857-10.857 10.857-26.286zM877.714 512q0 119.429-58.857 220.286t-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286 58.857-220.286 159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286z"
|
2452
|
+
],
|
2453
|
+
"tags": [
|
2454
|
+
"times-circle"
|
2455
|
+
],
|
2456
|
+
"defaultCode": 61527,
|
2457
|
+
"grid": 14
|
2458
|
+
},
|
2459
|
+
"properties": {
|
2460
|
+
"id": 82,
|
2461
|
+
"order": 59,
|
2462
|
+
"prevSize": 28,
|
2463
|
+
"code": 61527,
|
2464
|
+
"name": "times-circle",
|
2465
|
+
"ligatures": ""
|
2466
|
+
},
|
2467
|
+
"setIdx": 2,
|
2468
|
+
"iconIdx": 17
|
2469
|
+
},
|
2470
|
+
{
|
2471
|
+
"icon": {
|
2472
|
+
"paths": [
|
2473
|
+
"M733.714 419.429q0-16-10.286-26.286l-52-51.429q-10.857-10.857-25.714-10.857t-25.714 10.857l-233.143 232.571-129.143-129.143q-10.857-10.857-25.714-10.857t-25.714 10.857l-52 51.429q-10.286 10.286-10.286 26.286 0 15.429 10.286 25.714l206.857 206.857q10.857 10.857 25.714 10.857 15.429 0 26.286-10.857l310.286-310.286q10.286-10.286 10.286-25.714zM877.714 512q0 119.429-58.857 220.286t-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286 58.857-220.286 159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286z"
|
2474
|
+
],
|
2475
|
+
"tags": [
|
2476
|
+
"check-circle"
|
2477
|
+
],
|
2478
|
+
"defaultCode": 61528,
|
2479
|
+
"grid": 14
|
2480
|
+
},
|
2481
|
+
"properties": {
|
2482
|
+
"id": 83,
|
2483
|
+
"order": 58,
|
2484
|
+
"prevSize": 28,
|
2485
|
+
"code": 61528,
|
2486
|
+
"name": "check-circle",
|
2487
|
+
"ligatures": ""
|
2488
|
+
},
|
2489
|
+
"setIdx": 2,
|
2490
|
+
"iconIdx": 18
|
2491
|
+
},
|
2492
|
+
{
|
2493
|
+
"icon": {
|
2494
|
+
"paths": [
|
2495
|
+
"M512 786.286v-109.714q0-8-5.143-13.143t-13.143-5.143h-109.714q-8 0-13.143 5.143t-5.143 13.143v109.714q0 8 5.143 13.143t13.143 5.143h109.714q8 0 13.143-5.143t5.143-13.143zM658.286 402.286q0-50.286-31.714-93.143t-79.143-66.286-97.143-23.429q-138.857 0-212 121.714-8.571 13.714 4.571 24l75.429 57.143q4 3.429 10.857 3.429 9.143 0 14.286-6.857 30.286-38.857 49.143-52.571 19.429-13.714 49.143-13.714 27.429 0 48.857 14.857t21.429 33.714q0 21.714-11.429 34.857t-38.857 25.714q-36 16-66 49.429t-30 71.714v20.571q0 8 5.143 13.143t13.143 5.143h109.714q8 0 13.143-5.143t5.143-13.143q0-10.857 12.286-28.286t31.143-28.286q18.286-10.286 28-16.286t26.286-20 25.429-27.429 16-34.571 7.143-46.286zM877.714 512q0 119.429-58.857 220.286t-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286 58.857-220.286 159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286z"
|
2496
|
+
],
|
2497
|
+
"tags": [
|
2498
|
+
"question-circle"
|
2499
|
+
],
|
2500
|
+
"defaultCode": 61529,
|
2501
|
+
"grid": 14
|
2502
|
+
},
|
2503
|
+
"properties": {
|
2504
|
+
"id": 84,
|
2505
|
+
"order": 57,
|
2506
|
+
"prevSize": 28,
|
2507
|
+
"code": 61529,
|
2508
|
+
"name": "question-circle",
|
2509
|
+
"ligatures": ""
|
2510
|
+
},
|
2511
|
+
"setIdx": 2,
|
2512
|
+
"iconIdx": 19
|
2513
|
+
},
|
2514
|
+
{
|
2515
|
+
"icon": {
|
2516
|
+
"paths": [
|
2517
|
+
"M626.857 616.571l-83.429 83.429q-5.714 5.714-13.143 5.714t-13.143-5.714l-78.286-78.286-78.286 78.286q-5.714 5.714-13.143 5.714t-13.143-5.714l-83.429-83.429q-5.714-5.714-5.714-13.143t5.714-13.143l78.286-78.286-78.286-78.286q-5.714-5.714-5.714-13.143t5.714-13.143l83.429-83.429q5.714-5.714 13.143-5.714t13.143 5.714l78.286 78.286 78.286-78.286q5.714-5.714 13.143-5.714t13.143 5.714l83.429 83.429q5.714 5.714 5.714 13.143t-5.714 13.143l-78.286 78.286 78.286 78.286q5.714 5.714 5.714 13.143t-5.714 13.143zM749.714 512q0-84.571-41.714-156t-113.143-113.143-156-41.714-156 41.714-113.143 113.143-41.714 156 41.714 156 113.143 113.143 156 41.714 156-41.714 113.143-113.143 41.714-156zM877.714 512q0 119.429-58.857 220.286t-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286 58.857-220.286 159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286z"
|
2518
|
+
],
|
2519
|
+
"tags": [
|
2520
|
+
"times-circle-o"
|
2521
|
+
],
|
2522
|
+
"defaultCode": 61532,
|
2523
|
+
"grid": 14
|
2524
|
+
},
|
2525
|
+
"properties": {
|
2526
|
+
"id": 87,
|
2527
|
+
"order": 55,
|
2528
|
+
"prevSize": 28,
|
2529
|
+
"code": 61532,
|
2530
|
+
"name": "times-circle-o",
|
2531
|
+
"ligatures": ""
|
2532
|
+
},
|
2533
|
+
"setIdx": 2,
|
2534
|
+
"iconIdx": 20
|
2535
|
+
},
|
2536
|
+
{
|
2537
|
+
"icon": {
|
2538
|
+
"paths": [
|
2539
|
+
"M669.143 464.571l-241.143 241.143q-10.857 10.857-25.714 10.857t-25.714-10.857l-168-168q-10.857-10.857-10.857-25.714t10.857-25.714l58.286-58.286q10.857-10.857 25.714-10.857t25.714 10.857l84 84 157.143-157.143q10.857-10.857 25.714-10.857t25.714 10.857l58.286 58.286q10.857 10.857 10.857 25.714t-10.857 25.714zM749.714 512q0-84.571-41.714-156t-113.143-113.143-156-41.714-156 41.714-113.143 113.143-41.714 156 41.714 156 113.143 113.143 156 41.714 156-41.714 113.143-113.143 41.714-156zM877.714 512q0 119.429-58.857 220.286t-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286 58.857-220.286 159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286z"
|
2540
|
+
],
|
2541
|
+
"tags": [
|
2542
|
+
"check-circle-o"
|
2543
|
+
],
|
2544
|
+
"defaultCode": 61533,
|
2545
|
+
"grid": 14
|
2546
|
+
},
|
2547
|
+
"properties": {
|
2548
|
+
"id": 88,
|
2549
|
+
"order": 56,
|
2550
|
+
"prevSize": 28,
|
2551
|
+
"code": 61533,
|
2552
|
+
"name": "check-circle-o",
|
2553
|
+
"ligatures": ""
|
2554
|
+
},
|
2555
|
+
"setIdx": 2,
|
2556
|
+
"iconIdx": 21
|
2557
|
+
},
|
2558
|
+
{
|
2559
|
+
"icon": {
|
2560
|
+
"paths": [
|
2561
|
+
"M804.571 420.571v109.714q0 22.857-16 38.857t-38.857 16h-237.714v237.714q0 22.857-16 38.857t-38.857 16h-109.714q-22.857 0-38.857-16t-16-38.857v-237.714h-237.714q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h237.714v-237.714q0-22.857 16-38.857t38.857-16h109.714q22.857 0 38.857 16t16 38.857v237.714h237.714q22.857 0 38.857 16t16 38.857z"
|
2562
|
+
],
|
2563
|
+
"width": 805,
|
2564
|
+
"tags": [
|
2565
|
+
"plus"
|
2566
|
+
],
|
2567
|
+
"defaultCode": 61543,
|
2568
|
+
"grid": 14
|
2569
|
+
},
|
2570
|
+
"properties": {
|
2571
|
+
"id": 97,
|
2572
|
+
"order": 5,
|
2573
|
+
"prevSize": 28,
|
2574
|
+
"code": 61543,
|
2575
|
+
"name": "plus",
|
2576
|
+
"ligatures": ""
|
2577
|
+
},
|
2578
|
+
"setIdx": 2,
|
2579
|
+
"iconIdx": 22
|
2580
|
+
},
|
2581
|
+
{
|
2582
|
+
"icon": {
|
2583
|
+
"paths": [
|
2584
|
+
"M585.143 785.714v-108.571q0-8-5.429-13.429t-12.857-5.429h-109.714q-7.429 0-12.857 5.429t-5.429 13.429v108.571q0 8 5.429 13.429t12.857 5.429h109.714q7.429 0 12.857-5.429t5.429-13.429zM584 572l10.286-262.286q0-6.857-5.714-10.857-7.429-6.286-13.714-6.286h-125.714q-6.286 0-13.714 6.286-5.714 4-5.714 12l9.714 261.143q0 5.714 5.714 9.429t13.714 3.714h105.714q8 0 13.429-3.714t6-9.429zM576 38.286l438.857 804.571q20 36-1.143 72-9.714 16.571-26.571 26.286t-36.286 9.714h-877.714q-19.429 0-36.286-9.714t-26.571-26.286q-21.143-36-1.143-72l438.857-804.571q9.714-17.714 26.857-28t37.143-10.286 37.143 10.286 26.857 28z"
|
2585
|
+
],
|
2586
|
+
"tags": [
|
2587
|
+
"warning",
|
2588
|
+
" exclamation-triangle"
|
2589
|
+
],
|
2590
|
+
"defaultCode": 61553,
|
2591
|
+
"grid": 14
|
2592
|
+
},
|
2593
|
+
"properties": {
|
2594
|
+
"id": 106,
|
2595
|
+
"order": 54,
|
2596
|
+
"prevSize": 28,
|
2597
|
+
"code": 61553,
|
2598
|
+
"name": "warning",
|
2599
|
+
"ligatures": ""
|
2600
|
+
},
|
2601
|
+
"setIdx": 2,
|
2602
|
+
"iconIdx": 23
|
2603
|
+
},
|
2604
|
+
{
|
2605
|
+
"icon": {
|
2606
|
+
"paths": [
|
2607
|
+
"M786.286 91.429q25.143 29.714 6.857 84.571t-61.714 98.286l-92 92 91.429 397.714q2.857 10.857-6.857 18.857l-73.143 54.857q-4 3.429-10.857 3.429-2.286 0-4-0.571-8.571-1.714-12-9.143l-159.429-290.286-148 148 30.286 110.857q2.857 9.714-4.571 17.714l-54.857 54.857q-5.143 5.143-13.143 5.143h-1.143q-8.571-1.143-13.714-7.429l-108-144-144-108q-6.286-4-7.429-13.143-0.571-7.429 5.143-14.286l54.857-55.429q5.143-5.143 13.143-5.143 3.429 0 4.571 0.571l110.857 30.286 148-148-290.286-159.429q-8-4.571-9.714-13.714-1.143-9.143 5.143-15.429l73.143-73.143q8-7.429 17.143-4.571l380 90.857 91.429-91.429q43.429-43.429 98.286-61.714t84.571 6.857z"
|
2608
|
+
],
|
2609
|
+
"width": 805,
|
2610
|
+
"tags": [
|
2611
|
+
"plane"
|
2612
|
+
],
|
2613
|
+
"defaultCode": 61554,
|
2614
|
+
"grid": 14
|
2615
|
+
},
|
2616
|
+
"properties": {
|
2617
|
+
"id": 107,
|
2618
|
+
"order": 53,
|
2619
|
+
"prevSize": 28,
|
2620
|
+
"code": 61554,
|
2621
|
+
"name": "plane",
|
2622
|
+
"ligatures": ""
|
2623
|
+
},
|
2624
|
+
"setIdx": 2,
|
2625
|
+
"iconIdx": 24
|
2626
|
+
},
|
2627
|
+
{
|
2628
|
+
"icon": {
|
2629
|
+
"paths": [
|
2630
|
+
"M731.429 859.429q0 7.429-5.429 12.857t-12.857 5.429h-548.571q-4.571 0-7.714-1.143t-5.143-4-3.143-4.571-1.714-6.571-0.571-6.571v-342.857h-109.714q-14.857 0-25.714-10.857t-10.857-25.714q0-13.714 8.571-23.429l182.857-219.429q10.857-12.571 28-12.571t28 12.571l182.857 219.429q8.571 9.714 8.571 23.429 0 14.857-10.857 25.714t-25.714 10.857h-109.714v219.429h329.143q9.143 0 14.286 6.286l91.429 109.714q4 6.286 4 12zM1097.143 621.714q0 13.714-8.571 23.429l-182.857 219.429q-11.429 13.143-28 13.143t-28-13.143l-182.857-219.429q-8.571-9.714-8.571-23.429 0-14.857 10.857-25.714t25.714-10.857h109.714v-219.429h-329.143q-9.143 0-14.286-6.857l-91.429-109.714q-4-5.143-4-11.429 0-7.429 5.429-12.857t12.857-5.429h548.571q4.571 0 7.714 1.143t5.143 4 3.143 4.571 1.714 6.571 0.571 6.571v342.857h109.714q14.857 0 25.714 10.857t10.857 25.714z"
|
2631
|
+
],
|
2632
|
+
"width": 1097,
|
2633
|
+
"tags": [
|
2634
|
+
"retweet"
|
2635
|
+
],
|
2636
|
+
"defaultCode": 61561,
|
2637
|
+
"grid": 14
|
2638
|
+
},
|
2639
|
+
"properties": {
|
2640
|
+
"id": 114,
|
2641
|
+
"order": 94,
|
2642
|
+
"prevSize": 28,
|
2643
|
+
"code": 61561,
|
2644
|
+
"name": "retweet",
|
2645
|
+
"ligatures": ""
|
2646
|
+
},
|
2647
|
+
"setIdx": 2,
|
2648
|
+
"iconIdx": 25
|
2649
|
+
},
|
2650
|
+
{
|
2651
|
+
"icon": {
|
2652
|
+
"paths": [
|
2653
|
+
"M475.429 292.571q0-45.714-32-77.714t-77.714-32-77.714 32-32 77.714q0 24 10.857 47.429-23.429-10.857-47.429-10.857-45.714 0-77.714 32t-32 77.714 32 77.714 77.714 32 77.714-32 32-77.714q0-24-10.857-47.429 23.429 10.857 47.429 10.857 45.714 0 77.714-32t32-77.714zM961.714 694.857q0 9.714-28 37.714t-37.714 28q-5.143 0-16.286-9.143t-20.857-18.857-22-22.857-14-14.857l-54.857 54.857 125.714 125.714q16 16 16 38.857 0 24-22.286 46.286t-46.286 22.286q-22.857 0-38.857-16l-383.429-383.429q-100.571 74.857-208.571 74.857-93.143 0-151.714-58.571t-58.571-151.714q0-91.429 54.286-178.857t141.714-141.714 178.857-54.286q93.143 0 151.714 58.571t58.571 151.714q0 108-74.857 208.571l202.857 202.857 54.857-54.857q-1.714-1.714-14.857-14t-22.857-22-18.857-20.857-9.143-16.286q0-9.714 28-37.714t37.714-28q7.429 0 13.143 5.714 3.429 3.429 26.286 25.429t46.857 45.429 49.429 49.143 41.714 44.571 16.286 23.429z"
|
2654
|
+
],
|
2655
|
+
"tags": [
|
2656
|
+
"key"
|
2657
|
+
],
|
2658
|
+
"defaultCode": 61572,
|
2659
|
+
"grid": 14
|
2660
|
+
},
|
2661
|
+
"properties": {
|
2662
|
+
"id": 124,
|
2663
|
+
"order": 63,
|
2664
|
+
"prevSize": 28,
|
2665
|
+
"code": 61572,
|
2666
|
+
"name": "key",
|
2667
|
+
"ligatures": ""
|
2668
|
+
},
|
2669
|
+
"setIdx": 2,
|
2670
|
+
"iconIdx": 26
|
2671
|
+
},
|
2672
|
+
{
|
2673
|
+
"icon": {
|
2674
|
+
"paths": [
|
2675
|
+
"M512 512q0-60.571-42.857-103.429t-103.429-42.857-103.429 42.857-42.857 103.429 42.857 103.429 103.429 42.857 103.429-42.857 42.857-103.429zM950.857 804.571q0-29.714-21.714-51.429t-51.429-21.714-51.429 21.714-21.714 51.429q0 30.286 21.429 51.714t51.714 21.429 51.714-21.429 21.429-51.714zM950.857 219.429q0-29.714-21.714-51.429t-51.429-21.714-51.429 21.714-21.714 51.429q0 30.286 21.429 51.714t51.714 21.429 51.714-21.429 21.429-51.714zM731.429 460v105.714q0 5.714-4 11.143t-9.143 6l-88.571 13.714q-6.286 20-18.286 43.429 19.429 27.429 51.429 65.714 4 5.714 4 11.429 0 6.857-4 10.857-13.143 17.143-47.143 51.143t-44.857 34q-6.286 0-12-4l-65.714-51.429q-21.143 10.857-44 17.714-6.286 61.714-13.143 88.571-4 13.714-17.143 13.714h-106.286q-6.286 0-11.429-4.286t-5.714-10l-13.143-87.429q-19.429-5.714-42.857-17.714l-67.429 50.857q-4 4-11.429 4-6.286 0-12-4.571-82.286-76-82.286-91.429 0-5.143 4-10.857 5.714-8 23.429-30.286t26.857-34.857q-13.143-25.143-20-46.857l-86.857-13.714q-5.714-0.571-9.714-5.429t-4-11.143v-105.714q0-5.714 4-11.143t9.143-6l88.571-13.714q6.286-20 18.286-43.429-19.429-27.429-51.429-65.714-4-6.286-4-11.429 0-6.857 4-11.429 12.571-17.143 46.857-50.857t45.143-33.714q6.286 0 12 4l65.714 51.429q19.429-10.286 44-18.286 6.286-61.714 13.143-88 4-13.714 17.143-13.714h106.286q6.286 0 11.429 4.286t5.714 10l13.143 87.429q19.429 5.714 42.857 17.714l67.429-50.857q4.571-4 11.429-4 6.286 0 12 4.571 82.286 76 82.286 91.429 0 5.143-4 10.857-6.857 9.143-24 30.857t-25.714 34.286q13.143 27.429 19.429 46.857l86.857 13.143q5.714 1.143 9.714 6t4 11.143zM1097.143 764.571v80q0 9.143-85.143 17.714-6.857 15.429-17.143 29.714 29.143 64.571 29.143 78.857 0 2.286-2.286 4-69.714 40.571-70.857 40.571-4.571 0-26.286-26.857t-29.714-38.857q-11.429 1.143-17.143 1.143t-17.143-1.143q-8 12-29.714 38.857t-26.286 26.857q-1.143 0-70.857-40.571-2.286-1.714-2.286-4 0-14.286 29.143-78.857-10.286-14.286-17.143-29.714-85.143-8.571-85.143-17.714v-80q0-9.143 85.143-17.714 7.429-16.571 17.143-29.714-29.143-64.571-29.143-78.857 0-2.286 2.286-4 2.286-1.143 20-11.429t33.714-19.429 17.143-9.143q4.571 0 26.286 26.571t29.714 38.571q11.429-1.143 17.143-1.143t17.143 1.143q29.143-40.571 52.571-64l3.429-1.143q2.286 0 70.857 40 2.286 1.714 2.286 4 0 14.286-29.143 78.857 9.714 13.143 17.143 29.714 85.143 8.571 85.143 17.714zM1097.143 179.429v80q0 9.143-85.143 17.714-6.857 15.429-17.143 29.714 29.143 64.571 29.143 78.857 0 2.286-2.286 4-69.714 40.571-70.857 40.571-4.571 0-26.286-26.857t-29.714-38.857q-11.429 1.143-17.143 1.143t-17.143-1.143q-8 12-29.714 38.857t-26.286 26.857q-1.143 0-70.857-40.571-2.286-1.714-2.286-4 0-14.286 29.143-78.857-10.286-14.286-17.143-29.714-85.143-8.571-85.143-17.714v-80q0-9.143 85.143-17.714 7.429-16.571 17.143-29.714-29.143-64.571-29.143-78.857 0-2.286 2.286-4 2.286-1.143 20-11.429t33.714-19.429 17.143-9.143q4.571 0 26.286 26.571t29.714 38.571q11.429-1.143 17.143-1.143t17.143 1.143q29.143-40.571 52.571-64l3.429-1.143q2.286 0 70.857 40 2.286 1.714 2.286 4 0 14.286-29.143 78.857 9.714 13.143 17.143 29.714 85.143 8.571 85.143 17.714z"
|
2676
|
+
],
|
2677
|
+
"width": 1097,
|
2678
|
+
"tags": [
|
2679
|
+
"gears",
|
2680
|
+
" cogs"
|
2681
|
+
],
|
2682
|
+
"defaultCode": 61573,
|
2683
|
+
"grid": 14
|
2684
|
+
},
|
2685
|
+
"properties": {
|
2686
|
+
"id": 125,
|
2687
|
+
"order": 62,
|
2688
|
+
"prevSize": 28,
|
2689
|
+
"code": 61573,
|
2690
|
+
"name": "gears",
|
2691
|
+
"ligatures": ""
|
2692
|
+
},
|
2693
|
+
"setIdx": 2,
|
2694
|
+
"iconIdx": 27
|
2695
|
+
},
|
2696
|
+
{
|
2697
|
+
"icon": {
|
2698
|
+
"paths": [
|
2699
|
+
"M146.286 768q0-14.857-10.857-25.714t-25.714-10.857-25.714 10.857-10.857 25.714 10.857 25.714 25.714 10.857 25.714-10.857 10.857-25.714zM804.571 438.857q0-29.143-22.286-51.143t-50.857-22h-201.143q0-33.143 27.429-91.143t27.429-91.714q0-56-18.286-82.857t-73.143-26.857q-14.857 14.857-21.714 48.571t-17.429 71.714-34 62.571q-12.571 13.143-44 52-2.286 2.857-13.143 17.143t-18 23.429-19.714 24.286-22.857 25.143-22 20.286-22.857 15.429-20.286 5.143h-18.286v365.714h18.286q7.429 0 18 1.714t18.857 3.714 21.714 6.286 20 6.571 20.286 7.143 16.571 6q120.571 41.714 195.429 41.714h69.143q109.714 0 109.714-95.429 0-14.857-2.857-32 17.143-9.143 27.143-30t10-42-10.286-39.429q30.286-28.571 30.286-68 0-14.286-5.714-31.714t-14.286-27.143q18.286-0.571 30.571-26.857t12.286-46.286zM877.714 438.286q0 50.857-28 93.143 5.143 18.857 5.143 39.429 0 44-21.714 82.286 1.714 12 1.714 24.571 0 57.714-34.286 101.714 0.571 79.429-48.571 125.429t-129.714 46h-73.714q-54.857 0-108.286-12.857t-123.714-37.429q-66.286-22.857-78.857-22.857h-164.571q-30.286 0-51.714-21.429t-21.429-51.714v-365.714q0-30.286 21.429-51.714t51.714-21.429h156.571q20.571-13.714 78.286-88.571 33.143-42.857 61.143-73.143 13.714-14.286 20.286-48.857t17.429-72.286 35.429-61.714q22.286-21.143 51.429-21.143 48 0 86.286 18.571t58.286 58 20 106.286q0 53.143-27.429 109.714h100.571q59.429 0 102.857 43.429t43.429 102.286z"
|
2700
|
+
],
|
2701
|
+
"tags": [
|
2702
|
+
"thumbs-o-up"
|
2703
|
+
],
|
2704
|
+
"defaultCode": 61575,
|
2705
|
+
"grid": 14
|
2706
|
+
},
|
2707
|
+
"properties": {
|
2708
|
+
"id": 127,
|
2709
|
+
"order": 95,
|
2710
|
+
"prevSize": 28,
|
2711
|
+
"code": 61575,
|
2712
|
+
"name": "thumbs-o-up",
|
2713
|
+
"ligatures": ""
|
2714
|
+
},
|
2715
|
+
"setIdx": 2,
|
2716
|
+
"iconIdx": 28
|
2717
|
+
},
|
2718
|
+
{
|
2719
|
+
"icon": {
|
2720
|
+
"paths": [
|
2721
|
+
"M146.286 256q0-14.857-10.857-25.714t-25.714-10.857-25.714 10.857-10.857 25.714 10.857 25.714 25.714 10.857 25.714-10.857 10.857-25.714zM804.571 585.143q0-20-12.286-46.286t-30.571-26.857q8.571-9.714 14.286-27.143t5.714-31.714q0-39.429-30.286-68 10.286-18.286 10.286-39.429t-10-42-27.143-30q2.857-17.143 2.857-32 0-48.571-28-72t-77.714-23.429h-73.143q-74.857 0-195.429 41.714-2.857 1.143-16.571 6t-20.286 7.143-20 6.571-21.714 6.286-18.857 3.714-18 1.714h-18.286v365.714h18.286q9.143 0 20.286 5.143t22.857 15.429 22 20.286 22.857 25.143 19.714 24.286 18 23.429 13.143 17.143q31.429 38.857 44 52 23.429 24.571 34 62.571t17.429 71.714 21.714 48.571q54.857 0 73.143-26.857t18.286-82.857q0-33.714-27.429-91.714t-27.429-91.143h201.143q28.571 0 50.857-22t22.286-51.143zM877.714 585.714q0 58.857-43.429 102.286t-102.857 43.429h-100.571q27.429 56.571 27.429 109.714 0 67.429-20 106.286-20 39.429-58.286 58t-86.286 18.571q-29.143 0-51.429-21.143-19.429-18.857-30.857-46.857t-14.571-51.714-10-48.286-17.714-36.571q-27.429-28.571-61.143-72.571-57.714-74.857-78.286-88.571h-156.571q-30.286 0-51.714-21.429t-21.429-51.714v-365.714q0-30.286 21.429-51.714t51.714-21.429h164.571q12.571 0 78.857-22.857 73.143-25.143 127.429-37.714t114.286-12.571h64q80 0 129.429 45.143t48.857 123.429v2.857q34.286 44 34.286 101.714 0 12.571-1.714 24.571 21.714 38.286 21.714 82.286 0 20.571-5.143 39.429 28 42.286 28 93.143z"
|
2722
|
+
],
|
2723
|
+
"tags": [
|
2724
|
+
"thumbs-o-down"
|
2725
|
+
],
|
2726
|
+
"defaultCode": 61576,
|
2727
|
+
"grid": 14
|
2728
|
+
},
|
2729
|
+
"properties": {
|
2730
|
+
"id": 128,
|
2731
|
+
"order": 96,
|
2732
|
+
"prevSize": 28,
|
2733
|
+
"code": 61576,
|
2734
|
+
"name": "thumbs-o-down",
|
2735
|
+
"ligatures": ""
|
2736
|
+
},
|
2737
|
+
"setIdx": 2,
|
2738
|
+
"iconIdx": 29
|
2739
|
+
},
|
2740
|
+
{
|
2741
|
+
"icon": {
|
2742
|
+
"paths": [
|
2743
|
+
"M950.857 340.571q0-46.286-12.286-81.714t-31.429-56.286-46.571-34-53.714-17.714-56-4.571-64 14.571-63.143 36.571-49.429 41.143-34.286 35.143q-10.286 12.571-28 12.571t-28-12.571q-13.714-16-34.286-35.143t-49.429-41.143-63.143-36.571-64-14.571-56 4.571-53.714 17.714-46.571 34-31.429 56.286-12.286 81.714q0 96 106.857 202.857l332 320 331.429-319.429q107.429-107.429 107.429-203.429zM1024 340.571q0 126.286-130.857 257.143l-356 342.857q-10.286 10.286-25.143 10.286t-25.143-10.286l-356.571-344q-5.714-4.571-15.714-14.857t-31.714-37.429-38.857-55.714-30.571-69.143-13.429-78.857q0-125.714 72.571-196.571t200.571-70.857q35.429 0 72.286 12.286t68.571 33.143 54.571 39.143 43.429 38.857q20.571-20.571 43.429-38.857t54.571-39.143 68.571-33.143 72.286-12.286q128 0 200.571 70.857t72.571 196.571z"
|
2744
|
+
],
|
2745
|
+
"tags": [
|
2746
|
+
"heart-o"
|
2747
|
+
],
|
2748
|
+
"defaultCode": 61578,
|
2749
|
+
"grid": 14
|
2750
|
+
},
|
2751
|
+
"properties": {
|
2752
|
+
"id": 130,
|
2753
|
+
"order": 80,
|
2754
|
+
"prevSize": 28,
|
2755
|
+
"code": 61578,
|
2756
|
+
"name": "heart-o",
|
2757
|
+
"ligatures": ""
|
2758
|
+
},
|
2759
|
+
"setIdx": 2,
|
2760
|
+
"iconIdx": 30
|
2761
|
+
},
|
2762
|
+
{
|
2763
|
+
"icon": {
|
2764
|
+
"paths": [
|
2765
|
+
"M274.286 493.714v-256q0-8-5.143-13.143t-13.143-5.143-13.143 5.143-5.143 13.143v256q0 8 5.143 13.143t13.143 5.143 13.143-5.143 5.143-13.143zM658.286 694.857q0 14.857-10.857 25.714t-25.714 10.857h-245.143l-29.143 276q-1.143 6.857-6 11.714t-11.714 4.857h-0.571q-15.429 0-18.286-15.429l-43.429-277.143h-230.857q-14.857 0-25.714-10.857t-10.857-25.714q0-70.286 44.857-126.571t101.429-56.286v-292.571q-29.714 0-51.429-21.714t-21.714-51.429 21.714-51.429 51.429-21.714h365.714q29.714 0 51.429 21.714t21.714 51.429-21.714 51.429-51.429 21.714v292.571q56.571 0 101.429 56.286t44.857 126.571z"
|
2766
|
+
],
|
2767
|
+
"width": 658,
|
2768
|
+
"tags": [
|
2769
|
+
"thumb-tack"
|
2770
|
+
],
|
2771
|
+
"defaultCode": 61581,
|
2772
|
+
"grid": 14
|
2773
|
+
},
|
2774
|
+
"properties": {
|
2775
|
+
"id": 133,
|
2776
|
+
"order": 97,
|
2777
|
+
"prevSize": 28,
|
2778
|
+
"code": 61581,
|
2779
|
+
"name": "thumb-tack",
|
2780
|
+
"ligatures": ""
|
2781
|
+
},
|
2782
|
+
"setIdx": 2,
|
2783
|
+
"iconIdx": 31
|
2784
|
+
},
|
2785
|
+
{
|
2786
|
+
"icon": {
|
2787
|
+
"paths": [
|
2788
|
+
"M804.571 708.571q0 15.429-5.714 40.286t-12 39.143q-12 28.571-69.714 60.571-53.714 29.143-106.286 29.143-15.429 0-30-2t-32.857-7.143-27.143-8.286-31.714-11.714-28-10.286q-56-20-100-47.429-73.143-45.143-151.143-123.143t-123.143-151.143q-27.429-44-47.429-100-1.714-5.143-10.286-28t-11.714-31.714-8.286-27.143-7.143-32.857-2-30q0-52.571 29.143-106.286 32-57.714 60.571-69.714 14.286-6.286 39.143-12t40.286-5.714q8 0 12 1.714 10.286 3.429 30.286 43.429 6.286 10.857 17.143 30.857t20 36.286 17.714 30.571q1.714 2.286 10 14.286t12.286 20.286 4 16.286q0 11.429-16.286 28.571t-35.429 31.429-35.429 30.286-16.286 26.286q0 5.143 2.857 12.857t4.857 11.714 8 13.714 6.571 10.857q43.429 78.286 99.429 134.286t134.286 99.429q1.143 0.571 10.857 6.571t13.714 8 11.714 4.857 12.857 2.857q10.286 0 26.286-16.286t30.286-35.429 31.429-35.429 28.571-16.286q8 0 16.286 4t20.286 12.286 14.286 10q14.286 8.571 30.571 17.714t36.286 20 30.857 17.143q40 20 43.429 30.286 1.714 4 1.714 12z"
|
2789
|
+
],
|
2790
|
+
"width": 805,
|
2791
|
+
"tags": [
|
2792
|
+
"phone"
|
2793
|
+
],
|
2794
|
+
"defaultCode": 61589,
|
2795
|
+
"grid": 14
|
2796
|
+
},
|
2797
|
+
"properties": {
|
2798
|
+
"id": 140,
|
2799
|
+
"order": 64,
|
2800
|
+
"prevSize": 28,
|
2801
|
+
"code": 61589,
|
2802
|
+
"name": "phone",
|
2803
|
+
"ligatures": ""
|
2804
|
+
},
|
2805
|
+
"setIdx": 2,
|
2806
|
+
"iconIdx": 32
|
2807
|
+
},
|
2808
|
+
{
|
2809
|
+
"icon": {
|
2810
|
+
"paths": [
|
2811
|
+
"M1005.714 73.143q37.714 0 64.571 26.857t26.857 64.571v694.857q0 37.714-26.857 64.571t-64.571 26.857h-914.286q-37.714 0-64.571-26.857t-26.857-64.571v-694.857q0-37.714 26.857-64.571t64.571-26.857h914.286zM91.429 146.286q-7.429 0-12.857 5.429t-5.429 12.857v128h950.857v-128q0-7.429-5.429-12.857t-12.857-5.429h-914.286zM1005.714 877.714q7.429 0 12.857-5.429t5.429-12.857v-347.429h-950.857v347.429q0 7.429 5.429 12.857t12.857 5.429h914.286zM146.286 804.571v-73.143h146.286v73.143h-146.286zM365.714 804.571v-73.143h219.429v73.143h-219.429z"
|
2812
|
+
],
|
2813
|
+
"width": 1097,
|
2814
|
+
"tags": [
|
2815
|
+
"credit-card"
|
2816
|
+
],
|
2817
|
+
"defaultCode": 61597,
|
2818
|
+
"grid": 14
|
2819
|
+
},
|
2820
|
+
"properties": {
|
2821
|
+
"id": 148,
|
2822
|
+
"order": 11,
|
2823
|
+
"prevSize": 28,
|
2824
|
+
"code": 61597,
|
2825
|
+
"name": "credit-card",
|
2826
|
+
"ligatures": ""
|
2827
|
+
},
|
2828
|
+
"setIdx": 2,
|
2829
|
+
"iconIdx": 33
|
2830
|
+
},
|
2831
|
+
{
|
2832
|
+
"icon": {
|
2833
|
+
"paths": [
|
2834
|
+
"M438.857 73.143q119.429 0 220.286 58.857t159.714 159.714 58.857 220.286-58.857 220.286-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286 58.857-220.286 159.714-159.714 220.286-58.857zM595.429 370.857q-1.143 0.571-5.429 5.429t-7.714 5.429q1.143 0 2.571-2.857t2.857-6.286 2-4q3.429-4 12.571-8.571 8-3.429 29.714-6.857 19.429-4.571 29.143 6.286-1.143-1.143 5.429-7.429t8.286-6.857q1.714-1.143 8.571-2.571t8.571-4.286l1.143-12.571q-6.857 0.571-10-4t-3.714-12q0 1.143-3.429 4.571 0-4-2.571-4.571t-6.571 0.571-5.143 0.571q-5.714-1.714-8.571-4.286t-4.571-9.429-2.286-8.571q-1.143-2.857-5.429-6t-5.429-6q-0.571-1.143-1.429-3.143t-1.714-3.714-2.286-3.143-3.143-1.429-4 2.857-4.286 5.714-2.571 2.857q-1.714-1.143-3.429-0.857t-2.571 0.571-2.571 1.714-2.857 2q-1.714 1.143-4.857 1.714t-4.857 1.143q8.571-2.857-0.571-6.286-5.714-2.286-9.143-1.714 5.143-2.286 4.286-6.857t-4.857-8h2.857q-0.571-2.286-4.857-4.857t-10-4.857-7.429-3.429q-4.571-2.857-19.429-5.429t-18.857-0.286q-2.857 3.429-2.571 6t2.286 8 2 7.143q0.571 3.429-3.143 7.429t-3.714 6.857q0 4 8 8.857t5.714 12.286q-1.714 4.571-9.143 9.143t-9.143 6.857q-2.857 4.571-0.857 10.571t6 9.429q1.143 1.143 0.857 2.286t-2 2.571-3.143 2.286-3.714 2l-1.714 1.143q-6.286 2.857-11.714-3.429t-7.714-14.857q-4-14.286-9.143-17.143-13.143-4.571-16.571 0.571-2.857-7.429-23.429-14.857-14.286-5.143-33.143-2.286 3.429-0.571 0-8.571-4-8.571-10.857-6.857 1.714-3.429 2.286-10t0.571-7.714q1.714-7.429 6.857-13.143 0.571-0.571 4-4.857t5.429-7.714 0.286-3.429q20 2.286 28.571-6.286 2.857-2.857 6.571-9.714t6-9.714q5.143-3.429 8-3.143t8.286 3.143 8.286 2.857q8 0.571 8.857-6.286t-4.286-11.429q6.857 0.571 1.714-9.714-2.857-4-4.571-5.143-6.857-2.286-15.429 2.857-4.571 2.286 1.143 4.571-0.571-0.571-5.429 6t-9.429 10-9.143-2.857q-0.571-0.571-3.143-7.714t-5.429-7.714q-4.571 0-9.143 8.571 1.714-4.571-6.286-8.571t-13.714-4.571q10.857-6.857-4.571-15.429-4-2.286-11.714-2.857t-11.143 2.286q-2.857 4-3.143 6.571t2.857 4.571 6 3.143 6.571 2.286 4.857 1.714q8 5.714 4.571 8-1.143 0.571-4.857 2t-6.571 2.571-3.429 2.286q-1.714 2.286 0 8t-1.143 8q-2.857-2.857-5.143-10t-4-9.429q4 5.143-14.286 3.429l-5.714-0.571q-2.286 0-9.143 1.143t-11.714 0.571-7.714-4.571q-2.286-4.571 0-11.429 0.571-2.286 2.286-1.143-2.286-1.714-6.286-5.429t-5.714-4.857q-26.286 8.571-53.714 23.429 3.429 0.571 6.857-0.571 2.857-1.143 7.429-3.714t5.714-3.143q19.429-8 24-4l2.857-2.857q8 9.143 11.429 14.286-4-2.286-17.143-0.571-11.429 3.429-12.571 6.857 4 6.857 2.857 10.286-2.286-1.714-6.571-5.714t-8.286-6.286-8.571-2.857q-9.143 0-12.571 0.571-83.429 45.714-134.286 126.857 4 4 6.857 4.571 2.286 0.571 2.857 5.143t1.429 6.286 6.571-1.714q5.143 4.571 1.714 10.857 0.571-0.571 25.143 15.429 10.857 9.714 12 12 1.714 6.286-5.714 10.286-0.571-1.143-5.143-5.143t-5.143-2.286q-1.714 2.857 0.286 10.571t6 7.143q-4 0-5.429 9.143t-1.429 20.286-0.571 13.429l1.143 0.571q-1.714 6.857 3.143 19.714t12.286 11.143q-7.429 1.714 11.429 24.571 3.429 4.571 4.571 5.143 1.714 1.143 6.857 4.286t8.571 5.714 5.714 6q2.286 2.857 5.714 12.857t8 13.429q-1.143 3.429 5.429 11.429t6 13.143q-0.571 0-1.429 0.571t-1.429 0.571q1.714 4 8.857 8t8.857 7.429q0.571 1.714 1.143 5.714t1.714 6.286 4.571 1.143q1.143-11.429-13.714-35.429-8.571-14.286-9.714-16.571-1.714-2.857-3.143-8.857t-2.571-8.286q1.143 0 3.429 0.857t4.857 2 4.286 2.286 1.143 1.714q-1.714 4 1.143 10t6.857 10.571 9.714 10.857 6.857 7.429q3.429 3.429 8 11.143t0 7.714q5.143 0 11.429 5.714t9.714 11.429q2.857 4.571 4.571 14.857t2.857 13.714q1.143 4 4.857 7.714t7.143 5.429l9.143 4.571t7.429 4q2.857 1.143 10.571 6t12.286 6.571q5.714 2.286 9.143 2.286t8.286-1.429 7.714-2q8.571-1.143 16.571 8.571t12 12q20.571 10.857 31.429 6.286-1.143 0.571 0.286 4.286t4.571 8.857 5.143 8.286 3.143 4.857q2.857 3.429 10.286 8.571t10.286 8.571q3.429-2.286 4-5.143-1.714 4.571 4 11.429t10.286 5.714q8-1.714 8-18.286-17.714 8.571-28-10.286 0-0.571-1.429-3.143t-2.286-4.857-1.429-4.857 0-4.286 2.857-1.714q5.143 0 5.714-2t-1.143-7.143-2.286-7.429q-0.571-4.571-6.286-11.429t-6.857-8.571q-2.857 5.143-9.143 4.571t-9.143-5.143q0 0.571-0.857 3.143t-0.857 3.714q-7.429 0-8.571-0.571 0.571-1.714 1.429-10t2-12.857q0.571-2.286 3.143-6.857t4.286-8.286 2.286-7.143-2.571-5.429-10-1.429q-10.857 0.571-14.857 11.429-0.571 1.714-1.714 6t-2.857 6.571-5.143 4q-4 1.714-13.714 1.143t-13.714-2.857q-7.429-4.571-12.857-16.571t-5.429-21.143q0-5.714 1.429-15.143t1.714-14.286-3.143-14q1.714-1.143 5.143-5.429t5.714-6q1.143-0.571 2.571-0.857t2.571 0 2.286-0.857 1.714-3.429q-0.571-0.571-2.286-1.714-1.714-1.714-2.286-1.714 4 1.714 16.286-0.857t15.714 0.857q8.571 6.286 12.571-1.143 0-0.571-1.429-5.429t-0.286-7.714q2.857 15.429 16.571 5.143 1.714 1.714 8.857 2.857t10 2.857q1.714 1.143 4 3.143t3.143 2.571 2.857-0.286 4.857-3.714q5.714 8 6.857 13.714 6.286 22.857 10.857 25.143 4 1.714 6.286 1.143t2.571-5.429 0-8-0.857-7.143l-0.571-4.571v-10.286l-0.571-4.571q-8.571-1.714-10.571-6.857t0.857-10.571 8.571-10.571q0.571-0.571 4.571-2t8.857-3.714 7.143-4.571q12-10.857 8.571-20 4 0 6.286-5.143-0.571 0-2.857-1.714t-4.286-2.857-2.571-1.143q5.143-2.857 1.143-9.143 2.857-1.714 4.286-6.286t4.286-5.714q5.143 6.857 12 1.143 4-4.571 0.571-9.143 2.857-4 11.714-6t10.571-5.429q4 1.143 4.571-1.143t0.571-6.857 1.714-6.857q2.286-2.857 8.571-5.143t7.429-2.857l9.714-6.286q1.714-2.286 0-2.286 10.286 1.143 17.714-6.286 5.714-6.286-3.429-11.429 1.714-3.429-1.714-5.429t-8.571-3.143q1.714-0.571 6.571-0.286t6-0.857q8.571-5.714-4-9.143-9.714-2.857-24.571 6.857zM502.286 872q117.714-20.571 200.571-108-1.714-1.714-7.143-2.571t-7.143-2q-10.286-4-13.714-4.571 0.571-4-1.429-7.429t-4.571-5.143-7.143-4.571-6.286-4q-1.143-1.143-4-3.429t-4-3.143-4.286-2.571-4.857-1.143-5.714 0.571l-1.714 0.571q-1.714 0.571-3.143 1.429t-3.143 1.714-2.286 1.714 0 1.429q-12-9.714-20.571-12.571-2.857-0.571-6.286-3.143t-6-4-5.714-0.857-6.571 4q-2.857 2.857-3.429 8.571t-1.143 7.429q-4-2.857 0-10t1.143-10.571q-1.714-3.429-6-2.571t-6.857 2.571-6.571 4.857-5.143 3.714-4.857 3.143-4.857 4.286q-1.714 2.286-3.429 6.857t-2.857 6.286q-1.143-2.286-6.571-3.714t-5.429-3.143q1.143 5.714 2.286 20t2.857 21.714q4 17.714-6.857 27.429-15.429 14.286-16.571 22.857-2.286 12.571 6.857 14.857 0 4-4.571 11.714t-4 12.286q0 3.429 1.143 9.143z"
|
2835
|
+
],
|
2836
|
+
"tags": [
|
2837
|
+
"globe"
|
2838
|
+
],
|
2839
|
+
"defaultCode": 61612,
|
2840
|
+
"grid": 14
|
2841
|
+
},
|
2842
|
+
"properties": {
|
2843
|
+
"id": 162,
|
2844
|
+
"order": 81,
|
2845
|
+
"prevSize": 28,
|
2846
|
+
"code": 61612,
|
2847
|
+
"name": "globe",
|
2848
|
+
"ligatures": ""
|
2849
|
+
},
|
2850
|
+
"setIdx": 2,
|
2851
|
+
"iconIdx": 34
|
2852
|
+
},
|
2853
|
+
{
|
2854
|
+
"icon": {
|
2855
|
+
"paths": [
|
2856
|
+
"M219.429 841.143q0-14.857-10.857-25.714t-25.714-10.857-25.714 10.857-10.857 25.714 10.857 25.714 25.714 10.857 25.714-10.857 10.857-25.714zM587.429 601.143l-389.714 389.714q-21.143 21.143-51.429 21.143-29.714 0-52-21.143l-60.571-61.714q-21.714-20.571-21.714-51.429 0-30.286 21.714-52l389.143-389.143q22.286 56 65.429 99.143t99.143 65.429zM949.714 352.571q0 22.286-13.143 60.571-26.857 76.571-94 124.286t-147.714 47.714q-105.714 0-180.857-75.143t-75.143-180.857 75.143-180.857 180.857-75.143q33.143 0 69.429 9.429t61.429 26.571q9.143 6.286 9.143 16t-9.143 16l-167.429 96.571v128l110.286 61.143q2.857-1.714 45.143-27.714t77.429-46.286 40.286-20.286q8.571 0 13.429 5.714t4.857 14.286z"
|
2857
|
+
],
|
2858
|
+
"width": 951,
|
2859
|
+
"tags": [
|
2860
|
+
"wrench"
|
2861
|
+
],
|
2862
|
+
"defaultCode": 61613,
|
2863
|
+
"grid": 14
|
2864
|
+
},
|
2865
|
+
"properties": {
|
2866
|
+
"id": 163,
|
2867
|
+
"order": 65,
|
2868
|
+
"prevSize": 28,
|
2869
|
+
"code": 61613,
|
2870
|
+
"name": "wrench",
|
2871
|
+
"ligatures": ""
|
2872
|
+
},
|
2873
|
+
"setIdx": 2,
|
2874
|
+
"iconIdx": 35
|
2875
|
+
},
|
2876
|
+
{
|
2877
|
+
"icon": {
|
2878
|
+
"paths": [
|
2879
|
+
"M365.714 146.286h292.571v-73.143h-292.571v73.143zM1024 512v274.286q0 37.714-26.857 64.571t-64.571 26.857h-841.143q-37.714 0-64.571-26.857t-26.857-64.571v-274.286h384v91.429q0 14.857 10.857 25.714t25.714 10.857h182.857q14.857 0 25.714-10.857t10.857-25.714v-91.429h384zM585.143 512v73.143h-146.286v-73.143h146.286zM1024 237.714v219.429h-1024v-219.429q0-37.714 26.857-64.571t64.571-26.857h201.143v-91.429q0-22.857 16-38.857t38.857-16h329.143q22.857 0 38.857 16t16 38.857v91.429h201.143q37.714 0 64.571 26.857t26.857 64.571z"
|
2880
|
+
],
|
2881
|
+
"tags": [
|
2882
|
+
"briefcase"
|
2883
|
+
],
|
2884
|
+
"defaultCode": 61617,
|
2885
|
+
"grid": 14
|
2886
|
+
},
|
2887
|
+
"properties": {
|
2888
|
+
"id": 166,
|
2889
|
+
"order": 82,
|
2890
|
+
"prevSize": 28,
|
2891
|
+
"code": 61617,
|
2892
|
+
"name": "briefcase",
|
2893
|
+
"ligatures": ""
|
2894
|
+
},
|
2895
|
+
"setIdx": 2,
|
2896
|
+
"iconIdx": 36
|
2897
|
+
},
|
2898
|
+
{
|
2899
|
+
"icon": {
|
2900
|
+
"paths": [
|
2901
|
+
"M338.857 512q-92.571 2.857-151.429 73.143h-76.571q-46.857 0-78.857-23.143t-32-67.714q0-201.714 70.857-201.714 3.429 0 24.857 12t55.714 24.286 68 12.286q38.286 0 76-13.143-2.857 21.143-2.857 37.714 0 79.429 46.286 146.286zM950.857 876q0 68.571-41.714 108.286t-110.857 39.714h-499.429q-69.143 0-110.857-39.714t-41.714-108.286q0-30.286 2-59.143t8-62.286 15.143-62 24.571-55.714 35.429-46.286 48.857-30.571 63.714-11.429q5.714 0 24.571 12.286t41.714 27.429 61.143 27.429 77.143 12.286 77.143-12.286 61.143-27.429 41.714-27.429 24.571-12.286q34.857 0 63.714 11.429t48.857 30.571 35.429 46.286 24.571 55.714 15.143 62 8 62.286 2 59.143zM365.714 146.286q0 60.571-42.857 103.429t-103.429 42.857-103.429-42.857-42.857-103.429 42.857-103.429 103.429-42.857 103.429 42.857 42.857 103.429zM768 365.714q0 90.857-64.286 155.143t-155.143 64.286-155.143-64.286-64.286-155.143 64.286-155.143 155.143-64.286 155.143 64.286 64.286 155.143zM1097.143 494.286q0 44.571-32 67.714t-78.857 23.143h-76.571q-58.857-70.286-151.429-73.143 46.286-66.857 46.286-146.286 0-16.571-2.857-37.714 37.714 13.143 76 13.143 33.714 0 68-12.286t55.714-24.286 24.857-12q70.857 0 70.857 201.714zM1024 146.286q0 60.571-42.857 103.429t-103.429 42.857-103.429-42.857-42.857-103.429 42.857-103.429 103.429-42.857 103.429 42.857 42.857 103.429z"
|
2902
|
+
],
|
2903
|
+
"width": 1097,
|
2904
|
+
"tags": [
|
2905
|
+
"group",
|
2906
|
+
" users"
|
2907
|
+
],
|
2908
|
+
"defaultCode": 61632,
|
2909
|
+
"grid": 14
|
2910
|
+
},
|
2911
|
+
"properties": {
|
2912
|
+
"id": 168,
|
2913
|
+
"order": 6,
|
2914
|
+
"prevSize": 28,
|
2915
|
+
"code": 61632,
|
2916
|
+
"name": "group",
|
2917
|
+
"ligatures": ""
|
2918
|
+
},
|
2919
|
+
"setIdx": 2,
|
2920
|
+
"iconIdx": 37
|
2921
|
+
},
|
2922
|
+
{
|
2923
|
+
"icon": {
|
2924
|
+
"paths": [
|
2925
|
+
"M872.571 827.429q32 50.857 12.286 87.143t-80.286 36.286h-658.286q-60.571 0-80.286-36.286t12.286-87.143l287.429-453.143v-228h-36.571q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714 25.714-10.857h292.571q14.857 0 25.714 10.857t10.857 25.714-10.857 25.714-25.714 10.857h-36.571v228zM427.429 413.143l-155.429 245.143h406.857l-155.429-245.143-11.429-17.714v-249.143h-73.143v249.143z"
|
2926
|
+
],
|
2927
|
+
"width": 951,
|
2928
|
+
"tags": [
|
2929
|
+
"flask"
|
2930
|
+
],
|
2931
|
+
"defaultCode": 61635,
|
2932
|
+
"grid": 14
|
2933
|
+
},
|
2934
|
+
"properties": {
|
2935
|
+
"id": 171,
|
2936
|
+
"order": 66,
|
2937
|
+
"prevSize": 28,
|
2938
|
+
"code": 61635,
|
2939
|
+
"name": "flask",
|
2940
|
+
"ligatures": ""
|
2941
|
+
},
|
2942
|
+
"setIdx": 2,
|
2943
|
+
"iconIdx": 38
|
2944
|
+
},
|
2945
|
+
{
|
2946
|
+
"icon": {
|
2947
|
+
"paths": [
|
2948
|
+
"M548.571 512q14.857 0 25.714 10.857t10.857 25.714-10.857 25.714-25.714 10.857-25.714-10.857-10.857-25.714 10.857-25.714 25.714-10.857zM720 548.571l289.714 227.429q16 11.429 14.286 32-2.857 20-20 29.143l-73.143 36.571q-7.429 4-16.571 4-9.714 0-17.714-4.571l-394.286-221.143-62.857 37.714q-4.571 2.286-6.857 2.857 8 28 5.714 55.429-4 44-32 84.286t-75.429 70.571q-75.429 48-158.286 48-77.714 0-126.857-44.571-51.429-48-45.143-118.286 4-43.429 32-84t74.857-70.857q75.429-48 158.857-48 47.429 0 86.286 17.714 5.143-7.429 12.571-12.571l69.714-41.714-69.714-41.714q-7.429-5.143-12.571-12.571-38.857 17.714-86.286 17.714-83.429 0-158.857-48-46.857-30.286-74.857-70.857t-32-84q-2.857-33.714 8.857-64.571t36.286-53.143q48.571-45.143 126.857-45.143 82.857 0 158.286 48 47.429 29.714 75.429 70.286t32 84.571q2.286 27.429-5.714 55.429 2.286 0.571 6.857 2.857l62.857 37.714 394.286-221.143q8-4.571 17.714-4.571 9.143 0 16.571 4l73.143 36.571q17.143 9.143 20 29.143 1.714 20.571-14.286 32zM330.857 400q26.286-24 12-61.714t-60.571-66.857q-52.571-33.714-109.714-33.714-42.286 0-64.571 20.571-26.286 24-12 61.714t60.571 66.857q52.571 33.714 109.714 33.714 42.286 0 64.571-20.571zM282.286 825.714q46.286-29.143 60.571-66.857t-12-61.714q-22.286-20.571-64.571-20.571-57.143 0-109.714 33.714-46.286 29.143-60.571 66.857t12 61.714q22.286 20.571 64.571 20.571 57.143 0 109.714-33.714zM384 475.429l54.857 33.143v-6.286q0-20.571 18.857-32l8-4.571-45.143-26.857-14.857 14.857q-1.714 1.714-5.714 6.286t-6.857 6.857q-1.143 1.143-2.286 2t-1.714 1.429zM512 603.429l54.857 18.286 420.571-329.143-73.143-36.571-438.857 246.286v64.571l-91.429 54.857 5.143 4.571q1.143 1.143 4 3.429 2.286 2.286 6.286 6.857t6.286 6.857l14.857 14.857zM914.286 841.143l73.143-36.571-297.143-233.143-101.143 78.857q-1.143 1.714-7.429 4z"
|
2949
|
+
],
|
2950
|
+
"tags": [
|
2951
|
+
"cut",
|
2952
|
+
" scissors"
|
2953
|
+
],
|
2954
|
+
"defaultCode": 61636,
|
2955
|
+
"grid": 14
|
2956
|
+
},
|
2957
|
+
"properties": {
|
2958
|
+
"id": 172,
|
2959
|
+
"order": 68,
|
2960
|
+
"prevSize": 28,
|
2961
|
+
"code": 61636,
|
2962
|
+
"name": "cut",
|
2963
|
+
"ligatures": ""
|
2964
|
+
},
|
2965
|
+
"setIdx": 2,
|
2966
|
+
"iconIdx": 39
|
2967
|
+
},
|
2968
|
+
{
|
2969
|
+
"icon": {
|
2970
|
+
"paths": [
|
2971
|
+
"M802.286 791.429q0 66.857-45.143 112t-112 45.143q-77.143 0-134.286-57.143l-444-443.429q-64.571-65.714-64.571-154.857 0-90.857 62.857-154.286t153.714-63.429q90.286 0 156 64.571l345.714 346.286q5.714 5.714 5.714 12.571 0 9.143-17.429 26.571t-26.571 17.429q-7.429 0-13.143-5.714l-346.286-346.857q-45.143-44-103.429-44-60.571 0-102.286 42.857t-41.714 103.429q0 60 43.429 103.429l443.429 444q36 36 82.857 36 36.571 0 60.571-24t24-60.571q0-46.857-36-82.857l-332-332q-14.857-13.714-34.286-13.714-16.571 0-27.429 10.857t-10.857 27.429q0 18.286 14.286 33.714l234.286 234.286q5.714 5.714 5.714 12.571 0 9.143-17.714 26.857t-26.857 17.714q-6.857 0-12.571-5.714l-234.286-234.286q-36-34.857-36-85.143 0-46.857 32.571-79.429t79.429-32.571q50.286 0 85.143 36l332 332q57.143 56 57.143 134.286z"
|
2972
|
+
],
|
2973
|
+
"width": 805,
|
2974
|
+
"tags": [
|
2975
|
+
"paperclip"
|
2976
|
+
],
|
2977
|
+
"defaultCode": 61638,
|
2978
|
+
"grid": 14
|
2979
|
+
},
|
2980
|
+
"properties": {
|
2981
|
+
"id": 174,
|
2982
|
+
"order": 67,
|
2983
|
+
"prevSize": 28,
|
2984
|
+
"code": 61638,
|
2985
|
+
"name": "paperclip",
|
2986
|
+
"ligatures": ""
|
2987
|
+
},
|
2988
|
+
"setIdx": 2,
|
2989
|
+
"iconIdx": 40
|
2990
|
+
},
|
2991
|
+
{
|
2992
|
+
"icon": {
|
2993
|
+
"paths": [
|
2994
|
+
"M219.429 877.714h438.857v-219.429h-438.857v219.429zM731.429 877.714h73.143v-512q0-8-5.714-22t-11.429-19.714l-160.571-160.571q-5.714-5.714-19.429-11.429t-22.286-5.714v237.714q0 22.857-16 38.857t-38.857 16h-329.143q-22.857 0-38.857-16t-16-38.857v-237.714h-73.143v731.429h73.143v-237.714q0-22.857 16-38.857t38.857-16h475.429q22.857 0 38.857 16t16 38.857v237.714zM512 347.429v-182.857q0-7.429-5.429-12.857t-12.857-5.429h-109.714q-7.429 0-12.857 5.429t-5.429 12.857v182.857q0 7.429 5.429 12.857t12.857 5.429h109.714q7.429 0 12.857-5.429t5.429-12.857zM877.714 365.714v530.286q0 22.857-16 38.857t-38.857 16h-768q-22.857 0-38.857-16t-16-38.857v-768q0-22.857 16-38.857t38.857-16h530.286q22.857 0 50.286 11.429t43.429 27.429l160 160q16 16 27.429 43.429t11.429 50.286z"
|
2995
|
+
],
|
2996
|
+
"tags": [
|
2997
|
+
"save",
|
2998
|
+
" floppy-o"
|
2999
|
+
],
|
3000
|
+
"defaultCode": 61639,
|
3001
|
+
"grid": 14
|
3002
|
+
},
|
3003
|
+
"properties": {
|
3004
|
+
"id": 175,
|
3005
|
+
"order": 90,
|
3006
|
+
"prevSize": 28,
|
3007
|
+
"code": 61639,
|
3008
|
+
"name": "save",
|
3009
|
+
"ligatures": ""
|
3010
|
+
},
|
3011
|
+
"setIdx": 2,
|
3012
|
+
"iconIdx": 41
|
3013
|
+
},
|
3014
|
+
{
|
3015
|
+
"icon": {
|
3016
|
+
"paths": [
|
3017
|
+
"M680 332l167.429-167.429-61.143-61.143-167.429 167.429zM935.429 164.571q0 15.429-10.286 25.714l-734.857 734.857q-10.286 10.286-25.714 10.286t-25.714-10.286l-113.143-113.143q-10.286-10.286-10.286-25.714t10.286-25.714l734.857-734.857q10.286-10.286 25.714-10.286t25.714 10.286l113.143 113.143q10.286 10.286 10.286 25.714zM163.429 56l56 17.143-56 17.143-17.143 56-17.143-56-56-17.143 56-17.143 17.143-56zM363.429 148.571l112 34.286-112 34.286-34.286 112-34.286-112-112-34.286 112-34.286 34.286-112zM894.857 421.714l56 17.143-56 17.143-17.143 56-17.143-56-56-17.143 56-17.143 17.143-56zM529.143 56l56 17.143-56 17.143-17.143 56-17.143-56-56-17.143 56-17.143 17.143-56z"
|
3018
|
+
],
|
3019
|
+
"width": 951,
|
3020
|
+
"tags": [
|
3021
|
+
"magic"
|
3022
|
+
],
|
3023
|
+
"defaultCode": 61648,
|
3024
|
+
"grid": 14
|
3025
|
+
},
|
3026
|
+
"properties": {
|
3027
|
+
"id": 183,
|
3028
|
+
"order": 69,
|
3029
|
+
"prevSize": 28,
|
3030
|
+
"code": 61648,
|
3031
|
+
"name": "magic",
|
3032
|
+
"ligatures": ""
|
3033
|
+
},
|
3034
|
+
"setIdx": 2,
|
3035
|
+
"iconIdx": 42
|
3036
|
+
},
|
3037
|
+
{
|
3038
|
+
"icon": {
|
3039
|
+
"paths": [
|
3040
|
+
"M365.714 804.571q0-29.714-21.714-51.429t-51.429-21.714-51.429 21.714-21.714 51.429 21.714 51.429 51.429 21.714 51.429-21.714 21.714-51.429zM146.286 512h219.429v-146.286h-90.286q-7.429 0-12.571 5.143l-111.429 111.429q-5.143 5.143-5.143 12.571v17.143zM877.714 804.571q0-29.714-21.714-51.429t-51.429-21.714-51.429 21.714-21.714 51.429 21.714 51.429 51.429 21.714 51.429-21.714 21.714-51.429zM1024 182.857v585.143q0 8.571-2.286 15.143t-7.714 10.571-9.429 6.571-13.429 3.429-12.857 1.143-14.571 0-12.857-0.286q0 60.571-42.857 103.429t-103.429 42.857-103.429-42.857-42.857-103.429h-219.429q0 60.571-42.857 103.429t-103.429 42.857-103.429-42.857-42.857-103.429h-36.571q-1.714 0-12.857 0.286t-14.571 0-12.857-1.143-13.429-3.429-9.429-6.571-7.714-10.571-2.286-15.143q0-14.857 10.857-25.714t25.714-10.857v-182.857q0-4.571-0.286-20t0-21.714 1.429-19.714 3.714-21.143 8-17.429 12.857-17.143l113.143-113.143q10.857-10.857 28.857-18.286t33.429-7.429h91.429v-109.714q0-14.857 10.857-25.714t25.714-10.857h585.143q14.857 0 25.714 10.857t10.857 25.714z"
|
3041
|
+
],
|
3042
|
+
"tags": [
|
3043
|
+
"truck"
|
3044
|
+
],
|
3045
|
+
"defaultCode": 61649,
|
3046
|
+
"grid": 14
|
3047
|
+
},
|
3048
|
+
"properties": {
|
3049
|
+
"id": 184,
|
3050
|
+
"order": 10,
|
3051
|
+
"prevSize": 28,
|
3052
|
+
"code": 61649,
|
3053
|
+
"name": "truck",
|
3054
|
+
"ligatures": ""
|
3055
|
+
},
|
3056
|
+
"setIdx": 2,
|
3057
|
+
"iconIdx": 43
|
3058
|
+
},
|
3059
|
+
{
|
3060
|
+
"icon": {
|
3061
|
+
"paths": [
|
3062
|
+
"M438.857 658.286h219.429v-54.857h-73.143v-256h-65.143l-84.571 78.286 44 45.714q24-21.143 31.429-32.571h1.143v164.571h-73.143v54.857zM731.429 512q0 40-12 81.143t-34 76.571-58 57.714-78.857 22.286-78.857-22.286-58-57.714-34-76.571-12-81.143 12-81.143 34-76.571 58-57.714 78.857-22.286 78.857 22.286 58 57.714 34 76.571 12 81.143zM1024 658.286v-292.571q-60.571 0-103.429-42.857t-42.857-103.429h-658.286q0 60.571-42.857 103.429t-103.429 42.857v292.571q60.571 0 103.429 42.857t42.857 103.429h658.286q0-60.571 42.857-103.429t103.429-42.857zM1097.143 182.857v658.286q0 14.857-10.857 25.714t-25.714 10.857h-1024q-14.857 0-25.714-10.857t-10.857-25.714v-658.286q0-14.857 10.857-25.714t25.714-10.857h1024q14.857 0 25.714 10.857t10.857 25.714z"
|
3063
|
+
],
|
3064
|
+
"width": 1097,
|
3065
|
+
"tags": [
|
3066
|
+
"money"
|
3067
|
+
],
|
3068
|
+
"defaultCode": 61654,
|
3069
|
+
"grid": 14
|
3070
|
+
},
|
3071
|
+
"properties": {
|
3072
|
+
"id": 189,
|
3073
|
+
"order": 13,
|
3074
|
+
"prevSize": 28,
|
3075
|
+
"code": 61654,
|
3076
|
+
"name": "money",
|
3077
|
+
"ligatures": ""
|
3078
|
+
},
|
3079
|
+
"setIdx": 2,
|
3080
|
+
"iconIdx": 44
|
3081
|
+
},
|
3082
|
+
{
|
3083
|
+
"icon": {
|
3084
|
+
"paths": [
|
3085
|
+
"M585.143 621.714q0 14.857-10.857 25.714l-256 256q-10.857 10.857-25.714 10.857t-25.714-10.857l-256-256q-10.857-10.857-10.857-25.714t10.857-25.714 25.714-10.857h512q14.857 0 25.714 10.857t10.857 25.714zM585.143 402.286q0 14.857-10.857 25.714t-25.714 10.857h-512q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714l256-256q10.857-10.857 25.714-10.857t25.714 10.857l256 256q10.857 10.857 10.857 25.714z"
|
3086
|
+
],
|
3087
|
+
"width": 585,
|
3088
|
+
"tags": [
|
3089
|
+
"unsorted",
|
3090
|
+
" sort"
|
3091
|
+
],
|
3092
|
+
"defaultCode": 61660,
|
3093
|
+
"grid": 14
|
3094
|
+
},
|
3095
|
+
"properties": {
|
3096
|
+
"id": 195,
|
3097
|
+
"order": 1,
|
3098
|
+
"prevSize": 28,
|
3099
|
+
"code": 61660,
|
3100
|
+
"name": "unsorted",
|
3101
|
+
"ligatures": ""
|
3102
|
+
},
|
3103
|
+
"setIdx": 2,
|
3104
|
+
"iconIdx": 45
|
3105
|
+
},
|
3106
|
+
{
|
3107
|
+
"icon": {
|
3108
|
+
"paths": [
|
3109
|
+
"M585.143 621.714q0 14.857-10.857 25.714l-256 256q-10.857 10.857-25.714 10.857t-25.714-10.857l-256-256q-10.857-10.857-10.857-25.714t10.857-25.714 25.714-10.857h512q14.857 0 25.714 10.857t10.857 25.714z"
|
3110
|
+
],
|
3111
|
+
"width": 585,
|
3112
|
+
"tags": [
|
3113
|
+
"sort-down",
|
3114
|
+
" sort-asc"
|
3115
|
+
],
|
3116
|
+
"defaultCode": 61661,
|
3117
|
+
"grid": 14
|
3118
|
+
},
|
3119
|
+
"properties": {
|
3120
|
+
"id": 196,
|
3121
|
+
"order": 2,
|
3122
|
+
"prevSize": 28,
|
3123
|
+
"code": 61661,
|
3124
|
+
"name": "sort-down",
|
3125
|
+
"ligatures": ""
|
3126
|
+
},
|
3127
|
+
"setIdx": 2,
|
3128
|
+
"iconIdx": 46
|
3129
|
+
},
|
3130
|
+
{
|
3131
|
+
"icon": {
|
3132
|
+
"paths": [
|
3133
|
+
"M585.143 402.286q0 14.857-10.857 25.714t-25.714 10.857h-512q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714l256-256q10.857-10.857 25.714-10.857t25.714 10.857l256 256q10.857 10.857 10.857 25.714z"
|
3134
|
+
],
|
3135
|
+
"width": 585,
|
3136
|
+
"tags": [
|
3137
|
+
"sort-up",
|
3138
|
+
" sort-desc"
|
3139
|
+
],
|
3140
|
+
"defaultCode": 61662,
|
3141
|
+
"grid": 14
|
3142
|
+
},
|
3143
|
+
"properties": {
|
3144
|
+
"id": 197,
|
3145
|
+
"order": 3,
|
3146
|
+
"prevSize": 28,
|
3147
|
+
"code": 61662,
|
3148
|
+
"name": "sort-up",
|
3149
|
+
"ligatures": ""
|
3150
|
+
},
|
3151
|
+
"setIdx": 2,
|
3152
|
+
"iconIdx": 47
|
3153
|
+
},
|
3154
|
+
{
|
3155
|
+
"icon": {
|
3156
|
+
"paths": [
|
3157
|
+
"M877.714 512q0 89.143-34.857 170.286t-93.714 140-140 93.714-170.286 34.857q-98.286 0-186.857-41.429t-150.857-116.857q-4-5.714-3.714-12.857t4.857-11.714l78.286-78.857q5.714-5.143 14.286-5.143 9.143 1.143 13.143 6.857 41.714 54.286 102.286 84t128.571 29.714q59.429 0 113.429-23.143t93.429-62.571 62.571-93.429 23.143-113.429-23.143-113.429-62.571-93.429-93.429-62.571-113.429-23.143q-56 0-107.429 20.286t-91.429 58l78.286 78.857q17.714 17.143 8 39.429-9.714 22.857-33.714 22.857h-256q-14.857 0-25.714-10.857t-10.857-25.714v-256q0-24 22.857-33.714 22.286-9.714 39.429 8l74.286 73.714q61.143-57.714 139.714-89.429t162.571-31.714q89.143 0 170.286 34.857t140 93.714 93.714 140 34.857 170.286z"
|
3158
|
+
],
|
3159
|
+
"tags": [
|
3160
|
+
"rotate-left",
|
3161
|
+
" undo"
|
3162
|
+
],
|
3163
|
+
"defaultCode": 61666,
|
3164
|
+
"grid": 14
|
3165
|
+
},
|
3166
|
+
"properties": {
|
3167
|
+
"id": 200,
|
3168
|
+
"order": 71,
|
3169
|
+
"prevSize": 28,
|
3170
|
+
"code": 61666,
|
3171
|
+
"name": "rotate-left",
|
3172
|
+
"ligatures": ""
|
3173
|
+
},
|
3174
|
+
"setIdx": 2,
|
3175
|
+
"iconIdx": 48
|
3176
|
+
},
|
3177
|
+
{
|
3178
|
+
"icon": {
|
3179
|
+
"paths": [
|
3180
|
+
"M1012 877.714q0 30.286-21.143 51.429l-61.143 61.714q-22.286 21.143-52 21.143-30.286 0-51.429-21.143l-207.429-208q-21.714-20.571-21.714-51.429 0-30.286 24.571-54.857l-146.286-146.286-72 72q-8 8-19.429 8t-19.429-8q1.143 1.143 7.143 6.857t7.143 7.429 5.714 6.571 5.714 7.714 3.429 7.714 3.143 9.429 0.857 10.286q0 21.714-16 38.857-1.714 1.714-9.429 10.286t-10.857 11.714-10.571 9.429-12.571 8.857-12.571 5.143-14.857 2.571q-22.857 0-38.857-16l-233.143-233.143q-16-16-16-38.857 0-7.429 2.571-14.857t5.143-12.571 8.857-12.571 9.429-10.571 11.714-10.857 10.286-9.429q17.143-16 38.857-16 5.714 0 10.286 0.857t9.429 3.143 7.714 3.429 7.714 5.714 6.571 5.714 7.429 7.143 6.857 7.143q-8-8-8-19.429t8-19.429l198.857-198.857q8-8 19.429-8t19.429 8q-1.143-1.143-7.143-6.857t-7.143-7.429-5.714-6.571-5.714-7.714-3.429-7.714-3.143-9.429-0.857-10.286q0-21.714 16-38.857 1.714-1.714 9.429-10.286t10.857-11.714 10.571-9.429 12.571-8.857 12.571-5.143 14.857-2.571q22.857 0 38.857 16l233.143 233.143q16 16 16 38.857 0 7.429-2.571 14.857t-5.143 12.571-8.857 12.571-9.429 10.571-11.714 10.857-10.286 9.429q-17.143 16-38.857 16-5.714 0-10.286-0.857t-9.429-3.143-7.714-3.429-7.714-5.714-6.571-5.714-7.429-7.143-6.857-7.143q8 8 8 19.429t-8 19.429l-72 72 146.286 146.286q24.571-24.571 54.857-24.571 29.714 0 52 21.143l207.429 207.429q21.143 22.286 21.143 52z"
|
3181
|
+
],
|
3182
|
+
"tags": [
|
3183
|
+
"legal",
|
3184
|
+
" gavel"
|
3185
|
+
],
|
3186
|
+
"defaultCode": 61667,
|
3187
|
+
"grid": 14
|
3188
|
+
},
|
3189
|
+
"properties": {
|
3190
|
+
"id": 201,
|
3191
|
+
"order": 70,
|
3192
|
+
"prevSize": 28,
|
3193
|
+
"code": 61667,
|
3194
|
+
"name": "legal",
|
3195
|
+
"ligatures": ""
|
3196
|
+
},
|
3197
|
+
"setIdx": 2,
|
3198
|
+
"iconIdx": 49
|
3199
|
+
},
|
3200
|
+
{
|
3201
|
+
"icon": {
|
3202
|
+
"paths": [
|
3203
|
+
"M219.429 658.286q0-30.286-21.429-51.714t-51.714-21.429-51.714 21.429-21.429 51.714 21.429 51.714 51.714 21.429 51.714-21.429 21.429-51.714zM329.143 402.286q0-30.286-21.429-51.714t-51.714-21.429-51.714 21.429-21.429 51.714 21.429 51.714 51.714 21.429 51.714-21.429 21.429-51.714zM573.714 677.143l57.714-218.286q3.429-14.857-4.286-27.714t-22-16.857-27.429 3.714-17.143 22.571l-57.714 218.286q-34.286 2.857-61.143 24.857t-36 56.286q-11.429 44 11.429 83.429t66.857 50.857 83.429-11.429 50.857-66.857q9.143-34.286-3.429-66.857t-41.143-52zM950.857 658.286q0-30.286-21.429-51.714t-51.714-21.429-51.714 21.429-21.429 51.714 21.429 51.714 51.714 21.429 51.714-21.429 21.429-51.714zM585.143 292.571q0-30.286-21.429-51.714t-51.714-21.429-51.714 21.429-21.429 51.714 21.429 51.714 51.714 21.429 51.714-21.429 21.429-51.714zM841.143 402.286q0-30.286-21.429-51.714t-51.714-21.429-51.714 21.429-21.429 51.714 21.429 51.714 51.714 21.429 51.714-21.429 21.429-51.714zM1024 658.286q0 149.143-80.571 276-10.857 16.571-30.857 16.571h-801.143q-20 0-30.857-16.571-80.571-126.286-80.571-276 0-104 40.571-198.857t109.143-163.429 163.429-109.143 198.857-40.571 198.857 40.571 163.429 109.143 109.143 163.429 40.571 198.857z"
|
3204
|
+
],
|
3205
|
+
"tags": [
|
3206
|
+
"dashboard",
|
3207
|
+
" tachometer"
|
3208
|
+
],
|
3209
|
+
"defaultCode": 61668,
|
3210
|
+
"grid": 14
|
3211
|
+
},
|
3212
|
+
"properties": {
|
3213
|
+
"id": 202,
|
3214
|
+
"order": 72,
|
3215
|
+
"prevSize": 28,
|
3216
|
+
"code": 61668,
|
3217
|
+
"name": "dashboard",
|
3218
|
+
"ligatures": ""
|
3219
|
+
},
|
3220
|
+
"setIdx": 2,
|
3221
|
+
"iconIdx": 50
|
3222
|
+
},
|
3223
|
+
{
|
3224
|
+
"icon": {
|
3225
|
+
"paths": [
|
3226
|
+
"M512 219.429q-116.571 0-218 39.714t-161.143 107.143-59.714 145.714q0 64 40.857 122t115.143 100.286l49.714 28.571-15.429 54.857q-13.714 52-40 98.286 86.857-36 157.143-97.714l24.571-21.714 32.571 3.429q39.429 4.571 74.286 4.571 116.571 0 218-39.714t161.143-107.143 59.714-145.714-59.714-145.714-161.143-107.143-218-39.714zM1024 512q0 99.429-68.571 183.714t-186.286 133.143-257.143 48.857q-40 0-82.857-4.571-113.143 100-262.857 138.286-28 8-65.143 12.571h-2.857q-8.571 0-15.429-6t-9.143-15.714v-0.571q-1.714-2.286-0.286-6.857t1.143-5.714 2.571-5.429l3.429-5.143t4-4.857 4.571-5.143q4-4.571 17.714-19.714t19.714-21.714 17.714-22.571 18.571-29.143 15.429-33.714 14.857-43.429q-89.714-50.857-141.429-125.714t-51.714-160.571q0-99.429 68.571-183.714t186.286-133.143 257.143-48.857 257.143 48.857 186.286 133.143 68.571 183.714z"
|
3227
|
+
],
|
3228
|
+
"tags": [
|
3229
|
+
"comment-o"
|
3230
|
+
],
|
3231
|
+
"defaultCode": 61669,
|
3232
|
+
"grid": 14
|
3233
|
+
},
|
3234
|
+
"properties": {
|
3235
|
+
"id": 203,
|
3236
|
+
"order": 73,
|
3237
|
+
"prevSize": 28,
|
3238
|
+
"code": 61669,
|
3239
|
+
"name": "comment-o",
|
3240
|
+
"ligatures": ""
|
3241
|
+
},
|
3242
|
+
"setIdx": 2,
|
3243
|
+
"iconIdx": 51
|
3244
|
+
},
|
3245
|
+
{
|
3246
|
+
"icon": {
|
3247
|
+
"paths": [
|
3248
|
+
"M505.714 323.429q10.286 11.429 4 25.143l-308.571 661.143q-7.429 14.286-24 14.286-2.286 0-8-1.143-9.714-2.857-14.571-10.857t-2.571-17.143l112.571-461.714-232 57.714q-2.286 0.571-6.857 0.571-10.286 0-17.714-6.286-10.286-8.571-7.429-22.286l114.857-471.429q2.286-8 9.143-13.143t16-5.143h187.429q10.857 0 18.286 7.143t7.429 16.857q0 4.571-2.857 10.286l-97.714 264.571 226.286-56q4.571-1.143 6.857-1.143 10.857 0 19.429 8.571z"
|
3249
|
+
],
|
3250
|
+
"width": 512,
|
3251
|
+
"tags": [
|
3252
|
+
"flash",
|
3253
|
+
" bolt"
|
3254
|
+
],
|
3255
|
+
"defaultCode": 61671,
|
3256
|
+
"grid": 14
|
3257
|
+
},
|
3258
|
+
"properties": {
|
3259
|
+
"id": 205,
|
3260
|
+
"order": 74,
|
3261
|
+
"prevSize": 28,
|
3262
|
+
"code": 61671,
|
3263
|
+
"name": "flash",
|
3264
|
+
"ligatures": ""
|
3265
|
+
},
|
3266
|
+
"setIdx": 2,
|
3267
|
+
"iconIdx": 52
|
3268
|
+
},
|
3269
|
+
{
|
3270
|
+
"icon": {
|
3271
|
+
"paths": [
|
3272
|
+
"M1024 713.143v182.857q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857v-182.857q0-22.857 16-38.857t38.857-16h54.857v-109.714h-292.571v109.714h54.857q22.857 0 38.857 16t16 38.857v182.857q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857v-182.857q0-22.857 16-38.857t38.857-16h54.857v-109.714h-292.571v109.714h54.857q22.857 0 38.857 16t16 38.857v182.857q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857v-182.857q0-22.857 16-38.857t38.857-16h54.857v-109.714q0-29.714 21.714-51.429t51.429-21.714h292.571v-109.714h-54.857q-22.857 0-38.857-16t-16-38.857v-182.857q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857v182.857q0 22.857-16 38.857t-38.857 16h-54.857v109.714h292.571q29.714 0 51.429 21.714t21.714 51.429v109.714h54.857q22.857 0 38.857 16t16 38.857z"
|
3273
|
+
],
|
3274
|
+
"tags": [
|
3275
|
+
"sitemap"
|
3276
|
+
],
|
3277
|
+
"defaultCode": 61672,
|
3278
|
+
"grid": 14
|
3279
|
+
},
|
3280
|
+
"properties": {
|
3281
|
+
"id": 206,
|
3282
|
+
"order": 42,
|
3283
|
+
"prevSize": 28,
|
3284
|
+
"code": 61672,
|
3285
|
+
"name": "sitemap",
|
3286
|
+
"ligatures": ""
|
3287
|
+
},
|
3288
|
+
"setIdx": 2,
|
3289
|
+
"iconIdx": 53
|
3290
|
+
},
|
3291
|
+
{
|
3292
|
+
"icon": {
|
3293
|
+
"paths": [
|
3294
|
+
"M420.571 329.143q0 7.429-5.429 12.857t-12.857 5.429-12.857-5.429-5.429-12.857q0-26.286-30.857-40.571t-60.571-14.286q-7.429 0-12.857-5.429t-5.429-12.857 5.429-12.857 12.857-5.429q28.571 0 56.857 9.143t49.714 30.857 21.429 51.429zM512 329.143q0-41.143-19.714-76.571t-51.429-58-70.286-35.429-78-12.857-78 12.857-70.286 35.429-51.429 58-19.714 76.571q0 57.714 38.857 102.857 5.714 6.286 17.429 18.857t17.429 18.857q73.143 87.429 80.571 170.286h130.286q7.429-82.857 80.571-170.286 5.714-6.286 17.429-18.857t17.429-18.857q38.857-45.143 38.857-102.857zM585.143 329.143q0 88.571-58.857 153.143-25.714 28-42.571 49.714t-34 54.571-19.429 61.429q26.857 16 26.857 46.857 0 21.143-14.286 36.571 14.286 15.429 14.286 36.571 0 29.714-25.714 46.286 7.429 13.143 7.429 26.857 0 26.286-18 40.571t-44.286 14.286q-11.429 25.143-34.286 40t-49.714 14.857-49.714-14.857-34.286-40q-26.286 0-44.286-14.286t-18-40.571q0-13.714 7.429-26.857-25.714-16.571-25.714-46.286 0-21.143 14.286-36.571-14.286-15.429-14.286-36.571 0-30.857 26.857-46.857-2.286-28.571-19.429-61.429t-34-54.571-42.571-49.714q-58.857-64.571-58.857-153.143 0-56.571 25.429-105.429t66.857-81.143 93.714-50.857 106.571-18.571 106.571 18.571 93.714 50.857 66.857 81.143 25.429 105.429z"
|
3295
|
+
],
|
3296
|
+
"width": 585,
|
3297
|
+
"tags": [
|
3298
|
+
"lightbulb-o"
|
3299
|
+
],
|
3300
|
+
"defaultCode": 61675,
|
3301
|
+
"grid": 14
|
3302
|
+
},
|
3303
|
+
"properties": {
|
3304
|
+
"id": 209,
|
3305
|
+
"order": 75,
|
3306
|
+
"prevSize": 28,
|
3307
|
+
"code": 61675,
|
3308
|
+
"name": "lightbulb-o",
|
3309
|
+
"ligatures": ""
|
3310
|
+
},
|
3311
|
+
"setIdx": 2,
|
3312
|
+
"iconIdx": 54
|
3313
|
+
},
|
3314
|
+
{
|
3315
|
+
"icon": {
|
3316
|
+
"paths": [
|
3317
|
+
"M219.429 768q0 14.857-10.857 25.714t-25.714 10.857-25.714-10.857-10.857-25.714 10.857-25.714 25.714-10.857 25.714 10.857 10.857 25.714zM804.571 802.857q0 69.143-41.714 108.571t-110.857 39.429h-499.429q-69.143 0-110.857-39.429t-41.714-108.571q0-38.857 3.143-74.857t13.714-78.857 27.143-75.714 46.286-58.857 68.571-34.571q-12.571 29.714-12.571 68.571v116q-33.143 11.429-53.143 40t-20 63.429q0 45.714 32 77.714t77.714 32 77.714-32 32-77.714q0-34.857-20.286-63.429t-52.857-40v-116q0-35.429 14.286-53.143 75.429 59.429 168.571 59.429t168.571-59.429q14.286 17.714 14.286 53.143v36.571q-60.571 0-103.429 42.857t-42.857 103.429v50.857q-18.286 16.571-18.286 40.571 0 22.857 16 38.857t38.857 16 38.857-16 16-38.857q0-24-18.286-40.571v-50.857q0-29.714 21.714-51.429t51.429-21.714 51.429 21.714 21.714 51.429v50.857q-18.286 16.571-18.286 40.571 0 22.857 16 38.857t38.857 16 38.857-16 16-38.857q0-24-18.286-40.571v-50.857q0-38.857-19.714-72.857t-53.429-53.429q0-5.714 0.286-24.286t0-27.429-1.429-23.714-4-26.857-7.429-22.857q38.857 8.571 68.571 34.571t46.286 58.857 27.143 75.714 13.714 78.857 3.143 74.857zM621.714 292.571q0 90.857-64.286 155.143t-155.143 64.286-155.143-64.286-64.286-155.143 64.286-155.143 155.143-64.286 155.143 64.286 64.286 155.143z"
|
3318
|
+
],
|
3319
|
+
"width": 805,
|
3320
|
+
"tags": [
|
3321
|
+
"user-md"
|
3322
|
+
],
|
3323
|
+
"defaultCode": 61680,
|
3324
|
+
"grid": 14
|
3325
|
+
},
|
3326
|
+
"properties": {
|
3327
|
+
"id": 213,
|
3328
|
+
"order": 76,
|
3329
|
+
"prevSize": 28,
|
3330
|
+
"code": 61680,
|
3331
|
+
"name": "user-md",
|
3332
|
+
"ligatures": ""
|
3333
|
+
},
|
3334
|
+
"setIdx": 2,
|
3335
|
+
"iconIdx": 55
|
3336
|
+
},
|
3337
|
+
{
|
3338
|
+
"icon": {
|
3339
|
+
"paths": [
|
3340
|
+
"M484.571 969.143q0-9.143-9.143-9.143-33.714 0-58-24.286t-24.286-58q0-9.143-9.143-9.143t-9.143 9.143q0 41.714 29.429 71.143t71.143 29.429q9.143 0 9.143-9.143zM950.857 804.571q0 29.714-21.714 51.429t-51.429 21.714h-256q0 60.571-42.857 103.429t-103.429 42.857-103.429-42.857-42.857-103.429h-256q-29.714 0-51.429-21.714t-21.714-51.429q108.571-92 164-227.143t55.429-284.857q0-94.286 54.857-149.714t150.857-66.857q-4.571-10.286-4.571-21.143 0-22.857 16-38.857t38.857-16 38.857 16 16 38.857q0 10.857-4.571 21.143 96 11.429 150.857 66.857t54.857 149.714q0 149.714 55.429 284.857t164 227.143z"
|
3341
|
+
],
|
3342
|
+
"width": 951,
|
3343
|
+
"tags": [
|
3344
|
+
"bell-o"
|
3345
|
+
],
|
3346
|
+
"defaultCode": 61683,
|
3347
|
+
"grid": 14
|
3348
|
+
},
|
3349
|
+
"properties": {
|
3350
|
+
"id": 216,
|
3351
|
+
"order": 77,
|
3352
|
+
"prevSize": 28,
|
3353
|
+
"code": 61683,
|
3354
|
+
"name": "bell-o",
|
3355
|
+
"ligatures": ""
|
3356
|
+
},
|
3357
|
+
"setIdx": 2,
|
3358
|
+
"iconIdx": 56
|
3359
|
+
},
|
3360
|
+
{
|
3361
|
+
"icon": {
|
3362
|
+
"paths": [
|
3363
|
+
"M219.429 749.714v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM219.429 603.429v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM365.714 603.429v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM219.429 457.143v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM658.286 749.714v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM512 603.429v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM365.714 457.143v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM219.429 310.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM658.286 603.429v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM512 457.143v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM365.714 310.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM219.429 164.571v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM658.286 457.143v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM512 310.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM365.714 164.571v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM658.286 310.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM512 164.571v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM658.286 164.571v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM512 950.857h219.429v-877.714h-658.286v877.714h219.429v-128q0-7.429 5.429-12.857t12.857-5.429h182.857q7.429 0 12.857 5.429t5.429 12.857v128zM804.571 36.571v950.857q0 14.857-10.857 25.714t-25.714 10.857h-731.429q-14.857 0-25.714-10.857t-10.857-25.714v-950.857q0-14.857 10.857-25.714t25.714-10.857h731.429q14.857 0 25.714 10.857t10.857 25.714z"
|
3364
|
+
],
|
3365
|
+
"width": 805,
|
3366
|
+
"tags": [
|
3367
|
+
"building-o"
|
3368
|
+
],
|
3369
|
+
"defaultCode": 61687,
|
3370
|
+
"grid": 14
|
3371
|
+
},
|
3372
|
+
"properties": {
|
3373
|
+
"id": 220,
|
3374
|
+
"order": 103,
|
3375
|
+
"prevSize": 28,
|
3376
|
+
"code": 61687,
|
3377
|
+
"name": "building-o",
|
3378
|
+
"ligatures": ""
|
3379
|
+
},
|
3380
|
+
"setIdx": 2,
|
3381
|
+
"iconIdx": 57
|
3382
|
+
},
|
3383
|
+
{
|
3384
|
+
"icon": {
|
3385
|
+
"paths": [
|
3386
|
+
"M219.429 749.714v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM219.429 603.429v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM365.714 603.429v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM219.429 457.143v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM658.286 749.714v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM512 603.429v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM365.714 457.143v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM658.286 603.429v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM512 457.143v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM658.286 457.143v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM512 950.857h219.429v-658.286h-146.286v18.286q0 22.857-16 38.857t-38.857 16h-256q-22.857 0-38.857-16t-16-38.857v-18.286h-146.286v658.286h219.429v-128q0-7.429 5.429-12.857t12.857-5.429h182.857q7.429 0 12.857 5.429t5.429 12.857v128zM512 274.286v-182.857q0-7.429-5.429-12.857t-12.857-5.429h-36.571q-7.429 0-12.857 5.429t-5.429 12.857v54.857h-73.143v-54.857q0-7.429-5.429-12.857t-12.857-5.429h-36.571q-7.429 0-12.857 5.429t-5.429 12.857v182.857q0 7.429 5.429 12.857t12.857 5.429h36.571q7.429 0 12.857-5.429t5.429-12.857v-54.857h73.143v54.857q0 7.429 5.429 12.857t12.857 5.429h36.571q7.429 0 12.857-5.429t5.429-12.857zM804.571 256v731.429q0 14.857-10.857 25.714t-25.714 10.857h-731.429q-14.857 0-25.714-10.857t-10.857-25.714v-731.429q0-14.857 10.857-25.714t25.714-10.857h182.857v-164.571q0-22.857 16-38.857t38.857-16h256q22.857 0 38.857 16t16 38.857v164.571h182.857q14.857 0 25.714 10.857t10.857 25.714z"
|
3387
|
+
],
|
3388
|
+
"width": 805,
|
3389
|
+
"tags": [
|
3390
|
+
"hospital-o"
|
3391
|
+
],
|
3392
|
+
"defaultCode": 61688,
|
3393
|
+
"grid": 14
|
3394
|
+
},
|
3395
|
+
"properties": {
|
3396
|
+
"id": 221,
|
3397
|
+
"order": 104,
|
3398
|
+
"prevSize": 28,
|
3399
|
+
"code": 61688,
|
3400
|
+
"name": "hospital-o",
|
3401
|
+
"ligatures": ""
|
3402
|
+
},
|
3403
|
+
"setIdx": 2,
|
3404
|
+
"iconIdx": 58
|
3405
|
+
},
|
3406
|
+
{
|
3407
|
+
"icon": {
|
3408
|
+
"paths": [
|
3409
|
+
"M365.714 512v-219.429h-146.286v146.286q0 30.286 21.429 51.714t51.714 21.429h73.143zM950.857 768v109.714h-658.286v-109.714l73.143-109.714h-73.143q-90.857 0-155.143-64.286t-64.286-155.143v-182.857l-36.571-36.571 18.286-73.143h274.286l18.286-73.143h548.571l18.286 109.714-36.571 18.286v457.143z"
|
3410
|
+
],
|
3411
|
+
"width": 951,
|
3412
|
+
"tags": [
|
3413
|
+
"beer"
|
3414
|
+
],
|
3415
|
+
"defaultCode": 61692,
|
3416
|
+
"grid": 14
|
3417
|
+
},
|
3418
|
+
"properties": {
|
3419
|
+
"id": 225,
|
3420
|
+
"order": 105,
|
3421
|
+
"prevSize": 28,
|
3422
|
+
"code": 61692,
|
3423
|
+
"name": "beer",
|
3424
|
+
"ligatures": ""
|
3425
|
+
},
|
3426
|
+
"setIdx": 2,
|
3427
|
+
"iconIdx": 59
|
3428
|
+
},
|
3429
|
+
{
|
3430
|
+
"icon": {
|
3431
|
+
"paths": [
|
3432
|
+
"M648 614.286q-21.143 69.143-78.857 111.429t-130.286 42.286-130.286-42.286-78.857-111.429q-4.571-14.286 2.286-27.714t21.714-18q14.286-4.571 27.714 2.286t18 21.714q14.286 45.714 52.857 74t86.571 28.286 86.571-28.286 52.857-74q4.571-14.857 18.286-21.714t28-2.286 21.143 18 2.286 27.714zM365.714 365.714q0 30.286-21.429 51.714t-51.714 21.429-51.714-21.429-21.429-51.714 21.429-51.714 51.714-21.429 51.714 21.429 21.429 51.714zM658.286 365.714q0 30.286-21.429 51.714t-51.714 21.429-51.714-21.429-21.429-51.714 21.429-51.714 51.714-21.429 51.714 21.429 21.429 51.714zM804.571 512q0-74.286-29.143-142t-78-116.571-116.571-78-142-29.143-142 29.143-116.571 78-78 116.571-29.143 142 29.143 142 78 116.571 116.571 78 142 29.143 142-29.143 116.571-78 78-116.571 29.143-142zM877.714 512q0 119.429-58.857 220.286t-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286 58.857-220.286 159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286z"
|
3433
|
+
],
|
3434
|
+
"tags": [
|
3435
|
+
"smile-o"
|
3436
|
+
],
|
3437
|
+
"defaultCode": 61720,
|
3438
|
+
"grid": 14
|
3439
|
+
},
|
3440
|
+
"properties": {
|
3441
|
+
"id": 249,
|
3442
|
+
"order": 85,
|
3443
|
+
"prevSize": 28,
|
3444
|
+
"code": 61720,
|
3445
|
+
"name": "smile-o",
|
3446
|
+
"ligatures": ""
|
3447
|
+
},
|
3448
|
+
"setIdx": 2,
|
3449
|
+
"iconIdx": 60
|
3450
|
+
},
|
3451
|
+
{
|
3452
|
+
"icon": {
|
3453
|
+
"paths": [
|
3454
|
+
"M648 702.286q4.571 14.286-2.286 27.714t-21.143 18-28-2.286-18.286-21.714q-14.286-45.714-52.857-74t-86.571-28.286-86.571 28.286-52.857 74q-4.571 14.857-18 21.714t-27.714 2.286q-14.857-4.571-21.714-18t-2.286-27.714q21.143-69.143 78.857-111.429t130.286-42.286 130.286 42.286 78.857 111.429zM365.714 365.714q0 30.286-21.429 51.714t-51.714 21.429-51.714-21.429-21.429-51.714 21.429-51.714 51.714-21.429 51.714 21.429 21.429 51.714zM658.286 365.714q0 30.286-21.429 51.714t-51.714 21.429-51.714-21.429-21.429-51.714 21.429-51.714 51.714-21.429 51.714 21.429 21.429 51.714zM804.571 512q0-74.286-29.143-142t-78-116.571-116.571-78-142-29.143-142 29.143-116.571 78-78 116.571-29.143 142 29.143 142 78 116.571 116.571 78 142 29.143 142-29.143 116.571-78 78-116.571 29.143-142zM877.714 512q0 119.429-58.857 220.286t-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286 58.857-220.286 159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286z"
|
3455
|
+
],
|
3456
|
+
"tags": [
|
3457
|
+
"frown-o"
|
3458
|
+
],
|
3459
|
+
"defaultCode": 61721,
|
3460
|
+
"grid": 14
|
3461
|
+
},
|
3462
|
+
"properties": {
|
3463
|
+
"id": 250,
|
3464
|
+
"order": 84,
|
3465
|
+
"prevSize": 28,
|
3466
|
+
"code": 61721,
|
3467
|
+
"name": "frown-o",
|
3468
|
+
"ligatures": ""
|
3469
|
+
},
|
3470
|
+
"setIdx": 2,
|
3471
|
+
"iconIdx": 61
|
3472
|
+
},
|
3473
|
+
{
|
3474
|
+
"icon": {
|
3475
|
+
"paths": [
|
3476
|
+
"M658.286 621.714q0 14.857-10.857 25.714t-25.714 10.857h-365.714q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714 25.714-10.857h365.714q14.857 0 25.714 10.857t10.857 25.714zM365.714 365.714q0 30.286-21.429 51.714t-51.714 21.429-51.714-21.429-21.429-51.714 21.429-51.714 51.714-21.429 51.714 21.429 21.429 51.714zM658.286 365.714q0 30.286-21.429 51.714t-51.714 21.429-51.714-21.429-21.429-51.714 21.429-51.714 51.714-21.429 51.714 21.429 21.429 51.714zM804.571 512q0-74.286-29.143-142t-78-116.571-116.571-78-142-29.143-142 29.143-116.571 78-78 116.571-29.143 142 29.143 142 78 116.571 116.571 78 142 29.143 142-29.143 116.571-78 78-116.571 29.143-142zM877.714 512q0 119.429-58.857 220.286t-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286 58.857-220.286 159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286z"
|
3477
|
+
],
|
3478
|
+
"tags": [
|
3479
|
+
"meh-o"
|
3480
|
+
],
|
3481
|
+
"defaultCode": 61722,
|
3482
|
+
"grid": 14
|
3483
|
+
},
|
3484
|
+
"properties": {
|
3485
|
+
"id": 251,
|
3486
|
+
"order": 83,
|
3487
|
+
"prevSize": 28,
|
3488
|
+
"code": 61722,
|
3489
|
+
"name": "meh-o",
|
3490
|
+
"ligatures": ""
|
3491
|
+
},
|
3492
|
+
"setIdx": 2,
|
3493
|
+
"iconIdx": 62
|
3494
|
+
},
|
3495
|
+
{
|
3496
|
+
"icon": {
|
3497
|
+
"paths": [
|
3498
|
+
"M512 804.571l192-219.429h-438.857l-192 219.429h438.857zM1090.857 189.143q8.571 19.429 5.429 40.857t-17.429 37.429l-512 585.143q-21.714 25.143-54.857 25.143h-438.857q-21.714 0-39.714-11.714t-27.143-31.143q-8.571-19.429-5.429-40.857t17.429-37.429l512-585.143q21.714-25.143 54.857-25.143h438.857q21.714 0 39.714 11.714t27.143 31.143z"
|
3499
|
+
],
|
3500
|
+
"width": 1097,
|
3501
|
+
"tags": [
|
3502
|
+
"eraser"
|
3503
|
+
],
|
3504
|
+
"defaultCode": 61741,
|
3505
|
+
"grid": 14
|
3506
|
+
},
|
3507
|
+
"properties": {
|
3508
|
+
"id": 269,
|
3509
|
+
"order": 92,
|
3510
|
+
"prevSize": 28,
|
3511
|
+
"code": 61741,
|
3512
|
+
"name": "eraser",
|
3513
|
+
"ligatures": ""
|
3514
|
+
},
|
3515
|
+
"setIdx": 2,
|
3516
|
+
"iconIdx": 63
|
3517
|
+
},
|
3518
|
+
{
|
3519
|
+
"icon": {
|
3520
|
+
"paths": [
|
3521
|
+
"M658.286 457.143v36.571q0 8-5.143 13.143t-13.143 5.143h-475.429q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h475.429q8 0 13.143 5.143t5.143 13.143zM731.429 713.143v-475.429q0-37.714-26.857-64.571t-64.571-26.857h-475.429q-37.714 0-64.571 26.857t-26.857 64.571v475.429q0 37.714 26.857 64.571t64.571 26.857h475.429q37.714 0 64.571-26.857t26.857-64.571zM804.571 237.714v475.429q0 68-48.286 116.286t-116.286 48.286h-475.429q-68 0-116.286-48.286t-48.286-116.286v-475.429q0-68 48.286-116.286t116.286-48.286h475.429q68 0 116.286 48.286t48.286 116.286z"
|
3522
|
+
],
|
3523
|
+
"width": 805,
|
3524
|
+
"tags": [
|
3525
|
+
"minus-square-o"
|
3526
|
+
],
|
3527
|
+
"defaultCode": 61767,
|
3528
|
+
"grid": 14
|
3529
|
+
},
|
3530
|
+
"properties": {
|
3531
|
+
"id": 293,
|
3532
|
+
"order": 41,
|
3533
|
+
"prevSize": 28,
|
3534
|
+
"code": 61767,
|
3535
|
+
"name": "minus-square-o",
|
3536
|
+
"ligatures": ""
|
3537
|
+
},
|
3538
|
+
"setIdx": 2,
|
3539
|
+
"iconIdx": 64
|
3540
|
+
}
|
3541
|
+
],
|
3542
|
+
"height": 1024,
|
3543
|
+
"metadata": {
|
3544
|
+
"name": "icomoon"
|
3545
|
+
},
|
3546
|
+
"preferences": {
|
3547
|
+
"showGlyphs": true,
|
3548
|
+
"showQuickUse": true,
|
3549
|
+
"fontPref": {
|
3550
|
+
"prefix": "icon-",
|
3551
|
+
"metadata": {
|
3552
|
+
"fontFamily": "icomoon"
|
3553
|
+
},
|
3554
|
+
"metrics": {
|
3555
|
+
"emSize": 512,
|
3556
|
+
"baseline": 6.25,
|
3557
|
+
"whitespace": 50
|
3558
|
+
}
|
3559
|
+
},
|
3560
|
+
"imagePref": {},
|
3561
|
+
"historySize": 100,
|
3562
|
+
"showCodes": true,
|
3563
|
+
"search": ""
|
3564
|
+
}
|
3565
|
+
}
|